Ҿe$ NOTES026.A`P NOTES026.ABACKUP/NOASSIST/COMMENT=VAX/VMS SPKITBLD Procedure/INTER/LOG/VERIFY NNP$:[NOTES.TEMPKIT]*.* NOTD$:[NOTES.V26.IA64.OBJ]NOTES026.A/LABEL=(NOTES)/SAVE/BLOCK=9000/GROUP=25VAX/VMS SPKITBLD Procedure ANKAN (VRģV7.3 _IWONT:: _$1$DUA104: X8.2-XALC $K*[NOTES.TEMPKIT]KITINSTAL.COM;1+,/b.Z/J 4ZY,- 0123KPWOZ56ғ$2Ƣ7-jģ89GJHJ $ ! HP NOTES Installation Procedure $ ! $ ! K I T I N S T A L . C O M $ ! $ ! Copyright Digital Equipment Corporation. 1985, 1993. All Rights Reserved. $ ! $ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED $ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION $ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES $ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHER $ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED. $ ! $ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND $ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION. $ ! $ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS $ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL. $ ! $ !*************************************************************************** $ ! $ ! $ ! $ ON CONTROL_Y THEN VMI$CALLBACK CONTROL_Y ! setup to handle ^Y $ ON WARNING THEN GOTO error_exit ! setup to handle errors $ ! $ NOTES$VERIFY = F$VERIFY (P2) ! set verify if debugging $ NOTES$ASK_CONTINUE = 0 $ NOTES$ERROR_EXIT = 0 $ ! $ ! $ ! setup values used in the installation $ ! $ NOTES$VERSION = "2.6" ! NOTES Version Number (vv.uu) $ NOTES$DATE = "14-DEC-1993" ! NOTES Release Date $ NOTES$REQ_PRIVS = "CMKRNL,WORLD,SYSPRV,OPER" $ NOTES$NUM_REQ_PRIVS = 4 $ ! $ ! make sure status codes exist $ ! $ IF F$TYPE(VMI$_FAILURE) .EQS. "" THEN VMI$_FAILURE = %X10F50000 $ IF F$TYPE(VMI$_SUCCESS) .EQS. "" THEN VMI$_SUCCESS = %X10F50001 $ IF F$TYPE(VMI$_UNSUPPORTED) .EQS. "" THEN VMI$_UNSUPPORTED = %X10F50008 $ ! $ ! dispatch based on the command passed in P1 $ ! $ IF P1 .EQS. "VMI$_INSTALL" THEN GOTO install $ IF P1 .EQS. "VMI$_IVP" THEN GOTO ivp $ IF P1 .EQS. "HELP_LIBRARY_DIR" THEN GOTO help_library_dir $ IF P1 .EQS. "HELP_CAPABILITY" THEN GOTO help_capability $ IF P1 .EQS. "HELP_SERVER_UIC" THEN GOTO help_server_uic $ IF P1 .EQS. "VMI$_REMOVE" THEN GOTO remove ! (not from VMSINSTAL) $ ! $ NOTES$STATUS = VMI$_UNSUPPORTED ! error - unknown command $ GOTO notes_exit $ ! $ !----------------------------------------------------------------------------- $ ! Install HP NOTES $ !----------------------------------------------------------------------------- $ ! $ install: $ ! $ ! Expected VMS version(s). $ ! $ NOTES$ALPHA_SYS = FALSE ! Default to OpenVMS VAX system $ IF ("''VMI$SYS_ARCHITECTURE'" .EQS. "ALPHA") THEN NOTES$ALPHA_SYS = TRUE $ IF NOTES$ALPHA_SYS $ THEN $ NOTES$VMS_REL_VER = "V1.0" ! earliest supported OpenVMS AXP version $ NOTES$UCX_VERSION = "V3.0" $ NOTES$NET_SIZE = 7000 ! Free blocks required on system disk $ NOTES$AWD_NET_SIZE= 5700 ! Free blocks required during install $ NOTES$TRG_NET_SIZE= 4500 ! Free blocks for completed install $ NOTES$GBL_PAGE = 820 ! Global pages required $ NOTES$GBL_SECT = 3 ! Global sections required $ NOTES$OPT_GBL_PAGE= 890 ! For optional images $ NOTES$OPT_GBL_SECT= 3 $ NOTES$OPT_SECF_GPG= 1600 $ ELSE $ NOTES$VMS_REL_VER = "V5.4" ! earliest supported OpenVMS VAX Version $ NOTES$UCX_VERSION = "V2.0" $ NOTES$NET_SIZE = 6000 ! Free blocks required on system disk $ NOTES$AWD_NET_SIZE= 5700 ! Free blocks required during install $ NOTES$TRG_NET_SIZE= 4500 ! Free blocks for completed install $ NOTES$GBL_PAGE = 300 ! Global pages required $ NOTES$GBL_SECT = 2 ! Global sections required $ NOTES$OPT_GBL_PAGE= 350 ! For optional images $ NOTES$OPT_GBL_SECT= 2 $ NOTES$OPT_SECF_GPG= 1530 $ ENDIF $ NOTES$MOTIF_VERSION = "V1.0" $ NOTES$MOTIF_FOUND = 0 $ NOTES$TCP_FOUND = 0 $ NOTES$UCX_FOUND = 0 $ ! $ ! Check versions for software on which Notes might depend. $ ! $ TYPE SYS$INPUT *********************************************************** hp Notes Installation Procedure Copyright 1993, 2004 Hewlett-Packard Development Company, L.P. All Rights Reserved. HP Notes T2.6 HP Notes can be installed on any system running $ IF NOTES$ALPHA_SYS $ THEN write sys$output - " OpenVMS AXP ''NOTES$VMS_REL_VER' (or later)." $ ELSE write sys$output - " OpenVMS VAX ''NOTES$VMS_REL_VER' (or later)." $ ENDIF $ TYPE SYS$INPUT This installation will fail if this system is running an older version of OpenVMS. HP Notes provides both a character-cell and a DECwindows/Motif user interface. Use of the DECwindows/Motif interface requires $ write sys$output - " that DECwindows/Motif ''NOTES$MOTIF_VERSION' (or later) be installed." $ TYPE SYS$INPUT This installation can continue and the character-cell interface can be used if the required version of DECwindows/Motif is not installed. HP Notes supports both DECnet and TCP/IP transports. Use of the TCP/IP transport requires prior installation of $ write sys$output - " ''NOTES$UCX_VERSION' (or later) of DEC TCP/IP Services for VMS." $ TYPE SYS$INPUT Installation can continue and only the DECnet transport will be used if the required version of DEC TCP/IP Services for VMS is not installed on this system. An appropriate software license is required to run HP Notes. The license should be installed before attempting to install HP Notes. If you have not yet installed a HP Notes license, you can continue with this installation, but you will be unable to run either HP Notes or the HP Notes Installation Verification Procedure until an appropriate license has been installed. *********************************************************** $ VMI$CALLBACK ASK NOTES$CONTINUE_INSTALL - "Do you want to continue with this installation" "YES" BD $ IF .NOT. NOTES$CONTINUE_INSTALL THEN GOTO error_exit $ write sys$output "" $ VMI$CALLBACK SET PURGE ASK ! ask if files should be purged $ VMI$CALLBACK SET IVP ASK ! ask if IVP should be run $ write sys$output "" $ write sys$output "" $ VMI$CALLBACK MESSAGE I CHKPRDVER "Checking installation requirements" $ TYPE SYS$INPUT All installation and product dependencies will now be checked. If problems are discovered, it may still be possible to complete this installation, depending upon the nature of the problems. $ ! $ !*********************** CHECK PRODUCT DEPENDENCIES ***************** $ ! $ ! Check VMS version $ ! $ VMI$CALLBACK MESSAGE I VMSVER "Checking OpenVMS version..." $ VMI$CALLBACK CHECK_VMS_VERSION VMS_VERSION_OK 'NOTES$VMS_REL_VER' $ ! $ ! Indicate wrong version and exit $ ! $ IF .NOT. VMS_VERSION_OK $ THEN $ IF NOTES$ALPHA_SYS $ THEN $ VMI$CALLBACK MESSAGE E VERSION - "This kit must be installed on an existing OpenVMS AXP ''NOTES$VMS_REL_VER' system." $ ELSE $ VMI$CALLBACK MESSAGE E VERSION - "This kit must be installed on an existing OpenVMS VAX ''NOTES$VMS_REL_VER' system." $ ENDIF $ NOTES$ERROR_EXIT = 1 $ VMI$CALLBACK MESSAGE I CHECK "Checking other installation requirements" $ ENDIF $ ! $ ! Check for Motif installed, and version. $ ! $ VMI$CALLBACK MESSAGE I MOTIFVER "Checking DECwindows/Motif version..." $ VMI$CALLBACK FIND_FILE NOTES$MOTIF_DWM_FILE - VMI$ROOT:[SYSLIB]DECW$DXMLIBSHR.EXE "" S $ IF $STATUS .EQ. VMI$_SUCCESS $ THEN $ NOTES$MOTIF_FOUND = 1 $ ELSE $ NOTES$MOTIF_FOUND = 0 $ ENDIF $ IF NOTES$MOTIF_FOUND $ THEN $ VMI$CALLBACK CHECK_PRODUCT_VERSION NOTES$MOTIF_VERSION_OK - NOTES$MOTIF_DWM_FILE 'NOTES$MOTIF_VERSION' - "DECwindows/Motif" $ IF .NOT. NOTES$MOTIF_VERSION_OK $ THEN $ NOTES$MOTIF_FOUND = 0 $ NOTES$ASK_CONTINUE = 1 $ ENDIF $ ENDIF $ ! $ ! Check for UCX installed, version. $ ! $ VMI$CALLBACK MESSAGE I UCXVER "Checking DEC TCP/IP Services for VMS version..." $ VMI$CALLBACK FIND_FILE NOTES$UCX_FILE - VMI$ROOT:[SYSEXE]TCPIP$UCP.EXE "" S $ IF $STATUS .EQ. VMI$_SUCCESS $ THEN $ NOTES$UCX_FOUND = 1 $ ELSE $ NOTES$UCX_FOUND = 0 $ ENDIF $ IF NOTES$UCX_FOUND $ THEN $ VMI$CALLBACK CH`m$ NOTES026.A/b [NOTES.TEMPKIT]KITINSTAL.COM;1Z"ECK_PRODUCT_VERSION NOTES$UCX_VERSION_OK - NOTES$UCX_FILE 'NOTES$UCX_VERSION' - "DEC UCX" $ IF .NOT. NOTES$UCX_VERSION_OK $ THEN $ NOTES$UCX_FOUND = 0 $ NOTES$ASK_CONTINUE = 1 $ ELSE $ VMI$CALLBACK CHECK_LICENSE NOTES$UCX_LICENSE UCX DEC 2.0 17-NOV-1858 $ IF .NOT. NOTES$UCX_LICENSE $ then $ VMI$CALLBACK MESSAGE W UCXNOTLICD - "DEC TCP/IP Services for VMS is not licensed on this system." - "''vmi$product' uses some of these services." $ NOTES$UCX_FOUND = 0 $ NOTES$ASK_CONTINUE = 1 $ ELSE $ NOTES$TCP_FOUND = 1 $ ENDIF $ ENDIF $ ENDIF $ ! $ !*********************** END CHECK PRODUCT DEPENDENCIES ***************** $ ! $ ! $ ! $ !*********************** CHECK INSTALLATION DEPENDENCIES ***************** $ VMI$CALLBACK MESSAGE I SYSRES "Checking system resources..." $ ! $ ! We'll be updating DCLTABLES.EXE, so make sure that both free disk space $ ! and free global pages will accommodate a new version of DCLTABLES.EXE. $ ! $ NOTES$TEMP = F$FILE_ATTRIBUTES("SYS$LIBRARY:DCLTABLES.EXE","ALQ") $ NOTES$GBL_PAGE = NOTES$GBL_PAGE + NOTES$TEMP $ NOTES$NET_SIZE = NOTES$NET_SIZE + NOTES$TEMP $ ! $ ! Make sure there are at least 'NOTES$NET_SIZE' free blocks on system disk. $ ! $ VMI$CALLBACK CHECK_NET_UTILIZATION NOTES$ - NOTES$NET_SIZE - ! Total free space required during install NOTES$TRG_NET_SIZE - ! Free space for completed install NOTES$AWD_NET_SIZE ! Free space on work device during install $ IF .NOT. NOTES$ $ THEN $ VMI$CALLBACK MESSAGE E NOSPACE - "Aborting the installation due to lack of disk space." $ WRITE SYS$OUTPUT " HP Notes requires a total of ''NOTES$NET_SIZE' free disk blocks." $ ENDIF $ IF NOTES$ THEN GOTO space_ok $ $ NOTES$ERROR_EXIT = 1 $ $ space_ok: $ ! $ ! Make sure that the minimum values required for GBLPAGES and GBLSECTIONS $ ! exist. $ ! $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$PAGES FREE_GBLPAGES $ IF (NOTES$PAGES .GE. NOTES$GBL_PAGE) THEN GOTO gblpages_ok $ VMI$CALLBACK MESSAGE E NOPAGES - ! error - not enough global pages "HP NOTES needs a minimum of ''NOTES$GBL_PAGE' global pages." $ VMI$CALLBACK MESSAGE I NOPAGES - "Aborting the installation due to lack of global pages." $ NOTES$ERROR_EXIT = 1 $ $ gblpages_ok: $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$SECTIONS FREE_GBLSECTS $ IF (NOTES$SECTIONS .GE. NOTES$GBL_SECT) THEN GOTO gblsect_ok $ VMI$CALLBACK MESSAGE E NOSECT - ! error - not enough global sections "HP NOTES needs a minimum of ''NOTES$GBL_SECT' global sections." $ VMI$CALLBACK MESSAGE I NOSECT - "Aborting the installation due to lack of global sections." $ NOTES$ERROR_EXIT = 1 $ $ gblsect_ok: $ ! $ ! Check process privileges $ ! $ NOTES$AUTH_PRIVS = F$GETJPI("","AUTHPRIV") $ NOTES$SETPRV=F$LOCATE("SETPRV",NOTES$AUTH_PRIVS) $ NOTES$PRIV_LEN = F$LENGTH(NOTES$AUTH_PRIVS) $ IF NOTES$SETPRV .LT. NOTES$PRIV_LEN THEN GOTO ALLOW_EXIT $ NOTES$REQ_COUNTER = 0 $ check_privs: $ NOTES$CUR_PRIV = F$ELEMENT(NOTES$REQ_COUNTER,",",NOTES$REQ_PRIVS) $ NOTES$TEMP = F$LOCATE(NOTES$CUR_PRIV,NOTES$AUTH_PRIVS) $ IF NOTES$TEMP .GE. NOTES$PRIV_LEN $ THEN $ VMI$CALLBACK MESSAGE E INSUFPRIV - "Insufficient privileges to run this installation" $ VMI$CALLBACK MESSAGE I REQPRIV - "Required privileges: ''NOTES$REQ_PRIVS" $ NOTES$ERROR_EXIT = 1 $ ELSE $ NOTES$REQ_COUNTER = NOTES$REQ_COUNT + 1 $ IF NOTES$REQ_COUNTER .LT. NOTES$NUM_REQ_PRIVS THEN GOTO check_privs $ ENDIF $ ! $ ! Check process quotas here (there are no requirements imposed by Notes $ ! beyond those checked by VMSINSTAL). $ ! $ ! $ ! $ !********************** END CHECK INSTALLATION DEPENDENCIES ***************** $ ! $ ! Exit or whatever, if problem detected above. $ ! $ ALLOW_EXIT: $ IF NOTES$ERROR_EXIT THEN GOTO ERROR_EXIT $ IF NOTES$ASK_CONTINUE $ THEN $ WRITE SYS$OUTPUT "" $ VMI$CALLBACK MESSAGE I OKTOCONT "Installation can continue" $ WRITE SYS$OUTPUT "" $ VMI$CALLBACK ASK NOTES$CONTINUE_INSTALL - "Do you want to continue with this installation" "Yes" BD $ IF .NOT. NOTES$CONTINUE_INSTALL THEN GOTO error_exit $ WRITE SYS$OUTPUT "" $ ENDIF $ ! $ ! Check for full-server or client-only license $ ! $ get_capability: $ NOTES$CLUSTER = F$GETSYI ("CLUSTER_MEMBER") $ IF .NOT. NOTES$CLUSTER THEN GOTO not_cluster $ TYPE SYS$INPUT NOTE for VMS cluster installations: Only one Notes installation needs to be done on a cluster even if different licenses will be loaded on different nodes. If more than one license type will be loaded on the cluster, choose the lowest number below for which you have a license. $ not_cluster: $ TYPE SYS$INPUT Please indicate the level of capability that you want to install: 1. Full capability (NOTES or NOTES-USER) 2. TeamLinks HP Notes server (NOTES-SERVER-LANLINK) 3. Full capability except no remote user access (NOTES-LOCAL) 4. Reduced capability, client-only (NOTES-CLIENT or NOTES-CLIENT-USER) $ ! $ VMI$CALLBACK ASK NOTES$CAPABILITY - "Enter the number of the level of capability to install" - "1" I "@VMI$KWD:KITINSTAL help_capability" $ ! $ IF (NOTES$CAPABILITY .LT. 1) .OR. (NOTES$CAPABILITY .GT. 4) THEN - GOTO get_capability $ ! Confirm the NOTES license $ ! $ ON ERROR THEN GOTO license_err ! don't quit if license not installed $ NOTES$PROVIDE_SERVER == TRUE ! Default to server capability $ NOTES$PROVIDE_LIB == TRUE ! provide notes$library $! $ IF (NOTES$CAPABILITY .EQ. 1) ! NOTES or NOTES-USER license $ THEN ! PROVIDE_SERVER = TRUE, PROVIDE_LIB = TRUE $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES or NOTES-USER" DEC 'NOTES$VERSION' 'NOTES$DATE' $ ELSE IF (NOTES$CAPABILITY .EQ. 2) ! NOTES-SERVER-LANLINK license $ THEN ! PROVIDE_SERVER = TRUE, PROVIDE_LIB = TRUE $ VMI$CALLBACK SET IVP NO ! don't run IVP $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES-SERVER-LANLINK" DEC 'NOTES$VERSION' 'NOTES$DATE' $ TYPE SYS$INPUT ! let the user know The NOTES IVP will NOT be run as part of this installation. It is recommended that NOTES be tested using a PC and Digital Equipment Corporation's TeamLinks software. $ ELSE IF (NOTES$CAPABILITY .EQ. 3) ! NOTES-LOCAL license $ THEN ! PROVIDE_SERVER = FALSE, PROVIDE_LIB = TRUE $ NOTES$PROVIDE_SERVER == FALSE ! No server capability $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES-LOCAL" DEC 'NOTES$VERSION' 'NOTES$DATE' $ ELSE IF (NOTES$CAPABILITY .EQ. 4) ! NOTES-CLIENT or NOTES-CLIENT-USER license $ THEN ! PROVIDE_SERVER = FALSE, PROVIDE_LIB = FALSE $ NOTES$PROVIDE_SERVER == FALSE ! No server capability $ NOTES$PROVIDE_LIB == FALSE ! No notes$library $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES-CLIENT or NOTES-CLIENT-USER" DEC 'NOTES$VERSION' 'NOTES$DATE' $ ENDIF $ ENDIF $ ENDIF $ ENDIF $ ! $ ! $ ! $ IF NOTES$LICENSE THEN GOTO license_ok ! if license is installed $ ! $ license_err: ! license registration failed $ VMI$CALLBACK SET IVP NO ! don't run IVP $ TYPE SYS$INPUT ! let the user know An authorization key for NOTES has not been registered and loaded. The NOTES IVP will NOT be run as part of this installation. It is recommended that the IVP be run after the NOTES license has been registered and loaded. $ ! $ license_ok: ! continue with installation $ ON WARNING THEN GOTO error_exit $ ! $ ! $ ! Determine what needs to be installed $ ! $ NOTES$LNM = "SYS$LOGIN:" ! default to no NOTES$LIBRARY $ NOTES$NCP == 0 ! default to no DECNET $ ! $ NOTES$SET_SERVER_PSW == 0 $ NOTES$SET_NCP_PSW == 0 $ IF .NOT. NOTES$PROVIDE_SERVER THEN GOTO create_dir $ ! $ ! Create the NOTES$SERVER account $ ! $ pwd1 = F$CVTIME(F$TIME(),,"TIME")-":"-":"-"." $ NOTES$ACC = FALSE ! assume no NOTES$SERVER acc't $ NOTES$UIC == "" ! assume no NOTES$SERVER uic $ NOTES$MAXSYSGROUP == 0 $ NOTES$ID = 0 ! assume no RIGHTSLIST id $ ! $ VMI$CALLBACK FIND_FILE RIGHTSLIST RIGHTSLIST VMI$ROOT:[SYSEXE].DAT S NOTES$RIGHTSLIST_FILE $ IF (NOTES$RIGHTSLIST_FILE .EQS. "S") THEN - NOTES$ID = F$IDENTIFIER("NOTES$SERVER","NAME_TO_NUMBER") $ ! $ ! See if the NOTES$SERVER account already exists $ ! (Following depends on AUTHORIZE creating a null file if UIC doesn't exist) $ ! $ SET NOON $ AUTHORIZE = "$AUTHORIZE" $ VMI$NO_ERROR $ DEFINE/USER SYS$OUTPUT VMI$KWD:UIC1.TMP $ IF (F$TRNLNM("SYSUAF") .EQS. "") THEN - DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ IF (F$TRNLNM("NETPROXY") .EQS. "") THEN - DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ AiS$ NOTES026.A/b [NOTES.TEMPKIT]KITINSTAL.COM;1ZO""UTHORIZE SHOW/BRIEF NOTES$SERVER $ SET ON $ OPEN/READ/ERROR=acc10 F1 VMI$KWD:UIC1.TMP $ READ/END=acc10 F1 LINE $ READ/END=acc10 F1 LINE $ READ/END=acc10 F1 LINE $ NOTES$UIC == F$EDIT(F$EXTRACT(37,13,LINE),"COLLAPSE") $ NOTES$ACC = TRUE ! We have NOTES$SERVER account $ ! $ acc10: $ CLOSE/NOLOG F1 $ VMI$CALLBACK DELETE_FILE VMI$KWD:UIC1.TMP $ pwd2 = F$CVTIME(F$TIME(),,"TIME")-":"-":"-"." $ NOTES$PWD = "''pwd2'" + "''F$GETJ("","CPUTIM")'"+ "''pwd1'" $ IF (NOTES$ID .NE. 0) THEN NOTES$UIC == "NOTES$SERVER" $ IF (NOTES$UIC .NES. "") THEN GOTO getuser10 $ ! $ ! Get a UIC for the server account $ ! $ getuic: $ IF NOTES$MAXSYSGROUP .EQ. 0 $ THEN $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$MAXSYSGROUP MAXSYSGROUP $ ENDIF $ TYPE SYS$INPUT In order to ensure that the HP Notes server runs with the proper quotas, this installation procedure will create an account for the server. This account, NOTES$SERVER, has no special privileges and is set up for only network operation. You must specify a unique UIC for this account in order to ensure proper security of your conferences. You may want to change the password on this account after the installation has completed. If you do, you must also change the password with NCP SET/DEF OBJECT NOTES commands. $ ! $ getuic2: $ VMI$CALLBACK ASK NOTES$UIC - "Enter UIC for NOTES server account (include brackets)" - "[376,377]" S "@VMI$KWD:KITINSTAL help_server_uic" $ ! $ ! (Following depends on AUTHORIZE creating a null file if UIC doesn't exist) $ ! $ NOTES$TMP = F$EXTRACT(0,1,NOTES$UIC) $ IF NOTES$TMP .NES. "[" THEN NOTES$UIC :== "[''NOTES$UIC']" $ SET NOON $ AUTHORIZE = "$AUTHORIZE" $ VMI$NO_ERROR $ DEFINE/USER SYS$OUTPUT VMI$KWD:UIC.TMP $ IF (F$TRNLNM("SYSUAF") .EQS. "") THEN - DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ IF (F$TRNLNM("NETPROXY") .EQS. "") THEN - DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ AUTHORIZE SHOW/BRIEF 'NOTES$UIC' $ SET ON $ OPEN/READ/ERROR=UIC10 F1 VMI$KWD:UIC.TMP $ READ/END=UIC10 F1 LINE $ TYPE SYS$INPUT The UIC you have specified is already in use. Please enter a unique UIC. $ NOTES$UIC :== "" $ ! $ uic10: $ CLOSE/NOLOG F1 $! DELETE/NOLOG VMI$KWD:UIC.TMP;* $ VMI$CALLBACK DELETE_FILE VMI$KWD:UIC.TMP $ IF (NOTES$UIC .EQS. "") THEN GOTO getuic $ NOTES$TMP1 = F$LOCATE(",",NOTES$UIC) $ NOTES$TMP2 = F$EXTRACT(1,NOTES$TMP1-1,NOTES$UIC) $ IF NOTES$TMP2 .GES. "0" .AND. NOTES$TMP2 .LES. "7" $ THEN $ NOTES$GROUPNUM = F$INTEGER(NOTES$TMP2) $ IF NOTES$GROUPNUM .GT. NOTES$MAXSYSGROUP THEN GOTO getuser10 $ ELSE $ VMI$CALLBACK MESSAGE W BADVAL "Invalid UIC" $ GOTO getuic2 $ ENDIF $ $ TYPE SYS$INPUT The UIC you have specified falls within the range of SYSTEM UIC'S. $ VMI$CALLBACK ASK NOTES$TMP - "Do you want to specify a non-SYSTEM UIC" "Y" B $ IF NOTES$TMP THEN GOTO getuic2 $ $ ! $ getuser10: $ IF NOTES$ACC THEN GOTO getuser11 $ ! $ ! Find a value of WSEXTENT that is appropriate just in case DEFAULT isn't $ ! $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$WSMAX WSMAX $ NOTES$WSEXTENT = (NOTES$WSMAX * 62)/100 $ IF (NOTES$WSEXTENT .LT. 512) THEN NOTES$WSEXTENT = 512 $ IF (NOTES$WSEXTENT .GT. 2048) THEN NOTES$WSEXTENT = 2048 $ NOTES$WSQUOTA = NOTES$WSEXTENT/2 $ NOTES$WSDEFAULT = "/WSQUOTA=''NOTES$WSQUOTA'/WSEXTENT=''NOTES$WSEXTENT'" $ ! $ ! Now create the NOTES$SERVER account $ ! $ VMI$CALLBACK MESSAGE I CREACC - "Creating account NOTES$SERVER for the HP Notes server" $ VMI$CALLBACK CREATE_ACCOUNT NOTES$SERVER - "/OWN=NOTES_SERVER/PASSWORD=''NOTES$PWD'/UIC=''NOTES$UIC'/ACCOUNT=DECNET" $ NOTES$SET_SERVER_PSW == 1 $ ! $ VMI$CALLBACK MESSAGE I MODACC - "Modifying account NOTES$SERVER quotas..." $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/LGICMD=SYS$SYSTEM:NOTES$SERVER_LOGIN/DEVICE=SYS$SYSDEVICE:/DIRECTORY=[NOTES$SERVER]" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/PRIVILEGE=(NOALL,TMPMBX,NETMBX)/DEFPRIV=(NOALL,TMPMBX,NETMBX)" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/FILLM=300/BIOLM=120/DIOLM=120/ASTLM=120/ENQLM=120/BYTLM=32767''NOTES$WSDEFAULT'" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/FLAG=(RESTRICT,NOCAPTIVE,DISMAIL,NODISUSER)/NETWORK/NOBATCH/NOINTERACTIVE/PRCLM=0/MAXJOB=0/SHRFILLM=0" $ ! $ VMI$CALLBACK CREATE_DIRECTORY USER SYS$SYSDEVICE:[NOTES$SERVER] - "/OWNER=''NOTES$UIC'" $ GOTO create_dir $ ! $ getuser11: $ VMI$CALLBACK MESSAGE I EXISTS - "NOTES$SERVER account already exists, updating..." $ VMI$CALLBACK MESSAGE I MODACC - "Modifying account NOTES$SERVER..." $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/LGICMD=SYS$SYSTEM:NOTES$SERVER_LOGIN" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/PRIVILEGE=(NOALL,TMPMBX,NETMBX)/DEFPRIV=(NOALL,TMPMBX,NETMBX)" $ ! $ ! $ ! Set up the NOTES$LIBRARY directory $ ! $ create_dir: $ ! $ IF (.NOT. NOTES$PROVIDE_LIB) THEN GOTO update_startup $ ! $ NOTES$DIR = "NOTES$LIBRARY" $ NOTES$LNM = F$TRNLNM(NOTES$DIR,"LNM$SYSTEM") $ IF F$LOC("::",NOTES$LNM) .LT. F$LEN(NOTES$LNM) THEN NOTES$LNM = "" $ IF (NOTES$LNM .EQS. "SYS$LOGIN:") THEN NOTES$LNM = "" $ IF (NOTES$LNM .EQS. "") THEN GOTO credir10 $ ! $ VMI$CALLBACK MESSAGE I EXISTS - "The logical NOTES$LIBRARY exists" $ NOTES$DIR_EXISTS = F$PARSE(NOTES$LNM) $ IF NOTES$DIR_EXISTS .EQS. "" $ THEN $ VMI$CALLBACK MESSAGE E NOTFOUND "The specified directory was not found" $ GOTO credir10 $ ELSE $ NOTES$TEMP_DEVICE = F$PARSE(NOTES$LNM,,,"DEVICE") $ NOTES$AVAIL = F$GETDVI("''NOTES$TEMP_DEVICE'","EXISTS") $ IF NOTES$AVAIL THEN NOTES$AVAIL = F$GETDVI("''NOTES$TEMP_DEVICE'","AVL") $ IF NOTES$AVAIL $ THEN $ NOTES$DEVICE == F$PARSE(NOTES$LNM,,,"DEVICE","SYNTAX_ONLY") ! exists $ NOTES$DIR = F$PARSE(NOTES$LNM,,,"DIRECTORY","SYNTAX_ONLY") - "[" - "]" $ VMI$CALLBACK MESSAGE I ASSUMEOK - "This installation will assume it is properly defined" $ GOTO getd20 $ ELSE $ VMI$CALLBACK MESSAGE E UNAVL "The specified device is not available" $ GOTO credir10 $ ENDIF $ ENDIF $ ! $ credir10: $ TYPE SYS$INPUT HP NOTES conference files are stored in a directory named [NOTES$LIBRARY]. You must designate the device on which this directory is to be created. Be sure that the device you specify has plenty of free blocks to permit normal conference file expansion. $ ! $ get_device: $ VMI$CALLBACK ASK NOTES$DEVICE - "Device to be used for storing conferences" "" S - "@VMI$KWD:KITINSTAL help_library_dir" $ NOTES$AVAIL = F$GETDVI("''NOTES$DEVICE'","EXISTS") $ IF NOTES$AVAIL THEN NOTES$AVAIL = F$GETDVI("''NOTES$DEVICE'","AVL") $ IF .NOT. NOTES$AVAIL $ THEN $ VMI$CALLBACK MESSAGE E UNAVL "The specified device is not available" $ GOTO get_device $ ENDIF $ IF F$PARSE(NOTES$DEVICE,"[_Z$Z_]",,"DIRECTORY") .NES. "[_Z$Z_]" THEN GOTO get_device $ NOTES$DEVICE == NOTES$DEVICE - ":" + ":" $ VMI$CALLBACK CREATE_DIRECTORY USER 'NOTES$DEVICE'['NOTES$DIR'] $ VMI$CALLBACK SECURE_FILE 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR - "[1,4]" "S=RWE,O=RWE,G=RE,W=RE" $ ! $ ! $ ! Disallow any network access except through NOTES$SERVER $ ! $ ! VMI$CALLBACK FIND_FILE SETSHOACL SETSHOACL VMI$ROOT:[SYSEXE].EXE S NOTES$SETSHOACL_IMAGE $ ! IF (NOTES$SETSHOACL_IMAGE .EQS. "") THEN GOTO getd20 $ IF (NOTES$PROVIDE_SERVER) $ THEN $ VMI$CALLBACK SET ACL DIRECTORY - "((IDENTIFIER=''NOTES$UIC',ACCESS=READ+EXECUTE), (IDENTIFIER=NETWORK,ACCESS=NONE) )" - 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $! SET FILE/ACL=((IDENTIFIER='NOTES$UIC',ACCESS=READ+EXECUTE), (IDENTIFIER=NETWORK,ACCESS=NONE) ) - $! 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $ ELSE $ VMI$CALLBACK SET ACL DIRECTORY - "((IDENTIFIER=NETWORK,ACCESS=NONE) )" - 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $! SET FILE/ACL=( (IDENTIFIER=NETWORK,ACCESS=NONE) ) - $! 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $ ENDIF $ ! $ getd20: $ NOTES$LNM = NOTES$DEVICE + "[" + NOTES$DIR + "]" $ DEFINE NOTES$LIBRARY 'NOTES$LNM' ! to insure NOTES$LIBRARY: is local logical $ ! $ IF (.NOT. NOTES$PROVIDE_SERVER) THEN GOTO update_startup $ ! $!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ $! DEFINE_SERVER_OBJECT - determine whether the user is running DECnet $! phase iv or phase v, and dispatch to $! appropriate routine $!-------------------------------------------------------------------------- $ DEFINE_SERVER_OBJECT: $ VMI$CALLBACK FIND_FILE NETOBJECT NETOBJECT SYS$SYSTEM:.DAT S NOTES$NETOBJECT_FILE $ IF (NOTES$NETOBJECT_FILE .EQS. "") THEN GOTO update_startup $ SET NOON $ VMI$NO_ERROR $ !+ $ ! Check to see which DECnet version is running. Dispatch $ ! Mf$ NOTES026.A/b [NOTES.TEMPKIT]KITINSTAL.COM;1ZC"3 to appropriate object-definition subroutine. $ !- $ DECnetPhase = F$GETSYI ("DECNET_VERSION") $ DECnetPhase = F$EXTRACT (2,2, DECnetPhase) $ $ IF DECnetPhase .EQS. "04" $ THEN $ GOSUB DEFINE_SERVER_OBJECT_PHASE_IV $ ELSE $ IF DECnetPhase .EQS. "05" $ THEN $ GOSUB DEFINE_SERVER_OBJECT_PHASE_V $ ELSE $ VMI$CALLBACK MESSAGE E NODECNET - $ "Cannot find DECnet Phase IV or DECnet Phase V" $ EXIT VMI$_FAILURE $ ENDIF $ ENDIF $ ! $ ! Register with TCP/IP $ ! $ IF NOTES$UCX_FOUND $ THEN $ UCX SET SERVICE NOTES - /USER=NOTES$SERVER- /PROCESS=NOTESRVR- /PORT=3333- /FILE=SYS$SYSTEM:NOTES$SERVER.COM- /LIMIT=255- /FLAGS=(LISTEN,MULTITHREAD) $ TYPE SYS$INPUT The TCP/IP service NOTES has been defined. If you wish to view this, run SYS$SYSTEM:UCX and issue the command UCX> SHOW SERVICE/FULL NOTES $ ENDIF $! $ goto update_startup $! $!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ $! DEFINE_SERVER_OBJECT_PHASE_IV - Define the NOTES Object in the network $!-------------------------------------------------------------------------- $ DEFINE_SERVER_OBJECT_PHASE_IV: $ ! $ ! Define the NOTES Object $ ! $ set_object: $ NCP = "$NCP" $ DEFINE/USER SYS$OUTPUT VMI$KWD:NCP.TMP $ VMI$NO_ERROR $ MCR NCP LIST OBJECT NOTES $ NOTES$SAVE_STATUS = $status $ SET ON $ IF NOTES$SAVE_STATUS then NOTES$NCP == 1 $ VMI$CALLBACK DELETE_FILE VMI$KWD:NCP.TMP $ MCR NCP DEFINE OBJECT NOTES NUMBER 33 - FILE NOTES$SERVER.EXE USER NOTES$SERVER PROXY OUTGOING $ IF (NOTES$NCP .EQ. 0) $ THEN $ MCR NCP DEFINE OBJECT NOTES PASSWORD 'NOTES$PWD' $ NOTES$SET_NCP_PSW == 1 $ ENDIF $ TYPE SYS$INPUT The DECnet object NOTES has been defined. If you wish to view this, run SYS$SYSTEM:NCP and issue the command NCP> LIST OBJECT NOTES CHAR $ ! $ ! $ ! See if DECNET is running $ ! $ NOTES$NCP == 0 $ IF .NOT. F$GETDVI("NET0","EXISTS") THEN GOTO update_startup $ IF .NOT. F$GETDVI("NET0","MNT") THEN GOTO update_startup $ NOTES$NCP == 1 $ SET NOON $ VMI$NO_ERROR $ VMI$NO_OUTPUT $ MCR NCP CLEAR OBJECT NOTES ALL $ SET ON $ RETURN $!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ $! DEFINE_SERVER_OBJECT_PHASE_V - Define the NOTES$SERVER Object in the $! network database. $! Parameters for SYS$MANAGER:NET$CONFIGURE are: $! p1 "APPLICATION_ADD" $! p2 the application name $! p3 the username for the application (null if not used) and $! the UIC for that Username. (Seperated by the '|') $! p4 the parameters for the application (see below) $! p5 (optional) Boolean value - NCL invocation after script $! creation $! p4 breakdown - each item should be separated by the '|' $! character, a placeholder of a null for unused $! parameters. $! $! x0 destination address (name = "NAME" or number = 10) $! x1 client $! x2 image name $! x3 incoming alias (boolean) $! x4 incoming proxy (boolean) $! x5 outgoing alias (boolean) $! x6 outgoing proxy (boolean) $! x7 required synonym (boolean) $! x8 tsap $! x9 X25 filter $! x10 X25 type $! example: $! parameters = "Number=10||SYS$SYSTEM:TEST.EXE|||||TRUE|||" $!-------------------------------------------------------------------------- $ DEFINE_SERVER_OBJECT_PHASE_V: $ !+ $ ! determine whether the server object is already there $ !- $ NCL = "$NCL" $ NOTES$SET_NCP_PSW == NOTES$SET_SERVER_PSW $ VMI$NO_OUTPUT $ VMI$NO_ERROR $ NCL SHOW SESSION CONTROL APPLICATION NOTES $ !+ $ ! if it's not there, declare the object $ !- $ IF .NOT. $STATUS $ THEN $ !+ $ ! add the server object $ !- $ VMI$NO_OUTPUT $ VMI$NO_ERROR $ @VMI$ROOT:[SYSMGR]NET$CONFIGURE "APPLICATION_ADD" - "NOTES" - "NOTES$SERVER|''NOTES$UIC'" - "{NAME=NOTES,NUMB=33}||SYS$SYSTEM:NOTES$SERVER.EXE|true|false|true|true|true||NET$EXAMINE%NET$DECLAREOBJECT%NET$DECNETACCESS" - 1 $ ENDIF $ $ RETURN $ $ ! $ ! $ ! Update NOTES$STARTUP.COM $ ! $ update_startup: $ NOTES$PASSWORD_ERROR == 0 $ IF NOTES$PROVIDE_SERVER $ THEN $ IF NOTES$SET_SERVER_PSW .NE. NOTES$SET_NCP_PSW $ THEN $ VMI$CALLBACK MESSAGE W PSWD "Probable HP Notes server password mis-match" $ TYPE SYS$INPUT The password defined via AUTHORIZE for your NOTES$SERVER account and the password defined via NCP for your DECnet NOTES object must be identical to allow the HP Notes server to function correctly. At this point, they may be different. $ VMI$CALLBACK ASK NOTES$SET_PASSWORD - "Would you like the two passwords set equivalent now" "Y" BS $ IF NOTES$SET_PASSWORD $ THEN $ IF .NOT. NOTES$SET_SERVER_PSW $ THEN $ VMI$CALLBACK MESSAGE I MODACC "Modifying account NOTES$SERVER..." $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER "/PASS=''NOTES$PWD'" $ NOTES$SET_SERVER_PSW == 1 $ ELSE $ VMI$CALLBACK MESSAGE I MODACC "Modifying DECnet NOTES object..." $ MCR NCP DEFINE OBJECT NOTES PASSWORD 'NOTES$PWD' $ NOTES$SET_NCP_PSW == 1 $ ENDIF $ ELSE $ VMI$CALLBACK SET IVP NO $ NOTES$PASSWORD_ERROR == 1 $ ENDIF $ ENDIF $ ENDIF $ TYPE SYS$INPUT No further questions will be asked during this installation. Completion of the installation should take another 5-10 minutes. $ OPEN/WRITE F1 VMI$KWD:NOTESLIB.TMP $ IF .NOT. NOTES$PROVIDE_SERVER $ THEN $ WRITE F1 "$ IF F$TRNLNM (""NOTES$LIBRARY"",""LNM$SYSTEM"") .EQS. """" THEN -" $ ENDIF $ WRITE F1 "$ DEFINE/NOLOG/SYSTEM/EXEC NOTES$LIBRARY ''NOTES$LNM'" $ WRITE F1 "$ EXIT NOTES$EXIT_STATUS" $ CLOSE/NOLOG F1 $ SET NOON $ VMI$NO_ERROR $ VMI$NO_OUTPUT $ APPEND VMI$KWD:NOTESLIB.TMP VMI$KWD:NOTES$STARTUP_END.COM $ VMI$CALLBACK DELETE_FILE VMI$KWD:NOTESLIB.TMP $ OPEN/APPEND F1 VMI$KWD:NOTES$STARTUP.COM $ WRITE F1 "$ NOTES$GBL_PAGE = ''NOTES$OPT_GBL_PAGE'" $ WRITE F1 "$ NOTES$GBL_SECT = ''NOTES$OPT_GBL_SECT'" $ WRITE F1 "$ NOTES$SECT_FILE_GBLPAG = ''NOTES$OPT_SECF_GPG'" $ CLOSE/NOLOG F1 $ VMI$NO_ERROR $ VMI$NO_OUTPUT $ APPEND VMI$KWD:NOTES$STARTUP_END.COM VMI$KWD:NOTES$STARTUP.COM $ SET ON $ ! $ ! $ ! Put the correct IVPs into the test directory $ ! $ IF NOTES$PROVIDE_SERVER $ THEN $ VMI$CALLBACK PROVIDE_FILE NOTES$IVP NOTES$IVP.COM VMI$ROOT:[SYSTEST] $ VMI$CALLBACK SECURE_FILE NOTES$IVP "" "W" $ ENDIF $ VMI$CALLBACK PROVIDE_FILE NOTES$IVP_CLIENT NOTES$IVP_CLIENT.COM VMI$ROOT:[SYSTEST] $ VMI$CALLBACK SECURE_FILE NOTES$IVP_CLIENT "" "W" $ ! $ VMI$CALLBACK PROVIDE_FILE NOTES$IVP_LOCAL NOTES$IVP_LOCAL.COM VMI$ROOT:[SYSTEST] $ VMI$CALLBACK SECURE_FILE NOTES$IVP_LOCAL "" "W" $ ! $ ! $ ! Move the files $ ! $ TYPE SYS$INPUT This installation will add the following files: [SYSLIB]NOTES$SHARE.EXE [SYSLIB]NOTES$SECTION.TPU$SECTION [SYSEXE]NOTES$MAIN.EXE $ ! $ IF .NOT. NOTES$PROVIDE_SERVER THEN GOTO no_server $ ! $ TYPE SYS$INPUT [SYSEXE]NOTES$SERVER.EXE [SYSEXE]NOTES$SERVER_LOGIN.COM SYS$SYSROOT:[SYSTEST]NOTES$IVP.COM $ no_server: $ TYPE SYS$INPUT [SYSMGR]NOTES$REMOVE.COM $ IF .NOT. NOTES$PROVIDE_LIB THEN GOTO no_lib $ TYPE SYS$INPUT [SYSMGR]NOTES$MOVE_CONFERENCE.COM NOTES$LIBRARY:NOTES$SAMPLE.NOTE $ ! $ no_lib: $ TYPE SYS$INPUT SYS$SYSROOT:[SYSTEST]NOTES$IVP_CLIENT.COM SYS$SYSROOT:[SYSTEST]NOTES$IVP_LOCAL.COM [SYSHLP]NOTES$025.RELEASE_NOTES [SYSHLP]NOTES_SHORTGUIDE.MEM [SYSHLP]NOTES$HELP.HLB [SYSHLP]NOTES$DWHELP.HLB [SYSLIB]NOTES$DWSHARE.EXE [SYSLIB]NOTES$DWNOTES.UID [SYSLIB]NOTES$DEFAULTS.DAT [SYS$STARTUP]NOTES$STARTUP.COM $ IF F$TRNLNM("DECW$SYSTEM_DEFAULTS") .NES. "" $ THEN $ TYPE SYS$INPUT [DECW$DEFAULTS.SYSTEM]LWK_REG_NOTESNOTE.UID $ ENDIF $ ! $ IF .NOT. NOTES$PROVIDE_SERVER THEN GOTO common_files $ ! $ VMI$CALLBACK PROVIDE_IMAGE NOTES$SERVER NOTES$SERVER.EXE - VMI$ROOT:[SYSEXE] $ VMI$CALLBACK SET ACL FILE - "((IDENTIFIER=''NOTES$UIC',ACCESS=READ+EXECUTE), (IDENTIFIER=*,ACCESS=NONE))" - NOTES$SERVER $ VMI$CALLBACK PROVIDE_FILE NOTES$SERVER_LOGIN NOTES$SERVER_LOGIN.COM - VMI$ROOT:[SYSEXE] $ VMI$CALLBACK SECURE_FILE NOTES$SERVER_LOGIN "" "S=RWED,O=RWE,G=RE,W=RE" $ ! $ common_files: $ VMI$CALLBACK PROVIDE_FILE NOTES$REMOVE - NOTES$REMOVE.COM VMI$ROOT:[SYSMGR] $ VMI$CALLBACK SECURE_FILE NOTES$REMOVE "" "W" $ IF (.NOT. NOTES$PROVIDE_LIB) THEN GOTO no_common_lib $ VMI$CALLBACK PROVIDE_FILE NOTES$MOVE_CONFERENCE - NOTES$MOVE_CONFERENCE.COM VMI$ROOT:[SYSMGR] $ VMI$CALLBACK SECURE_FILE NO¤J$ NOTES026.A/b [NOTES.TEMPKIT]KITINSTAL.COM;1ZJ"DTES$MOVE_CONFERENCE "" "W" $ VMI$CALLBACK PROVIDE_FILE NOTES$SAMPLE_NOTE NOTES$SAMPLE.NOTE - 'NOTES$LNM' $ VMI$CALLBACK SECURE_FILE NOTES$SAMPLE_NOTE "" "W=RWE" $ ! $ no_common_lib: $ VMI$CALLBACK PROVIDE_FILE NOTES$STARTUP_FILE NOTES$STARTUP.COM - VMI$ROOT:[SYS$STARTUP] $ VMI$CALLBACK SECURE_FILE NOTES$STARTUP_FILE "" "W" $ VMI$CALLBACK PROVIDE_IMAGE NOTES$ NOTES$SHARE.EXE VMI$ROOT:[SYSLIB] $ VMI$CALLBACK PROVIDE_IMAGE NOTES$ NOTES$MAIN.EXE VMI$ROOT:[SYSEXE] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$SECTION.TPU$SECTION VMI$ROOT:[SYSLIB] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$HELP.HLB VMI$ROOT:[SYSHLP] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES_SHORTGUIDE.MEM VMI$ROOT:[SYSHLP] $ ! $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$DWHELP.HLB VMI$ROOT:[SYSHLP] $ VMI$CALLBACK PROVIDE_IMAGE NOTES$ NOTES$DWSHARE.EXE VMI$ROOT:[SYSLIB] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$DWNOTES.UID VMI$ROOT:[SYSLIB] $!ankan - remove IF F$TRNLNM("DECW$SYSTEM_DEFAULTS") .NES. "" THEN - $! VMI$CALLBACK PROVIDE_FILE NOTES$ LWK_REG_NOTESNOTE.UID VMI$ROOT:[DECW$DEFAULTS.SYSTEM] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$DEFAULTS.DAT VMI$ROOT:[SYSLIB] $ ! $ VMI$CALLBACK PROVIDE_DCL_HELP NOTESDCL.HLP $ VMI$CALLBACK PROVIDE_DCL_COMMAND NOTESDCL.CLD $ VMI$CALLBACK SET STARTUP VMI$ROOT:[SYS$STARTUP]NOTES$STARTUP.COM $ ! $ TYPE SYS$INPUT *********************************************************** REMINDERS: 1. SYSTEM STARTUP -------------- After the installation has completed, you should execute SYS$STARTUP:NOTES$STARTUP.COM on each system on which this copy of HP Notes will be run. You should also edit your system startup procedure to run SYS$STARTUP:NOTES$STARTUP.COM on each system on which this copy of HP Notes will be run. ** IMPORTANT NOTE: Installation instructions for previous versions of VAX Notes suggested that NOTES$STARTUP.COM be run prior to network startup during the system startup process. It is now recommended that NOTES$STARTUP run AFTER network startup has COMPLETED, particularly if TCP/IP will be used as the network transport for HP Notes connections. 2. HP NOTES SHUTDOWN OR DEINSTALLATION ------------------------------------ A new utility, SYS$MANAGER:NOTES$REMOVE.COM, can be used to deinstall HP Notes or to prevent new servers from executing. Type: $ @SYS$MANAGER:NOTES$REMOVE for further details. $ NOTES$ITEM_COUNT = 2 $ IF NOTES$PROVIDE_SERVER $ THEN $ NOTES$ITEM_COUNT = NOTES$ITEM_COUNT + 1 WRITE SYS$OUTPUT "" WRITE SYS$OUTPUT " ''NOTES$ITEM_COUNT'. VMSCLUSTER ENVIRONMENTS" TYPE SYS$INPUT ! let the user know ----------------------- If HP Notes is run in a VMScluster environment with multiple copies of SYS$SYSTEM:NETOBJECT.DAT in use, NCP must be used to define the NOTES DECnet object in each copy of NETOBJECT.DAT. The password used when defining the NOTES object must always match the password for account NOTES$SERVER in the system authorization file. If HP Notes is run in a VMScluster environment with multiple copies of SYS$SYSTEM:UCX$SERVICE.DAT in use, it is similarly required that UCX be used to define the NOTES service in each copy of UCX$SERVICE.DAT. This can normally be accomplished by running NOTES$STARTUP.COM on each system. NOTES$STARTUP.COM will attempt to properly define and enable the NOTES service each time it is executed. $ IF NOTES$PASSWORD_ERROR $ THEN $ NOTES$ITEM_COUNT = NOTES$ITEM_COUNT + 1 $ WRITE SYS$OUTPUT "" $ WRITE SYS$OUTPUT " ''NOTES$ITEM_COUNT'. DEC NOTES IVP" $ TYPE SYS$INPUT ! let the user know ------------- The NOTES IVP will NOT be run as part of this installation: it would fail due to a probable non-match between the passwords defined for the NOTES$SERVER account and the NOTES DECnet object. It is recommended that the IVP be run after you manually set the passwords for the NOTES$SERVER account (via AUTHORIZE) and for the DECnet NOTES object (via NCP) to the same value. *********************************************************** $ ENDIF ! password_error $ ENDIF ! provide_server $ ! $ ! $ ! cleanup and done $ ! $ IF NOTES$NCP THEN NCP SET OBJECT NOTES ALL $ IF F$TRNLNM("NETOBJECT","LNM$PROCESS") .NES. "" THEN DEASSIGN NETOBJECT $ IF F$TRNLNM("NOTES$LIBRARY","LNM$PROCESS") .NES. "" THEN DEASSIGN NOTES$LIBRARY $ IF F$TRNLNM("RIGHTSLIST","LNM$PROCESS") .NES. "" THEN DEASSIGN RIGHTSLIST $ ! IF F$TRNLNM("SETSHOACL","LNM$PROCESS") .NES. "" THEN DEASSIGN SETSHOACL $ ! $ GOTO success_exit ! installation successful $ ! $ ! $ ! $ ! End of DEC NOTES installation $ ! $ ! $ success_exit: ! installation was successful $ NOTES$STATUS = VMI$_SUCCESS ! set success status $ GOTO notes_exit $ ! $ ! $ error_exit: ! installation error occurred $ NOTES$STATUS = VMI$_FAILURE ! set error status $ GOTO notes_exit $ ! $ ! $ notes_exit: ! installation done $ NOTES$VERIFY = F$VERIFY (NOTES$VERIFY) ! restore verify state $ EXIT NOTES$STATUS ! exit with status $ ! $ ! End of DEC NOTES installation $ ! $ !----------------------------------------------------------------------------- $ ! Help $ !----------------------------------------------------------------------------- $ ! $ ! $ help_library_dir: $ TYPE SYS$INPUT Enter the device to be used for storing the conference notefiles. This device should have sufficient free disk space to allow for growth in the size and numbers of conference files. The following are the presently available disk devices on your system: $ ! $ SHOW DEVICE/BRIEF/MOUNTED D $ WRITE SYS$OUTPUT " " $ EXIT VMI$_SUCCESS $ ! $ ! $ help_capability: $ TYPE SYS$INPUT Full capability means that all HP Notes capability is available to Notes users, including creating and accessing local conferences. Full capability is provided by the NOTES and NOTES-USER licenses. Reduced capability means that Notes users may access only remote conferences; they cannot create or access local conferences. Reduced capability is provided by the NOTES-CLIENT or NOTES-CLIENT-USER licenses. Access to HP Notes from personal computers using the TeamLinks environment is provided by a NOTES-SERVER-LANLINK license $ EXIT VMI$_SUCCESS $ ! $ ! $ help_server_uic: $ TYPE SYS$INPUT The UIC is the user identification code for the NOTES$SERVER account. The UIC value, specified in octal, is a group and member number separated by a comma and enclosed in brackets. The group number must be in the range 1-37776 (octal), the member number in the range 0-1777776 (octal). DIGITAL recommends you use the default UIC of [376,377]. If you do not use the default, you must ensure that you use a unique UIC. You should NOT specify a group number in the system range (normally 1-10 octal). The following UICs are presently in use on your system: $ SET NOON $ AUTHORIZE = "$AUTHORIZE" $ IF (F$TRNLNM("NETPROXY") .EQS. "") THEN - DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ IF (F$TRNLNM("SYSUAF") .EQS. "") THEN - DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ AUTHORIZE SHOW/BRIEF [*,*] $ WRITE SYS$OUTPUT " " $ SET ON $ EXIT VMI$_SUCCESS $ ! $ !----------------------------------------------------------------------------- $ ! DEC NOTES IVP $ !----------------------------------------------------------------------------- $ ! $ ! $ ivp: $ ON CONTROL_Y THEN GOTO ivp_exit ! setup to handle ^Y $ ON WARNING THEN GOTO ivp_exit ! setup to handle errors $ ivp_status = 0 $ ! $ IF NOTES$PROVIDE_SERVER $ THEN $ @VMI$ROOT:[SYSTEST]NOTES$IVP $ ELSE IF (NOTES$PROVIDE_LIB) $ THEN $ @VMI$ROOT:[SYSTEST]NOTES$IVP_LOCAL $ ELSE $ @VMI$ROOT:[SYSTEST]NOTES$IVP_CLIENT $ ENDIF $ ENDIF $ ivp_status = $STATUS ! save status $ ! $ ivp_exit: $ NOTES$VERIFY = F$VERIFY (NOTES$VERIFY) ! restore verify state $ EXIT ivp_status ! exit with IVP status $ ! $ !----------------------------------------------------------------------------- $ ! Remove VAX NOTES from system $ !----------------------------------------------------------------------------- $ ! $ ! Remove any traces of DEC Notes from the system $ ! $ ! Be sure to kill the notes server process (looks something like $ ! NOTES$001A_0*) if neccesary, for example $ ! $ STOP/ID=000000A2 $ ! $ remove: $ IF (F$TYPE(VMI$PRODUCT) .NES. "") THEN GOTO CLEAR_FILES $ ! $ ON CONTROL_Y THEN GOTO remove_done ! setup to handle ^Y $ O Z$ NOTES026.A/b [NOTES.TEMPKIT]KITINSTAL.COM;1Z0 UN ERROR THEN GOTO remove_done ! setup to handle errors $ !------------------------- $ VMI$PRODUCT = "NOTES025" $ !------------------------- $ ! $ ! Remove any traces of VAX Notes V1.n from the system $ ! $ VMI$F_SIGNAL = "FALSE" $ VMI$VERSION = F$GETSYI("VERSION") $ VMI$SAVED_DIR = F$ENVIRONMENT("DEFAULT") $ DELETE = "DELETE/CONFIRM/NOLOG" $ PURGE = "PURGE/NOCONFIRM/NOLOG" $ SAY = "WRITE SYS$OUTPUT" $ VMI$SAY = "WRITE SYS$OUTPUT" ! OpenVMS AXP $ VMI$SAVED_MSG = F$ENVIRONMENT("MESSAGE") $ SET MESSAGE/FACILITY/SEVERITY/IDENTIFICATION/TEXT $ VMI$SAVED_PRIVS = F$SETPRV("ALL,NOBYPASS") $ VMI$SAVED_UIC = F$USER() $ VMI$SAVED_PROT = F$ENVIRONMENT("PROTECTION") $ DEFINE = "DEFINE/NOLOG" $ DEASSIGN = "DEASSIGN" $ FALSE = 0 $ TRUE = 1 $ VMI$CALLBACK = "@SYS$UPDATE:VMSINSTAL" $ VMI$_FAILURE = %X10F50000 $ !VMI$FIND = VMI$CALLBACK + " FIND_FILE" $ VMI$INSTALLING = TRUE $ VMI$MSG = VMI$CALLBACK + " MESSAGE VMSINSTAL" $ VMI$NO_ERROR = "DEFINE/USER/NOLOG SYS$ERROR _NL:" $ VMI$NO_OUTPUT = "DEFINE/USER/NOLOG SYS$OUTPUT _NL:" $ VMI$QA = FALSE $ VMI$QA_FAIL == FALSE $ VMI$_SUCCESS = %X10F50001 $ VMI$INSTALLATION_STATUS = VMI$_SUCCESS $ VMI$TAILOR = "@SYS$UPDATE:VMSTAILOR" $ VMI$_UNSUPPORTED = %X10f50008 $ VMI$PID = F$GETJPI("","PID") $ VMIMARKER = "VMIMARKER" + VMI$PID + ".DAT" $ VMI$UPDATE_MARKER = "OPEN/READ/WRITE VMI$MARKER_FILE SYS$UPDATE:''VMIMARKER'" $ $ VMI$ALTERNATE_ROOT = FALSE $ VMI$ROOT = F$TRNLNM("SYS$SPECIFIC") $ VMI$SPECIFIC = VMI$ROOT $ ! Requires F$SEARCH because VMSINSTAL environment isn't ready yet $ VMI$COMMON_ROOT = F$SEARCH("''VMI$ROOT'[000000]SYSCOMMON.DIR") .NES. "" $ IF VMI$COMMON_ROOT THEN VMI$ROOT = VMI$ROOT - "]" + "SYSCOMMON.]" $ VMI$ROOT_FLAG == "0" $ DEFINE/TRANSLATION=(TERMINAL,CONCEALED) VMI$ROOT 'VMI$ROOT' $ DEFINE/TRANSLATION=(TERMINAL,CONCEALED) VMI$SPECIFIC 'VMI$SPECIFIC' $ DEFINE VMI$KWD VMI$ROOT:[SYSUPD] $ VMI$BOOTING = FALSE $ VMI$CONTINUE == TRUE $ VMI$DEBUG = FALSE $ VMI$IVP == FALSE $ VMI$PURGE == TRUE $ VMI$REBOOT == FALSE $ VMI$SAFETY == FALSE $ VMI$TAILORING = FALSE $ VMI$STARTUP == "!" $ VMI$CALLBACK MESSAGE I NEWREMOVE "Use SYS$MANAGER:NOTES$REMOVE.COM to deinstall HP Notes" $ EXIT VMI$_SUCCESS $ !----------------------------------------------------------------------------- (*[NOTES.TEMPKIT]NOTES$026.RELEASE_NOTES;1+,%b./J 4(- 0123KPWO566C0Ƣ73nģ89GJHJ hp Notes Release Notes T2.6 #*[NOTES.TEMPKIT]NOTES$DEFAULTS.DAT;1+,@b./J 4f ^- 0123KPWO 56nY7qģ89GJHJ! ! NOTES$DEFAULTS.DAT - DECwindows DEC Notes 2.5 defaults ! ! Copyright Digital Equipment Corporation. 1989, 1993. All Rights Reserved. ! ! ! Users with 100-dpi monitors will probably want to change the width ! defaults in this file (which are now set for 75-dpi monitors) for ! a wider viewing area. There are four width defaults as follows: ! ! o NOTES$DEFAULTS*MAIN_WINDOW.width ! o NOTES$DEFAULTS*CONF_WINDOW.width ! o NOTES$DEFAULTS*READ_WINDOW.width ! o NOTES$DEFAULTS*EDIT_WINDOW.width ! ! For each default, a new suggested value is given in a preceeding comment line. ! NOTES$DEFAULTS*DXmliveScrolling: 0 NOTES$DEFAULTS*DXmfontListLevel0: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*DXmfontListLevel1: -Adobe-Courier-Medium-R-Normal--*-120-*-*-M-*-ISO8859-1 NOTES$DEFAULTS*DwtText.DXmfontListDefault: -Adobe-Helvetica-Medium-R-Normal--*-120-*-*-P-*ISO8859-1 ! ! Notes Main window ! NOTES$DEFAULTS*MAIN_SHELL.x: 100 NOTES$DEFAULTS*MAIN_SHELL.y: 100 ! ! Change the following false value to true to start up iconified (no trailing blanks!) ! NOTES$DEFAULTS*MAIN_SHELL.iconic: false ! ! Increase the following .width value for 100 dpi monitors (676 suggested) ! NOTES$DEFAULTS*MAIN_WINDOW.width: 650 NOTES$DEFAULTS*MAIN_WINDOW.height: 390 NOTES$DEFAULTS*MAIN_FILE_DIRECTORY_DB.width: 450 NOTES$DEFAULTS*MAIN_FILE_DIRECTORY_DB.height: 450 NOTES$DEFAULTS*MAIN_OBJECT_DISPLY_DB.width: 450 NOTES$DEFAULTS*MAIN_OBJECT_DISPLY_DB.height: 300 ! ! Notes Conference window ! NOTES$DEFAULTS*CONF_SHELL.x: 130 NOTES$DEFAULTS*CONF_SHELL.y: 130 ! ! Increase the following .width value for 100 dpi monitors (786 suggested) ! NOTES$DEFAULTS*CONF_WINDOW.width: 650 NOTES$DEFAULTS*CONF_WINDOW.height: 390 NOTES$DEFAULTS*CONF_KEYWORD_DISPLY_DB.width: 450 NOTES$DEFAULTS*CONF_KEYWORD_DISPLY_DB.height: 450 NOTES$DEFAULTS*CONF_MARKER_DISPLY_DB.width: 450 NOTES$DEFAULTS*CONF_MARKER_DISPLY_DB.height: 450 NOTES$DEFAULTS*CONF_MEMBER_DISPLY_DB.width: 450 NOTES$DEFAULTS*CONF_MEMBER_DISPLY_DB.height: 450 ! ! Notes Read Note window ! NOTES$DEFAULTS*READ_SHELL.x: 160 NOTES$DEFAULTS*READ_SHELL.y: 160 ! NOTES$DEFAULTS.displayPostScript: off NOTES$DEFAULTS.allowReadAhead: false NOTES$DEFAULTS.inhibitReadPopToTop: false ! ! Increase the following .width value for 100 dpi monitors (846 suggested) ! NOTES$DEFAULTS*READ_WINDOW.width: 606 NOTES$DEFAULTS*READ_WINDOW.height: 507 NOTES$DEFAULTS*READ_WORK_NOTEID_L.marginTop: 56 NOTES$DEFAULTS*READ_WORK_NOTEID_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_TITLE_T.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_NOFN_L.marginTop: 56 NOTES$DEFAULTS*READ_WORK_NOFN_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*READ_WORK_AUTHOR_T.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_DATE_L.marginTop: 56 NOTES$DEFAULTS*READ_WORK_DATE_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_ATTRIB_T.rows: 2 NOTES$DEFAULTS*READ_WORK_TEXT.fontList: -Adobe-Courier-Bold-R-Normal--*-120-*-*-M-*-ISO8859-1 ! ! Notes Create Note window ! NOTES$DEFAULTS*EDIT_SHELL.x: 190 NOTES$DEFAULTS*EDIT_SHELL.y: 190 ! ! Increase the following .width value for 100 dpi monitors (846 suggested) ! NOTES$DEFAULTS*EDIT_WINDOW.width: 606 NOTES$DEFAULTS*EDIT_WINDOW.height: 507 NOTES$DEFAULTS*EDIT_WORK_AUTHOR_T.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_DATE_L.marginTop: 56 NOTES$DEFAULTS*EDIT_WORK_DATE_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_TITLE_L.marginTop: 56 NOTES$DEFAULTS*EDIT_WORK_TITLE_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*EDIT_WORK_TITLE_T.fontList: -Adobe-Helvetica-Medium-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_KEYWORD_L.marginTop: 56 NOTES$DEFAULTS*EDIT_WORK_KEYWORD_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*EDIT_WORK_KEYWORD_T.fontList: -Adobe-Helvetica-Medium-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_TEXT.fontList: -Adobe-Courier-Medium-R-Normal--*-120-*-*-M-*-ISO8859-1 NOTES$DEFAULTS*EDIT_WORK_TEXT.wordWrap: on NOTES$DEFAULTS*EDIT_WORK_TEXT.scrollVertical: on NOTES$DEFAULTS*EDIT_WORK_TEXT.scrollHorizontal: off ! ! ! End of NOTES$DEFAULTS.DAT }$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1!*[NOTES.TEMPKIT]NOTES$DWHELP.HLB;1+,?b./J 4- 0123 KPWO56\7uģ89GJHJ % Librarian T09-20^ >6 J5 $about cancel_pbclasses conferencesh$ conf_menu_bar conf_popupc` conf_window edit_menu_bar edit_popup edit_window> entry_namesf(keywords8main_caution_box main_menu_barax main_popup main_window( main_work_boxg`markersgNmembersObjectsROK_pb overview read_menu_bar read_popup read_windowerepliesp scroll_barsdtopics > 1 overview* Welcome to DECwindows DEC Notes V2.5-1.? DEC Notes is a computer conferencing system. Through a Notes? conference, many people in various locations can communicate= easily and conveniently. Usually a conference has a single> subject, theme, or issue. For example, a private meeting to> discuss marketing strategy, an electronic bulletin board to@ announce course offerings, or a public forum on environmental' issues can all be Notes conferenc es.? A conference is organized into any number of topics, each ofC which can have any number of replies. A topic and its associatedA replies are called a discussion. Topics are identified as n.0,C where n is a number assigned sequentially by the system. RepliesD to a topic note are also sequentially numbered, starting with .1.C If topic 4 has 3 replies, the replies are numbered 4.1, 4.2, andA 4.3. Topics and replies are referred to collectively as notes.C The first time you invoke DEC Notes, a Notebook is automatically< created for you. In your Notebook, you store the names of! conferences that interest you. 2 using_help@ To get help on screen objects such as menu names, menu items,D dialog boxes, and buttons, press the HELP key while you press andD hold MB1 on the screen object. Alternatively, move the pointer to8 the screen object, click MB1, and press the HELP key.+ For example, to get help on a menu item:" 1. Press and hold the HELP key.( 2. Press and hold MB1 on a menu name.@ 3. Drag the pointer to the menu item for which you want help. 4. Release MB1. 5. Release the HELP key.@ Additional topics, if any, are listed. You can get help on an1 additional topic by double clicking MB1 on it. 2 decw_basicsA Basic information about using DECwindows such as how to manageB windows, how to use dialog boxes, and how to use scroll bars is@ available from Session Manager help, which also explains many DECwindows terms.@ To get Session Manager help, double click (press mouse buttonB 1 (MB1) twice quickly) on the Session Manager icon. The Session. Manager window is displayed on your screen.B Press and hold MB1 to pull down the Help menu. Move the pointerD to the Overview menu item and release MB1. The Overview menu item+ provides details about using DECwindows. 2 glossary7 Class: A group of entries (conferences) related5  in some way that you keep together for+ convenience in your Notebook. Conference: An online meeting that improves5 communication by computer among people8 separated geographically or in other ways6 Discussion: A topic note (numbered n.0) and all the4 replies (numbered n.1... n.n) to that topic note5 Entry: A conference in your Notebook; you add9 conferences of interest as entries in ybp$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1!a" our5 Notebook in order to track them easily6 Keyword: A word or phrase used to group together5 notes on a particular subject; usually2 created by the conference moderator1 Marker: A word or phrase that you use as a9 placeholder in an entry in order to return6 quickly to a note of interest; unlike a8 keyword, a marker is for the individual's7 use only and is associated with only one note3 Moderator: The person(s) managing a conference,0 possessing certain privileges and5 responsible for generating interest in9 the conference and keeping the discussions on track. Note: An individual contribution to a8 conference, either a topic (numbered n.0)/ or a reply (numbered n.1... n.n)9 Notebook: A file containing your individual profile,7  your collection of entries (conferences)5 categorized by class, and your markers6 Profile: That part of your Notebook that tailors1 your individual DEC Notes sessions9 Reply: A note (numbered n.1... n.n) that responds2 to a topic or to another reply in a conference2 Topic: A note (numbered n.0) that begins a) discussion in a conference 2 invoking_notes2 You can invoke DEC Notes in the following ways:D o Enter the NOTES (or NOTES/INTERFACE=DECWINDOWS) command at theD DCL prompt ($), then press RETURN. This invokes the DECwindows interface.A o Enter the NOTES/INTERFACE=CHARACTER_CELL command at the DCLD prompt ($), then press RETURN. This invokes the character-cellC interface to DEC Notes within the terminal emulator (DECterm)@ window. You can then enter Notes commands, parameters, and qualifiers. 2 exiting_notes8 To exit from DEC Notes when you are in the DECwindows environment, choose in order:' o The File menu in the Notes window o The Exit menu item? Alternatively, choose Exit from the pop-up window within the Notes window.@ When you exit from the Notes window, any other open DEC Notes) windows are also automatically closed.= Within the character-cell interface, type the EXIT command= or press CTRL/Z (repeatedly if necessary) to close an open+ conference and then exit from DEC Notes. 2 entering_commandsB With the DECwindows interface you access DEC Notes functions by@ choosing menu items and clicking on screen objects instead of typing commands.B With the character-cell interface, you enter commands by typing them or pressing keypad keys. 2 rel_notesC You can print the release notes for this version of DEC Notes by6 typing the following command at the DCL prompt ($):8 $ PRINT SYS$HELP:NOTES$025.RELEASE_NOTES wwޘ1 about( DEC Notes; Copyright Digital Equipment Corporation. 1993.. All Rights Reserved.> Software Version: DECwindows DEC Notes Version V2.5-1 ww~1 main_work_box= The Work-in-Progress box gives information about a task in? progress. It appears when there is a delay in completing theC task. The information should be self-explanatory. No user action is required. ww1 main_caution_boxB The Info box supplies an informational message, which should be4 self-explanatory. Click on OK to dismiss the box. ww,1 main_window? The Notes window is the main window for DEC Notes. It is the2 starting point for user interaction with Notes.; The Notes window displays your classes, which categorize= the conferences you have entered in your Notebook, and the@ conferences themselves, listed by entry name. The conferences) in your Notebook are called "entries."? When the Notes window appears, all the classes are displayedC but only the entries under your default class (usually MAIN) areC displayed. You can expand any other class to display its entries by double clicking MB1 on it. ww^1 scroll_bars> Scroll bars indicate whether there is more text than can beB displayed in the current window, and if so, allow you to scroll' over the additional text to read it. ww^1 OK_pb> Click on the OK push button to cause DEC Notes to apply the; information in the dialog box and to make the dialog box disappear from the screen. ww9 1 cancel_pb@ Click on the Cancel push button to remove the dialog box fromC the screen, without any action being taken or any settings being changed. ww 1 classes? A class consists of one or more entries (conferences in your= Notebook) that are related in some way. A class works like> a tabbed divider to keep the set of conferences together. A, conference can be in more than one class.? You can create as many classes as you want in your Notebook. ww>G1 entry_namesD Conferences in your Notebook are called entries. An entry name is4 either a name you specify or the conference name. ww>G1 conferences= A conference is an online meeting in which many people canC communicate with each other at their convenience on a particular@ subject. Their communications, called notes, are recorded and organized for easy reference.D A conference is organized into topics, each of which can have anyB number of replies. A note is either a topic or a reply. A topic+ and its replies are called a discussion. ww  1 ObjectsD In DEC Notes, an "object" is a conference that has an object name4 in a VAX Distributed Name Service (DNS) database.@ If DNS is installed on your system, and if someone with write= privilege on the DNS database has added a conference as an@ object, the conference's file specification can be kept up toC date in the database. Users who have added or modified the entryC as an object do not have to change the file specification if theC conference moves; DEC Notes checks the DNS database for the file specification. ww~T"1 main_menu_barB You use menus to perform DEC Notes operations, such as creating> and opening conferences, modifying your profile, and so on.D The menu names appear in the menu bar of a window. To use a menu,B position the pointer on the menu name, such as File, then pressC and hold MB1. The pull-down menu appears. Hold MB1 down and moveC the pointer to the menu item you want, and release MB1 to select that item.C The Notes w indow contains the following menus: File, Edit, View, Options, Entries, and Help. 2 main_file_pde1 Use the File menu to perform these operations:> o Open a conference that you selected by clicking MB1 on a conference name- o Open another conference in a new window? o Open a conference from a dialog box, with certain options= o Get marker information and access notes through markers o Create a new conference( o Display a directory of con!ferences o Use mailD o Display, add, delete, or modify a VAX Distributed Name Service (DNS) object o Exit from DEC Notes 3 main_file_open1_pb< Choose the Open menu item to open the conference you have selected. 3 main_file_open3_pb@ Choose the Open in New Window menu item to open an additionalC conference (a conference you have selected) in a new window. Any( current windows remain on the screen. 3 main_file_open2_pb@ Choose th"e Open... menu item to display a dialog box in whichC you can specify the entry you want to open, the class, and otherB information to apply to the entry you open. You can also open a4 conference that is not an entry in your Notebook. 4 main_file_open_dbD You can use the Open dialog box to specify the entry to be opened* and to specify how it should be opened. 5 file_open_entry_l@ In the Entry field, type the entry name of the conference you> want to open. If it i L($ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1"" #s an entry in your Notebook, it is not? necessary to supply any more information. If you selected anA entry in the Conference window, the name of that entry already appears in the Entry field. 5 file_open_class_tbB If you want to specify the class in which the entry you open isC found, first click on the toggle button to turn it on. Then type the class name.C Ordinarily you do not need to specify the class. It is useful toC do so when you want to type a short e$ntry-name abbreviation that9 is also an abbreviation for an entry in another class.B If you specify the class, DEC Notes looks for the entry only in that class. 5 file_open_in_notebook_tbB If the conference you are opening is not in your Notebook, turn= the Entry in Notebook toggle button off by clicking on it. 5 file_open_filespec_lB Type the file name if the conference you want to open is not anC entry in your Notebook. Include the node name if the file i%s not on your node or cluster. 5 file_open_automatic_l? Click on the First UNSEEN Note button if you want to see theC first unseen note immediately after you open the conference, and# if the button is not already on.> Click on the Directory of Notes button if you want to see a@ directory instead of the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off. 5 file_open_show_rb? Click on &the First UNSEEN Note button if you want to see theC first unseen note immediately after you open the conference, and# if the button is not already on.> Click on the Directory of Notes button if you want to see aA directory instead of reading the first unseen note, and if the button is not already on.B When one button goes on, the other automatically goes off. Turn> both buttons off if you want a blank window when you open a conference. 5 file_open_unseen_tb?' Click on the First UNSEEN Note button if you want to see theC first unseen note immediately after you open the conference, and# if the button is not already on.> Click on the Directory of Notes button if you want to see aA directory instead of reading the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off. 5 file_open_directory_tb? Click on the First UNSEEN Note button if you want to see theC ( first unseen note immediately after you open the conference, and# if the button is not already on.> Click on the Directory of Notes button if you want to see aA directory instead of reading the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off. 5 file_open_in_new_tbD Click on the Open in New Window toggle button if you already have@ a conference open in one window and you want to open a secondB ()or third, and so forth) conference in a new window, instead of2 replacing the current conference in its window. 3 main_file_create_pbC When you choose the Create Conference... menu item, a dialog boxD appears in which you specify information about the conference you are creating. 4 main_file_create_dbB In the Create Conference dialog box you can specify the name of9 the conference you are creating and other information. 5 file_create_notefile_lD In the *Conference Filename field, type the name of the conference you are creating.@ If the conference is to be on a remote node, include the node@ name. The default device, directory (NOTES$LIBRARY), and file type (.NOTE) are assumed.D If the conference is to be in your private directory, include the device and directory name.@ The file name you type becomes the default entry name for any+ user who does not specify an entry name.B Do not press RETURN after typing a fi+le name. Instead, click on; the Title toggle button so that you can continue typing. 5 file_create_title_tbB Click on the Title toggle button. Then type a descriptive title' for the conference you are creating. 5 file_create_notice_tb= If you want a notice to appear, click on the Notice toggle button. Then type the notice. 5 file_create_attribute_lC Specify the attributes for the new conference by clicking on the appropriate toggle buttons. 5 , file_create_write_all_tb? By default, notes can be written to a conference, and so theC Allow Writes toggle button is already on. Click on it to turn itB off if you want to restrict the writing privilege to moderators and selected members. 5 file_create_restr_mem_tbD If you want to restrict access to the conference to members only,= click on the Restrict Members toggle button to turn it on. 5 file_create_restr_key_tbD By default, only moderators and selecte -d members with the create-B keywords privilege can create new keywords, and so the Restrict< Keyword Creation toggle button is already on. If you wantA anyone to be able to create keywords, click on it to turn this restriction off. 5 file_create_reply_only_tbA If you want to restrict topic creation so that only moderators= and privileged members can write topic notes, click on the@ Restrict Topic Creation toggle button. The writing of replies remains unrestricted.. 3 main_file_directory_pb@ Choose the Directory of Conferences... menu item to display a@ dialog box in which you can get a directory of conferences on$ your node or on a specified node. 4 main_file_directory_db? You can use the Directory of Conferences dialog box to get a= directory of conferences on your node or a specified node. 5 file_directory_location_l? To specify a location, type the node, device, and directory.D If you use a logical name ins/tead of the device and directory, be! sure to type a colon after it. 5 file_directory_conf_l: A directory of conferences appears below the Conference6 Information heading for the location you specified. 5 file_directory_conf_udA A directory of conferences appears in the Conference Directory field.> Double click MB1 on the conference name icon to display the> information associated with that conference (title, notice,* moderator, date created, and location0).B Double click MB1 on the conference name to open the conference. 5 file_directory_apply_pbD Click on the Apply push button to cause the indicated settings in the dialog box to be applied.A The Apply push button does not remove the dialog box from your screen. 5 file_directory_add_pb? Click on the Add... push button to display a dialog box that0 enables you to add an entry to your Notebook. 3 main_file_mail_pbB The Mail... menu item displays a 1dialog box that enables you to@ send a mail message or forward a note by mail from within DEC Notes. 4 main_file_mail_dbC This dialog box enables you to send a mail message or to forward a note from within DEC Notes. 5 note_mail_operation_lB The two possible mail operations are to send a mail message and to forward a note. 5 note_mail_operation_rbB The two possible mail operations are to send a mail message and to forward a note. 5 note_2mail_send_tb; Click on this button if you want to send a mail message. 5 note_mail_forward_tb= Click on this button if you want to forward a note you are reading by mail. 5 note_mail_to_l@ Your choices are to mail the message or note to the specified: addressee, to all conference members, to all conference, moderators, or to the author of the note. 5 note_mail_to_rb@ Your choices are to mail the message or note to the specified: addressee, to all c3onference members, to all conference, moderators, or to the author of the note. 5 note_mail_username_tbD Click on the button and type the user name(s) of the person(s) toD whom you are sending mail. Include the node if the user is not on your node. 5 note_mail_members_tb: Click on this button to send mail to all members of the conference.: Note that only those members for whom the moderator has? specifically given a mail address (using the MAIL field, or, ~J$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1"3 4> in the character-cell interface, the ADD or SET MEMBER/MAILB command) can receive mail sent to all members from within NotesC with the Conference Moderators button (or, in the character-cell; interface, the SEND/MEMBERS or FORWARD/MEMBERS command). 5 note_mail_moderators_tbA Click on this button to send mail to all the moderators of theB conference. Note that only those members for whom the moderator? has specifically given a mail address (using the MAIL field,B o5r, in the character-cell interface, the ADD or SET MEMBER/MAIL= command) can receive mail sent to all members in this way. 5 note_mail_author_tb? Click on this button to send mail to the author of the note. 5 note_mail_subject_tbA Click on the button and type a subject if you want to supply a; mail subject for the mail message or the forwarded note. 3 main_file_object_pbB Choose the Objects... menu item to bring up the Display ObjectsB dialog box if you w 6ant to display, add, delete, or modify a VAXD Distributed Name Service (DNS) object. In DEC Notes, an object is? a conference, and its attribute is a notefile specification.; To add, delete, or modify an object, you must have writeC privilege on the DNS database, and DNS must be installed on your system. 4 main_object_disply_dbA In this dialog box, you can display the notefile specification> associated with a VAX Distributed Name Service (DNS) object; (conference7), or (if you have write privilege on the DNS. database) add, delete, or modify an object. 5 object_disply_object_lC The object name is the VAX Distributed Name Service (DNS) objectB name associated with a conference. Type the object name here in full. 5 object_disply_info_lC Information about a VAX Distributed Name Service (DNS) object or% objects is displayed in the field. 5 object_disply_info_udC Information about a VAX Distributed Name Service (D8NS) object orC objects is displayed in the field. Double click MB1 on an objectA name to display the notefile specification (if any) associated' with the object in the DNS database. 5 object_disply_apply_pb? Click on Apply to display information about the object name. 5 file_object_add_pbD Click on the Add... push button to bring up the Add Object dialog> box, in which you can add an object (conference) to the VAXC Distributed Name Service (DNS) database, pr9ovided you have write privilege on the database. 6 file_object_add_dbD In this dialog box, you can add an object (conference) to the VAXC Distributed Name Service (DNS) database, provided you have write privilege on the database. 7 object_add_object_l? Type the DNS object name in the field. Do not abbreviate it. 7 object_add_file_l= Type the notefile specification of the conference that youA are adding as a DNS object if you want to associate a not:efile! specification with the object. 7 object_add_apply_pb8 Click on Apply to add the object to the DNS database. 5 file_object_delete_pbA Choose the Delete... push button to bring up the Delete ObjectC dialog box if you want to delete an object (conference) from theC VAX Distributed Name Service (DNS) database. You must have write& privilege on the database to do so. 6 file_object_delete_dbD You can use this dialog box to delete an object (conference;) fromA the VAX Distributed Name Service (DNS) database. You must have, write privilege on the database to do so. 7 object_delete_object_l$ Type the DNS object name in full. 7 object_delete_apply_pb= Click on Apply to delete the object from the DNS database. 5 file_object_modify_pb: Choose the Modify... push button to bring up the Modify= Object dialog box if you want to modify the attribute of a? VAX Distributed Name Service (DNS) object. In DEC Notes<, the= attribute is a notefile specification, and the object is a conference.A You must have write privilege to the DNS database to modify an object. 6 file_object_modify_db@ Use the Modify Object dialog box to modify the attribute of a? VAX Distributed Name Service (DNS) object. In DEC Notes, the= attribute is a notefile specification, and the object is a conference.A You must have write privilege to the DNS database to modify an object. 7 o=bject_modify_object_l$ Type the DNS object name in full. 7 object_modify_file_l9 Type the new notefile specification of the conference. 7 object_modify_apply_pb; Click on Apply to modify the object in the DNS database. 7 object_modify_show_pbB Click on Show to display the current notefile specification, if any, of the object. 3 main_file_exit_pbA Choose the Exit menu item to exit from DEC Notes and return to# DCL level in the DECterm window.>D However many windows you have open in DEC Notes at the time, thisA action closes them all. It is not necessary to close the other windows individually. 2 main_edit_pde1 Use the Edit menu to perform these operations:7 o Copy text that you selected by clicking MB1 on it. o Select the entire contents of the window 3 main_edit_copy_pbC The Copy menu item copies the selected text without deleting it.D The text is copied to the "clipboard," which is a ? buffer (storageB area) for the most recently copied or cut text. The text can beC "pasted" from the clipboard to (for example) the text area of anA Edit window; in the Edit window, you can choose the Paste menuA item from the Edit menu, and the contents of the clipboard are( copied to the location of the cursor.B Pasting does not delete the text from the clipboard; it remainsD there and can be pasted again and again, as you choose, until you1 replace it with some newly cu@t or copied text. 3 main_edit_select_pb> The Select All menu item selects the entire contents of the window. 2 main_view_pde@ Use the View menu to display classes and entries in a tree orA textual-outline structure, or to expand or collapse classes in the Notes window.@ The default display is in a textual-outline form, and you canB change it to a tree structure by choosing Display Tree from the View pull-down menu.D An expanded class is a class withA its conferences displayed underD it. Select a class to expand by clicking MB1 on it. Choose Expand= from the View pull-down menu to expand the selected class.) Choose Expand All to expand all items.6 Collapse and Collapse All are similar in operation. 3 main_outline_pbC By default, the Notes window shows your classes and entries in aB textual-outline form. You can choose the Display Tree menu item@ to have them displayed in a tree structure. If you do so, theC D Bisplay Tree menu item changes to the Display Textual menu item.A When the Notes window is showing your classes and entries in aB tree-structure display, you can choose the Display Textual menu9 item to have them displayed in a textual-outline form.C Similarly, the Conference window shows the directory of notes inA a textual-outline form, by default. You can choose the DisplayB Tree menu item to have them displayed in a tree structure. WhenC they are being displayed in a treCe structure, you can choose theA Display Textual menu item to have them displayed in a textual- outline form. 3 main_expand_pbA The Expand menu item expands the selected item: a class in theD Notes window, or a topic in the Conference window. "Expand" meansB to display the entries (conferences) under a selected class, or+ the replies under a selected topic note.? Before choosing Expand, you must select an item to expand by clicking on it. 3 main_expand D_all_pb= The Expand All menu item expands all items, displaying the> entries (conferences) under each class in the Notes window,? or displaying all replies under each topic in the Conference window. 3 main_collapse_pbA The Collapse menu item collapses the selected item: a class inC the Notes window, or a topic in the Conference window. It causes> the entries (conferences) displayed under the class, or the@ replies listed under the topic, to disappear from the scr `~T$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1"DEeen. 3 main_collapse_all_pbC The Collapse All menu item collapses all your expanded items. InB the Notes window, it causes the entries (conferences) displayedC under each class to disappear from the screen. In the Conference< window, it causes the replies listed under topic notes to disappear from the screen. 2 main_customize_pde@ Use the Options menu to modify your profile or to modify your print options. 3 main_customize_profile_pb> The Show/Mo Fdify Profile... menu item causes a dialog box toA appear, in which you can see your current profile settings and@ enter information to change your profile. You can specify the following:B o Your default class, which is the class that is expanded when you invoke DEC NotesB o Your personal name, which appears on notes that you enter or! mail messages that you sendB o Whether a conference you open immediately displays the first3 unseen note, a directory oGf notes, or neither; You can also specify that the changed settings should be@ temporary, applying only to the current DEC Notes session, if2 you do not want them to be applied permanently. 4 main_customize_profile_dbB This dialog box displays your current profile settings. You can@ enter information to change your profile. You can specify the following:B o Your default class, which is the class that is expanded when you invoke DEC NotesB o Your persoHnal name, which appears on notes that you enter or! mail messages that you sendB o Whether a conference you open immediately displays the first3 unseen note, a directory of notes, or neither; You can also specify that the changed settings should be@ temporary, applying only to the current DEC Notes session, if2 you do not want them to be applied permanently. 5 customize_profile_temp_tbB Click on this button to turn it on if you want the settings you7 speciIfy to apply only to your current Notes session.D If you have already set up temporary settings, those settings are+ displayed when you click on this button. 5 customize_profile_class_lD To change your default class, type the name of the class that youB want as your default class, that is, the class that is expanded= when you invoke DEC Notes. By default, this class is MAIN. 5 customize_profile_pen_lB A "personal name" is a string that appears along with your nodeJC and user name in the heading of notes that you enter, as well as mail messages you send.B A personal name must begin with a letter. Its maximum length is 63 characters.C The personal name is optional, and you do not have one until you set it. 5 customize_profile_auto_l? Click on the First UNSEEN Note button if you want to see the> first unseen note immediately when you open the conference,A and if the button is not already on. Click on the Directory ofKA Notes button if you want to see a directory instead of reading> the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off.A Turn both buttons off if you want a blank window when you open a conference. 5 customize_profile_show_rb@ You can specify whether, when you open a conference, you will1 o See the first note you have not seen before0 o See a directory of notes in the conference o See neLither of the aboveA By default, the first UNSEEN note is displayed, so that buttonC is probably turned on. Click on it to turn it off if you want to change this setting.? Click on the Directory of Notes button to turn it on, if youA want; or turn both buttons off if you want a blank window when you open a conference. 5 customize_profile_uns_tbA By default, the first UNSEEN note is displayed when you open aC conference, so that button is probably turned on.M Click on it to2 turn it off if you want to change this setting. 5 customize_profile_dir_tbC Click on the Directory of Notes button to turn it on if you want: to see a directory of notes when you open a conference. 3 main_customize_print_pbA The Show/Modify Print Options... menu item causes a dialog boxB to appear, in which you can see the current defaults applied to6 printing jobs, and change the defaults, as follows: o Number of copies o Page rangeN o Print format o Printer o Orientation$ o Delay, if any, before printing 2 main_entry_pde, Use the Entries menu to do the following:# o Add an entry to your Notebook& o Modify an entry in your Notebook6 o Update a selected entry or class, or all entriesC o Delete a class, or delete an entry from your Notebook or from a class 3 main_entry_add_pbB The Add... menu item causes the Add Entry dialog box to appear,B in Owhich you can type information about an entry you are adding to your Notebook, as follows:% o The file name of the conference# o The entry name of your choice o The object name2 o The class to which the entry should be added 4 main_entry_add_dbB In this dialog box, you can type information about an entry you+ are adding to your Notebook, as follows:% o The file name of the conference# o The entry name of your choice2 o The class to whiPch the entry should be added 5 entry_add_filespec_lA Type the file specification of the conference you want to add;* for example, BOSTON::LOCAL_RESTAURANTS.B If the conference is on your node, or if it is already an entry= in a different class, you do not need to specify the node. 5 entry_add_entry_tb@ If you want to give the conference you are adding a different= entry name from the conference name (perhaps one easier to? remember or to type), click on this Q button and type the name of your choice. 5 entry_add_object_tbC If the conference is an object in a VAX Distributed Name ServiceC (DNS) database, you can add the object name to the entry in your: Notebook. Click on the button and type the object name.> If an entry has a DNS object name, DEC Notes looks first atA the DNS database whenever accessing the conference. A notefile> specification can be associated with the conference in thatA database. If the conferenceR moves, that notefile specification; can be changed, and you will still be able to access the conference. 5 entry_add_class_tb: Your default class appears here. If you want to add theB conference to a different class or classes, click on the button and type the class name(s).B If you type a class name that does not already exist, the class is created. 3 main_entry_modify_pbC The Show/Modify... menu item causes the Show/Modify Entry dialogC box to apSpear, in which you can specify a new entry name, class,A conference file name, and/or object name. You can also display$ the current values for the entry. 4 main_entry_modify_db? In this dialog box, you can specify a new entry name, class,A conference file name, and/or object name. You can also display$ the current values for the entry. 5 entry_modify_entry_l? Type the current entry name of the entry you want to modify.? If you want to see the current infoTrmation about that entry,! click on the Show push button.D If you already selected an entry (by clicking on it) in the Notes@ window, the current information for that entry appears in the box. 5 entry_modify_name_tbA If you want to change the entry name, click on this button and type the new name.D If you already selected an entry (by clicking on it) in the Notes@ window, the current information for that entry appears in the box. 5 entry_modify_Uclass_tb? If you want to change the class or classes to which an entryD belongs, type the new class name(s). If there is a list, separate the names with a comma.D If you already selected an entry (by clicking on it) in the Notes7 window, that entry's class or classes are displayed. 5 entry_modify_filespec_tbC Type the new file specification of the conference if you need to change it.D If the conference is on your node, you need to type only the file name. gN$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1S"U V 5 entry_modify_object_tbC If the conference is an object in a VAX Distributed Name ServiceC (DNS) database, you can add the object name to the entry in yourB Notebook. Click on the button and type the object name. You can8 also change or delete the object name for your entry.> If an entry has a DNS object name, DEC Notes looks first atA the DNS database whenever accessing the conference. A notefile> specification can be associated with the conference in thatA datWabase. If the conference moves, that notefile specification; can be changed, and you will still be able to access the conference. 5 entry_modify_apply_pb@ When you are satisfied with the informtion you have supplied,2 click on Apply to modify the entry accordingly.A The Apply push button does not remove the dialog box from your screen. 5 entry_modify_show_pb@ To see the current information about an entry, type the entry2 name in the Entry field and then Xclick on Show. 3 main_entry_update1_pb@ You can update an entry to determine whether it has notes you have not yet seen.B The Update menu item updates the selected entry, or the entriesC in a selected class. First select the class or entry by clicking. on it and then choose the Update menu item. 3 main_entry_update2_pb@ You can update an entry to determine whether it has notes you have not yet seen.@ The Update... menu item causes the Update Entry dialoYg box toA appear, in which you can type the entry name and its class, orD choose all entries in your Notebook or all entries in a class for updating.< If you first select an entry name in the Notes window (byA clicking on it), that entry name is already filled in when the dialog box appears. 4 main_entry_update_db@ You can update an entry to determine whether it has notes you have not yet seen.D In this dialog box, you can type the entry name and its classZ, or# choose all entries for updating.< If you first select an entry name in the Notes window (byA clicking on it), that entry name is already filled in when the dialog box appears. 5 entry_update_entry_tbB Type the entry name of your choice to update a single entry. If@ you already selected an entry in the Notes window, that entry name is already filled in.< If you want to update all the entries in a class, fill inA that class name if necessary in the Class[ field, and leave the( asterisk wildcard in the Entry field. 5 entry_update_class_tbB Type a class name if you want to specify the class in which one% or more entries should be updated.= If you already selected an entry in the Notes window, that& entry's class is already filled in.A If you want to update all the entries in a class, fill in thatB class name in the Class field, and leave the Entry field blank. 5 entry_update_all_tb@ Click this button on if\ you want to update all the entries in your Notebook. 3 main_entry_delete1_pbB The Delete menu item deletes the selected class or the selected@ entry (the entry you clicked on in the Notes window) from the" class under which it is listed.A If the entry is in more than one class, it is not deleted from the other class(es). 3 main_entry_delete2_pb@ The Delete... menu item causes the Delete Entry dialog box toB appear, in which you can specify the name of th]e entry you want? to delete and the class(es) from which it should be deleted. 4 main_entry_delete_db< In this dialog box, you can specify the name of the entry? you want to delete and the class(es) from which it should be deleted. 5 entry_delete_entry_l7 Type the entry name of the entry you want to delete.B If you selected an entry by clicking on it in the Notes window,( that entry name is already filled in. 5 entry_delete_class_tbC Click on th^e button to turn it on and type the name of the class+ from which you want to delete the entry.B If you selected an entry by clicking on it in the Notes window,( that class name is already filled in. 2 main_help_pde@ To get help on screen objects such as menu names, menu items,D dialog boxes, and buttons, press the HELP key while you press and! hold MB1 on the screen object.+ For example, to get help on a menu item:" 1. Press and hold the HELP key.( 2. Pr_ess and hold MB1 on a menu name.9 3. Drag the pointer to the menu item you want help on. 4. Release MB1. 5. Release the HELP key.@ Additional topics, if any, are listed. You can get help on an1 additional topic by double clicking MB1 on it. 3 main_help_overview_pb* Welcome to DECwindows DEC Notes V2.5-1.> DEC Notes is a computer conferencing system. It allows manyB people to communicate at their convenience, usually on a single? subject or issue. In DE `C Notes, a private meeting to discuss? marketing strategy, an electronic bulletin board to announceB course offerings, or a public forum on environmental issues are all examples of conferences.? A conference is organized into any number of topics, each ofC which can have any number of replies. A topic and its associatedA replies are called a discussion. Topics are identified as n.0,C where n is a number assigned sequentially by the system. RepliesD to a topic note area also sequentially numbered, starting with .1.C If topic 4 has 3 replies, the replies are numbered 4.1, 4.2, andA 4.3. Topics and replies are referred to collectively as notes.C The first time you invoke DEC Notes, a Notebook is automatically< created for you. In your Notebook, you store the names of% conferences you are interested in. 3 main_help_about_pb( DEC Notes; Copyright Digital Equipment Corporation. 1993.. b All Rights Reserved.> Software Version: DECwindows DEC Notes Version V2.5-1 ww` 1 main_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.D From the pop-up menu, you can quickly open or update the selected& conference, or exit from DEC Notes. 2 main_popup_open_pb7 Release MB3 on Open to open the selected conference. 2 main_popup_open_in_new_pb@ Relcease MB3 on Open in New Window if you want to open another= conference (which you selected by clicking on it) in a new< window, with the currently open conference or conferences remaining in their windows. 2 main_popup_update_pbA Release MB3 on Update to update the selected entry or entries.B You can also select a class and then update all entries in that class.C By updating an entry, you can determine whether it has notes you have not yet seen. 2 maidn_popup_exit_pb; If you want to exit from DEC Notes, release MB3 on Exit. ww^c1 conf_window< The Conference window appears on the screen if you open aB conference and you do not go directly to the first UNSEEN note.D The Conference window either contains a directory of notes in theA conference or is blank. (It is blank if you specified that you> want to see neither a directory nor the first UNSEEN note.)A More than one Conference window can be one your screen at once. 2 conf_svn_window< The Conference window appears on the screen if you open aB conference and you do not go directly to the first UNSEEN note.D The Conference window either contains a directory of notes in theA conference or is blank. (It is blank if you specified that you> want to see neither a directory nor the first UNSEEN note.)A More than one Conference window can be on your screen at once. wwf 1 topicsC A topic f is the first note in a discussion. It is numbered n.0 (nA is a number assigned by the system, sequentially). Its replies@ are numbered sequentially, starting with n.1. Both topics and replies are "notes." ww>h 1 repliesC A reply is any note in a discussion except the first note, whichA is a topic. A topic is numbered n.0 (n is a number assigned byD the system, sequentially). Its replies are numbered sequentially,: starting with n.1. Both topics an D$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1"fgd replies are "notes." ww~k 1 keywords; A keyword is a word or phrase that groups notes that areB concerned with a particular subject but that may not have other> attributes (for example, title, author, or date) in common.C By default, the creation of new keywords is restricted; a memberD can create keywords only if authorized to do so by the moderator.B (The moderator can also remove the restriction, allowing anyone to create new keywords.)D h You do not need a special privilege to add an existing keyword to a note. wwm 1 markersA A marker enables you to find a note of interest again quickly.B Unlike keywords, markers are for the individual's use only, and8 do not appear in other conference members' Notebooks. wwn 1 membersD The members of a conference are the users specified as members by the moderator.@ If access to a conference is restricted, only membeirs can use it. ww^&p1 conf_menu_barB You use menus to perform DEC Notes operations, such as creating# notes, reading notes, and so on.D The menu names appear in the menu bar of a window. To use a menu,B position the pointer on the menu name, such as File, then pressC and hold MB1. The pull-down menu appears. Hold MB1 down and moveC the pointer to the menu item you want, and release MB1 to select that item.B The Conference window contains jthe following menus: File, Edit,% View, Conference, Notes, and Help. 2 conf_file_pde1 Use the File menu to perform these operations: o Use mail% o Extract notes to an output file o Print notes o Close the conference 3 conf_file_close_pb8 The Close Conference menu item closes the conference. 2 conf_edit_pde1 Use the Edit menu to perform these operations:7 o Copy text that you selected by clicking MB1 on it. o Select the ekntire contents of the window 2 conf_view_pdeC Use the View menu to expand or collapse topics in the directory.B An expanded topic is a topic note with its replies listed under it.B First select a topic by clicking on it. Then choose Expand from the View pull-down menu.= You can expand all the topic notes by choosing Expand All.6 Collapse and Collapse All are similar in operation. 2 conf_conf_pde% You can use the Conference menu to; o Display a ldirectory of notes in the Conference window# o Search for a character string< o Perform operations with keywords, markers, and members> o Modify the conference attributes (a moderator privilege) o Set notes as "seen"A o Enable your moderator privilege, if you are a moderator, or+ disable it if it is enabled currently 3 conf_conf_directory_pb= This menu item causes the Directory of Notes dialog box to? appear. In it you can specify selection crimteria to apply to@ the directory: note-range, author, dates, and other criteria. 4 conf_conf_directory_dbD Use this dialog box to specify selection criteria to apply to the< directory: note-range, author, dates, and other criteria. 5 dir_note_selection_lC The selection criteria that you specify from the list below willB be used to limit the directory of notes to those of interest to you. 5 dir_note_noterange_tbD By default, all topic notes are includend in a directory of notes.? Therefore, LAST-1 appears in the field. You can substitute a% range of your choice in the field. 5 dir_note_author_tb? If you want to see a directory of notes written by a certain? author, click on the button and type the author's user name.B If you include a node name with the user name, the directory is( limited to that specific combination. 5 dir_note_before_tb? If you want to limit the directory to notes entered before aA o certain date-time, click on the button and type the date-time.D Use a valid VMS date-time specification; for example, 12-NOV-1988B or YESTERDAY+16:15. (The second example specifies notes written! before yesterday at 4:15 P.M.) 5 dir_note_since_tb> If you want to limit the directory to notes entered since aA certain date-time, click on the button and type the date-time.D Use a valid VMS date-time specification; for example, 12-NOV-1988D or TODAY+10:00. (The second epxample specifies notes written since 10:00 this morning.) 5 dir_note_keyword_tb? If you want the directory of notes associated with a certain5 keyword, click on the button and type the keyword. 5 dir_note_title_tbA If you want a directory of notes that have a certain characterD string included in their titles, click on the button and type the string. 5 dir_note_search_tbB If you want to search through the notes for a certain character= string, cliqck on the button and type the string. The notes5 containing the string are listed in the directory. 5 dir_note_unseen_note_tb? If you want to limit the directory to notes you have not yet seen, click on the button. 5 dir_note_options_lD You can opt to include replies in the directory (by default, only topics are displayed). 5 dir_note_all_replies_tbD Click on this button if you want replies listed in the directory.- (By default, only topic notes arer listed.) 5 dir_note_apply_pbB The Apply push button applies the criteria in the dialog box to the directory.A The Apply push button does not remove the dialog box from your screen. 3 read_note_search_pb@ The Search... menu item displays the Search Notes dialog box,> in which you can type a search string and a note range. The@ first note in the range containing the string is displayed inD a Read window. You can go on to display subsequent notes with the s string. 4 read_note_search_db> In this dialog box, you can type a search string and a note> range. The first note in the range containing the string isB displayed in a Read window. You can go on to display subsequent notes with the string. 5 note_search_string_l0 Type the character string to be searched for. 5 note_search_note_tbC By default, all notes in the conference are searched. In a largeA conference, this operation can take a long time. You catn limit@ the note range to be searched by typing a range, for example, 150-180. 5 note_search_in_new_tbA Click on this button if you want the note to be displayed in a new Read window. 5 note_search_find_pbB Click on the Find push button to start the search for the first, note containing the string you specified. 5 note_search_findnext_pb< Click on the Find Next push button to continue to search.@ The next note (if any) containing the string you spuecified is displayed. 3 conf_conf_keyword_pbA The Keywords... menu item displays the Display Keywords dialogC box. A listing of the conference keywords appears. You can add a keyword to a note.C If you have create-keywords privilege, or if keyword creation isC unrestricted, you can create a new keyword, modify a keyword, or delete a keyword.; You can see a listing of all the notes associated with a? specified keyword by double clicking MB1 on the keywovrd; and@ you can read one of those notes by double clicking MB1 on the note-ID. 4 conf_keyword_disply_db> In this dialog box, you can see a listing of the conference1 keywords, and you can add a keyword to a note.C If you have create-keywords privilege, or if keyword creation isC unrestricted, you can create a new keyword, modify a keyword, or delete a keyword.; You can see a listing of all the notes associated with a? specified keyword by double clickinwg MB1 on the keyword; and@ you can read one of those notes by double clicking MB1 on the note-ID. 5 keyword_disply_keyword_lA You can type a string (including wildcards if you wish) in theA Keyword field and then click on the Apply push button to see a2 listing of the keywords that match that string.= For example, you might type *RA* in the Keyword field. AllA keywords that match are listed, for example CRANBERRY, ORANGE, and RABBIT. 5 keyword_disply_ $ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1j"wxinfo_l; Information on keywords, either all the keywords for the3 conference or a specified keyword, is displayed. 5 keyword_disply_info_udC All the keywords for the conference or the keywords that match a& string that you specify are listed.> If you double click MB1 on a keyword in the list, the notes? associated with that keyword are listed. You can then doubleB click MB1 on one of the note-IDs and the note will be displayed in a Read window. 5 keyword y_disply_apply_pbA You can type a string (including wildcards if you wish) in theA Keyword field and then click on the Apply push button to see a2 listing of the keywords that match that string.= For example, you might type *RA* in the Keyword field. AllA keywords that match are listed, for example CRANBERRY, ORANGE, and RABBIT. 5 conf_keyword_add_pbA The Add... push button displays the Add Keyword dialog box, in@ which you can specify a keyword and the note-ID nzumber of the0 note you want to associate with that keyword. 6 conf_keyword_add_db@ In this dialog box, you can specify a keyword and the note-ID> number of the note you want to associate with that keyword. 7 keyword_add_keyword_l2 Type the keyword here. (It must already exist.)B The keyword is already filled in if you selected it from a list& in the Display Keywords dialog box. 7 keyword_add_noteid_lA Type the note-ID number here to identify the note to {which you want to add a keyword. 7 keyword_add_apply_pbC Click on the Apply push button to add the keyword to the note-ID you have specified.A The Apply push button does not remove the dialog box from your screen. 5 conf_keyword_create_pbD The Create... push button displays the Create Keyword dialog box.B If you are a moderator or have create-keywords privilege, or ifD keyword creation is unrestricted, you can create new keywords for the confere|nce. 6 conf_keyword_create_db= In this dialog box, if you are a moderator or have create-B keywords privilege, or if keyword creation is unrestricted, you. can create new keywords for the conference. 7 keyword_create_keyword_l* Type the keyword you are creating here.@ If keyword creation is restricted, you must be a moderator or+ have create-keywords privilege to create a keyword. 7 keyword_create_apply_pb( Click on Apply to create the keyword.}A The Apply push button does not remove the dialog box from your screen. 5 conf_keyword_delete_pbD The Delete... push button displays the Delete Keyword dialog box,; in which you can delete a keyword from a specified note.B If you are a moderator, you can delete a keyword from all notes? in the conference that it references, and delete the keyword itself. 6 conf_keyword_delete_db@ In this dialog box, you can delete a keyword from a specified note.~B If you are a moderator, you can delete a keyword from all notes? in the conference that it references, and delete the keyword itself. 7 keyword_delete_keyword_l, Type the keyword you want to delete here. 7 keyword_delete_noteid_l? Type the note-ID number (for example, 12.8) of the note from( which you want to delete the keyword. 7 keyword_delete_all_tbA If you are a moderator, you can click on this button to deleteB a keyword from all the notes with which it is associated in the- conference, and delete the keyword itself. 7 keyword_delete_apply_pb, Click on Apply to do the actual deletion.A The Apply push button does not remove the dialog box from your screen. 5 conf_keyword_modify_pb? The Modify... push button displays the Modify Keyword dialogB box, which you can use to change the name of a keyword. The newB keyword automatically replaces the old keyword for all notes to( which the old keyword had been added./ You must be a moderator to modify a keyword. 6 conf_keyword_modify_dbA In this dialog box, you can modify a keyword name if you are a moderator. 7 keyword_modify_keyword_l9 Type the current keyword that you want to modify here./ You must be a moderator to modify a keyword. 7 keyword_modify_newkey_l Type the new keyword here./ You must be a moderator to modify a keyword. 7 keyword_modify_apply_pb4 Click on Apply to change the name of the keyword.A The Apply push button does not remove the dialog box from your screen. 3 conf_conf_marker_pbD The Markers... menu item displays the Display Markers dialog box,B in which you can see a list of your markers for the conference, and add or delete a marker. 4 conf_marker_disply_dbA In this dialog box, you can see a list of your markers for the* conference, and add or delete a marker. 5 marker_disply_marker_lA You can type a string (including wildcards if you wish) in the@ Marker field and then click on the Apply push button to see a1 listing of the markers that match that string.< For example, you might type *RA* in the Marker field. All@ markers that match are listed, for example CRANBERRY, ORANGE, and RABBIT. 5 marker_disply_info_lD Information on markers, either all the markers for the conference' or a specified marker, is displayed. 5 marker_disply_info_udD Informa tion on markers, either all the markers for the conference' or a specified marker, is displayed.@ All the markers for the conference are displayed if you clickA on the Apply push button while the asterisk wildcard is in the Marker field.; If you double click MB1 on a marker icon, that marker isD expanded; that is, the note-ID to which the marker has been added appears.C If you double click on the marker name or the note-ID associatedB with the marker, the note itself is displayed in a Read window. 5 marker_disply_apply_pbA You can type a string (including wildcards if you wish) in the@ Marker field and then click on the Apply push button to see a1 listing of the markers that match that string.D For example, you might type *RA* in the Marker field. All markersD that match are listed, for example CRANBERRY, ORANGE, and RABBIT.A The Apply push button does not remove the dialog box from your screen. 5 conf_marker_add_pbC Click on the Add... push button to display the Add Marker dialog0 box, in which you can add a marker to a note. 6 conf_marker_add_db6 In this dialog box, you can add a marker to a note. 7 marker_add_marker_l/ Type the name of the marker you want to add. 7 marker_add_noteid_l8 Type the note-ID number of the note you want to mark. 7 marker_add_apply_pbB Click on the Apply push button to add the marker to the note-ID= you have specified. The dialog box remains on your screen. 5 conf_marker_delete_pbB Click on the Delete... push button to display the Delete Marker< dialog box, in which you can delete a marker from a note. 6 conf_marker_delete_db; In this dialog box, you can delete a marker from a note. 7 marker_delete_marker_l2 Type the name of the marker you want to delete. 7 marker_delete_apply_pb1 Click on Apply to delete the specified marker.) The dialog box remains on your screen. 3 conf_conf_member_pbD The Members... menu item displays the Display Members dialog box,B in which you can see a list of conference members or moderators" and get information about them. 4 conf_member_disply_dbB In this dialog box, you can see a list of conference members or- moderators and get information about them. 5 member_disply_member_lA You can type a string (including wildcards if you wish) in the@ Member field and then click on the Apply push button to see a6 listing of the member names that match that string. 5 disply_options_rbA Your options are to see a display of all conference members or" just the conference moderators. 5 disply_all_members_tbD Click on this button and then click on Apply to see a list of all the conference members. 5 disply_only_moderators_tbD Click on this button and then click on Apply to see a list of all the conference moderators. 5 member_disply_info_lCu$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1m" Information on members, either all the members of the conference' or a specified member, is displayed. 5 member_disply_info_udC All the members of the conference or the member names that match( a string that you specify are listed.B Double click MB1 on any member name listed to see that member's5 access or node list, mail address, and privileges. 5 member_disply_apply_pbA You can type a string (including wildcards if you wish) in the@ Member field and then click on the Apply push button to see a6 listing of the member names that match that string.A The Apply push button does not remove the dialog box from your screen. 5 conf_member_add_pbD If you are a moderator and have enabled your moderator privilege,D you can click on the Add... push button to display the Add Member dialog box. 6 conf_member_add_dbA A moderator can use the Add Member dialog box to add a member,? to delete a member, and to set member access information and privileges. 7 member_add_member_lD Type the name of the user you want to add as a conference member.? Either type the VMS user name (usually the last name; do notB type the node) or the person's whole name, which will establishB a unique member name (in case another member with the same last0 name is already a member in this conference).: The maximum length of the member name is 64 characters. 7 member_add_mail_tbC Click on the butt on and type the mail address of the new member.D Use the node the member prefers to receive mail on, if the member is on more than one node.B If you click on the button to turn it on but do not type a mail@ address in the field, this member will receive mail sent from? within DEC Notes only if he or she happens to be on the same) system as the person sending the mail. 7 member_add_authoriz_tbA Click on the button and type the node and user-name pair(s) of the new member; for example:& ABC::SMITH, DEF::SMITH, GHI::SHERYL 7 member_add_nodes_tbA Leave the Authorization Nodes field blank if you filled in the Authorization field above.1 Otherwise, type the node(s) of the new member. 7 member_add_grant_lA You can assign privileges to the new member by clicking on the appropriate toggle buttons. 7 add_act_moderator_tbB Click on this button to make the member a conference moderator.5 Moderator privilege includes the other privileges. 7 add_create_keyword_tbD If the creation of new keywords is restricted in this conference,> you may want to click on this button to give the member the$ privilege to create new keywords.D No privilege is needed for any member to add existing keywords to notes. 7 add_writebypass_tbB If the conference is write-restricted, you may want to click on5 this button to give the member writing privileges.C The write-regardless privilege allows a member to write notes toC a conference in which writing notes is generally prohibited, andB also to write notes (including topics) to a conference in which3 writing is generally restricted to replies only. 7 member_add_apply_pbD Click on Apply to add the new user as a member of the conference.A The Apply push button does not remove the dialog box from your screen. 5 conf_member_delete_pbD If you are a moderator and have enabled your moderator privilege,C you can click on the Delete... push button to display the Delete Member dialog box. 6 conf_member_delete_db? As a moderator, you can delete a member from the conference, using this dialog box. 7 member_delete_member_l: Type the name of the member you want to delete from the conference. 7 member_delete_apply_pb' Click on Apply to delete the member.A The Apply push button does not remove the dialog box from your screen. 5 conf_member_modify_pbD Click on Modify... to display the Modify Member dialog box, whichC you (as a moderator with moderator privilege enabled) can use to8 modify access information and privileges of a member. 6 conf_member_modify_dbD In this dialog box, a moderator can modify access information and$ privileges of an existing member. 7 member_modify_member_l Type the current member name. 7 member_modify_newname_tbA If you want to change the member name, click on the button and type the new member name. 7 member_modify_mail_tb@ If you want to change the member's mail address, click on the/ toggle button and type the new mail address.B If you click on the button to turn it on but do not type a mail@ address in the field, this member will receive mail sent from? within DEC Notes only if he or she happens to be on the same) system as the person sending the mail. 7 member_modify_authoriz_tbA To modify the member's access information, click on the button8 and type the node and user-name pair(s); for example: ABC::SMITH, DEF::SMITH 7 member_modify_nodes_tbA Leave the Authorization Nodes field blank if you filled in the Authorization field above.# Otherwise, type the new node(s). 7 member_modify_grant_lC Assign the privileges you want the member to have by clicking on" the appropriate toggle buttons. 7 modify_act_moderator_tbB Click on this button to make the member a conference moderator.> Moderator privilege includes the create-keywords and write- regardless privileges. 7 modify_create_keyword_tbA If the creation of new keywords is restricted, you may want toD click on this button to give the member the privilege of creating new keywords.D No privilege is needed for any member to add existing keywords to notes. 7 modify_writebypass_tbB If the conference is write-restricted, you may want to click on5 this button to give the member writing privileges.C The write-regardless privilege allows a member to write notes toC a conference in which writing notes is generally prohibited, andB also to write notes (including topics) to a conference in which3 writing is generally restricted to replies only. 7 member_modify_apply_pbD Click on Apply to apply the membership information and privileges you have specified.A The Apply push button does not remove the dialog box from your screen. 7 member_modify_show_pb; Click on Show to display the current information for the specified member. 3 conf_conf_modify_pbC The Show/Modify... menu item displays the Show/Modify Conference< dialog box, which shows the conference title, notice, and9 attributes. You can use the dialog box to change them. 4 conf_conf_modify_dbC In this dialog box, you can change the conference title, notice, or attributes. 5 conf_modify_title_tbC The title of the current conference is filled in. If you want to9 change it, click on the button and type the new title. 5 conf_modify_notice_tbD The notice of the current conference is filled in. If you want to: change it, click on the button and type the new notice. 5 conf_modify_conf_attrib_lC Select the attributes you want the conference to have, and click% on the appropriate toggle buttons. 5 conf_modify_write_all_tb= Click on this button to turn it on if you want to make the< writing of notes unrestricted. Turn it off if you want to= restrict writing to moderators and members with the write- regardless privilege. 5 conf_modify_restr_mem_tbD Click on this button to turn it on if you want to restrict accessC to the conference to members only. Turn it off if the conference is to be public. 5 conf_modify_restr_key_tbA Click on this button to turn it on if you want the creation ofC new keywords to be restricted to moderators and members with the create-keywords privilege.D Any member can add an existing keyword to a note, without special< privilege, whether or not keyword creation is restricted. 5 conf_modify_reply_only_tb@ If you want to restrict the writing of notes to replies only, click on this button. 5 conf_modify_apply_pbD Click on Apply to apply the information you have specified to the conference.A The Apply push buttϪ~$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1 "on does not remove the dialog box from your screen. 3 read_note_setseen_pbD The Set Seen... menu item displays the Set Seen dialog box, which- you can use to set unread notes as "seen." 4 read_note_setseen_db= You can use the Set Seen dialog box to set unread notes asA "seen," either all notes in the conference or the notes before" or since a specified date-time. 5 note_setseen_rbD Your options are to set notes as seen before or since a specified*  date-time, or to set all notes as seen. 5 note_setseen_before_tb= If you want to set all notes before a certain date-time as6 "seen," click on the button and type the date-time.B Use a valid VMS date-time specification, such as 10-NOV-1988 or5 YESTERDAY+16:00 (which means yesterday at 4 P.M.). 5 note_setseen_since_tbD If you want to set all notes since a certain date-time as "seen,". click on the button and type the date-time.B Use a valid VMS date-time specification, such as 10-NOV-1988 or5 YESTERDAY+16:00 (which means yesterday at 4 P.M.). 5 note_setseen_all_tbB If you want all the conference notes to be set as "seen," click on this button. 3 conf_conf_moderate_pbA Choose the Enable Moderator menu item to enable your moderatorA privilege in the conference. You must enable this privilege in/ order to perform privileged moderator tasks.@ After you have enabled the moderator privilege, the menu itemA changes to Disable Moderator, which allows you to disable yourB moderator privilege when you have finished performing moderator tasks. 2 conf_note_pde2 Use the Notes menu to perform these operations: o Create a new note o Modify a note's attributes: o Read a note in an existing window or in a new window: o Delete a note (if you are the author or a moderator) ww" 1 conf_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.@ From the pop-up menu, you can quickly display the next unseenC note, display a note of your choice, write a note, print a note, or close the conference. 2 conf_popup_next_unseen_pb@ Choose the Next Unseen menu item to display the next note you" have not seen in a Read window. 2 conf_popup_read_in_new_pbC Choose the Read in New Window menu item to display an additional? note, which you selected by clicking on it in the Conference@ window, in a new Read window. The note or notes already being% displayed remain in their windows. 2 conf_popup_note_pb= Choose the Note-ID... menu item to bring up the Read Note-? ID dialog box, in which you can type the note-ID number (for0 example, 112.2) of the note you want to read.@ You can also specify that the note be displayed in a new ReadC window, allowing any currently displayed note or notes to remain in their windows. 2 conf_popup_crea_topic_pbC Choose the Create Topic menu item to bring up an Edit window, inC which you can write a new topic note to enter in the conference. 2 conf_popup_print_pbB Choose the Print menu item to print a note that you selected by+ clicking on it in the Conference window. 2 conf_popup_close_conf_pbD Choose the Close Conference menu item to close the conference and its associated windows. ww1 read_windowA The R ead window is the window in which a note is displayed for= reading. In this window, you can choose from various menus> to read other notes, to write a note, to perform conference) operations, and to take other actions.; More than one Read window can be on your screen at once,: displaying notes in the same conference or in different conferences. 2 read_work_db? The body of a note is the note's text, displayed in the ReadD window. In this window, you can choose from various menus to readB other notes, to write a note, to perform conference operations, and to take other actions.; More than one Read window can be on your screen at once. 3 read_work_noteid_lD The note-ID identifies the note you are reading. If it is a topicA note, the note-ID number is n.0, a number with a decimal pointA followed by 0. A topic note is the first note in a discussion.< Its replies are numbered sequentially, starting with n.1. 3 read_work_title_lD The title of the topic note appears. (If you are reading a topic,B its title appears. If you are reading a reply, the title of the& topic note for this reply appears.) 3 read_work_nofn_lD If this is a topic note, the number of replies it has appears. IfC it is a reply note, its sequence and the total number of replies appears; for example, 1 of 3. 3 read_work_author_l& The author's node and name appears. 3 read_work_date_l2 The date and time the note was entered appears. 3 read_work_attrib_l? The number of lines in the note and the keywords attached toC the note, if any, are displayed. If you are reading a reply, its title appears also. 3 read_work_textA The Read window is the window in which a note is displayed for= reading. In this window, you can choose from various menus> to read other notes, to write a note, to perform conference) operations, and to take other actions. 3 read_work_create_reply_pbD Click on this button if you want to write a reply. An Edit window will appear. 3 read_work_back_topic_pbA Click on the arrow to the left of the Topic push button to see9 the preceding topic note displayed in the Read window. 3 read_work_topic_pbB Click on the Topic push button to see the associated topic noteB (the note numbered n.0) when you are currently reading a reply. 3 read_work_next_topic_pbB Click on the arrow to the right of the Topic push button to seeC the next topic note (numbered n.0) displayed in the Read window. 3 read_work_back_reply_pb= Click on the arrow to the left of the Reply push button toA see the preceding note in the discussion displayed in the Read window.B If you are currently reading the first reply in the discussion, the topic will be displayed. 3 read_work_reply_pbD If you are reading a topic, click on the Reply push button to seeC the first reply displayed in the Read window. If you are already@ reading a reply, click on the arrow to the right of the Reply% push button to see the next reply. 3 read_work_next_reply_pbB Click on the arrow to the right of the Reply push button to see/ the next reply displayed in the Read window. 3 read_work_back_page_pbD Click on the arrow to the left of the Page push button to see theC preceding page in a multipage note, or (if there is no precedingD page in the note) the preceding note (either a topic or reply) in the conference. 3 read_work_page_pbD Click on the Page push button to see the next page of a multipage note. 3 read_work_next_page_pbA Click on the arrow to the right of the Page push button to seeC the next page of a multipage note. If there are no more pages inA the note, you will see the next note in the discussion, or (ifD you are at the end of the discussion) the next unseen note in the conference. 3 read_work_unseen_pbC Click on the Next Unseen push button to see the next unseen note in the conference. wwݷ1 read_menu_barA You use menus to perform DEC Notes operations, such as reading( notes, creating new notes, and so on.D The menu names appear in the menu bar of a window. To use a menu,@ position the pointer on a menu name, such as File, then pressD and hold MB1. The pull-down menu appears. Still holding MB1 down,C move the pointer to the menu item you want, and then release MB1 to select that item.B The Read window contains the following menus: File, Edit, Link, Conference, Notes, and Help. 2 read_file_pde1 Use the File menu to perform these operations:3 o Send a mail message or forward a note by mail o Extract notes to a file o Print notes o Close the Read window o Close the conference 3 read_file_extract_pbC The Extract... menu item brings up the Extrd~:$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1-"act Notes dialog box,4 in which you can extract notes to an output file. 4 read_file_extract_db? In this dialog box, you can extract notes to an output file. 5 note_extract_filespec_l? Type the file specification of the file to which you want to extract a note or notes. 5 note_extract_selection_lD Specify the criteria of the notes you want to extract by clicking< on the appropriate toggle buttons and typing information. 5 note_extract_range_tb2 If you are reading a note, its note-ID appears.= If you want to extract a different note or range of notes,= substitute the note-ID or a note range of your choice; for example, 212.0 or 500-LAST. 5 note_extract_author_tbB If you want to extract notes written by a certain author, click1 on the button and type the author's user name. 5 note_extract_before_tbC If you want to limit the notes extracted to those entered beforeC a certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_extract_since_tbD If you want to limit the notes extracted to those entered since aA certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_extract_keyword_tb= If you want to extract the notes associated with a certain5 keyword, click on the button and type the keyword. 5 note_extract_title_tbB If you want to extract the notes whose titles include a certain= character string, click on the button and type the string. 5 note_extract_unseen_tbD If you want to extract only notes you have not yet seen, click on the button. 5 note_extract_options_l< Your selection options are to mark the extracted notes as? "seen," to include replies along with topics, to include the= note headers, and to append the notes to an existing file. 5 note_extract_mark_seen_tb= Click on this button if you want to mark the notes you are* extracting as "seen" in the conference. 5 note_extract_incl_repl_tbC Click on this button if you want to include replies in the notes9 extracted. By default, only topic notes are extracted. 5 note_extract_incl_head_tbD Click on this button to turn it off if you do not want to includeC the note header in the extracted file. By default, the header is$ included and so the button is on. 5 note_extract_append_tbC If you want to append the note(s) to an existing file, type that@ file specification in the Output Filename field at the top ofD this dialog box, and click on Append to File. The extracted notes, will be appended to the end of that file. 5 read_file_extract_ddif_db= If any note in the range of notes you are extracting is inB DIGITAL Document Interchange Format (DDIF), it can be extractedA to a separate output file but not to the same file as the non- DDIF notes.A This dialog box informs you of the note-ID and the output file7 name of the DDIF file. You can change the file name.= If you click on OK, the note is extracted. If you click on% Cancel, the note is not extracted. 6 note_extract_ddif_note_nbr_t= If any note in the range of notes you are extracting is inB DIGITAL Document Interchange Format (DDIF), it can be extractedA to a separate output file but not to the same file as the non- DDIF notes.) The note-ID of the DDIF note is given. 6 note_extract_ddif_file_l= If any note in the range of notes you are extracting is inB DIGITAL Document Interchange Format (DDIF), it can be extractedA to a separate output file but not to the same file as the non- DDIF notes.B The default output file name of the file to which the DDIF note: is to be written appears. You can change the file name. 3 read_file_print1_pbD Choose the Print menu item to print the selected note or the note you are reading. 3 read_file_print2_pbB Choose the Print... menu item to display the Print Notes dialog box.@ You can use this dialog box to specify criteria for selecting< notes for printing, such as note range, author, and date. 4 read_file_print_db@ You can use this dialog box to specify criteria for selecting< notes for printing, such as note range, author, and date. 5 note_print_selection_l= You can specify your criteria for selection of notes to beC printed by clicking on the appropriate toggle buttons and typing information. 5 note_print_range_tb: If you are reading a note, its note-ID appears. You canD substitute the note-ID or note range of your choice; for example, 8.4 or 250-LAST. 5  note_print_author_tbD If you want to print only notes by a certain author, click on the* button and type the author's user name. 5 note_print_before_tbC If you want to limit the notes printed to those entered before aA certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_print_since_tbB If you want to limit the notes printed to those entered since aA certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_print_keyword_tbD If you want to print the notes associated with a certain keyword,, click on the button and type the keyword. 5 note_print_title_tb@ If you want to print the notes whose titles include a certain= character string, click on the button and type the string. 5 note_print_unseen_tbB If you want to print only notes you have not yet seen, click on the button. 5 note_print_options_lB Your selection options are to mark the printed notes as "seen,"@ to include replies along with topics, and to include the note headers. 5 note_print_mark_seen_tb= Click on this button if you want to mark the notes you are( printing as "seen" in the conference. 5 note_print_incl_reply_tbC Click on this button if you want to include replies in the notes5 printed. By default, only topic notes are printed. 5 note_print_incl_header_tbD Click on this button to turn it off if you do not want to includeB the note header in the printout. By default, it is included and so the button is on. 5 note_print_invok_widgt_pbC Click on Options... to bring up the Printing Options dialog box.< You can use it to specify the following printing options: o Number of copies o Page range8 o Print format (line printer, terminal, ANSI2, ANSI,8 PostScript(R), ReGIS, Tektronix, DDIF, or DITROFF) o Printer o Print-after time? You can also click on Options... within the Printing OptionsC dialog box to bring up another dialog box, called Print Options,; in which you can specify a number of additional options. 5 read_file_ddif_print_dbC If any note in the range of notes you are printing is in DIGITAL= Document Interchange Format (DDIF), it can be printed as a? separate print job on a postscript printer, but not together with the non-DDIF notes.C If you click on OK, the note is printed. If you click on Cancel, the note is not printed. 6 note_ddif_print_nbr_lC If any note in the range of notes you are printing is in DIGITAL= Document Interchange Format (DDIF), it can be printed as a@ separate print job, but not together with the non-DDIF notes. 6 note_ddif_print_widgt_pbD Click on the Options... push button to display a dialog box which0 you can use to select other printing options. 3 read_file_dismiss_pb5 The Close Window menu item closes the Read window. 2 read_edit_pdeB Use the Edit menu to copy selected text or to select the entire contents of a window. 2 Link_menuA Use the Link menu to create, follow, and display links between+ information in one or more applܝ$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;12"ications.@ Use context-sensitive help to get help on any Link menu item,B a tutorial on using the Link menu, or conceptual and historical background information.? One way to get context-sensitive help on the Link menu is as follows:? 1. Pull down the Link menu, keep MB1 depressed, and move the2 pointer to any selectable (non-dimmed) item. 2. Press the Help key. 3. Release MB1.B 4. When the help window appears, choose Link Menu from the list of additional topics. 2 read_conf_pde% You can use the Conference menu to; o Display a directory of notes in the Conference window# o Search for a character string< o Perform operations with keywords, markers, and members> o Modify the conference attributes (a moderator privilege) o Set notes as "seen"A o Enable your moderator privilege, if you are a moderator, or+ disable it if it is enabled currently 2 read_note_pde2 Use the Notes menu to perform these operations: o Create a new note o Modify a note's attributes: o Read a note in an existing window or in a new window: o Delete a note (if you are the author or a moderator) 3 read_note_create_pbA The Create New Note... menu item brings up the Create New NoteC dialog box. You can use this dialog box to specify the note typeA (topic or reply) and to set the note's attributes, as follows:+ o Allow or prohibit replies to the note o Hide the note@ o Make the note a pointer to a conference, to publicize that conference* o Use the last text in the edit buffer 4 read_note_create_dbA You can use this dialog box to specify the note type (topic or7 reply) and to set the note's attributes, as follows:+ o Allow or prohibit replies to the note o Hide the note@ o Make the note a pointer to a conference, to publicize that conference* o Use the last text in the edit buffer 5 note_create_operation_l> The two types of notes are topics and replies. A topic noteD begins a discussion and is numbered n.0. Its replies are numbered? n.1, n.2, and so forth. For example, 8.0 is the note-ID of a4 topic, and 8.1 and 8.2 are replies to that topic. 5 note_create_operation_rb> The two types of notes are topics and replies. A topic noteD begins a discussion and is numbered n.0. Its replies are numbered? n.1, n.2, and so forth. For example, 8.0 is the note-ID of a4 topic, and 8.1 and 8.2 are replies to that topic. 5 note_create_reply_tbB Click on this button to turn it on if you want the note to be a reply rather than a topic.B If you are reading a note, its note-ID appears in the field. IfC you want your note to be a reply to a different note, substitute that note-ID. 5 note_create_topic_tbD If the Topic button is on, your note will be a topic, not a reply? to another note. By default, the button is turned on. If you. click on Reply, the Topic button turns off. 5 note_create_noteid_tB If you are reading a note, its note-ID appears in the field. IfC you want your note to be a reply to a different note, substitute that note-ID. 5 note_create_attrib_l< Click on the appropriate toggle buttons to set the note's attributes, as follows:+ o Allow or prohibit replies to the note o Hide the note@ o Make the note a pointer to a conference, to publicize that conference* o Use the last text in the edit buffer 5 note_create_replies_tbC By default, this button is on. Click on it to turn it off if you) want to prohibit replies to your note. 5 note_create_hidden_tb: Click on this button if you want the note to be hidden.A A hidden note can be viewed only by the author or a moderator.B Other users who try to read it get a message indicating that it% is hidden and cannot be displayed. 5 note_create_conference_tbD Click on this button and type a conference notefile specification= (for example, MAR::ASTRONOMY) if you want to associate the@ conference with this note. This publicizes that conference to readers of the note. 5 note_create_last_tbB Click on this button if you want to use the last text (the text$ in the edit buffer) in your note. 3 read_note_modify_pb> The Show/Modify... menu item brings up the Show/Modify NoteD dialog box, which shows the note's current attributes. If you areA a moderator or the author of the note, you can use this dialog3 box to change the note's attributes, as follows: o Allow or prohibit replies& o Make the note hidden or unhidden o Change the title, o Create a pointer to another conference+ o Move the note by changing its note-ID o Add keywords to the note6 You can also display the note's current attributes. 4 read_note_modify_db@ If you are a moderator or the author of the note, you can use? this dialog box to change the note's attributes, as follows: o Allow or prohibit replies& o Make the note hidden or unhidden o Change the title, o Create a pointer to another conference+ o Move the note by changing its note-ID o Add keywords to the note6 You can also display the note's current attributes. 5 note_modify_noteid_l? If you are reading a note, its note-ID appears. You can type another note-ID. 5 note_modify_attrib_l? You can make the following changes in the note's attributes: o Allow or prohibit replies& o Make the note hidden or unhidden o Change the title, o Create a pointer to another conference+ o Move the note by changing its note-ID o Add keywords to the note 5 note_modify_replies_tbA Turn this toggle button on or off to allow or prohibit further replies to the note. 5  note_modify_hidden_tb@ Click on this button to turn it on if you want the note to be hidden.A A hidden note can be viewed only by the author or a moderator.B Other users who try to read it get a message indicating that it is hidden. 5 note_modify_title_tbB If you are reading a note, its title appears. You can change it> by substituting a new title, after you click on the button. 5 note_modify_conference_tbD If you want the note to be a pointer to another conference, clickB on the button and type the notefile specification (for example,? MAR::ASTRONOMY) of the conference to which you want the noteB to point. This will publicize that conference to readers of the note. 5 note_modify_new_noteid_tbB You can change the note-ID of the note, thus effectively moving6 the note to a different location in the conference.B Click on the button. Then be sure to type a new note-ID that isB not already in use in the conference. Two notes cannot have the same note-ID.B You can relocate a range of notes by typing a note range in theB Note-ID field above. (For example, type 4.0-4.4 to move topic 4A and its four replies.) Then in the New Note-ID field, type the? new note-ID of the first of these notes (for example, 15.0);C the others will follow in sequence (becoming, for example, 15.1- 15.4). 5 note_modify_keywords_tb= To add a keyword to the note, click on the button and type@ the keyword. You must use an existing keyword unless you have* moderator or create-keywords privilege. 5 note_modify_show_pbB Click on Show to display the current attributes of the note you, specified. The dialog box is not removed. 3 read_note_read_pde? Press and hold MB1 and move the pointer right to display theA submenu. You can then display another submenu or a dialog box,? depending on what you want to read. Your options are to read o The next unseen note*  o The next page, note, reply, or topic6 o The preceding (back) page, note, reply, or topic o The last read noteC o A note that you specify by its note-ID, either in an existing& Read window or a new Read window 4 read_note_read_unseen_pbD Choose Unseen to display the next note that you have not yet seen in the conference. 4 read_note_read_next_pdeC Press and hold MB1 and move the pointer right to display anotherC submenu, in which you can chojGZ $ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1^"ose to read the next page, the next+ note, the next reply, or the next topic. 5 read_note_read_next_p_pbA Choose Next Page to display the next page of a multipage note,< or (if you are at the end of a note) the next note in the? discussion, or (if you are at the end of the discussion) the& next unseen note in the conference. 5 read_note_read_next_n_pbB Choose Next Note to display the next note after the one you are reading. 5 read_note_read_next_r_pbA Choose Next Reply to display the next reply after the note you are reading. 5 read_note_read_next_t_pbA Choose Next Topic to display the next topic after the note you are reading. 4 read_note_read_back_pde? Press and hold MB1 and move the pointer right to display the@ submenu, in which you can choose to read the back (preceding) page, note, reply, or topic. 5 read_note_read_back_p_pb@ Choose Back Page to display the preceding page of a multipageA note, or (if you are at the beginning of a note) the preceding note in the conference. 5 read_note_read_back_n_pb? Choose Back Note to read the preceding note (whether it is a topic or reply). 5 read_note_read_back_r_pbD Choose Back Reply to display the reply preceding the note you are reading.? If you are reading the first reply in a discussion, the note7 displayed will be a topic (n.0) rather than a reply. 5 read_note_read_back_t_pbD Choose Back Topic to display the topic preceding the note you are reading. 4 read_note_read_last_note_pb@ Choose Last Read Note to display again the last note you read before the current one. 4 read_note_read_noteid_pb? Choose the Note-ID... menu item to bring up the Read Note-IDD dialog box. You can use this dialog box to specify the note-ID ofC the note you want to display, and to specify whether you want it displayed in a new window. 5 read_note_read_note_dbA You can use this dialog box to specify the note-ID of the noteD you want to display, and to specify whether you want it displayed in a new window. 6 read_note_read_note_id_l? If you are reading a note, its note-ID is displayed. You can substitute another note-ID. 6 read_note_read_in_new_tb= Click on this button if you want to read the note in a new> window, with the current note remaining in its Read window.7 (Otherwise, the new note replaces the current note.) 3 read_note_readnew_note_pbA Choose Read in New Window to display the note in a new window,* leaving the current note in its window. 3 read_note_delete1_pbB If you are a moderator or the author of the note, you can clickB on the Delete menu item to delete the selected note or the note you are reading. 3 read_note_delete2_pbC The Delete... menu item brings up the Delete Note dialog box. IfB you are a moderator or the author of the note, you can use this. dialog box to specify a note and delete it. 4 read_note_delete_db@ If you are a moderator or the author of the note, you can use3 this dialog box to specify a note and delete it. 5 note_delete_noteid_lC If you are reading a note, its note-ID appears in this field. If? you want to delete a different note, substitute its note-ID.@ You must be a moderator or the author of a note to delete it. ww 1 read_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.C From the pop-up menu, you can quickly perform any of a number of operations: o Reading another note o Writing a note o Printing a note% o Closing the current Read window o Closing the conference 2 read_popup_next_unseen_pb? Choose Next Unseen to display the next note you have not yet seen. 2 read_popup_next_pde? Press MB3 and drag the pointer right to display a submenu inD which you can choose to display the next page, the next note, the! next reply, or the next topic. 3 read_popup_next_page_pbA Choose Next Page to display the next page of a multipage note,< or (if you are at the end of a note) the next note in the? discussion, or (if you are at the end of the discussion) the& next unseen note in the conference. 3 read_popup_next_note_pb? Choose Next Note to display the next note (either a topic or reply). 3 read_popup_next_reply_pbA Choose Next Reply to display the next reply in the discussion. 3 read_popup_next_topic_pb4 Choose Next Topic to display the next topic note. 2 read_popup_back_pde? Press MB3 and drag the pointer right to display a submenu inD which you can choose to display the preceding page, the preceding5 note, the preceding reply, or the preceding topic. 3 read_popup_back_page_pb@ Choose Back Page to display the preceding page of a multipageC note, or (if you are at the beginning of the note) the preceding note in the conference. 3 read_popup_back_note_pbA Choose Back Note to read the preceding note (either a topic or reply). 3 read_popup_back_reply_pb4 Choose Back Reply to display the preceding reply.D If you are currently reading the first reply in a discussion, the& topic note (n.0) will be displayed. 3 read_popup_back_topic_pbB Choose Back Topic to display the preceding topic note (numbered n.0). 2 read_popup_last_note_pb@ Choose Last Read Note to display again the last note you read before the current one. 2 read_popup_note_pb@ Choose Note-ID... to bring up the Read Note-ID dialog box, inA which you can specify the note-ID of the note you want to read= and specify whether it is to be displayed in a new window. 2 read_popup_crea_reply_pbA Choose the Create Reply menu item if you want to write a replyD to the note you are reading. An Edit window appears, in which you can write your reply. 2 read_popup_crea_topic_pb< Choose Create Topic if you want to write a topic note. An@ Edit window appears in which you can write the note, which is. identified as a new topic in the title bar. 2 read_popup_print_pb> Choose Print if you want to print the note you are reading. 2 read_popup_dismiss_pbA Choose Close Window to remove the current Read window from the screen. 2 read_popup_close_conf_pb: Choose Close Conference to close the conference and its associated windows. wwR1 edit_window; The Edit window is the window in which you write a note.D Your node, user name, and the date-time are already filled in. At@ the top, the note is identified as a new topic or as a reply.@ Type a meaningful title for your note in the Title field, and? type any keywords you want to associate with the note in the? Keywords field. (They must be keywords that already exist in? the conference, unless you have moderator or create-keywords> privilege or unless keyword creation is unrestricted in theB conference.) Type the text of your note, and when you are readyB to enter it, choose Enter Note from the File pull-down menu; or5 you can cancel the entry by choosing Cancel Enter. 2 edit_work_db; The Edit window is the window in which you write a note .D Your node, user name, and the date-time are already filled in. At@ the top, the note is identified as a new topic or as a reply.@ Type a meaningful title for your note in the Title field, and? type any keywords you want to associate with the note in the? Keywords field. (They must be keywords that already exist in? the conference, unless you have moderator or create-keywords> privilege or unless keyword creation is unrestricted in theB conference.) Type the text of your note, and when you are readyB to enter it, choose Enter Note from the File pull-down menu; or5 you can cancel the entry by choosing Cancel Enter. 3 edit_work_author_l5 Your node and user name are already in this field. 3 edit_work_date_l7 The current date and time are already in this field. 3 edit_work_title_l9 Type a title for your note in this field. It should beA meaningful, as it will appear in directories of notes and when others are readin$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1yR"g your note. 3 edit_work_keyword_l= You can associate any of the conference keywords with your? note by typing them in this field. Keywords act as a kind of convenient index to notes.D The keywords you use must already exist in the conference, unlessD you have moderator or create-keywords privilege or unless keyword. creation is unrestricted in the conference. 3 edit_work_text# Type the text of your note here. 2 edit_finish_create_dbC This dialog box is a safeguard against inadvertently losing text@ you have written in an Edit window. The dialog box appears ifB you are currently in the process of creating a note in the EditA window and, without having entered the note in the conference,B you try to close the conference, exit from DEC Notes, or create another new note.C The dialog box reminds you that you are currently creating a newC note, and lets you cancel this note, enter it in the conference,A or save the note text in a file. Alternatively, you can cancelB the operation you just initiated (to close the conference, exitA from DEC Notes, or create another new note) by clicking on theB Cancel Operation push button. Then the Edit window remains open4 and you can work further on the note in progress. 3 finish_create_lA You are reminded that you are in the process of creating a newB note, so that you do not inadvertently cancel the note and lose your work. 3 finish_options_l@ Your options are to cancel the note in progress, to enter the> note in the conference, or to save the note text in a file. 3 finish_note_cancl_tbB Click on this button if you want to cancel the note you started0 to write without saving the text of the note. 3 finish_note_enter_tbD This button is on by default. It causes the note to be entered in the conference.@ The button goes off if you click on one of the other buttons. 3 finish_note_save_tbC Click on this button if you want to save the text of the note in. a file. Then type a file name for the file.@ If you do not supply a file type, the file type by default is .TXT. wwz1 edit_menu_bar@ You use menus to perform DEC Notes operations. The menu namesB appear in the menu bar of a window. To use a menu, position theC pointer on the menu name, such as File, then press and hold MB1.D The pull-down menu appears. Hold MB1 down and move the pointer to? the menu item you want, and release MB1 to select that item.@ The Edit window contains the following menus: File, Edit, and Help. 2 edit_file_pde1 Use the File menu to perform these operations:7 o Enter a note you have written into the conference o Set the note's attributes o Save the note in a file! o Include a file in your note' o Use an existing file in your noteA o Cancel the note so that it is not entered in the conference 3 edit_file_enter_pbD When you are satisfied with the note you have written in the EditD window, choose Enter Note from the File menu to enter the note in the conference. 3 edit_file_attribute_pbC Choose Note Attributes... to bring up the Note Attributes dialog5 box. In this dialog box, you can do the following:, o Allow or prohibit replies to your note' o Make your note hidden or unhidden4 o Make your note a pointer to another conference 4 edit_file_attribute_db0 In this dialog box, you can do the following:, o Allow or prohibit replies to your note' o Make your note hidden or unhidden4 o Make your note a pointer to another conference 5 edit_attrib_replies_tbD By default, this button is already on. Click on it to turn it off0 if you want to prohibit replies to your note. 5 edit_attrib_hidden_tbA Click on this button to turn it on if you want your note to be hidden.?  A hidden note can be read only by its author or a moderator.@ Other users who try to read it get a message that the note is hidden. 5 edit_attrib_conference_tbD Click on this button and type a conference notefile specification= (for example, MAR::ASTRONOMY) if you want to associate the@ conference with this note. This publicizes that conference to readers of the note. 3 edit_file_saveas_pb@ The Save As... menu item brings up the Save Draft File dialog@ box, which you can use to save the note you have written in a file. 4 edit_file_saveas_dbB You can use the Save Draft File dialog box to save the note you have written in a file. 5 edit_saveas_filename_lC Type the name of the file you are creating for the note you have written.C If you do not include the file type, the file type by default is TXT. 3 edit_file_incl_pbB The Include File... menu item brings up the Include File dialog@ box. In thi s dialog box, you can see a directory of files (inA your default directory) whose file name or file type match the? string in the File Filter field. You can select one of theseB files by clicking on it; or you can specify a different file inD the Selection field. You can substitute a different string in theC File Filter field to get a different directory listing of files.; When you have selected a file, click on OK, and the text> contained in that file appears in the note yo u are writing. 4 edit_file_incl_db@ In this dialog box, you can see a directory of files (in yourC default directory) whose file name or file type match the string> in the File Filter field. You can select one of these files@ by clicking on it; or you can specify a different file in theC Selection field; or you can substitute a different string in theC File Filter field to get a different directory listing of files.; When you have selected a file, click on OK, and the text> contained in that file appears in the note you are writing. 3 edit_file_usef_pb@ Choose the Use Existing File... menu item to bring up the Use= Existing File dialog box if you want to use the text of anA existing file as the entire text of a note. When you specify aB file name in this dialog box and click on OK, the Edit window's? text area informs you that the files's text will be entered.C The text itself does not appear in the Edit window. By contrast,> when you choose the Include File... menu item and include aC specified file, the text of the file appears in the Edit window, and you can edit it. 4 edit_file_usef_dbC Use this dialog box when you want to use the text of an existing= file without change as the entire text of a note. When you> specify a file name in this dialog box and click on OK, the@ Edit window's text area informs you that the file's text will be entered.C The text itself does not appear in the Edit window. By contrast,> when you choose the Include File... menu item and include aC specified file, the text of the file appears in the Edit window, and you can edit it.B In the dialog box, you can specify a string as a file "filter,"C and then click on the Filter push button, causing the file names@ containing that string to be displayed. You can select one ofD them by clicking on it. Alternatively, you can type the file name in the Selection field. 3 edit_file_cancl_pbB Choose Cancel Enter if you decide not to enter your note in the conference. 2 edit_edit_pde= The Edit menu can be used to perform the following editing operations on text: o Undo a clearing operation o Cut o Copy o Paste o Clear' o Select all the text in the window 3 edit_edit_undo_pbC You can restore the text you just cleared by choosing Undo Clear from the Edit menu. 3 edit_edit_cut_pb? First select the text you want to delete by holding down MB1C and dragging the pointer across it; or select the entire text by* choosing Select All from the Edit menu.A Then choose the Cut menu item from the Edit menu. The selected text is cut from the note.@ The cut text is put into a paste buffer, and it can be pastedD wherever you want. To paste, position the cursor and choose Paste8 from the Edit menu. The text reappears at the cursor.@ The text remains in the$ NOTES026.A?b ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1 paste buffer until you cut some other8 text, which then replaces the contents of the buffer. 3 edit_edit_copy_pb? If you want to copy some text elsewhere in your note withoutA deleting it from where it is, first select the text by holdingB down MB1 and dragging the pointer over it (or choose Select All? from the Edit menu to select all the text in the note). ThenC choose Copy instead of Cut. (Copy and Cut both put the text into@ the paste buffer, but Cut deletes it from the window, whereas Copy does not.)D Position the cursor and then choose Paste from the menu. The text$ is copied to the cursor position. 3 edit_edit_paste_pb@ If you have cut some text from your note, this text is in theB paste buffer. You can reinsert it into the note at the position> of the cursor by choosing the Paste menu item from the Edit menu. 3 edit_edit_clear_pbD If you want to delete some text from your note without putting itC into the paste buffer, first select the text by holding down MB1C and dragging the pointer across it (or select the entire text byA choosing Select All from the Edit menu). Then choose the Clear menu item from the Edit menu.A The text disappears. The contents (if any) of the paste buffer are unchanged. 3 edit_edit_select_pbA Choose the Select All menu item to select all the text in your note. ww>6 1 edit_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.A From the pop-up menu, you can quickly enter your note into the> conference, cut, copy, or paste text, or cancel your entry. 2 edit_popup_enter_pb@ When you are satisfied with the note you have written, choose4 Enter Note to enter the note into the conference. 2 edit_popup_cut_pb? First select the text you want to delete by holding down MB1C and dragging the pointer across it; or select the entire text by* choosing Select All from the Edit menu.C Then choose the Cut menu item from the pop-up menu. The selected text is cut from the note.@ The cut text is put into a paste buffer, and it can be pastedD wherever you want. To paste, position the cursor and choose Paste; from the popu-up menu. The text reappears at the cursor.@ The text remains in the paste buffer until you cut some other3 text, which replaces the contents of the buffer. 2 edit_ popup_copy_pb? If you want to copy some text elsewhere in your note withoutA deleting it from where it is, first select the text by holdingB down MB1 and dragging the pointer over it (or choose Select All? from the Edit menu to select all the text in the note). ThenC choose Copy instead of Cut. (Copy and Cut both put the text into@ the paste buffer, but Cut deletes it from the window, whereas Copy does not.)D Position the cursor and then choose Paste from the menu. The text$ is copied to the cursor position. 2 edit_popup_paste_pb@ If you have cut some text from your note, this text is in theB paste buffer. You can reinsert it into the note at the position@ of the cursor by choosing the Paste menu item from the pop-up menu. 2 edit_popup_cancl_pbB Choose Cancel Enter if you decide not to enter your note in the conference.wwFP  ANKAN overviewabout main_work_boxmain_caution_box main_window scroll_barsOK_pb cancel_pbclasses entry_names conferencesObjects main_menu_bar main_popup conf_windowtopicsreplieskeywordsmarkersmembers conf_menu_bar conf_popup read_window read_menu_bar read_popup edit_window edit_menu_bar edit_popup"*[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1+,>b./J 4- 0123KPWO56̈Zģ7yģ89GJHJro|URM 1.2.IMotif Uil CompilerIL;5149V2.0-00013-DEC-2004 16:00:39.89DWNOTES_UIV1.0gjUqqof   l @  l4 L 0t D 0 T $  H X8EDIT_POPUPEDIT_FINISH_CREATE_DBEDIT_FILE_ATTRIBUTE_DBEDIT_FILE_USEF_DBEDIT_FILE_INCL_DBEDIT_FILE_SAVEAS_DBEDIT_WINDOWREAD_POPUPREAD_NOTE_READ_NOTE_DBREAD_NOTE_SETSEEN_DBREAD_NOTE_SEARCH_DBREAD_FILE_DDIF_PRINT_DBREAD_FILE_PRINT_DBREAD_NOTE_MODIFY_DBREAD_FILE_EXTRACT_DDIF_DBREAD_FILE_EXTRACT_DBREAD_NOTE_DELETE_DBREAD_NOTE_CREATE_DBREAD_WINDOWCONF_POPUPCONF_MEMBER_MODIFY_DBCONF_MEMBER_DISPLY_DBCONF_MEMBER_DELETE_DBCONF_MEMBER_ADD_DBCONF_MARKER_DISPLY_DBCONF_MARKER_DELETE_DBCONF_MARKER_ADD_DBCONF_KEYWORD_MODIFY_DBCONF_KEYWORD_DISPLY_DBCONF_KEYWORD_DELETE_DBCONF_KEYWORD_CREATE_DBCONF_KEYWORD_ADD_DBCONF_CONF_MODIFY_DBCONF_CONF_DIRECTORY_DBCONF_WINDOWMAIN_DUMMY_WIDGETMAIN_POPUPMAIN_ENTRY_DELETE_DBMAIN_ENTRY_MODIFY_DBMAIN_ENTRY_UPDATE_DBMAIN_ENTRY_ADD_DBMAIN_CUSTOMIZE_PROFILE_DBFILE_OBJECT_MODIFY_DBFILE_OBJECT_DELETE_DBFILE_OBJECT_ADD_DBMAIN_OBJECT_DISPLY_DBMAIN_FILE_MAIL_DBFILE_DIRECTORY_ACCESS_TBMAIN_FILE_DIRECTORY_DBMAIN_FILE_CREATE_DBMAIN_FILE_OPEN_DBMAIN_WINDOWDUMMY_WINDOWMAIN_HELP_BOXMAIN_WORK_BOXMAIN_CAUTION_BOXH '߀# ISO8859-1Cancel OperationH #$߀ ISO8859-1 AcknowledgedH &`߀" ISO8859-1Display TextualH #߀ ISO8859-1 Display TreeH '߀# ISO8859-1Enable ModeratorH (߀$ ISO8859-1Disable ModeratorH DI p4MAIN_CAUTION_BOXT_FhfCRX FILE_NOTES$DRM_WIDGET_CREATE ;F 1I,,  V d] Z hf READ_NOTES$DRM_HELPEOThfD _NOTE_DBNOTES$DRM_PUSHBUTTON_ACTIVATEhf E_DDIDBNOTES$DRM_PUSHBUTTON_ACTIVATEE_E_H  WIDGETIDH l ߀ ISO8859-1 Yes H  ߀ ISO8859-1 Cancel H ' ߀# ISO8859-1main_caution_boxH  I l0MAIN_WORK_BOXOXhffT FNOTES$DRM_WIDGET_CREATE ;F 1  tI, +V 0Z hf_ NOTELPENOTES$DRM_HELPT hfET NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE 'MAIN_WORK_BOX$CANCELLABELTTONH 3( ߀/ ISO8859-1Notes:Work Work-in-ProgressH $ ߀  ISO8859-1 main_work_boxH D@ ID l0MAIN_HELP_BOXsshffT FNOTES$DRM_WIDGET_CREATE 4 $   Z hft NOTES$DRM_HELP_TTE  f H x MH O+ؽ>$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1o" ro|fx J J  _ J R$ W@ $dX HH h Jx $x $l [ H J, N 'l *  *$ , Q@ XT ' h Jx ' * )l ) ) )0 ) ( )0 $ dD *` (@ | (8 ( ( ( ) *d|x cd  dl\ c @ dd (0 (pD ( `D ` %d bt 'd| fex e4 ed ffg\Tfl8fh fLpf8Peheee4ee dLg\$fd H L K L L, MM M 8K< LK `NpJ0 ' LTLT M(K$J K Lt4Lt H'`dN|NN\K K MPNXt*(@ (8((( )0*L(`(pt(%d'\ H LHK LL, pM,M M K< 4K NJ0 ' LTLT XM(K$J KLtLt '`NNN\pK \K DMPNX' lNOTE_PRINT_TITLE_TENOTE_PRINT_TITLE_TBNOTE_PRINT_KEYWORD_TNCLNOTE_PRINT_KEYWORD_TBENOTE_PRINT_SINCE_TNOTE_PRINT_SINCE_TBNOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBEMBNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBBTNOTE_PRINT_SELECTION_LBNOTE_PRINT_RANGE_TBNOTE_PRINT_RANGE_LBNOTE_PRINT_RANGE_TBREAD_FILE_PRINT_DBNOTE_MODIFY_OK_PBL_NOTE_MODIFY_CANCL_PBO_UNOTE_MODIFY_HELP_PBNOTE_MODIFY_SHOW_PBNOTE_MODIFY_KEYWORDS_TLNOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_T_CANOTE_MODIFY_NEW_NOTEID_TB_PNOTE_MODIFY_CONFERENCE_TBLNOTE_MODIFY_CONFERENCE_TB_DNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBARKNOTE_MODIFY_HIDDEN_TB_ANOTE_MODIFY_REPLIES_TBHNOTE_MODIFY_ATTRIB_LPLYNOTE_MODIFY_NOTEID_T_TNOTE_MODIFY_NOTEID_LARKREAD_NOTE_MODIFY_DBREAD_FILE_EXTRACT_DDIF_DBDEREAD_FILE_EXTRACT_DB_DEREAD_NOTE_DELETE_DBREAD_NOTE_CREATE_DBREAD_WORK_TEXTNREAD_WORK_TEXT_SBOTREAD_WORREAD_POPUP_NOTE_PBDREAD_POPUP_CLOSE_CONF_PB_DBREAD_POPUP_DISMISS_PBEPREAD_POPUP_PRINT_PBREAD_POPUP_CREATE_TOPIC_PB_READ_POPUP_CREATE_REPLY_PBREAD_POPUP_LAST_NOTE_PBREAD_POPUP_BACK_TOPIC_PBWORREAD_POPUP_BACK_REPLY_PB_BAREAD_POPUP_BACK_NOTE_PBREAD_POPUP_BACK_PAGE_PBREAD_POPUP_BACK_PDMREAD_POPUP_BACK_PDEREAD_POPUP_NEXT_TOPIC_PB_REREAD_POPUP_NEXT_REPLY_PBWORREAD_POPUP_NEXT_NOTE_PBREAD_POPUP_NEXT_PAGE_PBREAD_POPUP_NEXT_PDMREAD_POPUP_NEXT_PDEREAD_POPUP_NEXT_UNSEEN_PBADREAD_POPUPRREAD_NOTE_READ_NOTE_OK_PBOTREAD_NOTE_READ_NOTE_CL_PBADREAD_NOTE_READ_NOTE_HELP_PBREAD_NOTE_READ_IN_NEW_TBEADREAD_NOTE_READ_NOTE_ID_TREREAD_NOTE_READ_NOTE_ID_LBERREAD_NOTE_READ_NOTE_DBAREAD_NOTE_SETSEEN_DBPBREAD_NOTE_SEARCH_DBREAD_FILE_DDIF_PRINT_DBREAD_CONF_PDEERREAD_EDIT_PDEAIREAD_FILE_DISMISS_PBMAIREAD_FILE_EXTRACT_DBRATREAD_FILE_EXTRACT_DDIF_DBN_READ_FILE_EXTRACT_PBHEREAD_FILE_PDEECREAD_FILE_PDMSUREAD_FILE_PRINT1_PBREAD_FILE_PRINT2_PBREAD_FILE_PRINT_DBAREAD_MENU_BARAIREAD_MENU_PANE_READ_NOTE_CREATE_DBREAD_NOTE_CREATE_PBREAD_NOTE_DELETE1_PBONFREAD_NOTE_DELETE2_PBFY_READ_NOTE_DELETE_DBREAD_NOTE_MODIFY_DBREAD_NOTE_MODIFY_PBREAD_NOTE_PDEYWREAD_NOTE_PDMODREAD_NOTE_READNEW_NOTE_PBY_READ_NOTE_READ_BACK_N_PBFY_READ_NOTE_READ_BACK_PDEREAD_NOTE_READ_BACK_PDMREAD_NOTE_READ_BACK_P_PBFY_READ_NOTE_READ_BACK_R_PBES_READ_NOTE_READ_BACK_T_PBOTEREAD_NOTE_READ_LAST_NOTE_PBREAD_NOTE_READ_NEXT_N_PBTHOREAD_NOTE_READ_NEXT_PDEREAD_NOTE_READ_NEXT_PDMREAD_NOTE_READ_NEXT_P_PBOTEREAD_NOTE_READ_NEXT_R_PBPRIREAD_NOTE_READ_NEXT_T_PBT_RREAD_NOTE_READ_NOTEID_PBT_READ_NOTE_READ_PDEREAD_NOTE_READ_PDMNREAD_NOTE_READ_UNSEEN_PBOTEREAD_NOTE_SEARCH_PBREAD_NOTE_SETSEEN_PBPRIREAD_WINDOWREAD_WORK_ATTRIB_TREAD_WORK_AUTHOR_LREAD_WORK_AUTHOR_TEREAD_WORK_BACK_PAGE_PBEREAD_WORK_BACK_REPLY_PBREAD_WORK_BACK_TOPIC_PBREAD_WORK_CREATE_REPLY_PBTEREAD_WORK_DATE_LLY_READ_WORK_DATE_T_CAREAD_WORK_DBT_DREAD_WORK_HEADERBJEREAD_WORK_KP7_SELECT_PBREAD_WORK_NEXT_PAGE_PBEREAD_WORK_NEXT_REPLY_PBREAD_WORK_NEXT_TOPIC_PBREAD_WORK_NOFN_LBJEREAD_WORK_NOTEID_LTREAD_WORK_NOTEID_TLREAD_WORK_PAGE_PBINREAD_WORK_REPLY_PBLREAD_WORK_SELECT_CONF_PB_OBREAD_WORK_SEPARATOR_SPPREAD_WORK_TEXTMREAD_WORK_TEXT_SBJEREAD_WORK_TITLE_LXTREAD_WORK_TITLE_T_TREAD_WORK_TOPIC_PBEREAD_WORK_UNSEEN_PBro|HH  ߀ ISO8859-1 DEC NotesH #߀ ISO8859-1 NOTES$DWHELPH 4߀ ISO8859-1OverviewH l߀ ISO8859-1GlossaryH ߀ ISO8859-1OverviewH $߀  ISO8859-1 main_help_boxH  hIh 0DUMMY_WINDOWss;F X%TEREH  @I ,MAIN_WINDOW;F %Z \hf NOTES$DRM_HELP fMAIN_SVN_WINDOWMAIN_MENU_BARH  I 0MAIN_MENU_BAR;F -' Z lhf NOTELPNOTES$DRM_HELP MAIN_HELP_PDEINWE_p`P<,MAIN_HELP_PDEMAIN_CUSTOMIZE_PDEUMAIN_ENTRY_PDEUMAIN_VIEW_PDEATMAIN_EDIT_PDEMAMAIN_FILE_PDENCH TIT 0MAIN_FILE_PDE@ 8;F ( *  W Z hf HELPNOTES$DRM_HELPAhf WNOTES$DRM_MENU_PULLINGPDMAIN_FILE_PDMMAINH dI 0\MAIN_FILE_PDM;F L ZfpT\D0WMAIN_FILE_EXIT_PBMAIN_SEPARATOR_SPMAIN_FILE_OBJECT_PBCONF_CONF_MARKER_PBMAIN_FILE_DIRECTORY_PBPMAIN_FILE_CREATE_PBMAIN_SEPARATOR_SPINMAIN_FILE_OPEN2_PBMAIN_FILE_OPEN3_PBMAIN_FILE_OPEN1_PBMAIN_SEPARATOR_SPMAIN_FILE_MAIL_PBBH HIH p4MAIN_FILE_MAIL_PBhfX LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH ߀ ISO8859-1Mail...H j$ ߀f ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pbH HT IH p4MAIN_FILE_OPEN1_PBhffiX I maNOTES$DRM_WIDGET_CREATE 8* (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH  ߀ ISO8859-1OpenH k, ߀g ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open1_pbH H\ IH p4MAIN_FILE_OPEN3_PBhffiX I maNOTES$DRM_WIDGET_CREATE 8* (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH ) ߀% ISO8859-1Open in New WindowH 8 NH kt ߀g ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open3_pbH H IH p4MAIN_FILE_OPEN2_PBhffiX I maNOTES$DRM_WIDGET_CREATE 8* (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH ߀ ISO8859-1Open...H dpro|\ ,  t 8 d0h$\Hl  d 4  ,L||  d P  T d|h         (T     L  d 0 T d     `  x 4 L  ( D  X   D L @ $    X 4   x  \J$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1/"   p 4 T  x   H    \  T |D P \ 0 |HTh D  Xp< p  T  , T  p  p < d\ P  4|H\D  0(8  ` 0 ,  D  t     l8 T| l   Pp<X$!<!\ ,  h   P t 8 !!!!!|!D ! ! ! !!#0#""`" """ " "X ###p #@##<##( # # # +* $\ $, $$$$$ $ $ $ $\ $ $ $L$%%h''%%%D %$ %%%l %8 %$ %| %H '%X'('''$*| *L ' ' ' ' '@'' '<*p*@*,((\(,))(h (8 ( ( ((\(,)))*0*))) )X )( ))***p*\**L*8***T* *t * * * .4 . +| +H +8 ,+,,h,,h,8, ,8 , ,x-----d--d -4 - .8..`.$...P. . . . . 10</ //P/ / /, /T/00X000p0,000 0P 0l0<2<211P1`1 1 1 21P2222332 2 2 3333335D5 3 3 440444 4d 4 4\ 44T557755x5 5< 5 6566h6<66676778 8 77p7 7 7 888888 8 ::9899$999 9 99::;<;:|:L:` :< : :0:;;<t << ;@;; ; ;| <;<<`< <L <h <8 ? ? ==== =L = >=>>>H>>p >4 > > ?>??t??X?l ?8 ?T ? @H @ @0@@@@@@@ @ DDBLBBB B B B8 B CBCCdC(CCCCC|DDG G DDD DDEExE@EE E E FEtFF FFFF FL FH F GGGGGGpG GX H H HGH HHHHHHHH0 H H N` J JJJJJJJJxJ Jl MJ$JKKKtKKtKK4 K K KKL4LMM< M M M M M` M M` MMM4MMTNDNNPL P O4OOOOOOOO O O\ O$ POPPhPPdP,P P P P Q Q| Q@QQQPQQH Q WUhR RRRP R RSLSSSS8SSS S S TxTTTdTTTH T Tl UTUhU0UUUDUU Ux UP U U8UXWWWWW Wt W@ W`W,Z Zd XXXX X` X X YX YYdYYY@Y Y| YH YZZZ ZZZL Z Z4 Z _ _ [[T[8[ [x [H[\t\\\L\\\ \ \ ]x]]]L]]p] ] ] ] _]P_h_,____p_ _X `p `4 `_L``,```` ` b ba` aa aada a a\ a( b4bbbc c bb0 b b bX b b cpcclc8cT c d dl c(c ddhd,dLdd< d gde4eeteTe\eede e eef`ffhfff fff f f f f f gfgggglix h4hg g g g\ g g h4hh\h$hhth4hhLi ih h hhhh4hiiiTro|4H k߀g ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pbH HIH p4MAIN_FILE_CREATE_PBhffiX I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hf \DNOTES$DRM_HELP hfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOB ON INH CH +߀' ISO8859-1Create Conference...H l߀h ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pbH L0IL t8MAIN_FILE_DIRECTORY_PBihf_p\ISO88ain_fNOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELP fhf INOTENOTES$DRM_PUSHBUTTON_ACTIVATE ILH DH 2߀. ISO8859-1Directory of Conferences...H o$߀k ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pbH HhIH p4CONF_CONF_MARKER_PBhffiX I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_HELPEhffwINOTES$DRM_PUSHBUTTON_ACTIVATEATH rH !H߀ ISO8859-1 Markers...H l\߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pbH HIH p4MAIN_FILE_OBJECT_PBhfcoX I coNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_HELPEhffINOTES$DRM_PUSHBUTTON_ACTIVATEATH bH !l߀ ISO8859-1 Objects...H l߀h ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pbH HIH 4MAIN_SEPARATOR_SP-H |4 I| p4MAIN_FILE_EXIT_PBhfX I maNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DENOTES$DRM_HELPhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEILPTEATH  EH  ߀ ISO8859-1ExitH 4 ߀ ISO8859-1Ctrl/ZH  d Ctrlz:H j ߀f ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_exit_pbH  FH 0 ߀ ISO8859-1FileH ED ߀A ISO8859-1 main_menu_bar ISO8859-1 main_file_pdeH Tt IT 0MAIN_EDIT_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPDhfE DRM_HNOTES$DRM_MENU_PULLINGUPUATMAIN_EDIT_PDMH  I 0\MAIN_EDIT_PDM59;F L|MAIN_EDIT_SELECT_PBMAIN_EDIT_COPY_PBro|dXH |I| p4MAIN_EDIT_COPY_PBhfXD LNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf DENOTES$DRM_HELPDRhf_P/UNOTES$DRM_PUSHBUTTON_ACTIVATET_PTE ATH oH ߀ ISO8859-1CopyH ߀ ISO8859-1Ctrl+InsH Ctrl0xFF63:H j߀f ISO8859-1 main_menu_bar ISO8859-1 main_edit_pde ISO8859-1 main_edit_copy_pbH H,IH p4MAIN_EDIT_SELECT_PBhfedXE I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hf hf NOTES$DRM_HELPE!HEhf0DRhf/NOTES$DRM_PUSHBUTTON_ACTIVATEPU" H$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1v"+AT#H SH !߀ ISO8859-1 Select AllH l߀h ISO8859-1 main_menu_bar ISO8859-1 main_edit_pde ISO8859-1 main_edit_select_pbH L߀ ISO8859-1EditH E߀A ISO8859-1 main_menu_bar ISO8859-1 main_edit_pdeH TIT 0MAIN_VIEW_PDE59@ 8;F ( *  W Z hf NOTES$DRM_HELP$DRhfE!HNOTES$DRM_MENU_PULLING%BU&PUATMAIN_VIEW_PDMH @TI@ 0\MAIN_VIEW_PDM59;F L0Z fTMAIN_COLLAPSE_ALL_PBfMAIN_COLLAPSE_PBHMAIN_SEPARATOR_SPDRMAIN_EXPAND_ALL_PBMAIN_EXPAND_PBMAIN_SEPARATOR_SPMAIN_OUTLINE_PBH XIX l0MAIN_OUTLINE_PBhfTJF NOTES$DRM_WIDGET_CREATE* H $U Z hf TN_COLNOTES$DRM_HELP'PBhfIN1_SPDPAND_NOTES$DRM_PUSHBUTTON_ACTIVATEEP#MAIN_OUTLINE_PB$LABELIN_VH h߀d ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_outline_pbH D| ID l0MAIN_EXPAND_PB9hfaiTK59-1NOTES$DRM_WIDGET_CREATE* 4 $U Z hf TN_COLNOTES$DRM_HELP(PBhfIN2_SPDPAND_NOTES$DRM_PUSHBUTTON_ACTIVATEEP)_O*LH  xH P ߀ ISO8859-1ExpandH gd ߀c ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_expand_pbH 0 I0 p4MAIN_EXPAND_ALL_PBhfviXL I maNOTES$DRM_WIDGET_CREATE U Z hff TNNOTES$DRM_HELPE+hff32_PNOTES$DRM_PUSHBUTTON_ACTIVATEAT,H ! ߀ ISO8859-1 Expand AllH kT ߀g ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_expand_all_pbH H IH p4MAIN_COLLAPSE_PB1hfviXM I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELP-fhf34ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE. _VH ߀ ISO8859-1Collapsero| H i߀e ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_collapse_pbH 4I4 t8MAIN_COLLAPSE_ALL_PBmaihf_p\NISO88ain_cNOTES$DRM_WIDGET_CREATE $U Z hff ENOTES$DRM_HELPE/hff54ENOTES$DRM_PUSHBUTTON_ACTIVATEAT0H #|߀ ISO8859-1 Collapse AllH m߀i ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_collapse_all_pbH VH |߀ ISO8859-1ViewH E߀A ISO8859-1 main_menu_bar ISO8859-1 main_view_pdeH TIT 0MAIN_ENTRY_PDE9@ 8;F ( *  W Z hf hf NOTES$DRM_HELP1HEhfhf5NOTES$DRM_MENU_PULLINGE2ON3MAIN_ENTRY_PDMH xIx 0\MAIN_ENTRY_PDM9;F LdLZ8f TMAIN_ENTRY_DELETE2_PBMAIN_ENTRY_DELETE1_PBTEMAIN_SEPARATOR_SPEMAIN_ENTRY_UPDATE2_PBMAIN_ENTRY_UPDATE1_PBMAIN_SEPARATOR_SPRYMAIN_ENTRY_MODIFY_PBMAIN_ENTRY_ADD_PBH HIH p4MAIN_ENTRY_ADD_PBhfX LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPT4NThfET;IN_SESPENOTES$DRM_PUSHBUTTON_ACTIVATENT56_SH  AH h߀ ISO8859-1Add...H k|߀g ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pbH LIL t8MAIN_ENTRY_MODIFY_PBmaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELP7fhf BEENOTENOTES$DRM_PUSHBUTTON_ACTIVATE8#RYH %,߀! ISO8859-1Show/Modify...H n ߀j ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pbH 4 I4 t8MAIN_ENTRY_UPDATE1_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE $U Z Zhf NOTES$DRM_HELPR9hff> BNOTES$DRM_PUSHBUTTON_ACTIVATECT:H D ߀ ISO8859-1UpdateH o ߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update1_pbH L IL t8MAIN_ENTRY_UPDATE2_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE* < ,U Z hf ES$DRNOTES$DRM_HELP;fhf> ?ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE<=RYH @ UH  ߀ ISO8859-1 Update...H o ߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pbH 4 I4 t8MAIN_ENTRY_DELETE1_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE $U Z Zhf NOTES$DRM_HELPR>hffG ?NOTES$DRM_PUSHBUTTON_ACTIVATECT?H l߀ ISO8859-1Deletero|LpH o߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete1_pbH LIL t8MAIN_ENTRY_DELETE2_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE* < ,U Z hf ES$DRNOTES$DRM_HELP@fhfG HES$DRNOTES$DRM_PUSHBUTTON_ACTIVATEARYH  ߀ ISO8859-1 Delete...H o߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pbH nH ߀ ISO8859-1EntriesH F߀B ISO8859-1 main_menu_bar ISO8859-1 main_entry_pdeH \I\ 4MAIN_CUSTOMIZE_PDE@ <;F , *  W Z hf NOTES$DRM_HELPBDRhf@f NOTES$DRM_MENU_PULLINGRCBU MAIN_CUSTOMIZE_PDMDIFH 8I 4`MAIN_CUSTOMIZE_PDM;F PMAIN_CUSTOMIZE_PRINT_PBMAIN_CUSTOMIZE_PROFILE_PBTEH PIP x<MAIN_CUSTOMIZE_PROFILE_PBhf`NOTES$DRM_WIDGHl$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"<ET_CREATE* @ 0U Z hf_P HELPNOTES$DRM_HELPDhf 6MENU_RNOTES$DRM_PUSHBUTTON_ACTIVATEEFTOH pPH -߀) ISO8859-1Show/Modify Profile...H w߀s ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pbH L(IL t8MAIN_CUSTOMIZE_PRINT_PBhfom\ 1 mNOTES$DRM_WIDGET_CREATE* < ,U Z hff HNOTES$DRM_HELPEGhff :6MRNOTES$DRM_PUSHBUTTON_ACTIVATEATH3H +߀' ISO8859-1Show/Modify Print...H u ߀q ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_print_pbH T ߀ ISO8859-1OptionsH J ߀F ISO8859-1 main_menu_bar ISO8859-1 main_customize_pdeH T IT 0MAIN_HELP_PDE59@ 8;F ( *  W Z hf Z fNOTES$DRM_HELPITEhfHEfNOTES$DRM_MENU_PULLINGJPUKATMAIN_HELP_PDMMIZEH h I 0\MAIN_HELP_PDM59;F LZfMAIN_HELP_ABOUT_PBRMAIN_HELP_GLOSSARY_PBTEMAIN_HELP_OVERVIEW_PBMAIN_SEPARATOR_SPDRMAIN_HELP_CONTEXT_PBH  I 8MAIN_HELP_CONTEXT_PB*  U `hf NOTES$DRM_HELPLINMR SAH ! ߀ ISO8859-1 On ContextH  ߀ ISO8859-1H I 8MAIN_HELP_OVERVIEW_PB*  U `hf NOTES$DRM_HELPNINORPSAH ,WH  ߀ ISO8859-1 On WindowH ߀ ISO8859-1Overviewro| d0H I 8MAIN_HELP_GLOSSARY_PB*  U `hf NOTES$DRM_HELPQINRRSSAH H TH ߀ ISO8859-1On Terms H (߀$ ISO8859-1Overview GlossaryH  I 4MAIN_HELP_ABOUT_PBP*  U \`hff NOTES$DRM_HELPETU&H !\߀ ISO8859-1 On VersionH 0߀ ISO8859-1AboutH dHH ߀ ISO8859-1HelpH E߀A ISO8859-1 main_menu_bar ISO8859-1 main_help_pdeH $߀  ISO8859-1 main_menu_barS$H 0I l0MAIN_SVN_WINDOWhfaiTUNOTES$DRM_WIDGET_CREATE;F  xlTD, M N Q HS P R O PhfDMtMAIADD_PNOTES$DW_SVN_ENTRY_SELECTEDhfOPEN3N_FILNOTES$DW_SVN_HELPEPhf_SILE_MNOTES$DW_SVN_SEL_CONFIRMEDhfRE,LETE_NOTES$DW_SVN_SEL_CONFIRMEDhfRElNOTES$DW_SVN_GET_ENTRYhfBER_MNOTES$DW_SVN_DETACHEDLYhf_MEMBE_DBNOTES$DW_SVN_ATTACHEDADtreeStyleexpectHighlightingItreeArcWidthtreePerpendicularLinestreeIndexAllF_MtreeCenteredComponentstreeStyleWOforceSeqGetEntryuseScrollButtonsSPLexpectHighlightingKdisplayModeCO_PH "h߀ ISO8859-1 main_windowH DLID p4MAIN_FILE_OPEN_DBfhfTXxNOTENOTES$DRM_WIDGET_CREATE ;F |H  \ < ,IZ hf  MNOTES$DRM_HELPVWFILE_OPEN_OK_PBDMt FILE_OPEN_CANCL_PB$DWEC D0ODEMV|RhRXLD0FILE_OPEN_HELP_PBRMFILE_OPEN_CANCL_PBFILE_OPEN_OK_PBFILE_OPEN_IN_NEW_TBFILE_OPEN_SHOW_RBFILE_OPEN_AUTOMATIC_LFILE_OPEN_FILESPEC_TLYFILE_OPEN_FILESPEC_LMBFILE_OPEN_IN_NOTEBOOK_TBATTFILE_OPEN_CLASS_TFILE_OPEN_CLASS_TBIFILE_OPEN_ENTRY_TeeFILE_OPEN_ENTRY_LH  I 4FILE_OPEN_ENTRY_Lf A!A Z xhf HNOTES$DRM_HELPX<Y H  ߀ ISO8859-1EntryH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_entry_lNOH  I p4FILE_OPEN_ENTRY_T-1hfn_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C |$ \` Z hf  NOTES$DRM_HELPEZhfD!NOTES$DRM_VALUE_CHANGEDFILE_OPEN_ENTRY_L$DWFILE_OPEN_ENTRY_L H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_entry_lUSHBUTTON_ACTIVATEOBONINH ߀ ISO8859-1Open...H dpro| dH xIx p4FILE_OPEN_CLASS_TB1hfn_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf  hf NOTES$DRM_HELP[HEhf0"hf!NOTES$DRM_VALUE_CHANGED\ANFILE_OPEN_ENTRY_TY_L_FH ߀ ISO8859-1ClassH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_class_tbH XIX p4FILE_OPEN_CLASS_T-1hfn_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hf  RM_HENOTES$DRM_HELP]0 FILE_OPEN_CLASS_TB$DR FILE_OPEN_CLASS_TBANH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_class_tbH I x<FILE_OPEN_IN_NOTEBOOK_TBin_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE <A!"C l \<` Z hf ES$DRNOTES$DRM_HELP^hf_OD#TB$DFINOTES$DRM_VALUE_CHANGED_N_FILE_OPEN_CLASS_TLE_OH H (߀$ ISO8859-1Entry in NotebookH `߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_in_notebook_tbH  I 8FILE_OPEN_FILESPEC_L m A!C  #@$ NOTES026.A? wkcs}B;1X9W=^I=MDJ*~F98$%MSm/<pT|u15H!T>f =KsakauP6_CCV>R?7gxcKv~<5sqZZoN@(p@6.a[)Wu#mh< W R0>67utJL#l`:uUZcT$",Gjy]tIzOq:֧~Y{ !uT3 +%)S>ay37 +A54J"^gi/ dYg `UNO,OC,2mx9]BfE)nQI ]%Z(+ M'( {הC(AdCeQm%v]9;"uoB hJOdfpiJ ZHMmlOVk sWR3cawF?_ku)8/lnm#[#H* V1C[>S!*?,@ 25y6kTg3/*P1 n%1US+2%C% 023| |$pvZ%DD\cnoG3jC9G`w/*N;Ȟ bq8 gLI_4@,gfMB:[$z50jg &:iy_o] !Ta2Fp aH_[9:1FNo3a2 v r-IIi6.9c2(mf7W1LLOQpZvg%[ m z,k;kKX9>"{p-?1 nԅDvRvR-oeWhR.Ym*v-9xp&"`VEZfE3 0D+k-EP9myo0JUC>TBFG ~‰v4v^1C7 c@,Zotn ry&y1c ib#nrf #?4O=ki=&_1 P\3t'Hv 9_axxxr+XX^P@r&PmL(n}qaX=Lmp '- _V:vTEY>!pA44&'\)*7rTwEZ U7n'} /WW4[e~4\M"(Vb7|{ 832. _j.! v(7,.,n\@}7lfkU`Ӿ]8Vx{I&kK,1{AG d,A.IS>%NSv;"; G]0JDE9h +nkye3@IWҌFJvxo&bO(3 kLn9qO,>=A{SH-ZXa96Z/)SNU4v}e\,8X,[2T$\{97 2Lq*p#K U+ Ksx x@j@P$iTk߭f}BiiD>jdU(~%3cc>PCVHc }_.o9},/hijgVc95wI;aM0rPJ 6 OyWf; |f.DY+^"W2l/TK,i[} -#51M7]Ki\xD\g-+VQgnZ5l+4gjz $>I.WO4#zC# xnz0Km,aLcPtjX24)3|W)K$li|A#de"T//F1NtKk=Qs #"0gWD#y% frCP4~7q#HG<1XW}xAp!UUx6(QhbU("jMe$2C9^X&k&EJ8qlNdi*b\Es*BK/u _Rx 4M~2.N^AoAĮ$\O14E@jDF_7n,K',f|e4_ h^ cXOJ?Xy!j6n<7[ 3%'-t*mO QK1)R$3>+BvM\05b1Y̼jvoLJW".V"r@}uXGQW.qA M#|;"p fYvy<. E+Ww)YaZ:C%;@vK\ mV*!BBP7%g3[HH :n j 6mkEu)b`gW_}O\9Sume&ޚofQ5rBzGn ;EEdF"3T( Ps@bhsk#'Y82{AxZ+x#\3c( )J x^`""d,,L"*?>l;3Z#`2qO 4v$C > >EPm ClYPTTH #J<|,[QsG1@QQLgrI] F9?fX) .8N;[ 2n7l)KCiȢ &BWy%):)Z>ch#fz?'BS(H*`u7V$Q//gaaY}Mlx$YvyvL -jB~aO=%Gdy/oĐg`j#bB )D%?mmr>iZH! un_#*c oT sNm'w9zu]7[(Nu;Y/!s}~,${[1v+ ~L9]!41T+j6 nBOMs1b#vEux\=hCUmeG:8Ld*G|\`X6 S0s@p=T_p$%miUxE=iL ka?pd1 zlA΂zx_A-6jKX`]$P&NxsoZm46H3UYxx- A̴/tT{Ǩa[{/*pkML,GPvt.sa%/AsLY]nw*CSqy${B>W_aXqAo3pJ>%Dt|S~j9 1[}eu%G[gXXdzM>E#1H"T IIiBg5\sxfruz;RG WK>\J5=0a``PoD!{`,!~JY%^Ttsb;#C>LBap9eN(@ Y:3W;l@!4M2_B9N$` A ?7a5PtG}[?4x9ZdU/3X| Qz]+9f?AVZT^%Cӎ&Y9up JK}>N\<`%w r2Q/"$4y(e\EVT5$81)*3(U#$.4n6|kdṟ.*x# dT*"Uh3 vOEkyE#X @+kU#C1:k~Iq 9 eDZN+8s #Uq ybtpb?$6->l`G-[~ KKa>pT}>1y5K;=dZqww6EX6L;c@t :6-U&GG@r##?0,1IbE6eMy%˜V-1fV|+6 C#AGW!o|edTUl6PT< Ha4o$2LB@ 1An#-ex3i@:GK yZeP2o`yENU bVp$]^s*<.[H>77T0sh1O}lOkC SN8%4~6#grw*̟rj\d$6p=g$TwKo3-#XD2inkA>qEjLLmk*|0[ p^XQr=%0)qz+)uCUT-6Ui3GzBheZi7Oc+[JP!? */SXtLVUJ:9?v"]sQFvVv?bsC!\t8Vy[?jez, M{~kmU6Ra6w(\ p1;5bq#ž F$%o)2}N<PDk#RgA9eD#FY`0I1"K[>5-jS8qQ3!:O fw88E ELT&a[}PO]m@3EI hp4~׽y jq$xaiBA> VH"+aUN7%D9M!XDh: $z3W7Eb, ZM"uq()$zWJ@`Dw{V{2OHVkmq?\~]tC0=K)sHr<Q+!u Lw]hVK0,, nY o5F6ERV2_Fvhl"^>Lie2OO;h"?G"t)q:' Fj@.8ɨc\C*91~^(1Td7G#Ggfyύ0KV0Z!ed'J)t}vEImIn \r^]%$l\8P xJvLc 4W?g۳/wtuGn\{{,||{}CIJ$hMH9cu%.]T_B&p |gҷ\ Rf,(C+B^. !+!^E,G}`/[TAu L-SNfYq;+iX E/mN7('9IFKU,aOp0,R8/F^y.(7+3~[ׇr22;P(uH8947 >y>uʿkTZ}fIBt=KglqA_ .^`:sy{S#' "8#4eQOsK^et$ 5a1]=qa5k K7 R`#q(!eE4*I H qZ<6]$N,7O{x$]{1KKbR@8 )N7DP[DOM,@s&F<zBr1z`Kz_@EtxZ-.i!At;LdI B3m43,;!;;-\g p ijfafmyczHT.m$6i>-}V(4T=kdg\HjKCc?MPO:,R#%`T.f:TuNMB#X: p\:3o6Kb;=r%s0L422{[.vN4vW~FG,K4/qS* @AE / ?zH1f& $o3ucE?f)wum%LxM/z/D  ACb7~MgJ!au}R1qm )jp "$XVZ} y0[:dC.f:i%k*=v#V<(vLa;;] 4#>/{iqG[2^ g1"J-x@ xh58!;)74ovJj}^iҩn0RreEeS!DW(k-$q=BsY[,^y)pI'DSE2lKz#P``j6|(jVb[SYhuu^VZHpe4}_s_.DFi7\88"g] Z:y!nl g'gju!E !U|'<>diU[%NuNsZ ~1h8fwr@x2l-2 pwW/48=h% ;zX\#t1ēy4+AN [K QR/ M6*>W-mB8gKl'ci[JdVjzxTnTQ +N#>@i6c-wZ<%Mr'JB\7N O0X*ml-{gV TVaf H&r.L+oVR|AcF'KR!_ L!__ BO\LnW7VH-9 \1wK 8KS>] *luk~%OII1{oӻ:6P {)2/Nuu'/u1 b>xQ[{X05a`WG|RTWw*! ??rz?9Vgq}} )F3bp%sm'P3i` .jq.9.['-S {5Cb ?#l%1fEFیo%+'%Ql7]O7mjJ]*\a[o2le" x08FI d/2 H}285h+G_w`VU. 1.alqZ8%6']$s r)v<`I*sjj.VzT h>?%3sVK=\G~a7S=rĨJEFz9Z~V7rfEV^KzN01j%ocTz+a rJr] QDLш5 ]6iwd5;*GRTbwviy@oE%u06Eo 8t2zt ?7gk#ci rf;DF&|*g)addG  IU&l& F[U9d x {|~1uIJ's<1ObC P ro]2- iIf cVN0z VYc^9dR'1:C JNUu1z eY/h7+-SpwYp{<Ղ-.! evu *bV6~8Z3qxoKbF]Tn4K ;4?3yd|ߛ7 Ջu^vx Hq(&3f4A9^E#Yw jxc'eSl-2FR;`[vyKghI,Q8 BR1X3e[yfYZo0Db "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"MZ |hf_f b859-1NOTES$DRM_HELP_`a&FILE_OPEN_IN_NOTEBOOK_TBH l߀ ISO8859-1FilenameectH x߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_filespec_lH I t8FILE_OPEN_FILESPEC_T mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf_N RNOTENOTES$DRM_HELPbfhfDH$DINOTENOTES$DRM_VALUE_CHANGED"FILE_OPEN_FILESPEC_L_CLAS"FILE_OPEN_FILESPEC_LEH x ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_filespec_lH  4 I 8FILE_OPEN_AUTOMATIC_L m A!C B Z e_hfb 8859-_openNOTES$DRM_HELPcd "FILE_OPEN_FILESPEC_TRH % ߀! ISO8859-1On Open, Show:H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_automatic_lꮈH \L I\ 4FILE_OPEN_SHOW_RB-1 ;F  A!"C /Z Ihf-1 en_aulNOTES$DRM_HELPe #FILE_OPEN_AUTOMATIC_LRHEHf0FILE_OPEN_DIRECTORY_TBEFILE_OPEN_UNSEEN_TBro|  ( H I p4FILE_OPEN_UNSEEN_TBhfXF NOTES$DRM_WIDGET_CREATE< <Z hf ES$DRNOTES$DRM_HELPfgTOH (߀$ ISO8859-1First UNSEEN Note_AH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_unseen_tbH DI t8FILE_OPEN_DIRECTORY_TBmhfle\ ISO mainNOTES$DRM_WIDGET_CREATE< <Z hfen RNOTENOTES$DRM_HELPhiTIM_H )߀% ISO8859-1Directory of NotesH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_directory_tb!H X߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_show_rbEdH <(I< p4FILE_OPEN_IN_NEW_TBhfn_X-1 NOTES$DRM_WIDGET_CREATE<A!"C  <Z hfDR NOTES$DRM_HELPjkFILE_OPEN_SHOW_RBN_DIH )߀% ISO8859-1Open in New WindowH D߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_in_new_tbH I 4FILE_OPEN_HELP_PB-1!" $  U xhfma en_dbISO88NOTES$DRM_HELPnVlf FILE_OPEN_CANCL_PBLIH L߀ ISO8859-1 Help RM_H xLIx p4FILE_OPEN_CANCL_PB1hfX"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf F_CANCNOTES$DRM_HELPRmhf(kFINOTES$DRM_PUSHBUTTON_ACTIVATEEnENFILE_OPEN_OK_PBN_FILEH ߀ ISO8859-1 Cancel H  ߀ ISO8859-1 Cancel_pbATH h@ Ih l0FILE_OPEN_OK_PBhffT"NOTES$DRM_WIDGET_CREATE !" !#" XU Z hfF NCNOTELPRNOTES$DRM_HELPohf8FINOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEENp_O H t ߀ ISO8859-1 OK  H  ߀ ISO8859-1OK_pbPBH $ ߀ ISO8859-1OpenRM_H T ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_dbDRM_PUSHBUTTON_ACTIVATEAT,H ! ߀ ISO8859-1 Expand AllH kT ߀g ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_expand_all_pbH H IH p4MAIN_COLLAPSE_PB1hfviXM I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELP-fhf34ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE. _VH ߀ ISO8859-1Collapsero| XH I p4MAIN_FILE_CREATE_DBhfn_Xy-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ ThfE  DRM_HNOTES$DRM_HELPqTrTEFILE_CREATE_OK_PB"FILE_CREATE_CANCL_PBC_L_FI_OL|dL8 lTP@FILE_CREATE_HELP_PBFILE_CREATE_CANCL_PBILEFILE_CREATE_OK_PBLEFILE_CREATE_REPLY_ONLY_TBAUFILE_CREATE_RESTR_KEY_TBESPFILE_CREATE_RESTR_MEM_TBC_LFILE_CREATE_WRITE_ALL_TB_TBFILE_CREATE_ATTRIBUTE_LFILE_CREATE_NOTICE_TILEFILE_CREATE_NOTICE_TBPEFILE_CREATE_TITLE_TFILE_CREATE_TITLE_TBompFILE_CREATE_NOTEFILE_TcFILE_CREATE_NOTEFILE_LlH  I 8FILE_CREATE_NOTEFILE_L A!A Z |hfF NOTES$DRM_HELPstH *߀& ISO8859-1Conference FilenameH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_notefile_lEMAH I t8FILE_CREATE_NOTEFILE_Tmhfle\ ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hfT   NOTES$DRM_HELPRuhfTH%rTFINOTES$DRM_VALUE_CHANGED$FILE_CREATE_NOTEFILE_L$FILE_CREATE_NOTEFILE_LH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_notefile_lH XI t8FILE_CREATE_TITLE_TB mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$ hf NOTES$DRM_HELPvHEhf4hf%NOTES$DRM_VALUE_CHANGEDwAN$FILE_CREATE_NOTEFILE_TE_L..H ,߀ ISO8859-1Title_m./$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1l"^H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_title_tbGH ` I` p4FILE_CREATE_TITLE_Thfn_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z $hf ES$DRNOTES$DRM_HELPx"FILE_CREATE_TITLE_TBES$DR"FILE_CREATE_TITLE_TBN$daH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_title_tbH 4 I t8FILE_CREATE_NOTICE_TB mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$  NOTES$DRM_HELPRyhf4FILE_ITLE_NOTES$DRM_VALUE_CHANGEDzN!FILE_CREATE_TITLE_T_TE_LH  ߀ ISO8859-1NoticeH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_notice_tbCTIVATECT?H l߀ ISO8859-1Deletero| (,H dId t8FILE_CREATE_NOTICE_T mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELP{4#FILE_CREATE_NOTICE_TBM_VA#FILE_CREATE_NOTICE_TBH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_notice_tbH  xI 8FILE_CREATE_ATTRIBUTE_L A!C B Z lehfe_ ISO88ile_cNOTES$DRM_HELP|}f"FILE_CREATE_NOTICE_TENOTE4H -H߀) ISO8859-1Conference Attributes:H \߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_attribute_lH DID x<FILE_CREATE_WRITE_ALL_TBin_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE<A!"C  Z hf f"ILE_CNOTES$DRM_HELPE~4%FILE_CREATE_ATTRIBUTE_LVA#H #p߀ ISO8859-1 Allow WritesH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_write_all_tbH LIL x<FILE_CREATE_RESTR_MEM_TBin_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf ES$DRNOTES$DRM_HELP&FILE_CREATE_WRITE_ALL_TBFI_CH '߀# ISO8859-1Restrict MembersH 4߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_restr_mem_tbfH DpID x<FILE_CREATE_RESTR_KEY_TBin_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE<A!"C  Z Zhf NOTES$DRM_HELPR&FILE_CREATE_RESTR_MEM_TB_ALL_MAH 0D ߀, ISO8859-1Restrict Keyword Creation H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_restr_key_tbH L IL x<FILE_CREATE_REPLY_ONLY_TBn_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf ES$DRNOTES$DRM_HELP&FILE_CREATE_RESTR_KEY_TBFI H . ߀* ISO8859-1Restrict Topic CreationH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_db ISO8859-1 file_create_reply_only_tbH T I 4FILE_CREATE_HELP_PB!" $  U xhf m reate ISNOTES$DRM_HELPcqlyl "FILE_CREATE_CANCL_PBE߀ ISO8859-1 On WindowH ߀ ISO8859-1Overviewro|H |I| t8FILE_CREATE_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf FILE_ANCL_NOTES$DRM_HELPEhf,NOTES$DRM_PUSHBUTTON_ACTIVATEFICEFILE_CREATE_OK_PBT_TMAH ߀ ISO8859-1 Cancel  H  ߀ ISO8859-1 Cancel_pbM_H lIl p4FILE_CREATE_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPENOTES$DRM_HELPhf<NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATECE_CH ߀ ISO8859-1 OK hH x߀ ISO8859-1OK_pbDGH (߀$ ISO8859-1Create ConferenceH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pb ISO8859-1 main_file_create_dbH I t8MAIN_FILE_DIRECTORY_DBmhfle\z ISO mainNOTES$DRM_WIDGET_CREATE ;F H  h @ 0IZ ThfE DRM_HNOTES$DRM_HELPTTE%FILE_DIRECTORY_APPLY_PB%FILE_DIRECTORY_CANCL_PBFIFI_LhP8 FILE_DIRECTORY_CONF_UDFILE_DIRECTORY_HELP_PBFILE_DIRECTORY_CANCL_PBFILE_DIRECTORY_ADD_PBPBFILE_DIRECTORY_APPLY_PBFILE_DIRECTORY_CONF_L_TFILE_DIRECTORY_LOCATION_TTBFILE_DIRECTORY_LOCATION_LTBpH  I <FILE_DIRECTORY_LOCATION_Lf A!A Z hfF NOTES$DRM_HELPH ߀ ISO8859-1LocationH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pb ISO8859-1 main_file_directory_db ISO8859-1 file_directory_location_lhH pIp x<FILE_DIRECTORY_LOCATION_Tn_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf fDRNOTES$DRM_HELP'FILE_DIRECTORY_LOCATION_L'FILE_DIRECTORY_LOCATION_LH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pb ISO8859-1 main_file_directory_db ISO8859-1 file_directory_loc6$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1 "oation_l߀H   I 8FILE_DIRECTORY_CONF_L m A!C  Z |hfma recto NOTES$DRM_HELPeat'FILE_DIRECTORY_LOCATION_TH . ߀* ISO8859-1Conference Information:H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pb ISO8859-1 main_file_directory_db ISO8859-1 file_directory_conf_lGEH H I t8FILE_DIRECTORY_ADD_PB mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf FCTORYNOTES$DRM_HELPDRhf,FINOTES$DRM_PUSHBUTTON_ACTIVATEEC%FILE_DIRECTORY_APPLY_PBRY_CANH  ߀ ISO8859-1Add...ro|\ XH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pb ISO8859-1 main_file_directory_db ISO8859-1 file_directory_add_pbH I 8FILE_DIRECTORY_HELP_PBm!" $  U |hfma recto NOTES$DRM_HELPe_pl%FILE_DIRECTORY_CANCL_PBHELP H 8I8 t8FILE_DIRECTORY_CONF_UDmhf\"NOTES$DRM_WIDGET_CREATE;F ( A!" 34 C ` 8M N Q S DP R O hfFI_NOTES$DW_SVN_ENTRY_SELECTEDhfP8NOTES$DW_SVN_HELPhfLE(_CONFE_DIRNOTES$DW_SVN_SEL_CONFIRMEDOhfCLhIRECTPBPBNOTES$DW_SVN_SEL_CONFIRMEDEhfTO_TFILORY_LNOTES$DW_SVN_GET_ENTRYOhfAT_LFIL_WRITNOTES$DW_SVN_DETACHEDE_hfUT REATETILENOTES$DW_SVN_ATTACHEDPE%FILE_DIRECTORY_APPLY_PBTLE_TB#FILE_DIRECTORY_CONF_L_CREtreeArcWidthLltreePerpendicularLinesitreeIndexAllayMtreeCenteredComponentsKtreeStyleATforceSeqGetEntryF_KuseScrollButtonsexpectHighlightingIdisplayModeF_H I t8FILE_DIRECTORY_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPhf ,4NOTES$DRM_PUSHBUTTON_ACTIVATE#FILE_DIRECTORY_ADD_PBH 0߀ ISO8859-1 Cancel |H  ߀ ISO8859-1 Cancel_pbLPH pIp t8FILE_DIRECTORY_APPLY_PBhf\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELPhf@TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEEC_OH ,߀ ISO8859-1 Apply H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pb ISO8859-1 main_file_directory_db ISO8859-1 file_directory_apply_pbH / ߀+ ISO8859-1Directory of ConferencesOPEH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pb ISO8859-1 main_file_directory_dbpenH L IL x<FILE_DIRECTORY_ACCESS_TBin_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf  NOTES$DRM_HELPR'FILE_DIRECTORY_LOCATION_TM_PU_TH ; ߀7 ISO8859-1$Include conferences you can't accessH * ߀& ISO8859-1not yet implementedn_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_automatic_lꮈH \L I\ 4FILE_OPEN_SHOW_RB-1 ;F  A!"C /Z Ihf-1 en_aulNOTES$DRM_HELPe #FILE_OPEN_AUTOMATIC_LRHEHf0FILE_OPEN_DIRECTORY_TBEFILE_OPEN_UNSEEN_TBro|$  H I p4MAIN_FILE_MAIL_DBachf_XX`NOTES$DRM_WIDGET_CREATE ;F |H  \ < ,IZ hf  DRM_HNOTES$DRM_HELPRYNOTE_MAIL_OK_PBCTIVAT NOTE_MAIL_CANCL_PBPB f_VEpXD4D  NOTE_MAIL_HELP_PBNOTE_MAIL_CANCL_PBNNOTE_MAIL_OK_PBNOTE_MAIL_SUBJECT_TNOTE_MAIL_SUBJECT_TB$DWNOTE_MAIL_USERNAME_TfNOTE_MAIL_TO_RBNOTE_MAIL_TO_LLNOTE_MAIL_OPERATION_RBONOTE_MAIL_OPERATION_LLNOH  I 8NOTE_MAIL_OPERATION_Lf A!A Z |hfF NOTES$DRM_HELPenH !߀ ISO8859-1 Operation:OH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_operation_lH `I` 8NOTE_MAIL_OPERATION_RBm ;F  A!"C /Z 85hfno eratiNOTES$DRM_HELP#NOTE_MAIL_OPERATION_LDRHEL4NOTE_MAIL_FORWARD_TBE_MNOTE_MAIL_SEND_TBH I p4NOTE_MAIL_SEND_TBN_hfX0F NOTES$DRM_WIDGET_CREATE< Z hff eNOTES$DRM_HELPENOneH #D߀ ISO8859-1 Send MessageH D߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_send_tbH |I t8NOTE_MAIL_FORWARD_TB mhfle\1 ISO mainNOTES$DRM_WIDGET_CREATE< <Z hfl_ RM_HENOTES$DRM_HELPERH #D߀ ISO8859-1 Forward NoteRH P ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_forward_tbH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_operation_rb#H  T I 0NOTE_MAIL_TO_L8 A!C B Z aihf_m  I noNOTES$DRM_HELPoRHE$NOTE_MAIL_OPERATION_RBERH $ ߀ ISO8859-1To:H 0 ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_to_ln_dH \ I 0NOTE_MAIL_TO_RB ;F A!"C /Z hf85 _mailoNOW<7$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1U"TES$DRM_HELPNOTE_MAIL_TO_L_RBhP<NOTE_MAIL_AUTHOR_TBNOTE_MAIL_MODERATORS_TBNOTE_MAIL_MEMBERS_TBNOTE_MAIL_USERNAME_TBES$DRNOTES$DRM_HELP-fhf34ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE. _VH ߀ ISO8859-1Collapsero|lH 4I4 t8NOTE_MAIL_USERNAME_TBhf\2 NOTES$DRM_WIDGET_CREATE< $` Z hfl NOTELPNOTES$DRM_HELP_Mhf_L XNOTES$DRM_VALUE_CHANGEDH  ߀ ISO8859-1 AddresseeLEH H߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_username_tbH |I t8NOTE_MAIL_MEMBERS_TB mhfle\4 ISO mainNOTES$DRM_WIDGET_CREATE< <Z hfl_ bTELPNOTES$DRM_HELP_MXATH )H߀% ISO8859-1Conference MembersIH T߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_members_tbOH I t8NOTE_MAIL_MODERATORS_TBhfle\5 ISO mainNOTES$DRM_WIDGET_CREATE< <Z hfl_ TELPNOTES$DRM_HELP_MXatH ,\߀( ISO8859-1Conference ModeratorsH h߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_moderators_tb`H I p4NOTE_MAIL_AUTHOR_TBhfn_X6-1 NOTES$DRM_WIDGET_CREATE< <Z hf_m tors_ENOTES$DRM_HELPE H "x߀ ISO8859-1 Note AuthorH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_author_tbH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_to_rbH \I\ t8NOTE_MAIL_USERNAME_T mhfle\3 ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf NOTES$DRM_HELPE_NOTE_MAIL_TO_RB<NOTE_MAIL_TO_RBAIL_MOtlH H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_username_tbH | I| t8NOTE_MAIL_SUBJECT_TB mhfle\7 ISO mainNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOTES$DRM_HELPEhf4YN_TO_RNOTES$DRM_VALUE_CHANGEDMONOTE_MAIL_TO_RBERS_TBH  ߀ ISO8859-1SubjectH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_subject_tb_H `D I` p4NOTE_MAIL_SUBJECT_Thfn_X8-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf ES$DRNOTES$DRM_HELP"NOTE_MAIL_SUBJECT_TBES$DR"NOTE_MAIL_SUBJECT_TBOle_create_notice_tbCTIVATECT?H l߀ ISO8859-1Deletero|H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db ISO8859-1 note_mail_subject_tbH I 4NOTE_MAIL_HELP_PB-1!" $  U xhfai l_dbSO885NOTES$DRM_HELP_<l NOTE_MAIL_CANCL_PB_pH xIx p4NOTE_MAIL_CANCL_PB1hfX:"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf N_CANCNOTES$DRM_HELPEHEhf("OTE_MNOTES$DRM_PUSHBUTTON_ACTIVATENOT_NOTE_MAIL_OK_PB_RBERNOH ߀ ISO8859-1 Cancel nceH  X߀ ISO8859-1 Cancel_pb59H hIh l0NOTE_MAIL_OK_PBhffT9:"NOTES$DRM_WIDGET_CREATE !" !#" XU Z hfN NCNOTELPENOTES$DRM_HELPEhf8_MNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATET__M H ߀ ISO8859-1 OK CNOH <߀ ISO8859-1OK_pb%H p߀ ISO8859-1MailH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pb ISO8859-1 main_file_mail_db_H I t8MAIN_OBJECT_DISPLY_DB mhfle\{ ISO mainNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ hfE HELPNOTES$DRM_HELPDR$OBJECT_DISPLY_APPLY_PB$OBJECT_DISPLY_CANCL_PBMAI _VEx`DH0TOBJECT_DISPLY_INFO_UDL_OBJECT_DISPLY_HELP_PBTEOBJECT_DISPLY_CANCL_PBIFILE_OBJECT_MODIFY_PBAIFILE_OBJECT_DELETE_PBAIFILE_OBJECT_ADD_PBOOBJECT_DISPLY_APPLY_PB_OBJECT_DISPLY_INFO_LON_OBJECT_DISPLY_OBJECT_TWOBJECT_DISPLY_OBJECT_LTY_H  tI 8OBJECT_DISPLY_OBJECT_Lm A!A Z |hf HNOTES$DRM_HELP@H " ߀ ISO8859-1 Object NameH p ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 object_disply_object_liH d Id t8OBJECT_DISPLY_OBJECT_Tmhfle\ ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z Ihf hf NOTES$DRM_HELPHE$OBJECT_DISPLY_OBJECT_LDR$OBJECT_DISPLY_OBJECT_L鮈H x ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 object_disply_object_lfH   I 8OBJECT_DISPLY_INFO_L m A!C B"  Z hf 9-1displNOTES$DRM_HELP$OBJECT_DISPLY_OBJECT_T_HEM_H * ߀& ISO8859-1Object Information:H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 object_disply_info_lɲх$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1z"ro|H |I| p4FILE_OBJECT_ADD_PB1hfn_X-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z Ehf NOTES$DRM_HELPT_Thf("HOBNOTES$DRM_PUSHBUTTON_ACTIVATEY_$OBJECT_DISPLY_APPLY_PBLY_MAH ߀ ISO8859-1Add...H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pbH |I| t8FILE_OBJECT_DELETE_PB mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,&HBNOTENOTES$DRM_PUSHBUTTON_ACTIVATE FILE_OBJECT_ADD_PBLY_H  ߀ ISO8859-1 Delete...H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_delete_pbH TI t8FILE_OBJECT_MODIFY_PB mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,*HBNOTENOTES$DRM_PUSHBUTTON_ACTIVATE#FILE_OBJECT_DELETE_PBCANCH  (߀ ISO8859-1 Modify...UDH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb H I 8OBJECT_DISPLY_HELP_PB m!" $  U |hfn_ ply_d ISO8NOTES$DRM_HELPjl$OBJECT_DISPLY_CANCL_PB_HEH 4I4 t8OBJECT_DISPLY_INFO_UD mhf\"NOTES$DRM_WIDGET_CREATE;F $ A!" 34 C \ 8M N Q S DP R O hf_NOTES$DW_SVN_ENTRY_SELECTEDhfNOTES$DW_SVN_HELPhf(OBJLY_INNOTES$DW_SVN_SEL_CONFIRMEDPhfJEhCANCLE_OBJNOTES$DW_SVN_SEL_CONFIRMED_hf_PBJECTOOBJENOTES$DW_SVN_GET_ENTRYEhfPLN_OBJLY_OBNOTES$DW_SVN_DETACHEDOBhfT REATETILENOTES$DW_SVN_ATTACHEDPE$OBJECT_DISPLY_APPLY_PBTL"OBJECT_DISPLY_INFO_LNF_LtreeArcWidthdthtreePerpendicularLinesntreeIndexAllAlltreeCenteredComponentsntreeStyleylforceSeqGetEntrytryuseScrollButtonsonsexpectHighlightingidisplayModeH I t8OBJECT_DISPLY_CANCL_PBmhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPhf ,!4NOTES$DRM_PUSHBUTTON_ACTIVATE#FILE_OBJECT_MODIFY_PBH  ߀ ISO8859-1 Cancel  H  ߀ ISO8859-1 Cancel_pbCTORYNOTES$DRM_HELPDRhf,FINOTES$DRM_PUSHBUTTON_ACTIVATEEC%FILE_DIRECTORY_APPLY_PBRY_CANH  ߀ ISO8859-1Add...ro|p H pIp t8OBJECT_DISPLY_APPLY_PBmhf\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELPhf@ TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEECH ߀ ISO8859-1 Apply H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 object_disply_apply_pbH &߀" ISO8859-1Display ObjectsH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_dbH I p4FILE_OBJECT_ADD_DB1hfn_X|-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ hfD  NOTELPNOTES$DRM_HELP UOBJECT_ADD_OK_PBTIVAT!OBJECT_ADD_CANCL_PBBfpT\NHD4  OBJECT_ADD_HELP_PBOBJECT_ADD_CANCL_PBOBJECT_ADD_APPLY_PBOBJECT_ADD_OK_PBfOBJECT_ADD_FILE_TLOBJECT_ADD_FILE_LDWOBJECT_ADD_OBJECT_TOBJECT_ADD_OBJECT_LlaH  lI 4OBJECT_ADD_OBJECT_L A!A Z xhf HNOTES$DRM_HELP<H "߀ ISO8859-1 Object NameH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_db ISO8859-1 object_add_object_lH ,I p4OBJECT_ADD_OBJECT_Thfn_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C $ \` Z hf 9-1add_oNOTES$DRM_HELPEhfD&NOTES$DRM_VALUE_CHANGED!OBJECT_ADD_OBJECT_LB!OBJECT_ADD_OBJECT_LSOH  H߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_db ISO8859-1 object_add_object_lH   I 4OBJECT_ADD_FILE_L-1 A!C  Z xhf m _disp NOTES$DRM_HELPe1!OBJECT_ADD_OBJECT_TO8859-NOH  ߀ ISO8859-1Filespec!H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_db ISO8859-1 object_add_file_l߀H T I p4OBJECT_ADD_FILE_T-1hfn_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C |$ \` Z hf 9-1add_fNOTES$DRM_HELPEhfD'NOTES$DRM_VALUE_CHANGEDOBJECT_ADD_FILE_LLBOBJECT_ADD_FILE_LECT_AUTOMATIC_LRHEHf0FILE_OPEN_DIRECTORY_TBEFILE_OPEN_UNSEEN_TBro|p XH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_db ISO8859-1 object_add_file_lH xIx p4OBJECT_ADD_APPLY_PBhfn_X-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z h p$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"f85 _objebNOTES$DRM_HELP e_hfHE($NOTES$DRM_PUSHBUTTON_ACTIVATETEANOBJECT_ADD_OK_PBLE_L_RH ߀ ISO8859-1 Apply H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_db ISO8859-1 object_add_apply_pbH I 4OBJECT_ADD_HELP_PB1!" $  U xhf m _disp NOTES$DRM_HELPel1!OBJECT_ADD_CANCL_PBO8859-H |I| p4OBJECT_ADD_CANCL_PBhfX"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf OD_CANNOTES$DRM_HELP lyhfHE(%NOTES$DRM_PUSHBUTTON_ACTIVATETEAN!OBJECT_ADD_APPLY_PBLLBBH ߀ ISO8859-1 Cancel IDGH  ߀ ISO8859-1 Cancel_pbhH lIl p4OBJECT_ADD_OK_PBPBhfX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hf TES$D NOTES$DRM_HELPhf<#TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEDDH ߀ ISO8859-1 OK  ISH p߀ ISO8859-1OK_pb<H !߀ ISO8859-1 Add ObjectH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_dbailH D ID th8FILE_OBJECT_DELETE_DB mhfle\} ISO mainNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hfTE  RM_HENOTES$DRM_HELP<$OBJECT_DELETE_CANCL_PBVATDD_,CLOBJECT_DELETE_HELP_PBOBJECT_DELETE_CANCL_PBOBJECT_DELETE_APPLY_PBAOBJECT_DELETE_OK_PBOBJECT_DELETE_OBJECT_TAOBJECT_DELETE_OBJECT_LBToH   I 8OBJECT_DELETE_OBJECT_Lm A!A Z |hf HNOTES$DRM_HELP$H "X ߀ ISO8859-1 Object NameH < ߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_delete_pb ISO8859-1 file_object_delete_db ISO8859-1 object_delete_object_lATORS_TBNOTE_MAIL_MEMBERS_TBNOTE_MAIL_USERNAME_TBES$DRNOTES$DRM_HELP-fhf34ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE. _VH ߀ ISO8859-1Collapsero|,H I t8OBJECT_DELETE_OBJECT_Tmhfle\ ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1t_delNOTES$DRM_HELP<hfH(T_DELNOTES$DRM_VALUE_CHANGED$OBJECT_DELETE_OBJECT_L$OBJECT_DELETE_OBJECT_LSOH ߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_delete_pb ISO8859-1 file_object_delete_db ISO8859-1 object_delete_object_lH lIl p4OBJECT_DELETE_OK_PBhfn_X-1 NOTES$DRM_WIDGET_CREATE !" !#" \U Z ilhfct 59-1NOTES$DRM_HELP_hf<'HNOTES$DRM_PUSHBUTTON_ACTIVATEANOBH ߀ ISO8859-1 OK IL_H d߀ ISO8859-1OK_pbmaH I t8OBJECT_DELETE_APPLY_PBhfX\ NOTENOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf fcNOTES$DRM_HELP_hf,(fNOTES$DRM_PUSHBUTTON_ACTIVATEBUAN!OBJECT_DELETE_OK_PBJECT_L H ߀ ISO8859-1 Apply H \߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_delete_pb ISO8859-1 file_object_delete_db ISO8859-1 object_delete_apply_pbH I 8OBJECT_DELETE_HELP_PB m!" $  U |hfn_ ply_d ISO8NOTES$DRM_HELPjl$OBJECT_DELETE_CANCL_PB885H I t8OBJECT_DELETE_CANCL_PBmhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf OLETE_NOTES$DRM_HELPe_hfpb,)fNOTES$DRM_PUSHBUTTON_ACTIVATEBUAN$OBJECT_DELETE_APPLY_PBT_LH ߀ ISO8859-1 Cancel OTEH  P ߀ ISO8859-1 Cancel_pbtlH $ ߀  ISO8859-1 Delete ObjectH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_delete_pb ISO8859-1 file_object_delete_dbH  I t8FILE_OBJECT_MODIFY_DB mhfle\~ ISO mainNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ TEhfHE pbNOTES$DRM_HELPTEON!OBJECT_MODIFY_OK_PB$OBJECT_MODIFY_CANCL_PBEL E__JHJlCTJ<A$J OBJECT_MODIFY_HELP_PBOBOBJECT_MODIFY_CANCL_PBBOBJECT_MODIFY_SHOW_PB_FOBJECT_MODIFY_APPLY_PB_OBJECT_MODIFY_OK_PBOBJECT_MODIFY_FILE_T_LOBJECT_MODIFY_FILE_L$DWOBJECT_MODIFY_OBJECT_TLOBJECT_MODIFY_OBJECT_LLH   I 8OBJECT_MODIFY_OBJECT_Lm A!A Z |hf HNOTES$DRM_HELP@l߀ ISO8859-1Deletero|0TH "߀ ISO8859-1 Object NameH ߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb ISO8859-1 file_object_modify_db ISO8859-1 object_modify_object_lH 4I t8OBJECT_MODIFY_OBJECT_Tmhfle\ ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1t_modNOTES$DRM_HELPEhfH*NOTES$DRM_VALUE_CHANGED$OBJECT_MODIFY_OBJECT_L_PB$OBJECT_MODIFY_OBJECT_LTTH \߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb I!P$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;13"SO8859-1 file_object_modify_db ISO8859-1 object_modify_object_l H  I 8OBJECT_MODIFY_FILE_L m A!C  Z |hfn_ ply_d ISO8NOTES$DRM_HELPj$OBJECT_MODIFY_OBJECT_T885H @߀ ISO8859-1FilespecH H߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb ISO8859-1 file_object_modify_db ISO8859-1 object_modify_file_lH |I t8OBJECT_MODIFY_FILE_T mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1t_modNOTES$DRM_HELPEhfH+NOTES$DRM_VALUE_CHANGED"OBJECT_MODIFY_FILE_LL_PB"OBJECT_MODIFY_FILE_LLH ߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb ISO8859-1 file_object_modify_db ISO8859-1 object_modify_file_l_H \I t8OBJECT_MODIFY_APPLY_PBmhfle\ ISO mainNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 objec_dbNOTES$DRM_HELPy_hf,,NOTES$DRM_PUSHBUTTON_ACTIVATETEAN!OBJECT_MODIFY_OK_PBLE_LL_fH  ߀ ISO8859-1 Apply H  ߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb ISO8859-1 file_object_modify_db ISO8859-1 object_modify_apply_pbH D I t8OBJECT_MODIFY_SHOW_PB mhfle\ ISO mainNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 objec_dbNOTES$DRM_HELPy_hfpb,-NOTES$DRM_PUSHBUTTON_ACTIVATETEAN$OBJECT_MODIFY_APPLY_PBLLISH l ߀ ISO8859-1 Show H ߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb ISO8859-1 file_object_modify_db ISO8859-1 object_modify_show_pb ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 object_disply_info_lro|H$H I 8OBJECT_MODIFY_HELP_PB m!" $  U |hfn_ ply_d ISO8NOTES$DRM_HELPjl$OBJECT_MODIFY_CANCL_PB885H I t8OBJECT_MODIFY_CANCL_PBmhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf ODIFY_NOTES$DRM_HELPy_hfb,.NOTES$DRM_PUSHBUTTON_ACTIVATETEAN#OBJECT_MODIFY_SHOW_PBLLH ߀ ISO8859-1 Cancel _DEH  ߀ ISO8859-1 Cancel_pbS$H lIl p4OBJECT_MODIFY_OK_PBhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfO Y_NOTELPNOTES$DRM_HELP_.hf<+NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEANCTenH ߀ ISO8859-1 OK 885H ߀ ISO8859-1OK_pbaiH $߀  ISO8859-1 Modify ObjectteH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_modify_pb ISO8859-1 file_object_modify_dbH D ID x<MAIN_CUSTOMIZE_PROFILE_DBn_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE ;F H   X HIKLZ HEhf( 8.hf+NOTES$DRM_HELPUPUAT%CUSTOMIZE_PROFILE_OK_PBBLL'CUSTOMIZE_PROFILE_CANL_PB J( IpOTI8CUSTOMIZE_PROFILE_HELP_PB_FCUSTOMIZE_PROFILE_CANL_PBJECUSTOMIZE_PROFILE_OK_PBCUSTOMIZE_PROFILE_SHOW_RBIFCUSTOMIZE_PROFILE_AUTO_L_OBCUSTOMIZE_PROFILE_PEN_TCUSTOMIZE_PROFILE_PEN_LCUSTOMIZE_PROFILE_CLASS_TCUSTOMIZE_PROFILE_CLASS_LDWCUSTOMIZE_PROFILE_TEMP_TBOBH tIt x<CUSTOMIZE_PROFILE_TEMP_TBn_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE <A!"A d<` Z Ihf L NOTES$DRM_HELPhf+D7HELPNOTES$DRM_PUSHBUTTON_ACTIVATECUE_H )t ߀% ISO8859-1Temporary SettingsCH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_temp_tbH  8 I <CUSTOMIZE_PROFILE_CLASS_Ln_ A!C  Z hf1 tomize_dbNOTES$DRM_HELP1ro'CUSTOMIZE_PROFILE_TEMP_TBH  ߀ ISO8859-1ClasshH 0 ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_class_lH p` Ip x<CUSTOMIZE_PROFILE_CLASS_Tn_hfiz` IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hfOM E_TEM NOTES$DRM_HELP'CUSTOMIZE_PROFILE_CLASS_LNOTE'CUSTOMIZE_PROFILE_CLASS_L߀ ISO8859-1Add...ro|w8n     ( D D ` | , p    , 0(  @ X p   l      (0 H \ p  l x L  8 t H \ Lodon 8o oo|oonx nT< 1  2(( 2$ 1l 1l 1T 1 2$3|332 2 d344 5 5H3 ,444\4 746 645 6 h5L5 T8$8<8777 l8 8 p  |  8    p(# <P `4p l"l ,$4DD \@ t   p |p#  4 l "Pl$,<L\D t@    CONF_CONF_KEYWORD_PB CONF_CONF_DIRECTORY_PBCONF_CONF_PDMAPCONF_CONF_PDE_MCONF_VIEW_PDECONF_EDIT_PDEFICONF_FILE_CLOSE_PBFCONF_FILE_PDMJECONF_FILE_PDECTCONF_MENU_BART_CONF_WINDOWMAIN_DUMMY_WIDGETL_ENTRY_DELETE_CANCL_PB_PENTRY_DELETE_HELP_PBLY_ENTRY_DELETE_OK_PBKENTRY_DELETE_CLASS_TECTENTRY_DELETE_CLASS_TBCTENTRY_DELETE_ENTRY_TE_DENTRY_DELETE_ENTRY_LMAIN_ENTRY_DELETE_DBBJEENTRY_MODIFY_OK_PBEENTRY_MODIFY_CANCL_PB_AENTRY_MODIFY_HELP_PBD_FENTRY_MOFINISH_CREATE_OK_PBFINISH_CREATE_CANCL_PBRFINISH_CREATE_HELP_PBTRFINISH_NOTE_SAVE_TEFINISH_NOTE_SAVE_TBFINISH_NOTE_ENTER_TBSPEFINISH_NOTE_CANCL_TBCLAFINISH_OPTIONS_RBFYFINISH_O" 1>$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1c"PTIONS_L_MOFINISH_CREATE_LKEYWORD_MODIFY_OK_PBNTRKEYWORD_MODIFY_CANCL_PBKEYWORD_MODIFY_HELP_PBNKEYWORD_MODIFY_APPLY_PBKEYWORD_MODIFY_NEWKEY_TKEYWORD_MODIFY_NEWKEY_LKEYWORD_MODIFY_KEYWORD_TATEKEYWORD_MODIFY_KEYWORD_LS_TKEYWORD_DISPLY_APPLY_PBKEYWORD_DISPLY_CANCL_PBKEYWORD_DISPLY_INFO_UDTKEYWORD_DISPLY_HELP_PBBKEYWORD_DISPLY_INFO_LTRKEYWORD_DISPLY_KEYWORD_T_HEKEYWORD_DISPLY_KEYWORD_LTBKEYWORD_DELETE_CANCL_PBKEYWORD_DELETE_HELP_PBDKEYWORD_DELETE_APPLY_PBKEYWORD_DELETE_OK_PBRY_KEYWORD_DELETE_ALL_TB_TKEYWORD_DELETE_NOTEID_TKEYWORD_DELETE_NOTEID_LKEYWORD_DELETE_KEYWORD_TUSTKEYWORD_DELETE_KEYWORD_LUSTKEYWORD_CREATE_OK_PBIRKEYWORD_CREATE_CANCL_PBKEYWORD_CREATE_HELP_PBNKEYWORD_CREATE_APPLY_PBKEYWORD_CREATE_KEYWORD_TFILKEYWORD_CREATE_KEYWORD_LFILKEYWORD_ADD_OK_PBPRKEYWORD_ADD_CANCL_PB_PRKEYWORD_ADD_HELP_PBKEYWORD_ADD_APPLY_PBKEYWORD_ADD_NOTEID_TP_TKEYWORD_ADD_NOTEID_LOFIKEYWORD_ADD_KEYWORD_TERKEYWORD_ADD_KEYWORD_LATFILE_CREATE_NOTEFILE_LNFILE_CREATE_NOTEFILE_TLFILE_CREATE_NOTICE_TONFFILE_CREATE_NOTICE_TBPDFILE_CREATE_OK_PBODFILE_CREATE_REPLY_ONLY_TBPDFILE_CREATE_RESTR_KEY_TB_PBFILE_CREATE_RESTR_MEM_TBBLFILE_CREATE_TITLE_TFILE_CREATE_TITLE_TB_BAFILE_CREATE_WRITE_ALL_TBWINFILE_DIRECTORY_ACCESS_TBO_LFILE_DIRECTORY_ADD_PBCAFILE_DIRECTORY_APPLY_PBFILE_DIRECTORY_CANCL_PBFILE_DIRECTORY_CONF_LIZFILE_DIRECTORY_CONF_UDTFILE_DIRECTORY_HELP_PBNFILE_DIRECTORY_LOCATION_LSTFILE_DIRECTORY_LOCATION_TIZFILE_OBJECT_ADD_DBTFILE_OBJECT_ADD_PBRFILE_OBJECT_DELETE_DBTEFILE_OBJECT_DELETE_PBILFILE_OBJECT_MODIFY_DBOWFILE_OBJECT_MODIFY_PBADFILE_OPEN_AUTOMATIC_LCLFILE_OPEN_CANCL_PBLFILE_OPEN_CLASS_TENFILE_OPEN_CLASS_TBNFILE_OPEN_DIRECTORY_TBPFILE_OPEN_ENTRY_LFIFILE_OPEN_ENTRY_TADFILE_OPEN_FILESPEC_L_OBFILE_OPEN_FILESPEC_TECTFILE_OPEN_HELP_PBBFILE_OPEN_IN_NEW_TBFILE_OPEN_IN_NOTEBOOK_TBBFILE_OPEN_OK_PBFILE_OPEN_SHOW_RBTEFILE_OPEN_UNSEEN_TBMAIN_CAUTION_BOXNTRMAIN_COLLAPSE_ALL_PBNTRMAIN_COLLAPSE_PBNTRMAIN_CUSTOMIZE_PDECMAIN_CUSTOMIZE_PDMPMAIN_CUSTOMIZE_PRINT_PBMAIN_CUSTOMIZE_PROFILE_DBJEMAIN_CUSTOMIZE_PROFILE_PBTRMAIN_DUMMY_WIDGETJEMAIN_EDIT_COPY_PBPEMAIN_EDIT_PDEFYMAIN_EDIT_PDM_DMAIN_EDIT_SELECT_PBMAIN_ENTRY_ADD_DBAMMAIN_ENTRY_ADD_PBAMMAIN_ENTRY_DELETE1_PBBJMAIN_ENTRY_DELETE2_PBBJMAIN_ENTRY_DELETE_DBOK_MAIN_ENTRY_MODIFY_DB_PBMAIN_ENTRY_MODIFY_PBTBMAIN_ENTRY_PDENMAIN_ENTRY_PDMPMAIN_ENTRY_UPDATE1_PBUPMAIN_ENTRY_UPDATE2_PBUPMAIN_ENTRY_UPDATE_DB_UPMAIN_EXPAND_ALL_PBRMAIN_EXPAND_PBBMAIN_FILE_CREATE_DBMAIN_FILE_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|d(4 I& (&V|@ VAA^dl ^ ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_db ISO8859-1 object_add_file_lH xIx p4OBJECT_ADD_APPLY_PBhfn_X-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf85 _objebNOTES$DRM_HELP e_hfHE($NOTES$DRM_PUSHBUTTON_ACTIVATETEANOBJECT_ADD_OK_PBLE_L_RH ߀ ISO8859-1 Apply H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_db ISO8859-1 object_add_apply_pbH I 4OBJECT_ADD_HELP_PB1!" $  U xhf m _disp NOTES$DRM_HELPel1!OBJECT_ADD_CANCL_PBO8859-H |I| p4OBJECT_ADD_CANCL_PBhfX"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf OD_CANNOTES$DRM_HELP lyhfHE(%NOTES$DRM_PUSHBUTTON_ACTIVATETEAN!OBJECT_ADD_APPLY_PBLLBBH ߀ ISO8859-1 Cancel IDGH  ߀ ISO8859-1 Cancel_pbhH lIl p4OBJECT_ADD_OK_PBPBhfX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hf TES$D NOTES$DRM_HELPhf<#TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEDDH ߀ ISO8859-1 OK  ISH p߀ ISO8859-1OK_pb<H !߀ ISO8859-1 Add ObjectH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_add_pb ISO8859-1 file_object_add_dbailH D ID th8FILE_OBJECT_DELETE_DB mhfle\} ISO mainNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hfTE  RM_HENOTES$DRM_HELP<$OBJECT_DELETE_CANCL_PBVATDD_,CLOBJECT_DELETE_HELP_PBOBJECT_DELETE_CANCL_PBOBJECT_DELETE_APPLY_PBAOBJECT_DELETE_OK_PBOBJECT_DELETE_OBJECT_TAOBJECT_DELETE_OBJECT_LBToH   I 8OBJECT_DELETE_OBJECT_Lm A!A Z |hf HNOTES$DRM_HELP$H "X ߀ ISO8859-1 Object NameH < ߀  ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 file_object_delete_pb ISO8859-1 file_object_delete_db ISO8859-1 object_delete_object_lATORS_TBNOTE_MAIL_MEMBERS_TBNOTE_MAIL_USERNAME_TBES$DRNOTES$DRM_HELP-fhf34ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE. _VOBJECT_MODIFY_SHOW_PBMEMBER_DELETE_HELP_PBCUSTOMIZE_PROFILE_UNS_TBNOTE_MAIL_HELP_PBFILE_CREATE_HELP_PBMAIN_FILE_DIRECTORY_PBro||dH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_class_lH  I 8CUSTOMIZE_PROFILE_PEN_L A!C  Z |hf85 _custofileNOTES$DRM_HELP8ze_l'CUSTOMIZE_PROFILE_CLASS_TH $߀  ISO8859-1 Personal Name_fH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_pen_lH l,Il t8CUSTOMIZE_PROFILE_PEN_Thfst\9-1NOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hfOM E_CLANOTES$DRM_HELPE%CUSTOMIZE_PROFILE_PEN_LASS_L%CUSTOMIZE_PROFILE_PEN_LASS_LK H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_pen_lH  I <CUSTOMIZE_PROFILE_AUTO_Lin_ A!C B Z mahfto le_dbISO88NOTES$DRM_HELPeOM%CUSTOMIZE_PROFILE_PEN_TDRM_HEH H %t߀! ISO8859-1On Open, Show:H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_auto_lH tIt <CUSTOMIZE_PROFILE_#$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1 "SHOW_RBn_ ;F  A!"C /Z lehf -1 e_proNOTES$DRM_HELP&CUSTOMIZE_PROFILE_AUTO_LELPECXO<CUSTOMIZE_PROFILE_DIR_TBZE_CUSTOMIZE_PROFILE_UNS_TBE_M_H I x<CUSTOMIZE_PROFILE_UNS_TBn_hf`F NOTES$DRM_WIDGET_CREATE< <Z hf ES$DRNOTES$DRM_HELPOFAPH (4 ߀$ ISO8859-1First UNSEEN NoteH D ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_uns_tbH  I x<CUSTOMIZE_PROFILE_DIR_TBin_hfiz` IS maiNOTES$DRM_WIDGET_CREATE< <Z hf88 tomize_unsNOTES$DRM_HELPOF H )d ߀% ISO8859-1Directory of NotesH t ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_dir_tbH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_db ISO8859-1 customize_profile_show_rbK_PH  I <CUSTOMIZE_PROFILE_HELP_PBn_!" $  U hf1 tomize_dbNOTES$DRM_HELP1rolR'CUSTOMIZE_PROFILE_CANL_PBOFNOTES$DRM_HELP@l߀ ISO8859-1Deletero| H I x<CUSTOMIZE_PROFILE_CANL_PBn_hf`"NOTES$DRM_WIDGET_CREATE!" $ ` PU Z hf C_PROFNOTES$DRM_HELPFEhf09XNOTES$DRM_PUSHBUTTON_ACTIVATEDIIZ%CUSTOMIZE_PROFILE_OK_PBY_H ߀ ISO8859-1 Cancel ES$H  ߀ ISO8859-1 Cancel_pbH pIp t8CUSTOMIZE_PROFILE_OK_PBhff\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hfC OFNOTELPFNOTES$DRM_HELPE9hf@8NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEIZOM_fH ߀ ISO8859-1 OK ly_H ߀ ISO8859-1OK_pbH *߀& ISO8859-1Show/Modify ProfileH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pb ISO8859-1 main_customize_profile_dbH (I p4MAIN_ENTRY_ADD_DB-1hfn_XYpdeO8859NOTES$DRM_WIDGET_CREATE ;F |H  \ < ,AIZ hfT  FNOTELPENOTES$DRM_HELP8UENTRY_ADD_OK_PBCTIVAT ENTRY_ADD_CANCL_PBLE_CU OMOBJxdP@,ENTRY_ADD_HELP_PBENTRY_ADD_CANCL_PBZENTRY_ADD_OK_PBENTRY_ADD_CLASS_TILENTRY_ADD_CLASS_TBZENTRY_ADD_OBJECT_TTENTRY_ADD_OBJECT_TBENTRY_ADD_ENTRY_TILENTRY_ADD_ENTRY_TBZENTRY_ADD_FILESPEC_TMIZENTRY_ADD_FILESPEC_LMIZH  I 8ENTRY_ADD_FILESPEC_Lf A!A Z |hfF NOTES$DRM_HELPAe_H *߀& ISO8859-1Conference FilenameH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_filespec_lH  I t8ENTRY_ADD_FILESPEC_T mhftr\? IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf    NOTES$DRM_HELPRhf8H,ENNOTES$DRM_VALUE_CHANGED"ENTRY_ADD_FILESPEC_L"ENTRY_ADD_FILESPEC_LfiH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_filespec_lH | I| p4ENTRY_ADD_ENTRY_TB1hfn_X;9-1NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf NOTES$DRM_HELP DRhfR0-HNOTES$DRM_VALUE_CHANGED E_"ENTRY_ADD_FILESPEC_TESPECIFH ` ߀ ISO8859-1Entry88H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_entry_tbfile_object_modify_pb ISO8859-1 file_object_modify_db ISO8859-1 object_modify_show_pb ISO8859-1 main_file_pde ISO8859-1 main_file_object_pb ISO8859-1 main_object_disply_db ISO8859-1 object_disply_info_lro|4H XIX p4ENTRY_ADD_ENTRY_T-1hfn_X<9-1NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hf RM_HENOTES$DRM_HELP 0 ENTRY_ADD_ENTRY_TB$DR ENTRY_ADD_ENTRY_TBE_H ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_entry_tbH xlIx p4ENTRY_ADD_OBJECT_TBhfn_X@9-1NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf NOTES$DRM_HELPE hf0.E_ENTRNOTES$DRM_VALUE_CHANGED E_ ENTRY_ADD_ENTRY_TBTE_MH "8߀ ISO8859-1 Object NameH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_object_tbEH `I` p4ENTRY_ADD_OBJECT_T1hfn_XA9-1NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf RM_HENOTES$DRM_HELP0!ENTRY_ADD_OBJECT_TBDRM_VA!ENTRY_ADD_OBJECT_TB_DH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_object_tbRH |8I| p4ENTRY_ADD_CLASS_TB1hfn_X=9-1NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf NOTES$DRM_HELPEhf0/E_OBJENOTES$DRM_VALUE_CHANGED_T!ENTRY_ADD_OBJECT_TBESPECIRH ߀ ISO8859-1ClassH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_class_tbLEH XIX p4ENTRY_ADD_CLASS_T-1hfn_X>$cG$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"9-1NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hf RM_HENOTES$DRM_HELP0 ENTRY_ADD_CLASS_TB$DR ENTRY_ADD_CLASS_TB_TSAH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_class_tbSH  I 4ENTRY_ADD_HELP_PB-1!" $  U xhfma dd_dbISO88NOTES$DRM_HELPd8l ENTRY_ADD_CANCL_PBOKH x Ix p4ENTRY_ADD_CANCL_PB1hfXC"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf E_CANCNOTES$DRM_HELPRHEhf(=0 NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEY__TENTRY_ADD_OK_PB_TBECAH  ߀ ISO8859-1 Cancel ECTH  T߀ ISO8859-1 Cancel_pbJECT_DISPLY_APPLY_PBSOBJECT_DISPLY_CANCL_PBSOBJECT_DISPLY_HELP_PBINOBJECT_DISPLY_INFO_LEDIOBJECT_DISPLY_INFO_UD OBJECT_DISPLY_OBJECT_LNOBJECT_DISPLY_OBJECT_TTOBJECT_MODIFY_APPLY_PBTOBJECT_MODIFY_FILE_LENTOBJECT_MODIFY_FILE_TENTOBJECT_MODIFY_OBJECT_LOBJECT_MODIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|P$H hIh l0ENTRY_ADD_OK_PBhffTBC"NOTES$DRM_WIDGET_CREATE !" !#" XU Z hfE NCNOTELPRNOTES$DRM_HELPE=hf8<Y_NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_TY_S$H ߀ ISO8859-1 OK H |߀ ISO8859-1OK_pbhH  ߀ ISO8859-1 Add EntryH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_dbH I t8MAIN_ENTRY_UPDATE_DB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0IZ hfR HELPNOTES$DRM_HELPDR ENTRY_UPDATE_OK_PB#ENTRY_UPDATE_CANCL_PBY_D_ElT@,ENTRY_UPDATE_HELP_PBENTRY_UPDATE_CANCL_PBENTRY_UPDATE_OK_PBZENTRY_UPDATE_ALL_TBENTRY_UPDATE_CLASS_T_ADENTRY_UPDATE_CLASS_TBOBENTRY_UPDATE_ENTRY_TECTENTRY_UPDATE_ENTRY_TBILISH \I\ t8ENTRY_UPDATE_ENTRY_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"A L` Z hf ZhfNOTES$DRM_HELPEhfDR40NOTES$DRM_VALUE_CHANGEDPB H ߀ ISO8859-1EntryH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_entry_tbH d Id t8ENTRY_UPDATE_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf hfRM_HENOTES$DRM_HELP4#ENTRY_UPDATE_ENTRY_TBM_VA#ENTRY_UPDATE_ENTRY_TB#MPH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_entry_tbH l I t8ENTRY_UPDATE_CLASS_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf hfNOTES$DRM_HELPEhf41EATE_ENOTES$DRM_VALUE_CHANGEDRY"ENTRY_UPDATE_ENTRY_TL_PB H @ ߀ ISO8859-1ClassusH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_class_tbH d Id t8ENTRY_UPDATE_CLASS_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf hfRM_HENOTES$DRM_HELP4#ENTRY_UPDATE_CLASS_TBM_VA#ENTRY_UPDATE_CLASS_TBH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_class_tb Z hfOM E_TEM NOTES$DRM_HELP'CUSTOMIZE_PROFILE_CLASS_LNOTE'CUSTOMIZE_PROFILE_CLASS_L߀ ISO8859-1Add...ro|0H I p4ENTRY_UPDATE_ALL_TBhfn_X9-1NOTES$DRM_WIDGET_CREATE <A!"C d T<` Z hff  RNOTES$DRM_HELPEhf<2Y_UPDS_TBNOTES$DRM_VALUE_CHANGED"ENTRY_UPDATE_CLASS_TNOH "߀ ISO8859-1 All EntriesH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_all_tbstH I 8ENTRY_UPDATE_HELP_PB m!" $  U |hfma pdate ISNOTES$DRM_HELP_l#ENTRY_UPDATE_CANCL_PBH |I| t8ENTRY_UPDATE_CANCL_PB mhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EATE_CNOTES$DRM_HELPR Ehf,AfY_NOTES$DRM_PUSHBUTTON_ACTIVATEE_! ENTRY_UPDATE_OK_PBE_C_pH ߀ ISO8859-1 Cancel n_lH  <߀ ISO8859-1 Cancel_pbH lpIl p4ENTRY_UPDATE_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfE _CNOTELPRNOTES$DRM_HELPE"Ahf<@Y_NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE#Y_eH ߀ ISO8859-1 OK  H $߀ ISO8859-1OK_pbSOH #X߀ ISO8859-1 Update EntryH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_dbH I t8MAIN_ENTRY_MODIFY_DB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE ;F H  t T DIKL/Z DRhfE$ 4"A<NOTES$DRM_HELP$DR%CT ENTRY_MODIFY_OK_PBE_O#ENTRY_MODIFY_CANCL_PBD_lT< TTTTL|UdENTRY_MODIFY_HELP_PBCLAENTRY_MODIFY_CANCL_PBNTENTRY_MODIFY_SHOW_PBENTENTRY_MODIFY_APPLY_PBY_ENTRY_MODIFY_OK_PBPENTRY_MODIFY_OBJECT_TSPENTRY_MODIFY_OBJECT_TB_ENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TB_TEENTRY_MODIFY_CLASS_TPPLENTRY_MODIFY_CLASS_TBCTENTRY_%hr$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Ao"MODIFY_NAME_TENTRY_MODIFY_NAME_TBerpENTRY_MODIFY_ENTRY_TndeENTRY_MODIFY_ENTRY_LompS$H  lI 8ENTRY_MODIFY_ENTRY_L m A!A Z |hf HNOTES$DRM_HELP&T'izH H ߀ ISO8859-1Entry_pH , ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_entry_l H \ I t8ENTRY_MODIFY_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf ZRhfNOTES$DRM_HELP(<hfDRH3RNOTES$DRM_VALUE_CHANGED"ENTRY_MODIFY_ENTRY_LNTRY_"ENTRY_MODIFY_ENTRY_Lro| LH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_entry_l H I t8ENTRY_MODIFY_NAME_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$ hf NOTES$DRM_HELPR)HEhf44<hf3NOTES$DRM_VALUE_CHANGED*AN"ENTRY_MODIFY_ENTRY_TY_LNH %߀! ISO8859-1New Entry NameH h߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_name_tbEH `I` p4ENTRY_MODIFY_NAME_Thfn_X9-1NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z $hf ES$DRNOTES$DRM_HELP+"ENTRY_MODIFY_NAME_TBES$DR"ENTRY_MODIFY_NAME_TBN"H t߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_name_tbH I t8ENTRY_MODIFY_CLASS_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$  NOTES$DRM_HELPR,hf45ENTRYNAME_NOTES$DRM_VALUE_CHANGED-N"ENTRY_MODIFY_NAME_TBY_LNASH ߀ ISO8859-1ClassENH P߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_class_tbH dId t8ENTRY_MODIFY_CLASS_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELP.4#ENTRY_MODIFY_CLASS_TBM_VA#ENTRY_MODIFY_CLASS_TB_fH T߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_class_tbH  I x<ENTRY_MODIFY_FILESPEC_TBin_hfpd`SO885in_enNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf  NOTES$DRM_HELPR/hf486ENTRYCLASSNOTES$DRM_VALUE_CHANGED0B#ENTRY_MODIFY_CLASS_TBTRY_H * ߀& ISO8859-1Conference FilenameH 8 ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_filespec_tbH lt Il t8ENTRY_MODIFY_FILESPEC_Thftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hf ES$DRNOTES$DRM_HELP14&ENTRY_MODIFY_FILESPEC_TBRM_VA&ENTRY_MODIFY_FILESPEC_TBENSOH L ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_filespec_tbSO8859-1 main_object_disply_db ISO8859-1 object_disply_info_lro|!<H I t8ENTRY_MODIFY_OBJECT_TBmhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOTES$DRM_HELPE2hf47EIFY_FNOTES$DRM_VALUE_CHANGED3_F&ENTRY_MODIFY_FILESPEC_TBTRY_inH "߀ ISO8859-1 Object NameH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_object_tbH dId t8ENTRY_MODIFY_OBJECT_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELP44$ENTRY_MODIFY_OBJECT_TB_VA$ENTRY_MODIFY_OBJECT_TBSOH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_object_tbH |I| t8ENTRY_MODIFY_APPLY_PB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE!" $ \ LU Z $hf hf NOTES$DRM_HELPR5HEhf,F4$NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEEN6EC ENTRY_MODIFY_OK_PBEC_59H ߀ ISO8859-1 Apply H |߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_apply_pbCH I t8ENTRY_MODIFY_SHOW_PB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE!" $ \ LU Z $hf hf NOTES$DRM_HELPR7HEhf,E4$NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEEN8EC#ENTRY_MODIFY_APPLY_PBTBenH ߀ ISO8859-1 Show H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_show_pbH D I 8ENTRY_MODIFY_HELP_PB m!" $  U |hfai dify_ ISONOTES$DRM_HELPm$l#ENTRY_MODIFY_CANCL_PBM_HE59H  I t8ENTRY_MODIFY_CANCL_PB mhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EIFY_CNOTES$DRM_HELPR9HEhf,D4$NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEEN:EC"ENTRY_MODIFY_SHOW_PBTBTRH  ߀ ISO8859-1 Cancel  H  ߀ ISO8859-1 Cancel_pbH l Il p4ENTRY_MODIFY_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U& $ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1" Z hfE _CNOTELPRNOTES$DRM_HELPE;Dhf<CY_NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEEC<Y_߀H  ߀ ISO8859-1 OK BSH ߀ ISO8859-1OK_pbINH (߀$ ISO8859-1Show/Modify EntryPLH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_dbSHOW_PB ro|" ,H hIh th8MAIN_ENTRY_DELETE_DB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hf_C ELPRM_HENOTES$DRM_HELP=<>#ENTRY_DELETE_CANCL_PBIVATY__P8 DENTRY_DELETE_HELP_PBENTRY_DELETE_CANCL_PBENTRY_DELETE_OK_PBENTRY_DELETE_CLASS_TTENTRY_DELETE_CLASS_TBTENTRY_DELETE_ENTRY_TLENTRY_DELETE_ENTRY_LNTR-1H  I 8ENTRY_DELETE_ENTRY_L m A!A Z |hf HNOTES$DRM_HELP?$@H |߀ ISO8859-1EntryH `߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_entry_lH I t8ENTRY_DELETE_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf_C ELPRM_HENOTES$DRM_HELPA<hfH8_DELENOTES$DRM_VALUE_CHANGED"ENTRY_DELETE_ENTRY_L"ENTRY_DELETE_ENTRY_LH d߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_entry_l H  I t8ENTRY_DELETE_CLASS_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$ hf NOTES$DRM_HELPRBHEhf49<hf8NOTES$DRM_VALUE_CHANGEDCAN"ENTRY_DELETE_ENTRY_TY_LH ߀ ISO8859-1ClassH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_class_tbH dId t8ENTRY_DELETE_CLASS_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf  RM_HENOTES$DRM_HELPD4#ENTRY_DELETE_CLASS_TBM_VA#ENTRY_DELETE_CLASS_TBH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_class_tbH l Il p4ENTRY_DELETE_OK_PB1hfn_X9-1NOTES$DRM_WIDGET_CREATE !" !#" \U Z hff  RNOTES$DRM_HELPEEhf<IY_DELS_TBNOTES$DRM_PUSHBUTTON_ACTIVATESSFY__CH  ߀ ISO8859-1 OK H X ߀ ISO8859-1OK_pb H  I 8ENTRY_DELETE_HELP_PBf!" $  U |hf" NOTES$DRM_HELP=Ul#ENTRY_DELETE_CANCL_PBtry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_class_tb Z hfOM E_TEM NOTES$DRM_HELP'CUSTOMIZE_PROFILE_CLASS_LNOTE'CUSTOMIZE_PROFILE_CLASS_L߀ ISO8859-1Add...ro|#T dH |I| t8ENTRY_DELETE_CANCL_PBfhf\"NOTES$DRM_WIDGET_CREATE!"  l$ LU Z hf EETE_CNOTES$DRM_HELPRGEhf,JfY_NOTES$DRM_PUSHBUTTON_ACTIVATEBU ENTRY_DELETE_OK_PBY_HYLAH ߀ ISO8859-1 Cancel  AlH  ߀ ISO8859-1 Cancel_pb H #߀ ISO8859-1 Delete Entry IH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db_H  0I h,MAIN_POPUPIhf-1Ptry_p ISONOTES$DRM_WIDGET_CREATE;F ( Z hf LUZNOTES$DRM_HELPIE"MAIN_POPUP_UPDATE_PB,fD|OhBTMAIN_POPUP_EXIT_PBBMAIN_SEPARATOR_SPYMAIN_POPUP_UPDATE_PBRY_MAIN_POPUP_OPEN_IN_NEW_PBMAIN_POPUP_OPEN_PBLPH HIH p4MAIN_POPUP_OPEN_PB1hfXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPJhf_PME_PBNOTES$DRM_PUSHBUTTON_ACTIVATEKNOH ߀ ISO8859-1Open H G߀C ISO8859-1 main_popup ISO8859-1 main_popup_open_pbH P@IP x<MAIN_POPUP_OPEN_IN_NEW_PBuphfpb`ES$DRNOTES$DRM_WIDGET_CREATE* @ 0U Z hf ES$DRNOTES$DRM_HELPL_PhfMNES$DRNOTES$DRM_PUSHBUTTON_ACTIVATEMSOH )߀% ISO8859-1Open in New WindoweH N߀J ISO8859-1 main_popup ISO8859-1 main_popup_open_in_new_pbH H<IH p4MAIN_POPUP_EXIT_PBahfupXew_pbNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPRNhf_PPNNOTES$DRM_PUSHBUTTON_ACTIVATECTO鮈H ߀ ISO8859-1ExitH G ߀C ISO8859-1 main_popup ISO8859-1 main_popup_exit_pbH L( IL t8MAIN_POPUP_UPDATE_PBn_phfxi\bNOTENOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELPPfhf ONNOTENOTES$DRM_PUSHBUTTON_ACTIVATEQ=SSH  ߀ ISO8859-1UpdateeH I ߀E ISO8859-1 main_popup ISO8859-1 main_popup_update_pbH ! ߀ ISO8859-1 main_popupH  p I p4MAIN_DUMMY_WIDGETmahfupXbNOTES$DRM_WIDGET_CREATE;F ZEnH   I ,CONF_WINDOW;F %EZ hEThfE NOTES$DRM_HELPRTHCONF_SVN_WINDOWCONF_MENU_BARNENTRY_MODIFY_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf ZRhfNOTES$DRM_HELP(<hfDRH3RNOTES$DRM_VALUE_CHANGED"ENTRY_MODIFY_ENTRY_LNTRY_"ENTRY_MODIFY_ENTRY_L'|$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1x"ro|$LLH  I 0CONF_MENU_BAR;F -' Z lfhf NOTENOTES$DRM_HELPSMAIN_HELP_PDENFI|El\TLP<C,MAIN_HELP_PDECONF_NOTE_PDECONF_CONF_PDEOPCONF_VIEW_PDEINCONF_EDIT_PDEYCONF_FILE_PDEATH TIT 0CONF_FILE_PDE@ 8;F ( *  W Z hfTE HELPNOTES$DRM_HELPAThfNF|NOTES$DRM_MENU_PULLINGUPPDCONF_FILE_PDM_CONH HIH 0\CONF_FILE_PDM;F L4 ZfTCONF_FILE_CLOSE_PBMAIN_SEPARATOR_SPNFREAD_FILE_PRINT2_PBREAD_FILE_PRINT1_PBREAD_FILE_EXTRACT_PBMAIN_SEPARATOR_SPMAIN_FILE_MAIL_PB_FaiH LIL t8READ_FILE_EXTRACT_PBhf\NOTES$DRM_WIDGET_CREATE* < ,U Z hf CONLOSE_NOTES$DRM_HELPTVILhfT2 ILE_PREADNOTES$DRM_PUSHBUTTON_ACTIVATEATWIL*E_hH !d߀ ISO8859-1 Extract...H m߀i ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pbEH 0I0 p4READ_FILE_PRINT1_PBhffiX I reNOTES$DRM_WIDGET_CREATE U Z hf CONNOTES$DRM_HELPEXhfT2 LE_PNOTES$DRM_PUSHBUTTON_ACTIVATEONYDIH x߀ ISO8859-1Print mH l߀h ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print1_pbhH HIH p4READ_FILE_PRINT2_PBhffiX I reNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPZhfES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE[FH l߀ ISO8859-1Print...9-1H l ߀h ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb H | I| p4CONF_FILE_CLOSE_PBhffiX  I reNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DNOTES$DRM_HELP\hfQTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE]E_^OP_IN`YH | fH ' ߀# ISO8859-1Close ConferenceNTRH  ߀ ISO8859-1Ctrl/ZH  \ Ctrlz:PBH k ߀g ISO8859-1 conf_menu_bar ISO8859-1 conf_file_pde ISO8859-1 conf_file_close_pblH  ߀ ISO8859-1FileY_OH E, ߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_file_pdeH T\ IT 0CONF_EDIT_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPaDhfDRM_HNOTES$DRM_MENU_PULLINGbUPUATMAIN_EDIT_PDM IH  ߀ ISO8859-1EditH E߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_edit_pde1 main_entry_modify_pb ISO8859-1 main_entry_modify_dbSHOW_PB ro|%X`H TIT 0CONF_VIEW_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPcDhfDRM_HNOTES$DRM_MENU_PULLINGdU&PUATMAIN_VIEW_PDMIVH ߀ ISO8859-1View8H Eh߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_view_pdeNH TIT 0CONF_CONF_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPeDhfDRM_HNOTES$DRM_MENU_PULLINGfU PUATCONF_CONF_PDMH I 0\CONF_CONF_PDM59;F L Zf|hTT@,DCONF_CONF_MODERATE_PB_PMAIN_SEPARATOR_SPREAD_NOTE_SETSEEN_PBCONF_CONF_MODIFY_PBMAIN_SEPARATOR_SPCONF_CONF_MEMBER_PBCONF_CONF_MARKER_PBCONF_CONF_KEYWORD_PBRY_MAIN_SEPARATOR_SP_NREAD_NOTE_SEARCH_PBCONF_CONF_DIRECTORY_PBL`H LXIL t8CONF_CONF_DIRECTORY_PBhf\ NOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTES$DRM_HELPghfON S_PB_PARATNOTES$DRM_PUSHBUTTON_ACTIVATEhFYATpbH ,@߀( ISO8859-1Directory of Notes...trH o߀k ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pbiNOH dId p4READ_NOTE_SEARCH_PBhfcoX I coNOTES$DRM_WIDGET_CREATE* T D 4U Z hf ES$DRNOTES$DRM_HELPiONhfSES$DRNOTES$DRM_PUSHBUTTON_ACTIVATEjklER59H deH  ߀ ISO8859-1 Search... mH  0xFF68:8H l$ ߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pbY_H LD IL t8CONF_CONF_KEYWORD_PBconhf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTES$DRM_HELPRmhfON hNOTES$DRM_PUSHBUTTON_ACTIVATECTnoSOH  KH "$ ߀ ISO8859-1 Keywords...H m8 ߀i ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pbH Hl IH p4CONF_CONF_MEMBER_PBhfcoX= I coNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_HELPEphffhNOTES$DRM_PUSHBUTTON_ACTIVATEATqH ! ߀ ISO8859-1 Members...1H lH ߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb_HH H| IH p4CONF_CONF_MODIFY_PBhfcoX I coNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_HELPErhffWhNOTES$DRM_PUSHBUTTON_ACTIVATEATs# H % ߀! ISO8859-1Show/Modify...ROFILE_CLASS_LNOTE'CUSTOMIZE_PROFILE_CLASS_L߀ ISO8859-1Add...ro|&z .4 . ,l ,0 ,<D ,X .$ l .$ - - +T + + . . -8 ( - < +T , h ,| | -h - -x B B Bl @ tndnm n`mT `n\miihx i< h hihl mlt g` $ h g 4l L h g gPl4` g m<8 hHn( g<o( ppp(pp\l llxtlHl ghi ,k@kTi |i kkl k kpk(  4  H \ (\Fx$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1I"*p `     8  # " 0 "H "|` "dx " " ! ! T H 04 L L h!  t !!! !4 L@ d| HH 04 L L h!  t !!! !4 L@ d| HCONF_CONCONF_POPUP_READ_IN_NEW_PBDICONF_POPUP_NEXT_UNSEEN_PBAPCONF_POPUPDCONF_MEMBER_MODIFY_DBNFCONF_MEMBER_MODIFY_PBCLCONF_MEMBER_DELETE_PBJECONF_MEMBER_ADD_PBFDISPLY_ONLY_MODERATORS_TBINDISPLY_ALL_MEMBERS_TBDEDISPLY_OPTIONS_RBTRCONF_MEMBER_DISPLY_DBTRCONF_MEMBER_DELETE_DBDEADD_WRITEBYPASS_TBRADD_CREATE_KEYWORD_TBTRADD_ACT_MODERATOR_TBNTRCONF_MEMBER_ADD_DBCONF_MARKER_DELETE_PBJECONF_MARKER_ADD_PBECONF_MARKER_DISPLY_DB_ACONF_MARKER_DELETE_DB_FCONF_MARKER_ADD_DBBCONF_KEYWORD_MODIFY_DBPCONF_KEYWORD_MODIFY_PB_CONF_KEYWORD_DELETE_PB_CONF_KEYWORD_CREATE_PBECONF_KEYWORD_ADD_PBCONF_KEYWORD_DISPLY_DBYCONF_KEYEDIT_POPUP_PASTE_PBEDIT_POPUP_CANCL_PBEDIT_POPUP_COPY_PBEDIT_POPUP_CUT_PBPBEDIT_POPUP_ENTER_PBEDIT_POPUPFEDIT_FINISH_CREATE_DBODEDIT_ATTRIB_OK_PBTEEDIT_ATTRIB_CANCL_PB_TBEDIT_ATTRIB_HELP_PBEDIT_ATTRIB_CONFERENCE_TRITEDIT_ATTRIB_CONFERENCE_TBNFEDIT_ATTRIB_HIDDEN_TBY_EDIT_ATTRIB_REPLIES_TB_EDIT_FILE_ATTRIBUTE_DB_EDIT_FILE_USEF_DBY_EDIT_FILE_INCL_DBONEDIT_SAVEAS_OK_PBTEEDIT_SAVEAS_CANCL_PBL_PEDIT_SAVEAS_HELP_PBEDIT_SAVEAS_FILENAME_TDEDIT_SAVEAS_FILENAME_LEDIT_FILE_SAVEAS_DBEDIT_WORK_TEXT_EDIT_WORK_KEYWORD_TEDIT_WORK_KEYWORD_LEDIT_WORK_TITLE_TITEDIT_WORK_TITLE_LITEDIT_WORK_AUTHOR_TYEDIT_WORK_DATE_LKEYEDIT_WORK_DATE_TSINEDIT_WORK_AUTHOR_LNEDIT_WORK_DBOTEEDIT_EDIT_SELECT_PBEDIT_EDIT_CLEAR_PBEEDIT_EDIT_PASTE_PBEEDIT_EDIT_COPY_PBTEEDIT_EDIT_CUT_PBIR_EDIT_EDIT_UNDO_PBTEDIT_EDIT_PDMANEDIT_EDIT_PDETEEDIT_FILE_CANCL_PBFEDIT_FILE_USEF_PBLEDIT_FILE_INCL_PBNFEDIT_FILE_SAVEAS_PBEDIT_FILE_ATTRIBUTE_PBNEDIT_FILE_ENTER_PBNEDIT_FILE_PDMNFEDIT_FILE_PDEY_EDIT_MENU_BARKEEDIT_WINDOWDIR_NOTE_ALL_REPLIES_TBDIR_NOTE_APPLY_PB_TDIR_NOTE_AUTHOR_TS_DIR_NOTE_AUTHOR_TBTDIR_NOTE_BEFORE_TDIDIR_NOTE_BEFORE_TBNDIR_NOTE_CANCL_PBNFDIR_NOTE_HELP_PBONFDIR_NOTE_KEYWORD_TFDIR_NOTE_KEYWORD_TBDIR_NOTE_NOTERANGE_LONFDIR_NOTE_NOTERANGE_TCONDIR_NOTE_NOTERANGE_TBBDIR_NOTE_OK_PBDDIR_NOTE_OPTIONS_LFDIR_NOTE_SEARCH_TNADIR_NOTE_SEARCH_TBBDIR_NOTE_SELECTION_LBDIR_NOTE_SINCE_TONFDIR_NOTE_SINCE_TBEYDIR_NOTE_TITLE_TKEYDIR_NOTE_TITLE_TBEYDIR_NOTE_UNSEEN_NOTE_TBDISPLY_ALL_MEMBERS_TBEYDISPLY_ONLY_MODERATORS_TBRDDISPLY_OPTIONS_RBEYDUMMY_WINDOWBLDWNOTES_UIDENTRY_ADD_CANCL_PBYENTRY_ADD_CLASS_TNFENTRY_ADD_CLASS_TBFENTRY_ADD_ENTRY_TNFENTRY_ADD_ENTRY_TBEENTRY_ADD_FILESPEC_LJEENTRY_ADD_FILESPEC_TJEENTRY_ADD_HELP_PBEENTRY_ADD_OBJECT_T_ENTRY_ADD_OBJECT_TBENTRY_ADD_OK_PBENTRY_DELETE_CANCL_PBR_ENTRY_DELETE_CLASS_TER_ENTRY_DELETE_CLASS_TBR_ENTRY_DELETE_ENTRY_L_BAENTRY_DELETE_ENTRY_T_PBENTRY_DELETE_HELP_PB_PBENTRY_DELETE_OK_PBFENTRY_MODIFY_APPLY_PBY_ENTRY_MODIFY_CANCL_PBTIENTRY_MODIFY_CLASS_TOTIENTRY_MODIFY_CLASS_TBPLENTRY_MODIFY_ENTRY_LFY_ENTRY_MODIFY_ENTRY_TMODENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TBFY_ENTRY_MODIFY_HELP_PBFY_ENTRY_MODIFY_NAME_TENTRY_MODIFY_NAME_TBPBENTRY_MODIFY_OBJECT_T_PENTRY_MODIFY_OBJECT_TBNENTRY_MODIFY_OK_PBNENTRY_MODIFY_SHOW_PBONFENTRY_UPDATE_ALL_TBENTRY_UPDATE_CANCL_PBIZENTRY_UPDATE_CLASS_TUSTENTRY_UPDATE_CLASS_TBT_ENTRY_UPDATE_ENTRY_TSS_ENTRY_UPDATE_ENTRY_TBDIENTRY_UPDATE_HELP_PBFILENTRY_UPDATE_OK_PBZFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PBMIZro|'<\H l߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pbhH LIL t8READ_NOTE_SETSEEN_PBconhf_p\ISO88onf_cNOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELPtfhf NOTENOTES$DRM_PUSHBUTTON_ACTIVATEuvEH tH "߀ ISO8859-1 Set Seen...H m߀i ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb$H h(Ih t8CONF_CONF_MODERATE_PBonhf_p\)ISO88ead_nNOTES$DRM_WIDGET_CREATE* X ,U Z hf NOTENOTES$DRM_HELPwfhf RNOTENOTES$DRM_PUSHBUTTON_ACTIVATE,CONF_ENABLE_MODERATOR_PB$LABELBREH n߀j ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_moderate_pbH !$߀ ISO8859-1 Conference$H E߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pdeOH TIT 0CONF_NOTE_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPxTEhfHENOTES$DRM_MENU_PULLINGyPUATCOREAD_NOTE_PDMABEL H 0I 0\READ_NOTE_PDM59;F L ZfdP<T  HREAD_NOTE_DELETE2_PBOTEREAD_NOTE_DELETE1_PBMAIN_SEPARATOR_SPREAD_NOTE_READNEW_NOTE_PBREAD_NOTE_READ_PDEMAIN_SEPARATOR_SPREAD_WORK_SELECT_CONF_PBONFREAD_WORK_KP7_SELECT_PBREAD_NOTE_MODIFY_PBREAD_NOTE_CREATE_PBhH HIH p4READ_NOTE_CREATE_PBhfX LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf  NOTES$DRM_HELPzOThfTEAD_NOE1_PBNOTES$DRM_PUSHBUTTON_ACTIVATEOT{_P REH )l߀% ISO8859-1Create New Note...H l ߀h ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pbH H IH p4READ_NOTE_MODIFY_PBhfnoX I reNOTES$DRM_WIDGET_CREATE* 8 (U Z hf  NOTES$DRM_HELP|OThfTEAD_NOE1_PBNOTES$DRM_PUSHBUTTON_ACTIVATEOT}_P#REH % ߀! ISO8859-1Show/Modify...H l ߀h ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pbH 4 I4 t8READ_WORK_KP7_SELECT_PBhf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* $   U hf;NOTELPNOTES$DRM_PUSHBUTTON_ACTIVATE~EPUATlH  ߀ ISO8859-1 Select...FH  ߀ ISO8859-1KP7H  0xFFB7:H @I <READ_WORK_SELECT_CONF_PBf  U dDRhfET;NOTES$DRM_PUSHBUTTON_ACTIVATELT88H  `0xFF60:߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_edit_pde1 main_entry_modify_pb ISO8859-1 main_entry_modify_dbSHOW_PB ro|(dH \I\ 4READ_NOTE_READ_PDEN@ <;F , *  W Z hfPU CTIVANOTES$DRM_HELPEhfTEBUTTOTENOTES$DRM_MENU_PULLING READ_NOTE_READ_PDMRAT$H (I( 4`READ_NOTE_READ_PDMN;F P ZfREAD_NOTE_READ_NOTEID_PBPREAD_NOTE_READ_LAST_NOTE_PBREAD_NOTE_READ_BACK_PDEREAD_NOTE_READ_NEXT_PDEREAD_NOTE_READ_UNSEEN_PBH lpIl x<READ_NOTE_READ_UNSEEN_PBhf`NOTES$DRM_WIDGET_CREATE* \ L <U Z _NhfPB OTE_R_NOTENOTES$DRM_HELPEADhfREEREAEAD_UNOTES$DRM_PUSHBUTTON_A)^{$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1";CTIVATE_NAT=ORGEH ߀ ISO8859-1UnseenBH ,߀ ISO8859-1 KP,CTH \߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_unseen_pbOH hIh 8READ_NOTE_READ_NEXT_PDE@ @;F 0 *  W Z hf _NNOTES$DRM_HELP_hfTEEADNOTES$DRM_MENU_PULLINGTE*ON%READ_NOTE_READ_NEXT_PDMUPH  8I  8dREAD_NOTE_READ_NEXT_PDM;F T ZfREAD_NOTE_READ_NEXT_T_PBOTEREAD_NOTE_READ_NEXT_R_PB_READ_NOTE_READ_NEXT_N_PBREAD_NOTE_READ_NEXT_P_PBLLIILH PIP x<READ_NOTE_READ_NEXT_P_PBhf` TNOTES$DRM_WIDGET_CREATE* @ 0U Z hfT_ AD_NONEXT_NOTES$DRM_HELPTPBhfAD_NEXTINGNOTES$DRM_PUSHBUTTON_ACTIVATEONF_NH ߀ ISO8859-1Page_TEH 8 ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_p_pb_TH Ph IP x<READ_NOTE_READ_NEXT_N_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* @ 0U Z hfno xt_p_NEXT_NOTES$DRM_HELPTPBhfAD_NEXTINGNOTES$DRM_PUSHBUTTON_ACTIVATEON_NN_H @ ߀ ISO8859-1NoteILEH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_n_pbY_H l Il x<READ_NOTE_READ_NEXT_R_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfxt NEXTRM_HENOTES$DRM_HELPhf_NINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEEXORINH  ߀ ISO8859-1ReplyPDH ,߀ ISO8859-1 KP3NTH \߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_r_pbNTRY_UPDATE2_PBUPMAIN_ENTRY_UPDATE_DB_UPMAIN_EXPAND_ALL_PBRMAIN_EXPAND_PBBMAIN_FILE_CREATE_DBMAIN_FILE_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|)$H lIl x<READ_NOTE_READ_NEXT_T_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfxt NEXTRM_HENOTES$DRM_HELPhf_NINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEEXSORH ߀ ISO8859-1TopicH ߀ ISO8859-1 KP2 cH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_t_pbM_H ߀ ISO8859-1NextH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pdeF_H hIh 8READ_NOTE_READ_BACK_PDE@ @;F 0 *  W Z hf 59-1ote_rNOTES$DRM_HELPRhfTENOTES$DRM_MENU_PULLINGTEON%READ_NOTE_READ_BACK_PDMPH  I  8dREAD_NOTE_READ_BACK_PDM;F T ZfREAD_NOTE_READ_BACK_T_PBOTEREAD_NOTE_READ_BACK_R_PBRREAD_NOTE_READ_BACK_N_PBREAD_NOTE_READ_BACK_P_PBLLIH PIP x<READ_NOTE_READ_BACK_P_PBhf` TNOTES$DRM_WIDGET_CREATE* @ 0U Z hfK_ AD_NOBACK_NOTES$DRM_HELPTPBhfAD_BACKINGNOTES$DRM_PUSHBUTTON_ACTIVATEONF_NH 0߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_p_pbH PIP x<READ_NOTE_READ_BACK_N_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* @ 0U Z hfno ck_p_BACK_NOTES$DRM_HELPTPBhfAD_BACKINGNOTES$DRM_PUSHBUTTON_ACTIVATEON_NH l߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_n_pbM_H l Il x<READ_NOTE_READ_BACK_R_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACORF_H  ߀ ISO8859-1 KP1NOH ( ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_r_pbH lX Il x<READ_NOTE_READ_BACK_T_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACSORhH 0 ߀ ISO8859-1 KP5LPH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|* H ߀ ISO8859-1BackXH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pdeH l0Il x<READ_NOTE_READ_LAST_NOTE_PBhfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACOR H LH %\߀! ISO8859-1Last Read Note H p߀ ISO8859-1 KP-H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_last_note_pbY_H lIl x<READ_NOTE_READ_NOTEID_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE \* L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACORMOH ߀ ISO8859-1Ctrl/NOH iH !8߀ ISO8859-1 Note-id...OH L߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_n*Fә'$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1p"Lote_read_pde ISO8859-1 read_note_read_noteid_pbYH RH ,߀ ISO8859-1Read_UPH k@߀g ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde_TH PpIP x<READ_NOTE_READNEW_NOTE_PBnohf`859-1note_NOTES$DRM_WIDGET_CREATE @* 0U Z hf ckBACKNOTES$DRM_HELPEhf_BINGNOTES$DRM_PUSHBUTTON_ACTIVATEONILH )߀% ISO8859-1Read in New WindowIH rT߀n ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_readnew_note_pbH LIL t8READ_NOTE_DELETE1_PBreahf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* < ,U Z hff cBNOTES$DRM_HELPEhff _INOTES$DRM_PUSHBUTTON_ACTIVATEATLH  ߀ ISO8859-1DeleteBH mt ߀i ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete1_pbLH L IL t8READ_NOTE_DELETE2_PBreahf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* < ,U Z hff cBNOTES$DRM_HELPEhff _INOTES$DRM_PUSHBUTTON_ACTIVATEATKH $ lH  ߀ ISO8859-1 Delete...TRH m ߀i ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pbRH  ߀ ISO8859-1NotesTRH EL ߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_note_pdeH $| ߀  ISO8859-1 conf_menu_barMODIFY_ENTRY_LBJEENTRY_MODIFY_ENTRY_TBJEENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TBT_DENTRY_MODIFY_HELP_PBSPLENTRY_MODIFY_NAME_TENTRY_MODIFY_NAME_TBT_DENTRY_MODIFY_OBJECT_T_DENTRY_MODIFY_OBJECT_TBDENTRY_MODIFY_OK_PBEENTRY_MODIFY_SHOW_PBBJEENTRY_UPDATE_ALL_TBENTRY_UPDATE_CANCL_PBTENTRY_UPDATE_CLASS_TENTENTRY_UPDATE_CLASS_TBNTENTRY_UPDATE_ENTRY_TLENTRY_UPDATE_ENTRY_TBENTRY_UPDATE_HELP_PB ENTRY_UPDATE_OK_PBFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PB_CRro|+ $H I l0CONF_SVN_WINDOWhfonT59-1NOTES$DRM_WIDGET_CREATE;F  xlTD, M N Q HS P R O PhftELECTNOTES$DW_SVN_ENTRY_SELECTEDhfBMODIFD_NOTNOTES$DW_SVN_HELPDIhfY_ENTE_CANNOTES$DW_SVN_SEL_CONFIRMEDhfDE,_TTELETENOTES$DW_SVN_SEL_CONFIRMEDThfLlTE_ENRY_MONOTES$DW_SVN_GET_ENTRYOhfANTRY_MOW_PBNOTES$DW_SVN_DETACHED_PhfTRK_PBODIFYNOTES$DW_SVN_ATTACHEDFYtreeStyle_expectHighlightingEtreeArcWidthIFYtreePerpendicularLinesOtreeIndexAllPPLtreeCenteredComponentsTtreeStyleFYforceSeqGetEntryIFYuseScrollButtons_MOexpectHighlightingRdisplayModenM_H "߀ ISO8859-1 conf_windowH I t8CONF_CONF_DIRECTORY_DBnhf\fES$DRNOTES$DRM_WIDGET_CREATE ;F |H  \ @ 0IZ hf  NOTES$DRM_HELPDIR_NOTE_OK_PBtDIR_NOTE_CANCL_PBS$DWECDBpMX@D(DTAVRD_tD`OLf8  TEfDIR_NOTE_HELP_PBCHEDIR_NOTE_CANCL_PBDIR_NOTE_APPLY_PBFYDIR_NOTE_OK_PBTDIR_NOTE_ALL_REPLIES_TBDIR_NOTE_OPTIONS_LeDIR_NOTE_UNSEEN_NOTE_TBDIR_NOTE_SEARCH_TdeDIR_NOTE_SEARCH_TBdDIR_NOTE_TITLE_TtylDIR_NOTE_TITLE_TBryDIR_NOTE_KEYWORD_TsDIR_NOTE_KEYWORD_TBDIR_NOTE_SINCE_TDIR_NOTE_SINCE_TBylDIR_NOTE_BEFORE_TryDIR_NOTE_BEFORE_TBsDIR_NOTE_AUTHOR_TtiDIR_NOTE_AUTHOR_TBDIR_NOTE_SELECTION_LTORDIR_NOTE_NOTERANGE_TNDODIR_NOTE_NOTERANGE_LMADIR_NOTE_NOTERANGE_TBNOH I t8DIR_NOTE_NOTERANGE_TBnhf\ES$DRNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf ZhfNOTES$DRM_HELP hfDR4:NOTES$DRM_VALUE_CHANGEDt"DIR_NOTE_SELECTION_LWH !߀ ISO8859-1 Note-range_H H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_noterange_tbEXH  | I 8DIR_NOTE_NOTERANGE_L c A!A Z |hfco recto NOTES$DRM_HELP__tf85H T ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_noterange_tb85H d8 Id t8DIR_NOTE_NOTERANGE_T chfnf\ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf hfRM_HENOTES$DRM_HELP4"DIR_NOTE_NOTERANGE_LRM_VA"DIR_NOTE_NOTERANGE_L3H   I 8DIR_NOTE_SELECTION_L c A!C  Z |hf BNOTES$DRM_HELP@"DIR_NOTE_NOTERANGE_TINH *߀& ISO8859-1Selection Criteria:E_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|,xLH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_selection_lH |I| p4DIR_NOTE_AUTHOR_TB1hff_X -1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIR_NRANGENOTES$DRM_HELPEhf0;OTE_NNOTES$DRM_VALUE_CHANGEDER"DIR_NOTE_SELECTION_LN_LWO8H ߀ ISO8859-1Author1H h߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_author_tb H XIX p4DIR_NOTE_AUTHOR_T-1hff_X -1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0 DIR_NOTE_AUTHOR_TB$DR DIR_NOTE_AUTHOR_TBERH l߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_author_tbH xIx p4DIR_NOTE_BEFORE_TB1hff_X -1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0<DAUTHONOTES$DRM_VALUE_CHANGEDERDIR_NOTE_AUTHOR_T_LNH ߀ ISO8859-1BeforeAH 8߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb +ɆU$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1v"]ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_before_tbH XhIX p4DIR_NOTE_BEFORE_T-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0 DIR_NOTE_BEFORE_TB$DR DIR_NOTE_BEFORE_TBERIVH <߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_before_tbH x Ix p4DIR_NOTE_SINCE_TB-1hff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0=DBEFORNOTES$DRM_VALUE_CHANGEDERDIR_NOTE_BEFORE_T_LNH | ߀ ISO8859-1SinceH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_since_tb88H X8 IX p4DIR_NOTE_SINCE_T9-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0DIR_NOTE_SINCE_TBS$DRDIR_NOTE_SINCE_TBERIVH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_since_tbread_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|-x$H xIx p4DIR_NOTE_KEYWORD_TBhff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0>DSINCENOTES$DRM_VALUE_CHANGEDERDIR_NOTE_SINCE_T_LNH ߀ ISO8859-1KeywordH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_keyword_tbH `I` p4DIR_NOTE_KEYWORD_T1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hfDI RANGRM_HENOTES$DRM_HELP0!DIR_NOTE_KEYWORD_TBDRM_VA!DIR_NOTE_KEYWORD_TBH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_keyword_tbH xIx p4DIR_NOTE_TITLE_TB-1hff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0?DKEYWONOTES$DRM_VALUE_CHANGED_T DIR_NOTE_KEYWORD_TLNINH ߀ ISO8859-1TitleCAH d߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_title_tb_BH XIX p4DIR_NOTE_TITLE_T9-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0DIR_NOTE_TITLE_TBS$DRDIR_NOTE_TITLE_TB_TPDH h߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_title_tbOPH xIx p4DIR_NOTE_SEARCH_TB1hff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0@DTITLENOTES$DRM_VALUE_CHANGED_TDIR_NOTE_TITLE_TTLNELH  ߀ ISO8859-1TextMEH 4 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_search_tbRH Xd IX p4DIR_NOTE_SEARCH_T-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0 DIR_NOTE_SEARCH_TB$DR DIR_NOTE_SEARCH_TB_TJEH 8 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_search_tbEH @ I@ t8DIR_NOTE_UNSEEN_NOTE_TBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf  NOTES$DRM_HELPRDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|.4 H #߀ ISO8859-1 Unseen NotesH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_unseen_note_tbH  8I 4DIR_NOTE_OPTIONS_L1 A!C B Z cohff_ db8859-NOTES$DRM_HELPs %DIR_NOTE_UNSEEN_NOTE_TBHELPRIVH )߀% ISO8859-1Selection Options: H $߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_options_lH @`I@ t8DIR_NOTE_ALL_REPLIES_TBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf DUNSEENOTES$DRM_HELPR DIR_NOTE_OPTIONS_LH &4߀" ISO8859-1Include RepliesH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_all_replies_tbH tIt p4DIR_NOTE_APPLY_PB-1hff_X-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z eshf DNOTES$DRM_HELPEhf(VNOTES$DRM_PUSHBUTTON_ACTIVATENO_TDIR_NOTE_OK_PBTTH ߀ ISO8859-1 Apply H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_apply_pbTTH PI 4DIR_NOTE_HELP_PB9-1!" $  U xhf1 f_dirbNOTES$DRM_HELP _plDIR_NOTE_CANCL_PBS$DRLH x$Ix p4DIR_NOTE_CANCL_PB-1hfX"NOTES$DRM_WIDGET_CREATE!" $ X HU Z ,RR$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1;z"nhf DCANCLNOTES$DRM_HELPEhf(UNOTES$DRM_PUSHBUTTON_ACTIVATENO_TDIR_NOTE_APPLY_PBLNH $ ߀ ISO8859-1 Cancel O88H  ߀ ISO8859-1 Cancel_pbdeH h Ih l0DIR_NOTE_OK_PBPhffT"NOTES$DRM_WIDGET_CREATE !" !#" XU Z hfD CLNOTELPENOTES$DRM_HELPUhf8TNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_TNOH  ߀ ISO8859-1 OK ..H  ߀ ISO8859-1OK_pb_mH ) ߀% ISO8859-1Directory of Notes H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db$| ߀  ISO8859-1 conf_menu_barMODIFY_ENTRY_LBJEENTRY_MODIFY_ENTRY_TBJEENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TBT_DENTRY_MODIFY_HELP_PBSPLENTRY_MODIFY_NAME_TENTRY_MODIFY_NAME_TBT_DENTRY_MODIFY_OBJECT_T_DENTRY_MODIFY_OBJECT_TBDENTRY_MODIFY_OK_PBEENTRY_MODIFY_SHOW_PBBJEENTRY_UPDATE_ALL_TBENTRY_UPDATE_CANCL_PBTENTRY_UPDATE_CLASS_TENTENTRY_UPDATE_CLASS_TBNTENTRY_UPDATE_ENTRY_TLENTRY_UPDATE_ENTRY_TBENTRY_UPDATE_HELP_PB ENTRY_UPDATE_OK_PBFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PB_CRro|/T(H XIX p4CONF_CONF_MODIFY_DBhff_Xg-1 NOTES$DRM_WIDGET_CREATE ;F H  ` < ,IZ ThfE  DRM_HNOTES$DRM_HELPTTE"CONF_MODIFY_APPLY_PB"CONF_MODIFY_CANCL_PB B@,pX@,CONF_MODIFY_HELP_PBCONF_MODIFY_CANCL_PBCONF_MODIFY_APPLY_PBTCONF_MODIFY_REPLY_ONLY_TBCONF_MODIFY_RESTR_KEY_TBCONF_MODIFY_RESTR_MEM_TBOTECONF_MODIFY_WRITE_ALL_TBY_PCONF_MODIFY_CONF_ATTRIB_LTECONF_MODIFY_NOTICE_TOTECONF_MODIFY_NOTICE_TBNSCONF_MODIFY_TITLE_TCONF_MODIFY_TITLE_TBSEACeH \I\ t8CONF_MODIFY_TITLE_TBfhfX\ NOTENOTES$DRM_WIDGET_CREATE<A!"A L` Z hfI  ENOTES$DRM_HELPTEhfHE4XNOTES$DRM_VALUE_CHANGEDH l߀ ISO8859-1TitleZH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_title_tbH ` I` p4CONF_MODIFY_TITLE_Thff_X -1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z Ihf ES$DRNOTES$DRM_HELPHE"CONF_MODIFY_TITLE_TBES$DR"CONF_MODIFY_TITLE_TBNOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_title_tbBH PI t8CONF_MODIFY_NOTICE_TB chfnf\! ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfI  NOTES$DRM_HELPRhfHE4YCONF_ITLE_NOTES$DRM_VALUE_CHANGED!CONF_MODIFY_TITLE_TL_PBhH  ߀ ISO8859-1NoticeH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_notice_tbH d Id t8CONF_MODIFY_NOTICE_T chfnf\" ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELP4#CONF_MODIFY_NOTICE_TBM_VA#CONF_MODIFY_NOTICE_TBH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_notice_tbH  , I <CONF_MODIFY_CONF_ATTRIB_Lf_ A!BC  Z odhf 859-1modifNOTES$DRM_HELP"CONF_MODIFY_NOTICE_TES$DRH - ߀) ISO8859-1Conference Attributes:TH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_conf_attrib_lBNOTES$DRM_HELP@"DIR_NOTE_NOTERANGE_TINH *߀& ISO8859-1Selection Criteria:E_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|0<|tH DID x<CONF_MODIFY_WRITE_ALL_TBnf_hfde`#O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C  Z hf CONOTES$DRM_HELPE4'CONF_MODIFY_CONF_ATTRIB_L#ATH #߀ ISO8859-1 Allow Writes H X߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_write_all_tbLH LIL x<CONF_MODIFY_RESTR_MEM_TBnf_hfde`%O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf ES$DRNOTES$DRM_HELP&CONF_MODIFY_WRITE_ALL_TBCOH 'd߀# ISO8859-1Restrict MembersH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_restr_mem_tbH DID x<CONF_MODIFY_RESTR_KEY_TBnf_hfde`&O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C  Z Zhf NOTES$DRM_HELPR&CONF_MODIFY_RESTR_MEM_TB_ALL_ATH 0߀, ISO8859-1Restrict Keyword CreationHH ,߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_restr_key_tbH LpIL x<CONF_MODIFY_REPLY_ONLY_TBf_hfde`$O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf ES$DRNOTES$DRM_HELP&CONF_MODIFY_RESTR_KEY_TBCO1H .D߀* ISO8859-1Restrict Topic CreationH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_reply_only_tbH I 4CONF_MODIFY_HELP_PB!" $  U xhf c odify ISNOTES$DRM_HELPmlyl "CONF_MODIFY_CANCL_PBECEH  I t8CONF_MODIFY_CANCL_PBhf\( $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf CONF_ANCL_NOTES$DRM_HELPEhf,[-><$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"NOTES$DRM_PUSHBUTTON_ACTIVATECOCE"CONF_MODIFY_APPLY_PB_PBH  ߀ ISO8859-1 Cancel conH  P ߀ ISO8859-1 Cancel_pbpbH p Ip t8CONF_MODIFY_APPLY_PBhf\' $NOTES$DRM_WIDGET_CREATE !" !#" `U Z COhf TES$DENOTES$DRM_HELPhf@ZTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEIF鮈H  ߀ ISO8859-1 Apply H <߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_apply_pboH -l߀) ISO8859-1Show/Modify Conferenceead_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|1PpH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_dbH I p4CONF_KEYWORD_ADD_DBhff_X]-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ hfD  NOTELPNOTES$DRM_HELPZUKEYWORD_ADD_OK_PBIVAT"KEYWORD_ADD_CANCL_PB_PBhP<$ KEYWORD_ADD_HELP_PBKEYWORD_ADD_CANCL_PBKEYWORD_ADD_APPLY_PBELPKEYWORD_ADD_OK_PBNCKEYWORD_ADD_NOTEID_TPPLKEYWORD_ADD_NOTEID_LEPLKEYWORD_ADD_KEYWORD_TY_KEYWORD_ADD_KEYWORD_LODZH  I 8KEYWORD_ADD_KEYWORD_Lf A!A Z |hfF NOTES$DRM_HELPonH l߀ ISO8859-1KeywordH P߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_keyword_l H I t8KEYWORD_ADD_KEYWORD_T chfnf\y ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 9-1_add_NOTES$DRM_HELPRhfZHAKENOTES$DRM_VALUE_CHANGED#KEYWORD_ADD_KEYWORD_L#KEYWORD_ADD_KEYWORD_LleH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_keyword_lH  `I 8KEYWORD_ADD_NOTEID_L c A!C  Z |hfnf isply ISNOTES$DRM_HELPk#KEYWORD_ADD_KEYWORD_T859-85H ߀ ISO8859-1Note-idH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_noteid_lH  I t8KEYWORD_ADD_NOTEID_T chfnf\z ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 9-1_add_NOTES$DRM_HELPRhfZHBKENOTES$DRM_VALUE_CHANGED"KEYWORD_ADD_NOTEID_L"KEYWORD_ADD_NOTEID_LH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_noteid_lH | I| t8KEYWORD_ADD_APPLY_PB chfnf\| ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 keywobNOTES$DRM_HELP tehfE,^ZNOTES$DRM_PUSHBUTTON_ACTIVATETEANKEYWORD_ADD_OK_PBTEIDH  ߀ ISO8859-1 Apply DRM_HELPRDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|2 H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_apply_pbES$H I 4KEYWORD_ADD_HELP_PB!" $  U xhf rd_diNOTES$DRM_HELPo_pl59"KEYWORD_ADD_CANCL_PB ISO8H $I t8KEYWORD_ADD_CANCL_PBhf\} $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 KEYWOANCL_NOTES$DRM_HELP plhfE,_ZNOTES$DRM_PUSHBUTTON_ACTIVATETEAN"KEYWORD_ADD_APPLY_PBD_LH (߀ ISO8859-1 Cancel EATH  ߀ ISO8859-1 Cancel_pbAH lIl p4KEYWORD_ADD_OK_PBPBhffX{}NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfO L_NOTELP NOTES$DRM_HELPl_hf<]ZNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEANORcoH $߀ ISO8859-1 OK _tbH ߀ ISO8859-1OK_pbH "߀ ISO8859-1 Add KeywordH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_dbONFH <I t8CONF_KEYWORD_CREATE_DBchfnf\^ ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ ThfE DRM_HNOTES$DRM_HELPTTE"KEYWORD_CREATE_OK_PB%KEYWORD_CREATE_CANCL_PBNOIDhL4KEYWORD_CREATE_HELP_PB_KEYWORD_CREATE_CANCL_PBKEYWORD_CREATE_APPLY_PBKEYWORD_CREATE_OK_PBK_PKEYWORD_CREATE_KEYWORD_TPPLKEYWORD_CREATE_KEYWORD_LEYW IH  8I <KEYWORD_CREATE_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELPH H  ߀ ISO8859-1KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_db ISO8859-1 keyword_create_keyword_lFH  I x<KEYWORD_CREATE_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf 859-1rd_crNOTES$DRM_HELPhfTLCTKENOTES$DRM_VALUE_CHANGED&KEYWORD_CREATE_KEYWORD_L&KEYWORD_CREATE_KEYWORD_LH  ߀.Gˬ$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1 " ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_db ISO8859-1 keyword_create_keyword_l-1 conf_modify_conf_attrib_lBNOTES$DRM_HELP@"DIR_NOTE_NOTERANGE_TINH *߀& ISO8859-1Selection Criteria:E_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|3 4H I t8KEYWORD_CREATE_APPLY_PBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hfO8 nf_keeate_NOTES$DRM_HELP5crhfey,bhfNOTES$DRM_PUSHBUTTON_ACTIVATEKEE_"KEYWORD_CREATE_OK_PBE_KEYH H ߀ ISO8859-1 Apply H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_db ISO8859-1 keyword_create_apply_pbH I 8KEYWORD_CREATE_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPkpbl9-%KEYWORD_CREATE_CANCL_PBISO885H I t8KEYWORD_CREATE_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf KREATENOTES$DRM_HELP5crhfpp,chfNOTES$DRM_PUSHBUTTON_ACTIVATEKEE_%KEYWORD_CREATE_APPLY_PBEYWORD H ߀ ISO8859-1 Cancel H  ߀ ISO8859-1 Cancel_pbH pIp t8KEYWORD_CREATE_OK_PBPBhf\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$D5NOTES$DRM_HELPhf@aTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATECRIFH ߀ ISO8859-1 OK f_cH ߀ ISO8859-1OK_pbH %߀! ISO8859-1Create KeywordH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_dbH I tl8CONF_KEYWORD_DELETE_DBchfnf\_ ISO confNOTES$DRM_WIDGET_CREATE ;F \H  4 $,IZ hfe_ ES$DRNOTES$DRM_HELPD%KEYWORD_DELETE_CANCL_PBCTIVAT CRPRpOXE@(KEYWORD_DELETE_HELP_PBAKEYWORD_DELETE_CANCL_PBKEYWORD_DELETE_APPLY_PBKEYWORD_DELETE_OK_PBREAKEYWORD_DELETE_ALL_TBEAKEYWORD_DELETE_NOTEID_TKEYWORD_DELETE_NOTEID_LKEYWORD_DELETE_KEYWORD_TDD_KEYWORD_DELETE_KEYWORD_L_TBH   I <KEYWORD_DELETE_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELP H  ߀ ISO8859-1KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_keyword_lIF鮈H  ߀ ISO8859-1 Apply H <߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_apply_pboH -l߀) ISO8859-1Show/Modify Conferenceead_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|4@H I x<KEYWORD_DELETE_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf 859-1rd_deNOTES$DRM_HELPhfLDKELETENOTES$DRM_VALUE_CHANGED&KEYWORD_DELETE_KEYWORD_L&KEYWORD_DELETE_KEYWORD_LNOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_keyword_lEH  I 8KEYWORD_DELETE_NOTEID_L A!C  Z |hfnf isply ISNOTES$DRM_HELPkpb9-&KEYWORD_DELETE_KEYWORD_TSO885H ߀ ISO8859-1Note-idH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_noteid_l88H l0Il t8KEYWORD_DELETE_NOTEID_Thfnf\ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z nfhfrd 59-1NOTES$DRM_HELPe%KEYWORD_DELETE_NOTEID_LK%KEYWORD_DELETE_NOTEID_LhH \߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_noteid_ldbH HIH t8KEYWORD_DELETE_ALL_TB chfnf\ ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf rd_deNOTES$DRM_HELPeot %KEYWORD_DELETE_NOTEID_T%H 8߀4 ISO8859-1!Delete keyword and all references-1H d ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_all_tbH p Ip t8KEYWORD_DELETE_OK_PB chfnf\ ISO confNOTES$DRM_WIDGET_CREATE !" !#" `U Z nfhfrd 59-1NOTES$DRM_HELPe hf@eORD_DTEID_NOTES$DRM_PUSHBUTTON_ACTIVATEOT KEH  ߀ ISO8859-1 OK OTEH \ ߀ ISO8859-1OK_pb59H  I t8KEYWORD_DELETE_APPLY_PBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z Uhf nfhf NOTES$DRM_HELP5 HEhf,fhfeNOTES$DRM_PUSHBUTTON_ACTIVATEPU AT"KEYWORD_DELETE_OK_PBE_KEYH  ߀ ISO8859-1 Apply H T߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB /g$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"ro|5H I 8KEYWORD_DELETE_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPkpbl9-%KEYWORD_DELETE_CANCL_PBISO885keH I t8KEYWORD_DELETE_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf KELETENOTES$DRM_HELP5dehfpp,ghfeNOTES$DRM_PUSHBUTTON_ACTIVATEPUAT%KEYWORD_DELETE_APPLY_PBEYWORDDGH  ߀ ISO8859-1 Cancel H  ߀ ISO8859-1 Cancel_pb H %߀! ISO8859-1Delete KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_dbH 8DI8 t8CONF_KEYWORD_DISPLY_DBchfnf\` ISO confNOTES$DRM_WIDGET_CREATE ;F H  h @ 0IZ hfHE ppNOTES$DRM_HELPTEON%KEYWORD_DISPLY_APPLY_PBKE%KEYWORD_DISPLY_CANCL_PB&DE TERDPDtC\DDL,KEYWORD_DISPLY_INFO_UDWKEYWORD_DISPLY_HELP_PBWKEYWORD_DISPLY_CANCL_PBCONF_KEYWORD_MODIFY_PBWCONF_KEYWORD_DELETE_PB_CONF_KEYWORD_CREATE_PBLCONF_KEYWORD_ADD_PBKEYWORD_DISPLY_APPLY_PBKEYWORD_DISPLY_INFO_LNFKEYWORD_DISPLY_KEYWORD_TMODKEYWORD_DISPLY_KEYWORD_LFY_H  DI <KEYWORD_DISPLY_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELPH ߀ ISO8859-1KeywordH x߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_keyword_lEH pIp x<KEYWORD_DISPLY_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf fHNOTES$DRM_HELPp&KEYWORD_DISPLY_KEYWORD_L&KEYWORD_DISPLY_KEYWORD_LH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_keyword_lcH    I  8KEYWORD_DISPLY_INFO_L c A!C B"  Z hf 859-1rd_diNOTES$DRM_HELP&KEYWORD_DISPLY_KEYWORD_TRM_HE H + ߀' ISO8859-1Keyword Information:ELPH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_info_lH < I p4CONF_KEYWORD_ADD_PBhff_Xx-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z lhf NOTES$DRM_HELPRRDhfHE(\NOTES$DRM_PUSHBUTTON_ACTIVATEOR%KEYWORD_DISPLY_APPLY_PBDISPLY߀H ߀ ISO8859-1Add...E_PBMAIN_FILE_DIRECTORY_DBCro|6H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pbH I t8CONF_KEYWORD_CREATE_PBchfnf\~ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,`NOTENOTES$DRM_PUSHBUTTON_ACTIVATE!CONF_KEYWORD_ADD_PBDISPLYplH  ߀ ISO8859-1 Create...H h߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pbH I t8CONF_KEYWORD_DELETE_PBchfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTENOTES$DRM_HELPfhf(,dNOTENOTES$DRM_PUSHBUTTON_ACTIVATE$CONF_KEYWORD_CREATE_PBPLYH  t߀ ISO8859-1 Delete...NOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pbpH <I t8CONF_KEYWORD_MODIFY_PBchfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTENOTES$DRM_HELPfhf(,kNOTENOTES$DRM_PUSHBUTTON_ACTIVATE$CONF_KEYWORD_DELETE_PBPLY H  ߀ ISO8859-1 Modify...OKH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pbf_kH I 8KEYWORD_DISPLY_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPkpbl%KEYWORD_DISPLY_CANCL_PBHELPHH 8I8 t8KEYWORD_DISPLY_INFO_UDchf\"NOTES$DRM_WIDGET_CREATE;F ( A!" 34 C ` 8M N Q S DP R O hfDE TNOTES$DW_SVN_ENTRY_SELECTEDhfNOTES$DW_SVN_HELPhfC(DNOTES$DW_SVN_SEL_CONFIRMEDWhfD_hP_PB_DISPNOTES$DW_SVN_SEL_CONFIRMEDDhfWRD_DE_CONFNOTES$DW_SVN_GET_ENTRYFhfRDYWORDAPPLYNOTES$DW_SVN_DETACHEDO_hfYW _KEYWDKEYWNOTES$DW_SVN_ATTACHEDY_%KEYWORD_DISPLY_APPLY_PBH_TBd#KEYWORD_DISPLY_INFO_LLE_TtreeArcWidthKEYtreePerpendicularLinesDtreeIndexAllSINtreeCenteredComponentsTtreeStyleTEforceSeqGetEntryOTEuseScrollButtonsOTEexpectHighlightingEdisplayModeTI H  I t8KEYWORD_DISPLY_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPhf ,j4NOTES$DRM_PUSHBUTTON_ACTIVATE $CONF_KEYWORD_MODIFY_PBd_H  ߀ ISO8859-1 Cancel  ISO8859-1Add...ro|7 @H  ߀ ISO8859-1 Cancel_pbKEH pIp t8KEYWORD_DISPLY_APPLY_PBhf\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELP!hf@iTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE"WO_KH 4߀ ISO8859-1 Apply H 0;d$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1cI"߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_apply_pbetH '߀# ISO8859-1Display KeywordsH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_dbOH I t8CONF_KEYWORD_MODIFY_DBchfnf\a ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ TEhf TES$DNOTES$DRM_HELP#TE$ON"KEYWORD_MODIFY_OK_PB%KEYWORD_MODIFY_CANCL_PBDETN|DdL4VKEYWORD_MODIFY_HELP_PBKEYWORD_MODIFY_CANCL_PBKEYWORD_MODIFY_APPLY_PBKEYWORD_MODIFY_OK_PB_KEYWORD_MODIFY_NEWKEY_TKEYWORD_MODIFY_NEWKEY_LKEYWORD_MODIFY_KEYWORD_T$DWKEYWORD_MODIFY_KEYWORD_LH  I <KEYWORD_MODIFY_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELP%&coH ߀ ISO8859-1KeywordH p߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1 keyword_modify_keyword_lH I x<KEYWORD_MODIFY_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf 859-1rd_moNOTES$DRM_HELP'hfTELE$OKENOTES$DRM_VALUE_CHANGED&KEYWORD_MODIFY_KEYWORD_L&KEYWORD_MODIFY_KEYWORD_LT1H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1 keyword_modify_keyword_lH   I 8KEYWORD_MODIFY_NEWKEY_L A!C  Z |hfnf isply ISNOTES$DRM_HELPk(pb)9-&KEYWORD_MODIFY_KEYWORD_TSO885H " ߀ ISO8859-1 New KeywordH + ߀% ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1  ISO8859-1keyword_modify_newkey_lRD_DELETE_OK_PBE_KEYH  ߀ ISO8859-1 Apply H T߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|8H I t8KEYWORD_MODIFY_NEWKEY_Thfnf\ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hfy_ ISO88NOTES$DRM_HELPy*wkhfHFENOTES$DRM_VALUE_CHANGED%KEYWORD_MODIFY_NEWKEY_LRD_L%KEYWORD_MODIFY_NEWKEY_LRD_LH +߀% ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1  ISO8859-1keyword_modify_newkey_lcelH I t8KEYWORD_MODIFY_APPLY_PBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hfO8 nf_kedify_NOTES$DRM_HELP5+IShf1,modifylNOTES$DRM_PUSHBUTTON_ACTIVATETE,AN"KEYWORD_MODIFY_OK_PBWKEY_H ߀ ISO8859-1 Apply H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1 keyword_modify_apply_pbH I 8KEYWORD_MODIFY_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPk#pbl9-%KEYWORD_MODIFY_CANCL_PBISO885_KH I t8KEYWORD_MODIFY_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf KODIFYNOTES$DRM_HELP5-mohfpp,nodifylNOTES$DRM_PUSHBUTTON_ACTIVATETE.AN%KEYWORD_MODIFY_APPLY_PBY_LRD88H ߀ ISO8859-1 Cancel 859H  ߀ ISO8859-1 Cancel_pbH pIp t8KEYWORD_MODIFY_OK_PBPBhf\"NOTES$DRM_WIDGET_CREATE !" !# " `U Z hf TES$D5NOTES$DRM_HELP/odhf@lTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE0MOH  ߀ ISO8859-1 OK 鮈H  ߀ ISO8859-1OK_pbYWH % ߀! ISO8859-1Modify KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_dbFH  I p4CONF_MARKER_ADD_DB1hff_XZ-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ y_hfD  NOTELPNOTES$DRM_HELPd1l2UMARKER_ADD_OK_PBTIVAT!MARKER_ADD_CANCL_PB_PBY_KEMYpT\NHD4  MARKER_ADD_HELP_PB_MARKER_ADD_CANCL_PBMARKER_ADD_APPLY_PBMARKER_ADD_OK_PBPLYMARKER_ADD_NOTEID_TMARKER_ADD_NOTEID_LMARKER_ADD_MARKER_TMARKER_ADD_MARKER_LH   I 4MARKER_ADD_MARKER_L A!A Z xhf HNOTES$DRM_HELP3<4H ߀ ISO8859-1MarkerN_FILE_DIRECTORY_DBCro|9H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_marker_lH I p4MARKER_ADD_MARKER_Thff_X#-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C $ \` Z hf 9-1add_mNOTES$DRM_HELPE5hfDGNOTES$DRM_VALUE_CHANGED!MARKER_ADD_MARKER_L_PBY_!MARKER_ADD_MARKER_L߀H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_marker_l14 $ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"H  I 4MARKER_ADD_NOTEID_L A!C  Z xhf c _disp NOTES$DRM_HELPf671!MARKER_ADD_MARKER_TO8859-H ߀ ISO8859-1Note-idH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_noteid_lH $I p4MARKER_ADD_NOTEID_Thff_X$-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C $ \` Z hf 9-1add_nNOTES$DRM_HELPE8hfDHNOTES$DRM_VALUE_CHANGED!MARKER_ADD_NOTEID_L_PBY_!MARKER_ADD_NOTEID_LH  @߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_noteid_lH xIx p4MARKER_ADD_APPLY_PBhff_X&-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf85 _markbNOTES$DRM_HELP 9eihfHE(qNOTES$DRM_PUSHBUTTON_ACTIVATETE:ANMARKER_ADD_OK_PBTEID_H  ߀ ISO8859-1 Apply H   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_apply_pbH  I 4MARKER_ADD_HELP_PB1!" $  U xhf c _disp NOTES$DRM_HELPf1l1!MARKER_ADD_CANCL_PBO8859--1H | I| p4MARKER_ADD_CANCL_PBhfX'"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf MD_CANNOTES$DRM_HELP ;lyhfHE(rNOTES$DRM_PUSHBUTTON_ACTIVATETE<AN!MARKER_ADD_APPLY_PBD_L_PlyH  ߀ ISO8859-1 Cancel menH  ߀ ISO8859-1 Cancel_pb859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|:0XH lIl p4MARKER_ADD_OK_PBPBhfX%"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hf TES$D NOTES$DRM_HELP=hf<pTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE>DD H ߀ ISO8859-1 OK 8H ߀ ISO8859-1OK_pbH !߀ ISO8859-1 Add MarkerH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db"H DID th8CONF_MARKER_DELETE_DB chfnf\[ ISO confNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hfTE  RM_HENOTES$DRM_HELP?<@$MARKER_DELETE_CANCL_PBVATDD_,YMOMARKER_DELETE_HELP_PBMARKER_DELETE_CANCL_PBMARKER_DELETE_APPLY_PBAMARKER_DELETE_OK_PBMARKER_DELETE_MARKER_TAMARKER_DELETE_MARKER_LBMOH  I 8MARKER_DELETE_MARKER_Lc A!A Z |hf HNOTES$DRM_HELPA$B_HH h߀ ISO8859-1MarkerNH L߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_db ISO8859-1 marker_delete_marker_lRD_H |I t8MARKER_DELETE_MARKER_Tchfnf\) ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1r_delNOTES$DRM_HELPC<hfHIR_DELNOTES$DRM_VALUE_CHANGED$MARKER_DELETE_MARKER_L$MARKER_DELETE_MARKER_LD_H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_db ISO8859-1 marker_delete_marker_lTE_H l` Il p4MARKER_DELETE_OK_PBhff_X*-1 NOTES$DRM_WIDGET_CREATE !" !#" \U Z onhfer 59-1NOTES$DRM_HELP_Dhf<tHNOTES$DRM_PUSHBUTTON_ACTIVATEANEMABJH  ߀ ISO8859-1 OK _AUH  ߀ ISO8859-1OK_pbS_H < I t8MARKER_DELETE_APPLY_PBhfX\+ NOTENOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf feNOTES$DRM_HELPF_hf,ufNOTES$DRM_PUSHBUTTON_ACTIVATEBUGAN!MARKER_DELETE_OK_PBRKER_L_PH l ߀ ISO8859-1 Apply H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_db ISO8859-1 marker_delete_apply_pb1_PBUPMAIN_ENTRY_UPDATE2_PBUPMAIN_ENTRY_UPDATE_DB_UPMAIN_EXPAND_ALL_PBRMAIN_EXPAND_PBBMAIN_FILE_CREATE_DBMAIN_FILE_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|;LH I 8MARKER_DELETE_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPr?l$MARKER_DELETE_CANCL_PB885O8H I t8MARKER_DELETE_CANCL_PBchf\,"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf MLETE_NOTES$DRM_HELPHe_hfpb,vfNOTES$DRM_PUSHBUTTON_ACTIVATEBUIAN$MARKER_DELETE_APPLY_PBR_LH ߀ ISO8859-1 Cancel 59-H  ߀ ISO8859-1 Cancel_pbelH $߀  ISO8859-1 Delete MarkerORH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_dbH <I t8CONF_MARKER_DISPLY_DB chfnf\\ ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ TEhfHE pbNOTES$DRM_HELPJTEKON$MARKER_DISPLY_APPLY_PB$MARKER_DISPLY_CANCL_PBEL E__2[5$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Z:"RHRlCTR<A$R MARKER_DISPLY_INFO_UDMAMARKER_DISPLY_HELP_PBMAMARKER_DISPLY_CANCL_PBNCONF_MARKER_DELETE_PBEICONF_MARKER_ADD_PBEMARKER_DISPLY_APPLY_PBMARKER_DISPLY_INFO_L$DWMARKER_DISPLY_MARKER_TLMARKER_DISPLY_MARKER_LAH  8I 8MARKER_DISPLY_MARKER_Lc A!A Z |hf HNOTES$DRM_HELPL@MH ,߀ ISO8859-1MarkerOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_marker_lH d@Id t8MARKER_DISPLY_MARKER_Tchfnf\- ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z Ihf TEhf NOTES$DRM_HELPNHE$MARKER_DISPLY_MARKER_LON$MARKER_DISPLY_MARKER_LH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_marker_lOH   I 8MARKER_DISPLY_INFO_L c A!C B"  Z hf 9-1displNOTES$DRM_HELPOP$MARKER_DISPLY_MARKER_T_HEH *` ߀& ISO8859-1Marker Information:H | ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_info_lTIVH | I| p4CONF_MARKER_ADD_PB1hff_X"-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z Ehf PNOTES$DRM_HELPRQ_Thf(oNHMANOTES$DRM_PUSHBUTTON_ACTIVATERY_$MARKER_DISPLY_APPLY_PBLY_ H  ߀ ISO8859-1Add...Z xhf HNOTES$DRM_HELP3<4H ߀ ISO8859-1MarkerN_FILE_DIRECTORY_DBCro|<t H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pbH |I| t8CONF_MARKER_DELETE_PB chfnf\( ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPSfhf(,sHANOTENOTES$DRM_PUSHBUTTON_ACTIVATET CONF_MARKER_ADD_PBLY_H  ߀ ISO8859-1 Delete...H `߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pbonH I 8MARKER_DISPLY_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPrJl$MARKER_DISPLY_CANCL_PB_HEH 4hI4 t8MARKER_DISPLY_INFO_UD chf\ "NOTES$DRM_WIDGET_CREATE;F $ A!" 34 C \ 8M N Q S DP R O hf_NOTES$DW_SVN_ENTRY_SELECTEDhfRCNOTES$DW_SVN_HELPRhf(PLY_IAMARKNOTES$DW_SVN_SEL_CONFIRMEDDhfCAhNF_MAETE_PNOTES$DW_SVN_SEL_CONFIRMEDKhfPLMARLY_INNOTES$DW_SVN_GET_ENTRYAhfLPLY_MAPPLYNOTES$DW_SVN_DETACHEDO_hfYW _KEYWDKEYWNOTES$DW_SVN_ATTACHEDY_$MARKER_DISPLY_APPLY_PBH_"MARKER_DISPLY_INFO_LFO_LtreeArcWidthdthtreePerpendicularLinesntreeIndexAllAlltreeCenteredComponentsntreeStyleylforceSeqGetEntrytryuseScrollButtonsonsexpectHighlightingidisplayMode_mH pI t8MARKER_DISPLY_CANCL_PBchf\/"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPUhf ,y4NOTES$DRM_PUSHBUTTON_ACTIVATEV#CONF_MARKER_DELETE_PBH ߀ ISO8859-1 Cancel NH  L ߀ ISO8859-1 Cancel_pb߀H p Ip t8MARKER_DISPLY_APPLY_PBchf\."NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELPWhf@xTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEXKEH  ߀ ISO8859-1 Apply H 8 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_apply_pbH &h ߀" ISO8859-1Display MarkersH < ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_dbNOTES$DRM_PUSHBUTTON_ACTIVATETE<AN!MARKER_ADD_APPLY_PBD_L_PlyH  ߀ ISO8859-1 Cancel menH  ߀ ISO8859-1 Cancel_pb859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|= H I p4CONF_MEMBER_ADD_DB1hff_Xb-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ hfD  NOTELPNOTES$DRM_HELPYxZUMEMBER_ADD_OK_PBTIVAT!MEMBER_ADD_CANCL_PBBfTlNXD@(VfTElhXMEMBER_ADD_HELP_PBEMEMBER_ADD_CANCL_PBMEMBER_ADD_APPLY_PBMEMBER_ADD_OK_PB_INADD_WRITEBYPASS_TBTADD_CREATE_KEYWORD_TBPLADD_ACT_MODERATOR_TB$DWMEMBER_ADD_GRANT_LMEMBER_ADD_NODES_TMEMBER_ADD_NODES_TBMEMBER_ADD_AUTHORIZ_TMEMBER_ADD_AUTHORIZ_TBBMEMBER_ADD_MAIL_TERMEMBER_ADD_MAIL_TBMEMBER_ADD_MEMBER_TMEMBER_ADD_MEMBER_LH  I 4MEMBER_ADD_MEMBER_L A!A Z xhf HNOTES$DRM_HELP[<\,H ߀ ISO8859-1MemberH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_member_lH I p4MEMBER_ADD_MEMBER_Thff_X+-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C $ \` Z hf 9-1add_mNOTES$DRM_HELPE]hfDKNOTES$DRM_VALUE_CHANGED!MEMBER_ADD_MEMBER_LB!MEMBER_ADD_MEMBER_LH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_co3)$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1ǣ"nf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_member_lH |I| p4MEMBER_ADD_MAIL_TB1hff_X,-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hfco add_d ISO8NOTES$DRM_HELPa^HEhf0{hfKNOTES$DRM_VALUE_CHANGED_AN!MEMBER_ADD_MEMBER_TR_LBrkH #߀ ISO8859-1 Mail AddresslH  L ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_mail_tbPH X IX p4MEMBER_ADD_MAIL_T-1hff_X--1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z _mhfad  ISO membNOTES$DRM_HELP`0 MEMBER_ADD_MAIL_TB$DR MEMBER_ADD_MAIL_TBAN H   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_mail_tbAH | I| t8MEMBER_ADD_AUTHORIZ_TBchfnf\. ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf_m db8859-NOTES$DRM_HELPmahf04|MEMBEIL_TBNOTES$DRM_VALUE_CHANGEDbMEMBER_ADD_MAIL_TLBILH $(߀  ISO8859-1 AuthorizationCro|> H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_authoriz_tbH dId t8MEMBER_ADD_AUTHORIZ_T chfnf\/ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z behfdb O8859ber_aNOTES$DRM_HELPc4$MEMBER_ADD_AUTHORIZ_TB_VA$MEMBER_ADD_AUTHORIZ_TBRH   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_authoriz_tbpH |I| p4MEMBER_ADD_NODES_TBhff_X0-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hfco add_d ISO8NOTES$DRM_HELPadhf0}R_ADDNOTES$DRM_VALUE_CHANGEDeUT#MEMBER_ADD_AUTHORIZ_TLBH *߀& ISO8859-1Authorization NodesH  H߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_nodes_tbH `I` p4MEMBER_ADD_NODES_T1hff_X1-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z _mhfad  ISO membNOTES$DRM_HELPf0!MEMBER_ADD_NODES_TBDRM_VA!MEMBER_ADD_NODES_TBH H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_nodes_tbH  I 4MEMBER_ADD_GRANT_L1 A!C  Z xhf c _disp NOTES$DRM_HELPfgh1!MEMBER_ADD_NODES_TBO8859-H )0 ߀% ISO8859-1Member Privileges:H  4 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_grant_lH @p I@ t8ADD_ACT_MODERATOR_TB chfnf\2 ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf_m db8859-NOTES$DRM_HELPgij MEMBER_ADD_GRANT_L H ' ߀# ISO8859-1Act as Moderator885H   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 add_act_moderator_tbXH D ID t8ADD_CREATE_KEYWORD_TB chfnf\3 ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf_m db8859-NOTES$DRM_HELPekl"ADD_ACT_MODERATOR_TBH *<߀& ISO8859-1Create New KeywordsMarkerN_FILE_DIRECTORY_DBCro|?H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 add_create_keyword_tbH @I@ p4ADD_WRITEBYPASS_TB1hff_X4-1 NOTES$DRM_WIDGET_CREATE<A!"C  <Z hfco add_d ISO8NOTES$DRM_HELPamn#ADD_CREATE_KEYWORD_TBTB߀H ' ߀# ISO8859-1Write RegardlessH  t߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 add_writebypass_tbH xIx p4MEMBER_ADD_APPLY_PBhff_X6-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf85 _membbNOTES$DRM_HELP os_hf(nADNOTES$DRM_PUSHBUTTON_ACTIVATEMEp_TMEMBER_ADD_OK_PBIZ_TH ߀ ISO8859-1 Apply H  X߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_apply_pbH I 4MEMBER_ADD_HELP_PB1!" $  U xhf c _disp NOTES$DRM_HELPfYl1!MEMBER_ADD_CANCL_PBO8859-S$H |I| p4MEMBER_ADD_CANCL_PBhfX7"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf MD_CANNOTES$DRM_HELP qlyhf(nADNOTES$DRM_PUSHBUTTON_ACTIVATEMEr_T!MEMBER_ADD_APPLY_PBTLB_CH ߀ ISO8859-1 Cancel \H  8 ߀ ISO8859-1 Cancel_pbH ll Il p4MEMBER_ADD_OK_PBPBhf4t$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1" Ӣm1>F~ ?Qu`(XBoPAy@P\0Gea,DNMtWqGZRUn!SvҤ"> 쒬^?w?۳!~ HP ރ~f/ߴbBi?%snn}{qݴ&s9%|s夳n]poN=Ng+=+}U\f:4hb3 4{6Gsq.u,]6,NEwAuaVeWYV(qK;@;!|B d8Ml6$&U(1M-E p ZM F 6YBj^VPqwyo]1_XeTR5e4<-Ɯm[^5W/4$ NA@?$:o*N;yS.PxNV4^nGdfit2@@O0!ejz&oAQښH]"UsRhCm(t -&g_8 (> w9:[^(P_y@9grRC3B/b;go zP GY:_BCn+Om2:@Cf&c*bU;RyH~6cp#ozE7xlRKID@|M~ٓ[h~4^KMۯd) ODL}$ZֳWJg/:u|8k OS6;ۚ_4-?`!Hp5BI#fwi@O!>^t5=-Z;1\JjWF~ogD*sw2ZI pձE:bw6j,'f0i~tt 0Kf,# nRlguEQ4 P#EU%A+81}s HQSO+4CrSZza~ɠ1(V E6%dh~sBh&ryZ.I {JPkgagI1usl 861zdWpK{G_Chg(MLl$$GSp? FdS1'\yzyXg%b~[}̭rl:"!~wD= gMT0aM!Sx$0kh R'Dx5{EA1O'=<ǩ.sjU@K2eЭS r# ތ6lD|V^!pKwG\1t昣6%h/zB,@FC4en`) ol"x3dԩo\3ig{Rp'/k k.j2 IQ󭎬 |J1xxKr\q$gy[i@_4B hQ\8\/mھd}{LtjnRxEo}3'DN4\E"-F~}ș0M/*Wn6"t0 <|? ffD79o%;d(Yњrb3َtۇ\ )췢 m~K(j')"{ i#0q[}Ta =tnt^0[Б nXNp V_Fk3qmubK+Y"TȄk)':-L#u(s)ӲVY Y|~r\g.-Fw1g1躀Sz R.8TP.:U`*Ok_(XSc 'We݂>#kUD_rcͿZZexC꽎jXn499}7eÕi8I×J;?xe9`EeР(31V70}  e dGT|]t'è>w-zl05d)r*{._!sC[%bX6k5`Z <y%Ot 8?{ܨu)P@j{ XoV6',+A6տ{C(Wi9V(tvׄTl=[] =;tm;Q}s2:736֐:RJ!a$1`/XE+wUX?*[̀@-cnQYW~V66bF$C6{cE61#X ]y3 nm 85.S+qPP{x 蝑olv!B YZzI(2' Wԋ gdY,Ȩ@iyӁB?fxqsɑc3bBZri`$(!oxq-'F=k=6r1Rfo͙dkB4&®@ Eg_})dk?P3 -zU7-65hll، ~uғneE\+ r#~$'|1;՗gJQT:@]RcjRȊZvJ|ÊZ0!.aV7= S@-@X2?5T:S$ tX'.<=yuxÉ%;5 Px-'G; T]f?ԽYrOxuRa^6ʼnl9rհLy9;sz2S[R%盘4޸>os"z] %%&K&U4 rz'fVP1:89cO qfZ۞> Nq6gD Xn!ax@BB=7mbcc.kW=;>[/ q+HgXHS~9 xt%&0i&G|#b wYЁR7 ?_kgrDa]^:v aYY0ȫUX%R' H:`e}M 0|0VBL~ m;@e.MdC=wd4?[IRfPZSTK#U nmO %lJ/`E V :|?04d@^hk4uFr~{.^ 9 ׌&%YlL)L8F['RȄIqriiWx F[>Ø/W-rBa@vHW3GW$R W$4#G}Csp@n<XݦZg>ށBB;#x\S-!. {6Y{/0*<2φ {{ 1 Ma.YRF.͑U}-Byo][Oү2 Ey"Y!nq:2=_ Hw<)- W]x~4v|{& fǻs0,g5L&rc (cA|RN#9n'#i$-uw{>00O3k$&Qo44Mi++rj^hNS ?y/n-9ۿ+i D)½I~Holn R).9l|D[nIt$ gfcΔç}o $w 6QUfTo;,T{'eIю(+lsDyc bTvp>RhE" "}*չ3_dEỦ"h4"],Pʕ} L9'$Id;)!~7Lyg$aJbE9+Z$a͖3Ū ײo2mOr H&]H3Rl<\@[sLړ V2#VVF`Im6C~4tnYe-_"dg|^غ nOaیĂY@cy ܋ {go}Ϋ)1ljbPwtغ'yXl[= MW@Las H6nd7=>?w q^1)*srq9Nu)n"fzBl}DcJarvR5<2)bo~ I& M.si䖭 (@j W\v7V~ID.Mx?<K{t(Xp3o.?^p-:]k D`D\#a=DD>[sJZ6OjkΫ@n|WJT;?PB_|(e< _:R 桝ʍdz@qu꿽/©D5R͚`]Q ~ LU+avy5YV-O}s5唎ky@Qo},*jkycMlbcf8Ӫà)pz{>ʠ!H[تXaC-u貟[MbA[hT AM={20Jʼ Gw=q!utөrtuw&G5H¾*3a%RT_v'!*5yp{Ȑ97?_mzָǞ'!:[jm/Y+8)bDjo&xP517}M㾪ZKSeaiy`hO;Vxy9vR(h$ p9'EIY '(P<--OM#"E P.n67xhѠWYT$-l7L<̥it "7r"\<4 {Ͽ;0QLfܙj z)0al"?;Tؗ iŗNe] N&v` K{ 螞ŧG٭=ZS83 蛻|Q7ȑ]n\caO{1`A!W`E-GT]YYdhI$םAp|<<(=Qreƈ0zChnPK2)4? S5RipEu dV ;3~Or C\|rhI`{~-sNpGs<6Sv6SGX>jVTZVVQ`[PQI !L(ɞHE,0uG[Rѯ=B%;z?43JO ;YI◪0*f@%"]=[pg&L 2&،q&1\6gU~1Bv-/!^z/hag|I|=ӬL.XIa㞄( #,[g ]27-i[6pzk1Q=w5A7hV=Z!DR] WF]3nGXOhY|Rdc1Y%kԺ#ʅVy4ms|l>JzLaa {h=.AO KFȧ :2+p+ZY4=O/?{IiD6vùcf6)G(_5( IZ%CV_"ޘH`3Y\AIJfEmMAIacFjKB9(4NՊZ Ϝ-7nIvi%ճ%DdhatBY1D0*Oc0 K1/oE?:ڲ#T쁦> ax.Re"Lpҟk;vιM/8 To 垘kY~:V4픖;"!0ejn6%ZP֟#xy(zH)c΃ar2u $FB]8H5{[kw{7eGE!MxX^AKжHZS3x~'O,ENy}=#*eA½xUdnU71MZ;y5Ra[+Nl]; 8d9g>{oy9pQnzo586!(oHXGeM[><ުצ/?yNG(@TNБ*N16^1-& 1xb>"|qe0:,Rr%j\_ӍHݻoW+-o;r 7-O+֢'\Ed}h0xٳْ9;2YgDve=>گRn/F_L'R sRy-֗$rX4^]Im8#7j't ^BzE=`׫c2`FLCiFλ6Y=%xЕԩ_}yLhrp%Z-jQ)9{cYqO_ LESF-N\TDNZ<2E /@mѫiG[+S!|;A'ZgXYw ;&[b3p"@>(z:INU6LYw7`1LM5$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;16"X5"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hf TES$D NOTES$DRM_HELPshf<~TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEtDDH  ߀ ISO8859-1 OK  H  ߀ ISO8859-1OK_pb H !T ߀ ISO8859-1 Add MemberH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db1H D ID th8CONF_MEMBER_DELETE_DB chfnf\c ISO confNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hfTE  RM_HENOTES$DRM_HELPu<v$MEMBER_DELETE_CANCL_PBVATDD_,MEMEMBER_DELETE_HELP_PBMEMBER_DELETE_CANCL_PBMEMBER_DELETE_APPLY_PBMEMBER_DELETE_OK_PBMEMBER_DELETE_MEMBER_TMEMBER_DELETE_MEMBER_LH   I 8MEMBER_DELETE_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELPw$x_PB ro|@H D H ߀ ISO8859-1MemberH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 member_delete_member_lH 0I t8MEMBER_DELETE_MEMBER_Tchfnf\9 ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1r_delNOTES$DRM_HELPy<hfHLR_DELNOTES$DRM_VALUE_CHANGED$MEMBER_DELETE_MEMBER_L$MEMBER_DELETE_MEMBER_LMEH X߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 member_delete_member_lH lIl p4MEMBER_DELETE_OK_PBhff_X:-1 NOTES$DRM_WIDGET_CREATE !" !#" \U Z onhfer 59-1NOTES$DRM_HELP_zhf<HNOTES$DRM_PUSHBUTTON_ACTIVATEAN{MEd_H <߀ ISO8859-1 OK H ߀ ISO8859-1OK_pbERH I t8MEMBER_DELETE_APPLY_PBhfX\; NOTENOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf feNOTES$DRM_HELP|_hf,fNOTES$DRM_PUSHBUTTON_ACTIVATEBU}AN!MEMBER_DELETE_OK_PBMBER_L߀H  ߀ ISO8859-1 Apply H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 member_delete_apply_pb_H I 8MEMBER_DELETE_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPmul$MEMBER_DELETE_CANCL_PB885GEH  I t8MEMBER_DELETE_CANCL_PBchf\<"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf MLETE_NOTES$DRM_HELP~e_hfpb,fNOTES$DRM_PUSHBUTTON_ACTIVATEBUAN$MEMBER_DELETE_APPLY_PBR_LH  ߀ ISO8859-1 Cancel ADDH  ߀ ISO8859-1 Cancel_pbS$H $ ߀  ISO8859-1 Delete MemberH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_mail_tbAH | I| t8MEMBER_ADD_AUTHORIZ_TBchfnf\. ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf_m db8859-NOTES$DRM_HELPmahf04|MEMBEIL_TBNOTES$DRM_VALUE_CHANGEDbMEMBER_ADD_MAIL_TLBILH $(߀  ISO8859-1 AuthorizationCro|AXD ?\ @Xt @< D C C B C B8 B 0 GH E0 d E8 G F G E E D D ( E@ D \ F(t E G G F0 F F  O  P8 4 P|P Pl P4 O0 P Ol P0 N O O $ O< O`8`,` _,`D`XT Q l Q Q, Q Q U S S$ S S U <W WtW XW W\$W $R <R$ U ( UTU@pTTLUU TxRR R@S8TPS hT T8T xDXEpEDD ED F(E G\GF0FF O P8 P|8PP4TO0POlP0 NOlO OOXQ pQQ,QQSS$dS |S R R$ lU@TTLUTx(RR @R@S4TLS T T8T xD'' l'`NOTE_EXTRACT_INCL_REPL_TBMBNOTE_EXTRACT_MARK_SEEN_TB_CNOTE_EXTRACT_OPTIONS_L_NOTE_EXTRACT_UNSEEN_TBNOTE_EXTRACT_TITLE_TEMBNOTE_EXTRACT_TITLE_TB_ANOTE_EXTRACT_KEYWORD_TANOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_SINCE_TD_MNOTE_EXTRACT_SINCE_TBL_NOTE_EXTRACT_BEFORE_TTNOTE_EXTRACT_BEFORE_TBKNOTE_EXTRACT_AUTHOR_TRKNOTE_EXTRACT_AUTHOR_TBKNOTE_EXTRACT_SELECTION_LR_DNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_RANGE_TR_DNOTE_EXTRACT_RANGE_LR_DNOTE_EXTRACT_RANGE_TB_DNOTE_DELETE_CANCL_PBR_DNOTE_DELETE_HELP_PBNOTE_DELETE_OK_PBRKNOTE_DELETE_NOTEID_TARKNOTE_DELETE_NOTEID_LARKNOTE_CREATE_OK_PBRKNOTE_CREATE_CANCL_PBR_ANOTE_CREATE_HELP_PBNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TTEINOTE_CREATE_CONFERENCE_TBRKNOTE_CREATE_HIDDEN_TBOTNOTE_CREATE_REPLIES_TBTNOTE_CREATE_ATTRIB_LNOTNOTE_CREATE_NOTEID_TEADNOTE_CREATE_TOPIC_TBMAINOTE_CREATE_REPLY_TBOTENOTE_CREATE_OPERATION_RB_PBNOTE_CREATE_OPERATION_LMEMBER_MODIFY_OK_PBMEMBER_MODIFY_CANCL_PBTMEMBER_MODIFY_HELP_PBADMEMBER_MODIFY_SHOW_PBADMEMBER_MODIFY_APPLY_PBDMODINOTE_DDIF_PRINT_OK_PBDINOTE_DDIF_PRINT_CANCL_PBODINOTE_DDIF_PRINT_HELP_PBNOTE_DDIF_PRINT_WIDGT_PBR_MNOTE_DDIF_PRINT_LMBNOTE_DDIF_PRINT_NBR_LMBNOTE_EXTRACT_DDIF_OK_PBNOTE_EXTRACT_DDIF_CANL_PB_NOTE_EXTRACT_DDIF_HELP_PBMBNOTE_EXTRACT_DDIF_FILE_TR_MNOTE_EXTRACT_DDIF_FILE_LDIFNOTE_EXTRACT_DDIF_NOTE_NBR_T_MENOTE_EXTRACT_OK_PBFNOTE_EXTRACT_CANCL_PBPLNOTE_EXTRACT_HELP_PBSPLNOTE_EXTRACT_APPEND_TBLNOTE_EXTRACT_INCL_HEAD_TBHEMEMBER_DELETE_MEMBER_LNMEMBER_DELETE_MEMBER_TLMEMBER_DELETE_OK_PBMEMBER_DISPLY_APPLY_PBPMEMBER_DISPLY_CANCL_PB_MEMBER_DISPLY_HELP_PBPMEMBER_DISPLY_INFO_LAINMEMBER_DISPLY_INFO_UDPDMEMBER_DISPLY_MEMBER_LEMEMBER_DISPLY_MEMBER_TLMEMBER_MODIFY_APPLY_PBLMEMBER_MODIFY_AUTHORIZ_T_OVMEMBER_MODIFY_AUTHORIZ_TBR_MEMBER_MODIFY_CANCL_PBNMEMBER_MODIFY_GRANT_LSPMEMBER_MODIFY_HELP_PBBMEMBER_MODIFY_MAIL_T_TMEMBER_MODIFY_MAIL_TB_EMEMBER_MODIFY_MEMBER_L_MEMBER_MODIFY_MEMBER_TOMEMBER_MODIFY_NEWNAME_TMEMBER_MODIFY_NEWNAME_TBSPMEMBER_MODIFY_NODES_TOPMEMBER_MODIFY_NODES_TBEMEMBER_MODIFY_OK_PBMEMBER_MODIFY_SHOW_PBORMODIFY_ACT_MODERATOR_TBMODIFY_CREATE_KEYWORD_TB$OKMODI6‹a$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1("FY_WRITEBYPASS_TBLYNOTE_CREATE_ATTRIB_LPBNOTE_CREATE_CANCL_PBARKNOTE_CREATE_CONFERENCE_TD_MNOTE_CREATE_CONFERENCE_TBLNOTE_CREATE_HELP_PBNOTE_CREATE_HIDDEN_TBRKNOTE_CREATE_LAST_TBNOTE_CREATE_NOTEID_TBLNOTE_CREATE_OK_PB_PNOTE_CREATE_OPERATION_LNOTE_CREATE_OPERATION_RBTFNOTE_CREATE_REPLIES_TBKNOTE_CREATE_REPLY_TBARKNOTE_CREATE_TOPIC_TBARKNOTE_DELETE_CANCL_PBARKNOTE_DELETE_HELP_PBNOTE_DELETE_NOTEID_L_TNOTE_DELETE_NOTEID_TLENOTE_DELETE_OK_PBERNOTE_EXTRACT_AUTHOR_TBNOTE_EXTRACT_AUTHOR_TBYNOTE_EXTRACT_BEFORE_TMNOTE_EXTRACT_BEFORE_TBBNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_INCL_REPL_TBFNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_MARK_SEEN_TBESNOTE_EXTRACT_OPTIONS_LPNOTE_EXTRACT_RANGE_LBPNOTE_EXTRACT_RANGE_TBPNOTE_EXTRACT_RANGE_TBUPNOTE_EXTRACT_SELECTION_LTTRNOTE_EXTRACT_SINCE_TANCNOTE_EXTRACT_SINCE_TBTNOTE_EXTRACT_TITLE_TW_RNOTE_EXTRACT_TITLE_TBTENOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|B4H $I$ t8CONF_MEMBER_DISPLY_DB chfnf\d ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ TEhfHE pbNOTES$DRM_HELPTEON$MEMBER_DISPLY_APPLY_PB$MEMBER_DISPLY_CANCL_PBEL E__ MHMCMAlMTO<_$MEMBER_DISPLY_INFO_UDMEMEMBER_DISPLY_HELP_PBMEMBER_DISPLY_CANCL_PBECONF_MEMBER_MODIFY_PBMBCONF_MEMBER_DELETE_PB_ACONF_MEMBER_ADD_PBTMEMBER_DISPLY_APPLY_PBKMEMBER_DISPLY_INFO_LODEDISPLY_OPTIONS_RB_AMEMBER_DISPLY_MEMBER_TNMEMBER_DISPLY_MEMBER_LSSOH  I 8MEMBER_DISPLY_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELP@H 8߀ ISO8859-1MemberTH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_member_lVH dLId t8MEMBER_DISPLY_MEMBER_Tchfnf\> ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z Ihf TEhf NOTES$DRM_HELPHE$MEMBER_DISPLY_MEMBER_LON$MEMBER_DISPLY_MEMBER_LddH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_member_lH dId 4DISPLY_OPTIONS_RB-1 ;F  A!"C /Z hfO8 mber_emberNOTES$DRM_HELPf$MEMBER_DISPLY_MEMBER_TOTEHLM0DISPLY_ONLY_MODERATORS_TBMEDISPLY_ALL_MEMBERS_TBNOH lI t8DISPLY_ALL_MEMBERS_TBhf\? ANOTES$DRM_WIDGET_CREATE< Z fhf _rNOTENOTES$DRM_HELPIShH "߀ ISO8859-1 All MembersH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 disply_all_members_tbNOH  I x<DISPLY_ONLY_MODERATORS_TBf_hfde`@O8859f_conNOTES$DRM_WIDGET_CREATE< <Z hf_a _tbRM_HENOTES$DRM_HELP_TH & ߀" ISO8859-1Only ModeratorsH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 disply_only_moderators_tbISH 8 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 disply_options_rbH   I 8MEMBER_DISPLY_INFO_L c A!C B"  Z hf 9-1optioNOTES$DRM_HELPDRDISPLY_OPTIONS_RBELH * ߀& ISO8859-1Member Information:MEMBER_DELETE_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELPw$x_PB ro|C H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_info_ll H |I| p4CONF_MEMBER_ADD_PB1hff_X*-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z Ehf DRNOTES$DRM_HELPYhf(zHMNOTES$DRM_PUSHBUTTON_ACTIVATE_T_M$MEMBER_DISPLY_APPLY_PBLY_ H ߀ ISO8859-1Add...H d߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pbH |I| t8CONF_MEMBER_DELETE_PB chfnf\8 ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,HNOTENOTES$DRM_PUSHBUTTON_ACTIVATE CONF_MEMBER_ADD_PBLY_RKH  d߀ ISO8859-1 Delete..._DH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pbP_H (I t8CONF_MEMBER_MODIFY_PB chfnf\C ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,HNOTENOTES$DRM_PUSHBUTTON_ACTIVATE#CONF_MEMBER_DELETE_PBCANCOTH  ߀ ISO8859-1 Modify...ADH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pbSEH I 8MEMBER_DISPLY_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPml$MEMBER_DISPLY_CANCL_PB_HEAIH 4I4 t8MEMBER_DISPLY_INFO_UD chf\!"NOTES$DRM_WIDGET_CREATE;F $ A!" 34 C \ 8M N Q S DP R O hf_NOTES$DW_SVN_ENTRY_SELECTEDhfMCNOTES$DW_SVN_HELPMhf(_MEMBNOTES$DW_SVN_SEL_CONFIRMEDDhfHEhMBER_ANCL_NOTES$DW_SVN_SEL_CONFIRMEDBhfEM_PB_MBER_NOTES$DW_SVN_GET_ENTRYPhfKPLY_IEDISPNOTES$DW_SVN_DETACHED_DhfME MBER_EMBERNOTES$DW_SVN_ATTACHEDHO$MEMBER_DISPLY_APPLY_PBEMB"MEMBER_DISPLY_INFO_L_TBtreeArcWidthMBEtreePerpendicularLinestreeIndexAllAlltreeCenteredComponentsntreeStyleylforceSeqGetEntrytryuseScrollButtonsonsexpectHighlightingidisplayModeK_H 7$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1E" I t8MEMBER_DISPLY_CANCL_PBchf\B"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPhf ,4NOTES$DRM_PUSHBUTTON_ACTIVATE#CONF_MEMBER_MODIFY_PBOTH  ߀ ISO8859-1 Cancel _SEH  |߀ ISO8859-1 Cancel_pbCT_CONF_PBi ro|DH pIp t8MEMBER_DISPLY_APPLY_PBchf\A"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELPhf@TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEBEH ߀ ISO8859-1 Apply H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_apply_pbH &߀" ISO8859-1Display MembersH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_dbeH XIX t8CONF_MEMBER_MODIFY_DB chfnf\e ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0KIZ TEhf TES$DNOTES$DRM_HELPTEON!MEMBER_MODIFY_OK_PB$MEMBER_MODIFY_CANCL_PB_@(V EMCDMt(\_DM,VRHMDOMEMBER_MODIFY_HELP_PB_MEMBER_MODIFY_CANCL_PBNMEMBER_MODIFY_SHOW_PBMEMBER_MODIFY_APPLY_PBPMEMBER_MODIFY_OK_PBMODIFY_WRITEBYPASS_TBMBMODIFY_CREATE_KEYWORD_TBSVNMODIFY_ACT_MODERATOR_TBMEMBER_MODIFY_GRANT_LMBMEMBER_MODIFY_NODES_TY_MEMBER_MODIFY_NODES_TBhMEMBER_MODIFY_AUTHORIZ_TsMEMBER_MODIFY_AUTHORIZ_TBedMEMBER_MODIFY_MAIL_TylMEMBER_MODIFY_MAIL_TBeSMEMBER_MODIFY_NEWNAME_TMEMBER_MODIFY_NEWNAME_TBMEMBER_MODIFY_MEMBER_TRMEMBER_MODIFY_MEMBER_LO-1H  lI 8MEMBER_MODIFY_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELP@ IH ߀ ISO8859-1Member-H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_member_l5GEH I t8MEMBER_MODIFY_MEMBER_Tchfnf\D ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1r_modNOTES$DRM_HELPEhfHNNOTES$DRM_VALUE_CHANGED$MEMBER_MODIFY_MEMBER_L_PB$MEMBER_MODIFY_MEMBER_L CH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_member_l ISH  I x<MEMBER_MODIFY_NEWNAME_TBnf_hfde`EO8859f_conNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hfme y_dbSO885NOTES$DRM_HELPdEhf8fNOTES$DRM_VALUE_CHANGEDD$MEMBER_MODIFY_MEMBER_T_PBH & ߀" ISO8859-1New Member NameH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_newname_tbCro|Et@H lIl t8MEMBER_MODIFY_NEWNAME_Thfnf\F ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z mehfod  I meNOTES$DRM_HELPn&MEMBER_MODIFY_NEWNAME_TBRM_VA&MEMBER_MODIFY_NEWNAME_TBMEH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_newname_tbEH I t8MEMBER_MODIFY_MAIL_TB chfnf\G ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfon odify ISNOTES$DRM_HELPre_hf4MDIFY_NOTES$DRM_VALUE_CHANGEDY_%MEMBER_MODIFY_NEWNAME_T_T_PB-1H #߀ ISO8859-1 Mail AddressonfH @߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_mail_tbH dxId t8MEMBER_MODIFY_MAIL_T chfnf\H ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z mehfod  I meNOTES$DRM_HELPl4#MEMBER_MODIFY_MAIL_TBM_VA#MEMBER_MODIFY_MAIL_TB_pH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_mail_tbH I x<MEMBER_MODIFY_AUTHORIZ_TBf_hfde`IO8859f_conNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hfme y_dbSO885NOTES$DRM_HELPdhf48MEMBE_MAILNOTES$DRM_VALUE_CHANGEDB"MEMBER_MODIFY_MAIL_TT_PBH $8߀  ISO8859-1 Authorization88H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_authoriz_tbH p Ip x<MEMBER_MODIFY_AUTHORIZ_Tnf_hfde`JO8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z erhfy_ ISO88emberNOTES$DRM_HELPz8'MEMBER_MODIFY_AUTHORIZ_TBLUE_'MEMBER_MODIFY_AUTHORIZ_TBMBER_pH 0 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_authoriz_tbH  I t8MEMBER_MODIFY_NODES_TBchfnf\K ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfon odify ISNOTES$DRM_HELPrizhf4R_MODNOTES$DRM_VALUE_CHANGEDOD&MEMBER_MODIFY_AUTHORIZ_TT_PBH * ߀& ISO8859-1Authorization NodesNOTES$DRM_HELPw$x_PB 8$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1")ro|FH lH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_nodes_tbH dId t8MEMBER_MODIFY_NODES_T chfnf\L ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z mehfod  I meNOTES$DRM_HELPe4$MEMBER_MODIFY_NODES_TB_VA$MEMBER_MODIFY_NODES_TBH (߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_nodes_tbH  I 8MEMBER_MODIFY_GRANT_L c A!C  Z |hff_ ply_d ISO8NOTES$DRM_HELPm#MEMBER_MODIFY_NODES_TO885H )߀% ISO8859-1Member Privileges:H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_grant_lH D ID t8MODIFY_ACT_MODERATOR_TBhfnf\M ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hfon odify ISNOTES$DRM_HELPrl#MEMBER_MODIFY_GRANT_L$_PH '0߀# ISO8859-1Act as ModeratorADH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 modify_act_moderator_tb!H LIL x<MODIFY_CREATE_KEYWORD_TBnf_hfde`NO8859f_conNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hfme y_dbSO885NOTES$DRM_HELPt%MODIFY_ACT_MODERATOR_TBMEH *߀& ISO8859-1Create New KeywordsH L ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 modify_create_keyword_tbHH H IH t8MODIFY_WRITEBYPASS_TB chfnf\O ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hfon odify ISNOTES$DRM_HELPyd_&MODIFY_CREATE_KEYWORD_TBTBEH ' ߀# ISO8859-1Write RegardlessePeH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 modify_writebypass_tbE!" $ \ LU Z hf NOTES$DRM_HELPhf ,4NOTES$DRM_PUSHBUTTON_ACTIVATE#CONF_MEMBER_MODIFY_PBOTH  ߀ ISO8859-1 Cancel _SEH  |߀ ISO8859-1 Cancel_pbCT_CONF_PBi ro|GH I t8MEMBER_MODIFY_APPLY_PBchfnf\Q ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 membe_dbNOTES$DRM_HELPbyhfb,MONOTES$DRM_PUSHBUTTON_ACTIVATEMEDE!MEMBER_MODIFY_OK_PBIZ_TT H ߀ ISO8859-1 Apply H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_apply_pb H I t8MEMBER_MODIFY_SHOW_PB chfnf\R ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 membe_dbNOTES$DRM_HELPy_hfpb,MONOTES$DRM_PUSHBUTTON_ACTIVATEMEDE$MEMBER_MODIFY_APPLY_PBTTD_H ߀ ISO8859-1 Show _H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_show_pbH I 8MEMBER_MODIFY_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPml$MEMBER_MODIFY_CANCL_PB885TTH I t8MEMBER_MODIFY_CANCL_PBchf\S"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf MDIFY_NOTES$DRM_HELPy_hfb,MONOTES$DRM_PUSHBUTTON_ACTIVATEMEDE#MEMBER_MODIFY_SHOW_PBTTILH ߀ ISO8859-1 Cancel BEFH  p߀ ISO8859-1 Cancel_pbR_H lIl p4MEMBER_MODIFY_OK_PBhffXPS"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfM Y_NOTELPNOTES$DRM_HELP_hf<MONOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEDEERPBH ߀ ISO8859-1 OK FILH X ߀ ISO8859-1OK_pbINH $ ߀  ISO8859-1 Modify Member_PH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_dbZH  4 I4 h ,CONF_POPUPIhf-1Pnf_pd ISO8NOTES$DRM_WIDGET_CREATE;F ( Z hfO8 nf_meify_pNOTES$DRM_HELP9er CONF_POPUP_NOTE_PBOTE<TBPCEtCONF_POPUP_CLOSE_CONF_PBMEMAIN_SEPARATOR_SP_LCONF_POPUP_PRINT_PBCONF_POPUP_CREA_TOPIC_PBMMAIN_SEPARATOR_SPCONF_POPUP_NOTE_PBCONF_POPUP_READ_IN_NEW_PBCONF_POPUP_NEXT_UNSEEN_PBVTRH l Il x<CONF_POPUP_NEXT_UNSEEN_PBhfd`UO8NOTIDGETNOTES$DRM_WIDGET_CREATE* \ L <U Z hf_p HELPNOTES$DRM_HELPOPBhfNOTES$DRM_PUSHBUTTON_ACTIVATEB=ETEH "8߀ ISO8859-1 Next Unseen_CRro|HH @H  0xFFAC:H N߀J ISO8859-1 conf_popup ISO8859-1 conf_popup_next_unseen_pbH P IP x<CONF_POPUP_READ_IN_NEW_PBuphfun`VO8NOTIDGETNOTES$DRM_WIDGET_CREATE* @ 0U Z hf _pELPNOTES$DRM_HELPEhfNOTES$DRM_PUSHBUTTON_ACTIVATEON85H 9$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1\":)߀% ISO8859-1Read in New WindowsH N߀J ISO8859-1 conf_popup ISO8859-1 conf_popup_read_in_new_pbH P IP x<CONF_POPUP_CREA_TOPIC_PBpuphfin`XO8NOTIDGETNOTES$DRM_WIDGET_CREATE* @ 0U Z hf _pELPNOTES$DRM_HELPEhfNOTES$DRM_PUSHBUTTON_ACTIVATEONSH #߀ ISO8859-1 Create Topic鮈H M߀I ISO8859-1 conf_popup ISO8859-1 conf_popup_crea_topic_pb H HIH p4CONF_POPUP_PRINT_PBhfupXYc_pbNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTFODH |߀ ISO8859-1PrintcoH H߀D ISO8859-1 conf_popup ISO8859-1 conf_popup_print_pbH PIP x<CONF_POPUP_CLOSE_CONF_PBpuphf_p`ZES$DRNOTES$DRM_WIDGET_CREATE* @ 0U Z hf ES$DRNOTES$DRM_HELPhfES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE`85H 'd߀# ISO8859-1Close Conferencer_mH M߀I ISO8859-1 conf_popup ISO8859-1 conf_popup_close_conf_pbH dId p4CONF_POPUP_NOTE_PBohfupXWf_pbNOTES$DRM_WIDGET_CREATE* T D 4U Z fhf RNOTENOTES$DRM_HELPfhfRNOTENOTES$DRM_PUSHBUTTON_ACTIVATEH !d߀ ISO8859-1 Note-id...H  Ctrln: H G ߀C ISO8859-1 conf_popup ISO8859-1 conf_popup_note_pbH !0 ߀ ISO8859-1 conf_popupH   I ,READ_WINDOW;F %Z \hfWI E TNOTES$DRM_HELPfREAD_MENU_PANEREAD_MENU_BARf6H  p Ip 0READ_MENU_BAR;F -' Z lhf TNOTELPNOTES$DRM_HELPfMAIN_HELP_PDEPAE`fP@0T MAIN_HELP_PDEATREAD_NOTE_PDEREAD_CONF_PDEREAD_EDIT_PDEREAD_FILE_PDEonH T IT 0READ_FILE_PDE@ 8;F ( *  W Z hf HELPNOTES$DRM_HELPAhf`NOTES$DRM_MENU_PULLINGTELOTREAD_FILE_PDMREADZ hfon odify ISNOTES$DRM_HELPrizhf4R_MODNOTES$DRM_VALUE_CHANGEDOD&MEMBER_MODIFY_AUTHORIZ_TT_PBH * ߀& ISO8859-1Authorization NodesNOTES$DRM_HELPw$x_PB ro|IM J q$ q > >< ?  + %@ % 4 % H '` /t % % %X D $  $| $ $, 1@ 5T 28l 6 3 6t 5D 7 6 8  ; $ :< <T ;8l = C ? Cd B Dl C $ 0 4 0 L / h 0 | / /  0D 0 0d//l,0H'0XG H Hdx HdG84 Hdd H|H+%#T t H8d T|pt ,d.$ x.$4-H- +T +  +T. .-8 - +\, p,| -h --x BB 8Bl @   4  H \ p `     8  # " 0 "H "|` "dx " " ! ! T H 04 L L h!  t !!! !4 L@ d| HCONF_CONCONF_POPUP_READ_IN_NEW_PBDICONF_POPUP_NEXT_UNSEEN_PBAPCONF_POPUPDCONF_MEMBER_MODIFY_DBNFCONF_MEMBER_MODIFY_PBCLCONF_MEMBER_DELETE_PBJECONF_MEMBER_ADD_PBFDISPLY_ONLY_MODERATORS_TBINDISPLY_ALL_MEMBERS_TBDEDISPLY_OPTIONS_RBTRCONF_MEMBER_DISPLY_DBTRCONF_MEMBER_DELETE_DBDEADD_WRITEBYPASS_TBRADD_CREATE_KEYWORD_TBTRADD_ACT_MODERATOR_TBNTRCONF_MEMBER_ADD_DBCONF_MARKER_DELETE_PBJECONF_MARKER_ADD_PBECONF_MARKER_DISPLY_DB_ACONF_MARKER_DELETE_DB_FCONF_MARKER_ADD_DBBCONF_KEYWORD_MODIFY_DBPCONF_KEYWORD_MODIFY_PB_CONF_KEYWORD_DELETE_PB_CONF_KEYWORD_CREATE_PBECONF_KEYWORD_ADD_PBCONF_KEYWORD_DISPLY_DBYCONF_KEYWORD_DELETE_DBYCONF_KEYWORD_CREATE_DBYCONF_KEYWORD_ADD_DBCONF_MODIFY_APPLY_PBIFYCONF_MODIFY_CANCL_PBIFYCONF_MODIFY_HELP_PBCONF_MODIFY_REPLY_ONLY_TBTECONF_MODIFY_RESTR_KEY_TBL_PCONF_MODIFY_RESTR_MEM_TBP_PCONF_MODIFY_WRITE_ALL_TB_UPCONF_MODIFY_CONF_ATTRIB_LTECONF_MODIFY_NOTICE_TATECONF_MODIFY_NOTICE_TBTECONF_MODIFY_TITLE_TCONF_MODIFY_TITLE_TB_ADCONF_CONF_MODIFY_DBDIR_NOTE_OK_PBDDIR_NOTE_CANCL_PBADDIR_NOTE_HELP_PB_ADDIR_NOTE_APPLY_PBADDIR_NOTE_ALL_REPLIES_TBDIR_NOTE_OPTIONS_LNDIR_NOTE_UNSEEN_NOTE_TBDIR_NOTE_SEARCH_TSPDIR_NOTE_SEARCH_TBIDIR_NOTE_TITLE_TENTDIR_NOTE_TITLE_TBIZDIR_NOTE_KEYWORD_TTDIR_NOTE_KEYWORD_TBDIR_NOTE_SINCE_TFILDIR_NOTE_SINCE_TBIZDIR_NOTE_BEFORE_TTODIR_NOTE_BEFORE_TBNDIR_NOTE_AUTHOR_TPRDIR_NOTE_AUTHOR_TBTDIR_NOTE_SELECTION_LK_PDIR_NOTE_NOTERANGE_T_TDIR_NOTE_NOTERANGE_L>ClassTable>ResourceTable_CONF_POPUP_NOTE_PB_CONF_POPUP_CLOSE_CONF_PBNOTCONF_POPUP_PRINT_PBCONF_POPUP_CREA_TOPIC_PBIFYADD_ACT_MODERATOR_TBAINADD_CREATE_KEYWORD_TBBADD_WRITEBYPASS_TBECONF_CONF_DIRECTORY_DBECONF_CONF_DIRECTORY_PBECONF_CONF_KEYWORD_PBMAICONF_CONF_MARKER_PBCONF_CONF_MEMBER_PBCONF_CONF_MODERATE_PBTOCONF_CONF_MODIFY_DBCONF_CONF_MODIFY_PBCONF_CONF_PDEJECONF_CONF_PDMBCONF_DISABLE_MODERATOR_PB$LABELCONF_EDIT_PDE_ACONF_ENABLE_MODERATOR_PB$LABELJCONF_FILE_CLOSE_PBCONF_FILE_PDEECCONF_FILE_PDM_OCONF_KEYWORD_ADD_DBCONF_KEYWORD_ADD_PBCONF_KEYWORD_CREATE_DBDCONF_KEYWORD_CREATE_PBDCONF_KEYWORD_DELETE_DBDCONF_KEYWORD_DELETE_PBDCONF_KEYWORD_DISPLY_DBLCONF_KEYWORD_MODIFY_DBLCONF_KEYWORD_MODIFY_PBLCONF_MARKER_ADD_DBDCONF_MARKER_ADD_PBECONF_MARKER_DELETE_DBJECONF_MARKER_DELETE_PBJECONF_MARKER_DISPLY_DBJECONF_MEMBER_ADD_DBECONF_MEMBER_ADD_PB_CONF_MEMBER_DELETE_DB_LCONF_MEMBER_DELETE_PB_TCONF_MEMBER_DISPLY_DB_PCONF_MEMBER_MODIFY_DBCTCONF_MEMBER_MODIFY_PBCTCONF_MENU_BARIFCONF_MODIFY_APPLY_PB_SHCONF_MODIFY_CANCL_PBRACCONF_MODIFY_CONF_ATTRIB_LBCONF_MODIFY_HELP_PBCONF_MODIFY_NOTICE_TEADCONF_MODIFY_NOTICE_TBADCONF_MODIFY_REPLY_ONLY_TBOTCONF_MODIFY_RESTR_KEY_TB_UCONF_MODIFY_RESTR_MEM_TBICONF_MODIFY_TITLE_TCONF_MODIFY_TITLE_TBD_BCONF_MODIFY_WRITE_ALL_TBCK_CONF_NOTE_PDERECONF_POPUPBCONF_POPUP_NEXT_UNSEEN_PBPBCONF_POPUP_READ_IN_NEW_PBPBCONF_SVN_WINDOWCONF_VIEW_PDEBCONF_WINDOWCUSTOMIZE_PROFILE_AUTO_L_RECUSTOMIZE_PROFILE_CANL_PB_NCUSTOMIZE_PROFILE_CLASS_LT_CUSTOMIZE_PROFILE_CLASS_TT_CUSTOMIZE_PROFILE_DIR_TBXT_CUSTOMIZE_PROFILE_HELP_PBEICUSTOMIZE_PROFILE_OK_PBCUSTOMIZE_PROFILE_PEN_LCUSTOMIZE_PROFILE_PEN_TCUSTOMIZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|J$PH lIl 0\READ_FILE_PDM;F LXDZ,fTCONF_FILE_CLOSE_PBREAD_FILE_DISMISS_PBMAIN_SEPARATOR_SPLIREAD_FILE_PRINT2_PBREAD_FILE_PRINT1_PBREAD_FILE_EXTRACT_PBREMAIN_SEPARATOR_SPDIMAIN_FILE_MAIL_PBPD_MH LIL t8READ_FILE_DISMISS_PBhf\\NOTES$DRM_WIDGET_CREATE* < ,U Z hf CONFNOTES$DRM_HELPIShf ATOR_D_FILNOTES$DRM_PUSHBUTTON_ACTIVATEBACPEPapH #߀ ISO8859-1 Close WindowH m߀i ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_dismiss_pbH ߀ ISO8859-1FileH E߀A ISO8859-1 re:ݢ$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"Kad_menu_bar ISO8859-1 read_file_pdeH TIT 0READ_EDIT_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPTEhfHENOTES$DRM_MENU_PULLINGDPUATMAIN_EDIT_PDMOR_S IH  ߀ ISO8859-1Edit59-H E߀A ISO8859-1 read_menu_bar ISO8859-1 read_edit_pdeDH TIT 0READ_CONF_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPTEhfHENOTES$DRM_MENU_PULLINGDPU ATCONF_CONF_PDMOR_SH !߀ ISO8859-1 ConferenceH Ex߀A ISO8859-1 read_menu_bar ISO8859-1 read_conf_pdeH TIT 0READ_NOTE_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPTEhfHENOTES$DRM_MENU_PULLINGDPUATREAD_NOTE_PDMOR_SH ߀ ISO8859-1NotesH El ߀A ISO8859-1 read_menu_bar ISO8859-1 read_note_pdeH $ ߀  ISO8859-1 read_menu_barS$H   I 0READ_MENU_PANE9;F Z X hf|  NOTES$DRM_HELPZTEHREAD_WORK_DBREAD_WORK_HEADERH l, Il 4$READ_WORK_HEADER ;F 1E H1Z hf READNOTES$DRM_HELPD$READ_WORK_NEXT_PAGE_PB ATXD_0_IPNSMAREAD_WORK_ATTRIB_TREAD_WORK_AUTHOR_TIREAD_WORK_DATE_LRATREAD_WORK_DATE_TP_NREAD_WORK_AUTHOR_LRREAD_WORK_TITLE_TNFREAD_WORK_TITLE_L_PREAD_WORK_NOFN_LREAD_WORK_NOTEID_TREAD_WORK_NOTEID_LUPH  (0 I( p4READ_WORK_NOTEID_LhfX^F NOTES$DRM_WIDGET_CREATE A!!"AB Z TEhfHE NOTES$DRM_HELPTATH # ߀ ISO8859-1 Note 1234.99NOH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_noteid_l=ETEH "8߀ ISO8859-1 Next Unseen_CRro|KDH I p4READ_WORK_NOTEID_TrhfrkX_ ISO8read_NOTES$DRM_WIDGET_CREATE;6E!$ t"AC TB=Z hf4 DANOTES$DRM_HELP_ READ_WORK_NOTEID_L READ_WORK_NOTEID_LH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_noteid_lpH  <I< p4READ_WORK_NOFN_L rhfrkXa ISO8read_NOTES$DRM_WIDGET_CREATE AC B34 Z hf CNOTES$DRM_HELP4 READ_WORK_NOTEID_L$DRD_H !$߀ ISO8859-1 No RepliesDH ft߀b ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_nofn_lH  @I@ 4READ_WORK_TITLE_L r A!AC B!$ " Z 4hf Z NOTES$DRM_HELPTE READ_WORK_NOTEID_T READ_WORK_NOTEID_L_HE_H  ߀ ISO8859-1Topic:EH gt߀c ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_title_lFY_H TIT p4READ_WORK_TITLE_T rhfrkX` ISO8read_NOTES$DRM_WIDGET_CREATE;6E!$ 4"AC B35 4=Y \ Z @hfd t_ EAD_WNOTES$DRM_HELP_WhfTE`AREADNOTES$DRM_LOST_FOCUSWORhfOR`ORK_DTREADNOTES$DRM_FOCUSREAD_WORK_NOFN_LRK_TI READ_WORK_NOTEID_LEAD READ_WORK_NOTEID_LEIDR_H g ߀c ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_title_l_TH  I 4READ_WORK_AUTHOR_Lr A!C  Z xhf NOTES$DRM_HELP READ_WORK_NOTEID_T _PH  ߀ ISO8859-1Author:H h ߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_author_lTEH 4 I p4READ_WORK_DATE_T rhfrkXd ISO8read_NOTES$DRM_WIDGET_CREATE;6EAC B34D=Y \ pZ ,hfP `hf tNOTES$DRM_HELPEHEhfd_Whf`NOTES$DRM_LOST_FOCUSOTEhfLOdORhf`NOTES$DRM_FOCUS READ_WORK_NOTEID_TRE_PH f ߀b ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_date_lH  < I< p4READ_WORK_DATE_L rhfrkXc ISO8read_NOTES$DRM_WIDGET_CREATE AC B34d Z hf 3NOTES$DRM_HELPREAD_WORK_TITLE_T `FYH .< ߀* ISO8859-131-DEC-1992 23:59:59.99H f߀b ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_date_lSS_TUSTENTRY_UPDATE_CLASS_TBT_ENTRY_UPDATE_ENTRY_TSS_ENTRY_UPDATE_ENTRY_TBDIENTRY_UPDATE_HELP_PBFILENTRY_UPDATE_OK_PBZFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PBMIZro|L t 0H  I  p4READ_WORK_AUTHOR_TrhfrkXb ISO8read_NOTES$DRM_WIDGET_CREATE;6E!AC B35 4=Y \ pZ ,hfTLP `hf tNOTES$DRM_HELPEHEhfb_Whf`NOTES$DRM_LOST_FOCUSOTEhfLObORhf`NOTES$DRM_FOCUSREAD_WORK_DATE_LTREREAD_WORK_TITLE_TREH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_author_l"H 4I p4READ_WORK_ATTRIB_TrhfrkXe ISO8read_NOTES$DRM_WIDGET_CREATE;E!"AC 34D02JY \ Z @hfd tTES$DENOTES$DRM_HELP_WhfeTES$DFOCUSNOTES$DRM_LOST_FOCUSORhfeTES$DNOTES$DRM_FOCUS READ_WORK_AUTHOR_TRK_NFH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_attrib_lODH  I  t8READ_WORK_NEXT_PAGE_PB_hfb\q8859-_workNOTES$DRM_WIDGET_CREATE!";~" $ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1 /"\ AC B$ "  EU XZ hf8 H ZNOTES$DRM_HELPDhfE|DRM_HNOTES$DRM_PUSHBUTTON_ACTIVATED'READ_WORK_CREATE_REPLY_PBhfREAD_WORK_PAGE_PB'READ_WORK_CREATE_REPLY_PBAUTH_PH TI p4READ_WORK_PAGE_PBE_hffXpq8_NOTES$DRM_WIDGET_CREATE !" $ " pI7EU ,Z hf  UZNOTES$DRM_HELPhfPDRM_HNOTES$DRM_PUSHBUTTON_ACTIVATEHTE$READ_WORK_BACK_PAGE_PBANH tI t8READ_WORK_BACK_PAGE_PBhfX\o8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPNOTES$DRM_HELPDRhfBU|ATEHNOTES$DRM_PUSHBUTTON_ACTIVATEAG'READ_WORK_CREATE_REPLY_PBhf%READ_WORK_NEXT_REPLY_PB'READ_WORK_CREATE_REPLY_PBRK_BH  , I  t8READ_WORK_NEXT_REPLY_PBhfX\n8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPNOTES$DRM_HELPDRhfBU|ATEHNOTES$DRM_PUSHBUTTON_ACTIVATEAG'READ_WORK_CREATE_REPLY_PBhf READ_WORK_REPLY_PBY_P'READ_WORK_CREATE_REPLY_PBEPLYY_H T I p4READ_WORK_REPLY_PBYhffXmn8_NOTES$DRM_WIDGET_CREATE !" $ " pI7EU ,Z hf  UZNOTES$DRM_HELPhfPDRM_HNOTES$DRM_PUSHBUTTON_ACTIVATEHTE%READ_WORK_BACK_REPLY_PBRECLASS_TT_CUSTOMIZE_PROFILE_DIR_TBXT_CUSTOMIZE_PROFILE_HELP_PBEICUSTOMIZE_PROFILE_OK_PBCUSTOMIZE_PROFILE_PEN_LCUSTOMIZE_PROFILE_PEN_TCUSTOMIZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|M H I t8READ_WORK_BACK_REPLY_PBhfX\l8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPNOTES$DRM_HELPDRhfBU|ATEHNOTES$DRM_PUSHBUTTON_ACTIVATEEP'READ_WORK_CREATE_REPLY_PBhf%READ_WORK_NEXT_TOPIC_PB'READ_WORK_CREATE_REPLY_PBRK_H I t8READ_WORK_NEXT_TOPIC_PBhfX\k8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU `Z hfH@ PES$DRNOTES$DRM_HELPBUhfES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE'READ_WORK_CREATE_REPLY_PB READ_WORK_TOPIC_PB'READ_WORK_CREATE_REPLY_PBRK_H (I p4READ_WORK_TOPIC_PBChffXjk8_NOTES$DRM_WIDGET_CREATE !" $ " pI7EU ,Z hf  EUNOTES$DRM_HELPPhfPDRNOTELPNOTES$DRM_PUSHBUTTON_ACTIVATEE%READ_WORK_BACK_TOPIC_PB'H H PI t8READ_WORK_BACK_TOPIC_PBhfX\i8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPPNOTES$DRM_HELPDRhfBU|ATENOTES$DRM_PUSHBUTTON_ACTIVATEOP'READ_WORK_CREATE_REPLY_PBEPLY'READ_WORK_CREATE_REPLY_PB'READ_WORK_CREATE_REPLY_PBRK_upH m ߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_back_topic_pbH 4߀ ISO8859-1TopicATH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_topic_pbH m߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_topic_pb H m` ߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_back_reply_pbpH  ߀ ISO8859-1ReplyH H h` ߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_reply_pbH m ߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_reply_pbH l ߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_back_page_pbH  ߀ ISO8859-1Page H g ߀c ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_page_pbH < I x<READ_WORK_CREATE_REPLY_PBrkhf`h-1 k_pagNOTES$DRM_WIDGET_CREATE !" !" xIsEU 4Z hf $ XDRNOTES$DRM_HELPhfTEXDRNOTES$DRM_PUSHBUTTON_ACTIVATEPUM_H # ߀ ISO8859-1 Create ReplyH oT߀k ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_create_reply_pbH l߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_page_pb IH B߀> ISO8859-1 read_window ISO8859-1 read_work_dbx_PB ro|N H DID l\0READ_WORK_DB9-1hfd_TT 1 rNOTES$DRM_WIDGET_CREATE ;F L1EH (1Z hf XNOTES$DRM_HELPE$READ_WORK_NEXT_PAGE_PBTEDRB(ABAKLt_\_H0RE READ_WORK_TEXTREAD_WORK_TEXT_SB_LREAD_WORK_SEPARATOR_SP_READ_WORK_UNSEEN_PBREAD_WORK_NEXT_PAGE_PBREAD_WORK_PAGE_PBMBREAD_WORK_BACK_PAGE_PBBREAD_WORK_NEXT_REPLY_PBREAD_WORK_REPLY_PBREAD_WORK_BACK_REPLY_PBREAD_WORK_NEXT_TOPIC_PBREAD_WORK_TOPIC_PBBREAD_WORK_BACK_TOPIC_PBREAD_WORK_CREATE_REPLY_PBB88H I p4READ_WORK_UNSEEN_PBhfTXr rNOTENOTES$DRM_WIDGET_CREATE !" $ " pIsEU ,Z fhf  NOTENOTES$DRM_HELPhfREPXT_PANOTES$DRM_PUSHBUTTON_ACTIVATE$READ_WORK_NEXT_PAGE_PBH "X߀ ISO8859-1 Next UnseenH i߀e ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_unseen_pbH DI 8READ_WORK_SEPARATOR_SP_ -E!"34 Z hf psNOTES$DRM_HELPf'READ_WORK_CREATE_REPLY_PBNOTEH d߀` ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_textH lIl p4READ_WORK_TEXT_SB rhfrkXg ISO8read_NOTES$DRM_WIDGET_CREATEE<U'$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1#"mAB34 H-.)&d>dZ hfB( 8HELPNOTES$DRM_HELP$READ_WORK_SEPARATOR_SPVATH p\Ip l0READ_WORK_TEXTShffTfg rNOTES$DRM_WIDGET_CREATE6;DE!"AB35 P4 ,D02J87Y \ Z xhf READ_T_PAGNOTES$DRM_HELPLhff__NOTES$DRM_LOST_FOCUSRhffREAEXTNOTES$DRM_FOCUS$READ_WORK_SEPARATOR_SPWORREAD_WORK_TEXT_SBAGE_H "߀ ISO8859-1 read_windowH H` IH p4READ_NOTE_CREATE_DBhfTXi rNOTENOTES$DRM_WIDGET_CREATE ;F H  \ < , IZ hf  NOTES$DRM_HELPNOTE_CREATE_OK_PBY"NOTE_CREATE_CANCL_PB_ A0HffT_|fhfT<T(NOTE_CREATE_HELP_PBNOTE_CREATE_CANCL_PBNOTE_CREATE_OK_PBXTNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TK_PNOTE_CREATE_CONFERENCE_TBLYNOTE_CREATE_HIDDEN_TBNOTE_CREATE_REPLIES_TBNOTE_CREATE_ATTRIB_LPBNOTE_CREATE_NOTEID_TEADNOTE_CREATE_OPERATION_RBWORNOTE_CREATE_OPERATION_LH H   I 8NOTE_CREATE_OPERATION_L A!A Z |hfF NOTES$DRM_HELP  ISO8859-1 Next Unseen_CRro|O0H !߀ ISO8859-1 Note Type:EH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_operation_l H l4Il <NOTE_CREATE_OPERATION_RBad_ ;F  A!"C /Z 85hfno operaNOTES$DRM_HELP%NOTE_CREATE_OPERATION_LT<NOTE_CREATE_TOPIC_TB_OKNOTE_CREATE_REPLY_TBE_CH I t8NOTE_CREATE_REPLY_TB_RBhf\F NOTES$DRM_WIDGET_CREATE< Z hff oNOTES$DRM_HELPENO3H ߀ ISO8859-1ReplyH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_reply_tbH I t8NOTE_CREATE_TOPIC_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE< <Z hf_c y_tbES$DRNOTES$DRM_HELPATAGH ߀ ISO8859-1TopicS$H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_topic_tbH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_operation_rbPH lIl t8NOTE_CREATE_NOTEID_T rhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hf TE_OPNOTES$DRM_HELP&NOTE_CREATE_OPERATION_RBE_CRE&NOTE_CREATE_OPERATION_RBBE_C_AH l߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_noteid_tH  I 8NOTE_CREATE_ATTRIB_L r A!C  Z |hfd_ e_dbSO885NOTES$DRM_HELPtD&NOTE_CREATE_OPERATION_RBTSHH ' ߀# ISO8859-1Note Attributes:%H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_attrib_lCH < I< t8NOTE_CREATE_REPLIES_TBrhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  Z hf NTE_OPNOTES$DRM_HELPTHE"NOTE_CREATE_ATTRIB_LTION__PH $ ߀  ISO8859-1 Allow RepliesORH $ ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_replies_tbH D\ ID t8NOTE_CREATE_HIDDEN_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELP$NOTE_CREATE_REPLIES_TBCREBH %0߀! ISO8859-1Hide This NoteZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|PL H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_hidden_tbH I x<NOTE_CREATE_CONFERENCE_TBd_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf RNOTENOTES$DRM_HELPhf8ONTE_RENOTES$DRM_VALUE_CHANGEDAT#NOTE_CREATE_HIDDEN_TBXTH ,߀( ISO8859-1Pointer to Conference_CH h߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_conference_tbH pIp x<NOTE_CREATE_CONFERENCE_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RNOTRM_HENOTES$DRM_HELP8'NOTE_CREATE_CONFERENCE_TBLUE_'NOTE_CREATE_CONFERENCE_TBTE_CH |߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_conference_tbH DID p4NOTE_CREATE_LAST_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C  <Z hf hf NOTES$DRM_HELPRHE'NOTE_CREATE_CONFERENCE_TB_TB H $߀  ISO8859-1 Use Last TextLPH ,߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_last_tbupH dI 4NOTE_CREATE_HELP_PB!" $  U xhf r reate ISNOTES$DRM_HELPclf"NOTE_CREATE_CANCL_PBNOTEH |4I| t8NOTE_CREATE_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \=0*8$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1k"~ LU Z hff NOTE_ANCL_NOTES$DRM_HELPEhf,'OTE_CNOTES$DRM_PUSHBUTTON_ACTIVATE ATNOTE_CREATE_OK_PBDDENH 8 ߀ ISO8859-1 Cancel _woH  ߀ ISO8859-1 Cancel_pb-1H l Il p4NOTE_CREATE_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPENOTES$DRM_HELP hf<_CNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEAT _Ce_H 0 ߀ ISO8859-1 OK H  ߀ ISO8859-1OK_pbH & ߀" ISO8859-1Create New NoteH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_dbhfTEXDRNOTES$DRM_PUSHBUTTON_ACTIVATEPUM_H # ߀ ISO8859-1 Create ReplyH oT߀k ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_create_reply_pbH l߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_page_pb IH B߀> ISO8859-1 read_window ISO8859-1 read_work_dbx_PB ro|Q X H I pd4READ_NOTE_DELETE_DBhfd_Xj-1 NOTES$DRM_WIDGET_CREATE ;F TH  0 IZ hf ES$DRNOTES$DRM_HELP  T"NOTE_DELETE_CANCL_PBN_ACTAENOTE_DELETE_HELP_PBNOTE_DELETE_CANCL_PBNOTE_DELETE_OK_PBNOTE_DELETE_NOTEID_TNOTE_DELETE_NOTEID_LXTH  I 8NOTE_DELETE_NOTEID_Lf A!A Z |hfF NOTES$DRM_HELPREH ,߀ ISO8859-1Note-idH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pb ISO8859-1 read_note_delete_db ISO8859-1 note_delete_noteid_lH @I t8NOTE_DELETE_NOTEID_T rhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf RNOTENOTES$DRM_HELPhfHPNTE_CANOTES$DRM_VALUE_CHANGED"NOTE_DELETE_NOTEID_L"NOTE_DELETE_NOTEID_LH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pb ISO8859-1 read_note_delete_db ISO8859-1 note_delete_noteid_lH lIl p4NOTE_DELETE_OK_PB-1hfd_X-1 NOTES$DRM_WIDGET_CREATE !" !#" \U Z $hf NOTES$DRM_HELPEhf<HNNOTES$DRM_PUSHBUTTON_ACTIVATEANNOH ߀ ISO8859-1 OK H ߀ ISO8859-1OK_pb H PI 4NOTE_DELETE_HELP_PB!" $  U xhf NOTES$DRM_HELP \l"NOTE_DELETE_CANCL_PBH |I| t8NOTE_DELETE_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTE_ANCL_NOTES$DRM_HELPEhf,fNOTES$DRM_PUSHBUTTON_ACTIVATEBUANNOTE_DELETE_OK_PBTEIDM_H  ߀ ISO8859-1 Cancel H   ߀ ISO8859-1 Cancel_pb IH "H ߀ ISO8859-1 Delete NoteH | ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pb ISO8859-1 read_note_delete_db < , IZ hf  NOTES$DRM_HELPNOTE_CREATE_OK_PBY"NOTE_CREATE_CANCL_PB_ A0HffT_|fhfT<T(NOTE_CREATE_HELP_PBNOTE_CREATE_CANCL_PBNOTE_CREATE_OK_PBXTNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TK_PNOTE_CREATE_CONFERENCE_TBLYNOTE_CREATE_HIDDEN_TBNOTE_CREATE_REPLIES_TBNOTE_CREATE_ATTRIB_LPBNOTE_CREATE_NOTEID_TEADNOTE_CREATE_OPERATION_RBWORNOTE_CREATE_OPERATION_LH H   I 8NOTE_CREATE_OPERATION_L A!A Z |hfF NOTES$DRM_HELP  ISO8859-1 Next Unseen_CRro|R 4H ,I, t8READ_FILE_EXTRACT_DB rhfte\k ISO readNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0TIZ TEhfHE NOTES$DRM_HELPTEON NOTE_EXTRACT_OK_PB#NOTE_EXTRACT_CANCL_PB_DETITLEPEEhPE8 RBEETxS\R@E$T NLENOTE_EXTRACT_HELP_PBES_NOTE_EXTRACT_CANCL_PB_LNOTE_EXTRACT_OK_PBENOTE_EXTRACT_APPEND_TBRNOTE_EXTRACT_INCL_HEAD_TBERNOTE_EXTRACT_INCL_REPL_TBMBNOTE_EXTRACT_MARK_SEEN_TBMBNOTE_EXTRACT_OPTIONS_LBNOTE_EXTRACT_UNSEEN_TBNOTE_EXTRACT_TITLE_TZ_TNOTE_EXTRACT_TITLE_TB_TNOTE_EXTRACT_KEYWORD_TTNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_SINCE_TNAMNOTE_EXTRACT_SINCE_TBMENOTE_EXTRACT_BEFORE_TMENOTE_EXTRACT_BEFORE_TBNNOTE_EXTRACT_AUTHOR_TANNOTE_EXTRACT_AUTHOR_TBPNOTE_EXTRACT_SELECTION_LN_ENOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_RANGE_TUPDNOTE_EXTRACT_RANGE_LN_ENOTE_EXTRACT_RANGE_TBH I t8NOTE_EXTRACT_RANGE_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfT ZEhfNOTES$DRM_HELPhfDR4RENOTES$DRM_VALUE_CHANGEDPB&NOTE_EXTRACT_SELECTION_LSOH !@߀ ISO8859-1 Note-range_H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_range_tbS$H   I 8NOTE_EXTRACT_RANGE_L r A!A Z |hfad act_d ISO8NOTES$DRM_HELPtf&H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_range_tb H dId t8NOTE_EXTRACT_RANGE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf EhfRM_HENOTES$DRM_HELP4"NOTE_EXTRACT_RANGE_LRM_VA"NOTE_EXTRACT_RANGE_LH   I 8NOTE_EXTRACT_FILESPEC_L A!C  Z |hf BNOTES$DRM_HELP@>$Δ$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1P""NOTE_EXTRACT_RANGE_TIEH & ߀" ISO8859-1Output FilenameH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_filespec_lH P I t8NOTE_EXTRACT_FILESPEC_Thfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf_R ES$DRNOTES$DRM_HELPhf_EHQGE_LNOTES$DRM_VALUE_CHANGED%NOTE_EXTRACT_FILESPEC_L%NOTE_EXTRACT_FILESPEC_LTCH $ ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_filespec_lZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|S hH  I <NOTE_EXTRACT_SELECTION_Lad_ A!C  Z hfil db8859-NOTES$DRM_HELPt$$%NOTE_EXTRACT_FILESPEC_TCOH *߀& ISO8859-1Selection Criteria:H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_selection_lRM_H LI t8NOTE_EXTRACT_AUTHOR_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$ NOTE_FILESNOTES$DRM_HELPEHEhf4ShfQNOTES$DRM_VALUE_CHANGED AN&NOTE_EXTRACT_SELECTION_L_LCOH $߀ ISO8859-1AuthornH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_author_tbEH dId t8NOTE_EXTRACT_AUTHOR_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP!4$NOTE_EXTRACT_AUTHOR_TB_VA$NOTE_EXTRACT_AUTHOR_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_author_tbH 8I t8NOTE_EXTRACT_BEFORE_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE"hf4TNACT_ANOTES$DRM_VALUE_CHANGED#HO#NOTE_EXTRACT_AUTHOR_T_L_H  ߀ ISO8859-1BeforeH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_before_tbH dId t8NOTE_EXTRACT_BEFORE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP$4$NOTE_EXTRACT_BEFORE_TB_VA$NOTE_EXTRACT_BEFORE_TB88H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_before_tbH  I t8NOTE_EXTRACT_SINCE_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE%hf4UNACT_BNOTES$DRM_VALUE_CHANGED&OR#NOTE_EXTRACT_BEFORE_T_L_H  ߀ ISO8859-1Since1H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_since_tbH oT߀k ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_create_reply_pbH l߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_page_pb IH B߀> ISO8859-1 read_window ISO8859-1 read_work_dbx_PB ro|T4H dId t8NOTE_EXTRACT_SINCE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP'4#NOTE_EXTRACT_SINCE_TBM_VA#NOTE_EXTRACT_SINCE_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_since_tb H xI t8NOTE_EXTRACT_KEYWORD_TBhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE(hf4VNACT_SNOTES$DRM_VALUE_CHANGED)CE"NOTE_EXTRACT_SINCE_T_L_leH L߀ ISO8859-1KeywordH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_keyword_tbH lIl t8NOTE_EXTRACT_KEYWORD_Trhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hfNO FILERM_HENOTES$DRM_HELP*4%NOTE_EXTRACT_KEYWORD_TBVALUE_%NOTE_EXTRACT_KEYWORD_TBNOTE_E_nH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_keyword_tbH dI t8NOTE_EXTRACT_TITLE_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE+hf4WNACT_KNOTES$DRM_VALUE_CHANGED,_K$NOTE_EXTRACT_KEYWORD_TL_H 8߀ ISO8859-1Title H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_title_tbhH dId t8NOTE_EXTRACT_TITLE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP-4#NOTE_EXTRACT_TITLE_TBM_VA#NOTE_EXTRACT_TITLE_TBH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_title_tbreH <H I< t8NOTE_EXTRACT_UNSEEN_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  Z $hf hf NOTES$DRM_HELPR.HE/"NOTE_EXTRACT_TITLE_TE_TBH # ߀ ISO8859-1 Unseen NotesH l ߀ ISO8859-1 read_menu_bar ISO8859-1 rea?t$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1R"d_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_unseen_tbCH   I 8NOTE_EXTRACT_OPTIONS_Lr A!C  Z |hfad act_d ISO8NOTES$DRM_HELPt01$NOTE_EXTRACT_UNSEEN_TB_HEhH )x߀% ISO8859-1Selection Options:  ISO8859-1 Next Unseen_CRro|UhPH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_options_l H HIH x<NOTE_EXTRACT_MARK_SEEN_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf RACT_B_HENOTES$DRM_HELP23NO$NOTE_EXTRACT_OPTIONS_LH #߀ ISO8859-1 Mark as Seen'H 0߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_mark_seen_tb*H LhIL x<NOTE_EXTRACT_INCL_REPL_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf RACT_B_HENOTES$DRM_HELP45NO'NOTE_EXTRACT_MARK_SEEN_TBNOAPH &@߀" ISO8859-1Include RepliesH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_incl_repl_tbRKH DID x<NOTE_EXTRACT_INCL_HEAD_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C  Z Zhf NOTES$DRM_HELPR67'NOTE_EXTRACT_INCL_REPL_TBSEENORH *߀& ISO8859-1Include Note HeaderH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_incl_head_tbORH HDIH t8NOTE_EXTRACT_APPEND_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf NOTENOTES$DRM_HELP89'NOTE_EXTRACT_INCL_HEAD_TB_TBERH %߀! ISO8859-1Append to FileIH x ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_append_tbAH  I 8NOTE_EXTRACT_HELP_PB r!" $  U |hfad act_d ISO8NOTES$DRM_HELPtlf#NOTE_EXTRACT_CANCL_PBNOTEETH | I| t8NOTE_EXTRACT_CANCL_PB rhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NACT_CNOTES$DRM_HELPR:hf,9NONOTES$DRM_PUSHBUTTON_ACTIVATENO;LE NOTE_EXTRACT_OK_PBD_TEXH  ߀ ISO8859-1 Cancel PBH   ߀ ISO8859-1 Cancel_pbOTH lP Il p4NOTE_EXTRACT_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfN _CNOTELPRNOTES$DRM_HELP<hf<NONOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATELE=_EREH  ߀ ISO8859-1 OK NOTH ߀ ISO8859-1OK_pbOTH $8߀  ISO8859-1 Extract NotesCH_PBREAD_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|VG0 0  D X l      d  \ x   , D ,\ h l  |  t   # # # # # 4 4 H hX p T   ( $ ` 9 9  9  80 9D 9X 9@l : :l ; ; :h : : < $<<<hT;` l<p;,; ?> =(? >0 ?4= H=\=p=>>? @ @ @ ? @X @<D C 4 CL B  C | B8d B tG E0 <E8,GFDGXEpEDD ED F(E G\GF0FF O P8 P|8PP4TO0POlP0 NOlO OOXQ pQQ,QQSS$dS |S R R$ lU@TTLUTx(RR @R@S4TLS T T8T xD'' l'`NOTE_EXTRACT_INCL_REPL_TBMBNOTE_EXTRACT_MARK_SEEN_TB_CNOTE_EXTRACT_OPTIONS_L_NOTE_EXTRACT_UNSEEN_TBNOTE_EXTRACT_TITLE_TEMBNOTE_EXTRACT_TITLE_TB_ANOTE_EXTRACT_KEYWORD_TANOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_SINCE_TD_MNOTE_EXTRACT_SINCE_TBL_NOTE_EXTRACT_BEFORE_TTNOTE_EXTRACT_BEFORE_TBKNOTE_EXTRACT_AUTHOR_TRKNOTE_EXTRACT_AUTHOR_TBKNOTE_EXTRACT_SELECTION_LR_DNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_RANGE_TR_DNOTE_EXTRACT_RANGE_LR_DNOTE_EXTRACT_RANGE_TB_DNOTE_DELETE_CANCL_PBR_DNOTE_DELETE_HELP_PBNOTE_DELETE_OK_PBRKNOTE_DELETE_NOTEID_TARKNOTE_DELETE_NOTEID_LARKNOTE_CREATE_OK_PBRKNOTE_CREATE_CANCL_PBR_ANOTE_CREATE_HELP_PBNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TTEINOTE_CREATE_CONFERENCE_TBRKNOTE_CREATE_HIDDEN_TBOTNOTE_CREATE_REPLIES_TBTNOTE_CREATE_ATTRIB_LNOTNOTE_CREATE_NOTEID_TEADNOTE_CREATE_TOPIC_TBMAINOTE_CREATE_REPLY_TBOTENOTE_CREATE_OPERATION_RB_PBNOTE_CREATE_OPERATION_LMEMBER_MODIFY_OK_PBMEMBER_MODIFY_CANCL_PBTMEMBER_MODIFY_HELP_PBADMEMBER_MODIFY_SHOW_PBADMEMBER_MODIFY_APPLY_PBDMODIFY_WRITEBYPASS_TBAIMODIFY_CREATE_KEYWORD_TB_OPMODIFY_ACT_MODERATOR_TBMEMBER_MODIFY_GRANT_LT_MEMBER_MODIFY_NODES_T_NMEMBER_MODIFY_NODES_TBNMEMBER_MODIFY_AUTHORIZ_TSEEMEMBER_MODIFY_AUTHORIZ_TB_MEMBER_MODIFY_MAIL_TEADMEMBER_MODIFY_MAIL_TBF_MEMBER_MODIFY_NEWNAME_TMEMBER_MODIFY_NEWNAME_TBNOTMEMBER_MODIFY_MEMBER_TDMEMBER_MODIFY_MEMBER_LBMEMBER_DISPLY_APPLY_PBMEMBER_DISPLY_CANCL_PBDMEMBER_DISPLY_INFO_UDILMEMBER_DISPLY_HELP_PBOPMEMBER_DISPLY_INFO_LPOPMEMBER_DISPLY_MEMBER_TOMEMBER_DISPLY_MEMBER_LPMEMBER_DELETE_CANCL_PBEMEMBER_DELETE_HELP_PBJEMEMBER_DELETE_APPLY_PBEMEMBER_DELETE_OK_PBMEMBER_DELETE_MEMBER_TNMAIN_FILE_EXIT_PBLEMAIN_FILE_MAIL_DBTEMAIN_FILE_EXIT_PBESMAIN_FILE_MAIL_DB_PMAIN_FILE_MAIL_PBR_MAIN_FILE_OBJECT_PBMAIN_FILE_OPEN1_PB_MAIN_FILE_OPEN2_PB_MAIN_FILE_OPEN3_PBPMAIN_FILE_OPEN_DBPBMAIN_FILE_PDEEYMAIN_FILE_PDMTEMAIN_HELP_ABOUT_PBEMAIN_HELP_BOXNFMAIN_HELP_CONTEXT_PBCONMAIN_HELP_GLOSSARY_PBBMAIN_HELP_OVERVIEW_PBTEMAIN_HELP_PDER_MAIN_HELP_PDMNAMAIN_MENU_BARH_MAIN_OBJECT_DISPLY_DB_LMAIN_OUTLINE_PBMAIN_OUTLINE_PB$LABEL_TMAIN_POPUPEMAIN_POPUP_EXIT_PBEMAIN_POPUP_OPEN_IN_NEW_PBN_MAIN_POPUP_OPEN_PBMMAIN_POPUP_UPDATE_PBLY_MAIN_SEPARATOR_SPSPMAIN_SVN_WINDOWMAIN_TOP_TREE_PB$LABEL_MAIN_VIEW_PDECAMAIN_VIEW_PDMADMAIN_WINDOWMAIN_WORK_BOXS_MAIN_WORK_BOX$CANCELLABELTRMAIN_WORK_BOX$OKLABELADMARKER_ADD_APPLY_PBMARKER_ADD_CANCL_PBMARKER_ADD_HELP_PBEMARKER_ADD_MARKER_LMARKER_ADD_MARKER_TMARKER_ADD_NOTEID_LMARKER_ADD_NOTEID_TMARKER_ADD_OK_PBS_TMARKER_DELETE_APPLY_PBTMARKER_DELETE_CANCL_PBLMARKER_DELETE_HELP_PB_TMARKER_DELETE_MARKER_LBMARKER_DELETE_MARKER_TFMARKER_DELETE_OK_PBMARKER_DISPLY_APPLY_PBPMARKER_DISPLY_CANCL_PBTMARKER_DISPLY_HELP_PB_TMARKER_DISPLY_INFO_LY_LMARKER_DISPLY_INFO_UD_TMARKER_DISPLY_MARKER_LEMARKER_DISPLY_MARKER_TEMEMBER_ADD_APPLY_PBMEMBER_ADD_AUTHORIZ_TFYMEMBER_ADD_AUTHORIZ_TBMMEMBER_ADD_CANCL_PBMEMBER_ADD_GRANT_LOMEMBER_ADD_HELP_PBRMEMBER_ADD_MAIL_TTRMEMBER_ADD_MAIL_TBFMEMBER_ADD_MEMBER_LMEMBER_ADD_MEMBER_TMEMBER_ADD_NODES_TAMEMBER_ADD_NODES_TBMEMBER_ADD_OK_PB_UPMEMBER_DELETE_APPLY_PBPMEMBER_DELETE_CANCL_PBP@$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"ro|W$H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_dbH I x<READ_FILE_EXTRACT_DDIF_DBd_hfde`lO8859d_filNOTES$DRM_WIDGET_CREATE ;F H  l D 4IZ hfR $HELPNOTES$DRM_HELP>?DR%NOTE_EXTRACT_DDIF_OK_PB=_E'NOTE_EXTRACT_DDIF_CANL_PBNOESC_|`D,NOTE_EXTRACT_DDIF_HELP_PBNOTE_EXTRACT_DDIF_CANL_PBNOTE_EXTRACT_DDIF_OK_PBNOTE_EXTRACT_DDIF_FILE_TENOTE_EXTRACT_DDIF_FILE_LNOTE_EXTRACT_DDIF_NOTE_NBR_TThH 8I8 |@NOTE_EXTRACT_DDIF_NOTE_NBR_Tfhf`d9lNOTENOTES$DRM_WIDGET_CREATE 6;DA!" 3=Z fhf (NOTENOTES$DRM_HELP@noH \߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db ISO8859-1 note_extract_ddif_note_nbr_tH   I  <NOTE_EXTRACT_DDIF_FILE_Lad_ A!C B Z exhfdb O8859d_filNOTES$DRM_HELPdA59Bac*NOTE_EXTRACT_DDIF_NOTE_NBR_T_fH &߀" ISO8859-1Output FilenameH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db ISO8859-1 note_extract_ddif_file_lILH pIp x<NOTE_EXTRACT_DDIF_FILE_Tad_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z exhfdd XTR_NOTENOTES$DRM_HELPCDR&NOTE_EXTRACT_DDIF_FILE_LR%&NOTE_EXTRACT_DDIF_FILE_LE'_eH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db ISO8859-1 note_extract_ddif_file_lH  I <NOTE_EXTRACT_DDIF_HELP_PBd_!" $  U hfil db8859-NOTES$DRM_HELPx>l'NOTE_EXTRACT_DDIF_CANL_PB_ISH  I x<NOTE_EXTRACT_DDIF_CANL_PBd_hf`"NOTES$DRM_WIDGET_CREATE!" $ ` PU Z hf NACT_DNOTES$DRM_HELP_DHEhf0DR&OTE_ENOTES$DRM_PUSHBUTTON_ACTIVATEE_D%NOTE_EXTRACT_DDIF_OK_PB_DDIF_M_H  ߀ ISO8859-1 Cancel ACTH  @ ߀ ISO8859-1 Cancel_pb-1H pt Ip t8NOTE_EXTRACT_DDIF_OK_PBhff\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hfN _DNOTELP_NOTES$DRM_HELPEFhf@_ENOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_DG_E IH  ߀ ISO8859-1 OK k_dH ,߀ ISO8859-1OK_pb IH (`߀$ ISO8859-1Extract DDIF NoteSO8859-1 read_work_dbx_PB ro|X XH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db H I p4READ_NOTE_MODIFY_DBhfd_Xm-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,7IZ hfT  _NOTELPENOTES$DRM_HELPHIUNOTE_MODIFY_OK_PBIVAT"NOTE_MODIFY_CANCL_PB_OK_PBNOClX<X HTDCBCx_dNOTE_MODIFY_HELP_PBNOTE_MODIFY_CANCL_PB_NONOTE_MODIFY_SHOW_PBNOTE_MODIFY_OK_PBNOTE_MODIFY_KEYWORDS_TTNOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_TACTNOTE_MODIFY_NEW_NOTEID_TBD_NOTE_MODIFY_CONFERENCE_TD_TNOTE_MODIFY_CONFERENCE_TB_TNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBACTNOTE_MODIFY_HIDDEN_TBCTNOTE_MODIFY_REPLIES_TBTNOTE_MODIFY_ATTRIB_LACTNOTE_MODIFY_NOTEID_TACTNOTE_MODIFY_NOTEID_LACTXTH  I 8NOTE_MODIFY_NOTEID_Lf A!A Z |hfF NOTES$DRM_HELPJK7TEH ߀ ISO8859-1Note-idH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_noteid_lIH I t8NOTE_MODIFY_NOTEID_T rhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf    NOTES$DRM_HELPRLhfHZINONOTES$DRM_VALUE_CHANGED"NOTE_MODIFY_NOTEID_LP"NOTE_MODIFY_NOTEID_LCF_H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_noteid_lLH  I 8NOTE_MODIFY_ATTRIB_L r A!C  Z |hfd_ y_dbSO885NOTES$DRM_HELPfMN"NOTE_MODIFY_NOTEID_T ILH 'X ߀# ISO8859-1Note Attributes:FILH ` ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_attrib_l_H < I< t8NOTE_MODIFY_REPLIES_TBrhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  Z hf NFY_NONOTES$DRM_HELPOTEP"NOTE_MODIFY_ATTRIB_LICAH $l ߀  ISO8859-1 Allow RepliesBH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_replies_tb_TH D ID t8NOTE_MODIFY_HIDDEN_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELPQR$NOTE_MODIFY_REPLIES_TBOH % ߀! ISO8859-1Hide This Note_TBFMEMBER_ADD_MEMBER_LMEMBER_ADD_MEMBER_TMEMBER_ADD_NODES_TAMEMBER_ADD_NODES_TBMEMBER_ADD_OK_PB_UPMEMBER_DELETE_APPLY_PBPMEMBER_DELETE_CANCL_PBPro|YHH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_hidden_tbH I t8NOTE_MODIFY_TITLE_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf ES$DRNOTES$DRM_HELPSA$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"hf4[MODIFNOTES$DRM_VALUE_CHANGEDTAN#NOTE_MODIFY_HIDDEN_TB_LPH ߀ ISO8859-1TitleadH d߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_title_tbH `I` p4NOTE_MODIFY_TITLE_Thfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf ES$DRNOTES$DRM_HELPU"NOTE_MODIFY_TITLE_TBES$DR"NOTE_MODIFY_TITLE_TBN#H d߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_title_tblH I x<NOTE_MODIFY_CONFERENCE_TBd_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hff ENOTES$DRM_HELPEVhf8\_MODI_TBENOTES$DRM_VALUE_CHANGEDW!NOTE_MODIFY_TITLE_TPdeH ,߀( ISO8859-1Pointer to ConferenceH @߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_conference_tbH pIp x<NOTE_MODIFY_CONFERENCE_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RM_HENOTES$DRM_HELPX8'NOTE_MODIFY_CONFERENCE_TBLUE_'NOTE_MODIFY_CONFERENCE_TBTE_M H T߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_conference_tbH  I x<NOTE_MODIFY_NEW_NOTEID_TBd_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf NOTES$DRM_HELPEYhf8]NFY_CONOTES$DRM_VALUE_CHANGEDZCO&NOTE_MODIFY_CONFERENCE_T" H " ߀ ISO8859-1 New Note-idH H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_new_noteid_tbH p| Ip x<NOTE_MODIFY_NEW_NOTEID_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RM_HENOTES$DRM_HELP[8'NOTE_MODIFY_NEW_NOTEID_TBLUE_'NOTE_MODIFY_NEW_NOTEID_TBTE_MNOH P ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|Z H H I t8NOTE_MODIFY_KEYWORDS_TBhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf fNOTES$DRM_HELPE\hf4^MODIFNOTES$DRM_VALUE_CHANGED]IF&NOTE_MODIFY_NEW_NOTEID_TE_TH ߀ ISO8859-1KeywordsTH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_keywords_tbH lIl t8NOTE_MODIFY_KEYWORDS_Trhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hff RM_HENOTES$DRM_HELP^4%NOTE_MODIFY_KEYWORDS_TBVALUE_%NOTE_MODIFY_KEYWORDS_TBNOTE_MTEH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_keywords_tbPEH x Ix p4NOTE_MODIFY_SHOW_PBhfd_X-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf NOTES$DRM_HELP_DRhf(^4NONOTES$DRM_PUSHBUTTON_ACTIVATE`IFNOTE_MODIFY_OK_PBW_NOS_H ߀ ISO8859-1 Show TH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_show_pbIFH I 4NOTE_MODIFY_HELP_PB!" $  U xhf r odify ISNOTES$DRM_HELPmHl"NOTE_MODIFY_CANCL_PBRM_HEDIH I t8NOTE_MODIFY_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTE_ANCL_NOTES$DRM_HELPafhf(,4ONOTENOTES$DRM_PUSHBUTTON_ACTIVATEb!NOTE_MODIFY_SHOW_PBID_TEEH ߀ ISO8859-1 Cancel EMBH   ߀ ISO8859-1 Cancel_pbR_H lL Il p4NOTE_MODIFY_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPNOTES$DRM_HELPchf<TENOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEd_M_TH  ߀ ISO8859-1 OK ARKH  ߀ ISO8859-1OK_pbENH '4 ߀# ISO8859-1Show/Modify NoteCREH d ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db_TOPIC_TBARKNOTE_DELETE_CANCL_PBARKNOTE_DELETE_HELP_PBNOTE_DELETE_NOTEID_L_TNOTE_DELETE_NOTEID_TLENOTE_DELETE_OK_PBERNOTE_EXTRACT_AUTHOR_TBNOTE_EXTRACT_AUTHOR_TBYNOTE_EXTRACT_BEFORE_TMNOTE_EXTRACT_BEFORE_TBBNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_INCL_REPL_TBFNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_MARK_SEEN_TBESNOTE_EXTRACT_OPTIONS_LPNOTE_EXTRACT_RANGE_LBPNOTE_EXTRACT_RANGE_TBPNOTE_EXTRACT_RANGE_TBUPNOTE_EXTRACT_SELECTION_LTTRNOTE_EXTRACT_SINCE_TANCNOTE_EXTRACT_SINCE_TBTNOTE_EXTRACT_TITLE_TW_RNOTE_EXTRACT_TITLE_TBTENOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|[ HH I p4READ_FILE_PRINT_DB1hfd_Xn-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ L_hf  TES$DNOTES$DRM_HELPeTEfBUNOTE_PRINT_OK_PBTE!NOTE_PRINT_CANCL_PBID_TENO_MNCt\D0XHTDCBlCT_<T LOPOBNOTE_PRINT_HELP_PBDNOTE_PRINT_CANCL_PBNOTE_PRINT_INVOK_WIDGT_PBODNOTE_PRINT_OK_PBACTNOTE_PRINT_INCL_HEADER_TBD_NOTE_PRINT_INCL_REPLY_TBD_TNOTE_PRINT_MARK_SEEN_TBNOTE_PRINT_OPTIONS_L_TNOTE_PRINT_UNSEEN_TBACTNOTE_PRINT_TITLE_TTNOTE_PRINT_TITLE_TBNOTE_PRINT_KEYWORD_TTTRNOTE_PRINT_KEYWORD_TBTENOB1T$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1:"TE_PRINT_SINCE_T_NOTE_PRINT_SINCE_TBNOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBSINNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBACTNOTE_PRINT_SELECTION_LTNOTE_PRINT_RANGE_TTNOTE_PRINT_RANGE_LENOTE_PRINT_RANGE_TBH |I| p4NOTE_PRINT_RANGE_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf Z_hfNOTES$DRM_HELPEghfDR0_ENOTES$DRM_VALUE_CHANGEDhT$NOTE_PRINT_SELECTION_LIDH !߀ ISO8859-1 Note-rangeH T߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_range_tb_fiH  I 4NOTE_PRINT_RANGE_L1 A!A Z xhf r rint_ ISONOTES$DRM_HELPrihfH X߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_range_tb H X8IX p4NOTE_PRINT_RANGE_T1hfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hf _hfRM_HENOTES$DRM_HELPi0 NOTE_PRINT_RANGE_L$DR NOTE_PRINT_RANGE_LT-1H   I 8NOTE_PRINT_SELECTION_L A!C  Z |hfA NOTES$DRM_HELPj$k NOTE_PRINT_RANGE_TlH *t ߀& ISO8859-1Selection Criteria:H x ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_selection_lH  I t8NOTE_PRINT_AUTHOR_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf _PRINTNOTES$DRM_HELPRlhf04`NOTE_NGE_LNOTES$DRM_VALUE_CHANGEDm$NOTE_PRINT_SELECTION_LTENOH  ߀ ISO8859-1AuthorH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_author_tbE_DG_E IH  ߀ ISO8859-1 OK k_dH ,߀ ISO8859-1OK_pb IH (`߀$ ISO8859-1Extract DDIF NoteSO8859-1 read_work_dbx_PB ro|\ pH `I` p4NOTE_PRINT_AUTHOR_Thfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf ES$DRNOTES$DRM_HELPn0"NOTE_PRINT_AUTHOR_TBES$DR"NOTE_PRINT_AUTHOR_TB$H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_author_tbIVH tI t8NOTE_PRINT_BEFORE_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf  NOTES$DRM_HELPRohf04aNOTE_THOR_NOTES$DRM_VALUE_CHANGEDp!NOTE_PRINT_AUTHOR_T_LTE_MH D߀ ISO8859-1BeforeH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_before_tbIFH `I` p4NOTE_PRINT_BEFORE_Thfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf ES$DRNOTES$DRM_HELPq0"NOTE_PRINT_BEFORE_TBES$DR"NOTE_PRINT_BEFORE_TB!noH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_before_tbH |LI| p4NOTE_PRINT_SINCE_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf NOTES$DRM_HELPErhf0bNT_BEFNOTES$DRM_VALUE_CHANGEDsE_!NOTE_PRINT_BEFORE_TR_T_L59H ߀ ISO8859-1Since_pH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_since_tb H `I` p4NOTE_PRINT_SINCE_T1hfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf RM_HENOTES$DRM_HELPt0!NOTE_PRINT_SINCE_TBDRM_VA!NOTE_PRINT_SINCE_TBH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_since_tbEATH | I| t8NOTE_PRINT_KEYWORD_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf  NOTES$DRM_HELPRuhf04cNOTE_NCE_TNOTES$DRM_VALUE_CHANGEDv NOTE_PRINT_SINCE_T_L59H  ߀ ISO8859-1KeywordH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_keyword_tb  <Z hf ES$DRNOTES$DRM_HELPQR$NOTE_MODIFY_REPLIES_TBOH % ߀! ISO8859-1Hide This Note_TBFMEMBER_ADD_MEMBER_LMEMBER_ADD_MEMBER_TMEMBER_ADD_NODES_TAMEMBER_ADD_NODES_TBMEMBER_ADD_OK_PB_UPMEMBER_DELETE_APPLY_PBPMEMBER_DELETE_CANCL_PBPro|]PhH dId t8NOTE_PRINT_KEYWORD_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELPw4#NOTE_PRINT_KEYWORD_TBM_VA#NOTE_PRINT_KEYWORD_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_keyword_tbH |xI| p4NOTE_PRINT_TITLE_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf fNOTES$DRM_HELPExhf0dPRINTNOTES$DRM_VALUE_CHANGEDyEY"NOTE_PRINT_KEYWORD_TT_LM_H H߀ ISO8859-1TitleH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_title_tbH `I` p4NOTE_PRINT_TITLE_T1hfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hff RM_HENOTES$DRM_HELPC0@$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1n"z0!NOTE_PRINT_TITLE_TBDRM_VA!NOTE_PRINT_TITLE_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_title_tb!H @LI@ t8NOTE_PRINT_UNSEEN_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf  NOTES$DRM_HELPR{| NOTE_PRINT_TITLE_TH #߀ ISO8859-1 Unseen NotesH p߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_unseen_tbH  I 8NOTE_PRINT_OPTIONS_L r A!C  Z |hfd_ _dbO8859NOTES$DRM_HELP_}~f"NOTE_PRINT_UNSEEN_TBNOTEH )x ߀% ISO8859-1Selection Options:H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_options_lH D ID t8NOTE_PRINT_MARK_SEEN_TBhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf _PRIN_TBNOTES$DRM_HELPR"NOTE_PRINT_OPTIONS_L1H # ߀ ISO8859-1 Mark as SeendifH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_mark_seen_tbH L IL x<NOTE_PRINT_INCL_REPLY_TBad_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf NNOTENOTES$DRM_HELP%NOTE_PRINT_MARK_SEEN_TBNOTE_P_pH & ߀" ISO8859-1Include Replies1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|^c4 H \    D 4  L $ \ $ l H  XX Z YT Y Z X 0 ZH Z` YP | Y X X Z Xl Z Yd Y4 \H [ ` \t \D__ _8 ] _< ] \ T ] _l ]x [X [ [ [t  \ $ \8 ]L ]H ]a4<a bh(a0 Ta4laa\`(ab\ cbHc`c4cbDxcDb ` t   p   H 0HX `x   x 4 Ld@|\ )0<) X)0 t*(@ (8((( )0*L(`(pt(%d'\ H LHK LL, pM,M M K< 4K NJ0 ' LTLT XM(K$J KLtLt '`NNN\pK \K DMPNX' lNOTE_PRINT_TITLE_TENOTE_PRINT_TITLE_TBNOTE_PRINT_KEYWORD_TNCLNOTE_PRINT_KEYWORD_TBENOTE_PRINT_SINCE_TNOTE_PRINT_SINCE_TBNOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBEMBNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBBTNOTE_PRINT_SELECTION_LBNOTE_PRINT_RANGE_TBNOTE_PRINT_RANGE_LBNOTE_PRINT_RANGE_TBREAD_FILE_PRINT_DBNOTE_MODIFY_OK_PBL_NOTE_MODIFY_CANCL_PBO_UNOTE_MODIFY_HELP_PBNOTE_MODIFY_SHOW_PBNOTE_MODIFY_KEYWORDS_TLNOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_T_CANOTE_MODIFY_NEW_NOTEID_TB_PNOTE_MODIFY_CONFERENCE_TBLNOTE_MODIFY_CONFERENCE_TB_DNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBARKNOTE_MODIFY_HIDDEN_TB_ANOTE_MODIFY_REPLIES_TBHNOTE_MODIFY_ATTRIB_LPLYNOTE_MODIFY_NOTEID_T_TNOTE_MODIFY_NOTEID_LARKREAD_NOTE_MODIFY_DBREAD_FILE_EXTRACT_DDIF_DBDEREAD_FILE_EXTRACT_DB_DEREAD_NOTE_DELETE_DBREAD_NOTE_CREATE_DBREAD_WORK_TEXTNREAD_WORK_TEXT_SBOTREAD_WORK_SEPARATOR_SPDREAD_WORK_UNSEEN_PBREAD_WORK_DB_REREAD_WORK_CREATE_REPLY_PBREREAD_WORNOTE_SETSEEN_OK_PBDNOTE_SETSEEN_CANCL_PBORNOTE_SETSEEN_HELP_PBWORNOTE_SETSEEN_SINCE_TWORNOTE_SETSEEN_BEFORE_TNENOTE_SETSEEN_ALL_TBNOTE_SETSEEN_SINCE_TBORNOTE_SETSEEN_BEFORE_TBENOTE_SETSEEN_RBNOTE_SEARCH_FIND_PBNOTE_SEARCH_CANCL_PBWORNOTE_SEARCH_HELP_PBNOTE_SEARCH_FINDNEXT_PBNOTE_SEARCH_IN_NEW_TBE_NOTE_SEARCH_NOTE_T_NOTE_SEARCH_NOTE_TBNOTE_SEARCH_STRING_TTONOTE_SEARCH_STRING_LEADNOTE_PRINT_OK_PBEADNOTE_PRINT_CANCL_PBNOTE_PRINT_HELP_PBDNOTE_PRINT_INVOK_WIDGT_PBILNOTE_PRINT_INCL_HEADER_TBPDNOTE_PRINT_INCL_REPLY_TBMENNOTE_PRINT_MARK_SEEN_TBNOTE_PRINT_OPTIONS_LOTENOTE_PRINT_UNSEEN_TBOTENOTE_MAIL_MEMBERS_TBLNNOTE_MAIL_MODERATORS_TBNOTE_MAIL_OK_PBNOTE_MAIL_OPERATION_LY_NOTE_MAIL_OPERATION_RB_NOTE_MAIL_SEND_TBHENOTE_MAIL_SUBJECT_TNOTE_MAIL_SUBJECT_TBSPLNOTE_MAIL_TO_LBNOTE_MAIL_TO_RBNOTE_MAIL_USERNAME_TBERNOTE_MAIL_USERNAME_TBY_NOTE_MODIFY_ATTRIB_LHORNOTE_MODIFY_CANCL_PB_AUNOTE_MODIFY_CONFERENCE_T_CANOTE_MODIFY_CONFERENCE_TBT_NOTE_MODIFY_HELP_PBNOTE_MODIFY_HIDDEN_TBMANOTE_MODIFY_KEYWORDS_TANOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_TBERNOTE_MODIFY_NEW_NOTEID_TBTNOTE_MODIFY_NOTEID_L_TBNOTE_MODIFY_NOTEID_TES_NOTE_MODIFY_OK_PBNONOTE_MODIFY_REPLIES_TBKNOTE_MODIFY_SHOW_PBNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBEATNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBOTENOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBARKNOTE_PRINT_KEYWORD_TE_TNOTE_PRINT_KEYWORD_TBENNOTE_PRINT_RANGE_L_NOTE_PRINT_RANGE_T_NOTE_PRINT_RANGE_TBNOTE_PRINT_SELECTION_L_NOTE_PRINT_SINCE_TENOTE_PRINT_SINCE_TBNOTE_PRINT_TITLE_TENOTE_PRINT_TITLE_TBOBJECT_ADD_APPLY_PBOBJECT_ADD_CANCL_PBOBJECT_ADD_FILE_LREOBJECT_ADD_FILE_TTEOBJECT_ADD_HELP_PBKOBJECT_ADD_OBJECT_LOBJECT_ADD_OBJECT_TOBJECT_ADD_OK_PBOTEOBJECT_DELETE_APPLY_PBPOBJECT_DELETE_CANCL_PB_OBJECT_DELETE_HELP_PBR_OBJECT_DELETE_OBJECT_L_OBJECT_DELETE_OBJECT_T_OBJECT_DELETE_OK_PBOBJECT_DISPLY_APPLY_PBLOBJECT_DISPLY_CANCL_PBCOBJECT_DISPLY_HELP_PBCTOBJECT_DISPLY_INFO_LACTOBJECT_DISPLY_INFO_UDCTOBJECT_DISPLY_OBJECT_LTOBJECT_DISPLY_OBJECT_TTOBJECT_MODIFY_APPLY_PBTOBJECT_MODIFY_CANCL_PBTOBJECT_MODIFY_FILE_LEXTOBJECT_MODIFY_FILE_TOTEOBJECT_MODIFY_HELP_PBTEOBJECT_MODIFY_OBJECT_LEOBJECT_MODIFY_OBJECT_TEOBJECT_MODIFY_OK_PBro|_LXH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_incl_reply_tbH DID x<NOTE_PRINT_INCL_HEADER_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C  Z Zhf NOTES$DRM_HELPR&NOTE_PRINT_INCL_REPLY_TBEEN_TH *߀& ISO8859-1Include Note HeaderH ,߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_incl_header_tbTH hI x<NOTE_PRINT_INVOK_WIDGT_PBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE!" $ ` PU Z Zhf NOTES$DRM_HELPRhf0PRINTNOTES$DRM_PUSHBUTTON_ACTIVATENTNOTE_PRINT_OK_PBLTEH !<߀ ISO8859-1 Options...NH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_invok_widgt_pbH I 4NOTE_PRINT_HELP_PB1!" $  U xhf r rint_ ISONOTES$DRM_HELPret_lf!NOTE_PRINT_CANCL_PBNOTE_pH I p4NOTE_PRINT_CANCL_PBhfX"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf NT_CANNOTES$DRM_HELPRD@S$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1qb"hf(0NOTES$DRM_PUSHBUTTON_ACTIVATECT'NOTE_PRINT_INVOK_WIDGT_PBTEH ߀ ISO8859-1 Cancel  reH  p߀ ISO8859-1 Cancel_pbntH lIl p4NOTE_PRINT_OK_PBPBhfX"NOTES$DRM_WIDGET_CREATE !" !# " \U Z hf TES$DRNOTES$DRM_HELP0hf<TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATENT鮈H ߀ ISO8859-1 OK H X ߀ ISO8859-1OK_pb_LH " ߀ ISO8859-1 Print NotesH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db88H  I t8READ_FILE_DDIF_PRINT_DBhfle\o ISO readNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ DhfR DRM_HNOTES$DRM_HELPDTE#NOTE_DDIF_PRINT_OK_PB&NOTE_DDIF_PRINT_CANCL_PBNChT< NOTE_DDIF_PRINT_HELP_PBNOTE_DDIF_PRINT_CANCL_PBDNOTE_DDIF_PRINT_WIDGT_PBNOTE_DDIF_PRINT_OK_PBNOTE_DDIF_PRINT_LTNOTE_DDIF_PRINT_NBR_LO߀H    I  t8NOTE_DDIF_PRINT_NBR_LBhfle\ ISO readNOTES$DRM_WIDGET_CREATE A!A Z hf@ NOTES$DRM_HELP 88H :,߀6 ISO8859-1#DDIF notes converted to PostScript.(`߀$ ISO8859-1Extract DDIF NoteSO8859-1 read_work_dbx_PB ro|` DH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 read_file_ddif_print_db ISO8859-1 note_ddif_print_nbr_lH  I 4NOTE_DDIF_PRINT_L-1 A!C  Z xhf r rint_ ISONOTES$DRM_HELPidb9-#NOTE_DDIF_PRINT_NBR_LSOH C߀? ISO8859-1,Select a PostScript printer using Options...|H I x<NOTE_DDIF_PRINT_WIDGT_PBionhf`! NOTES$DRM_WIDGET_CREATE!" $ h XU Z hfNO INT_NNOTES$DRM_HELPTEhfHE8NOTES$DRM_PUSHBUTTON_ACTIVATEIN#NOTE_DDIF_PRINT_OK_PB88H !X߀ ISO8859-1 Options...9H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 read_file_ddif_print_db ISO8859-1 note_ddif_print_widgt_pbH ,I 8NOTE_DDIF_PRINT_HELP_PB!" $  U |hfd_ _dbO8859NOTES$DRM_HELPdl &NOTE_DDIF_PRINT_CANCL_PBNOTERIH ,I x<NOTE_DDIF_PRINT_CANCL_PBhf` $NOTES$DRM_WIDGET_CREATE!" $ h XU Z hf F_PRI_PBNOTES$DRM_HELPTEhfHE8NOTES$DRM_PUSHBUTTON_ACTIVATEIN&NOTE_DDIF_PRINT_WIDGT_PBH 8߀ ISO8859-1 Cancel  H  ߀ ISO8859-1 Cancel_pbH xIx t8NOTE_DDIF_PRINT_OK_PBPBhff\NOTES$DRM_WIDGET_CREATE !" !#" hU $Z hfI NOTELPNOTES$DRM_HELPEhfHNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_DH D߀ ISO8859-1 OK |H  ߀ ISO8859-1OK_pbM_H ' ߀# ISO8859-1Print DDIF NotesT_UH 4 ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 read_file_ddif_print_dbISOH p I p4READ_NOTE_SEARCH_DBhfd_Xp-1 NOTES$DRM_WIDGET_CREATE ;F H  ` < ,IZ Ihf  ES$DRNOTES$DRM_HELPT!NOTE_SEARCH_FIND_PBON_ACT"NOTE_SEARCH_CANCL_PBNT_WI x`L4DLNOTE_SEARCH_HELP_PBNOTE_SEARCH_CANCL_PBIDGNOTE_SEARCH_FINDNEXT_PBNOTE_SEARCH_FIND_PBNOTE_SEARCH_IN_NEW_TBT_NOTE_SEARCH_NOTE_TNOTE_SEARCH_NOTE_TBNOTE_SEARCH_STRING_TT_HNOTE_SEARCH_STRING_LNCL_PH  D I 8NOTE_SEARCH_STRING_Lf A!A Z |hfF NOTES$DRM_HELPH $(߀  ISO8859-1 Search StringEN_TBNOTE_P_pH & ߀" ISO8859-1Include Replies1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|a4$H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_string_lH I t8NOTE_SEARCH_STRING_T chfnf\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hfI   NOTES$DRM_HELPRhfHeTNONOTES$DRM_VALUE_CHANGED"NOTE_SEARCH_STRING_LNT_WI"NOTE_SEARCH_STRING_L59H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_string_lH |I| p4NOTE_SEARCH_NOTE_TBhff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf NOTES$DRM_HELPDRhfR0HNOTES$DRM_VALUE_CHANGEDE_"NOTE_SEARCH_STRING_TTRING IH !\߀ ISO8859-1 Note-rangeH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_note_tbH ` I` p4NOTE_SEARCH_NOTE_T1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf RM_HENOTES$DRM_HELP0!NOTE_SEARCH_NOTE_TBDRM_VA!NOTE_SEARCH_NOTE_TBH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_note_tbEH @dI@ t8NOTE_SEARCH_IN_NEW_TB chfnf\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf  NOTES$DRM_HELPR NOTE_SEARCH_NOTE_TH )4߀% ISO8859-1Read in New WindowH  ߀ ISO8859-1 confE!$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_in_new_tbH  I t8NOTE_SEARCH_FINDNEXT_PBhfnf\ ISO readNOTES$DRM_WIDGET_CREATE!" $ \ LU Z Zhf NOTES$DRM_HELPRhf,NONOTES$DRM_PUSHBUTTON_ACTIVATE_S!NOTE_SEARCH_FIND_PBNG_LN;H  ߀ ISO8859-1 Find NextH ( ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_findnext_pbPBH \ I 4NOTE_SEARCH_HELP_PB!" $  U xhf r earch ISNOTES$DRM_HELPs_pl"NOTE_SEARCH_CANCL_PBES$DRH 0 I t8NOTE_SEARCH_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTE_ANCL_NOTES$DRM_HELPRhf,NONOTES$DRM_PUSHBUTTON_ACTIVATE_S%NOTE_SEARCH_FINDNEXT_PBNT_WISO8859-1 read_work_dbx_PB ro|b|tH ߀ ISO8859-1 Cancel  BH  ߀ ISO8859-1 Cancel_pb H l4Il p4NOTE_SEARCH_FIND_PBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPRNOTES$DRM_HELPhf<NONOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_SPH h߀ ISO8859-1 Find H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_find_pb H #߀ ISO8859-1 Search Notes @H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_dbTH h Ih t8READ_NOTE_SETSEEN_DB chfnf\q ISO readNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0IZ ThfE DRM_HNOTES$DRM_HELPTTE NOTE_SETSEEN_OK_PB#NOTE_SETSEEN_CANCL_PBT_WI_SRCNX@(NOTE_SETSEEN_HELP_PBNOTE_SETSEEN_CANCL_PBH_NOTE_SETSEEN_OK_PB_NOTE_SETSEEN_SINCE_TCH_NOTE_SETSEEN_BEFORE_TH_NOTE_SETSEEN_RBE_H `I` 0NOTE_SETSEEN_RB ;F A!"A? /Z hf  @NOTES$DRM_HELPfE H0TNOTE_SETSEEN_ALL_TBNOTE_SETSEEN_SINCE_TBNOTE_SETSEEN_BEFORE_TBT_H 4DI4 t8NOTE_SETSEEN_BEFORE_TBhf\ NOTES$DRM_WIDGET_CREATE< $` Z hf ES$DRNOTES$DRM_HELPhff  NOTES$DRM_VALUE_CHANGEDTEXTH ߀ ISO8859-1BeforeTH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_before_tbBH @0 I@ t8NOTE_SETSEEN_SINCE_TB chfnf\ ISO readNOTES$DRM_WIDGET_CREATE< 0<` Z ethfef ES$DRM_HENOTES$DRM_HELP hf RM_VANOTES$DRM_VALUE_CHANGEDINTBH  ߀ ISO8859-1SinceS_H X ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_since_tbE_H < I< p4NOTE_SETSEEN_ALL_TBhff_X-1 NOTES$DRM_WIDGET_CREATE< ,<` Z tehfen RNOTES$DRM_HELPEhffRNOTES$DRM_VALUE_CHANGED_TH  \ ߀ ISO8859-1 All NotesTEH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_all_tbH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_rbW_RNOTE_EXTRACT_TITLE_TBTENOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|c(,H \I\ t8NOTE_SETSEEN_BEFORE_T chfnf\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z DRhfE NOTES$DRM_HELPDRNOTE_SETSEEN_RBNOTE_SETSEEN_RBEFORE_H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_before_tbsH tpIt t8NOTE_SETSEEN_SINCE_T chfnf\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3AC PB $ 0Z hf TES$DNOTES$DRM_HELPSENOTE_SETSEEN_RB_SETSE#NOTE_SETSEEN_BEFORE_TETSEH D߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_since_tbe_H I 8NOTE_SETSEEN_HELP_PB c!" $  U |hfad een_d ISO8NOTES$DRM_HELPtl#NOTE_SETSEEN_CANCL_PBH |I| t8NOTE_SETSEEN_CANCL_PB chf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NEEN_CNOTES$DRM_HELPhf,HELPNOTES$DRM_PUSHBUTTON_ACTIVATE_SNO NOTE_SETSEEN_OK_PBNCLH ߀ ISO8859-1 Cancel H  8߀ ISO8859-1 Cancel_pbEH llIl p4NOTE_SETSEEN_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfN _CNOTELPNOTES$DRM_HELPhf<NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATENO_ShH ߀ ISO8859-1 OK H  ߀ ISO8859-1OK_pbH T ߀ ISO8859-1Set SeenTIVH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_dbDIFH  I t8READ_NOTE_READ_NOTE_DBchfnf\r ISO readNOTES$DRM_WIDGET_CREATE ;F H  h @ 0IZ ThfE DRM_HNOTES$DRM_HELPTTE'READ_NOTE_READ_NOTE_OK_PB'READ_NOTF6^$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1H"E_READ_NOTE_CL_PBN|`D( TREAD_NOTE_READ_NOTE_HELP_PBREAD_NOTE_READ_NOTE_CL_PB_READ_NOTE_READ_NOTE_OK_PBTEREAD_NOTE_READ_IN_NEW_TBSETREAD_NOTE_READ_NOTE_ID_TOTEREAD_NOTE_READ_NOTE_ID_LCH_H  d I <READ_NOTE_READ_NOTE_ID_Lf A!A Z hfF NOTES$DRM_HELPNOH  ߀ ISO8859-1Note-idH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_db ISO8859-1 read_note_read_note_id_lO8859-1 Search StringEN_TBNOTE_P_pH & ߀" ISO8859-1Include Replies1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|dL$H I x<READ_NOTE_READ_NOTE_ID_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf_l  NOTES$DRM_HELPRhfTLfTRENOTES$DRM_VALUE_CHANGED&READ_NOTE_READ_NOTE_ID_LL_PB&READ_NOTE_READ_NOTE_ID_L|H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_db ISO8859-1 read_note_read_note_id_lISOH LIL x<READ_NOTE_READ_IN_NEW_TBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hfad _note NOTES$DRM_HELPHE&READ_NOTE_READ_NOTE_ID_TREH )߀% ISO8859-1Read in New WindowPH ,߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_db ISO8859-1 read_note_read_in_new_tbconH hI <READ_NOTE_READ_NOTE_HELP_PB!" $  U hfe_ d_pbSO885NOTES$DRM_HELP_l 'READ_NOTE_READ_NOTE_CL_PBS$DR6H lI x<READ_NOTE_READ_NOTE_CL_PBBhf`"NOTES$DRM_WIDGET_CREATE!" $ ` PU Z hf R_READNOTES$DRM_HELPRhfHE0RENOTES$DRM_PUSHBUTTON_ACTIVATETEAN'READ_NOTE_READ_NOTE_OK_PB_LL9-H |߀ ISO8859-1 Cancel @H  ߀ ISO8859-1 Cancel_pbhH tLIt x<READ_NOTE_READ_NOTE_OK_PBBhf`"NOTES$DRM_WIDGET_CREATE !" !#" dU Z hf TES$DRNOTES$DRM_HELPhfDTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEE_59H ߀ ISO8859-1 OK earH  ߀ ISO8859-1OK_pbH #< ߀ ISO8859-1 Read Note-idH l ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_dbH   I h ,READ_POPUPIhf-1Pte_pd ISO8NOTES$DRM_WIDGET_CREATE;F ( Z hfIS read_d_notNOTES$DRM_HELP READ_POPUP_NOTE_PBRHE fx`TLB8AAB_READ_POPUP_CLOSE_CONF_PBREAD_POPUP_DISMISS_PBMAIN_SEPARATOR_SPREAD_POPUP_PRINT_PBREAD_POPUP_CREATE_TOPIC_PBNREAD_POPUP_CREATE_REPLY_PBNMAIN_SEPARATOR_SPOTREAD_POPUP_NOTE_PBTREAD_POPUP_LAST_NOTE_PBREAD_POPUP_BACK_PDEREAD_POPUP_NEXT_PDEREAD_POPUP_NEXT_UNSEEN_PBTEH l| Il x<READ_POPUP_NEXT_UNSEEN_PBhfd`sO8NOTIDGETNOTES$DRM_WIDGET_CREATE* \ L <U Z hfot HELPNOTES$DRM_HELPEPBhfHE NOTES$DRM_PUSHBUTTON_ACTIVATE=SO8859-1 read_work_dbx_PB ro|eTH "߀ ISO8859-1 Next UnseenH N߀J ISO8859-1 read_popup ISO8859-1 read_popup_next_unseen_pbH 4I 4READ_POPUP_NEXT_PDE@ ;F *  Z hf <NOTES$DRM_HELPHE*EPB!READ_POPUP_NEXT_PDMSHH I 4`READ_POPUP_NEXT_PDM;F PREAD_POPUP_NEXT_TOPIC_PB_HEREAD_POPUP_NEXT_REPLY_PBREAD_POPUP_NEXT_NOTE_PBREAD_POPUP_NEXT_PAGE_PBeaH hIh t8READ_POPUP_NEXT_PAGE_PBhf\u PNOTES$DRM_WIDGET_CREATE* X H 8U Z PBhfAD T_REPREADNOTES$DRM_HELPE_NhfGE_POPUDMNOTES$DRM_PUSHBUTTON_ACTIVATEATFH  0xFF56:H sT߀o ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_page_pbH LtIL t8READ_POPUP_NEXT_NOTE_PBhfex\t IS reaNOTES$DRM_WIDGET_CREATE* < ,U Z hf AD_REPNOTES$DRM_HELPEhf GEPOPUNOTES$DRM_PUSHBUTTON_ACTIVATEON`H s߀o ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_note_pbH l\Il x<READ_POPUP_NEXT_REPLY_PBpuphfpd`vSO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEH  0xFFB3:H td߀p ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_reply_pbH lIl x<READ_POPUP_NEXT_TOPIC_PBpuphfpd`wSO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATESH  0xFFB2:H t ߀p ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_topic_pbS$H  I 4READ_POPUP_BACK_PDE@ ;F *  Z hf <NOTES$DRM_HELPPE!READ_POPUP_BACK_PDMUSHBUH 4 I 4`READ_POPUP_BACK_PDM;F PREAD_POPUP_BACK_TOPIC_PB_HEREAD_POPUP_BACK_REPLY_PBREAD_POPUP_BACK_NOTE_PBREAD_POPUP_BACK_PAGE_PBH hd Ih t8READ_POPUP_BACK_PAGE_PBhf\y PNOTES$DRM_GU$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Ո"(WIDGET_CREATE* X H 8U Z PBhfAD K_REPREADNOTES$DRM_HELPE_BhfGE_POPUDMUNOTES$DRM_PUSHBUTTON_ACTIVATEATF59H  x 0xFF55:5H s߀o ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_page_pbOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|f H LIL t8READ_POPUP_BACK_NOTE_PBhfac\x IS reaNOTES$DRM_WIDGET_CREATE* < ,U Z hf AD_REPNOTES$DRM_HELPEhf GEPOPUNOTES$DRM_PUSHBUTTON_ACTIVATEONaH s߀o ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_note_pbHH l`Il x<READ_POPUP_BACK_REPLY_PBpuphfpd`zSO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATElH  0xFFB1:TH th߀p ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_reply_pbTBH lIl x<READ_POPUP_BACK_TOPIC_PBpuphfpd`{SO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATESNFH  0xFFB5:H t߀p ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_topic_pbTEH hIh t8READ_POPUP_LAST_NOTE_PBhfac\| IS reaNOTES$DRM_WIDGET_CREATE* X H 8U Z hff PENOTES$DRM_HELPEhffUUNOTES$DRM_PUSHBUTTON_ACTIVATEATENH %8߀! ISO8859-1Last Read NoteEH  0xFFAD:DH L߀H ISO8859-1 read_popup ISO8859-1 read_popup_last_note_pbE_H P IP x<READ_POPUP_CREATE_REPLY_PBphfno`~SaNOTENOTES$DRM_WIDGET_CREATE* @ 0U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTTEH #l߀ ISO8859-1 Create ReplyON_H M ߀I ISO8859-1 read_popup ISO8859-1 read_popup_crea_reply_pbOH P IP x<READ_POPUP_CREATE_TOPIC_PBphfre`SaNOTENOTES$DRM_WIDGET_CREATE* @ 0U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTSTEH #h ߀ ISO8859-1 Create TopicHOWH M ߀I ISO8859-1 read_popup ISO8859-1 read_popup_crea_topic_pbEH H IH p4READ_POPUP_PRINT_PBhfupXc_pbNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTFP_H d ߀ ISO8859-1PrintJEH H ߀D ISO8859-1 read_popup ISO8859-1 read_popup_print_pbJEH L IL t8READ_POPUP_DISMISS_PB_phfri\NOTENOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELPfhf NOTENOTES$DRM_PUSHBUTTON_ACTIVATEPTEH #L߀ ISO8859-1 Close WindowT_MODIFY_OK_PBro|gH J߀F ISO8859-1 read_popup ISO8859-1 read_popup_dismiss_pbH PIP x<READ_POPUP_CLOSE_CONF_PBpuphfss`ENOTENOTES$DRM_WIDGET_CREATE* @ 0U Z hf ENOTENOTES$DRM_HELPfhf ENOTENOTES$DRM_PUSHBUTTON_ACTIVATE`coH '\߀# ISO8859-1Close Conference885H M߀I ISO8859-1 read_popup ISO8859-1 read_popup_close_conf_pbH dId p4READ_POPUP_NOTE_PBehfupX}f_pbNOTES$DRM_WIDGET_CREATE* T D 4U Z fhf ENOTENOTES$DRM_HELPfhfENOTENOTES$DRM_PUSHBUTTON_ACTIVATEH !\߀ ISO8859-1 Note-id...H G߀C ISO8859-1 read_popup ISO8859-1 read_popup_note_pbd_nH !߀ ISO8859-1 read_popupeH  dI ,EDIT_WINDOW;F %Z \hfWI E TNOTES$DRM_HELPfEDIT_WORK_DBPEDIT_MENU_BARfANH  8I8 0EDIT_MENU_BAR;F -' Z lhf TNOTELPNOTES$DRM_HELPfMAIN_HELP_PDEDBE(fMAIN_HELP_PDETEEDIT_EDIT_PDEONEDIT_FILE_PDENOH TIT 0EDIT_FILE_PDE@ 8;F ( *  W Z hf HELPNOTES$DRM_HELPAhf(NOTES$DRM_MENU_PULLINGTEONEDIT_FILE_PDMH hIh 0\EDIT_FILE_PDM;F LT<Z(fTEDIT_FILE_CANCL_PBMAIN_SEPARATOR_SPEDIT_FILE_USEF_PB_PEDIT_FILE_INCL_PBEDIT_FILE_SAVEAS_PBMAIN_SEPARATOR_SPEDIT_FILE_ATTRIBUTE_PBEDIT_FILE_ENTER_PB߀H |PI| p4EDIT_FILE_ENTER_PBhfXy LNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf IT_FI_PBNOTES$DRM_HELPSUShf_PINCL_T_FILNOTES$DRM_PUSHBUTTON_ACTIVATEIBIL3 H ! ߀ ISO8859-1 Enter Note_H \ ߀ ISO8859-1Ctrl/ZH  Ctrlz:'H k ߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_enter_pbH L IL t8EDIT_FILE_ATTRIBUTE_PBihf_p\zISO88dit_fNOTES$DRM_WIDGET_CREATE* < ,U Z hfZ fITNOTES$DRM_HELPShf f_INNOTES$DRM_PUSHBUTTON_ACTIVATEBU6IBH )` ߀% ISO8859-1Note Attributes... H o ߀k ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pbeH H IH p4EDIT_FILE_SAVEAS_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEAT#ORK_SELECT_CONF_PBi HC$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"9ro|h H !߀ ISO8859-1 Save As...H l߀h ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_saveas_pb H H4IH p4EDIT_FILE_INCL_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEATH IH &߀" ISO8859-1Include File...H j$߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_incl_pbH H\IH p4EDIT_FILE_USEF_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEAT=H +߀' ISO8859-1Use Existing File...:H j4߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_usef_pbH HtIH p4EDIT_FILE_CANCL_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEAT H #߀ ISO8859-1 Cancel Enter reH kL߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_cancl_pb H ߀ ISO8859-1FilephH E߀A ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pdeH T4IT 0EDIT_EDIT_PDE59@ 8;F ( *  W Z hf NOTES$DRM_HELPDRhfE NOTES$DRM_MENU_PULLINGBUATEDIT_EDIT_PDMd_H dId 0\EDIT_EDIT_PDM59;F LP<Z(fTEDIT_EDIT_SELECT_PBMAIN_SEPARATOR_SPEDIT_EDIT_CLEAR_PBPEDIT_EDIT_PASTE_PBEDIT_EDIT_COPY_PBATEDIT_EDIT_CUT_PBMAIN_SEPARATOR_SPMEDIT_EDIT_UNDO_PBH HIH p4EDIT_EDIT_UNDO_PBhfXI LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPTAThfCLEART_EDINOTES$DRM_PUSHBUTTON_ACTIVATEATPB=ATH !l ߀ ISO8859-1 Undo ClearPH j ߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_undo_pbH | I| p4EDIT_EDIT_CUT_PB1hfedXF I edNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DTNOTES$DRM_HELPCLhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE_SUNv*H x ߀ ISO8859-1CutH  ߀ ISO8859-1 Shift+RemM_H 4Shift0x1000FF00:H ih߀e ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_cut_pb0xFF55:5H s߀o ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_page_pbOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|ixH |I| p4EDIT_EDIT_COPY_PBhfedXD I edNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DTNOTES$DRM_HELPCLhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE_SUN upH ߀ ISO8859-1Copy IH j߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_copy_pbH |I| p4EDIT_EDIT_PASTE_PBhfedXG I edNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DTNOTES$DRM_HELPCLhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEj_SjUNjF H <߀ ISO8859-1PastepuH  ߀ ISO8859-1 Shift+Ins H Shift0xFF63:H k0߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_paste_pbH HTIH p4EDIT_EDIT_CLEAR_PBhfedXH I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hf hf NOTES$DRM_HELPTjHEhfCLhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUjAT jicH ߀ ISO8859-1ClearH k0߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_clear_pb H H`IH p4EDIT_EDIT_SELECT_PBhfedXE I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hf hf NOTES$DRM_HELPTjHEhfCLhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUjAT#jupH !߀ ISO8859-1 Select All H l<߀h ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_select_pb_CH p߀ ISO8859-1EditH E߀A ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pdeH $ ߀  ISO8859-1 edit_menu_barH Hx IH l$0EDIT_WORK_DB859hfdiTx59-1NOTES$DRM_WIDGET_CREATE ;F 1EHZ HEhf HEhfNOTES$DRM_HELPjPUAT PU4 j BEDIT_WORK_TEXTDEDIT_WORK_KEYWORD_TEDIT_WORK_KEYWORD_LEDIT_WORK_TITLE_TATEDIT_WORK_TITLE_L_PEDIT_WORK_AUTHOR_TCEDIT_WORK_DATE_LEADEDIT_WORK_DATE_TLY_EDIT_WORK_AUTHOR_LSH   I 4EDIT_WORK_AUTHOR_L A!A Z xhfF NOTES$DRM_HELPjj H  ߀ ISO8859-1Author:H h ߀d ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_author_lIVH  I p4EDIT_WORK_DATE_T ehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE;6EAB34D=Y \ \Z hf< LNOTES$DRM_HELPj hfNOTES$DRM_LOST_FOCUShfORIT_WORD_TNOTES$DRM_FOCUSSHH f ߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lro|ji0iii`i0ipi<ki i ixkhk(kkk|k4k k k kl l llpl4l l l l mmdm4mll`l0mmmdm0mmmnxn@m| mD m m mmTnn(nnno o n n n n o@o ooooool o0 oT o p pp\ptpHpXp(pHpp0 p I]$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1y"Jro|kH  I p4EDIT_WORK_DATE_L ehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE AB34d Z Bhf 4NOTES$DRM_HELPj j H .߀* ISO8859-131-DEC-1992 23:59:59.99H f(߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lH hI p4EDIT_WORK_AUTHOR_TehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE;6E!"AB35 4D=Y \ pZ ,hfP `TES$DNOTES$DRM_HELPj hfTES$DFOCUSNOTES$DRM_LOST_FOCUSIThfTES$DD_LNOTES$DRM_FOCUSEDIT_WORK_DATE_LT_WOR88H h߀d ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_author_lH  I 4EDIT_WORK_TITLE_L e A!"dC  Z hf ;NOTES$DRM_HELPjj EDIT_WORK_AUTHOR_TEDH p߀ ISO8859-1Title:H g|߀c ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_title_l H I p4EDIT_WORK_TITLE_T ehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE6AB!" 3E$ "C 4Y \ HZ hf( 8\ NOTES$DRM_HELPjhflHELPjNOTES$DRM_LOST_FOCUSTEhfTES$DFOCUSNOTES$DRM_FOCUSEDIT_WORK_TITLE_LS$DREDIT_WORK_TITLE_LDATEH g(߀c ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_title_lH  4I 4EDIT_WORK_KEYWORD_L A!"dC  Z Ahf ! NOTES$DRM_HELPjj EDIT_WORK_TITLE_T H_FH  ߀ ISO8859-1 Keywords:pH i ߀e ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_keyword_lH  I p4EDIT_WORK_KEYWORD_ThfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE6AB!" 3E$ "C 4Y \ HZ hf( 8\ NOTES$DRM_HELPjhflHELPjNOTES$DRM_LOST_FOCUSTEhfTES$DFOCUSNOTES$DRM_FOCUS!EDIT_WORK_KEYWORD_LDR!EDIT_WORK_KEYWORD_LT_WOR H il ߀e ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_keyword_lH  I l0EDIT_WORK_TEXT1hft_T 1 eNOTES$DRM_WIDGET_CREATEE!"AC B34D02Y \ dZ hf D THELPjNOTES$DRM_HELPjhfjLOST_EhfNOTES$DRM_LOST_FOCUShfUSFOCUSEDNOTES$DRM_FOCUS!EDIT_WORK_KEYWORD_TYWORD_H d ߀` ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_textH B߀> ISO8859-1 edit_window ISO8859-1 edit_work_db#ORK_SELECT_CONF_PBi ro|l$H "߀ ISO8859-1 edit_windowH DID p4EDIT_FILE_SAVEAS_DBhfrkXs ISO8edit_NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ hf  \NOTES$DRM_HELPjDjEDIT_SAVEAS_OK_PB"EDIT_SAVEAS_CANCL_PBDRLOU,UFDEDIT_SAVEAS_HELP_PBEDIT_SAVEAS_CANCL_PBWOREDIT_SAVEAS_OK_PBOREDIT_SAVEAS_FILENAME_TAEDIT_SAVEAS_FILENAME_LRu_H  4I 8EDIT_SAVEAS_FILENAME_L A!A Z |hfF NOTES$DRM_HELPjjH ߀ ISO8859-1FilenameH p߀ ISO8859-1 edit_menu_bar ISO8859-1 ediJt`B$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1{"[t_file_pde ISO8859-1 edit_file_saveas_pb ISO8859-1 edit_file_saveas_db ISO8859-1 edit_saveas_filename_lH H I t8EDIT_SAVEAS_FILENAME_Tehfle\ ISO editNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf   NOTES$DRM_HELPRjhfDHhjEDNOTES$DRM_VALUE_CHANGED$EDIT_SAVEAS_FILENAME_L$EDIT_SAVEAS_FILENAME_LUH x߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_saveas_pb ISO8859-1 edit_file_saveas_db ISO8859-1 edit_saveas_filename_lH H 4I 4EDIT_SAVEAS_HELP_PB!" $  U xhf e aveas ISNOTES$DRM_HELPsj_ll"EDIT_SAVEAS_CANCL_PB H |I| t8EDIT_SAVEAS_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EDIT_ANCL_NOTES$DRM_HELPjTEhfHE,jDNOTES$DRM_PUSHBUTTON_ACTIVATETEjANEDIT_SAVEAS_OK_PBLENAH  ߀ ISO8859-1 Cancel T_EH  ߀ ISO8859-1 Cancel_pbPBH l Il p4EDIT_SAVEAS_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPNOTES$DRM_HELPEjhfj<DNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEANj_S_EH  ߀ ISO8859-1 OK BH  ߀ ISO8859-1OK_pb88H & ߀" ISO8859-1Save Draft FileH  ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_saveas_pb ISO8859-1 edit_file_saveas_dbH T IT p4EDIT_FILE_INCL_DB-1hft_Xt-1 NOTES$DRM_WIDGET_CREATE;F D1 4 $9 ,   IkV ] \Z hfj< LDNOTUSHBUNOTES$DRM_HELPUjANhfEAS_OAME_LNOTES$DRM_PUSHBUTTON_ACTIVATENAhfUFNOTES$DRM_PUSHBUTTON_ACTIVATELPjS_j ITj!ORj"LEj#AVj$ROP IH  ߀ ISO8859-1*.TXTopH #0߀ ISO8859-1 Include FilebH  `߀ ISO8859-1 SelectionAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|mpH ߀ ISO8859-1 OK EDH ߀ ISO8859-1FilterH 4߀ ISO8859-1 Cancel H d߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_incl_pb ISO8859-1 edit_file_incl_dbHH @I@ p4EDIT_FILE_USEF_DB-1hft_Xu-1 NOTES$DRM_WIDGET_CREATE;F 01  9 ,   ] V HZ hf\( 8hf LNOTES$DRM_HELPUj%HEhflANhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUhfONNAhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUj&ATj'jj(jj)jj*jj+jjH <߀ ISO8859-1*.TXTH (߀$ ISO8859-1Use Existing FilepuH  ߀ ISO8859-1 Selection H ߀ ISO8859-1 OK kH 0߀ ISO8859-1Filter8H d߀ ISO8859-1 Cancel _paH ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_usef_pb ISO8859-1 edit_file_usef_dbH I t8EDIT_FILE_ATTRIBUTE_DBehfle\v ISO editNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0IZ hf  (NOTES$DRM_HELPj,DRj-EDIT_ATTRIB_OK_PBhf"EDIT_ATTRIB_CANCL_PBN_ACTONNhDLO0PjEDIT_ATTRIB_HELP_PBEDIT_ATTRIB_CANCL_PBjEDIT_ATTRIB_OK_PBjEDIT_ATTRIB_CONFERENCE_TEDIT_ATTRIB_CONFERENCE_TBOPEDIT_ATTRIB_HIDDEN_TBOPEDIT_ATTRIB_REPLIES_TBNEH lI t8EDIT_ATTRIB_REPLIES_TBehfle\{ ISO editNOTES$DRM_WIDGET_CREATE<A!"A Z hf I NOTES$DRM_HELPj.j/DR-1H $߀  ISO8859-1 Allow RepliesH H D ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_replies_tbH D| ID t8EDIT_ATTRIB_HIDDEN_TB ehfle\| ISO editNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELPj0j1$EDIT_ATTRIB_REPLIES_TB_WH %T ߀! ISO8859-1Hide This NoteDH  ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_hidden_tbNOH  I x<EDIT_ATTRIB_CONFERENCE_TBt_hfde`}O8859t_filNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf RNOTENOTES$DRM_HELPj2hfj8iEIB_RENOTES$DRM_VALUE_CHANGEDj3f#EDIT_ATTRIB_HIDDEN_TB_ACTH , ߀( ISO8859-1Pointer to ConferenceH T߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_conference_tbM_FOCUSSHH f ߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lro|nT\H pIp x<EDIT_ATTRIB_CONFERENCE_Tit_hfde`~O8859t_filNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RNOTRM_HENOTES$DRM_HELPj48'EDIT_ATTRIB_CONFERENCE_TBLUE_'EDIT_ATTRIB_CONFERENCE_TBIT_A IH ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_conference_tbATH I 4EDIT_ATTRIB_HELP_PB!" $  U xhf1 e_attbNOTES$DRM_HELP j,nfl "EDIT_ATTRIB_CANCL_PBRhH |`I| t8EDIT_ATTRIB_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EDIT_ANCL_NOTES$DRM_HELPj5DRhf,j48EDNOTES$DRM_PUSHBUTTON_ACTIVATEj6RIEDIT_ATTRIB_OK_PBDDENH d߀ ISO8859-1 Cancel H  ߀ ISO8859-1 Cancel_pb H l(Il p4EDIT_ATTRIB_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !K&\$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1@"l" !#" \U Z hf_ L_NOTELPNOTES$DRM_HELPRj7hf8<EDNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATERIj8_A"H \߀ ISO8859-1 OK H ߀ ISO8859-1OK_pbhH &߀" ISO8859-1Note AttributesH @߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db_TIH xI t8EDIT_FINISH_CREATE_DB ehfle\w ISO editNOTES$DRM_WIDGET_CREATE ;F H  d @ 0,IZ ThfE DRM_HNOTES$DRM_HELPj9Tj:TE!FINISH_CREATE_OK_PB$FINISH_CREATE_CANCL_PBt`L8$ FINISH_CREATE_HELP_PBTTFINISH_CREATE_CANCL_PBTFINISH_CREATE_OK_PBFINISH_NOTE_SAVE_TFINISH_OPTIONS_RBENFINISH_OPTIONS_LIB_FINISH_CREATE_LH  (I 0FINISH_CREATE_L A!AB Z hfF NOTES$DRM_HELPj;j<,NOH = ߀9 ISO8859-1&You are currently creating a new note.TH n ߀j ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_create_lH   I 4FINISH_OPTIONS_L e A!C B Z fhf NOTENOTES$DRM_HELPj=j>IFINISH_CREATE_LEEH :x ߀6 ISO8859-1#Options for the note in-progress...H o ߀k ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_options_lNOH , I, 4FINISH_OPTIONS_RB e;F A!"C /FINISH_OPTIONS_LENOTEjFINISH_NOTE_SAVE_TBFINISH_NOTE_ENTER_TBOTEFINISH_NOTE_CANCL_TBj߀> ISO8859-1 edit_window ISO8859-1 edit_work_db#ORK_SELECT_CONF_PBi ro|o( 4H I t8FINISH_NOTE_CANCL_TBhf\O ANOTES$DRM_WIDGET_CREATE< <Z hfTE NOTES$DRM_HELPj?j@VE,H "߀ ISO8859-1 Cancel noteH s ߀o ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_cancl_tbH @I t8FINISH_NOTE_ENTER_TBit_hf_c\P-1 NOTES$DRM_WIDGET_CREATE< Z Zhf NOTES$DRM_HELPRjAjBFIH !߀ ISO8859-1 Enter noteH s߀o ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_enter_tbH <I< p4FINISH_NOTE_SAVE_TBhfniXQdb8859-NOTES$DRM_WIDGET_CREATE< ,<` Z hf NOTELPRNOTES$DRM_HELPjChfVE_NOTEBOTENOTES$DRM_VALUE_CHANGEDjDjISH -߀) ISO8859-1Save note text in fileH r߀n ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_save_tbH `I` p4FINISH_NOTE_SAVE_TehfniXRdb8859-NOTES$DRM_WIDGET_CREATE 6AB!" 3C @B$ Z hf hfNOTES$DRM_HELPBjEVAFINISH_OPTIONS_RB:TEFINISH_OPTIONS_RBBH r߀n ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_save_tbH I 8FINISH_CREATE_HELP_PBt_!" $  U |hfA NOTES$DRM_HELPj9Bl $FINISH_CREATE_CANCL_PBf!H I t8FINISH_CREATE_CANCL_PB_hf\T"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf FEATE_NOTES$DRM_HELPjFDRhfB,jEVFINOTES$DRM_PUSHBUTTON_ACTIVATEFIjGB!FINISH_CREATE_OK_PBE_CANCH '߀# ISO8859-1Cancel OperationH  0 ߀ ISO8859-1 Cancel_pb H ll Il p4FINISH_CREATE_OK_PBhffXST"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfF E_NOTELPNOTES$DRM_HELPRjHhfV<FINOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEBjISHH  ߀ ISO8859-1 OK _baH  ߀ ISO8859-1OK_pb85H 0T ߀, ISO8859-1Note Creation In ProgressH K ߀G ISO8859-1 edit_window ISO8859-1 edit_finish_create_dbH   I h,EDIT_POPUP8hf eP_creaNOTES$DRM_WIDGET_CREATE;F ( Z hf " \NOTES$DRM_HELPjJF!EDIT_POPUP_PASTE_PBTES$DRjfTBAlEDIT_POPUP_CANCL_PBMAIN_SEPARATOR_SPEDIT_POPUP_PASTE_PBEDIT_POPUP_COPY_PBEDIT_POPUP_CUT_PBMAIN_SEPARATOR_SPEDIT_POPUP_ENTER_PBH  ߀ ISO8859-1*.TXTopH #0߀ ISO8859-1 Include FilebH  `߀ ISO8859-1 SelectionAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|p 0H HIH p4EDIT_POPUP_ENTER_PBhfXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjKhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjL3 H !߀ ISO8859-1 Enter NoteH H\߀D ISO8859-1 edit_popup ISO8859-1 edit_popup_enter_pbH HIH p4EDIT_POPUP_CUT_PBedhfupXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjMhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjNvH ߀ ISO8859-1CutH FH߀B ISO8859-1 edit_popup ISO8859-1 edit_popup_cut_pbH HtIH p4EDIT_POPUP_COPY_PBdhfupXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjOhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjP ISH ߀ ISO8859-1Copy eH G(߀C ISO8859-1 edit_popup ISO8859-1 edit_popup_copy_pb_DBH HXIH p4EDIT_POPUP_CANCL_PBhfupXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjQhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjR H #߀ ISO8859-1 Cancel Enter0H H߀D ISO8859-1 edit_popup ISO8859-1 edit_popup_cancl_pbRIH HHIH p4EDIT_POPUP_PASTE_PBhfL]n$ NOTES026.A>b "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1}upXES$DRNOTES$DRM_WIDGET_CREATE 8* (U Z hf ES$DRNOTES$DRM_HELPjShf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEFjTH ߀ ISO8859-1Paste.H H ߀D ISO8859-1 edit_popup ISO8859-1 edit_popup_paste_pbH !0 ߀ ISO8859-1 edit_popup9-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_replies_tbH D| ID t8EDIT_ATTRIB_HIDDEN_TB ehfle\| ISO editNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELPj0j1$EDIT_ATTRIB_REPLIES_TB_WH %T ߀! ISO8859-1Hide This NoteDH  ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_hidden_tbNOH  I x<EDIT_ATTRIB_CONFERENCE_TBt_hfde`}O8859t_filNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf RNOTENOTES$DRM_HELPj2hfj8iEIB_RENOTES$DRM_VALUE_CHANGEDj3f#EDIT_ATTRIB_HIDDEN_TB_ACTH , ߀( ISO8859-1Pointer to ConferenceH T߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_conference_tbM_FOCUSSHH f ߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lro|q H Za"/;LYfs ",;FS^u}+7<M\q!#%?[t)7DVjuDXmapplicationNameDXmfirstTopicDXmglossaryTopicDXmlibrarySpecDXmoverviewTopicacceleratoracceleratorTextalignmentapplyLabelStringarrowDirectionautoUnmanageborderWidthbottomAttachmentbottomOffsetbottomWidgetcancelButtoncancelLabelStringcolumnscursorPositionVisibledefaultButtondefaultPositiondialogStyledialogTitledirMaskeditModeeditableheighthorizontalSpacingincrementlabelStringlabelTypeleftAttachmentleftOffsetleftPositionleftWidgetmainWindowMarginHeightmaximummenuHelpWidgetmenuHistoryminimummnemonicnoResizeokLabelStringorientationpageIncrementradioAlwaysOneresizeHeightresizePolicyresizeWidthrightAttachmentrightOffsetrightWidgetrowsscrollHorizontalscrollVerticalselectionLabelStringselectionPolicysensitivesetshadowThicknesssliderSizespacingsubMenuIdtopAttachmenttopOffsettopWidgettraversalOnunitTypeuserDatavalueverticalSpacingwidthwordWrapxyDXmattachToSourceCallbackDXmdetachFromSourceCallbackDXmentrySelectedCallbackDXmextendConfirmCallbackDXmgetEntryCallbackDXmhelpRequestedCallbackDXmselectAndConfirmCallbackcreateCallbackactivateCallbackcancelCallbackcascadingCallbackdecrementCallbackfocusCallbackhelpCallbackincrementCallbacklosingFocusCallbackokCallbackpageDecrementCallbackpageIncrementCallbackvalueChangedCallbackH <Zj~ .BTi "DXmCreateHelpDialogDXmCreateSvnXmCreateArrowButtonGadgetXmCreateCascadeButtonXmCreateFileSelectionDialogXmCreateFormXmCreateFormDialogXmCreateLabelGadgetXmCreateMainWindowXmCreateMenuBarXmCreatePanedWindowXmCreatePopupMenuXmCreatePulldownMenuXmCreatePushButtonGadgetXmCreateRadioBoxXmCreateScrollBarXmCreateScrolledTextXmCreateSeparatorXmCreateSeparatorGadgetXmCreateTextXmCreateToggleButtonGadgetXmCreateWarningDialogXmCreateWorkingDialogD_CANCL_PB_PRKEYWORD_ADD_HELP_PBKEYWORD_ADD_APPLY_PBKEYWORD_ADD_NOTEID_TP_TKEYWORD_ADD_NOTEID_LOFIKEYWORD_ADD_KEYWORD_TERKEYWORD_ADD_KEYWORD_LATFILE_CREATE_NOTEFILE_LNFILE_CREATE_NOTEFILE_TLFILE_CREATE_NOTICE_TONFFILE_CREATE_NOTICE_TBPDFILE_CREATE_OK_PBODFILE_CREATE_REPLY_ONLY_TBPDFILE_CREATE_RESTR_KEY_TB_PBFILE_CREATE_RESTR_MEM_TBBLFILE_CREATE_TITLE_TFILE_CREATE_TITLE_TB_BAFILE_CREATE_WRITE_ALL_TBWINFILE_DIRECTORY_ACCESS_TBO_LFILE_DIRECTORY_ADD_PBCAFILE_DIRECTORY_APPLY_PBFILE_DIRECTORY_CANCL_PBFILE_DIRECTORY_CONF_LIZFILE_DIRECTORY_CONF_UDTFILE_DIRECTORY_HELP_PBNFILE_DIRECTORY_LOCATION_LSTFILE_DIRECTORY_LOCATION_TIZFILE_OBJECT_ADD_DBTFILE_OBJECT_ADD_PBRFILE_OBJECT_DELETE_DBTEFILE_OBJECT_DELETE_PBILFILE_OBJECT_MODIFY_DBOWFILE_OBJECT_MODIFY_PBADFILE_OPEN_AUTOMATIC_LCLFILE_OPEN_CANCL_PBLFILE_OPEN_CLASS_TENFILE_OPEN_CLASS_TBNFILE_OPEN_DIRECTORY_TBPFILE_OPEN_ENTRY_LFIFILE_OPEN_ENTRY_TADFILE_OPEN_FILESPEC_L_OBFILE_OPEN_FILESPEC_TECTFILE_OPEN_HELP_PBBFILE_OPEN_IN_NEW_TBFILE_OPEN_IN_NOTEBOOK_TBBFILE_OPEN_OK_PBFILE_OPEN_SHOW_RBTEFILE_OPEN_UNSEEN_TBMAIN_CAUTION_BOXNTRMAIN_COLLAPSE_ALL_PBNTRMAIN_COLLAPSE_PBNTRMAIN_CUSTOMIZE_PDECMAIN_CUSTOMIZE_PDMPMAIN_CUSTOMIZE_PRINT_PBMAIN_CUSTOMIZE_PROFILE_DBJEMAIN_CUSTOMIZE_PROFILE_PBTRMAIN_DUMMY_WIDGETJEMAIN_EDIT_COPY_PBPEMAIN_EDIT_PDEFYMAIN_EDIT_PDM_DMAIN_EDIT_SELECT_PBMAIN_ENTRY_ADD_DBAMMAIN_ENTRY_ADD_PBAMMAIN_ENTRY_DELETE1_PBBJMAIN_ENTRY_DELETE2_PBBJMAIN_ENTRY_DELETE_DBOK_MAIN_ENTRY_MODIFY_DB_PBMAIN_ENTRY_MODIFY_PBTBMAIN_ENTRY_PDENMAIN_ENTRY_PDMPMAIN_ENTRY_UPDATE1_PBUPMAIN_ENTRY_UPDATE2_PBUPMAIN_ENTRY_UPDATE_DB_UPMAIN_EXPAND_ALL_PBRMAIN_EXPAND_PBBMAIN_FILE_CREATE_DBMAIN_FILE_CREATE_PBMAIN_FILE_DIRECTORY_DBC"*[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1+,=b.* /J 4*  - 0123 KPWO 56Uģ7}ģ89GJHJELF 2CH8H8@IIN 0 0 <(<(FHHDD`W`WDECw$Cursor%s: invalid context block detected at %x %s: invalid context block detected at %x %s: scrolled text window not specified %s: scrollbar not specified %s: source procedure not specified %s: verify procedure not specified %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x NOTES$ConferenceNOTES$Filenamedns$remve_first_set_valueZJVRU*VKZUjUUիVUDEC_WM_HINTS**UUTGUUQMŪUT*+*UT*EuUQ]EUWuQUꨪ]TUUUUꪪUUUUWUUU}UUM?)$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* p"UU૪UUժUU_uUUUEUUUEUU*UUQUUTTTUUuQEUEU]E*UQUWEUUTUQU*ꪨUuUTU*uU]UUjU]EUU꫺U[uQUUꨪU]TUUڪUeUUUUUVUUU*UWUUUUUYUUUUUUUUUUUUUUVUUUUUmUUUUU}UUjUUUUUUUU[zUUUU_^UUUUEUEUUUUUUQUUU*UUUUTUUTU?UUUUUUEUUUEUUUUQUTU*UUUTUuQUT*UUUU]EUQUUEUUWUE*UUQUUUTꪪ*UUTUuUUTU**UUU]UUUUEUUWUEUUUQUUUQUUꪪUTUuUUTUU**UU]UUUUuUUWUEUUUjUU]UQUUUꫪU[UuUTUUU*U]UUUUUڪUeUUGUUUUUVUUUUUU*UWUUUUUUUUYUUUUUUUUUUUUUUUUUUUUUUUVUUUUUUUUmUUUUUUUU}UUUUUjUUUUUUUUꫪUUUU[UUUUUUUU_UUUUڪUUUUeUUUUUUUVUUu*UUUUWUU]UUUUUYUUWUUUUUUUʪK2 xP 0H`xxx 8Phh(`@XXXX@@@ppppHHH0000HHH`````xxx00   `888PPPhhh8`  @` @`  < h(4@Tlx !"#$NIQ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* eO]V!U狂oQ<wP/XGu&6/|sbTAr`e At\Y״U)4h00Ay{6 %'˳RF\7j=7`۽feY"o cosPnT=>">2Q"3K@2 RZ ÇR^19PDZ;99x*:MfLܺ%Lzq^g̪C&xq510 ߖc3eՁ~ '|ЁU %\M +A:ZnZ#[I+a0U,$P X&}ύ_I|m!WkZ^m.tKHs7P L^߰k RL_@vtrZ< LPޯc, 6q3f[ߑ_~~s]?9$H ^9(`]{68SkFf2^7|&R<1+dfNw'ܹS8/9דm_7mzIAyO½Dz~f{!fİ _H.ՠ~7C:& A1Bӱ^[@<{#< vY6ARK\Tw2;E o-邌04L޲وn^K&Ll%&//]w ad =ߺ V.,ѤS3=RGV.;yqEXhzZ / EG TR@epVmFR(%K%OBJG,J1osd,QL]@=.Xoź|q%~]_~!>h{^&~i 6jy'$ş6#q5QS4JߒI nL ndž#t636朇wY6hWVQ(NbDSf)N;N_;Q)*GDypJt& s?BEB)j2@avlOI =7`yC^1#YD&%b{drw:k`d3B4Nsy<6CED-EYmӏum}hE) v7J:pn,G̈ ^d!gy(UU A 3@KZW =71]Eb vӋQ64(2I-i hO!@)2UM=I8SHT#T:+#;U |u` 1(G8N#WYCWmiD?~a*18orN, ~SvΑxgEccj}Coͭ%&OnZr߂VLwcx7?| bO7X[a :gvE)4e6W)tT^)YS&nޑb&ڌ_/SRߛ/mR" 8>Z7(U$bJ${wXZW4 ߠm(3sW’upV{vG^dC֞;Y|2-V3YSm,_J-RjX`bVg2\_K,rvG?~KBASK[aWW+'1KM Lvڠ}7c o0FGYyA! gL* kdPMMC.MT [e5Fms&H+2^GC0E1(dhd=T86M$UgÉ'li9A ^Enz 5MR0%e-š~NsGr_n1A@F/adDm7@${m_rzYiv2E-Q.XH_QQ5pN_3 ERUўE}v Vq6ͮ2Q5g:i0N7 -i;O[-m0JZ!CQ_KnHN[a>fH[ާқt'S@P? t3?uf's&ո3a9( 2A-"9Ns"cj+3O)*'uaH\Uq]3z(AY_w7 6$b='RSU%Z53=Bxz#eHh}vcpSɻVY:0aMnN;`&ΙUzt 4iĚDvhamrV*!Wha^XӑyrPdT+ #XlE& FQoOG.&|!y0 rJH9#/uY9ʛA}֘Vm&X;+/2knT=:Liyy9cDryl D:m:-&Vzy+xmi} Ȁ >|y[J-? $лQ`+~`HDmb_+6Bx+N8@zY%q:=}BCZ@!<'ʕ R]FHR( 2: [ύAs v}8hd.)daM["kTuĔmܟDf~X A 9pp6*C+QNtWQpMx(y)+! Q؞]F҆k% gTj P *5eĤ^<1ew3II'5K{W,.C_F;e LL,w[)>Yn }PXqfjz2 )",Zud]k/C Tw:bmA"C!Қ?={h`3S 7*dGO)" XF&1WNJ l(ܒlըe0KQ"1P"0e9,1yG;N$}y0妦Op.Rjj8aVU_Z$P[1!2XPߵzy$'z~_Rf@Q4^]`Vu> h+u?3B>fX+̞f,]_w)鯤TυKz]ҍ6{AzAtO1rޑ3HK>9yXڜ}B-?y#[7Ce0Y7rX wH81Nk2_+9,l?Frh8N^0):ъ݋ob|X%0Ъ2~zN. 4i"]pVZlsk geTYʹmyG*t 3 {4*?'/jZi~v*Vwyn(ku)W;7eRgzpdIԹZMoN6ݒM_we6T6LkE* 78 n7xpmm{Y,@l}DFdXE3^-9#)RG]%ncٮ82? Fa("YAhC^ݳw=*7 #Eg@ qVwuD`ڡg{q}YM\"ڻtvz}m`[9淄AzePNu2>HΚwV?U jZt$}J Bj6e CN!9hO +aiHp(i7_uB0_t`\*_PWnmy J:- e g7$ \ bEpb@ w\vs(1TqvHw.dhR/7{nw8ijq R*2H$ 1xA.48ײl|9R|ՑAz !8QZW@0IMt@y d}]U=n 2,,yhS5cH0r/MF "nZ( tib)Ci.3UP[<$:P>l:][_o|e)J-ʛ8)KifgK|oQ8;5S%UK  2l[D(6`+D5AcGINJr (vE4w9>J>c\5{|p$X-}>x\"u4%D16i%U ,cU~*~ \pTV D]W}8uy$ ~LF: ]Ɯj"*(B8hGz ?`H=>:Ud5z^$tQ[*EiqP4ʰ+ NgIUKysLj&nr:ьI gyDs_Mrz"{Zc|0u혺X8ktmnLE16e9ixQ0.QyuEE_kk Q2fZKm)X c/8[ޞ )#%T0,Qi4sx6ဲ|$RY 1sV MT=:=y4&(b1)CMW/- 7{l܏Xs<w2%URXXN*]-[qZJ({iRXZZ]w0{Māy+]z&wH^eVڴ$T5?wo9N6 Tw/'$bk(B!+/\|  ^eLs04ET8$zҖon+Qf()E3]-9?<Q$WM`$m)HZ8Π.)ux>95|~?(b/D~sˤ@;˂}jG 3 k-Z9&]U1!rH MZzL`쯭dS'I(6a=,nfɴB2|O2{4GNwn"G8 IW&Vb'6吝L6k-`ڧh)!Pm3x1es"nը[JER(&mMB#S8sU1<=78RЛ] _r,'\KMaVx68 6aʹXW!eKKiușvgq2Vd MVeujR?K#1@GB7d+nn7`8~z'גeK{J戍 S)_+SFw?F2jR#mYr@֘z1~O0 KxGajZ'MZG_>k1psz.@XO %"")D@Y5+O'om!40COH;6T?W G[gZg@fHAf3Y7bP cWŵ^heӗAW<*gimĩgO)CaRlk{tby._-HOZng h GO`7>+j/wQ[/GC~d޿c9nn9ĠF#Mo*1VNfV|/tNx՘"Wh$U:[< ="5/kZO/0\VzG4ES4 ^q'dLQ`m LNKr>mT̳F`t{j׌YJU6IPJGoJ2Pc1עv-Qom?[ }L[iqbyZ f>{ o*bGqG%D1nw!u4N?{ߑD g U˥>M O.Lm^vxNaL .;Y҇QPJHj1,g-w 9 \r ů!w \Nm+a2ֿ euɾOBhVl>\kj. aG,`jp:ۨR>FU) VO 8w›[S#OJUV4荍6`/ cCvQQ@I 'z!X' -F4wd4uHjx#c}ȁSfPI!MÍ1%^uܱILr_ڌ㔃ܰg $!$3QuϒKWnXHN:PI Z;?|MA\*ROv$J>Q )Q 2_f13Y䌆T䋐$Qt'ofAN{%p:kG (CJ4Q7L9jtdg#aTj{$Fѕ$/YX*M>~mFh:NցhU[/QLYf@~ Odi$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "%& ()$*0+<,t-. / / /013D4P5 \6 6 6789: ; <0=@>        0 d< dH @   Ph $<\x(@X p$8Td<P`p    (4<D X d#p  !!    ^ D    $ C$ D+ s$ @D$ pD@ d          & D x &  x &x Q tx  @X h F !$'`% " 0(08@H!$8HXdt 0$#PK$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* m"'  L X (  P" \"`h"["^$#[#[# <$H$ P$\$d$l$ t$$$$ %,%4%<%+@%,l%(%%%'''XM2~F@`! 1B01B0L 0 Bc Ba HHPX!0Ib 0L 0 B A   `Xh! BpY$|( X! BHP sf p!pY xR!xY $|( X! ,8@ @ &0 0   BH@$L PH( #`A< !XD #`. X,B,,b p!pY$( X! BHP0 $@1B 0L 0 B@A   `Xh! BpY$D( Xsf p!pY xR!xY $( X! ,@  &0 0  0@B . H$ #@( P(B(,P, ^~ X!BL HR 0,A  L H$B@* P(B(, HX X!, #`+ X,B,,P,H,,, b !@Y$T( X!, EH R0@L  , . H$ $,EH hZhY$,( X!BB RHhPX!H~ X!0L 0 B0 ,( @  , ( H$B$, p!pYx!$BY$( X! BHP  @R!@Xr  &0 0  !X h\!hYpA$HPX! BHP  @R!@XR $T( X!BhY$tb( X! BHP  @R!@X6 $t( X! BHP  @R!@X" h &0  hZhYp$ H 3 X!H} X!B@XXU `!@B 2~F!0L 0 b 1B00B@1B @@X @! a 0@ L 0 B0 ,d 2B H HX02B `X@$ B 2B H HX H!$ #@d P@PX P !( #`d 0` Bd 2B X`XX2B H $B@d$0 L 0 B0 ,d 2B X`XX2B P@PX$(B 2B H HX H!$ #`d X`XX X !, #`d 0` Bd 2B P@PX2B H $B`d$HP !@ # d HHP  P!(  ,x@?# HP !0 0 ,` F`Y$t( D!HU `!@B 0~F!0L 0 b 1B00B@1B @@X @! a 02B`0 ,` 0B H HX00B `X@$ B 0B H HX H!$ #@` P@PX P !( #`` 0` B` 0B X`XX H &$0  HH,#`` `X@$ B "0B H HX P &(0 P $B(0B X`XX X !, #`` 0` B` 0B " X H &$0  HHD#`` X`XX$,B 0B H HX P@ &(0 P $B(0B " X "!D #`` 0` B` 0B X`XX H` &$0  HH,# ` " X$DB 0B H HX P &(0 P $B(0B X`XX X !, #`` 0` B` 0B " X"0B H $B@`$@1B X-B`d !`X @ & 0  @!@X !`Y ! Y (!(Y $( D!p (@ C !0 ! L H$B$,@.@ P(B(,`0,H@,PP, 3j{ D!02B`0 ,` 0B H HX P &(0  PP$# ` " X$0DBH&@0B (X &PT0 *@!PBT(`0B ,X ,!X #` .pa\B`\00B 2 X &h0  4d#` 8X$pBt<0B >X A &00 F!|B>@0B H Y !H! #` (JPbB``0B @@X H` &$0  HH #`` X`XX$ ,BD$00B &`X &@P0 (0!LBP&P0B *X *!T #` ,`aXB`X.0B 0X00B 4@Xش$hBl80B :X :!t #` <X <!x #` >a|B``|F@0B H Y $#` @@XH($ B$0B X`XX @ &D0  "! X X!, #@` $@X $!H #`` &0aLB`L(P0B *X*`0B ,`!XB`X.A1B 0aB d 2! X Р &h0  4!@X 0!`Y 2! Y (4!(Y $d( D!00B 0B HHP8 P!( P! L X,B,, .@ "DBD,`P0,X@,P, 3z D!00B @@X H` &$0  H@HX X$P,@ *D "DBD, HX H!$ #@)D $ H 0H,L( PA"L *PTBPT,@X $!H #)D ,`X `X,)D .p\Bp\,\,0B`Y$$( ` &0 0  `X @` & 0  @@X @! ` 0 H  ` &0 0  X Hp$@$@@+D P(B(,`X p!P #`)D X, ,,@BD$ 0"L &0LB0L,`XX X!, #`0, z @$U `!@B 2~F!0L 0 b 1B00B@1B @@X @! a 0"L 0 B0 ,`0, *y D!0"L 0 B0 ,`0, "y D!0"L 0 B0 ,`0, y D!0@"L 0 B0 ,`0, y D!0"L 0 B0 ,`0,  y D!0"L 0 B0 ,`0, y D!0$L 0 B0 ,`0, x D!0@$L 0 B0 ,`0, x D!0@1B `X !0 8p! @! @! L H$B$,@.@ P(B(,`@0,H@,PP, 3x D!0@1B `X ! #@$U `!@B PM2zF X!(d02BrH!d0H 1d  2B$L @0 `)H 0 a0B 01B` HP!$ #*H @ `0L 0 b 1B0B@0@1B `X !0 a @1B @@X`$ B #[ A!@ #`e P  H@!$  ,@ P !( H;(! X@!,B,, e," 2B $@X $H#e *X$pTBX.2B 0XQF@$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* C"8 Ƞ &d0  2! X 0!` #@e 4@X 4!h #`e 6alBel8Ё2B :X $t#e `X`Yh5$B\2B x^xY &0  `!Y x^! # e b Y !b! #@e d cBe@02B `X H@!$ $2B P@PXX$(B," 2B $@X P!0L @BL$@2B (X @!PTBPT,T(`2B ,`aXBeX.2B 0X02B 2!dB@ed42B`l,,,,,, ,@ , s^w V!0B,`a !`X @@! B ,,,@, 3Fw V!0B@02B`0 ,` @!@X `!`Y h!hY$Ċ( V!0B @PX ! #d @!@X H!$B$,@` P!@PX `!`Y h!hY p!pY $\( V!0B @P( !0 0 ,d @@X  $L H$ `$$n)D 2B $ HB`dH& !@P (!P!2B p*pY !X ,` @.@Y h@!hY x@!xYv V!Bv V!,,``0Bh0B @@Y P@!( `Aa ppY !D ,@` $Y,xYv V!Bv V!@Y  ! #`@$L H$ @  &L P@( #`d X!`XX `!`Y$( V! @!! p @C a &0  @Y  &0 0  !`X A! #)D @  , )L H$B$,@$"L P( (,`)L X,B,,@P,"L "D D,@*L $ HB H, H"0"L &0L 0L,*L (@PB@P,`BP&P"L *PT PT,+L ,`XB`X,X*p"L .p\ p\,+L 0`B`,B`.$ ` &d0  2 X &h0  4!@X 3!d #`)D 6l l,,L 8pBp,`p6"L :t t,-L <xBx,x:"L >| |,-L `XB,>"L hZ ,.L p\B,Eh Z"L x^ ,.L `B,y ^"L b ,@/L d B , F b @a!B,`e2B @Y @$@#@e P@PXX$(B," 2B $@X ` &0L0  &`X &!0L 0L,`B& !HBL$@2B (X ` &PT0  *X *!PT T(`2B ,`aXBeX.2B 0X $`#`e 6`X $lBp:2B <X ` &|0  >X 0>!| C|<2B `X`Y `!X! #e hZbBe\2B x^xY $#@e d@Y$B P2B @@X H` &$0  H HX H@!$ $, AHH B$2B @Y P` &(0  P@PX P@!( (@2B X`,B e," 2B $@X $H#e *X$pTBX.2B 0X ` &d0  2 X 3!d Cd02B 4@X 4!h #`e 6alBel8Ё2B :X $t#e `X`Yh$B\2B x^xY a &0  `Y `! Ex^2B b Y !b! #`e 0` Be P 2B d@Y @$@#@e P@PX$(B2B " X ` & H0  $@X $! H  H,@B$!DBH"02B &`X ` &@P0  (X (!@P `P&P2B *PaTBeT,p2B .X $\#@e 4@X$hBl8Ё2B :X ` &x0  <X P<!x x,C<!tBx:2B >X `a &0  `X`Y `QX! >Ђ2B hZbBe\2B x^xY^2B `#B eb02B`0 ,e P2B @@X 2B d@Y P !( (( It! X$ %B d!XD#@e $@X $!H #`e &`X &!L #e (@aPBeP*`2B ,X,p2B .p!\Be\0A1B 2fB@d 4!@X `!lBl,,,, 3r V! , PU `!@B 2|F !(d0L 0 b 1B@00B@1B @@X @! a @0@1B `X $P B #U !!@ #`d P  H !$  ,@ P@!(B(,`d(A2B " X"0A2B &`X !@P P( It! $ %PXB &!\#d 0X 0!` # d 2 X 2!d #@d 4ahB`dh6A2B 8X ` &t0  :X :!t P:! !4 ` &|0  >X >!| |, >|Bx8PB2B (J(Y 0a &`0  0L0Y 0!L!` `L8!  $ % B HJ!%#d @@X P` &(0  P@PX P !( p! X!4 ` &D0  " X "!D D, B "DB @!X #@d $@X $!H #d (@aPBdP,0A2B &`X $L#d 0X ` &d0  2 X 02!d 02!  $ %lB 0!t#d >X ` &p0  8X 08!p Cp>A2B <X <!x #d H@bBdL0@2B `X H` &$0  H HX H@!$ @y! !4 (a &P0  (J(Y (AJ!P P, (JBA2B " X @` & 0  @@X @@! P! X$ %HB "!XP#d ,X ` &0L0  &`X @&!0L `&y! !4 ` &p\0  .X @.!p\ p\,B .P\B ,!X # d 2 X 2!d #`d 6alBdl0A2B 4@X $h#d >X ` &x0  <X =!x p<!  $ 0%@B H>! %#d (J(Y ` &0 0  `X !0 D( J@2B P@PX P !( #d @bBd A2B $@X X$XH#d (X ` &0L0  &`X &!0L 0&! $ %pTB (!X# d 2 X ` &`0  0X 0!` C`2A2B 6`X 6!l #@d 4ahBdh8A2B :X ` &x0  <X <!x @X 0a &`0  0L0Y 0QL!` @Ly! !4 P` &(0  P@PX PP!( (,@AP P0(B >!| #d @@X @ ! #d H@bBdJ@2B X`XX A2B $ !HB dH"B1B @B`e &!`X &@P0  (!X @! Y (&!(Y 0(!0Y $4( F! , U `!@B  % 1zF`(!(g(@g(f0L 0 b @1BB 0BD0@1B `X !0 a @B1B B Y0$pB #Q !@ #` @P  !  ,@ !0 B0 , ` 0B P@PX X!, ,, XX(#@` $@X$@HBL(P0B *X !`X `X,B,P!TBX*p0B .X .!\ #` 0a`B ``20B 4@X $h#` :X !x x( It! $ 0%B 8 :!#` @P@Y A & 0  D!@Y @P! #` @Y !@! # ` BbB`00B `X H!$ $, HH #`` X`XX !D D, "DqW $ % LB !P#` *X !`X `X,B,P!TBX*p0B .X .!\ #` 0a`B ``20B 4@X40B 6!lB`l8A0Bx,`xL0B :X $t#@` D@Y@$B@0B @@X a &0 B B00B `X H &$0  H! HX  !H #@` P`(B `("00B &`X X$XL#` (X$`PBT,p0B .X &`0 0p!\B`.0B 2 X &h0  4!@X 2!d #`` 6alB`l80B <X 0$0y#` >X8$|B@ 0B D@Y @ &0  @P!@Y D!@ #` @@X @ ! # ` BbB``0B H HX P$P$#`` X`XX$0,BH&@0B (X &PT0 *@!PBT(`0B ,X &p\0  .!X ,!X #` 0a`B ``20B 4@X $h#` :Xh$`tBxL0B >X A &0  @!Y >!} #` 8N8Y 8!N! #@` D bB`P0B @@X $ # ` H HXPl$$B("0B X`XX ` & H0  $!@X X!, #`` &`X &!L #` (@aPB`P*`0B ,X $X# ` 2 X$dBh60B 8X &t0  :!X 8!p #` <X <!x #` 0L`bB`>0B @Y 8$8#` @P@Y$B 0B B Y H &$0  H! HX B!H #@` P@PX P !( # ` "aDB``D 0B $@X $H#` *X$pTBX.0B 0X &d0  2! X 0!` #@` 4@X 4!h #`` 6alB`l80B :X $t#` 0L0Y$ BDp0B 8N8Y  &0 0  !`X 8N! #` @@X @ ! #` @PbB `0B B Y P$P# ` " X$0DBH&@0B (X &PT0 *@!PBT(`0B ,X &p\0  .!X ,!X #` 0a`B ``20B 4@X $h#` :X$tBx>0B @Y A & 0 D"B@`0B 0L0Y ` &0 0  !`X 0!L! #` 8NpbB`0B H HX @$@%#`` X`XX$,B" 0B $@X &0L0 & !HBL$@0B (X &PT0  *!X (!P #` ,`aXB`X.0B 0X $`#`` 6`X$lBp:0B <X &|0 >!xB|<0B @Y  & 0  D!@Y !@! #`` 0` B` L0B @@X 8$8!#@` P@PX@$(B0B " X  &0 B!DB" 0B $@X &0L0  &!`X $!H #` (@aPB`P*`0B ,X $X# ` 2 X$dBh60B 8X @ &t0 :!pBt80B <X ` &|0  >!X <!x #` @bB@`D00B `X 0@$0 # ` H HX8$$B0B X`XX @ &0 @P ,B0B " X  &0  B! Y "!E #@` $ aHB``H&@0B (X(P0B *P!TB`T,pA1B .pa^Bd 0!X !dBd,`,p,, 3i J! ,  U0 `@!@B 2zF !(e0L 0 b 1B@00B@1B @@X @! a @02B P @!  ,(!H(2P !@ #`f P  H!$  ,,@ P!(B(,`f(3B " X ` & H0  $@X @$! H @$y! !4 ` &@P0  (X @(!@P @P, (0PBL"`3B ,X$XB\03B 2 X ` &h0  4@X @4!h P4! !4 ` &p0  8X @8!p p,C 8pB 2!d #f :X :!t #f <axBfx>@3B H Y (a &P0  (J(Y (qJ!P `Jy! 0!4 a &0  @Y q@! , @`BH3B H HX @` & 0  @@X @p! p! P$ X%,B !PH#f (X ` &D0  " X p"!D 0"! !4 ` &PT0  *X p*!PT PT,B *0TB (!P #f ,X ,!X #f .pa\Bf\03B 4@X ` &p0  8X `8!p @8y! !4 ` &l0  6`X `6!l l, 6lBd43B <X ` &|0  >X `>!| P>! ($ %PB <!( #f H Y 0a &`0  0L0Y 0aL!` `Ly! @!4 X` &,0  X`XX X`!, ,,`AX X,B H!@ # f H HX H !$ #@f P`(B@f($3B " X"03B &`X ` &@P0  (X (!@P p(! $ %`\B &!`#f 8X 8!p #`f 6`X 6!l # f 2adB@fd43B :X:3B >!|BfSpQ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 0"Z|@02B`0 ,f <P3B (J(Y 0$0#f @@X $ B3B P@PX & H0  $!@X P!( # f " X "!D #f *PaTBfT(p3B .X.03B &0!LBfL,A1B 0AbBf 8!X !lBl,@,P,`, 3&g F!2B @ !0 0 ,t(!H'P !@ #`f P  H!$  ,"@ P!(B(,`f(3B " X ` & H0  $@X p$! H @$y! !4 ` &@P0  (X p(!@P @P, (0PBL"`3B ,X$XB\03B 2 X ` &h0  4@X p4!h P4! !4 ` &p0  8X p8!p p,C 8pB 2!d #f :X :!t #f <axBfx>@3B H Y (a &P0  (J(Y (K!P `Jy! 0!4 a &0  @Y A! , @`BH3B H HX@$$B 3B X`XX ` & H0  $@X %! H p$! !4 ` &D0  " X #!D D, B "@DB X!, #`f &`X &!L #f *PaTBfT,p3B .X ` &`0  0X @0!` 00! !4 ` &p0  8X @8!p p, 8pBh.3B 6`X ` &t0  :X @:!t @:8! $ %|B ( 6!#f @Y ` &0 0  `X @!0 P!  !4 0a &`0  0L0Y 0AL!` `,D0 0L@B @! #f @@X @ ! # f H`$B@f$ 3B $@X ` &D0  " X "!D `"y! X!4 ` &@P0  (X (!@P @P, (PB,$P3B *X ` &`X0  ,X ,!`X p,! $ %pB *!\# f 2 X ` &h0  4@X А4!h 04! !4 ` &|0  >X >!| |,C >|B 2!d #`f 6`X 6!l #f <axBfxJ03B `X 0a &`0  0L0Y 0L!` @Ly! !4 a &@0  H Y H!@ @, HB3B H HX P` &(0  P@PX P!( P! $ %PB X!,#@f $@X ` &0L0  &`X &!0L `&y! !4 ` &p0  8X 8!p p,C 8`pB $!H #f *X *!T #f .pa\Bf\03B 4@X $h#f :X ` &l0  6`X ذ7!l p6! l$ (%B 0 :!#f H Y ` &0 0  `X !0 D  H3B @@X @ ! #f @bB@f@3B (X H $HP# f " X ` &0L0  &`X &!0L 0&! $$ %HB "!X#f *X ` &p\0  .X .!p\ B\*3B 0X 0!` # f 2adB@fd43B >X $|#f :X ` &x0  <X `=!x @<8! 0Y$ %` B :!0#f @@X P` &(0  P@PX P`!( A@(3B @Y !@! # f H`$B`f$@3B (X ` &0L0  &`X &!0L P&! !4 ` &D0  " X "!D D, " DBH(3B 8X ` &PT0  *X *!PT `*8! $ %p`B 8!d#@f 4@X ` &l0  6`X 6!l p6! !4 (a &P0  (J(Y (J!P P,D( (JB 4!h #f <X <!x #`f 0` Bf :@3B H Y 0$0#@f P@PX a &0  @Y A! 0@! H$ X%,B !HL# f " X ` & H0  $@X %! H BH"@3B (X (!P #f ,`aXBfX*3B 0X $`#f 8X ` &l0  6`X @7!l @68! ($ %PhB 8!(}#f <X ` &0 0  `X @!0 C <3B :X :!t #f @` Bf H`3B 0L0Y a &0  @Y A! P@! X!4 H` &$0  H HX H!$ $, H$B,L03B &`X ` &D0  " X #!D `"8! $ % PB &!T#f ,X ` &p\0  .X /!p\ p.! !4 ` &d0  2 X Ȑ3!d d, C 2dB ,!X #`f 6`X 6!l #@f 4ahBfh83B >X (a &P0  (J(Y (aK!P 0J! !4 ` &x0  <X `=!x x, <0xB >3B @@X a &@0  H Y aI!@ @H8! $ H%$B P!)#`f X`XX 0a &`0  0L0Y 0aM!` PL! !4 ` &@P0  (X `)!@P @P,B (PB X!, #@f $@X $!H #`f &0aLBfL*p3B .X $\#f 0X ` &l0  6`X ؀7!l `68! $ %pB ( 0!Д#f <X ` &0 0  `X !0 C <3B :X :!t #f >a|Bf|H3B H HX @$@$#f @Y 0a &`0  0L0Y 01M!` pL! $ X%@,B @!D#@f $@X ` &0L0  &`X 0'!0L @BL$P3B *X *!T #f ,`aXBfX.3B 2 X ` &l0  6`X 7!l 06! !4 ` &`0  0X 1!` `, 0`Bp2P3B (J(Y ` &0 0  `X !0 @8! $ %tB J!|#f H Y @` & 0  @@X @! P! H!4 P` &(0  P@PX P!( (,@AP P(B H!H #f 0L0Y 0!L! #`f X`,B f,"@3B (X a &0  @Y qA! `@y! !4 ` &0L0  &`X p'!0L 0L, & LBH(`3B ,X ` &p\0  .X p/!p\ p.! $ %`B ,!d#@f 4@X ` &p0  8X p9!p 08! !4 ` &t0  :X p;!t t,C :0tB 4!h #f <X <!x #f >a|Bf|J3B @@X P` &(0  P@PX Pp!( @y! H!4 a &@0  H Y qH!@ @, HB$3B X`XX ` &D0  " X p"!D P"! $ %LB !I#fT0-$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* <"k (X ` &PT0  *X p*!PT `*y! !4 ` &`0  0X p0!` `,C 0p`B (!P #f ,X ,!X # f 2adB`fd63B 8X803B `X ` &h0  4@X 4!h p4! $ %|B ( !#@f P@PX P!( #f H Y !H! #f @` B f `3B 0L0YL3B "!DB`fD&@1B X`.B@f $!@X &0  @!Y ! Y ($!(Y 0@!0Y $( F!2B @ @!  , U `!@B 3|F !(d0L 0 b 1B@00B@1B @@X @! a @0@1B `X $P B #A A!@ #`e P  H@!$  ,@ P`!(B(,`e(2B " X ` & H0  $@X p$! H @$y! !4 ` &@P0  (X p(!@P @P, (0PBL"`2B ,X$XB\02B 2 X ` &h0  4@X p4!h P4! !4 ` &p0  8X p8!p p,C 8pB 2!d #e :X :!t #e <axBex>@2B H Y (a &P0  (J(Y (AJ!P `Jy! 0!4 a &0  @Y A@! , @`BH2B H HX @` & 0  @@X @@! p! P$ X%,B !PH#e (X ` &D0  " X @"!D 0"! !4 ` &PT0  *X @*!PT PT,B *0TB (!P #e ,X ,!X #e .pa\Be\02B 4@X ` &p0  8X 9!p @8y! !4 ` &l0  6`X 7!l l, 6lBd42B <X ` &|0  >X ?!| P>! ($ %PB <!( #e H Y 0a &`0  0L0Y 0M!` `Ly! @!4 X` &,0  X`XX X!, ,,`AX X,B H!@ # e H HX H !$ #@e P`(B@e($2B " X ` &PT0  *X *!PT p*! !4 ` &@P0  (X (!@P @P, (0PBL"p2B .X ` &`0  0X 0!` 00! $ %lB .!d#@e 4@X ` &t0  :X :!t @:y! !4 a &0  @Y @! ,D @B 4!h #`e `X  ! #e <axBexJ`2B 0L0Y X` &,0  X`XX X!, P! @!4 a &@0  H Y I!@ @, HB L2B P@PX ` & H0  $@X %! H `$8! $ %PPB !D#`e &`X ` &`X0  ,X -!`X p,! !4 ` &l0  6`X ؐ7!l l,`C 6lB &!L #e .X .!\ # e 2adBed8Ё2B :X:2B 4@X ` &|0  >X >!| 0>! $ %0xB ( 4!#`e X`XX X!, #e H Y !H! #e @` B e `2B 0L0YL 2B $ !HBeH(@1B P`*B e "! X &PT0  *!X ! Y ("!(Y 0*!0Y $̵( F!2B @0@2B P\ H!$ $0C P &(0  P@PR(@C`w f !XD #? ! H 0%!0A L &0LB0L,.@ (@PB@P,@,P,`, 3Z F!2B @l$ $2B  P!(  , U `!@B 3|F !(`0L 0 b 1B@00B@1B @@X @! a @0@0B PT @!  ,(!HP A!@ #`a P  H@!$  ,8@ P!(B(,`a(0B " X ` & H0  $@X @$! H @$y! !4 ` &@P0  (X @(!@P @P, (0PBL"`0B ,X ` &p\0  .X @.!p\ P.! $ %dB ,!h#`a 6`X ` &p0  8X @8!p `8y! !4 ` &x0  <X @<!x x,C <xB 6!l #a >X >!| #a H@bBaJ`0B 0L0Y $# a H HX @` & 0  @@X @p! p! P$ X%,B !PH#a (X ` &D0  " X p"!D BD(00B &`X &!L #a *PaTBaT.0B 2 X ` &`X0  ,X p,!`X 0,! !4 ` &h0  4@X p4!h h, 4hB`20B <X ` &l0  6`X p6!l @68! $ %|B <!#a (J(Y ` &0 0  `X p!0 P! !4 0a &`0  0L0Y 0qL!` `,D0 0LB (J! #a @@X @ ! #`a X`,B a,0B P@PX0B " X ` &@P0  (X )!@P `(8! `$ %0TB "!\#a ,X ,!X #@a 4@X 4!h #a 0a`B a`20B 8X80B >X ` &t0  :X :!t p:! $ %B >! #a 0L0Y 0L! #a @Y !@! #a (JPbBa0B H HX0B X ,B@a, A1B $ AJBd (!X &PT0  *!X $! Y ((!(Y 0*!0Y $( F!0B @ !0 0 ,t(!HP A!@ #`a P  H@!$  ,@ P!(B(,`a(0B " X ` & H0  $@X p$! H @$y! !4 ` &@P0  (X p(!@P @P, (0PBL"`0B ,X ` &p\0  .X p.!p\ P.! $ %dB ,!h#`a 6`X ` &p0  8X p8!p `8y! !4 ` &x0  <X p<!x x,C <xB 6!l #a >X >!| #a H@bBaJ`0B 0L0Y $# a H HX @` & 0  @@X @! p! P$ X%,B !PH#a (X ` &D0  " X "!D BD(00B &`X &!L #a *PaTBaT.0B 2 X ` &`X0  ,X @,!`X 0,! !4 ` &h0  4@X @4!h h, 4hB`20B <X ` &l0 U#$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "| 6`X @6!l @68! $ %|B <!#a (J(Y ` &0 0  `X @!0 P! !4 0a &`0  0L0Y 0AL!` `,D0 0LB (J! #a @@X @ ! #`a X`,B a,0B P@PX0B " X ` &@P0  (X )!@P `(8! `$ %0TB "!\#a ,X ,!X #@a 4@X 4!h #a 0a`B a`20B 8X80B >X ` &t0  :X :!t p:! $ %B >! #a 0L0Y 0L! #a @Y !@! #a (JPbBa0B H HX0B X ,B@a, A1B $ aJBd (!X &PT0  *!X $! Y ((!(Y 0*!0Y $( F!0B @ !  , U `@!@B 3zF!0L 0 b 1B00B@1B @@X @! a 0@1B `X$@ B #28 !@ # d HHP  P!(  ,!@ X !,B,, d," 2B $@X ` &0L0  &`X p&!0L @&y! !4 ` &PT0  *X p*!PT PT, *@TBP$p2B .X ` &`0  0X p0!` P0! Ȝ$ %hB .!l#d 8X ` &t0  :X p:!t `:y! !4 ` &|0  >X p>!| |,C >|B 8!p #`d F`Y !F! #d H@bBdJ02B `X H$H #d @@X X` &,0  X`XX X!, p! $ %LB !T#@d $@X ` &@P0  (X (!@P @BP$`2B ,X ,!X #d 0a`B@d`4p2B .X ` &d0  2 X 3!d 02! !4 ` &t0  :X ;!t t, :tBl.2B 8X ` &x0  <X =!x @<8! $ %0B ( 8!#`d `X H` &$0  H HX H!$ P! P!4 X` &,0  X`XX X!, ,,`AX X,B !P #`d &`X &!L #d @` B d "P2B *X ` & H0  $@X $! H `$y! !4 ` &`X0  ,X ,!`X `X, ,@XBP*2B 4@X ` &d0  2 X Ȁ2!d p2! $ %\B 4!l#d >X ` &x0  <X <!x 0<!  !4 ` &p0  8X 8!p p,C 8@pB >! } #`d F`Y !F! #d (JPbB d2B X`XX ` &0 0  `X !0 @y! P!4 ` &0L0  &`X &!0L 0L, &LB(2B " X ` & H0  $@X $! H P$! $ %`PB "!T#d 0X ` &d0  2 X Ȑ2!d `2y! !4 ` &h0  4@X А4!h h,@C 4phB 0!` #`d 6`X 6!l #d :atBdt<2B 8X ` &|0  >X >!| p>!  !4 a &00  F`Y F!0 0, F@B8P2B (J(Y ` &0 0  `X !0 0! $ @%0 B PJ!(#`d X`XX ` & H0  $@X $! H @$y! !4 ` &D0  " X "!D D, B "@DB X!, #d *X *!T #d ,`aXB dX22B 4@X $h#`d 6`X ` &t0  :X ;!t P:! l$ %|B  6!# d H HX ` &p0  8X 9!p AHp@2B H Y !H! #`d 0` Bd 2B P@PX ` &0L0  &`X &!0L `&y! (!4 ` & H0  $@X $! H  H, $PHB2B X`XX ` &@P0  (X (!@P p(! $ %PXB !d#d .X ` &`0  0X 0!` 00! !4 ` &t0  :X :!t t,C :tB .!\ #d >X >!| #`d 6alBdl<02B F`Y H$H#d H Y ` &0 0  `X !0 @8! @$ %LB H!@H#@d P@PX ` &D0  " X #!D @APDP2B (J(Y (!J! #d (@aPBdP,2B X`XX $,#d 0X ` &t0  :X @;!t P:! $ %phB 0!|#`d 6`X ` &x0  <X @=!x `Cx62B H HX H !$ #d 8apB`dpF02B `X ` &0L0  &`X '!0L `&y! @!4 ` & H0  $@X %! H  H, $HB 2B P@PX ` &D0  " X #!D p"! ($ %PPB !(Y#`d X`XX ` &PT0  *X +!PT 0*! !4 ` &t0  :X ;!t t,C :tB X!, #@d 4@X 4!h #d .pa\Bd\02B >X ` &l0  6`X `7!l @6y! !4 H` &$0  H HX H`!$ $, H$Bx>02B F`Y ` &0L0  &`X `'!0L P&! $ %  B @F! #d H Y ` &D0  " X `#!D `"y! !4 P` &(0  P@PX P`!( (,@AP P@(B H! #d ,X ,!X #d (JPbBd*2B :X X$Xt#@d 4@X ` &p\0  .X /!p\ p.! $ %lB H4!$#d 8X ` &x0  <X =!x Cx82B >X >!| #`d &0aLB`dL2B @@X $ # d " X P` &(0  P@PX P0!( 0! $ %@B "!X#d *X (a &P0  (J(Y (1K!P B*2B X`XX X !, # d 2adBdd:p2B .X ` &l0  6`X 7!l @6y! H!4 ` &`0  0X 1!` `, 0`B$.2B 8X ` &x0  <X =!x P<! $ % B 8!L#d @@X ` & H0  $@X %! H `$y! !4 P` &(0  P@PX P!( (,@AP P0(B @!! #d H Y !H! # d "aDBdD(`2B ,X ` &PT0  *X p+!PT p*! (!4 X` &,0  X`XX Xp!, ,, XP,B,2B :X ` &l0 V(C$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* &O" 6`X p7!l 06! $ H%$B :!\#@d 4@X ` &x0  <X p=!x @a|B@d|$2B P@PX @` & 0  @@X @p! P! !4 a &@0  H Y qH!@ @, H0B@2B (X ` &PT0  *X p*!PT `*8! X$ %XB (!Xd#d (J(Y ` &l0  6`X p6!l p6! H!4 ` &p\0  .X p.!p\ p\,B .\B (J!H #d 0X 0!` #d :atBdt<02B &`X&2B 4@X ` &p0  8X 8!p 08! $ % |B @4! #d H Y H! #@d P@PX P !( # d "aDB`dDFP2B *X*`2B ,`!XB`dX@A1B (@aRB d 2! X ؠ &l0  6!`X (!`Y 2! Y (6!(Y $ ( D! , U `!@B ) 2zF@ !(`(@g01B0B@0B B Y C! `a0B @p q  @!@X2 !0 0 ,`0B B0B @Y !@! 8@! @!@X !0 p C ! ,$\( !!@ # ` BP   !  ,@ H!$B$,@`$@0B X`XX $,#`` &`X$PLBP*`A0B ,X !p\  .!`!XB\,A0B 0X 0!` # ` 2adB@`d4A0B 6`X !p p, 8l#` <X !| |, >|q ($ 0%PB 8 <!(#` @P@Y H! , KHR"BPB0B @Y !@! # ` BbB``@0B @@X H$H #`` X`XXl$ ,BD$0A0B &`X @ &@P0  (!X &!L #` *X *!T #` ,`aXB`X.A0B 0X $`#`` 6`X$lBp:A0B >X 0 &`0  0L!0Y >!0} #` <X <!x #` (JPbB`NB0B @P@Y H$H#`` `X$ B@0B H HX P &(0  P!@PX H!P$ #`` X`XX X !, # ` "aDB@`D$0A0B &`X $L#` ,X$XB\0A0B 2 X &h0  4!@X 2!d #`` 6`X 6!l #` 8apB`p:A0B >X 0!$0}#` (J(Y8$B@B0B @P@Y H! &0  HR! HY @P!H #`` `X  ! #` @` B ` B@0B H HX P@ &(0  PP$# ` " X$0DBH&@A0B (X ` &PT0 *@!PBT(`A0B ,X ,!X #` .pa\B`\0A0B 2 X Ѐ &h0  4d#` 8X$pBt<A0B >X 0 &`0 0L!|B>B0B @Y !@! #` (JPbB`NB0B @P@Y H &0  HRH#` @@X$ B@0B P@PX X &,0 X (B,A0B " X "!D #@` $ aHB``H&@A0B (X &PT0  *P#` .X$\B`2A0B 4@X &l0 6!hBl4A0B 8X 8!p #` :atB`t<A0B >X>`B0B 0L`"B`@P1B(P,`N0@0B `X @$@ #` @@XHh$ B$B@0B P@PX X@ &,0  X!`XX P!X( # ` " X "!D #@` $ aHB``H&@A0B (X $P#` .Xl$\B`2A0B 4@X ` &l0  6!`X 4!h #` 8X 8!p #` :atB`t<A0B >X $}#` (J(Y8$0BB0B @P@Y H &0  HR! HY @P!H #` @@X @ ! # ` H`$B `$B@0B P@PX X $X(#@` $@X$@HBL(PA0B *X &`X0  ,!X *!T #` .X .!\ #` 0a`B ``2A0B 4@X4A0B 6!lB`l80B :avBb <!X !|B|,P,`,p, 3H H!3B @3B BP<  &0 0 1B 1B P@PX P!`( `,`a0B" 0B $@X(L!`Ha@a!BHB HR HY$( H! !  , U `!@B % 0zF@ !(f(@f0.L XD 8@ 0(cXyPБ&JCH yX( .L @ e,B02B03B` @P! # + H$ @b$1B0BBB1B @Y A! `a@3B @@X(! HH!PH!2B ,g@03B `X @@!  3B P@PXX$(B," 3B $@X P!0L @BL$@3B (X @!PTBPT,T(`3B ,`aXBgX.3B 0X03B 2!dB@gd43B 6`X6 !p 09!A L :tBt,d <!X (8!(Y 0:!0Y 8<!8Y $( H!p C ! , f B Y B B@03B `X  s H!$ $,@e P!@PX(!`(B0Y$\( H!L$ ! , f B Y  &0 0  !`X @@! B ,0B!p B8Y @!@Y$( H!$ @$U `!@B % 3xF@ !(a(@`00L 0 0 *` @ g B3B1B@ !@ # + B b@01B0BB1B @Y A! aB00B `X(! HPH!B0B @Y@B1B B Y($`B #) a!@ # a BP  `!  ,@ H@!$B$,@a$0B X`XX 0B $@X$@HBL(P0B *X *!T #a ,X ,!X #a .pa\Ba\00B 2 X Р &h0  4d#a 8X$pBt<0B >X ( &P0 (J!|B>`0B 0L0Y 0!L! #a 8NpbBaP0B @Y@0B B"B`a2B@ , a 0B P@PX X!, , 0B $@X$@HBL(P0B *X !`X BX*p0B .X !`B`,`.0B 2adB@ad40B 6`X60B 8!pBap:A1B <AzBe >!X (!PB,P,`,@p, 32F W$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "H!p `C !! , ` B Y B B@00B `X H!$B$, 0!0Y$$( H! ! !A!B L BB,`d !`X (@!(Y 0B!0Y 8!8Y $( H!p C !! , ` B Y B B@00B `X H@!$ $,@(` P(B(,`g X!`XX(!`$BPp,X, CE H!<$ ! !A! L BB,`.@ 0 B0 ,P,`,p, 3E H!B1B @Y @ A! #U `@!@B  1 3rF`(!(d(@c(c00L XD @8@0(#Jy@@J!yH  0L D  `f$3B@1B@ !@ # .` B0 `/` 0 e 3B D0@1B` @p! #e@pH $e$B H`0e2BH d1BB00B 2B D@Y E!  a2B H HX0A$p$B #.' !!@ # d BP  !!  ,@ @!0 B0 , d @2B P@PXA2B " X@$0DBH&@A2B (X (!P #d *X *!T #d ,`aXBdX.A2B 0X !d d, 2`#`d 6`X !p p, 8pq ($ %xB 6!|#d 0L0Y 8!p p,D88N`"BLB2B @P@Y @!P! # d HRbB@dTB2B XV`XY $#@d D@Y @` & 0  @@X @! P! 4$ H%0$B PD!(#`d X`XX ` &D0  " X "!D `AXD A2B $@X $!H #`d &0aLBdL(PA2B *X $T#d 0X ` &d0  2 X Ȱ3!d `28! l$ %pB 0!x#`d 6`X ` &t0  :X ;!t `Ct6A2B >X >!| #d 0L`bBdNB2B @P@Y Ha &0  HR HY HS! pR! P!4 a &0  @Y A! , @BPB2B XV`XY @` & 0  @@X @! 0! H$ % B PV!H(#@d D@Y X` &,0  X`XX X!, @y! !4 ` & H0  $@X %! H  H,@B $HB D! #`d &`X &!L #d (@aPBdP*`A2B ,X ` &p\0  .X p/!p\ P.! !4 ` &p0  8X p9!p p, 8pBd,A2B 4@X ` &x0  <X p=!x `<8! \$ %tB 4!|#d 0L0Y 8a &p0  8N8Y 8qO!p pN! H!4 a &0  @Y qA! ,D @B 0L!H # d B Y !B! #d @PbB@dT@2B @@X  &0 0   #@d P@PX X &0  XV`q XL$ %HB !XD#@d D@Y &0L0 & "BLD@A2B (X (!P #d *PaTBdT.A2B 8X8`A2B ,`!XBdX01B d,dd<A2B :X Р!h h:A2B >X89$|B@`B2B 0L0Y H! D0LB2B B Y @!B, BB2B PTbB`d@2B @@X@2B H $B`d$V 2B $ IB@e P!@PX X!,B,,`,Pp,X, 3A J! B2B DB2B @P  !!  ,x @ @!0 B0 , d @2B P@PXA2B " X$0DBH&@A2B (X (!P #d *X *!T #d ,`aXBdX.A2B 0X $`#`d 6`X$lBp:A2B <X !|B|,C|<`B2B 0L0Y 0!L! #d 8NpbBdPB2B HR HYRB2B PT"B`dV 2L D  HDxp! A &0  @!Y a &0  B! Y @`! B ,`b !@X H`!$B$,`,p,@, P,@ X!`XY$( J!p C a!  HDx! $B2BB !0 0 , e H! HX0!p$B8Y$ܓ( J!p C A!  e@2BB02B2B H%B@e P!@PX X &,0  X!`XX 0!0Y 8!8Y @!@Y $( J!t$ ! ,$( J! A & 0 D $B1B@ !0 B0 ,a @@X H@!$B$,@` P!@PX 0!0Y 8!p p,H, P, CZ J!p C A!  e@B0BB02B2B H%B@e P!@PX X &,0  X!`XX 0!0Y 8!8Y @!@Y $( J!p (pK A!B,@dDB2B B YB@2B H HXP $$B(A2B " X "!D #@d $@X $!H #`d &0aLBdL(PA2B *X*`A2B ,`!XBdX.2B 0aB e 2! X Р &h0  4!@X 00!0Y 82!8Y @4!@Y $( J!1B @Y ! B , 8D!8Y$( J!"L B , B0B@ 0B Dp q @$, !0 0 ,8!HxP !!@ # d BP  !!  ,@ @!0 B0 , d @2B P@PXA2B " X$0DBH&@A2B (X (!P #d *X *!T #d ,`aXBdX.A2B 0X Ƞ!d d0A2B 6`X8$lBp:A2B <X !| C|<`B2B 0L0Y 0!L! #d 8NpbBdPB2B HR HYRB2B PT"B`dV3B@ ! ,@(` D B ,g @!@X !0 B A   `X0B!pB8Y @!@Y H! HY$L( J!p C ! H@x% ! @eD03B2B 2B P)B`e X!`XX &D0  "! X 0!0Y 8!8Y @"!@Y $}( J!4$ @$ U0 `!@B 3|F !(`01B0B@@0B @@X @! `a B0B @Y A$PB #f  A!@ #`a P  H@!$  ,X@ P!(B(,`a(0B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`0B ,X ` &p\0  .X .!p\ P.! X:$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* V"8$ %dB ,!h#`a 6`X ` &p0  8X 8!p `8y! !4 ` &x0  <X <!x x,C <xB 6!l #a >X >!| #a H@bBaJ`0B 0L0Y $# a H HX @` & 0  @@X @! p! P`$ X%,B !PH#a (X ` &D0  " X #!D BD(00B &`X &!L #a *PaTBaT.0B 2 X20B 0X ` &h0  4@X 4!h 04! $ %xB 0!l#a :X :!t #a >X >!| #a H@bBaJ00B `X0B @"BaL1B@ ,`a 0B H HX P$P$# a " XH$0DBP&P0B *X &p\0  .!X *!T #a ,X ,!X # a 2adB@ad40B <X $x#a 8X`$pBt>@0B H Y (! &P0  (J!(Y H!( #`a `X  ! #a @bBaL0B @@X X$X #@a P@PX,$(BH"00B &`X @ &@P0  (!X &!L #a *X *!T #a .pa\Ba\,0B 2 X20B 4!hBah0A0B 6mBf <!X !pBp,@,P,`, 3z< F! , U `@!@B  (`0@0B ! `` H 8 @1 `t@2L H$B`X $ 0 80! @ ! @?#@0B 0@0B `aD !! A P@1 (t @$ B .d H$B@X @$  ,8@ !  ,  !   3~F`(b(@b(a0@1B `X $0@! 0B D@Y D!  a@00B `X p s (B(Y^?  B@`$ U0 `!@B  % 1|F`(!(d(@c(c01BB1B @1B Bp q  & 0  D!@Y ! # A!B, bB02B`0 ,@d DB2B @Y@0@2B `X$ BB2B @Y @! # d B Y !B! #`d 0` Bd  B2B D@Y a &0  @Y @! 0@! !4 ` &0 0  `X !0 0 ,  BDB2B @Y8$B @2B @@X a &0  B Y B! 0B! !4 ` &0 0  `X !0 0 ,`@   B @!! # d H HX H !$ #d @bB dB0@2B `X @` & 0  @@X @@! 0! !4 H` &$0  H HX H@!$ $, H $BB2B B Y @` & 0  @@X @@! 0! HP$ % B B!H#@d D@Y @` & 0  @@X @@! 0! !4 H` &$0  H HX H@!$ $, AH H0$B D! #d @Y !@! # d BbBd@2B H HX ` &0 0  `X `!0 0! !4 a &0  @Y a@! , @ BB2B B Y ` &0 0  `X `!0 0! $ @% B HB!%#@d D@Y ` &0 0  `X `!0 0! @!4 H` &$0  H HX H`!$ $, AH H$B D!@ #d @Y !@! # d BbB`d@2B H HX @ $@$#d @Y ` &0 0  `X !0 0! %$ @% B H@!%#@d D@Y ` &0 0  `X !0 @D D@2B @@X @ ! # d H`$Bd$@B2B B Y  $#d @@X H` &$0  H HX H`!$ 0! Y$ % B  !#@d D@Y H` &$0  H HX H`!$ @D$D0@2B `X  ! #d @` Bd @B2B B Y H` &$0  H HX H!$ 0! !4 ` &0 0  `X !0 0 ,   BBB2B @Y H` &$0  H HX H!$ 0! $ @%0 B  @!#@d D@Y H` &$0  H HX H!$ 0! @!4 ` &0 0  `X !0 0 ,`@  B D!@ #d @Y !@! # d BbB d0@2B `X @` & 0  @@X @p! 0! !4 a &0  @Y qA! , @ BB2B B Y @` & 0  @@X @p! 0! ]$ % B HB!%#@d D@Y @` & 0  @@X @p! 0! !4 H` &$0  H HX Hp!$ $, AH H0$B D! #d @Y !@! # d BbBd@2B H HX B2B D@Y a &0  @Y Q@! 0@! @$ %B D!@ # d H HX H!$ #d @Y !@! # d BbB`d@2B @@X B2B D "B d A!B,`dB2B B Y @$@#@d D@Y8$B @@2B @@X H &$0 H B$B2B B Y  &0 0  !`X !B! #d @bB@dD@2B @@X@2B H $B`d$B1B Bp q4 ! ,8@!HdP !!@ # d BP  !!  ,@ !0 0 ,`@1B  P!(B(,`b X`XX @!DBD,P`,X @"!@Y $m( J! ,  U0 `@!@B 0-2xF8! 2B(d (d(c (c(b  H d B 3BD 3B@ ,`d F B4L D Bd H0B@B2B B Y 1B! ``F 2BD@0BH1B@3BB00B`0,@eD@2B H Y ! , @#@e D@Y9$0B2B @Y ! , DB"B@@2B H Y !H! #`e 0` B@e D02B F`Y $#e H Y !0  (8! I$ % B  H!#`e F`Y @ &0 0  !`X F! #e @Y !@! # e BbB@eD@2B H Y $#e @Y !  (8! A$ %  B  @!#e H Y A &0  B! Y H! #`e `X  ! #e @bB@eD02B F`YF@2BYA$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " H Y !0 0! !   %B  H!#`e F`Y F! #`e `X  ! #@e D bBe@2B B YB02B F`Y !0 0D! =$ %B  F!#e H Y H! #`e `X  ! #@e D bBe@2B B YB02B F0"BeH0@1B P ! 8@! !!   ,@ Dp q< !! ,`` F`Y 1F!0 G?#@bBH0@0B `X 0!0  80! $ 0BDB0B B Y)$@bBH `!0 B0 ,e @ 2B D@Y $#e H Y$B @2B B Y  & 0  D!@Y B! #`e F`Y !F! #`e 0` Be @@2B H Y $#`e F`Yp$B @2B B Y  & 0  D!@Y B! #e H Y !H! #`e 0` Be @02B F`Y $#e H Y4$B @2B B Y  & 0  D!@Y B! #`e F`Y !F! #`e 0` Be @@2B H Y $#`e F`Yl$B @2B B Y ! & 0  D!@Y B! #e H Y !H! #`e 0` Be @02B F`Y $#e H YD$B @2B B Y A & 0  D!@Y B! #`e F`Y !F! #`e 0` Be @@2B H Y $#`e F`YH$B @2B B Y a & 0  D!@Y B! #e H Y !H! #`e 0` Be @02B F`Y $#e H Y$B @2B B Y  & 0  D!@Y B! #`e F`Y !F! #`e 0` Be @@2B H Y $#`e F`Y`$B @2B B Y  & 0  D!@Y B! #e H Y !H! #`e 0` Be @02B F`Y $#e H Y,$B @2B B Y  & 0  D!@Y B! #`e F`Y !F! #`e 0` Be @@2B H Y !$#`e F`Y0$B @2B B Y  & 0  D!@Y B! #e H Y !H! #`e 0` Be @02B F`Y $#e H Y8$B @2B B Y  & 0 D"BB02B F`Y  &0 0  !`X !F! #e @bBeH2B B Y $#`e F`Y$@BH02B `X A &0 B0 B 2B D@Y a &0  @!Y !D! #`e F0bBeH02B `X $ #@e D@YM$@BH02B `X &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y]$@BH02B `X &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y)$@BH02B `X  &0 @0 B2B B Y ! & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y=$@BH02B `X A &0 @0 B2B B Y a & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Yi$@BH02B `X &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y$@BH02B `X &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X2B @"B eB 8L D B ,`fF B6L D B ,eH 4L D B ,`e04L 0 B0 ,f @t a!B,`eF@2B H Y $#e @Y$0BF02B `X ! & 0  D!@Y ! #e H Y !H! #e @bB eB02B F`Y $#e H Yq$BB02B `X A & 0  D!@Y ! #`e F`Y !F! #e @bB eB@2B H Y $#`e F`Y5$BB02B `X a & 0  D!@Y ! #e H Y !H! #e @bB eB02B F`Y $#e H Ym$BB02B `X  & 0  D!@Y ! #`e F`Y !F! #e @bB eB@2B H Y $#`e F`YE$BB02B `X  & 0  D!@Y ! #e H Y !H! #e @bB eB02B F`Y $#e H YI$BB02B `X  & 0  D!@Y ! #`e F`Y !F! #e @bB eB@2B H Y $#`e F`Ya$BB02B `X ! & 0  D!@Y ! #e H Y !H! #e @bB eB02B F`Y $#e H Y-$BB02B `X A & 0  D!@Y ! #`e F`Y !F! #e @bB eB@2B H Y  $#`e F`Y1$BB02B `X  & 0  D!@Y ! #e H Y !H! #e @bB eB02B F`Y $#e H Y9$BB02B `X  & 0 D0 B02B F`Y &0  @!Y !F! # e BbBeH02B `X $ #`e F`Y$@BH02B `X &0 @0 B 2B D@Y  &0  B! Y !D! #`e F0bBeH02B `X $ #@e D@YM$@BH02B `X ! &0 @0 B2B B Y A & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y]$@BH02B `X a &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y)$@BH02B `X &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y=$@BH02B `X &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Yi$@BH02B `X ! &0 @0 B2B B Y A & 0  D!@YZ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* %" !B! #`e F0bBeH02B `X $ #@e D@Y$@BH02B `X a &0 @0 B2B B Y  & 0  D!@Y !B! #`e F0bBeH02B `X $ #@e D@Y$@BH02B `X  &0  @!Y ! # e B Y !B! #@e D bB`eF@2B H YH02B 0 Be @B:L BB,@fD2L BB,`eFB8L BB,eH2L BB,`f$ 1BD0B3B F`YF@0B Hp qp  !0 0 ,` p q8 !! B! L @B,@.@ D B ,, ,@, 3B, N!0B2B F`Y F! # !!@ @,HH!Hx7P !@ #b @P !!   ,@D00BF !@ C !0 B0 , a H! HX P`!(B(,, H,@P, 3+ N!1B B ! p (C A!  @C !!0 0, 0F! # H!$  ,@ P`!( (, P(qW, X!, ,, X,q `!D D,@"H"$ `!0L 0L,P& @!PT PT,g ,!X !p\ p\, H,! HYP.!HHKPN!B3B B Y ! @$D0B1B FP !@ HHx! @!0  @C @ ! ,HH$, !! , d B Y !B! @ B2B D@Y  &00 F BBD@B2B H Y  &0 0 @B H@2B @@X H` &$0 H B$@2B P@PX X@ &,0 X(B,A2B " X & H0 $0DB &"OP&PA2B *X &`X0 ,pTB .c@O`.A2B 2 X &h0 4dB 6Op6A2B :X &x0 <tBx:A2B >}B(l @PB,, P, #* N!B2B @BB /l BB,, , #~* N! B2B D B`)l F0B0,, , #n* N!@$0UP `!@B  % 1nF`(!(e(@e(d0:L XD @8@0(#Jy@@J!yH  B:L D  `c$1B@3B@ !@ # a B! Y ! # f H HX !  3B @Y$B B3B @@X H!$ A@$ 3B D@Y !0 B0 ,@ D3B @bB fB3B @@X H$H #@f D@Y$BB03B `X @@! `@ 3B H HX H !$ #f @bB fB 3B D@YD03B 0 Bf 2B H$,*@ @B, a B! Y 0!0Y 8@!8Y @B!@Y $S( J! 2B D2B @P8 A! , Bq @!0 0 , !$ P !( (,`c X!`XX0!p,B8Y$R( J! !  ,@f  ! 2~F !(c01B `X !0 c 1B@0pH!b  H 1b0 1B1B @@X @p q  @!@X H &$0  H HRp$ 0C @!@X ! ,@0@1B@1B Hp$ q4 @$02B 1B @Bd (@!(Y$L( F!p (0C @!@X ! ,@0@1B H@!$B$,@d$@2B X`XX $,#`d &`X$PLBP*`A2B ,X !p\ B\,A2B 0X Ȁ!dBd,d0A2B 4ahB`dh6A2B 8X8A2B :!tBdt<1B >X &@0  H! Y (A!PB0, (!(Y 0!0Y $P( F!p (0C @!@X& ! `@b1B H$,H@,P, # F!B1B @@@XU `!@B  (`00H`  ! `` H 8 @1 `t:L H$B`X $ 0 80! @ ! @?#@0B 0@0B `aD !! A P@1 (t @$ B .t H$B@X @$  ,8@ !  ,  !   3~F`(b(@a(a01B `X ! ,D (J(Yv? @!@ #H U0 `!@B  ) 3xF`(!(a(@`(`0@:L 0 0 /t @ f B 3BD1B ! # bB 0BD00B `X !0 a @0B B Y0B! HPJ! 0B D@Y0A$pB # a!@ # a BP  a!  ,@  !0 B0 , a 0B P@PX X !, ,, XX(#@a $@X8$@HBL(P0B *X !`X `X,B,P!TBX*p0B .X .!\ #a 0a`B a`20B 4@X $h#a :X$tBx>`0B 0L0Y 8A &p0  8N!8Y 0L!8 #a @P@Y @!P! # a HRbBa@0B B YB 0B D "Ba00B 0 B d H! HX P &(0  P!@PX 0!0Y 8!8Y @!@Y $L( J!0B @0B BP  a!  ,@ !0 B0 , a 0B P@PX X!, , 0B $@X$@HBL(P0B *X !`X BX*p0B .X !`B`,`.0B 2adB@ad40B 6`X60B 8!pBap:3B< @!| >!`B L 0L`B,c 8N!8Y 0>!0Y 8R!8Y @@!@Y $K( J!p pC ! B! 3BD3B @s !0 0 , f H! HX0!p$B8Y$K( J!d$ ! ,@` D@Y  &0  @!Y !0 B0 ,8D!B@Y H! HY$TK( J! $ @$ U0 `@!@B !2|F !(e01BrHc0H c 1B1B@00B2B H HX H!$ a$2B @Y A$PB # [ bIE$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ." a!@ #`e P  H`!$  ,@ P!(B(,`e(2B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`2B ,X ` &p\0  .X .!p\ P.! 8$ %dB ,!h#`e 6`X ` &p0  8X 8!p `8y! !4 ` &x0  <X <!x x,C <xB 6!l #e >X >!| #e H@bBeJ`2B 0L0Y 8$8#`e `X H` &$0  H HX H!$ p! @`$ P%(B X!@,#@e $@X ` &@P0  (X )!@P @BP$2B " X "!D #`e &0aLBeL*p2B .X $\#e 0X ` &h0  4@X 4!h 04! 4$ %xB 0!l#e :X ` &|0  >X >!| C|:@2B H Y !H! #e (JPbBe@`2B 0L0Y 8$8#@e P@PX ` &0 0  `X !0 @8! @l$ X%,B !@H#e (X ` &D0  " X #!D BD(02B &`X &!L #e *PaTBeT,p2B .X $\#e <X ` &`0  0X 1!` P0! d$ %pB <!t#e >X a &@0  H Y I!@ C>2B @Y !@! #e (JPbB e`2B 0L0Y 8a &p0  8N8Y 8O!p `Ny! !4 X` &,0  X`XX X!, ,, X0,B L2B P@PX ` & H0  $@X %! H p$! $ %PB !L#e *X ` &`X0  ,X -!`X 0,! !4 ` &d0  2 X 3!d d, C 2pdB *!T #@e 4@X 4!h #e 0a`Be`82B 6`X ` &t0  :X 0;!t @:y! !4 ` &|0  >X 0?!| |, >|Bx62B @Y H` &$0  H HX H0!$ P! (M$ 8%PB X@!(-#`e `X @` & 0  @@X @0! `y! 0!4 ` & H0  $@X 0%! H  H,@B $`HB !0 #e (X (!P #@e P`(B e("02B &`X ` &`X0  ,X p-!`X p,! !4 ` &PT0  *X p+!PT PT, *TBd&2B 4@X ` &`0  0X p1!` 00! \$ %tB 4!|#`e 6`X ` &x0  <X p=!x @X>2B <!xB ex2B 6mBf H! Y X &,0  X!`XX 6! Y (N!(Y 0!0Y $4B( F!2B @02B P  H`!$  ,H@ P` &(0  P@PX P!( `d(A2B "Dq @$ @! H  H,($!HP a!@ #`e P  H`!$  ,X@ P@!( (,`)D X, ,, c "! X !P-B (J(Y 0"!0Y? !B,`e2B @@X2B P@PXX$(B," 2B $@X $!H #`e &`X &!L #e (@aPBeP*`2B ,X ` &p\0  .X .!p\ p\, .X# e 2 X8$dBh62B 8X ` &t0  :X :!t t,C:!pBt82B <X <!x #e >a|Be|HP2B (J(YJ`2B 0L`"BeN0 2B !! ,(` @ B , d H! HX P!(B`A P( @PX @!P B(Y 0!0Y 8!8Y$t( F!p pC ! H@x% !0 B0 , d H! HX ! Y (!(Y$<( F!p (K ! `f 2BH 3B$2B X-B f "! X & H0  $!@X ! Y ("!(Y 0$!0Y $?( F!$ ! # !0 B0 ,(` @ B , d H! HX P!(B`A P( @PX ! Y (!(Y 0!0Y 8!8Y$T( F!p C ! H@x% !0 f  2BP 3B(2B "EB@f $!@X &0L0  &!`X "! Y ($!(Y 0&!0Y $L>( F!,$ !B,@,  F!HU `!@B U$d)db p2!(d (c(c  Hbd@1B Bp q  @!@X !   ,@D Dp q  @!@X @!dBd,dd@B2B B Y $# d 2 Xq$0dB@2B @@X ! B! B B2B D@Y !D! #`d 0` B d 2B2B @Y@@2B @ B d B 2B Dp s`  $p a7 08 !d  8dap ! h@! @!  !h #@b D@Y Dq  !0 0 , a 2! X &0  @!Y!0dB`Y @!Y $\<( b!B1B B 8$D! $pa7 P8 !0  X pW H!$ `! P!(  X!`- # b " X "Dq ! H  H,`a &!`X &@P0  (!X$!0LB`Y (!Y $;( b!B1B B  8dD! $pa7 P8 !0  X pW H!$ X! P!(  X!X- # b " X "DqL ! H  H,`a &!`X &@P0  (!X$!0LB`Y (!Y $ ;( b!B1B BL 8D! $pa7 P8 !0  X pW H!$ P!! P!(  X!P- # b " X "Dq ! H  H,`a &!`X &@P0  (!X\{c\q$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "$!0LB`Y (!Y $d:( b!B1B B 8D! $pa7 P8 !0  X pW H!$ H1! P!(  X!H- # b " X "Dq ! H  H,`a &!`X &@P0  (!X$!0LB`Y (!Y $9( b!B1B B 8D! $pa7 P8 !0  X pW H!$ @A! P!(  X!@- # b " X "Dq, ! H  H,`a &!`X &@P0  (!X$!0LB`Y (!Y $9( b!B1B B !  , U `!@B  % 3tF`(!(d(@d(c0Hc @ H@bD01BB>L @ƒXD B8@0(!#!Jy@B!J!yH  0>L 0 a$0B @01B` Q! #@c DPL @`! B , e 2B @Y@2B B Y$B2B H HX H!$ #`e `X  ! #e @bBe2B B Y !   , D#`e `X@$ B @2B H HX ! , DB $B 2B D@Y !D! #`e 0` Be 2B @Y H` &$0  HH#@e D@Y$B 2B H HX &0 @ $B2B B Y !B! #`e 0` Be  2B D@Y H` &$0  HH# e B Y$B 2B H HX &0 @ $B 2B D@Y !D! #`e 0` Be 2B B Y H` &$0  H HX H!$ 0! !4 a & 0  D@Y E!   , DBB2B @@X H` &$0  H HX H!$ 0! $ %  B !# e B Y H` &$0  H HX H!$ 0! !4 @` & 0  @@X @!  ,A@ @0 B B! #e @Y !@! #@e D bB e2B @@X ` &0 0  `X p!0 0! !4 a &0  @Y qA! , @B 2B D@Y ` &0 0  `X p!0 0! $ @% B HD!%# e B Y ` &0 0  `X p!0 0! @!4 H` &$0  H HX Hp!$ $, AH H$B B!@ #e @Y !@! #@e D bB`e2B H HX @$@$#e @Y ` &0 0  `X !0 0! m$ @%  B H@!%# e B Y ` &0 0  `X !0 D B2B @@X @ ! # e H`$Be$@ 2B D@Y $#e @@X H` &$0  H HX H0!$ 0! $ % B  !#@e D@Y H` &$0  H HX H0!$ @D$D02B `X  ! #e @` Be @2B B Y H$H#`e `X @` & 0  @@X @! 0! $ H%$B  !#@e D@Y @` & 0  @@X @! @D D2B H HX H !$ #`e 0` Be @2B B Y @$@# e H HX ` &0 0  `X !0 0! !$ @% B  !#@e D@Y ` &0 0  `X !0 @D D2B @@X @ ! # e H`$Be$@2B B YB02B 0 B@e DL @ !p p,88$Hh P a!B, eB 2B D@Y !0 0 , # e H HXP$$B(2B " X ! H  H,@B$!DBH"02B &`X &!L #e (@aPBeP*`2B ,X ` &p\0  .X# e 2 Xм$dBh62B 8X &t0 :!pBt82B <X <!x #e >a|Be|Lp2B 8N8Y @a &0  @P@# e B Y$B  2B D@Y H &$0 H "B$D2B P@PX P !( #`e X`,B e," 2B $@X ` &0L0  &`X &!0L 0&! !4 ` &PT0  *X *!PT PT, *@TBP$p2B .X ` &`0  0X 0!` @08! Ȩ$ %hB .!l#e 8X ` &t0  :X :!t P:! !4 ` &|0  >X >!| |,C >|B 8!p #e 0L0Y 0!L! #e @bBeN2B @P@Y  &0 0  # e B YH$ B$D2B P@PX X &,0 X (B,2B " X "!D #`e &0aLBeL* 2B $@X$@2B (@!PBeP, `!`B`,@e`4p2B .X $\#e :X$tB|82B <X 0 &`0  0L!0Y <!0y #e @Y !@! #e 8NpbB`e2B @@X @$@!# e B Y$B2B X`XX &D0  "! X X!, #`e &`X &!L #e *PaTB@eT$@2B (X $P#@e 4@X$hB\22B 6`X &p0  8!X 6!l #e :X :!t #e >a|Be|<`2B 0L0Y $#e 8N8Y@$B 2B @P@Y P &(0  P!@PX @P!P # e B Y !B! #@e D bB`e2B " X $D#e *X($`TBP,2B 0X &p\0  .!X 0!` # e 2 X 2!d #@e 4ahB`eh62B 8X $p#e >X $|B @`2B 0L0Y @ & 0  @!@X 0L!@ # e H HX H !$ #e 8NpbB@e2B @P@Y $#@e D@Y$ BD$02B &`X &@P0  (!X &!L #e *X *!T #e ,`aXBeX.2B 0X $`#`e 6`X$lBp:2B <X  &0 0  !`X <!x #e >X >!| #e @bBe`2B 0L0Y H$H#e 8N8YXl$B,B2B @P@Y @ &D0  "! X @P! #@e $@X $!H #@e D bB`e&@2B (X $P#e .X$\B`22B 4@X &l0  6!`X 4!h #e 8X 8!p #e :atB`et2B <X $x#e @YH$B$`2B 0L0Y X` &,0  X!`XX 0L!X # e B Y !B! #e 8NpbB e"2B @P@Y $#@e D@Y$PBP*`2B ,X &p\0 .`!XB]Θ_$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* e)"\,2B 0X Ƞ &d0  2! X 0!` #@e 4ahB`eh62B 8X $p#e @@X$ Bx>2B H HX PP!( AH(2B @Y X@!,B,,,@`2B 0L`bB eB2B " X 8$8E#`e &`X@$@LB(P2B *X a & 0 DP!TB*`2B ,X @ &p\0  .!X ,!X #e 0a`B e`22B 4@X $h#e 8X$pBt2B <X &|0 >!xB|<2B H HX P &(0  P!@PX H !P$ #`e X`,Be,@2B B Y 0$0#@e $@X8$0HB&@2B (X @ &0 @P@!PB(P2B *X  & 0  D!@Y *!U #e ,`aXBeX.2B 0X02B 2!dB`edA2B 4iB`e 6!`X @`! B ,`,p,@, 3 J!2B @2B BP !!   , 8!8Y$( A!  , @ !! ,@  D`N D@2B H HX P@ &(0 P$B  OD A2B $@X &0L0 &@HB (2@OT(`A2B ,X &p\0 .XB 0 sOd0A2B 4@X &l0 6hB 8Ot8A2B <X !| |,+P 0L` <A|B <px q$ 8!!p @AN!(L @B,@`,p, # J!L !! AB! B>L D B ,`,p, # J! !! a@!.L BB,`,p, # J! B2B D B*\ @B,`,p, # J!B2B BB@.| D B ,`,p, # J!B2B @B a B! Y 0@!0Y 8B!8Y$D%( J! B2B D BBd @Y 0D!0Y8@!HhJPJ!B2B B Y0e$pB #? A!@ #e @P  A!  ,X@ `!0 B0 , e 2B P@PX X$X(#@e $@X($@HBL(P2B *X !`XB`X,BX*p2B .X .!\ #e 0a`B e`22B 4@X $h#e :X$tBx>`2B 0L0Y 8!pBp,D0L2B @P@Y @!P! #@e D bBe@2B B Y @$@# e H HXP $$B(2B " X ! HB H, BH"02B &`X &!L #e (@aPBeP*`2B ,X,p2B .p!\Be\0A2B 2!fB@+@ 4hBh,`e 6!`X 02!0Y 84!8Y @6!@Y $T#( Js f8 @! ! # bB  !0 0 , cH B X`XN,A2B " X ! H `c & L@+| (@P H( PDB *"@NX*pA2B .X !` ù 2@Nh2A2B 6!nB.@ 8pBp,.@ :tBt,`,p,, 3B J!H U0 `@!@B ! 2zF@ !(d(@d01B0B@B2B B Y C! `aB2B @p q  @!@X  !0 0 ,`@ p q  @!@X !! ,  Bp q@ !! , (J(Y$d( H!2B BPT a!B,`e2B @@X H$H #`e X`XX$ ,BD$02B &`X &@P0  (!X &!L #e *X *!T #e ,`aXBeX.2B 0X $`#`e 6`X$lBp:2B <X &|0  >!X <!x #e (J(Y (!J! #e 0L`bBeN2B B Y $#e @@XH$ B$2B X`XX &D0  "! X X!, #@e $@X $!H #`e &0aLBeL(P2B *X $T#e 0X$`Bd42B 6`X &p0  8!X 6!l #e :X :!t #e <axBex>P2B (J(Y 0$0#`e `X$ BB2B @@X H` &$0 H B$2B P@PX X@ &,0  X!`XX P !X( # e "aDB@eD$02B &`X $L#e ,X$XB\02B 2 X Р &h0 4!dBh22B 6`X &p0  8!X 6!l #e :atBet<2B >X ($(}#e 8N8Y$B @2B B Y @ & 0 @"B B2B H HX P &(0  P!@PX H !P$ #`e X`,B e," 2B $@X @$H#e *X$pTBX.2B 0X &d0 2!`Bd02B 4@X &l0  6!`X 4!h #e 8apBep:2B <X<2B >!|Be|J`B2B 0L0B+@ @B,e 8N!8Y (!(Y 0@!0Y 8!8Y $( H!1B B1B @PH  !0 0 , 0!0Y>? 6 !! B! L @B,`.@ 0 B0 ,P,`,p, 3 H!1B B !! ,D@01B @@XU `!@B 3|F !(c01B0B@1B @@X @! `a B2B,`d2B @@X H$H #`d `X a &0  @Y QA! 0@! @$ H%$B P!@(#d @Y H` &$0  H HX HP!$ D$@02B `X  ! #d @` B@d 2B H HX a &0  @Y A! 0@! !4 @` & 0  @@X @!  , @0 B 2B @Y @` & 0  @@X @! 0! $ H%0$B P@!(#d @@X H` &$0  H HX H!$ 0! !4 P` &(0  P@PX P!( (,@AP P0(B @! #d @Y !@! # d H`$B@d$02B `X @` & 0  @@X @p! 0! !4 H` &$0  H HX Hp!$ $, H$B2B @@X H` &$0  H HX Hp!$ 0! $ P%0(B !# d H HX P` &(0  P@PX Pp!( 0! !4 @` & 0  @@X @p!  ,A@ @0 B H!$ #d @Y^dB$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " !@! #@d P`(Bd(02B `X H$H #d @@X P` &(0  P@PX P!( 0! $ H%0$B !#@d P@PX H` &$0  H HX H!$ @AP$02B `X  ! #d @` Bd @2B H HX P$P$#d @@X a &0  @Y A! 0@! l$ H%0$B P!(#d @Y H` &$0  H HX H!$ D$@02B `X  ! #d @` B@d 2B H HX $%#d @@X P` &(0  P@PX P0!( 0! $ H%0$B !#@d P@PX H` &$0  H HX H0!$ @AP$02B `X  ! #d @` Bd @2B H HX P$P$#d @@X a &0  @Y @! 0@!  $ H%0$B P!(#d @Y H` &$0  H HX H!$ D$@02B `X  ! #d @` B@d 2B H HX2B @"B`d1B @!B@d P!@PX H &$0  H! HX ! Y (!(Y 0!0Y $ ( F! , a ! 3zF !(f01B0B@@3B @@X @! `a 3B,`g3B @@X H$H #`g `Xm$ B3B @@X H@!$B$,A@$3B P@PX P !( #`g 0` B`g 3B @Y @$@#@g P@PX$(B 3B @@X H !$B$,A@$3B @Y !@! #`g 0` B@g 3B X`XX @$@,#g @Y $B 3B @@X H!$B$,A@$3B X`XX X !, #`g 0` B@g 3B @Y @$@#`g X`XX$,B 3B @@X H!$B$,A@$3B @Y !@! #`g 0` B@g 3B X`XX @$@,#g @Y($B 3B @@X H`!$B$,A@$3B X`XX X !, #`g 0` B@g 3B @Y @$@#`g X`XX$,B 3B @@X H &$0  H! HX @!H #g @Y !@! #`g 0` B@g 3B X`XX @$@,#g @Y$B 3B @@X H &$0  H! HX @!H #`g X`XX X !, #`g 0` B@g 3B @Y @$@#`g X`XX$,B 3B @@X H &$0  H! HX @!H #g @Y !@! #`g 0` B@g 3B X`XX @ $@,#g @Y$B 3B @@X H &$0  H! HX @!H #`g X`XX X !, #`g 0` B@g 3B @Y @$@#`g X`XX$,B 3B @@X H` &$0 H B$3B @Y @ &0 0  !`X !@! #@g P`(B`g(3B @@X H$H #g @YP$B(03B `X @ & 0 @0 B 3B H HX P &(0  P!@PX H !P$ #`g X`,Bg,@03B `X @$@ #@g P@PXX$(B,@03B `X @ & 0 @0 B 3B H HX P &(0  P!@PX H !P$ #`g X`,Bg,@03B `X @@$@ #@g P@PXX$(B,@03B `X @ & 0 @0 B 3B H HX P &(0  P!@PX H !P$ #`g X`,Bg,@03B `X3B @ B g @3B P)B`.@ X,B,,g @!Y ! Y (!(Y 0@!0Y $( F!3B @03B P H!$ $,@eP$B  OD A3B $@X !0L ‘ (2@OT(`A3B ,X !p\ ñ 0 sOd0A3B 4@X !l 8Ot8A3B <xB)\ >|B|,@,P, #  F!B3B @B`*\ 0 B0 ,@,P, # F! !  , a ! 2~F !(c00B`0 ,d @2B @@X H $H #`d `X a &0  @Y @! 0@! @$$ H%$B P!@(#d @Y H` &$0  H HX H!$ D$@02B `X  ! #d @` B@d 2B H HX !$%#d @@X P` &(0  P@PX P`!( 0! X$ H%0$B !#@d P@PX H` &$0  H HX H`!$ @AP$02B `X  ! #d @` Bd @2B H HX02B `X@@$ B @2B H HX H!$ #@d P@PX P !( #`d 0` Bd 2B @Y@2B H $B@d$01B 0 Ba @!@X &0  @!Y ! Y (!(Y 0@!0Y $ ( F! , d ! 0~F !(g01B0B@3B @@X @! `a 3B @Y %$PB #? !@ #`` P  H!$  , @ P!(B(,``(0B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`0B ,X$XB\00B 2 X ` &h0  4@X а4!h P4! !4 ` &p0  8X 8!p p,C 8pB 2!d #` :X :!t #` <axB`x>@0B H Y (a &P0  (J(Y (qJ!P `Jy! 0!4 a &0  @Y q@! , @`BH0B H HX @` & 0  @@X @p! p! P$ X%,B !PH#` (X ` &D0  " X p"!D 0"! !4 ` &PT0  *X p*!PT PT,B *0TB (!P #` ,X ,!X #` .pa\B`\00B 4@X ` &p0  8X 8!p @8y! !4 ` &l0  6`X 6!l l, 6lBd40B <X ` &|0  >X >!| P>! (9$ %PB <!( #` H Y 0a &`0  0L0Y 0L!` `Ly! @!4 X` &,0  X`XX X!, ,,`AX X,B H!@ # ` H HX H !$ #@` P`(B@`($0B " X $D#` (X ` &`X0  ,X -!`X p,! `$ %p`B (!p#`` 6`X ` &d0  2 X Ȁ3!d `Cd60B 4@X 4!h #` :atB`t>0B @Y $#`_}iz$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* \Z"& (J(Y 0a &`0  0L0Y 0M!` 0L! Xd$ @% B J!X# ` H HX P` &(0  P@PX P!( AH( 0B $@X $!H # ` "aDB``D&P0B *X*`0B ,`!XB`X0@3B (@QBc .!X &p0  8!X (! Y (.!(Y 08!0Y $t( F! , U `!@B 0~F !(g01B0B@3B @@X @! `a 3B @Y %$PB #? !@ #`` P  H!$  ,8 @ P!(B(,``(0B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`0B ,X ` &p\0  .X .!p\ P.! $ %dB ,!h#`` 6`X ` &p0  8X 8!p `8y! !4 ` &x0  <X <!x x,C <xB 6!l #` >X >!| #` H@bB`J`0B 0L0Y $# ` H HX @` & 0  @@X @! p! P$ X%,B !PH#` (X ` &D0  " X "!D BD(00B &`X &!L #` *PaTB`T.0B 2 X ` &`X0  ,X p,!`X 0,! !4 ` &h0  4@X p4!h h, 4hB`20B <X ` &l0  6`X p6!l @68! $ %|B <!#` (J(Y ` &0 0  `X p!0 P! !4 0a &`0  0L0Y 0qL!` `,D0 0LB (J! #` @@X @ ! #`` X`,B `,0B P@PX ` & H0  $@X $! H `$y! !4 ` &@P0  (X (!@P @P, (PBDP0B *X ` &p\0  .X .!p\ p.! 8$ %`hB *!`# ` 2 X ` &p0  8X 8!p 08! !4 ` &|0  >X >!| |,C >|B 2!d #` :X :!t #` <axB`xH00B `X 0$0 #` (J(Y @` & 0  @@X @! @8! H`$ X%,B J!HH#` (X P` &(0  P@PX P!( B((0B " X "!D #`` &0aLB`L.0B 4@X4P0B *P!TB`T,3B 0aBc 8!X &|0  >!X 0! Y (8!(Y 0>!0Y $( F! , U `!@B 1~F !(f01B0B@3B @@X @! `a 3B @Y %$PB #? !@ #`f P  H!$  ,@ P!(B(,`f(A3B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`A3B ,X$XB\0A3B 2 X ` &h0  4@X а4!h P4! !4 ` &p0  8X 8!p p,C 8pB 2!d #f :X :!t #f <axBfx>@B3B H Y (a &P0  (J(Y (qJ!P `Jy! 0!4 a &0  @Y q@! , @`BH@3B H HX @` & 0  @@X @p! p! P$ X%,B !PH#f (X ` &D0  " X p"!D 0"! !4 ` &PT0  *X p*!PT PT,B *0TB (!P #f ,X ,!X #f .pa\Bf\0A3B 4@X4A3B 2 X$dBl:A3B <X <!x #f >X >!| #f (JPbBf@0@3B `X@B3B H@"BfL3B @!B`c X!`XX H &$0  H! HX ! Y (!(Y 0!0Y $( F! , U `!@B 1~F !(f01B0B@3B @@X @! `a 3B @Y %$PB #F? !@ #`f P  H!$  ,@ P!(B(,`f(A3B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`A3B ,X ` &p\0  .X .!p\ P.! $ %dB ,!h#`f 6`X ` &p0  8X 8!p `8y! !4 ` &x0  <X <!x x,C <xB 6!l #f >X >!| #f H@bBfJ`B3B 0L0Y $# f H HX @` & 0  @@X @! p! P$ X%,B !PH#f (X ` &D0  " X "!D BD(0A3B &`X &!L #f *PaTBfT.A3B 2 X ` &`X0  ,X ,!`X 0,! !4 ` &h0  4@X 4!h h, 4hB`2A3B <X ` &l0  6`X 6!l @68! $ %|B <!#f (J(Y ` &0 0  `X !0 P! !4 0a &`0  0L0Y 0L!` `,D0 0LB (J! #f @@X @ ! #`f X`,B f,@3B P@PX A3B $ !HB fH"@3B (@QB`c &!`X &PT0  *!X (! Y (&!(Y 0*!0Y $( F! , U `!@B 3|F !(c01B0B@1B @@X @! `a 1B @Y e$PB #R? !@ #`d P  H!$  ,X @ P !(B(,`d(2B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`2B ,X,$XB\02B 2 X ` &h0  4@X а4!h P4! !4 ` &p0  8X 8!p p,C 8pB 2!d #d :X :!t #d <axBdx>@2B H Y (a &P0  (J(Y (J!P `Jy! 0!4 a &0  @Y @! , @`BH2B H HX @` & 0  @@X @! p! P8$ X%,B !PH#d (X ` &D0  " X "!D 0"! !4 ` &PT0  *X *!PT PT,B *0TB (!P #d ,X ,!X #d .pa\Bd\02B 4@X ` &p0  8X P9!p @8y! !4 ` &l0  6`X P7!l `$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* :0"7l, 6lBd42B <X ` &|0  >X P?!| P>! ($ %PB <!( #d H Y 0a &`0  0L0Y 0QM!` `Ly! @!4 X` &,0  X`XX XP!, ,,`AX X,B H!@ # d H HX H !$ #@d P`(B@d($2B " X ` &PT0  *X *!PT p*! !4 ` &@P0  (X (!@P @P, (0PBL"p2B .X ` &`0  0X 0!` 00! $$ %lB .!d#@d 4@X ` &t0  :X :!t @:y! !4 a &0  @Y @! ,D @B 4!h #`d `X  ! #d <axBdxJ`2B 0L0Y X$X#d H Y H` &$0  H HX H!$ P! P($ %HB H!PT#d (X ` &D0  " X "!D BD(02B &`X &!L #d ,`aXBdX02B 6`X $l#d 8X ` &t0  :X `;!t `:8! $ %hB 8!}#`d `X ` &x0  <X `=!x `@xP2B (J(Y (!J! #d @` B`d `2B 0L0Y H$H#@d P@PX ` &PT0  *X *!PT p*!  !$ %@DB ! Q#`d &`X ` &`X0  ,X ,!`X `BX&2B 0X 0!` #d .pa\B d\22B 6`X62B :!tB@dt41B 8!rBd >!X &0  @!Y 8! Y (>!(Y 0@!0Y $( F! , U `@!@B 1~F !(e01B0B@2B @@X @! `a 2B @Y e$PB #? !@ #`f P  H!$  ,@ P!(B(,`f(3B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`3B ,X ` &p\0  .X .!p\ P.! ,$ %dB ,!h#`f 6`X ` &p0  8X 8!p `8y! !4 ` &x0  <X <!x x,C <xB 6!l #f >X >!| #f H@bBfJ`3B 0L0Y $# f H HX @` & 0  @@X @! p! P$ X%,B !PH#f (X ` &D0  " X #!D BD(03B &`X &!L #f *PaTBfT.3B 2 X2`3B ,`!XBfX02B 4!jBc 8!X &x0  <!X 4! Y (8!(Y 0<!0Y $( F! , U `!@B 2|F !(c01B0B@1B @@X @! `a 1B @Y e$PB #V? !@ #`d P  H!$  ,@ P !(B(,`d(2B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`2B ,X ` &p\0  .X .!p\ P.! ,$ %dB ,!h#`d 6`X ` &p0  8X 8!p `8y! !4 ` &x0  <X <!x x,C <xB 6!l #d >X >!| #d H@bBdJ`2B 0L0Y $# d H HX @` & 0  @@X @! p! P$ X%,B !PH#d (X ` &D0  " X #!D BD(02B &`X &!L #d *PaTBdT.2B 2 X ` &`X0  ,X ,!`X 0,! !4 ` &h0  4@X 4!h h, 4hB`22B <X ` &l0  6`X 6!l @68! 0$ %|B <!#d (J(Y ` &0 0  `X !0 P! !4 0a &`0  0L0Y 0L!` `,D0 0LB (J! #d @@X @ ! #`d X`,B d,2B P@PX ` & H0  $@X $! H `$y! !4 ` &@P0  (X (!@P @P, (PBDP2B *X ` &p\0  .X .!p\ p.! 8$ %`hB *!`# d 2 X ` &p0  8X 8!p 08! !4 ` &|0  >X >!| |,C >|B 2!d #d :X :!t #d <axBdxH02B `X 0a &`0  0L0Y 0QM!` @Ly! !4 (a &P0  (J(Y (QK!P P, (JB2B H HX X` &,0  X`XX XP!, P! $ % PB P!(# d " X ` &0L0  &`X P'!0L `&y! !4 ` &h0  4@X P5!h h,@C 4phB "!D #d *X *!T #d ,`aXBdX02B 8X ` &|0  >X >!| p>! !4 ` &l0  6`X ؐ6!l l, 6lBd82B <X a &@0  H Y H!@ 0H! 0%$ (%`B <!0 #d @@X a &0  @Y @! @@y! X!4 ` &@P0  (X (!@P @P,B (PB @!X # d H HX H !$ #@d P`(B@d($02B &`X $L#d .X ` &PT0  *X *!PT P*! ($ %``B .!|#`d 6`X ` &d0  2 X Ƞ2!d `Cd62B 8X 8!p #d :atBdtHP2B (J(Y $#d 0L0Y a &0  @Y @! `@8!  $ @%@ B XL!,# d H HX P` &(0  P@PX P!( AH( 2B $@X $!H # d "aDB`dD&2B 4@X $h#d ,X ` &p\0  .X `/!p\ p.! $ %dB ,!l#d 8X ` &t0  :X `;!t Ct8@2B H Y !H! #`d 0` Bd <P2B (J(YJ2B @"Bd1B X .Bd (!X 0 &`0  0L! 0Y ! Y ((!(Y 0!0Y $( F! , U `!@B 0~F !(g01B0B@3B @@X @! `a 3B @B ( &P0  (J(Y 0@!0Y $, !@ #`` P  H!$  ,8 @ P!(B(,``(0B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P a$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "H@P, (0PBL"`0B ,X$XB\00B 2 X ` &h0  4@X а4!h P4! !4 ` &p0  8X 8!p p,C 8pB 2!d #` :X :!t #` <axB`x>@0B H YH`0B 0L0Ye$0B0B H HX H!$ #` @@X @ ! #@` P`(B``( 0B $@X ` &@P0  (X p(!@P `(y! !4 ` &0L0  &`X p&!0L 0L, &LBD$`0B ,X ` &p\0  .X p.!p\ p.! $ %hB ,!p# ` 2 X ` &l0  6`X p6!l 06! !4 ` &x0  <X p<!x x,C <xB 2!d #` >X >!| #` H@bB`J00B `X a &0  @Y @! @@y! 0!4 H` &$0  H HX H!$ $, H`$B0B P@PX X` &,0  X`XX X!, P! 8$ %@LB !D#@` $@X ` &PT0  *X *!PT `*y! !4 ` &h0  4@X 4!h h,@C 4phB $!H #` ,X ,!X #` 0a`B``80B 6`X60B 2 X ` &t0  :X :!t p:! $ %B ( 2!#` @Y @! # ` H HX H !$ #`` 0` B` `0B 0L0YL0B X ,B``,&3B P*B c "! X &@P0  (!X ! Y ("!(Y 0(!0Y $( F! , U `!@B 0~F !(g01B0B@3B @@X @! `a 3B @B ( &P0  (J(Y 0@!0Y $\, !@ #`g P  H!$  ,@ P!(B(,`g(3B " X ` & H0  $@X $! H @$y! !4 ` &@P0  (X (!@P @P, (0PBL"`3B ,X ` &p\0  .X .!p\ P.! $ %dB ,!h#`g 6`X ` &p0  8X 8!p `8y! !4 ` &x0  <X <!x x,C <xB 6!l #g >X >!| #g H@bBgJ`3B 0L0Y $# g H HX @` & 0  @@X @! p! P$ X%,B !PH#g (X ` &D0  " X "!D BD(03B &`X &!L #g *PaTBgT.3B 2 X ` &`X0  ,X p,!`X 0,! !4 ` &h0  4@X p4!h h, 4hB`23B <X ` &l0  6`X p6!l @68! $ %|B <!#g (J(Y ` &0 0  `X p!0 P! !4 0a &`0  0L0Y 0qL!` `,D0 0LB (J! #g @@X @ ! #`g X`,B g,3B P@PX3B " X ` &@P0  (X (!@P `(8! $ %0TB "!\#g ,X ,!X #@g 4@X 4!h #g 0a`B g`23B 8X83B 6!lBgl>Ё3B :vBc <!X &@0  H!` Y :! Y (<!(Y 0!0Y $|( F! , U `!@B @E1zFH!(e(@d(d(@c(c(@b(bBL @0 ( B @aD00BF3B  Q! #e (J(Y 0!!` `,a @!Y !   ,`c F`YPJ!B, p!pYxF!BY$l( R!2B B@2B H P  @!@X (!P C 0!` `,) @B, PL@PY X@!`XY$d( R!p (`C !   ,@$D( R!B@XJ !0 p C ! ,c H Y (!P P,@XH!B`Y hJhY$T( p (`C 0!` `,@0$( R!B@X  @$@Up `@!@B (-2zF0!(c(@c(b(@bBL @ƒXD B8@0(!!ByB!Jc0!y@  0BL F0 `a 0B@B2B Q! #@b DP4 !0 0 ,) @ B , @!@Y$( L!02B F2B @P  @!@X  !&0  B! Y A! B ,`a !`X H!$ $,p,, ,@H$,( L!0BL F0 , @# , BB,@a D!@Y 8B!8Y @D!@Y$( L!1B @Y ! !&00  F!`Y8@!B@Y$( L!2B B 2B DP  @!@X a! `aF0BL 0 B0 , a H! HX P@!(B(,`c X`XX 8!8Y @!@Y H! HYP!!HxP L!BL B @, D#, @B,`a F!`Y 8@!8Y @F!@Y$( L!1B B Y ! !& 0  D!@Y8B!B@Y$( L!2B @02B FP  @!@X  @$(U@ `!@B HM2lFP!(c(@c(b(@b(a(@a(`(@`0BL F00 . H@ dJ`B2BL@B2B  8! #. @ƒXD B8PB0(!$*yB!Jc4!y(J `BL 0L` cHp1BN`B2 B0 !0 # / B0 @( D  `bF@B1BH B2B@ (! #( 8NŸXD @80B0(a:cdy@aJ#2!yF @DL H@ @aDP0BJ@B2B  Q! # e$ BP4 0 !` `,) 8NpBp,`0 `N!`Y$$( T! 2B D02B FP  @!@X  (a!P P,e @!YXJ!B`Y h@!hY $"( T!@BL H@ , B #) 0L`B`,, 8NpBp,@, D B ,`0,8,, 3. T!03B F`Y (! !&P0  (J!(YXF!B`Y$,( T!2B @2B BP  @!@X !@B@,c 0L!0Y 8a!p p, `5sd `H!`Y hL!hYpN!!HPT! 2B Dp q8 !0 eJ0B, a B! Y a!@ @,` 0L0YbT$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* C"Y`r e `@!`Y hB!hYpH!B S? T! 8a !p p (0C !   a &00  F!`YF! (A! #` @s7   p e" !@ PH! q e `q e0!L! @@! B , a H! HX P!( (,`,@,H,P$~( T! 8A!p p, 8NJ@`$ D, ? 0p1  XD08 88 @$ (a  A @$A X$A @(A P4()1B @* @fH`B3B 0Lc  $0@3B @! f H@$@@e P@PX P@(@`a X@,@@@% 3B $03B &LcW  $P3BP* !&`X0 ,pABL .\#* 0`B`, , 2dBd,@, 4hBh,`c 6!`X !p p,e :X !x x,a >!X X0!`XY `2!`Y h4!hY p6!pYx8!tB  >!@Y $( T!p3B 8N8Y ! !& 0  D!@YXN!B`Y$\( T!02B FP2B (J(P  @!@X ! bH`1B0`, a hBhY XL!`XY`Z!H 3 T!p0B8N 0BD00B`0,a (J!(Y !! ,b H! Y`5ud `F!`Y hJ!hYp@!1B x^xY H!Y${( T!1B B Y Bp qX 0!` `,0L 1BDpB1B 8N8Y8N01B Fi  (!P c@ !@ `b `X ! ,Ac X`XY `H!`Y pH!pY~ T!B T!t ! @cD`1B0`,`c F!`Y 8!p p,b @Y`5rd `L!`Y hF!hYpN!B SR= T! (a !P p  C ! # ! @a D @AC% `B3BL0B3B Fc7  8$B3B@  !&0 0 @BL @ # * H$B$,@, P(B(,`, X,B,, c "! X ! H  H,`a &!`X X!`XY `!`Y h!hY p"!pYx$!LBY$( T!P3B (J(Y ! !&@0  H! YXJ!B`Y$,( T! 2B D2B BP  @!@X 0a!` HLx8! !0 0, Fqw a ! (C 8 "&p0  8N!8Y (!PBP,d H! Y !0 0 ,`8,(, ,$( T! BL D  , B#, 0L`B`,`d F!`Y XL!`XY `F!`Y${( T!3B @Y 8! !&p0  8N!8YX@!B`Y$( T!P2B J@2B H P  @!@Xn  !&0 B BBL D#+ 0L`B`,`, F0B0,, @B,`0,,, 3 T!p3B 8N8Y (! !&P0  (J!(YXN!B`Y$$( T!@2B H2B BP  @!@X  @$HU ` !@B  % 2~F`(!(c(@c(b1B@rH@$bDH`0b"1BB H`aB1B @Y ! ,8B!HPJ!p (0C @!@X A!   C &0  @R(0C ! ,`a !`X H!$B$, 8!8Y @!@Yj? A!@ #a @P ! ,`b !`X0B!p B8Y$( J!p (K ! B ,`,  J!B@X2 !B,`,  J!B@X !B,`,  J!H U0 `!@B 0A1hF8!(f(@e(e(@d(dDL @0 , B @fD03BF3B  ! #- @ ƒXD D8@0(11ByD1Jc0!y@  DL B e H03B03B` q! #@. D 0 `. F0 d@2BH03B` 1! #`/ XD @8@B0( y@Ё"JC$B y H DL B `cF02B03 B` @! #( @0 @( D  `bF@1BH 3B@ ! #``0BrH`$`F@H 4`B "0BD0@3BHe @02BF1BB@3B H Y I!@ @cD03B `X@A$ B #? !@ #`f FP  !  ,@ ! B ,fH0@3B `X H$H #`f X`XX4$ ,BD$0A3B &`X !@PB@P,`BP&PA3B *X *!T #f ,`aXBfX.A3B 0X $`#`f 6`XD$lBp:A3B <X !|B|,C|<B3B @P@Y @!P! # f HRbB@fTB3B XV`XY `$`#f p\pYxI$B@0B3B F`Y !B,`DF@3B @@X @ ! #@f D bBfH0@3B `X H$H #`f X`XX,$ ,BD$0A3B &`X !@PB@P,`BP&PA3B *X *!T #f ,`aXBfX.A3B 0X $`#`f 6`X0$lBp:A3B <X `!|B|,C|<B3B @P@Y @!P! # f HRbB@fTB3B XV`XY `$`#f @Yp9$B^B3B B Y !0 DB@3B @@X ! B ,@@B3B H@bB`f@3B H HX P$P$# f " X$0DBH&@A3B (X p!PT BT(`A3B ,X `!p\Bp\,\,A3B 0a`B f`2A3B 4@X $h#f :XL$tBx>B3B @P@Y H1! E@PB3B PT@PY X!!B,@PTB3B `XbBfZB3B @Y p$p# f B Y]$B B3B D@Y !0 @D D@B3B H Y H!$B$, $H@3B P`(B`f(A3B " X $D#f (X<$`PBT,pA3B .X !` B`.A3B 2 X Р!hBh, h2A3B 6alBfl8A3B :X:A3B <!xBfx>3B @P¡B d `R`Y P!B,X, ` PZ!@PY $l( N!B3B @B3B BPc(7$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "j  !  , @ a!   C &@0  H R( C !0 B0 , f H! HX @!@Y H! HY P!@PY $( N!3B @Y !B,`` F!`Y @@! , ,@,X a!@ #g H`sX a! @C ! XB! !0 0,`f !`X H !$ $( it! P! X`!, P! !DBD, H! HY P!@PY X"!`XY$g( N!p (C !   ,@D@B3BHB0B @ !Pd ! aB!00BF0@3B 0 B b 2B P@PX X` &,0  X!`XX !D D,@a $@X @!0L 0L,d (X @!PTBPT,P H! HYP"!HBh(!TBpY:? p pC !  fH H `B !!0 @C !0 0 ,` `R  C H!$ # P!(B(,`b X!`XX `!DBD,@d $!@X !0LB0L,a (!X !PT PT,b ,X !p\ f 0`q ! X @!h0#`c 6`X `!p0#a :X !x0#P, X,@,`,,,x,!YHXp 0C !  fH a! C ! ,`` F!`Y @!0 0 ,  @P@Y HF! HYP!, p C !  D!@B L H@B@,g @!Y @D!@Y HH! HY P@!@PY $4( N!2B B$ !!0 p PC A!   ,$( N! !@B@, , v N!B@X !! p PC A! ,$( N! !0B0,, R N!B@X @!@Xz A!   ,$4( N!@0B @, , 2 N!B@XV A! ,$( N!0B ,,  N!B@X2 !!0 p PC A!   ,$( N! !@B@, ,  N!H0UP ` !@B }.1XF!0B@D!B pJ!FL @ƒXD B8@B0(!$"yB!Jc4!y H PFL (JP `@0BB0B  1! #`* F00 * @ gHP0BJB3"B ! #@+ D0‹XD F80@0(Ac@y(FAJT"!y FL @ f B 3BDB3B ! #, H@0 , (JP `e3BBB3B  q! #- @0ƒXD F8PB0(14(y F1JD y(J FL B @dD02B0@3B` 1! #`. F00 . H@ @cDP2BJ@B3B  ! #`/ XD @8PB0(!$*y@!Jc4!y(J FL B bH01B0@3B` ! #@( D 0 `( F0 aHP1BJ0B3 B` q! #`) XD @8PB0(!$*y @!JD!y(J HL B ``F00B0@3B` 1! #@gD@rH`$gFPH 4gB03BB  p!8 #@c,D@ 1BD0,F@,HpH, #6? !P  @B!@X (!PB,@X $#@X4$B  ,`e X!`XX P!X( # @X "!D #@  ,`BL$P , *!\#@X @!dBd,Cd0 ,@4` B`@X $l#@XH$pxB|n , d r! Y p! #@@X !t! #@ ,Gv , ( |!#@X ! B ,D@0 ,`F` B`@X H $H #@@XX0$(B,"  ,`c &!`X $!H #@X (!P #@P ,X* , 0!h#`@X 0!p `Cp6 ,` <!X :!t #@ ,> ,@g r!#@X ! Gx ,g (J!(Y !B!( #@ ,|0 ,`0 HF!$#@X P!( D (H , f "! X X !, #@  ,`L$P ,r *!\#@X p!d Cd0 ,`e 6!`X 4!h #@ ,t8 , >!# @X 1! Gr ,d x!Y !v! #@ ,z B !B,(p,, , 3n l! BP  @B!@X CX! B0B@ ,`e F!`Y D!Y F!Y ! Y $( l!@,f (J!(Y !B,# nY J!Y @! Yư? H!HPH  $&0  B D RC !  XD! @!L  $&00 F!@3B @,`Y H!Y F!Y$( l!` s@!(0CX$P Hf@ ! HBy! ( C !  pDy! !@ `aF0HL 0 !HL H$ #@cP@1B(AHL "DB@- $ HB H,`b &!`X !@PB@P,- *PTBPT, X $!Y &!Y (! Y С &0  t@Y *!`Y  $&0  xY "!Y$( l!0B@PB0BJHL BB,@` D!@Y !!0B0,p,, ,@*H t ,`, v , S> l! (8! !!B (!PBJ!, . BB,@a D!@Y !0B0,X!P H8h7 ! @$0 B @!Y B!Y D! Y F!@Y !`Y !Y !Y$l( l!@ B P `C ( &P0  (J(R0C w f? ! , g B! Y@!BY$t( l! BHP  ,`f F!`Y (!PBP, nY F!Y J! Y? H!\$ ! ,$( l!p (C a! @/ D#`aFPHL (J #`@0JL  #`@@JL H@$ #@) P( H8H! X` %&,0  X!`XX %&D0  "! X !Y "!Y$'( l! A %&0  Bp qP A %& 0  D@Y$P3BJ0BJL F0B0,+ @B,f F!Y ! Y @!@Y @ D! 0  D0$0@ l!0B ,p,  l!P,`xY F0 BJ, @p s`  , , B D 0,`, @ qdM$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* H"{ `aF!ЂB , H$ H!@JL PH( #`dX1B," JL $ HB`- &0LB0L,c (!X !PTBPT,. ,`XB`X,@X &!Y (!Y *! Y С &0  t@Y ,!`Y ! %&0  xY $!Y$( l!P1B(P,. @B, ` B! Y J!Y @!Y Z! Y X!@Y !`Y d!Y B!YJ? a! Y $ #p C,  B R C `! # @`! B , d H! HX P!(B(,`f X!`XX !DBD,@c $!@X @!0L 0L,d (X `!PT TT8`B`X,aX.2B 0X `!d0#@` 4@X ؀!l0#@p,H, P,@X,`,,(!YH8X a! p C,g (J!(Y ! , nY J!YB! ,  & 0  D@Rp 0C w f? f!PB L (JPBP, f B! Y @!Y J!Y B! Y $( l! BH !0B0,p, F l!B@X6  , Dp q ! ,$ ( l! (!PBP,(p,  l!HU@ `!@B  ) 3xF`(!(a00B(` JL @0 `/ 0 fB 3B D0@1B` ! # bB 0BD00B `X !0 a @B0B B Y0B! HhgPJ! 0B D@Y0e$pB #? !@ # b BP  !  ,@  !0 B0 , b 1B P@PX X &,0  XX(#@b $@X,$@HBL(P1B *X &`X0 ,P!TBX*p1B .X .!\ #b 0a`B b`21B 4@X $h#b :X($tBx>`1B 0L0Y 8A!pBp,D0L1B @P@Y @!P! # b HRbBb@1B B YB 1B D "Bb01B`0 , b 1B P@PX X!, , 1B $@X$$@HBL(P1B *X !`X BX*p1B .X !`B`,`.1B 2adB@bd41B 6`X61B 8!pBbp:0B <!zBd >!X 0!`B,`,p,, 3 J!1B B 1B DP  !  ,8@ ! #  P!H( # X!, ,C !DBD,@f $!@X !0LB0L,`,p,, 3NV J!B3B Bp q\ !  D!3B@03B  s @ !  , f H! HX0!p$B8Y$( J!d !! ,` @Y  & 0  D!@Y !0 B0 ,8@!B@Y H! HY$d( J! a! C!B L @B,@c D!@Y 0B!0Y 8@!8Y @D!@Y $,( J!0B B$ @$ U0 `!@B ! 3~F@ !(a(@a00B `X  &&0  @!Y A! , 0@!0Y8B!HPH! ,0a ! 3~F !(a00B `X ! HxPF! , a ! ! 3~F@ !(a(@a00B `X  &&0  @!Y A! , 0@!0Y8B!Hx PH! ,0a ! ! 3~F@ !(a(@a00B `X  &&0  @!Y A! , 0@!0Y8B!HPH! ,0a !  5 1zF`(!(e(@e(d0@LL XD @8@0(#Jy@@J!yH  LL D  `a$0B@3B@ Q!@ # e Bp q  @!@X @!0 0 , d H HX A! B ,c @!Y0!p$B, ,@,`,, s\ J!3B B 3B DP  !  ,@$2B  P!(B(,`e X`XX !DBD,@b $!@X 0!0Y8!DB@Y H$! HY$l( J!p C ! @bDB1B@0 1B1B H HX P!(B(,H 8!8Y$̾( J!p (K ! ,$( J!H U0 `!@B !1~F !(d0L 0 b 1B@00B@1B @@X @! a @00B 0@ Be@ B Y(A!H(XPF!B2B @Y !0 B0 , (!(Y$( F!2B,@,P,`,p, C F!H F!U `@!@B  % 1~F`(!(e(@d(d0LL 0 0 . @0 . B0 ^)@b D1B01B @W^) S %D  0#@d PPP` @@!  ,B 0L0Y 8!8Y$D( J!2B @P0 A! ,  0L0Y$$( J! NL D   , 0L0Y 8!8Y$ ( J! A! ,  B@_B @!0 0! @4, @@!  ,@$̪( J! (  A! , b B! Y A! B , 8B!8Y @D!@Y $( J!2B @`s !, A!   ,$t( J! B, Y 0B!0Y$l( J!NL @ , 0L0Y 8!8Y$T( J!  A!   ,$L( J!BNL B #. @ @ 81 `t0NL 0 BY @ NL @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX   0 B@NL X, X!ANL "XD #@e $@X '&0L0  &!`X0$!pLB8Y @ '&0  @P@Y $( J! U0 `@!@B 1 2~F@ !(c(@b01B ` s @4, ! ,$4( H! ( \ A '&0  B Y !B! a@0PL 0 Hh! H (&$0 H!0B@P(, HX (!(Y 0!0Y$ܨ( H!0B @0B Bp q$ `!0 Be$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* O"0 , a P!H( #P,c$( H!PL @@ #R a!B,`a !`X H@!$B$,@A X!P, # R !H # - "DBD,`- &0LB0L,P,`,Hp,cH!DB@PY X&!`XY$$( H!PL @@ # a!B,`a !`X (B!(Y 0!0Y$( H! ! ,$( H!1B BB1B @P, `!0 B0 , b H! HX P (&(0  P!@PX (!(Y 0!0Y 8!8Y $( H!D a!B,b @!Y (B!(Y 0@!0Y$( H!U `!@B  % 1~F`(!(f(@f(e0L 0 b @B3BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$̦( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( RL X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $ܥ( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( `!D H"9(! @ '& H0  $@X 0%! H `dH& !@P dP* `!`X X,@! !p\ p\,f 0X0.!p`B #"? $D^( Z  a! 8@! ! #  &0 B01B1B@1B H@$q7 P!( (,`f X`XX 0!` `,X$, A '&0 @ B1BDB1B B Y B! `c1B @p q H!$ $,@f P@PX0!p(B #? ! ,@ 1BD1B Bp q !0 0 ,f @@X0!p B #~? ! ,D@ 1BD1B Bp q !0 0 ,f @@X0!p B #R? ! ,D@ B1BDB1B B Y C! `c1B @p q H!$ $,@f P@PX0!p(B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #j? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #>? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #b? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #6? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B # ? ! ,D@ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,@ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,@ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,@ 1BD ! 8BP! !0 0 ,`@2B 2B H$q7 P@!( `b XP,qw @!D D,@f $@X 0"!` `,$d, A! ,D@ B1BDB1B B Y aC! `c1B @p q H!$ $,@f P@PX0!p(B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #v? ! ,@ B2BD !! 8Bp!  !0 b @ q7 H !$ $,@f P@PX 0!` `,P$t, !! ,D@ B1BDB1B B Y C! `c1B @p q H!$ $,@f P@PX0!p(B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #~? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #R? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #&? ! ,D @ 1BD1B Bp qf;*Eu$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* q" !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #v? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #J? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #n? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #B? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #f? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #:? !! ,D@ B2BD$ ! `b p q @!  , f H HX 0!` `,H$ , ! ,D@ B1BDB1B B Y C! `c1B @p q H!$ $,@f P@PX0!p(B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #v? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #J? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #n? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #B? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #f? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #:? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #^? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #2? ! , @ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D@ 1BD1B Bp q !0 0 ,f @@X0!p B #? ! ,D@ 1BD$ $C(  U0 `!@B ! 3~F@ !(b(@a0RL 0 a 0B @Pp ! 8B! @!0 A 8 @1 `tRL @B`X  0 8! a )&0  B! Y @@! D P 1 (t @$!@8! @!0 D h 1 4t0RL BB`X 0 P P, 8!8Y $ ( H!L A! D 81 `t0RL 0 BY  @ 0 8! @@! A P H1 (t@$RL P(B@X @( H8! X@!, B h,1 4tX0 RL $ HB`XX XH P, P, 6 H!0BB"H 81 `t0RL 0 BY @ H  H@!$ 8(@! P@!( P!0B(0B" RL $H #`a&@RL (P # @!PT B PT1gfc $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* <" (t$pRL .p\BX\* 1B 0T # a2!H hd1 4t0RL 6lB X l2 d H29! !`p `,00$pB8Y $l( H!0BB"H 81 `t0RL 0 BY  @ # @! 8! H@!$ @A P$P1 (tH$RL X,B HX H, $ Hx! @!D @B hD1 4t00RL &0LB X L" D X"! @!@P B Q1 Bt<`RL ,`XBX X( PP P, B H!0BB"H 81 `t0RL 0 BY @ H D H!$ @aP H P(X1 (tP$RL "DB@PX PD ( 8$! @! H `B hH1 4t0@RL (@PB@X P$ H H$8`! !PT PT,$̅( H!0BB"H 81 `t0RL 0 BY @ H  H@!$ @A P$P1 (tH$RL X,B HX H, $ # a "pD k  @! H %?#00BH&@0B(PRL *T #a,pRL .\ # @!` C h`1 4t0RL 4hBX h0 ` H0x! @!l C m1 Bt<RL :tB`X t6 l X6! @!x C y@1  HtPRL (JPBX 0< P P, 8!8Y $t( H!0BB"H 81 `t0RL 0 BY  @ #U `!@B  3~F@ !(a(@a00B p q( a! ,$( H!0B 0B0Y(L!` HX A! , @$܃( H!p 0C(?# HPH!$ A! , Bp q Ĥi ! #b$( H!$ a! 8BH! a! , 0!0YR? a! ,$( H!U `!@B % 3~F@ !(a(@a00B p qT &0  @ O@TL @B,`/  # , BB,`-  #) @ ,`/ 0 B ,( (JP P, 0L0Y 8P!8Y@$!HPH! Ha@ `!0 8! @@ '& 0  @@X (!P P,`,? A '&0  0@0Y (L!P P,$<,  &0  B_B0@TL  #. @`! 0 H! H *&$0  H$q7 P *&(0  P@PX(! HP H!BTL @ #U `@!@B ) 1~F@ !(d(@c0L 0 b @1BB0B00B A! 0@! @`! Hx! a! , 0 )&`0  0L0Y$d( H!p (C a! @@y! !, `!0 0 ,$D( H! B,B0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, VL "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $T( H!0B @p q4 a! @By! !, @`!  ,@$$( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," @ '& H0 $02BH&@2B (X (!@P H(x! p !8 #r @!PT ( ,X #) .p\B`\,0P,$\( H!VL @B, ) B ,`e 0 B* @ B ,( (JP P,`, 8N8Y @!@Y H! HY$~( H!2B @2B BP| $@2B  P !( ((D 3Y@C X@ '&,0  00Y (L!P P,D$~( H!P B(Y$~( H!BNL @ # . B ` 81 `tNL @ B`X  @VL H$B$,$VL P(B(,`/ X,B . "D @ PD1 (t $ X X," ,B,,PP,X`, #U H!B2B @B2B BP  !0 0 ,$}( H!$ '&0  @ B . B #`) 0 0 ,` ` s @!< H@ '&$0  H HX (!P P,  H! ,/ @B, ((Y 0@!0Y 8 '&p0  8N8Y $L}( H!2BBBNL @ A?# @2B0@2B2B @p i@ H '&$0 H!2BP@H 8(X1 `t P@PX H$ P"$B (J(Y$|( H!2B B Be@02B@2B @p@ i H '&$0 @NL P( ` 8(X1 `tPNL "DB@PXPD AVL $ HB H,HNL P(B`. &0L PL1 (t $`X P(& (B@!`VL ,`XB`X,dX.A2B 0X 0`q7 !d d, (2(Y${( H! ! ,`e !`X(B!` B0Y$( H!2B B02B P H`!$ $,H${( H!l !! ,`e `X @ ,& 0  @!@X(!` B0Y$l{( H!@ #`e `X(! HxT PH!B2B B YB"B@0@NL 0 !@NL @ # ) H$ $,@/ P(B(,K (J(Y 0!0Y 8 '&p0  8N8Y $z( H!NL @ , b B Y (@!P P,  0L0Y$\( &0  @$Rp (0C (!(Y? A '&0  B Y (B!P P,  U `@!@B b@ $,,  &0 0  ` Rp C @@ '& 0  @@X !0 0,@,X @ '&0 0  `X !0 0,  D!0,L   '   H &$0  H aHRp$ C P ,&(0  P!@PX !`Y>  ,&0 0  !`X !`Y$y( h $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* &";b{*Ǒ&+OZ(H~AXP6z{fF`p;YmJXw'z\e  MMA 8G9"@L2dy+Ǔ<;/iPa^Ao$ hf] AE~?(,>Dj qU>C?06IΒAG֌(@OjC$Iw$wq]@:IO¿Vh(E&ҊL3@l2x١1@!R|0UWmG_|LO,!^qqA]D<4rY,rcX5_mis@e0di"y;;u --u2;f(YMR`WxLnbXʐ(X<1@R] ȱX8Y| ,Rm<,4)X')J-[w#_(1P )81rmr22p Y]t93{zN`Ph> 0k P'z|a}XxJ3kۙK@`@)\ aoSNpI;DhX$`'{V6\QyxҤCa@ʇca?`1A|85?Z DpȀKJ_B~9KwP r~Ia@Z{r9`j η 2*XG 4VLjJ2]P4Ʌ\pA&R-pI,2ʖp5 ә yI`o>/`YINRRr"1F~p4 baF(!9 c L100]/ (!%4!Usl E4|*Hc.8("4.' yaMQX1Io@A\axZ,@P`?*⒡ nl|stC=ꀀ- Py 0{N`^F@G qBύ2!Х"\x;hMMo@[5y"lC +< '  rm_I)?0iYhrT3hL)5Ex8 1(;oEH1b7nT6$c &0"";G]p/JBu DpxV7 & %]8RYz0 `` !w _5|q @fՍ|cEL -_U=~p0Z7u؝g9] RxzQL vP1Hvj̢bv!=8Ӽ)$ ZN1g% 8t[QYcr!6Cc l 'n&`Oq* LR}$]9!" Юxp@mY1t1+ `;JTX>3*NPlwO ~Q6CQQ`\t78j @ꨭpXcnYOQ5 KLY4F -@rjXOHuXC>@pH*t@ʞ D]P+,*1Qס}r2m4@s2Qc!,A@P;鍘ٌj`lD +RD %piUtr&_+ qWdQ&[E`UH&DI|sO3( A]\ @Hw kD\NA(Ŧ":#w P12LX@b@3 =P HEʢR^# P0hrA'Q͊%G\e_< xRݡq<\y*kRLKg*FqYhW1ᚙE&Xwz6cIJ 1h@Gӊ7 v@Cb1pMr"9(Ť@W!?Uax/2a E61(!g cR!i |`RPu1K3kp\R:,6j^C2$VB0`A,'y9@ T0_s\`IaLPev5ЀT/l}n@ U'74OX2:+|Eih x'QOBH43͍#j m֘T`& 0_؊o˛U Wa3SpW m53= (I vXi+b2w<C @eRT4ಊ(t[( njv7@yy2~  QLI/aGY 2@ HF)C1D0D? $DDO6YYILXK8d0ؑRCU4+Ƴne״41૽ wY 9\s0Ēo1Jʂv@(MhHRE Dp7bCT,m(crDX 8ii#` ]\8VzH|E810"ap`q N3>+kEMs,c6ٸЅPjcE"¼M D,W8 q0@Gey9␎e( :Ia}E[ ! xxb6 0 b|ⰟPQ <Bo\Ø!:CIi ~#n{PIGp#q#@,] 0kpAh 4*?ihŐ10Ot1 L t@x"p @B#JoX@n߫n $@W:HuPN{N 'hC XF)!)JxcKYdI2 pqt]aώN̢) QR 0T|`0*\G YE? aAs샊.pcG Hk6ppr`]|q5X01)4G$ȷSV(PjFԖ@"\a\CY  s7X`tXbG=ꃣЧyy0poC} F- 0Y 0ҭ}G0+"B"QX@7`&6"0#MݘE<&z @(LkGU8G& F @Ϧp#@N1 {X2Q@EC .1~`<RI>`E*6~\@Eiv&rPhq~aPC}mc ;VO v x/40 % {=Re:QX)'0#34.%Xrz<Ȑp{ Շx@y($-L+QذxVr0 `Tn5r! WBZB\0 !0#߀\@bJ6@bYskp ™98^O0.bOv@jc')`7jBqir~_n >0P0|6y6 8N[eP FƑ` fR PRT I(P >a  &{.a@ٌFByqyA\7Aya \͌h~93&GP@P &-*B Q"܃ mH;zqXr<Fn3iVA,8𒥞Y #x4TT=`0iO6]6Pr6@7*ߥ`-^~ \^.LA"p,k h37"ҕR 8 49ha@R_d^!JC   1q$ǜABf!` x?"!4Y@Yx:K$+.'Rp}Sp! tK`` `,}0Si &~@8.\6`)s @(p!0gB`QX'(M͹j 'ocwfCX<.`} h3 j I}7&pp؊eisR\CF(Q@F 9@l }&x <x30SX'0`/|Z}UWtY:z0(."{'9 AE#7 Yq'p䖠X (5{'M]h-Z0pW C֙A@wQ7зg}hS 4`0 Pحӿ>[Q {&l8ovY8~ԾjwNB$ ioq)T$aS&pW&@h>@sPvx1!D' HàlQE\쀡z`Fl}@pDym`9.IAY1o @aPR''hzrFA&H5@ Z[RHX `zm4 pw=ֳLY]-5d2Zح12`ӄ0y5By"yb(91cQS<81X9: #8&YfiQ:`?A 0X]3xdpDQ _0a=$:x_h̒C7mP2&uM`04P^| p PN9UxL@nzY`yKRZl<27(!oX4?[@S9@˿PXΡPOub6ŒP 0l7>0] ?i QbObAT% `z"d]r<} abX Th1*G]0-a/H s 4Xh6 ,w Q!)92qC Cp> /P'In$Q-A PZ.ʡ񂒙ca]CSeTf;.]p0᪾M%5!Ql5cSCG+#BX^ e4GP /QL`P(-l-8qVң_ Yy=;O#p Xt ȍ@A &QAp+_;<@ lt r~@&.HRϴ:e jс7RxJ 6iy D0pZ24`D 60t@(b0q@GpY ZI޵2H@B\ Xc l"D vqj ~ 1\@<w3PA[EhI`WxSk`g02)=@pOZ]z`<8Qr w,r0 8DIW'K Q]o> *j(P˻rF\%c@ \ r&}y!m"z7!t@f/0< \oIy@uEwX׃zLqJŰc9TZ > \rYj0#dvJ$hmp1`1o&9nf@ÁY1(E(W&4qPDx9`]Q(ӊ'ð(1r#֡S`и((;Z"Q <pe$s[ BEP$+_hDT\YB,I|WDy ]`=}<'Y^IKI 1'Q@r :Ct]06t'XSk-kQg`OY[283; 9 { k#NvDĤ LR({@0xid1U E` 'F b 5(3.NA@DuX砡}GPW!U '.Xk[oLy-4B:T+à=fl>_'~`حvsqK> d[% ?F Ty:DZ)Q"=KYtJ+"`o|;02Pr@%xLV,s  lXF&C;@P }csc@]ʰ+3*@ y {R@#.'D`ܐn D k;&a:c|r%˲5Kipn18d0:2@ |s03@ !d%gtb@W~ "`a#;e4Ps-`ҖnDKi=C_BV!gb@8A`mY Vz< )` 9A` =fP!yj#ϣ'lYXe pvc&%mW@x p9P N;LyAa@4j7%͟ ) ]G_Aax(E\k`(OǚYeY4}&2; h@EDz﬌ERN1) ԂdI?&jER!+_@oKCs!?HrCucArQ[yYI( z+, IR۴'9X:E`S" pLڮἐSQ9IB53u tFXX`#4Z'nIphQ7ƈQ*Dk&w.p}{YtRә بysoظ&L20q*Lw<&bcXeXwiɩ7T0@rɿ~m?@5U+iB`ZAe81Ypo@ET.YelExGMmG NŀqknMUWXTP@r_’ص>g80`؄7=>0KӐ;VBB&[$218[ؔD\Ϛrp/ I{/!şH&*I:~zB,Inr! `Lxn\iA Ikk]:吰JW NW6 HYSA9AD4ab d`IGf`30 V8"G<;AE)>8f>A`WV c-lQ |vSA+\VƔz37@~ ,e≮PIHhq!p8MqZ{-mf )06j ]CgIXMB.,2#@S\ RԞhDBzD! cj@!8^FX]%E3_)x+*s6QƐ 旚5vrJ8iЩH P ([REj<ȣC `PA  Xp)UͱtT&qvPC\cp6%7*4.$1=X %ث_n`<<3#/I2A35D h/(A e ./s _}!+D 1.8=DbU{~k5YiLOs$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* @%" D!0,L   '   H ,&$0  H! HX !`Y$dy( D!U  ! 3~F (b0XL 0 0 , @ 0 a @0B 1BP00B(0B,`0,  U `!@B % 3~F@ !(b(@a00B `X! @ YB0H0X @ ,&0 0  !`X (@(Y 0!0Y$x( H!0B B00B p q H@ HXH0B$ X@!, X!0B," 0B@ H, (@(Y 0@0Y 8$!8Y $,x( H!L$ @ Y Bp q !0 0 , (@(Y0!HPH!T A ,&0  B! Y !0 0 , (@(Y 0@0Y 8B!8Y@!!HPH! @!@XU `!@B  ) 2~F`(!(c(@b(b01B `X $0@! 1B D@YB0$H  @B!   )`8  ! B! )` 8! @!  ,@00B 0  ?## HD!@$# @B@R0p! B`R@9`! ,&0 @!XL H$B$,Y 0!0Y 8@!8Y$v( J!XL @B,`a$ @ ,& 0  @!@X H@!@$ #PB0B(XL "DB@Y @ -& H0  $!@XD,`a &!`X 0D!0Y 8$!8Y @"!@Y H&! HY$| |,/ H@B`, H Y (L!(Y 0 '&`0  0L0Y $d( F! ! ,D @:X@8@X! H@yP! X@! $@3B L h@y ! x @! H $@3B$, X$A3B," $0A3BH& .&@P0 (PA3B *pT q !`X / .\ #. 0` # . 2d @ 8d1 `tNL 6lB Xl2 \L 8pBp,p2NL 2dB. :t Pt1 (t $Xd: A3B>!dB|2@BNL H@  H!PBNL (J #) 0L` `,/ 8NpBp,2 H Y (N!(Y 0 '&`0  0L0Y $b( F! A '&0  @Y @!@ @,P,? U `!@B `;#e@f x /&<0   8  UPQb`@2!0@^L 0 0 ) 2d g @3Bd2B@ !@ #` pa /&0 . V!0H` B ` Hp% a@ P!( `A 8(X1 `tPA0B (,@Q ! H ` PH1 (t$@A3B@X P$ H HP0B *P TB`T,p0B .]a !` `, g 2! X !hBh, h2!hY p^!pYx$BY$a( V!0B @00B P  H!$  ,h@ P!(B(,`g (2B" H  7  `!0L XP&(! `!PT hT,t0! `!p\ x/ ! `!` `2 2B`4 !l l,a 8X P!t t,a <X p!| |,b XY h!0 0 ,b H\ HX x! ,a`1B b Y a!0#`Fc f`Y @!!0#@c P@PX X!P,0# c " X !H0#`d &`X !P0#Bd *X !X0#d .X !d0#d 0X @!h0#e `X`Y ha!`0#Ee p\pY x!p0#h8!tB>!B@!HPV! , PU `!@B XId)dbH2!(d (d(c (cH @8 !  0p  !   @A$ !@ #`D8F! @8 !d  0dp  ! a $  /&0 B! 0BD A!0 a21B@2B B Y B @@! H X8D8~# 0dp1  XD08 88 @$ (a  A @$A X$A @(A P4)B1BBB1B @`a !D # `!d d,@d D@Y !! ,`b F`Y ! ,pD!B@!)HPX! ,Pd ! ) 1~F@ !(d(@c0L 0 b @1BB0B00B A! 0@! @`! Hx! a! , 0 )&`0  0L0Y$|]( H!p (C a! @@y! !, `!0 0 ,$\]( H! B,B0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, A^L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $l\( H!0B @p q4 a! @By! !, @`!  ,@$<\( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," @ '& H0 $0A2BH&@A2B (X (!@P H(8! !PT ( ,X #) .p\B`\,0P,$[( H!^L @B, ) B ,`d 0 B* @ B ,( (JP P,kt]$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* yV"`, 8N8Y @!@Y H! HY$$[( H!2B @2B BP  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, ^L "DBD,DNL H$B@. $ H ` PH1 (t $@X H$$ $B@!PVL *PTBPT,dT,pA2B .X .\q7 !` `, (0(Y$ `$p q  hm$0B\ H\"9! xQ$@3B X`"! Y$B3BB $i4 $Di, H$0B$XH@g,$00B &`X&@1H0 $ $PXB !\ # $`q ȼ$0Bd4Hgl8 $tqW  $0Bx> `$Јq h$0B\Hg ^H fB $q  $@3B  P$p( q  X$ A3B,$d $Lq  $`0BP,D $TqW  $A3B\0$ $Јdq  Ј$A3Bh6 $pq  $0Bt< $p| q  `)$B3BZ p$q  @0$B3B ^ $qW  9$ B3BD $Ј q  H@$@3B$d X$,q D$00BH&@HgP,PHgT.4 $p` q  `$A3Bd4 $lq  h$A3Bp: $xqW  H$B3B|X h$Јq  p1$@3B x$q  9$B3BB $p q  P$@3B t P$(q  X@$ A3B,$T $LqW  X$`A3BP,4 $ЈTq  `$A3B\0 $di4 $pD i, $0Bl8Hgt<0B >X> Ha%7 h$ @$ B p!h #R x $qW $0BB H`g| H$Ј$q P$0B( AH`gH&T $Pi4 $pD i, D$p0BT.H g`20B 4@X4)H$7 @$ <$tB !x # $|iW4 `!$`Ei, @$0B Z2Hg^0B @Y@:H = $ $0B H!$ # P$$p( q X$ 0B,$0YHgL(L ,$Xq $p0BT.H g`2$ X#! д$A3Bh6  h#9! $A3Bt8 x#! $A3Bx> `1$p q @$0B ZHg^ 9$q A$ 0BD0H g H`g( $$HqW  $@A3BL(d ($ЈXq   $pA3BT.D ,$`q  ($A3Bd4$ 0$pl q  0$A3Bp: H`#9! $A3Bx> Xd#! `$@3B h$Јq  pe$B3B^ $q  $ B3BD $p q  H $0B$t X$,q  H$0A3BH&T @$PqW  $P0BX*4 <$Ј\q  p$A3B`2 D$hq  $0Bl8 H$pt q  $A3Bx> @L$ q  `$B3BZ pQ$qW  x$B3B@ U$Јq  $0@3Bt HX$$q  P$@3B(T \$pH q  $@A3BL(4 `$Tq  $pA3BX. d$`qW  $A3Bd4 l$Јlq  $A3Bp: p$xq  $@3B| `y$p q  h$B3B\ u$q  x $B3BBt h$ qW $0BHH`g(L |$ЈHq  4$@A3BL(, $Tq  <$pA3BX.  $p` q  D$A3Bd4 ؈$lq  L$A3Bp: $xqW  @T$A3B > `$Јq  h]$B3B\ $q  $0B^l $p q  H$ 0B$DL P$(q  X$ A3B,$, $LqWT $PA3BP* !`X h,xp! @!p\ p\,f0!H 8`1 `t X \0 p\ x.H! !h h,@42Bh60B 8X !t C Pt1 (t $Xp: 2B @ q!p ,, #> V!2B @p q A! ,@fD0 H 81 `t `X   ,, # V!2B @ 0B D@Y ! `@ 81mD $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 2" `t `X   ,  V!0B @Y ! @D 81 `t  Y B  ,,@,, C֝ V! !  8D! A! ,f@0 H 81 `t `X 2B @@q  I! ,H, # V! 2B Dp q A! , fB0 H 81 `t `X   ,, #~ V! 2B D0B B Y ! `@ 81 `t `X   , b V! 0B D@Y ! D 81 `t Y @  ,,@,, C> V!$ ! 8B! A!   ,`@0 H 81 `t `X  0 Hx! @! c 0B P@PX`! H8tPV!1B B1B @p q  ! #n !0 0 , c H! HX`!$BhY$`( V!B1B BB1B @P !   ,$9( V! ! ,$9( V!1B,@c D!@Y !B,,,, 3 V! ! @dD3B Bp q !0 c 0B H HX P!( `A 8(X1 `t P@PX H$ $ , z V!1B @ 1B Dp q  ! #n !0 0 , c H! HX`!$BhY$_( V!B1B @ B1B DP ! ,$|8( V! ! ,$t8( V! 1B@ , c B! Y !B,,,, 3N V! !!  8D! ! d@ @!0 0 ,`@ H 8 H1 `t @@X   0 @y! P4\ P@!( (,``X!H P,1 (t X$`XX P( ( , ƛ V! (C W @$ !!  88C A! , `B0 H 81 `t `X @2B H$q@iQ! ,P, # V! 3B Dp q8 A! ,g@0 H 81 `t `X @2B @ q  I! ,H, #Z V! !  8Dp! A! , gB0 H 81 `t `X @2B @ q  I! ,H, #* V!PU `!@B  1 0~F`(!(g(@f(f0@dL XD @8@0(#Jy@@J!yH  dL D  `c$2B@2B@ !@ # + B `b3BH 0B$D0B A! 0@! `!0 Hx! a! , 8 )&p0  8N8Y$t5( J!p (C a!  @Dy! !, a! ,$T5( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( dL X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $d4( J!0B @p q4 a!  @Dy! !, `!0 0 ,$44( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( -&D0  "  P7 $$, ! ,@bH L !p p,: 0L0Y8$H PJ!2B B0B @Y a!   , 0L0Y8D!HfPJ!0B B Y a! ,D  0L0Y8@!HXfPJ!l 5$p qt M$q7l 8$ qw @P$!q H<$%q P@$p) qT X!, ,,`Z X`XX 00Y$2( J! q@!2BB0B @Y `!0 0 ,D 0L0Y8!HePJ!0B B Y a!   , 0L0Y8D!HdPJ!l I$p q< !   ,@ D@Y 0D0Y$L2( J! q !2B@ 0B D@Y `!0 0 , 0L0Y8!HHdPJ! U$p q, e$q7$ \$ qW @!  ,@@3B 3B P@PX Pp!( @()`b X`XX Xp!,  ,)`_P( 2B(" 0B $@X `!0L 0L, 0L0Y8&!HbPJ!1B B Y B! @b D@Y !D!   D q!03B `X `!0  0 )`8 @`! # a H HX P`!( (,O( 0L0Y8!H(bPJ! a$p q\ A! ,`c !`X @@! B , e H! HX 0qC!` `,p,, ,@@,`H, c  J! 2B D0B @Y a! , 0L0Y8B!H`PJ! Y$p qP i$q7H l$ qW@ @!  , @ s H!$ $, H H$q@Q!2B(0B " X `! H  H, 0L0Y8$!H_PJ!D q$p q ! , Bs !0 0 ,`1B @@X @@! P 81B H HX H !$ @b P@PX PP!(  `$xp`KY!/^D e," 0B $@X `!0L 0L,ĕ 0L0Y8&!HX^PJ! 1B D@Y !D!  b @Y Q@! @8B# `! #a @@X H`!$ $,DF 0L0Y8!H]PJ!1B @Y )@! @b D@Y AD!  D8B# `! #a @@X H`!$ $,F 0L0Y8!H8]PJ! u$p q ! , Bs !0 0 ,`  sb @@X @ !   ` xp n$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* )"KI!'^D@e$0B X`XX `!D D,^ 0L0Y8"!H(\PJ! 1B D@Y !D!  D8B a! #`a `X @`!  ,D 0L0Y8!H[PJ! 1B D@Y )D!  D9B a! #`a `X @`!  , 0L0Y8!HH[PJ!| }$p q ! ,   Bq`!2B 0B H HX P`!( (,DH 0L0Y8!HZPJ! 0B D@Y a! ,D 0L0Y8@!HxZPJ!0B B Y 0B!` `,  J! 3B D3B @p q  A! #r !0 0 , c H! HX0!p$B8Y$|P( J! 0B D0B @P ! ,$,( J!, !   ,$V( J!2B @2BB 1B Dp i  !0  e  P!( (,P$\,( J! a!  A/" X@ e B`q@!@`e0B @@X H`!$ $,A 0L0Y8!H8XPJ!d $p q( A!   ,`c !`X @@! B , e H! HX 0E!` `,p,, ,@@,`H, c  J!2B @0B B Y a!   , 0L0Y8D!HVPJ!0B @Y a! , 0L0Y8B!HVPJ! 0B D@Y a! , 0L0Y8@!HVPJ!D ! , B 3BD3B @Y q@! B)`g `X p!0  0p )`8 @!  ,A @@R @/"0 @ e 0B P@PX X`!, ,,DU 0L0Y8!HhUPJ!1B B Y Bp sT !   ,@ D@Y 0D0Y$*( J! q!2BB 0B D@Y `!0 0 ,! 0L0Y8!HTPJ!0B @Y a! , 0L0Y8B!HTPJ! !   ,@ D q!2BB00B `X @`!  , 0L0Y8!HTPJ! !   ,@D0B@0B Bp q !0 0 ,` `R @`! #`-Ș 0 B0 , / H$ #@e P P P7 X` 2&,0 X!3B,"$ 2& H0 $!03BH& !@P - *T #( ,`X `X,a .X '&`0  0! X0,!p"]B 8N8Y @R!@YH$!H(RPJ!0B @Y q@! R)@eD0B B Y `!0 0 ,D % 0L0Y8!HQPJ!0B @Y !@! @8 BC a! #`a `X @`!  , 0L0Y8!HHQPJ! 2&0  @!Y  '&0 B 1B D@Y aD!   2)P  2&0 0 !3B $ H 2&$0 H!3B$ X!, - "XD #@( $ H  H,`a &`X '&@P0  (! X0$!pBMB 8N8Y @R!@YH$!HOPJ!1B @Y 0@!` `,p, #J J!2B B 0B D@Y a! , 0L0Y8@!H8OPJ!0B B Y a!   ,D 0L0Y8D!HOPJ!| ! , @Y 0@0Y$l'( J! q ! 2BD0B @Y `!0 0 , 0L0Y8!HNPJ! U0 `!@B (50~F0!(`(@g(g(@ffL @0 (̘ B @cD02BFB2B  ! #@+ D  `bF0B@0BB 0BD A!0 0F! a! H@x! a! , @ )&0  @P@Y$|&( L!p (C a!  @Dy! !, a! ,$\&( L!0 B0,F0BB  '& 0 DBNL @ ` 81 `tNL H$B`X$ fL P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $l%( L!0B Bp q4 a!0 @Fy! !, a! ,$<%( L!  B ,D0BB$ A!0 8F(! ! ,D@00B, H@!$ $,H1B$ X -&,0  X X P7 $$, ! , B YB 3BD03BFPN$ b8@`! ! ,B 8N8Y@$H PL!2B B 0B D@Y a! ,D 8N8Y@@!HhHPL!00B F`Y a! , 8N8Y@B!H8HPL! 1B D@Y D!   , 8D8Y$$( L! q!02BF0B B Y a!   ,  8N8Y@D!HGPL!0B @Y !0 0,D 8N8Y@F!HGPL!0B B Y 8C!p p, ڑ L!t !  @F4yb8@! !0 0,` F`Y 8F8Y$#( L! q !2B@ 0B D@Y a!0 0,) 8N8Y@F!HFPL!0B @Y a! ,D) 8N8Y@B!HFPL! 0B D@Y !0 0, 8N8Y@F!HXFPL!0B @Y 8aA!p p,  L!d ! @D@$%(b8D! !0 0,`FB0B@01B `X (!0  b @@X @@! @ 81B H HX H !$ @b P@PX PP!(  P$p` Y!/^D e," 0B $@X `!0L 0L,, 8N8Y@&!HDPL!1B B Y !B! @b D@Y QD!  D8B a! #`a `X @`!  ,, 8N8Y@!HHDPL!1B B Y )B! @b D@Y AD!  D8B a! #`a `X @`!  ,, 8N8Y@!HCPL!1B B Y )B! 0B9 1B D@Y !D!   @xrp!^D`eF00B `X @`!  ,, 8N8Y@!HCPL!1B B Y !B! B8 BC a! #`a F`Yo"w$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "% `!0 0 ,- 8N8Y@!HBPL!1B B Y )B! B9B a! #`a F`Y `!0 0 ,- 8N8Y@!H(BPL!1B B Y qB! )e@ 0B D@Y a!0 0,- 8N8Y@F!HAPL!1B @Y q@! ") a! #@a D@Y a!0 0,1 8N8Y@F!HHAPL!1B @Y 1@! @8B# a! #`a F`Y `!0 0 ,- 8N8Y@!H@PL!B0B @p q !! ,  B R !!   ,@ D@RD 0B0B F`Y qF!0 0)`F 02B0B @@X H`!$ $,G, 8N8Y@!H?PL!1B @Y @! @b D@Y !D!   D q`!B0B B Y aB! ) 4 9 `! #a @@X H`!$ $,D@0 8N8Y@!H>PL! A!   ,g @Y 8E!p p,$\( L!00B F`Y 8G!p p,  L!\ ! @T@T$!b8D@! A! ,`c F!`Y @!0 B0 ,e @!@X 8A!p p,, ,@,`,@, cj L!2B B 0B D@Y a! , 8N8Y@@!H8=PL!00B F`Y a! , 8N8Y@B!H=PL! 0B D@Y ! , 8N8Y@@!H<PL!00B F`Y 8G!p p, . L!(U@ `!@B   3~FP x`= #P @ #P x = #P  #a !  - 1~F`(!(d(@d(c0L 0 b @B2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$t( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( @fL X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$T( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D D,$( J!p pC ! , 0L0Y 8!8Y$( J!, A '& 0 D2BB2B @Y @! 8@! @!0 ( @ # ) H$Bp$,8`,$|( J!fL BB,@) D   ,e @B`* 0 B0 ,( 0L` `,p,E @P@Y H@! HY P!@PY$( J!2B B 2B DP4 '&0 @0@NL 0 8 H1 `tNL P(B`X( fL X,B,,,0NL 0 B . "D @ PD1 (t $ X " 02B&0 BL@ANL (@P (!PANL *T #) ,`X `X,/ .p\Bp\, 0L0Y 8.!8Y @ '&0  @P@Y $( J!NL B ,  0L0Y 8!8Y@$TY,  U0 `@!@B  - 2~F`(!(d(@c(c0fL 0 b @BfL B @aD00B2B @Y ! ,@c D@Y0@!pB $t( J!1B @Y @p qd ! , DB B1BD !0 0 ,a @@X  1B H HX $ @  8@! P!( (,`a X`XXP( 0B " X PD P("  ! @! H $!00BH&$ @!@P h(x! !PT PT,c ,X,p0B .`\ @X*1B 2 X2A1B 4@X @!l l, !p p,C 080Y 82!8Y H2! HY J!B J! U0 `!@B (%3~F0!(b(@b(a(@a0B @P 8qh ! ,@b D@Y8B!B # L!< !0 0,b @Y8F!B #֋ L! ,P b ! xa"d)e،b@2!(b (a(a (`(` (gA2B2H dB H`cF@HcJ Had@0BB H`cF@B0B H Y! B #? `!PB1B JB1B @P ! ,  sf !@YB!H-P`! ,@ !!   ,D03BF@3B H@BeJ2B @"B eB03B @Y H!0$ 0,@f  Y X!P, P, f "Y !H ,`f H& HY !P ,f *`Y !X ,f `.`Y !` , A$0B+P`!0H VH@P$H bI," yH`r H& hL $ HB H,H@@H)P*`2B,@BBXHp1B .X .!p\ `\F0B 0X 0!` @`D1B 2 X2Bd40B 6`X6Bl8Ё2B X:`XY @!x ,e H> HY A!0 0,@e d Y A! ,e (j(Yf! H`~ `!@HB HHZH` P2B @#B`EX VH@($2B X/B,@hL "D#@` $Pp !0L 0L,*И (@PB@P,`BP&PAhL *PTBPT,bT,pA1B .X $\#@b 4@X$hBl8A1B :X 4&x0  <!X :!t #b >X a 4&0  b! Y >!} #@b d cB`bf@C1B hYhPC1B jP#Bbl !p p, $( `! ,@X !@ #`g FP !@ @, H 1BD1BRЂ1BZ1B PT@PY PT!0 0, c ,Y `!0B p>$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* i"6`! `a! p C XA! @V9(! (A!P PJ(! ! h@x! ! ,`c F!`Y ! B ,c H! Y H!B,c hZ!hY P!B,  F!@Y D!`Y H!Y R!Y Z!Y T!Y$( `!0B X2B XVp q  (a!#? ! @Bph! !0 PF! !  `DyH! !@ @, c HR!@J@,И hZ ` n)$2B P(B`d( ! D @d$0A2B &`X !@PBQ& ,`c@,#P`!0B `!B2B`X2B XVb@dJ0B @`s A! @By% !0 XF% !  cR@1BH1BT1B@Y!@,#P`!0Bƈ `!HdXPH`cV$ A! 8@@! A! HBy0! !0B0, , 2B `! ,8@ ! B , bR@3B H Y P! E#X3B hZhY (!P jZ2B XV`XY !B,`\V2B B Y !!0 ` 3B H HX! Hh!P`! ,@X !@ # H! p C !@ @,@-И PTB,!H3B `X`YX! H P`! ,@X (!@ #g hZhP a! ,`e XV`XY a! ,`e F`Y a!   , e HR HY a!@ @, $0B P`! HDP"HZhL BB,`YV0H`2B @"BD" H3BHB$RhL P( 8! X`!, ,, .И "DBD,`\D hL $ HB H,`bH&@A1B (X ` 4&PT0  *P#b .X$\B`2A1B 4@X 4&l0  6!`X 4!h #b 8X 8!p #b :atBbt<A1B >X>C1B b#B@bd a!0 0,)Ԙ h@B@,  h!@Y$( `! ,@X !@ #@e PT@PY ` 5&0  `X!`Y PaT!` # (!P P, ($,( `! , G B80B0(BcyBбJZ!yF @B3BH0B HR HY ! B , H D!@Y$4( `!3B PTPP `!! , X Y$ ( . ($`@a @8 !  Hxp ! ,`)И XV B h!  , xU ` !@B  2~F@ !(b(@bB1B @Y(@! HHP !@ #c @P  !  ,@ H!$ H@!0B$0B X`XX @ 5&D0  "! X(!`DB0Y$ ( H! ,@X a!@ #a @P, !0 0 , a H HX H!$ $1B X`XX @!D D, " ,BD `!H  , U `!@B pU 0~Fx!(f(@f(e(@e(d(@d(cH gB 2B D@Y!B #9 ^!03B F@3B H P (!P P, sf ! YJ!HP^! ,h @ 0A!` `,0L1B@1B BB@aD00B F0"BaHP1B (J(Y ! , b 00Y P!( ,`b @Y !0D 0,@b $ Y !L ,b H( HY ! T  ,b P,@PY !\ ,b `0`Yd!H@ ^!0H TH@H$HE@,PH@b!D$jL "DBD,`DF0HL(PH T,p0B.`BB\LA3B 0X 0!` `@3B 2 X 2!d +dJA3B 4@X4Bh63B 8X8ЩBp:1B <X !| F ` O` 2B dP !0 0,F h`_ h @! Hx! P! , Q1B P@PXH$(B1B @P@Y ! H dCHH1B " X ! 5&00  F!`Y "!E #`-Ԙ &0LB0L,gL( 3B D@Y $# g B Y$`B\L3B 0X a 5&0  @!Y 0!a # g 2 X 2!d #g (JPbB@g43B 6`X63B `X"Bg8 @!t ,a P<@PY @!| ,a `@Y A!@ @,`a @@Y A!0 0,$ B(P^! HH`HH@PH%PX00B 0B`EX VH  0B P+B@(P1B X`XX @ 5&D0  "! X!DB Y$<( ^! ,@X !@ #@c DP a!@ @,a @@Y 0a!` `, a HR HY (a!P P,$ BP^! HL"H` F0jL F0B0,)J1B@PBR2B BP a!   ,D @`_ @ @! Hx! H`!$ $,@/Ԙ P(B(, L(jL X,B,, g," 3B $@X $H#g *X$pTBX.3B 0X ` 5&d0  2! X 0!` #@g 4@X 4!h #`g 6alBgl8Ё3B :X:3B <!xBgx> a!   , )Ԙ bB0, f! Y$( ^! ,@X 0!@ #@a PT@PY ` 6&0  `X!`Y PaT!` # !@ @, $aB00B 6`X @!t t,a (J(Y @!x x,@`H@34pH@!,$!zB< X.! @!0 0 ,`a X`XX A! , a " X @!T#$ @L!8!#@ HB!p# B"@0B (X @!`X `X,`a &`X @!d d,>H``6rH@4dB2Ё0B :X 0A!` `, a H HX P@!( (,JH22x.0pH"J * )B0B @@X X@!, ,,a 8N8Y @! H  H,B8H Z"@qH:P> aIB$`0B ,X @!` `,`a 6`X @!0L 0L,@4H 32qH$tJ0MB&p0B .X @!x x,a 0L0Y @!0 0 , PH@TpH3 80 B X!, ,, a @"@, #U `!@B XAd)bbH2!(d (cH @8 !  0p ! , @B @$ @!@e #d @`q ! , DB0B22B @Y @` s @!d dPC ! ,  B Y QB! # A! e22B B q @!d d0C ! , @P< ! ,  hZhY$ ( X!2B @Y h@! , | X!2B B Y aB!0 0 '  @ @!  ,AG@@2B H`e( !D D,@e$0!H 8H1 `t @X D$ D 8"X! !@P @P,e*`!H PT1 (t $X P* P , | X! a! @!2BB02B p k @`!  ,AC @@X hhY p!pY$( X! L @B, d B! Y h@!hY pB!pY$$( X!2B @2B BP @!0 0 ,$d( X!l a! ,D @Y !! , h@hYpB!Hx PX!B2B @Yh@! H& PX!0B B Y B! , hBhY p!pY$( X!0B @Y @! , h@hY$( X!2B B Y qB! #d @Y !@! #`d `X 0! #d @ B h!hY$( X!2B B„B hB!hY$( X!2B @B h@!hY$( X!0B BP ! ,@ H @9! @!0  C @!  ,A@@@1B @1B P(q X!, ,, d " X "!D `XD ! H  H,@$01BH&@1B (Pq !PT PT,b,P!TBX*4 !p\ p\,¸ .X !` `. @!d @ed42B 6pl q @!p p0C !t t, :`(Pw< !x x, hZhY$d( X!2B B Y hB! , { X!2B @Y a@!0 0 '  B @!  ,AG@@2B H`e( !D D,@e$0!H 8H1 `t @X D$ D 8"X! !@P @P,e*`!H PT1 (t $X P* P , z X! a! @!2BB02B p k @!  ,C @ q7, H!$ $, K H HX2B P@PX h! ,, # X! a! ,wr`N$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "X hZhYp$H8 PX!0B pBpY h\! ,$tm( X!0B p@pY h\! ,$Lm( X!2B B Y qB! #d @Y !@! #`d `X 0! #d @@X @@! # d H HX HP!$ #@d P@PX P`!( #`d X`XX Xp!, # d "EB h"!hY$( X!2B BBB hB!hY$( X!2B @B h@!hY$( X!2B BB hB!hY$( X!0B @PT ! , B H@9! !0 0 ,`@1B 1B H$qw P!( (,P$, A! p (C ! ,@01B1B @ q7 H!$ $, AHH@2B$@2B X,qw !D D,$, ? ! ,b @Y a@! )`fBf$,  ! ,@1BB01B p q @!  ,@$l, ? ! ,D@B1BB0@1B p q @!  , d H HX H !$ @$ P!( (,@PP1B(1B "Dq7 ! H  H,`b& !HBL$, &@P0  (X !PT  T( @!`X eX.2B 0`qw @!d d0C !h h,@ 48P< !l l, hZhY$( X!2B @Y h@! , bx X!2B B Y aB!0 0 '  @ @!  ,AG@@2B H`e( !D D,@e$0!H 8H1 `t @X D$ D 8"X! !@P @P,e*`!H PT1 (t $X P* P , x X! a! @!2BB02B p k @ '& 0 @NL H$ @ 8$P1 `tHNL X,B HXH, nL "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @ H AHPPANL *PT *!`ANL ,X #d .X '&`0  0!X h.! ,,. x^ , 3~w X!2B @Y a@!0 0/ B2B ppY h\! ,5$g( X!0B p@pY h]! ,e$f( X!0B pBpY h\! ,$f( X!0B p@pY h\! ,$f( X!2B B Y qB! #d @Y !@! #`d `X@($` B 2B P(B h!hY$( X!2B B„B hB!hY$( X!2B @B h@!hY$( X!2B BBB hB!hY$( X!2B @B h@!hY$( X!2B B…B hB!hY$( X! ! , @p q8 ! B!0nL 0 B0 ,*ܘ @ B ,,,@, 3v X!2B @Y @! # ! ,  Bp q8 !0 !nL @ B , *ܘ H$B$,,@,H, 3v X!2B @Y @! # ! ,  Bp q8 !0 !nL @ B , *ܘ H$B$,,@,H, 3Jv X!2B @Y @! # ! , D  Bp q8 !0 !nL @ B , *ܘ H$B$,,@,H, 3v X!2B @Y A! # ! ,   Bp q8 !0 !nL @ B , *ܘ H$B$,,@,H, 3u X!2B @Y A! # ! ,  Bp q8 !0 !nL @ B , *ܘ H$B$,,@,H, 3u X!2B @Y A! # ! ,  Bp q8 !0 !nL @ B , *ܘ H$B$,,@,H, 3ju X!2B @Y A! # ! ,  Bp q8 !0 !nL @ B , *ܘ H$B$,,@,H, 32u X!2B @Y A! # A! p  C !0 0 ,`2B @@X H 6&$0 H@1B$@1BX B,A1B "Dq7 ! H  H,`d& AHBL$ !@P ,ؘ *T #XU `!@B b@  &0 0  ` Rp C  &0 0  @G_ H P D!0nL 0  0 )P @` 7& 0  @!@X !`Y$\( D!R? U  ! 0~F !00BHx PF!p  C &0  @$RPC ! Y (A!P P,hX A '&0  (@(Y !0 B0 ,( H Y(%` B0Y $( F!p `C !B,@, bt F!$ &0  @Rp (@C  $&0 0  ``R (C @@ '& 0  ((Y H!$B$,( H Y($`$B0Y $l( F!p C A '&0  (@(Y !J!@ @, 0!0Y $L( F!$ A! , @P $4( F!p (PCĤi `! #a$,( F!$ U `!@B  2~FP x= #P  #`cL @ aB00BB0B@0B B Y C! ``1B @Y@02B p qd a! , BB1B@ !0 8! ! ,@2B Bp q( !0 !1B @1B B Y Bp q !0 0 ,b @ # ! , DB0@1Bl$ !  ,d ! ()2~F0!(d(@d(c(@cB2B @Y @P0 !! ,s`SB$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* S"iB H`, F #, @ # . B #@. D  ` 81 `tNL @B@YD pL BB,@NL @B`. F0 @ P1 (t %@YD pL BB,D@0BNL F0 F! BNL D #. @ h1 4t1 NL D BY@ 0pL F0B0,@NL @B . B @ 1 Bt = YB 0BpL F0B0,D@ BNL D  D!BNL B #d @Y  '&00  F!`Y8@!B@Y H '&0  HR HY $( L!pL B 8B(!  8& 0  D@Y8D! H PL! ! ,$( L!0pL F@ # . B @. D #. @ ,$( L!0pL F@ # / B #  8& 0  Dp c $0rL  # / H$ Hq! P 8&(0  @@Y8P!RH # L!00B F0B Bp q,  8& 0 DBpL @ ,$( L!!@`a FpL B B!pL @ # @!0 . H$   pL P( # X 8&,0  XXP( 8&D0  "Dc7 !H #`b&@0B( !PT , ,`X XX*`! !p\ / 0` `\0pH! Ƞ 8&d0  2 X Р!h h, 2es  ؠ!l al8 8&t0  :X !x x, :pHt sX !| a|N1B@P1B HR HY !$p   0p1  XD08 88 @$ (a  A @$A X$A @(A P4 8 t @(H! @ @ 8 B`b F ! @!1BB@1B H$B`b$$ P!( `, X, H,`! ! H `/ &0L XH&0H! `!@P p(! `!PT bT,, 8&p\0 .A1B\0rL 4h # 8&d0 2A1B6rL 8p  l8 l @/ <x # 8&t0 :A1Bt>ppL 8N # !D D,@b DE # c HR HY @ 8&0  @P@ #/ @ `bFrL @  @ @ @ / B@ #`. 0 bHrL P(  H$ $@`. X@, # 8& H0  $@X8$! H P L! pL D # , (U@ `!@B  - 1~F`(!(e(@e(d0@rL XD @8@0(#Jy@@J!yH  rL D  `a$0B1B@ Q!@ # e B Y @!0 0 , e H HX !! B ,8!B@YH!B@PY$( J!2B @2B BP a!   , Dk7  9&0 0  wWh H@!$B$,H`, o J!rL @B a B! Y,`,p, #o J!`@q@!BrL B #* @ C  9&0 0 !0B H$,`X 0!0Y 8!8Y$( J!`@q ! BrL D # 9&0  @P `!0 0 , $ X!,  ,@e ! ) 2~F@ !(c(@bB1B @Y a!B,`a !`X(@!`B0Y 8!8Y $m( H!1B @1B BP4 !0 0 , b H HX(!`$B #o H!1B @Y ! , B#c @@X H@ 9&$0 H!0B@P(, HX (!(Y 0!0Y$( H!1B @1B Bp q` P!0 b H0$@@a 0BX1B "XD@@a,$00B &0 LBBaL(P1B *PW~FaT,p0Bp\,- 0`B`,P,`, #n H!1B @1B Bp q !0 ?#0B  P 9&(0  P!@PX X!, ,, c " X `! HB H,`a &!`X (!(Y0!pDB, , SRn H!HU `!@B ! 3~F@ !(b(@b0@1B ` s !, ! ,$T( H! B,Y a! #`a `X(! H PH!p C '&0 @BNL B ` 81 `tNL H$B`X$ rL P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X(*!`XB0Y 8 '&p0  8N8Y $l( H!0B@1B Bp q !0 @y! P4, @!  ,@$4( H! (C W, a! ,$$( H!  '&0 BBNL @ ` 81 `tNL @ B`X  tL H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  1B"0 BD ANL $ H $!0ANL &L #a (X '&PT0  *!X((!`TB0Y 8 '&p0  8N8Y $L( H!B1B B`s @4, ! ,$,( H! ( 4 a! , 0!0Y$( H!U `!@B  ) 2~F`(!(d(@d(c1B@0BB rH$a@H`0a0B@ B2B D@Y Dp q  &0 0  `Rp  C ! ,a @!Y0B!pB8Y$l( J! 0B@ , a B! Y 0D!0Y 8B!8Y$4( J!B2B @Y @! @cD1B B Y C! `a @@! B , c H&B@b P!@PX 0!0Y 8!8Y @!@Y $( J!1B @ 1B Dp qD ! `b 0 @?#@1B @2B P@PX X!, ,, b" 0B $H@DQ 0L0Y8!B@YH$!Hذ PJ!1B@ 0B D@ bB,$ @!0 B0 ,`, "l J! U0 `!@B `MbP@!B* @B + BB,Y pT!pY xT!xY B!Y @! Y$( Z!,BHB!BH  0,`@HL tQX$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "z,A@ Y,@, @,h PZ!Bk Z!,@Y@ 0PH @,@@(, P`U  !  % 3~F`(!(b(@b(a01B p q ! , @ a!  8D ! `!0 0 , ! :&0 B! B1B D@Y, 8B!8Y$( J!p  C ! ,@- D B , 8D!8Y$( J!0B B0B @p q4 !  HDx ! !0 0 ,@1B H HX P!( (,`,DH 8N8Y@!Hج PJ! ! 8BP! A! A?# B1B D@Y !0 0 ,`,D 8N8Y@!HX PJ! a! 8Bh! ! ,@ 0B D @`b `X !0 a @0 @ a H HX 0@!0Y 8!8Y@!H PJ! U0 `!@B XI2~F@`!(c(@b(b(@a0B@tL B 8B`! A '& 0  D@Y h!D! , j X!0tL F@ #. @ 8@! @!@X:  :&0  B Y !   ,`b `X H :&$0  H! HX P ;&(0  P!@PXhB!B !Y ! Y$( X!00B F0B @P  ;&0  B~F@( D #`b  q7  H!$ $,@( P(B(,H p!pY$( X!| a!0 8Fh! a ;&0 @!vL BB,Y hB!hY p@!pY$L( X!p q CH$T  ;& 0 D!0vL F0B0,@Y hF!hY pD!pY$( X!`@q H!( C@$T  ;&0 B!vL @B, Y h@!hY pB!pY$( X!`@q@!(@C a!0 0,@Fd a! ,@vL B ,`+ 0 0 , a H HXhB! BH $t( X! A!  , XU `!@B 2~F!00BpH a 0H@a 0BvL H$ `c$ P!( 88! @! @?#01B 1BHH 8$P1 `tH0@1B$@1B@ H P P1 (t @$ B`+ 0 B@X   0 b 1B P`Pad @! `@ h 1 4t 00@ B + H$B`X$ @1BP H )B1 Bt @<` B + H$B@X@$ 0B@P(, `Y  Y (!(Y 0!0Y$, p K `!0 B0 ,`0, h D!$ !0 A 8 @1 `t 0@ B + H$B`X$ @1BP H P(X1 (t P$`(B + "DB@PXPD 0B@ H, `Y  Y (!(Y 0$!0Y$, p 0K !0 @ p% P!( `aX,L"(,`rPR, 0L@&P BR yH* P ,X@R y H* L#? U `!@B ! 1~F@ !(f(@f03B `X @!  , @ B 3B @Y @p k ! @By! !, @!  ,@$\( H!0 B0 ,`X a! # cB1B@NL P( #`. X, 8,1 `tX NL $ HB`XXXH 0vL &0LB0L,LNL X,B. (@P PP1 (t $XX,( `1B`X,`AXXpANL .p\ .!ANL 0` # . 2d @ hd1 4t0NL 6lB Xl2 vL 8pBp,p2NL 2dB. :t u1 Bt <Xd: 1B|, C|2PBNL (JP (J!`BNL 0L( #e 8N8Y @ '& 0  @!@X(N!` B0Y 8 '&p0  8N8Y $( H!1B@0BB0@NL  #. @ 8 H1 `t@NL P(B@X@( @vL X,B,,,NL @ B . "D @ PD1 (t $ X@ " 01B`0L,A@L@ANL (@P (!PANL *T #. ,`X hX1 4t0NL 0`BX`, vL 2dBd,d,`NL ,`XB@. 4h ` i1 Bt <@XX4 0Bp,Bp,ANL :t :!ANL <x #f >X ( '&P0  (J!(Y(>!`B0Y 8 '&p0  8N8Y $L( H!3B @Y@H 81 `t ~F`b@3B @` s H!, P!( (,P$( H! B$, HX A!H #e @Y(@! Hؙ PH!B2B BB2B@01B 0 @ c H0$ @@0 H! X!, b "XD @@,p! ! H `bH& !@P ( PA1BP*T !`X c .`\@b 0``@ d 2XiW !h `c 6l @c 8p @bh: !x x,<H 8x1 `t {~FaxJ`2B 0L0Y(L! H PH!2B B2B@01B 0 @ a H0$ @@0 H! X!, a "XD @@,p! ! H `aH& @!@P ( P0BP*T !`X a .`\@a 0``@ d 2XiW !h `b 6l @a 8p @ah: '&x0 <ANL >| 8|(1 `t`NL 0L`BX> pBxL 8NpBp,>NL >|B. @ P 1 (t @$@X@| 1B@@1B H%@A@$0@NL 0 !@NL P( # . "D ` hDX1 4tX0 NL $ HB`XXXH 0xL &0LB0L,LNL X,B. (@P Q1 Bt <XX,( p1B.0B 0p`@`AX\`ANL ,`X ,!ANL 2d #`e 6`X '&p0  8!X(6!`pB0Y 8 '&p0  8N8Y $( H!U `!@B  % 2~F`(!(d(@c(c0xL 0 8(! ! 0@! !, !   ,$d( J! B, Y ! #@b D@Y0D! H PJ!1B @B1B B Y0B! H PJ! 0B D1B@H 81 `t00BuT$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " `XD, ? H$1  pDH8 P8 X0 4a ,A X0A p0A X4A h4P4xL XP, # <& H0  $`Jk @!L #. (P #. *PT U1 Bt<pNL .p\BX\* xL 0`B`,`*PNL *PTB . 2d @ e@1  Ht Ȉ XT2 0B`l,Bl*ANL 8p 8!ANL :t #d <X '&|0  >!X0<!p|B8Y @ '&0  @P@Y $( J! 0BD1B @p q|  '&0 B0@NL 0 8 @1 `tNL H$B`X$ xL P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1B$0 BH0ANL &0L &!@ANL (P #d *X '&`X0  ,!X0*!pXB8Y @ '&0  @P@Y $( J! U0 `!@B %2~F !(b01B0B, (@!(Y$ܺ, F!1B @01B P  H!$  ,@ P`!( `+ XP, # a " X #!D @aD$00B&@xL (P #. *PTBPT,/ ,X #/ .p\Bp\,( 0` #  =&h0 d4!H) 8p #a :tB,x> @zL H@BP,* 0L` `,a N`X @ =&0  @P! @Y @!  ( It! P$$ X $,B J! Y (L(Y 0!` `,Hp,P, Sb F!, @0zL  #  P =&(0 $0BX1B," 1B $@X $! H 8$! p!8 #z !0L ( (P #) *PTBPT,(@,$( F!zL @B,`a `X @! @!VL H$B$,( H@ @,P, 0L0Y 8!8Y @!@Y$\( F!2B @02B P  H!$  ,8@P$1B( !D D(D 3Yp C @! H  H,Đ H Y$y( F!0B @Y @!@ @, a F!0B @Y 1@!@ @, a F!0B (@(Y J!@ @,0$, $], F!0B@0xL  #a @ B,@H$ @zL X,B,, * "D D,@a $@X =&0L0  &!X ! Y ("(Y 0$!` `,@p,$( F!, @00B1B 1B P@PX P !( 8! X!, ( "XD #@) $ HBPH,(@,$( F!zL @B,`a `X @! @ !VL H$B$,( H@ @,P, 0L0Y 8!8Y @!@Y$d( F!1B @01B P  H!$  ,X @ P@!( (,T H Y$,( F!0B@01B1B @@X @! 8! x!< #z H!$ @( PH( #`) X,BP,,(@,$( F!zL @B,`a `X @! @!VL H$B$,( H@ @,P, 0L0Y 8!8Y @!@Y$t( F!2B @02B P  H!$  ,@P$1B( !D D(D 3Y C >& H0  $!X J! Y($H( P F!|L @B,@, ` F!1B @00B `X H!$ $, H Y(!Hȁ PF! A! `c1B @@X @0! 8! H!$ @( PH( #`) X,BP,,(@,$( F!|L @B,`a `X @! @0!VL H$B$,( H@ @,P, 0L0Y 8!8Y @!@Y$<( F!1B @01B P  H!$  ,@ P`!( (,`a X`XX X!, @R,ANL "D #@. $ H ` 8H1 `t@NL (@PB@XP$ PA|L *PTBPT,T$ NL $ HB. ,`X PX1 (t $XH, 1B`,@B`$ANL 2d 2!ANL 4h #`a 6`X '&p0  8!X 6!@ @,P,. 0L` `, 3_ F!0B @Y !0 09B H`@!$ @('(0B X`XX @!D D, ‹" -BD 0B $@X @!0L 0L,`˜& IBL$@NL (@P @P,a *X +!PT T(`NL ,`X `X,a .X .!p\ ³\,NL 0` `, a 2 X 02!d d0NL 4h h,`a 6`X @6!l @l4NL 8p p,a :X ;!t t8NL <x x,a >X 0?!| |<@0B (H(Y K!@ @, ^ F!HU `!@B  - 1~F`(!(d(@d(c1B@B2B B Y C! @bDB2B @Y 1@! aB 0B D`s\ a! , @$Rp (pC ! p (PC a!   ,@DD0B@ a! b@ 0B@ ,$ 8D!8Y$<, J!2B @2B BP  A!  ,h@ `!0 0 , dH B X`XO,1B "Dq ! H  H,`a& aHBL$ !@P @P, ("RPC !PT PT,a,PATBX*p0B .X !` B`.A2B 2 X `!h h2 ؀!l l,`C 6lq !p p,C81Bp:$ !x x,a>!xB|<`0B 0L0Y 8!p 0L @a! , P1P!H#a @Y A! aB 0B D@Y QD!  xDp ! @@! `. @ # . H$B$,@/ PH( #`. X,B,, ( "XD #@ =&0L0 H&@!H) *T #a ,XBp,C\0 |L 2dBd,@* 4h h,`b 6`X =&p0  8!@X 02!0Y 848Y @16! , P,@$( vy M$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "J!,D @0BB 2BD02B `X @!0 8! @!@ #z H`!$ @( PH( #`) X,Bp,,8`,$( J!|L @B, a B Y a!  AE!0VL 0 B0 ,( 0L` `,p,E  @P@Y HD! HY P!@PY$T( J!3B @3B BP  !  ,h@$2B  P@!( ((D 3YC X@!, ,,DY 0L0Y$$m( J!0B @Y 0AA!` `, f\ J!0B B Y 0QB!` `, ^\ J! 0B 8D8Y 0AO!` `,@I$L, $DQ, J!0B @Y 0@!` `,p, #:\ J!0B B Y 0AC!` `,p, #.\ J! 0B D@Y 0E!` `,p, #"\ J!0B @Y 0qA!` `,p, #\ J!0B B Y 0C!` `,p, # \ J! 0B D@Y 0E!` `,p, #[ J!0B @Y 0A!` `,p, #[ J!0B B Y 0C!` `,p, #[ J! 0B D@Y 0E!` `,p, #[ J!0B @Y 0A!` `,p, #[ J!0BB 2BD2B @Y aA! 8@! x@!< #z `!0 ( @ # ) H$Bp$,8`,$D( J!~L BB,@a D@Y a! aA!0VL 0 B0 ,( 0L` `,p, @P@Y H@! HY P!@PY$( J!3B B 3B DP  !  ,@$2B  P@!( ((D 3Y C X ?&,0  X!XX 0N!0Y8$Hm P J!~L BB,`, :[ J! 2B D0B @Y A! , 0L0Y8B!Hl PJ! a!   ,a @Y QA! @DBNL B #`. 0 8 @1 `tNL H$B`X$ ~L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0*!` `,p,. @P , 3Z J!0B @Y !  0D9B# `@! !' 0B H HX P@!( (,@UP %B(0B X`XX @!D D, B"-BD 0B $@X `!0L @L$@0B (X !PT PT,¬*@aRBT(`NL ,`X `X,a .X P/!p\ B\,NL 0` `, a 2 X @3!d d0NL 4h h,`a 6`X P6!l @Cl40B 8X @ '&t0  :X ;!t t80B <X @ '&|0  >X >!| |<`0B 0L0Y 8A '&p0  8N8Y 81N!p 0L0B @P@Y H &0  HRBE 0L0Y 8R!8Y? !!   ,@D0B @p q@ ! ,`a `X P!0 D  B@1B @@X H@!$ $, MH"B$@1B P@PX X@!, ,,`AYX(B, !D D,@a @$@D # U0 `!@B  - 1~F`(!(d(@d(c0@2B `X !0 c @B2B B Y AB! @bD00B1B @`s\ ! ,  B $Rp (pC !  p (PC !0 0 ,`@0B @ ! @bD01B`0 ,4 8!8Y$l, J!2B @2B BP  A!  ,@ !0 0 , dH B X`XO,A1B "Dq ! H  H,`b& HBL$ !@P @P, ("RPC !PT PT,b,PATBX*p1B .X !` B`.A2B 2 X Ѐ!h h2 ؠ!l l,`C 6lq !p p,C8A1Bp:$ !x x,b>!xB|<`1B 0L0Y 8!p 0L @! ,@P1B HR HY HS! @aT0B @Y a@! x@ ! A! @. D #* @ B ,`/ @ # * H$B$,@( PH( #` =&D0 ," H`) &L #a (PBP,T, p~L .p\Bp\,* 0` `, c 2 X Р =&h0  4!@X 0.!0Y 808Y @12! , P,@$<( J!, @0BB 2BD02B `X p!0 8! x@!< #z H`!$ @( PH( #`) X,Bp,,8`,$ܮ( J!~L @B, a B Y a!  qE!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$|( J!3B @3B BP  !  ,@$2B  P@!( ((D 3YC X@!, ,,Y 0L0Y$T`( J!0B @Y 0qA!` `, V J!0B B Y 0aB!` `, V J! 0B 8D8Y 0qO!` `,@9$|, $tD, J!1B @Y A! ,@a D@Y ` ?&0 0  !`X @ $& 0  @@R (8! H $ H! P $&(0  P@QR(( It! X$ X!H$ HL "D D)(P Xhw $ !H$$ 0~L &0LB0L, - 0L0Y 8qD !p p,, H,@, S J!B @BNL B #@. D  ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0!+ !` `,p,. @P , 3U J!BNL @ # . B @ 81 `t0NLw.$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* !e" 0 B Y B @L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  0H`@,ANL "D "! ANL $H #`a &`X '&@P0  (!X 0' !` `,p,. @P , 3nU J!BNL @ #@. D  81 `t0NL 0 B Y B L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  0H`@,ANL "D "! ANL $H #`a &`X '&@P0  (!X 0& !` `,p,. @P , 3U J!BNL @ #@. D  81 `t0NL 0 B Y B L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  0H`@,ANL "D "! ANL $H #`a &`X '&@P0  (!X 0& !` `,p,. @P , 3T J!BNL @ #@. D  81 `t0NL 0 B Y B L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  0H`@,ANL "D "! ANL $H #`a &`X '&@P0  (!X 0& !` `,p,. @P , 3*T J!0B @Y 0A!` `,p, #T J! 0BD2BB2B @Y A! 8@! x@!< #z `!0 ( @ # ) H$Bp$,8`,$( J!BL BB,@a D@Y a! A!0VL 0 B0 ,( 0L` `,p, @P@Y H@! HY P!@PY$( J!3B B 3B DP  !  ,@$2B  P@!( ((D 3Y C X @&,0  X!XX 0N!0Y8$HHN P J!L BB,`, S J! 2B D0B @Y A! , 0L0Y8B!HM PJ!$0B@ ! ,`a `X p!0 D  B1B @@X H@!$ $, IH!B$NL P( (,`a X`XX Xp!, @U,NL "D D,@a $@X `$! H H"00B &`X @ '&@P0  (X )!@P `P&P0B *X @ '&`X0  ,X ,!`X «X*p0B .X @ '&`0  0X 00!` ¸`.0B 2 X &h0  4hB 0L0Y 84!8YB? ! ,@dDbB@0B B Y !0 0 ,`@B B0B @@X H!$ $, MH"B$0B P@PX X!, ,,`AYX(B,A2B " X @"!D @b $pH q, !0L 0L,a (X p)!@P `P&P1B *X @!`X `X,,PTBX* !p\ p\,d 0X 0!` B`.1B 2 X @!h  2H U0 `!@B ) 2~F@ !(c(@b01B `X !0 b @1B B Y QB! `a0B @p q `!0 B0 ,D 0!0Y$, H!1B B1B @P  !  ,@ H!$ $,@aP$B(0B X`XX X!, a," 0B $@X p$! H H$8! @!0L . (P #, *PTBPT,/ ,X #, .p\Bp\,( 0` #  =&h0 d4AH) 8p #a :tB,x> PL (JPB`,* 8Np p,b HP HY =&0  @!Y (L!(Y 0N0Y 81R!p p,, $|( H!,  B0B@02B2B H HX H!$ 8! p!8 #z P!( `( XP, # ) "DB`D,0P,$( H!L BB,a @Y !0 !VL @ B ,( (JP P,`, 8N8Y @!@Y H! HY$( H!B2B BB2B @P   !  , @H$1B$ X!, ,(D 3YC @!D D,ĉ (J(Y$R( H!0B B Y (C!P P, P H!0B @Y (q@!P P, P H!0B 0B0Y (M!P P,89$<, $46, H!0B@2BB02B `X !0 8! ! #z @! ( H@$ #@) P(B`(,0P,$( H!L @B, a B Y !0 !VL @ B ,( (JP P,`, 8N8Y @!@Y H! HY$<( H!B2B @B2B BP   !  ,8@H$1B$ X!, ,(D 3Y C @&D0  "!X (L!(Y0 $H? P H!L @B,P, O H!1B B0B @Y !0 0 , (J(Y0!HX? PH! a! ,a @Y A! D B00B `X @@!  ,A@0 B NL H$ $,@a P@PX P!( N(NL X, ,, a " X p"!D `YD 0B $@X @ '&0L0  &`X '!0L @L$@0B (X @ '&PT0  *X *!PT £T(`0B ,X @ '&p\0  .X 0.!p\ °\,0B 0X &d0  2!dB (J(Y 02!0Y.? a! , cBbB@00B `X @!  ,AE@0B 0B H HX P!( (,@UP&B(0B X`XX !D D, B",BD 0B $@X !0L 0L,`& JBL$@0B (X !PT PT,*@PBT(`1B ,X @!p\ p\,.`A[B\,1B 0X @!d d, 2`Bd0, `!h h,@C40Bh6 `!p p,c :X :!t Ct8A1B <X @!|  <HU `!@B  1 2xF`(!(b(@a(a3B@BL B0 @+ D  e@03B0@2B`xè$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " q! # eB B2BD0Hc @L B @bD01B0B @0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$( J!p (C a! @By! !, a! ,$̛( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $ܚ( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( &D0  " RD C `! H PL$900B &pNsQK8@B !T #a ,Xs @!p\ c\01B 2 X Ȁ3!d 82! !@ #r !h `( 6l #) 8pBpp,8`,$( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$4( J!1B @1B BP, $0@1B H!$ $(D 3Y! P@!( (,@V P(s p44 X@!, ,,^ 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HXJ!| !p p,@*P D B ,, @B,: 0L0Y8I$B@Y H@! HY$M( J!0B B Y B! ,@, D  D8B0B!pB8Y@$H0 PJ!0B @Y 0@!` `,(L 8Np p, $( J! 0B D@Y 0D!` `,)L 8Np p, $ė( J!0B B Y ! ,  0L0Y8P! H 3K J! 0B D@Y ! , 0L0Y8P! H 3K J!0B B Y 0B!` `,p, #K J!BL @B,@b D!@Y 0@!0Y 8D!8Y$( J!1B B1B @P !   ,$( J!d A! ,b @Y 0B!` `,$( J! B1B D@Y0D! HxD PJ!0B B Y 0B!` `,p, #bK J!0B @Y 0@!` `, ZK J! 0B D@Y 0D!` `,p, #NK J! L BB,b @!Y 0B!0Y 8@!8Y$( J! 1B D1B BP ! ,$D( J! A!   , b B Y 0D!` `,$$( J!B1B @Y0@! HA PJ! 0B D@Y 0D!` `,p, #J J!0B B Y 0B!` `, J J!0B @Y 0q@!` `,p, #J J! (L D B , b B! Y 0D!0Y 8B!8Y$l( J!1B @ 1B DP ! ,$t( J! A! ,@b D@Y 0q@!` `,$T( J!B1B B Y0B! HX? PJ!0B @Y 0q@!` `,p, #J J! 0B D@Y 0qD!` `, J J!0B B Y 0C!` `, J J!0B @Y 0q@!` `,p, #vJ J! a!  0TD! a! @PBy@! A! , 0L0Y$( J! 0B Dp s| ! &0 B0B@0&L 0 g 0B H$s` P@!( (,R 0L0Y$d( J! 2B D0B @Y 0@!` `, &J J!0B B 0B D@Y 0D!` `, J J!3B @0B B Y 0B!` `, J J! 2B D0B @Y 0@!` `, J J!1B B L D  , @#`a `X 0!` `, I J!B1B BB1B @p q  ! A& 0 D !0 0 , , H$B$, 8!8Y$$( J!1B B1B @P !   ,$\( J! ! ,$T( J!BL @B,@, D B , , BB,`,p,, 3α? J! ! @eD0B B Y 0B!` `, nI J!B1B @ B1B Dp q  a! #n !0 0 , e H! HX0!p$B8Y$( J!1B @ 1B DP ! ,$d( J!D ! ,$\( J! 2B@ , e B! Y a!B,`,p,, 36? J!  A& 0 D(L B#a @Y 0q@!` `, H J!B1B B B1B Dp q  &0 @d !0 0 , *P H$B$, 8!8Y$( J!1B B 1B DP ! ,$l( J! ! ,$d( J! (L D B ,*P @B, *P BB,`,p,, 3? J!| 8 ! ! #g@ H`g\ HDy! XL! @4$H i x8! 8(! P A&(0  P(q7  X$2B," !H #` !P #.| *PT eT,pA>L .p\ f 0\iW  Ȁ!d @ed4 `!l .| 8p ,e 0:0Y 86!8Y H6! HYH J!BH J!l !p p,*P @B, , BB,: 0L0Y8I$B@Y HB! HY$A( J!p ( C  a & 0  D@Yy+$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* |" D! #c @ !P7  &0  BqW $rf$( J!  & 0  D!@Y &0  @!Y  &0  B! Y 0D!0Y 8@!8Y @B!@Y $L( J! 2B DP  ! A&0 @  &0  B! Y  A&0 0  !`X 0B!0Y 8!8Y @!@Y $z}, J!p ( C  & 0  Dq7 a &0  @Y  &0  B! Y @! #n `!0 X ! $rf$( J! a!  (T @# eB0L 0 8 B ! @ B& 0 @@*L H@$# P &(0 P2B @@Y &D0  0"0Y 8!8Y H! HY G J!BG J!(L @ #@.T D # ! &0  B! Y  &0 0  !`X 0B!0Y 8!8Y$( J!2B @P !   ,@D1BB01B  q7 @!  ,A @!@R (C H &$0 H1B P@PX P !( `$8Bf !XD #@c $@X P$! H p$`! !0L 0L,`B &`X `&!0L `L(pC !@P @P,D 0L0Y$R( J!p ( C !p p,88$HxsXJ!1B B Y ! B& 0  D!@Y0B!pB8Y$}, J!B1B @P(  &0  B! Y ! A& 0  D!@Y 0B!0Y 8D!8Y @!@Y $w}, J!$B2BB !p p,D: 0L0Y8$ H 3N]? J!,L @ /@ B2B DP8 !0 0 ,d @@X H!$B$,8!$B@Y $, J!B0B @B0B BP  ! # $@0B 1B P@PX P!( `b( !D D@C ! H  H,$01BH&@1B (@AQB(T *PTBPT,`,p, #zE J!1B @Y ! &0  B! Y0@!pB8Y @!@Y $4 ~, J! B0B D !! p PC  &0  B R( C 0 &`0  0L0Y8$H( P J! NL D   ,@ Dp q A '&0  @Y 0@!` `, E J!  !&0 B BBL D#) @B`, 0 B0 ,, @ B ,Y H!$ H@4sd 8!8Y @!@Y H@! HY P!@PY X &0  XV`XY$, J!BNL B #@. D  81 `t0NL 0 BY @ L @ B , @BL H$B$,@/ P(B`. X, P,1 (t X$`XX P( (B(,H`,Pp, #n J!B1B B B1B DP ! ,$̈( J!D  '&0  B B@. D #c @Y  '&0 0  !`X 0@!` `,p,. @P , 3>D J!1BB BNL D  E?#@1BB1B@01B p i@ @ '& 0 @!1BH@H 8$P1 `t H HX @  `" B 0L0Y$ ( J!1B B B@cD1B@0@1B p i @ & 0 3B H H P7 P!( (,@AR P@PXX$2B,"L X,B,,P8!,B@Y $D, J!8L B 8B! $1B@01B  q7 @!  0C H!$ $, I HH0P< P!( (,R 0L0Y$( J!1B B Y 0B!` `, nC J!1B @Y a@! ' D !0 0 ,`@@1B H@c$ X!, ,, c" !H 8D1 `t  X X," , 8X! !0L 0L,c(P!H PP1 (t $X L( `L `, C J! ! @!1BB 1B Dp k !0  C @!  ,AB @@XH$2B$L H$B$,@8!$B@Y $4, J!8L @ 8@! $ 1BD01B  q7 @!  0C H!$ $, I HH0P< P!( (,R 0L0Y$ԑ( J!1B @Y 0@!` `, ~B J!1B B Y aB! ' D !0 0 ,`@@1B H@c$ X!, ,, c" !H 8D1 `t  X X," , 8X! !0L 0L,c(P!H PP1 (t $X L( `L `, B J! ! @!1BB 1B Dp k  &0 0   q8 @!  ,A@@3B @3B P(qw  X !&,0 XABL "XD#@* $ HB`, &0LB0L,, (@PB@P,@X !PT PT,¨ *PTBsd 8&!8Y @(!@Y H$! HY P*!@PY$~, J!BNL @ # . B @ 81 `t0NL 0 B Y B @L @ B , @BL H$B$,@/ P(B`. X, P,1 (t X$`XX P( (B(,H`,Pp, # J!B1B @ B1B DP ! ,$d( J!4 '&0  @ B@. D # f B Y  '&0 0  !`X 0B!` `,p,. @P , 3 A J!1B@ BNL D  E?#@1BB1BB01B p i@ @ '& 0 @!1BH@H 8$P1 `t H HX @  `" B 0L0Y$( J!1B @ B@cD1BB0@1B p i @$1B @3B P(q7 X!, ,0C !D D, "0P< ! H  H, 0L0Y$T( J!B3B @Y 0@!` `, z@ J! B3B D@Y aD! ' B !0 0 ,`@@1B H@c$ X!, ,, c" !H 8D1 `tz"|h$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* )"  X X," , 8X! !0L 0L,c(P!H PP1 (t $X L( `L `, @ J! ! @!1BB 1B Dp k !0  C @!  , + H$B$,B 0L0Y 8!8Y$( J! ! ,D 0L0Y 8!8Y@$HYX J!,L B   @'B8L @ 8@! !p p,88$ H 3:S? J! ! p (0C !!  PC ! ,$n, J! ! ,D  0L0Y 8!8Y@$H8XX J! ,L D 'D,L B0 0 @'  B U0 `!@B  1 1pF`(! 2B(c (b(b 2B@L @B eB 0BD H gB H`gB3B@L B0XD 8@ 0(! #!Jy@!J!yH  L @ `e$3B2 B@ q!@ #@. D 0 `/ 0 d2B @02B` @0! # / BXD 8@$0(! C!Ry!J!yP 0L 0 c(2B 02B` ! # + B @bD1B@0B 0B @!0 0! a! H@x! a! , 8 )&p0  8N8Y$ }( J!p (C a!  @Dy! !, a! ,$|( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y ${( J!0B @p q4 a!  @Dy! !, `!0 0 ,${( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( &D0  " RD C  ! H XX$(! @!0L dL(P2B *X +!PT h*x! x!< #r !`X ( .\ #) 0`Bp`,8`,$z( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$|z( J!B2B @B2B BP $01B H!$ $(D 3Y! P@!( (,@AV P(s p44 X@!, ,,D^ 0L0Y$z( J! ( < A! ,D 0L0Y 8!8Y@$H@XJ!l A! ,  0L0Y 8!8Y@$Hh PJ! 0B D@Y 0QE!` `,p, $y( J!0B @Y qA! , 8!p p, $|y( J!0B B Y C! , 8!p p, $\y( J! 0B D@Y E!   , 8!p p, $Y ! ,`b f Y !   ,@$@B8 Pb!HPH`HH !P 0B@ ,`EX V@H``(H@D$0B D, DB01B &`X&! H Pb! ,@X !@ #c @P@P p! fR3BZ3BT"2B VYa!0,Y 1 b!@B1 b! `!! p C !  @D9(! ! PB(! ! h@x! @! , a HR! HY p!B,a hZ!hY P!B,`a XV!`XY @!0 B0 ,@@ R!`Y \!Y Z!Y T!Y V!Y !Y$( b!2B X 3B Dp q  !!#? ! @Pph! HA! PR! pA! `\yH! h! ,@a PT!R@`/ XV Pn)(3B X,B g," !0H `g&@3B (X `!PTBU( 0,aP, Pb!@BJ0 b!3B`X 3B D b@ gB2B @`s @! @Py% H! XR% p! fZ3BT3BV 0B`Ya!P,h Pb!@B0 b!H gB Hf@$ @! 8P8! H! HRy(! h! ,@h$( b!T pa!B,@eT1B XV`XY ! E[X1B @Y a!  @B1B @P@Y Ha!B,DPB1B hZhY !0 k @1B H HX H!$ @a$@1B X`XX X!, a," 1B $@X$! Hx Pb! ,@X P!@ #" p! ,sp\0BBB1B XV`XY XW! aX ! p (PC !   ,@$ܳ( b! @! ,C@P0BRB1B hZhY h[! @EaTB1B B Y B! `\B1B XV`XY X!W! `XB1B @Y @! @`D0@1B `X 0!0 A` "L H$ $,@d P!@PX H!P$ #`a X`,s !D H"x! C& H0 $!00B`0L,@X &!@Y $!`Y$]( b!p (C @A D&0 @P!B0B H,@Y R!@Y P!`Y$]( b!p (C P!B,d hZ!hY T!@Y Z!`Y$]( b!p (0C !0 Ed p\@pY$@Lh|]( b! B @ \  BX!3BX3B @qd !0 Ed HR@HY$@LhD]( b! B @ R  B@!3BT3B hZq< H D&$0 H!1B@P(,`d X!`XX$,@P ,`X0,H@, 3r. b!"L B ,c p\!pY C!p #X$0BX1B`X,@a V!`Y$( b!"L @ ,@*` D B ,@"L HR ,, @PB, ENR0B T`Y g!   ,`$HXb!Ђ0B hZhY A! ,@Fo d@YB!HȺPb!0B p\pY ]!   ,`0, $,~, b!1B`,@` , - b!\ XA! ,@^ d@Y$[( b!0B @`Y g!   ,`$( b!U `@!@B  5 2ZF`(!(b(@a(aB3B@3BB BL D‹XD @8@0(1#1Hy@@1J yH  L B `d$@2B2 B@ !@ #@- D 0 `. 0 c1B B02B` @! #. @XD 8@$0(!C!Ry!J#!yP 0L 0 b(@1B 02B` ! # / B0 @( D  a0B2B@P HP!P$ #`we !! # !@ #@ H!% #@ `!P # @!!# cBL H$ @b$D01B0B 0B A! 0@! a! HBx! H`!$ $,H 8 )&p0  8N8Y$Y( J!p (C a!  @Dy! !, a! ,$Y( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $X( J!0B @p q4 a!  @Dy! !, `!0 0 ,$|X( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( `!D @"9x! `! H Px$h! `!0L `&9! `!@P p(@! @!PT PT,D 0L0Y$W( J!0B @p s, A! , 0L0Y$W( J! 3B D0B @Y 0@!` `, + J!3B B 0B D@Y 0E!` `, + J!0B @0BB 0BD00B `X 0!` `, + J!B1B @B1B Bp q  A! #n !0 0 , a H! HX0!p$B8Y$S( J!1B @1B BP !   ,$V( J! ! ,$V( J!0B ,@a D!@Y A!B}$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ",`,p,, 3? J! !! @dD0B @Y 0A!` `, 2+ J!B1B B B1B Dp q  ! #n !0 0 , d H! HX0!p$B8Y$R( J!1B B 1B DP ! ,$U( J! ! ,$U( J! 2B@ ,d @!Y !B,`,p,, 3? J! !  b@0B B Y 0B!` `, * J!B1B @ B1B Dp q  ! #n !0 0 , b H! HX0!p$B8Y$Q( J!1B @ 1B DP ! ,$U( J!t ! ,$T( J! 1B@ , b B! Y !B,`,p,, 3? J! !  cB0B @Y 0A!` `, J* J!B1B B B1B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$TP( J!1B B 1B DP ! ,$T( J!D ! ,$T( J! 1B@ ,c @!Y !B,`,p,, 3? J! A!  8D ! $rf$S( J! ! p `C a &0  B Y ! B , B\ @!0 e 2B82BH0B @@Y0!p, HY) J!B) J! ! p C ! @B9(! !  PDX! !0 hxH! @`!  , d H! HX P!(B(,`d X!`XX !DBD,@d $!@X !0LB0L,@ 8!8Y @!@Y H! HY P"!@PY X$!`XY `&!`Y$ ( J!1B @B3B Bp q  !#? !0 @9(! H!$ P% P!( hx% X!, e," 2B8$02BH&`2B8Y@!,8 PJ!B) J!H fB H`f$ @! 8`! H!$ HyP! P@ 4&(0  P!PX X@!,B,,8`, @R!@Y v f$Q( J!D ! eB2B,@DeD00Hg 0B2B@P(,`g X!`XX 0!0Y 8!8Y @!@Y H! HY P!@PY$dQ( J! ,@X !@ #b @P( A 4& 0  D!Y @!0 B0 , b H HX 0N!0Y8$ B@YH!!H8 PJ!l ! g@ 3BD03B"L @  , g H! HX @p!H # P` &(0  P@PX0 $p(B 8N8Y$ J!3B @p q q f$O( J! ! 8B! $B3B@  &0 0  !`X @`! #b H!p$ @Ac PPXH$L@PLO( J! B @  BX!0A0B,&@A0B (Pq  $`A3BT, !p\Bp\,e\0L ` &d0  2 X 2!d @ed4, ` &l0  6`X 6!l el8 ` &t0  :X @!xBx,Cx:"L >| |,>"L B , D B"L @ , @ "L D   , ` H! HX E!H #`)D 0 0 , )D "DBD,`@D "L $ H  H,@B$`"L 0L` `,5Lp"L 8Np p,;N"L @P ,DP"L HR , MR"L PT ,@EVT"L XV ,`]V"L `X ,fX"L P( (,@T"L @  ,G"L X, ,,`]0"L &0L 0L,`™&@3B (@$PW ` &PT0  *X !`XB`X, X*0 $ H(mXJ!B0B BB0B @P  !!  `wfHx(! H !$ $,H$dL( J!T a &0  B Y aB! #)D @ ,@)D D B ,D@02B @`!  , (` H$B$,@e P!@PX X@!,B B X," `XX0!p$B8Y @!@Y H! HY$( J!p PC A! HBx% a &0  @Y A! B ,@` H > J!B0B BB0B @P !  (pK6 @!p p, e H! HX P` &(0  P@PX 0O!` `, @!@Y Hq! , C J!$ !! $vf8@H! !!p p,`)D 0 0 ,88$ B @P@Y $J( J!| !! ,$J( J!\ a &0  B Y$uf8$B @P@Y $|J( J!$ A!  c@1B B Y C! 8B! ! #r !0 ( @ # ) H$Bp$,8`,$$J( J!BL @B,@b D@Y ! C!0VL 0 B0 ,( 0L` `,p, @P@Y HB! HY P!@PY$I( J!1B @ 1B DP$ $0@1B H!$ $(D 3Y! P@!( (,@AV P(s p44 X@!, ,,D^ 0L0Y$LI( J! ( < A! ,D 0L0Y 8!8Y@$HXXJ!t a!  8D@! ! , Bs7  A! #j !0 0 ,`  qW @!  ,B@0B 1B P@PX P!( `a XX(i  `!D @aD$ @!0L b (X (!P ,Ba 0*0Y~ )$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* [p"$ 8&!8Y H&! HY$ J!B$ J! A!p p, c B! Y 0O!` `, @B!@Y $D( J!T A!p p,@a D!@Y 0O!` `, @D!@Y $( J!1BB ! 8@! a & 0  D@Y D!   ,D01B"L @  ,A@ @@X@1B HH i  P!( `c( !D @)D $ H  H,@B $@X $!H ,`Bc 0&0Y 8"!8Y H"! HYz# J!B~# J! A! , 0L0Y 8!8Y@$Hȍ PJ!0B @Y 0@!` `,p, $F( J! 0B 8D8Y 0O!` `,@$Hx PJ!0B B Y 0C!` `,p, #R# J!0B,@b D!@Y 0@!0Y 8D!8Y$>( J!1B B1B @P !   ,$TF( J! A! ,b @Y 0C!` `,$4F( J! B1B D@Y0D! HH PJ!0B B Y 0C!` `,p, ## J!0B @Y 0A!` `, " J! 0B D@Y 0E!` `,p, #" J! L BB,b @!Y 0B!0Y 8@!8Y$=( J! 1B D1B BP ! ,$E( J! A!   , b B Y 0E!` `,$dE( J!B1B @Y0@! H} PJ! 0B D@Y 0E!` `,p, #" J!0B B Y 0C!` `, " J!0B @Y 0@!` `,p, #" J!  L D B , b B! Y 0D!0Y 8B!8Y$T<( J!1B @ 1B DP ! ,$D( J!L A! ,@b D@Y 0@!` `,$D( J!B1B B Y0B! H({ PJ!0B @Y 0@!` `,p, #2" J! 0B D@Y 0D!` `, *" J!0B B Y 0C!` `,p, #" J!1B,@b D!@Y 0@!0Y 8D!8Y$;( J!1B B1B @P !   ,$C( J!  A! ,b @Y 0C!` `,$C( J! B1B D@Y0D! Hx PJ!0B B Y 0C!` `,p, #! J!0B @Y 0A!` `, ! J! 0B D@Y 0E!` `, ! J!0B B Y 0C!` `,p, #! J! U0 `!@B  1 1tF`(!(c(@c(b0Hb @B0BB 3BD0L XD @8@0(#Jy@@J!yH  L D  `d$2B2B@ 1!@ # , B0 `, 0 c 2B D02B` @! #+ @ b1BB 0BD00B @@! 0! H`!$ Hx! a! , 8 )&p0  8N8Y$DB( J!p (C a! @By! !, a! ,$$B( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $4A( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$A( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D H #9x! @! H `dH&@A2B (X (!@P X(! p!8 #r !PT ( ,X #) .p\Bp\,8`,$4@( J!L @B, b B Y !!  !D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$?( J!2B @2B BP $02B H!$ $(D 3Y! P@!( (,@P P(s p44 X@!, ,,X 0L0Y$\?( J! ( < A! , 0L0Y 8!8Y@$HXJ!  !p p,@*P D B ,, @B,: 0L0Y8!$B@Y H@! HY$( J!p sC  &0 B BL D#*P @ `/ 0 H @4 ! H A&$0 H@L PH(# X A&,0 X(L "D ,@. $`H `,Xp, X,| PJ!B. J!B0L B @*P D#*` @ `/ 0 8 @ ! @ A& 0 @(L H@$# P &(0 P0L X, , )P "`D `,Pp, P,{ PJ!B J! A! , D B Y ! A& 0  D q@!`B@p, $=( J!0B @Y 0@!` `,p, # J! (L D B , d B! Y 0D!0Y 8B!8Y$2( J!B2B @ B2B DP !! ,$T=( J! A! ,@d D@Y 0@!` `,$4=( J!2B B Y0B! Hg PJ!0B @Y 0@!` `,p, # J! 0B D@Y 0D!` `, z J!0B B Y 0!B!` `,p, #n J!BL @B,@d D!@Y 0@!0Y 8D!8Y$l1( J!B2B BB2B @P !!   ,$<( J!L A! ,d @Y 0!B!` `,$d<( J! 2B D@Y0D! HXe PJ!0B B Y 0!B!` `,p, # J!0B @Y 0!@!` `,  J! 0B D@Y 0!D!` `,   ob$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "5J!0B B Y 0B!` `,p, # J!L ! 0(A! !  @$Ey@! A! , 0L0Y$;( J!1B @pP s !  H$E9! A! ,D 0L0Y$;( J!0B @ 2BDB2BB00B `X 0!` `,  J!2B @2B Bp q  !! #n !0 0 , d H! HX0!p$B8Y$0( J!B2B @B2B BP !!   ,$:( J! ! ,$:( J!B2B ,@d D!@Y !!B,`,p,, 3{? J! ! @cD0B @Y 0!@!` `, F J!2B B 2B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$.( J!B2B B B2B DP !! ,$:( J! ! ,$ :( J! 1B@ ,c @!Y !B,`,p,, 36{? J! !! B ,$ 8D!8Y$G( !@ # b BPP !!  @D9!  &0 0  !`X H !$B$,@*` P(B(,`,Hp,P, 3 J!$L @B, *` BB,`,@p, $}, J! 1B D1B BP\ &0  @!Y !0 B0 ,`,p, #> J! 0B DPx ! HBx! !B, 8@!8Y$,F( !@ # b Bp q !B, uf8$B@Y $48( J! !  8DP! ! HB9! $01B@$@0B "L @ B ,@a l X!,B,, a,"T ! H X$@! !0L h&9! $P1BP* &`X0  ,!X @!\ # ` &`0  0X !dBd,d0"L 4h h,`)D 6lBl,@Cl4"L 8p p,)D :tBt,t8"L <x x, <"L >| |, >`"0BL 8A! ,(` @PB, ` HR!@HY !B`@  `X0T!pB8Y @D!@Y H! HY$( J!p C ! H@x% a &0  B Y ! B ,  B`H J> J!1B @1B BP4 !p p,`` !`X H` &$0  H HX 0N!` `, @!@Y Hq! , Cҡ J!$ !  uf0BX! !!  (C !p p,)D @  ,88$ B @P@Y $\5( J! ! ,$T5( J! !!B, $uf8$B@Y $<5( J!T 8EH! ! pC !p p,`g !`X @! B , f H! HX P`!(B(,: 0L0Y8$ B@Y H! HY P!@PY X!`XY$( J! 1B D1B @P ! HB9h! ` &0 0  `X H!$ `$"L P( (,@Q"L X, ,, )D "DBD,`AXDt ! H X$`! ` &0L0  &`X `!@P `P&P"L *PT PT,f,PTBX*p"L .p\ p\,B. ` &`0  0X @ &d0  2! X 1!` #@)D 4h h,@ 4"L 6l l,` 63B 8X08! HjXJ! 1B D1B @P !p p,`f `X 0N!` `,t@!HFPJ! 1B D$  U0 `@!@B  - 3fF`(!(g(@g(f1B@1BB rH$b@H`0b"1B@ 0BD0pH a BH@aD00B0BBrH@$aD0H 4a B0B@ B0BD0pH ` BH@`D0`0BBL B‡XD @8@0(! #!Jy@@!J!yH  0L 0 g$0B @00B` ! #@/ D 0 ( @ f3B @0B@ !@ # ( BXD 8@$0(! C!Ry!J!yP 0L 0 e(3B 00 B` q! # ) B0 @* D  d2B0B@P H0!P$ #`* XD @8 B0(Cy@Ё"J#B yD L H$ @c02B$00B` @! #+ @ bB3BP 0B(D0B @!0 0! @`! Hx! a! , 8 )&p0  8N8Y$0( J!p (C a! @By! !, a! ,$0( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $/( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$l/( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @#9! ! H P%! !0L `'9! !@P p )@! @!PT PT,D 0L0Y$.( J!3B @p s% ! @ C9! !  PE!I@ @!0 0 ,D 0L0Y$t.( J!2B @0B B Y 0B!` `, . J! B2B D0B @Y 0@!` `, " J!2B B 0B D@Y 0D!` `,  J!2B @0BB 3BD00B `X 0!` `,  J!0B @0B Bp q  ! #n !0 0 , g H! HX0!p$B8Y$ ( J!B0B @B0B BP !!   ,$-( J!t# ! ,$-( rг$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "FJ!3B ,@g D!@Y !B,`,p,, 3&t? J! ! @fD0B @Y 0@!` `,  J!0B B 0B Dp q  ! #n !0 0 , f H! HX0!p$B8Y$( J!B0B B B0B DP !! ,$,( J!D" ! ,$,( J! B3B@ ,f @!Y !B,`,p,, 3s? J! !  e@0B B Y 0B!` `,  J!0B @ 0B Dp q  a! #n !0 0 , e H! HX0!p$B8Y$d( J!B0B @ B0B DP !! ,$+( J!! ! ,$+( J! 2B@ , e B! Y a!B,`,p,, 3r? J! A!  dB0B @Y 0A!` `,  J!0B B 0B Dp q  !! #n !0 0 , d H! HX0!p$B8Y$4( J!B0B B B0B DP !! ,$*( J! ! ,$*( J! B2B@ ,d @!Y !!B,`,p,, 3^r? J! !  c@0B B Y 0B!` `, 2 J!0B @ 0B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$( J!B0B @ B0B DP !! ,$)( J! ! ,$)( J! 1B@ , c B! Y !B,`,p,, 3q? J! ! B ,$ 8D!8Y$4( !@ #f @P !  @D98! @!0  (C H !$ $(C P`!( ((`C X!, p, (@C$sf$)( J! A! p C ! H@xp! ! B ,$ 8D!8Y$3( !@ #f @P ! B , $uf8$B@Y $(( J!$ !! p C a! H@x0! a! B , 8D!8Y$\3( !@ #f @p q a! B , uf8$B@Y $4(( J! ! 8B! a!B,@c D!@Y 0@!0Y 8D!8Y$ J!3B @3B BP ~<$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ds"W !  ` vfH8h!XH H!p$ p,@c P!@PX X` &,0  X`XX 0N!` `, @!@Y Hq! , CR J!$ !!B,`, : J!0B ,`, 6 J! 0B@ ,`, 2 J!1B,`, . J!1B B Y 0B!` `, & J! 3B D@Y0D! H< PJ! a &0  @Y A &0  B! Y @! #@)D D   ,`)D 0 B0 ,@  D"L @  ,A "L H$ $, K 1B X@!,B,, (` "DBD,@c $!@X !0LBB L( `X 0!0Y 8"!8Y @$!@Y H&! HY$lq( J!p C ! H@x% a &0  B Y ! B ,  B`H > J!0B @0B BP, !p p,`c !`X H!$B$,: 0L0Y8%$ B@Y H! HY$<&( J!$ !!B,`, N J!0B ,`, J J! 0B@ ,`, F J!1B,`, B J!1B B Y 0B!` `, : J! 0B D@Y0D! H8 PJ! A! p PC ! # ! B ,`(` 0 B0 ,c @!@X H!$B@A H$  HX 0D!0Y 8!8Y @!@Y H! HY$to( J!p pC ! H@x% !p p,@c D!@Y !0 B0 ,: 0L0Y8$B@Y H! HY$$( J!1B 8@8Y !B,@g D!@Y 0N!` `, @B!@Y HD! HY$D$( J!$ !!B,`,   J!0B ,`,   J! 0B@ ,`,   J!1B,`,   J!1B B Y 0B!` `,   J! ! B , $uf8$B@Y $( J! ! 8A! A! @`D0@0B `X !0 Hx! ! #r @ ! ( H@$ #@) P(Bp(,8`,$( J!L @B, b B Y !!  D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$,( J!0B @0B BP $00B H!$ $(D 3Y! P@!( (,@AP P(s p44 X@!, ,,DX 0L0Y$( J! ( < A! ,D 0L0Y 8!8Y@$HRXJ! !p p,@*P D B ,: 0L0Y8 $B@Y $( J!| A&0 @(L B#@a D@Y 0D!` `,   J!0B @0B Bp q   & 0 D !0 0 , *P H$B$, 8!8Y$( J!B0B @B0B BP !!   ,$( J! ! ,$( J!(L BB,@*P D B ,*P @B,`,p,, 3Jg? J!  !&0 B BBL D#. @B,`, 0 B0 ,, @ B , *P H$B$,`,p,@, H, C  J!BBL B @*P D#, @ `/ 0 8 @ ! @ A& 0 @(L H@$# P &(0 PL X, , )P "`D `,Pp, P,. PJ!B  J! ! &0 B (L D #*P @ 8@!  &0 0  !`X @ & 0  @!@X 0!0Y 8P!8Y@$HXJ!p C  &0  B! Y ! B ,`,p, #n> J! A! ,D 0L0Y 8!8Y@$H8- PJ!0B B Y 0B!` `,p, $( J! 0B D@Y 0D!` `,p, $l( J!0B @Y 0@!` `,p, $T( J!0B B Y 0B!` `,p, #  J! (L D B ,` @!Y 0D!0Y 8@!8Y$t( J!B0B B B0B DP !! ,$( J!, A! ,@` D@Y 0B!` `,$( J!0B @Y0@! Hh PJ!0B B Y 0B!` `,p, #  J! 0B D@Y 0D!` `,   J!0B @Y 0@!` `,p, #  J! L BB,@` D!@Y 0B!0Y 8D!8Y$,( J!B0B @B0B BP !!   ,$( J! A! , ` B Y 0@!` `,$( J! 0B D@Y0D! H PJ!0B @Y 0@!` `,p, #b  J!0B B Y 0B!` `, Z  J! 0B D@Y 0E!` `,p, #N  J!(L @B, ` B! Y 0@!0Y 8B!8Y$( J! B0B DB0B @P !! ,$D( J! A!   ,` @Y 0E!` `,$$( J!0B B Y0B! HH PJ! 0B D@Y 0E!` `,p, #  J!0B @Y 0A!` `,   J!0B B Y 0B!` `,p, #  J! B*L D B ,` @!Y 0D!0Y 8@!8Y$( J!B0B B B0B DP !! ,$t( J!T A! ,@` D@Y 0B!` `,$T( J!0B @Y0@! H PJ!0B B Y 0B!` `,p, #  J! 0B D@Y 0D!` `,   J!0B @Y 0@!` `,p, #~  J!"L BB,@` D!@Y 0B!0YG$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ;"Escg^N νձl~@?59Yug径LY8`jnK (?e!W_pA9L,`vl!IޠufU 4cՍKcd@yZC/ Y' ቘJCE+(-_+b$/0 !cm.m`1x1 dr r3H,78S2xY p2^ ^ú @i; ݁ `YgS`cGzLwaPsydd1=&hC\L 1HiUӬ~`W Q)+`dq0 8pPg p E>cH5Re 1)0'ܺQb# $e2_W)L>5G7piWcB*6`נYM34X% 0 4p/kVXhgA.(0-CLS_P#1#0r p7Oѯrɣm!hST y$oı3^C@mk_4U=iZ%P,%` `K Cq 08ّ(UW Uk8Y0":Rb ``S"puRW qԪ3Av-beNfIl6$L}GbE@p8SFbPgoYn`V!)KzpX=cف){4U zM^Y] 3T/x05% \$g0 /..|AFD/@ k`.D#tYK*礬 ݾQҵ*PX\T0EHyI4tC6t]]4*b4p$>r8*1Ctq1(% '\4'حq<#o-!P A}d ҄{jGQP_ΘC `p{Cns?'Ǩ00=E}ruc% Cg/|qjmSLSYbwɷY0F\ 96@~;;`Rz4iY f!_4\40T IpnR^ P`p!C}E"+72 Xde2 0M8.@%)} 4|rDUy?ē@rpwQ8pBL 0[X~!=@ߘXU&HŬ`Q@u|q{ ?Xj bu`xKxwP @J}&q & `ƽ @BFlC C9yCBP<t%[f qM+PhW8DEpYQ*)![HJ)`P1a9PLJ%x[X ^̔;l1k\P4'1d1V7;pQY'\K%\`Yd~1p5H(p%P0M`&PC&6v 'xs@@j`z%V[ >QMX jJO7 VA6q/uSaj]@BA2ǃ}@ kW;@*Cc%0@He@83s"4` 0A+0B"{X[r0p٥?a/$PoE;99<7v{zRcƪ/> .~b?l׀6OzN&5d+P+&IZ' %CzAt.`N J=r%BoEPi %>2G 8*+*PYC@q7ژzYh<m7@FĦe8 `b1Bp 6Zyԏi#`MltRp枇_.v [PY, !ev N409Voz+=2`úQik4y%'pWaJ6ފ ;4Zlxr' ; صC=$`$#i>Zr0$MRО3:K.J@ U|*izm/HFQKr3\ 4%Ldi >VD w'l^@4\ bPcs TN(40 l1J@^Yi'cT@¤o0:{)`X */D"؄!zo09\UC @t ul&Qse@z3xV#" U%Z'pnxže}@H$W%6XLv9!A0GS?4@K#-H_gm)6v=u2TAݑ`gRz,0+1뙗!S{ݲ4@ P@Ѧń& ˠ~dym$o ѳy {G[Y `;ʄ0 s=@¡1@4lt@|(\r0`wyeo ? 7٤dv1Mh%VhYaxn@CQP wcr|8K$'A#Awx lx" i9A54G'HiMXC`8-t;Š<${]@5c2ِ&NB`QXTif;@e-13i=  pH.I+騻RuP1@$V995YFK4g%JFnR8*x9 lPBD?; @/F`% HqA])Zr1MN-EKzg@sh?$ڈsG1 R|S&Yc0b㈀T"_  Pd:Z9 X8x |.d+L X_p`n 1yX]`Y MpfEy>̄ Oţa1vh x F PPb;2%`dF- Qܗ`@Y7A]@Ė Hd>DJݱq<N=w)l@Oa<Fk-Wd%bXX'@l9/WfP(@P|{B! F]Cشs)T@ |N]E?ׄq !i}]y6*n>Pf:M]W@7>@4@8` Űz=!K"ySU;(@Pf2ِܿHk0 *` g*@.ĬRLbJ`L@c&4KEJҿSB<%'U\B }?50# pXv6!`,dIo@_L٠|ճ#1`v f G Be\ްu2/I^"'w$)sx35n0cU 'Y4 AUC^ٰxaXR;A\<H )x<js UYg YNL$wS+=um@W˘,UŃK%]eW0hA\0Cq#nu)]h֣㒤C`=aO9x%(RؗC2sP{)ڹ]0k{huBԱuTĸ$jt&zD empBET"@/`Pl`Fvt@X_sA\loǬ1Q䋝a)ub &ewwH{ЊZ͕'_K:ѧ/P? F /'xqԃ_<`s?t^i2T~&o] m6Йd~? ( DU@oX݀i4y2 a`pbpD8a qXs,)ЃLmzM`aL쩨/Fw`;(06?@qKCY~tR> r -(0 $ i- 7aJ)]'x:(3RQ `g~PYbr@/BvP%N] YMӶwc\/"E _n[ gPDi?CQ&kAl6!(b#4 N?Q~Vdh~C5 7EG @pi{ L+S@'Êl#  J!1B @ 1B DP4 !p p,`g !`X H` &$0  H HX 0N!` `, @!@Y Hq! , C J! &0  @Rp K@w f ! #V? HBy! X~, J!1B @Y 0@!` `,p, $4~, J! U0 `!@B % 3~F@ !(b(@a00B `X p q @$ ! 8@H! a! ,`*` 0 B0 , 0!0Y$( H!p ( C@$l a! ,0@0B B Y B! P, 8a D&p0  H! B @ B BH!0B$0B X,qx `!0L 0L,0&@0B (X (!@P PP, 8 D&p0 z H! B @ ( P Bè!`0BT,p0B .\q@ `!` `,000B 2 X 2!d Pd, 8 G&p0 N H! B @ 2  B!0Bh60B 8pq @$ @!@XU `!@B  % 2~F`(!(d(@d(c0L 0 b @B2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !pD p,D: 0L0Y8$ H 3? J!1B @Y 0@!` `,  J! 1B D@Y ! ,  B dR C/" X@ @`O @p (`C @!  ,B 0L0Y$( J! '&0 @ BNL D  81 `t0NL 0 B Y B @L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  1B X`XX X`!, 0,)XP 8qh $ $HB ! #`. &0L &!@ANL (P #b *X '&`X0  ,!X 0*!` `,p,. @P , 3B J!1B @Y 0@!` `, : J! 1B D@Y 0D!` `,p, $T~, J! U0 `!@B  1 0~F`(!(g(@g(f0L 0 b @3BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$t( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !pD p,D: 0L0Y8$ H 3F? J!3B @p s !   , 0L0Y$( J! Hf@ !  p C !p p,e @!@X H !$B$,@d P!@PX X!,B,,: 0L0Y8$ B@YSh$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " H! HY P!@PY X!`XY$||( J!3B @3B BP A!  @D9(! @!0 P ! H$3B$<$ X!, ,, d " X 0!` `,$( J!2B @2B Bp q( !   ,`e `X H !$ $, 0L0Y8!$B 3_ J!$3BB$ !   , 0L0Y$D( J!< 8@0! ! ,  0L0Y$( J! !   ,D 0L0Y 8!8Y@$HXJ! U0 `!@B  1 0~F`(!(g(@g(f0L 0 b @3BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$T( J!p (C a! @@y! !, a!   ,$4( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $D( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D H"9! ! H  H, 0L0Y$( J! H@fD ! p C !p p,e @!@X H !$B$,@d P!@PX X!,B,,: 0L0Y8$ B@Y H! HY P!@PY X!`XY$w( J!3B @ 3B DP A! @B9(! @!0 P ! H$3B$<$ X!, ,, d " X 0!` `,$( J!2B @ 2B Dp q( ! ,`e `X H !$ $,  0L0Y8!$B 3V J!$ 3BD$ ! ,  0L0Y$( J!< 8"0! ! , 0L0Y$ܴ( J! U0 `!@B ؕ:3jF@!BD!0L 0 0 / @ a B 0BDB1B P! # ( B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0@L 0 `(@@0B 0@1 B` H!$ # ) B0 @) D  @g3B@B1B @!! #`* XD 8 B$0(CyС*J#R yD @L @ f@0@3B 0@1B` H!$ #@erH$e@ H1e02BH@d$2B@rH!d H`0d 2BL H$B$,@+ P(  ! # @! 0! HPx! P!Y )&0  |Y$L( x!p (C@Py! !$ P!Y$<( x! B, @B  '& 0 DBNL @ ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1B@ H,`@H0ANL &0L &!@ANL (P #/ *PTBPT,@,,. ~ , 3 x!1B Bp qH @Py! !$ P!Y$4( x!  B , @D\$ ! 8@ ! , DB01B$ H!$ $, H,@PPps0C X! , ,  "Dqw  p!8 #b +& H0 $0VL &0LBL,,$( x!L BB,`HY@E!VL H$B$,( z ,, ~Y !Z ! Z$4( x! BP4 $01B H!$ $(D 3Y! P!( (,@V P(s p44 X!, ,,^ zY$( x! ( < ! , zY !Y$H(Xx! , B s`˘!P  ! H& 0 D , @s7T 0,`@L @ # HY H!$ @- P( `( ! X@ H&,0 XAL "XD# H& H0 $0,`B &Y ` H&@P0  (Y $!Y $!Zj x!Bn x!L ! ,@, D B ,G zY $BY $Lz( x! ! H&0  @ qà!1B B Y C! ,, #6 x! 1B D@Y AE! ,, #* x!1B @Y QA! ,, # x!, Bp s  ,@ D@R, @DR A/"P@  ! !0 0 , zY j!Y$( x!1B BY }! ,$H Px!1B @Y A! ,, $( x! 1B DY !}! ,$HH Px!1B B Y AC! ,, $( x!1B @Y QA! ,, $t( x! 1B D@Y aE! ,, $\( x!1B BY q}! ,$H Px!1B @Y 1A! ,, # x! L BB,c @!Y B!Y @!Y$D( x!  BP D!Y$( x!| ! ,c @Y 1C! ,$( x! 1B D@YD! H8 Px!1B B Y 1C! ,, #R x!1B @Y 1A! , J x! 1B D@Y E! ,, #> x! L @B,@c D!@Y @!Y D!Y$( x! BP B!Y$<( x!L ! ,@c D@Y A! ,$( x!1B B YB! Hؘ Px!1B @Y A! ,, # x! 1B D@YȽ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " E! ,  x!1B B Y C! ,  x!| $`q  $q7 ! , zY$( x! H, !   ,G zY$( x!  B c B Y AC! ,  x! Bc @Y QA! ,  x! B@c D@Y aE! ,  x! B c B Y !C! ,  x! 1B  1B D@Y qE! ,  x! Ba@ 0BD01B `X 1! ,  x! B  A! #^ @!0 B0 ,,, #d x!  BP D!Y$( x! B!Y$( x!0B,@a D!@Y @!0 B0 ,,,, 3H? x! !! @`D01B `X ! , * x! B  ! #^ !0 B0 ,,, #2d x!  BP D!Y$( x! B!Y$( x!0B,@` D!@Y !0 B0 ,,,, 3H? x!p (C(pC0C `R!B A!B,`v A! B ,P,,, 3> x!p C !B,g @!YATue B!Y @!Y D!Z$l9~, x!T !B,g @!YATu#e B!Y @!Y D!Z$$9~, x! A!B,g @!Yp ( C ! # C  H&0 0  ! X R!Y !Y !Y !Z$)HX;Xx!  BPD ,d @!Y ! B ,  zY @!Y D!Y $6}, x!  BP  H&0  B B. @ #@, D  `,  # . H$B@/ P(B(,`, X,B,, , "DBD,@/ $ HB H, HX !Y !Y "!Y &1  Z $! Z  H& 1  @Z !`Z$<( x!BBL BB,@($ D B ,`f !`X @`! B , d H`$s P! X$,B B!Y D!Y !Y !Z ! Z !@Z !`Z$4~, x! BP( A!B,, B x! 2B@ ,, > x! !B,@f D!@Y !0 B0 ,,,, 3F? x!B2B @p s ! I&0  B!`Y  ,@ D@R0C  &0 0 @T!B@e P@PX !Y !Y !Y!!H_X x!6L @B, -l BB,@)l D B ,`*l 0 B0 ,(l @ B , /h H$B$,@a4L X, ,, a," 2B $@X !L0#,,,- @-@H -`-h 0 ! 0 --h @! @- > x!$p C a! , d B! Y@!BY$L~, x!` BP  ,b @!Y !B, zY @!Y B!Y $2}, x!` BH a!   ,$ܡ~, x!,G zY$ H 3> x!BNL @ # . B @ 81 `t0NL 0 B Y B , @@ #`/ 0 B@. P( ` P(X1 (t P$@PX  H@"D$0NL 0 B`. &0L hL1 4t 0`X & P,B*0 BT`ANL ,`X ,!pANL .\ #. 0` a1 Bt<NL 4hBXh0 , 6`#/ 0`B. :t u@1  Ht X`: H'|zNL 0`B. | 0p1 PNt Y`| ,H!`B1DNL ! ! DNL  !#`. 0 ! H "1 TtNL @B`Z 0B D#/ @B. @ `!J1 Zt @@X@ 0H@!@,NL @ B . "D @ xE1 `t  X@ " @!0B( BP0ANL &0L &!0@NL  #. *PT U01 ftpNL .p\BX\* &L 2d d*PNL *PTB`. 6l m`1 @lt `XT6 )H#x:PNL *PTB. >| }1 prt XT> 0L ~ B*CNL | |!ANL 0a #. !  1 xt NL  BZ @,  #/ B . B @ 1 ~t  YC @H$$@NL H$B@. P( ` * \1 t P@PXH$ ,@B$ $BHANL "D "!@NL @ #. (@P ` RP1 0t 0NL &0LB`XL `3B , #`/ 0 B . 2d @ 8f1 `t  X 2 9H`#p60NL 0 B. :t Pv1 (t $X : #3Bz0 BANL >| >!PANL *T #. ~ h1 4t0NL |BX 0 ` #P   '&1  DH 1 @t >F`/ 0 B Z  !# B I&@1  ! 1B D@Y-/ B- zY ~!Y$BZ ! Z @!@Z n!`Z$T( x!,G  zY !Y$HXx! 2B@ ,,  x!2B,,  x!U ` !@B  % 2~F`(!(b(@a(a0VL 0 B0 ,b @B1B B Y Bp q !   , 0D0Y$( J! I&0  @!Y !B,`,p, #\ J! 1B D1B @P ! ,$L( J! !   ,c @Y  I&0  B! Y0@!pB8Y$$( J!@ #cs $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* /" @Y0@! H8v PJ!B1B B Y !   ,+ @B, 8B8Y @@!@Y $,}~, J! U0 `!@B  % 2~F`(!(b(@a(a0VL 0 B0 ,b @B1B B Y Bp q !   , 0D0Y$L( J! I&0  @!Y !B,`,p, #\ J! 1B D1B @P ! ,$( J! !   ,c @Y  I&0  B! Y0@!pB8Y$( J!@ #c @Y0@! Hr PJ!B1B B Y !   ,+ @B, 8B8Y @@!@Y ${~, J! U0 `!@B  - 3tF`(!(`(@g(gB3B@BL B0 @-$ D  d@02B01B` 1! # -$ B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0L 0 c(@2B 01B` H!$ # + B @bD0BP0B(@0B @!0 0! H`!$ Hx! a! , 8 )&p0  8N8Y$T( J!p (C a!  @Dy! !, a! ,$4( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $D( J!0B @p q4 a!  @Dy! !, `!0 0 ,$( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @"9! ! H P$! !0L `&9! !@P p(@! @!PT PT,į 0L0Y$\( J!3B @pȁ s\ A! , 0L0Y$<( J! B3B D0B @Y 0!@!` `,  J!2B B 0B D@Y 0D!` `,  J!3B @2BB B2BD00B `X 0!` `,  J!B0B @B0B Bp q  !! #n  !0 0 , d H! HX0!p$B8Y$( J!0B @0B BP A!   ,$l( J! !! ,$d( J!B2B ,@d D!@Y !!B,`,p,, 3=? J! ! @cD0B @Y 0A!` `, ~ J!B0B B B0B Dp q  ! #n  !0 0 , c H! HX0!p$B8Y$( J!0B B 0B DP A! ,$( J! !! ,$|( J! 1B@ ,c @!Y !B,`,p,, 3 =? J! !  )D @ , @Y @p q a &0  B Y !0 B0 ,  B$ @` & 0  @@X @! # H`!$ @)D P( (,@P P@PX PH(q7 X` &,0  X`XX `!DBD,`XD$ ` & H0  $@X $!H # !0LB0L,)D (@P @P,`,D 8N8Y$,( J!p `C a &0  @Y !! B ,D @$ a &0  B Y B! # ` &0 0  `X  ! # c H! HX P` &(0  P@PX 0!0Y 8A!p p, #V J!p `C a &0  @Y ! B , @$ a &0  B Y AB! # ` &0 0  `X P! # f H HX0! HXJ!` H  @> J!3B @p s  I& 0  D!@Y 0D!0Y$ ( J!B0B BBL @B@` D!@Y,`,p, # J! ! 8B! A!  a@00B `X !0 Hx!  ! #r @@! ( H@$ #@) P(Bp(,8`,$|( J!L BB,b @Y A!  E!0VL 0 B0 ,( 0L` `,p, @P@Y HD! HY P!@PY$( J!0B B0B @P $0@0B H !$ $(D 3Y! P@!( (,@W P(s p44 X@!, ,,_ 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HXJ! A! ,@f D@Y 0A!` `, @! B&0  @P@Y $<( J!< A! , 0L0Y$,( J!B3B @ !   ,$D}|, J!0B B Y a &0  @Y @! , 0L0Y 8P8Y@$H PJ! 0B D@Y a &0  @Y A! ,D 0L0Y 8P8Y@$HH PJ!0B B Y 0C!` `,p, # J!"L @ ,@` D!@Y 0@!` `,p, #nU J!0B B0B @P A!   ,$,( J!, A! ,` @Y 0C!` `,$ ( J! B0B D@Y0D! H8X PJ!0B B Y 0C!` `,p, #n J!0B @Y 0A!` `, f J! 0B D@Y 0E!` `,p, #Z J!"L B ,` @!Y 0AB!` `,p, #T J! 0B D0B BP A! ,$T( J! A!   , ` B Y 0E!` `,$4( J!B0B @Y0@! HU PJ! 0B D@Y 0E!` `,p, # J!0B B Y 0C!` `,  J!0B @Y 0A!` `,  J! U0 `@!@B  - 0vF`$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* f"(!(g(@f(f0@L 0 0 +( @ d B 2BD0B 0! # +( B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0L 0 c(@2B 00B` H!$ # + B @bD3BP0B(@0B @!0 0! H`!$ Hx! a! , 8 )&p0  8N8Y$( J!p (C a!  @Dy! !, a! ,$( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a!  @Dy! !, `!0 0 ,$( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D H"9! @! H ``H&@0B (X )!@P X(! x!< #r !PT ( ,X #) .p\Bp\,8`,$( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$l( J!B0B @B0B BPT $03B H!$ $(D 3Y! P@!( (,@W P(s p44 X@!, ,,_ 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$H8XJ! A! ,  0L0Y 8!8Y$( J!  L D B ,g @!Y 0D!0Y 8@!8Y$L( J!0B B 0B DP ! ,$L( J! A! ,@g D@Y 0B!` `,$,( J!3B @Y0@! HI PJ!0B B Y 0B!` `,p, #~ J! 0B D@Y 0D!` `, v J!0B @Y 0@!` `,p, #j J! L BB,@g D!@Y 0B!0Y 8D!8Y$( J!0B @0B BP !   ,$|( J! A! , g B Y 0@!` `,$\( J! 3B D@Y0D! HF PJ!0B @Y 0@!` `,p, # J!0B B Y 0B!` `,  J! 0B D@Y 0E!` `,  J!0B @Y 0@!` `,p, # J! ! 0B! !  @Dy@! A! , 0L0Y$( J!B3B Bp( sd A!  d@00B `X 0!` `,  J!3B B3B @p q  !! #n !0 0 , d H! HX0!p$B8Y$( J!0B B0B @P !   ,$( J! ! ,$( J!B2B,@d D!@Y !!B,`,p,, 3:4? J! ! @cD0B B Y 0B!` `, V J!3B @ 3B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$( J!0B @ 0B DP ! ,$4( J!l ! ,$,( J! 1B@ , c B! Y !B,`,p,, 33? J! ! B , c B! Y 0D!0Y 8B!8Y$( J!0B 8@8Y 0O!` `,@$HhXJ! B2B@ , c B! Y 0D!0Y 8B!8Y$\}, J!2B @ 0B D@Y 0E!` `,p, $}, J!2B BP a! ,$( J! U0 `!@B  - 0zF`(!(f(@e(e0L 0 0 .( @ c B 2BD0B ! # + B @bD03B0B @0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$\( J!p (C a! @By! !, a! ,$<( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $L( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( `!D H"9! @! H `gH&@3B (X )!@P X(! x!< #r !PT ( ,X #) .p\Bp\,8`,$L( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$( J!3B @3B BP $0@3B H!$ $(D 3Y! P@!( (,@AW P(s p44 X@!, ,,D_ 0L0Y$t( J! ( < A! ,D 0L0Y 8!8Y@$HuXJ!$ A!p p,@c D!@Y 0O!` `,d @D!@Y $C( J!0B @Y 0@!` `,p, #r J!1B ,@f D!@Y 0B!0Y 8D!8Y$( J!3B @3B BP !   ,$( J!L A! , f B Y 0@!` `,$t( J! B3B D@Y0D! Hh2 PJ!0BI{$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " @Y 0@!` `,p, #" J!0B B Y 0B!` `,  J! 0B D@Y 0E!` `,  J!0B @Y 0@!` `,p, # J!L a! 0B! a!  @Dy@! A! ,D 0L0Y$ܿ( J!2B BpH s !  c@00B `X 0!` `,  J!B3B BB3B @p q  ! #n !0 0 , c H! HX0!p$B8Y$ܖ( J!3B B3B @P !   ,$4( J!, ! ,$,( J!1B,@c D!@Y !B,`,p,, 32/? J! A!p p,D? 0L0Y8$ H 3> J! 1B@ ,`, > J!B2B B0B @Y 0A!` `,p, $,}, J! B2B DP !! ,$D( J! U0 `!@B  - 0zF`(!(f(@e(e0L XD @8@0(#Jy@@J!yH  L D  `c$2B0B@ !@ # + B `b3BH 0B$D0B A! 0@! `!0 Hx! a! , 8 )&p0  8N8Y$d( J!p (C a!  @Dy! !, a! ,$D( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $T( J!0B @p q4 a!  @Dy! !, `!0 0 ,$$( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( `!D H|"9 ! @! H `gH&@3B (X )!@P X(! x!< #r !PT ( ,X #) .p\Bp\,8`,$T( J! L D B ,`b `X @! @!VL H$B$,( 0L` `,p, @P@Y H! HY P!@PY$( J! 3B D03B P H$@3B$ X!, ,(D 3Y C!l @!D D, Ž "Ds p44 @! H  H,Ė 0L0Y$t( J! ( 4 $B# Qx! A!   , 0L0Y$D( J! BNL D #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0Q*!` `,p,. @P , 3 J! BNL D #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0q*!` `,p,. @P , 3J J! BNL D #`. 0 8 @1 `tNL H$B`X$ @L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0*!` `,p,. @P , 3 J! BNL D #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0!+!` `,p,. @P , 3r J! BNL D #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0a*!` `,p,. @P , 3 J! A!   , 0L0Y 8!8Y$( J!  L D B ,`f !`X 0D!0Y 8!8Y$( J! 3B D03B P H!$ $,H$( J! A!   ,`f `X 0AD!` `,$|( J! B3B D@Y0D! H PJ! 0B D@Y 0AD!` `,p, # J! 0B D@Y 0AD!` `,  J! 0B D@Y 0E!` `,  J! A!   , 0L0Y 8!8Y@$HWXJ! a!  8D! !0 c 0B H HX 0A!` `, f J!B3B @B3B Bp q  ! #n !0 0 , c H! HX0!p$B8Y$ԉ( J!3B @3B BP !   ,$T( J!  ! ,$L( J!1B ,@c D!@Y !B,`,p,, 3(? J! !B, 8B!8Y:? !!@ #d @Pt ! @B9! @!p p,> 0L0Y8$ H 3> J! 0B D@Y !B, 0L0Y 8@!8Y$d( J!B2B B 0B D@Y 0E!` `,p, $į}, J!B2B @PT !! ,$( J! ! B , uf8$B@Y $( J!\ A! , 0L0Y$ܲ( J!0B 8B8Y 0O!` `,$( J! U0 `!@B  - 3tF`(!(g(@g$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* '"(f0L 0 0 ,, @ e B 2BD0B P! # -, B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0L 0 d(@@2B 00B` H!$ # cB rH@cHc01BL H$ b$B3BP 0B(D0B A! 0@! `!0 Hx! H`!$ $,H 8 )&p0  8N8Y$( J!p (C a! @By! !, a! ,$l( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $|( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$L( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @"9! ! H P$! !0L `&9! !@P p(@! @!PT PT, 0L0Y$( J!3B @pp s a! @eD00B `X 01!` `,  J!0B @0B Bp q  A! #n !0 0 , e H! HX0!p$B8Y$d( J!B0B @B0B BP !!   ,$( J! ! ,$( J!2B ,@e D!@Y A!B,`,p,, 3v%? J! !! @dD0B @Y 0AA!` `, > J!0B B 0B Dp q  ! #n !0 0 , d H! HX0!p$B8Y$4( J!B0B B B0B DP !! ,$( J! ! ,$( J! 2B@ ,d @!Y !B,`,p,, 3$? J! A!p p,? 0L0Y8$ H 3n> J!2B, d B! Y 0@!0Y 8B!8Y$$}, J! 3B D0B @Y 0A!` `,p, $t}, J!3B BPP !   ,$( J! ! 8@! A! @`D0@0B `X !0 Hx! ! #r @ ! ( H@$ #@) P(Bp(,8`,$( J!BL @B, b B Y !!  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$<( J!0B @0B BPt $00B H!$ $(D 3Y! P@!( (,@W P(s p44 X@!, ,,_ 0L0Y$ī( J! ( < A! , 0L0Y 8!8Y@$H@XJ! A!p p,@e D!@Y 0O!` `, @D!@Y $ )( J!< a! eB 0B D@Y 01E!` `,  J!0B @0B Bp q  A! #n !0 0 , e H! HX0!p$B8Y$<~( J!B0B @B0B BP !!   ,$( J! ! ,$( J!2B ,@e D!@Y A!B,`,p,, 3"? J! ! #@e Dp q  A!B,`c !`X 0@!0Y 8!8Y$̚}, J! A! ,  0L0Y 8!8Y$( J! 2B@ ,` @!Y 0D!0Y 8@!8Y${( J!B0B B B0B DP !! ,$( J!l A! ,@` D@Y 01C!` `,$( J!0B @Y0@! HHPJ!0B B Y 01C!` `,p, # J! 0B D@Y 01E!` `,  J!0B @Y 0AA!` `,p, # J!1B ,@` D!@Y 0B!0Y 8D!8Y$z( J!B0B @B0B BP !!   ,$( J!, A! , ` B Y 0AA!` `,$Ĩ( J! 0B D@Y0D! HPJ!0B @Y 0AA!` `,p, #J J!0B B Y 0AC!` `, B J! 0B D@Y 0E!` `, : J!0B @Y 01A!` `,p, #. J!1B ,`, * J! U0 `@!@B  % 1~F`(!(d(@d(c0L 0 b @B2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$|( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D @HD$x! $Lqwp \$ЈPq $Tq  8"0! HD#y(! ,$Xqw  $Ј\q !` `,01B`21B 4hq !pl p,D: 0L0Y8$ H 3.> J! H@/, D # c B Y QB! 8B! !0 0 ,`@ `X `!0  C @!  ,DA 0L0Y$ 5( J!p (Ç0$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " K&0 @ 1B D@Y 0D!` `,p, $}, J!$ !p p,88$H7XJ!1B @Y 0@!` `,p, $\}, J! NL D   ,@ Dp q A '&0  B Y 0B!` `,  J! ! ,$\_~, J! L D #* ! , B1B@01B p q0 @!  ,A@@1B H HX H !$  @  s7 P!( (,@Q P`P(PW X!, ,,X$^~, J! $2B@1B Bp q `!0  0C @!  ,A @`@(Pw< H!$ $,J 0L0Y$z( J!1B @Y 0@!` `, V J! 1B D@Y aD! ' B !0 0 ,`@2B H@f$ X@!, ,, f" !H 8D1 `t  X X," , 8X! @!0L 0L,f(P!H PP1 (t $X L( `L `,  J! ! @!3BB 3B Dp k  U0 `!@B  - 1bF`(! 3B(d (c(c B3B@L @B f8B L D 0 (0 @ aB01B0@1B` q! #@)0 D‹XD @8@0(CPyH@Ё"J#@ yP$ 0L 0 `(B0B 03B` H0!$ #*0 @0 @*0 D  @g0BB3B  @!! #`+0 XD 8 B$0(CyС*JR yD L @ fB03B 03B` H!$ #@,0 P(0 ,0 @ e(B 3BD3 B @p!! #`-0 XD 8 B$0(CyС*J#R yD L @ d@02B 03B` H0!$ #@.0 P(0 .0 B c(@ 2BD3B  @!! #`+ 0 b 2BP0B(@ 0BD @@! 0! a! HBx! `!0 0 , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a! ,$t( J!  B ,D0B@  '&0 B0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a!  @Dy! !, `!0 0 ,$T( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D HL#9 ! @! H `eH&@2B (X `(!@P X(! p !8 #r @!PT ( ,X #) .p\Bp\,8`,$( J!L @B, b B Y A!  aD!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$$( J!2B @2B BP< $0@2B H !$ $(D 3Y! P@!( (,@Q P(s p44 X@!, ,,Y 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HXJ! A! , ! 0L0Y 8!8Y@$H8 PJ! 0B D@Y 0D!` `,p, $D( J!0B @Y 0@!` `,p, $,( J!0B B Y 01C!` `,p, $( J! 0B D@Y 0QE!` `,p, $( J!0B @Y 0qA!` `,p, $( J!0B B Y 0C!` `,p, $̛( J! 0B D@Y 0E!` `,p, $( J!0B @Y 0@!` `,p, # J! L BB,@d D!@Y 0B!0Y 8D!8Y$4j( J!2B @2B BP A!   ,$D( J!l A! , d B Y 0@!` `,$$( J! B2B D@Y0D! HPJ!0B @Y 0@!` `,p, #z J!0B B Y 0B!` `, r J! 0B D@Y 0D!` `,p, #f J! L @B, d B! Y 0@!0Y 8B!8Y$h( J! 2B D2B @P A! ,$t( J!$ A!   ,d @Y 0D!` `,$T( J!B2B B Y0B! HXPJ! 0B D@Y 0D!` `,p, # J!0B @Y 0@!` `,   J!0B B Y 0C!` `,p, # J!  L D B ,d @!Y 0D!0Y 8@!8Y$g( J!2B B 2B DP A! ,$( J! A! ,@d D@Y 0C!` `,$( J!B2B @Y0@! HPJ!0B B Y 0C!` `,p, # J! 0B D@Y 0E!` `,  J!0B @Y 0AA!` `,p, # J! L BB,@d D!@Y 0B!0Y 8D!8Y$\f( J!2B @2B BP A!   ,$Ԙ( J! A! , d B Y 0AA!` `,$( J! B2B D@Y0D! H8PJ!0B @Y 0AA!` `,p, #B J!0B B Y 0AC!` `, : J! 0B D@Y 0aE!` `,p, #. J! L @B, d B! Y 0@!0Y 8B!8Y$e( J! 2B D2B @P A! ,$( J!L A!   ,d @Y 0aE!` `,$( J!B2B B Y0B! HPJ! 0B D@Y 0aE!` `,p, #$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* l" J!0B @Y 0aA!` `,  J!0B B Y 0C!` `,p, # J!  L D B ,d @!Y 0D!0Y 8@!8Y$c( J!2B B 2B DP A! ,$4( J! A! ,@d D@Y 0C!` `,$( J!B2B @Y0@! HPJ!0B B Y 0C!` `,p, #r J! 0B D@Y 0E!` `, j J!0B @Y 0!A!` `,p, #^ J!L BB,@d D!@Y 0B!0Y 8D!8Y$b( J!2B @2B BP A!   ,$d( J! A! , d B Y 0!A!` `,$D( J! B2B D@Y0D! HPJ!0B @Y 0!A!` `,p, #  J!0B B Y 0!C!` `,  J! 0B D@Y 0!E!` `,  J!0B @Y 0!A!` `,p,@, , C J!0B B Y 0aB!` `,  J! 0B D@Y 0!E!` `,p, # J!T ! 0TA! ! @PCy@! A!   , 0L0Y$t( J!1B @p s A! , ! 0L0Y$T( J! B0B D0B @Y 0@!` `,  J!0B B 0B D@Y 0D!` `,  J!3B @0B B Y 01C!` `,  J! 3B D0B @Y 0QA!` `, z J!B3B B 0B D@Y 0qE!` `, n J!3B @0B B Y 0C!` `, b J! 0B D0B @Y 0A!` `, V J!0B B 1BD0B@00B `X 0!!` `, B J!B2B BB2B @p q  a! #n  !0 0 , a H! HX0!p$B8Y$_( J!2B B2B @P A!   ,$ ( J! !! ,$( J!0B,@a D!@Y a!B,`,p,, 3? J! A! @`D0B B Y 0B!` `,  J!B2B @ B2B Dp q  !! #n  !0 0 , ` H! HX0!p$B8Y$T^( J!2B @ 2B DP A! ,$$( J! !! ,$( J! B0B@ , ` B! Y !!B,`,p,, 3? J! !  gB0B @Y 0@!` `, Z J!B2B B B2B Dp q  ! #n  !0 0 , g H! HX0!p$B8Y$$]( J!2B B 2B DP A! ,$<( J!T !! ,$4( J! 3B@ ,g @!Y !B,`,p,, 3V? J! !  f@0B B Y 0C!` `,  J!B2B @ B2B Dp q  ! #n  !0 0 , f H! HX0!p$B8Y$[( J!2B @ 2B DP A! ,$T( J!$ !! ,$L( J! B3B@ , f B! Y !B,`,p,, 3? J! !  eB0B @Y 0AA!` `, r J!B2B B B2B Dp q  a! #n  !0 0 , e H! HX0!p$B8Y$Z( J!2B B 2B DP A! ,$l( J! !! ,$d( J! 2B@ ,e @!Y a!B,`,p,, 3&? J! !  c@0B B Y 0aC!` `,  J!B2B @ B2B Dp q  ! #n  !0 0 , c H! HX0!p$B8Y$Y( J!2B @ 2B DP A! ,$( J! !! ,$|( J! 1B@ , c B! Y !B,`,p,, 3? J! A!  dB0B @Y 0A!` `,  J!B2B B B2B Dp q  !! #n  !0 0 , d H! HX0!p$B8Y$dX( J!2B B 2B DP A! ,$( J! !! ,$( J! B2B@ ,d @!Y !!B,`,p,, 3? J! a & 0  D@Y D! #)D @ ,@"L B , B0"L 0 0 ,`"L @  ,D"L H$ $, H "L P( (,@T"L X, ,,`A\"L "D D, " "L $ H  H,@$0"L &0L 0L,`š&@"L (@P @P,B(P"L *PT PT,*`"L ,`X `X,µ,p"L .p\ p\,."L 0` `,C0"L 2d d, C21B4A0B 6P$ !p H8x8! $1Bt<"L >| |,` 0L!0Y `>!0} # 8!p pC@$1BR3B@P,@g D!@Y 0T!0Y 8D!8Y$$( J!3B, e B! Y 0@!0Y 8B!8Y$<( J! B2B DB2B @P a &0  B Y @!0 B0 , D  B H!$ $pCP$1B(2B D,@e $!@X 0"!0Y 8$!8Y$|( J! 2B@ ,d @!Y 0D!0Y 8@!8Y$|( J!B2B B B2B DP a &0 {ߓ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " @Y  !0 B0 , @ H!$ $C P!( X8! X$1B," "L $ H  H,`f &!`X $!H # !@P PC !PT x*8! $p1BX.BL 0` , 2d#@(4 4hBh,`, 6lBl,, 8pBp,c :!X 04!0Y 86!8Y @8!@Y H:! HY$,( J!BBL B @cDBBL @ `d p i  @! c  P!( `/ X, , c 0"0Y 8!8Y H! HY J!B J!"L B ,@c D!@Y qC! # ! p C  !0 Hx8! @$1B "L P( (,`d X!`XX P@!X( # @!D DpC$01BH&@"L (@P @P,a *!X )!P # `!`X X`C ` &p\0  .X `!`B`,B`. `!d x2x! Ѐ!h ph pC ` &l0  6`X @ M&p0  8!X 6!l # ` &t0  :X M&x0  <!X :!t # `!| |C 0a!`B,e 8N!@8Y @!!B,H`,Pp,, 32? J! B2B Dp q4 a M&0  @!Y a!B,`a !`X @@!  ,`,p,, @$( J! a & 0  D@Y a!B,@D ! , B01B1B 88Y 0N!` `,@$HHXJ!1B @Y 0@!` `, g J!H> J! 1B D@Y 0D!` `,p, $ J!1B @Y0@! HXJ!p C !   , eBB @`N @1B H HX0! HXJ! ! ,D 0L0Y 8!8Y@$HxXJ! U0 `!@B  - 3tF`(!(a(@`(`0L XD @8@0(#Jy@@J!yH  L D  `d$2B1B@ 1!@ # .4 B0 `.4 0 c 2B D01B` @! #+ @ b0BB 0BD00B @@! 0! H`!$ Hx! a! , 8 )&p0  8N8Y$w( J!p (C a! @By! !, a! ,$w( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $v( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$v( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @"HD$8! @!0L bL(P1B *X +!PT X*! `! #r !`X ( .\ #) 0`Bp`,8`,$u( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$Tu( J!B1B @B1B BP $00B H`!$ $(D 3Y! P@!( (,@AT P(s p44 X@!, ,,D\ 0L0Y$t( J! ( < A! ,D 0L0Y 8!8Y@$HXJ!T A! ,D  0L0Y 8!8Y@$H PJ! 0B D@Y 0D!` `,p, $tt( J!0B 8@8Y 0N!` `,@$H PJ!0B B Y 0C!` `,p, #& J!  L D B ,a @!Y 0D!0Y 8@!8Y$6( J!1B B 1B DP ! ,$s( J!, A! ,@a D@Y 0C!` `,$s( J!0B @Y0@! HxpPJ!0B B Y 0C!` `,p, #ҹ J! 0B D@Y 0E!` `, ʹ J!0B @Y 0A!` `,p, # J! L BB,@a D!@Y 0B!0Y 8D!8Y$5( J!1B @1B BP !   ,$$s( J! A! , a B Y 0A!` `,$s( J! 0B D@Y0D! HmPJ!0B @Y 0A!` `,p, #j J!0B B Y 0C!` `, b J! 0B D@Y 0E!` `, Z J! !! t0B! !!  ``@x@! @@!  ,DD 0L0Y$r( J!B0B@H  A!   ,D 0L0Y$dr( J!3B @0B B Y 0B!` `, & J! 3B D0B @Y 0@!` `,  J!B3B B 2BDB2B@00B `X 0!` `,  J!0B B0B @p q  !! #n `!0 0 , d H! HX0!p$B8Y$<4( J!1B B1B @P !   ,$q( J!d a! ,$q( J!B2B,@d D!@Y !!B,`,p,, 3> J! ! @cD0B B Y 0C!` `,  J!0B @ 0B Dp q  ! #n `!0 0 , c H! HX0!p$B8Y$ 3( J!1B @ 1B DP ! ,$p( J!4 a! ,$p( J! 1B@ , c B! Y !B,`,p,, 3J> H$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* j"4J! a & 0  D@Y D! # )D B , BB3B @PP  N&0 0 @2B L H$ @e PP$i  X@!, d," ! H `(8 &L ,d 0(0Y 8$!8Y H$! HYڷ J!B޷ J! H gB ! p `C  !0 B0 ,d @!@X 0!0Y 8!8Y$o( J!B2B ,@f D!@Y 0B!0Y 8D!8Y$( J!0B @0B BPd a & 0  D@Y !0 B0 ,@D D H!$ $`C P!(B(,`c X!`XX 0!0Y 8!8Y$n( J!1B, e B! Y 0@!0Y 8B!8Y$L( J! 0B D0B @P a &0  B Y `!0 B0 ,  B H!p$ p,D: 0L0Y8$ H 3> J! 1B D@Y0D! HXJ!1B @Y 0@!` `,p, $$W}, J! U0 `!@B !3~F !(a00B `X p q  @!@X a! ,(@00B `X !0  !Y8$`L0L|m( F! B @ @ 0 B!0B " 0B $Hq a!@ @,(H`0B 0L0Y 0L!`  L!Y8$`L0L$m( F! B @ @ 0 B!0B " 0B $Hqx a!@ @,(H`0B 0L0Y 0L!`  L!Y8$`L0Ll( F! B @ @ 0 B!0B " 0B $Hq@ a!@ @,(H`0B 0L0Y 0L!`  L!Y8$`BL0Ltl( F! B @ @ 0 B!0B " 0B $Hq @$ @!@XU `@!@B  - 3xF`(!(a(@`(`0L XD @8@0(#Jy@@J!yH  L D  `f$3B1B@ !@ # ,8 B0 `,8 0 c 2B D0@2B` @! #+ @ b0BB 0BD00B @@! 0! H`!$ Hx! a! , 8 )&p0  8N8Y$4k( J!p (C a! @By! !, a! ,$k( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $$j( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$i( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D Hp#9! @! H `bH&@1B (X )!@P X(! x`!< #r !PT ( ,X #) .p\Bp\,8`,$$i( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$h( J!B1B @B1B BP $00B H`!$ $(D 3Y! P@!( (,@AW P(s p44 X@!, ,,D_ 0L0Y$Lh( J! ( < A! ,D 0L0Y 8!8Y@$H8XJ!\ A!p p,@f D!@Y 0O!` `, @D!@Y $( J!1B @Y @p s` ! ,  B 2L D#`b `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X1B " X "!D ,@/d $`H `,Xp, X,X PJ!B J!L A!p p, /d BB,D= 0L0Y8 $B@Y $( J! A!   ,D 0L0Y 8!8Y$f( J!B3B, a B! Y 0@!0Y 8B!8Y$&( J! 1B D1B @P ! ,$f( J!t A!   ,a @Y 0E!` `,$lf( J!0B B Y0B! HNPJ! 0B D@Y 0E!` `,p, # J!0B @Y 0A!` `,  J!0B B Y 0C!` `,p, #  J! 2L D B ,a @!Y 0D!0Y 8@!8Y$$( J!1B B 1B DP ! ,$e( J!, A! ,@a D@Y 0C!` `,$e( J!0B @Y0@! HKPJ!0B B Y 0C!` `,p, # J! 0B D@Y 0E!` `,  J!0B @Y 0A!` `,  J!0B B Y 0C!` `,p, # J!, !!  0|E! !! @tAy@! A! ,D 0L0Y$e( J! B0B Dp s ! fB00B `X 0!` `, j J! 0B D0B @p q  ! #n `!0 0 , f H! HX0!p$B8Y$#( J! 1B D1B @P ! ,$\d( J!  a!   ,$Td( J!B3B, f B! Y ! B ,`,p,, 3> J! ! cB 0B D@Y 0E!` `,  J!0B @0B Bp q  ! #n `!0 0 , c H! HX0!p$B8Y$t"( J!1B @1B BP !   ,$tc( J! a! ,$lc( J!1B ,@c D!@Y !B,`,p,, 3> J! ! 8B ! $rf$c( J!L ! B ,`,X a!@ # a BP$ H!$ C#^$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 4"EH8 ! $rf$b( J! tf$b( J! a & 0  D@Y !B,@D"L B , B0"L 0 0 ,`"L @  ,AF1B 88Y 0N!` `,@$H8XJ!3B@ ! B , (` BB,`g !`X @! B A @  @X 0D!0Y 8B!8Y @!@Y H! HY$\( J!p @C ! H@x% ! B ,`,X a!@ # a HHP` P` &(0  P@PX X!,B,,@R,01B &`X0&! HXJ!0B @ 0B DP` ! ,$|, J!1B 8@8Y ! B ,88u$B@Y H! HY P!@PY$i( J!$ ! ,D  0L0Y 8!8Y@$HXJ!3B, uf8$B@Y $`( J! !   ,D 0L0Y 8!8Y@$HXXJ!0B B Y0B! H PJ!< ! ,D 0L0Y 8!8Y@$HȋXJ! U0 `!@B  - 0zF`(!(e(@e(d0@L XD @8@0(#Jy@@J!yH  L D  `c$2B3B@ !@ # + B `b2BH 0B$D0B A! 0@! `!0 Hx! a! , 8 )&p0  8N8Y$T_( J!p (C a!  @Dy! !, a! ,$4_( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $D^( J!0B @p q4 a!  @Dy! !, `!0 0 ,$^( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( @!D H#9! @! H `fH&@A3B (X )!@P X(! x!< #r !PT ( ,X #) .p\Bp\,8`,$D]( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$\( J!3B @3B BP $03B H!$ $(D 3Y! P@!( (,@W P(s p44 X@!, ,,_ 0L0Y$l\( J! ( < A! , 0L0Y 8!8Y@$HHvXJ!, A!p p,@c D!@Y 0O!` `, @D!@Y $( J!0B @Y 0A!` `,p, # J!1B ,@f D!@Y 0B!0Y 8D!8Y$( J!B3B @B3B BP !   ,$[( J!T A! , f B Y 0A!` `,$l[( J! 3B D@Y0D! H2PJ!0B @Y 0A!` `,p, # J!0B B Y 0C!` `,  J! 0B D@Y 0E!` `,  J!0B @Y 0A!` `,p, # J!T A! 0C! A!  @Ey@! A! , 0L0Y$Z( J!2B Bp s !  c@00B `X 0!` `, R J!3B B3B @p q  ! #n !0 0 , c H! HX0!p$B8Y$( J!B3B BB3B @P !   ,$,Z( J!4 ! ,$$Z( J!1B,@c D!@Y !B,`,p,, 3F> J! !B,`,xX !@ # f BP0 H!$ H8 ! $rf$Y( J!t !B, uf8$B@Y $Y( J!D a & 0  D@Y !B,@D"L @ ,@0"L 0 0 ,`"L @  ,F"L H$ $, AN1B 88Y 0N!` `,@$HHyXJ!1B B Y0B! HxXJ! 1B 8D8Y !B,88u$B@Y H! HY P!@PY$^( J!1B B Y 0B!` `,p, $<}, J! U0 `!@B  - 2tF`(!(b(@b(aB0B@BL B0 @)< D  g@00B0@2B` ! # )< B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0L 0 f(@3B 0@2B` H!$ # *< B0 @+< D  @c2B@B2B @!! #`+ 0 b @1BP0B(B 0BD @@! 0! a! H@x! `!0 0 , 8 )&p0  8N8Y$W( J!p (C a! @By! !, a! ,$V( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $V( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$U( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D H#9h! @! H `cH&@1B (X )!@P X(! ! #r !PT ( ,X #) .p\Bp\,8`,$U( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$T( :nI7$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* *"VJ!2B @2B BP $01B H!$ $(D 3Y! P@!( (,@W P(s p44 X@!, ,,_ 0L0Y$,T( J! ( < A! , 0L0Y 8!8Y@$HbXJ! A!p p,@f D!@Y !B,? 0L0Y8$B@Y H@! HY$( J!0B B 0B Dp s ! , @s` !0 0 ,`2L H$#@b P@PX P!( `.8 X, X, ! N&D0 " 2L $H# &0L0 &@1B (X (!P ,/d *`T `,p, , PJ!Br J!d A!p p,@/d D B ,D= 0L0Y8 $B@Y $d( J!$ ! /d B#@fD0L 0 8 D ! @ N& 0 @2L H@$# P &(0 P`3B @@Y &D0  0"0Y 8!8Y H! HY J!B J!3B@B3BB 3BD03B p i  @! f  P!( `g @@Y !`D `,Pp, P,ȣ PJ!B J! A! , ` @B@Y 0a@!` `,@@$H PJ! 0B D@Y 0AD!` `,p, #ڨ J!B3B ,c @!Y 0B!0Y 8@!8Y$l ( J! 1B D1B BP ! ,$dQ( J! A!   , c B Y 0AD!` `,$DQ( J!1B @Y0@! HXPJ! 0B D@Y 0AD!` `,p, # J!0B B Y 0AB!` `,  J!0B @Y 0Q@!` `,p, #v J! 2L D B , c B! Y 0D!0Y 8B!8Y$$ ( J!1B @ 1B DP ! ,$P( J!T A! ,@c D@Y 0Q@!` `,$tP( J!1B B Y0B! HPJ!0B @Y 0Q@!` `,p, #" J! 0B D@Y 0QD!` `,  J!0B B Y 0C!` `,  J!0B @Y 0A@!` `,p, # J!T !  0E! ! @Cy@! A! , 0L0Y$O( J! 1B Dp8 s A! ,  0L0Y$O( J!B0B @ 3BDB3BB00B `X 0A!` `, ʧ J!1B @1B Bp q  ! #n !0 0 , f H! HX0!p$B8Y$( J!1B @1B BP !   ,$O( J! ! ,$O( J!B3B ,@f D!@Y !B,`,p,, 32> J! !B,`,(X !@ #c @P0 H!$ H8 ! $rf$N( J!D !B, uf8$B@Y $tN( J! !!  p PC a &0  @Y @! # ! `c0B @@X 0Q!` `,  J! 1B D1B @p q  ! #n !0 0 , c H! HX0!p$B8Y$( J! 1B D1B @P ! ,$M( J! !   ,$M( J!1B, c B! Y ! B ,`,p,, 3>> J! !B,`,XX !@ #@c DP$ H!$ H8 ! $rf$M( J!\ tf$M( J!D a &0  @Y !B,@ a & 0  D@Y !0 B0 ,@ D"L @  ,A"L H$ $, N1B 88Y 0N!` `,@$HhYXJ!1B @Y0@! HXJ!1B 8B8Y ! B ,` @Y0N!p*H, ,@$N( J!1B B Y 0B!` `,p, $$,}, J! U0 `!@B  - 0zF`(!(f(@e(e0@L XD @8@0(#Jy@@J!yH  L D  `c$2B0B@ !@ # + B `b3BH 0B$D0B A! 0@! `!0 Hx! a! , 8 )&p0  8N8Y$K( J!p (C a!  @Dy! !, a! ,$J( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $I( J!0B @p q4 a!  @Dy! !, `!0 0 ,$I( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( `!D @#9h! `! H P%X! @!0L 0L, 0L0Y$,I( J!0B 8@8Y 0O!` `,d$`( J!L a! 8C ! @!0 g 3B H HX H!$ Hx! x!< #r P!( `( XP, # ) "DBpD,8`,$H( J!L BB,`b `X @! @!VL H$B$,( 0L` `,p, @P@Y H! HY P!@PY$ J!  &0 B01B@0L @  d HpH i  P!( `c( !D @+` $H ,`c 0&0Y 8"!8Y H"! HY  J!B J!0B B Y 0B!` `,p, # J!1B ,`f !`X 0B!0Y 8!8Y$( J!3B B03B P H!$ $,H$A( J! A! ,`f `X 0B!` `,$A( J!B3B B Y0B! HHPJ!0B B Y 0B!` `,p, # J!0B B Y 0B!` `,  J!1B B Y 1B! ,  B R  ! #a @@X H !$ $,G 0L0Y8!H( PJ!0B B Y 0B!` `,  J!l A! , 0L0Y 8!8Y@$Hx1XJ!T ! `c0B @@X 0!` `, Z J!B3B @ B3B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$( J!3B @ 3B DP ! ,$<@( J! ! ,$4@( J! 1B@ , c B! Y !B,`,p,, 3*> J! a & 0  D@Y ! 0B! !B  &0 0  ! B,@D"L @  ,A"L H$ $, H "L P( (,@Q0B 88Y 0N!` `,@$H9XJ!0B B Y 0C!` `, n J!0B @Y 0@!` `,p, $}, J! U0 `!@B  - 0vF`(!(f(@f(e0L 0 0 *@ @ d B 2BDB0B 0! # *@ B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0L 0 c(@2B 0@0B` H!$ # + B @bD@3BP0B(@0B @!0 0! H`!$ Hx! a! , 8 )&p0  8N8Y$=( J!p (C a!  @Dy! !, a! ,$=( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $<( J!0B @p q4 a!  @Dy! !, `!0 0 ,$<( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D H#9P! @! H `gH&@3B (X (!@P X(! x!< #r !PT ( ,X #) .p\Bp\,8`,$;( J!L @B, b B Y !  D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$\;( J!0B @0B BP$ $03B H!$ $(D 3Y! P@!( (,@AP P(s p44 X@!, ,,DX 0L0Y$:( J! ( < A! ,D 0L0Y 8!8Y@$HH#XJ!t A!p p,@d D!@Y 0O!` `, @D!@Y $D( J!0B @Y 0@!` `,p, #* J!B2B ,@g D!@Y 0B!0Y 8D!8Y$( J!3B @3B BP !   ,$:( J! A! , g B Y 0@!` `,$9( J! 3B D@Y0D! HPJ!0B @Y 0@!` `,p, #ڜ J!0B B Y 0B!` `, Ҝ J! 0B D@Y 0E!` `,p, #Ɯ J! L @B, g B! Y 0@!0Y;$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* Y"x 8B!8Y$T( J! 3B D3B @P ! ,$49( J!T A!   ,g @Y 0E!` `,$9( J!3B B Y0B! H(PJ! 0B D@Y 0E!` `,p, #r J!0B @Y 0A!` `, j J!B2B Bp q8 A!   , 0L0Y$8( J!0B @Y 0A!` `,p,@, , CF J! A! ,D 0L0Y$|8( J! 0B D@Y 0D!` `,p, #2 J! ! 0A! ! @Cy@! A!   ,D 0L0Y$48( J!3B @pp s A! @dD00B `X 0!` `,  J!3B @3B Bp q  !! #n !0 0 , d H! HX0!p$B8Y$( J!3B @3B BP !   ,$7( J! ! ,$7( J!B2B ,@d D!@Y !!B,`,p,, 3> J! ! @cD0B @Y 0A!` `,  J!3B B 3B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$( J!3B B 3B DP ! ,$6( J! ! ,$6( J! 1B@ ,c @!Y !B,`,p,, 3> J! !! B ,`,tX !@ # g BP0 H !$ H8 ! $rf$6( J! !! B , uf8$B@Y $5( J! !B,`,sX !@ #@g DP0 H!$ H8 ! $rf$5( J!D !B, uf8$B@Y $5( J! a &0  B Y !! B , B"L @ ,`c !`X @! #b 88Y 0N!` `,@$HXJ!1B B Y0B! H8dXJ! 1B 8D8Y !!B, c B! Y0N!pbH, ,@, S J! 1B D@Y 0D!` `,p, $T}, J! U0 `!@B  - 2xF`(!(a(@a(`0@L 0 0 -@ @ g B 3BD1B ! # -@ B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0L 0 d(@@2B 02B` H!$ # cB L D  @b0B@0B00B H@!$ 0! a! HBx! P`!( (,P 8 )&p0  8N8Y$3( J!p (C a!  @Dy! !, a! ,$l3( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $|2( J!0B @p q4 a!  @Dy! !, `!0 0 ,$L2( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( @!D H#9! @! H `bH&@A1B (X )!@P X(! ! #r !PT ( ,X #) .p\Bp\,8`,$|1( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$1( J!1B @1B BP $01B H!$ $(D 3Y! P@!( (,@V P(s p44 X@!, ,,^ 0L0Y$0( J! ( < A! , 0L0Y 8!8Y@$HXJ! A!p p,@g D!@Y 0N!` `, @D!@Y $( J!1B @Y @p s` ! ,  B 2L D#`b `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X1B " X "!D ,@/d $`H `,Xp, X,_ PJ!BƗ J!L A!p p, /d BB,D= 0L0Y8 $B@Y $( J! A!   , 0L0Y 8!8Y$4/( J!3B, b B! Y 0@!0Y 8B!8Y$L( J! B1B DB1B @P ! ,$.( J! A!   ,b @Y 01D!` `,$.( J!1B B Y0B! HPJ! 0B D@Y 01D!` `,p, #J J!0B @Y 01@!` `, B J!0B B Y 0AB!` `,p, #6 J! 2L D B ,b @!Y 0D!0Y 8@!8Y$( J!B1B B B1B DP ! ,$.( J! A! ,@b D@Y 0AB!` `,$-( J!1B @Y0@! HPJ!0B B Y 0AB!` `,p, # J! 0B D@Y 0AD!` `, ږ J!0B @Y 0A!` `, Җ J! A! 0C! A!  @Ey@! A! , 0L0Y$t-( J!0B Bp s| !  g@00B `X 01!` `,  J!1B B1B @p q  ! #n !0 0 , g H! HX0!p$B8Y$( J!B1B BB1B @P !   ,$,( J! ! ,$,( J!3B,@g D!@Y !B,`,p,, 3> J! !! @doP$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* FU"D0B B Y 0AB!` `, . J!1B @ 1B Dp q  ! #n !0 0 , d H! HX0!p$B8Y$( J!B1B @ B1B DP ! ,$+( J! ! ,$+( J! 2B@ , d B! Y !B,`,p,, 3:> J! ! B ,`,HYX !@ #b @P0 H!$ H8 ! $rf$T+( J! ! B , vf8$B@Y $<+( J! !B,`,8XX !@ #@b DP$ H!$ H8 ! $rf$*( J!< tf$*( J!$ a &0  B Y !B, B "L D   ,`d !`X D! #)D @  , b H HX H0!$ H@! B$1B 88Y 0N!` `,@$HXXJ!1B @Y0@! HvXJ!1B 8B8Y ! B ,88$B@Y $+( J!1B @Y 0@!` `,p, $}, J! U0 `!@B  - 0zF`(!(f(@f(e0L 0 0 (D @ d B B2BDB0B ! # cB L D  `bB3B@0BB00B A!  0D! a! H@x! a! , 8 )&p0  8N8Y$)( J!p (C a!  @Dy! !, a! ,$(( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $ (( J!0B @p q4 a!  @Dy! !, `!0 0 ,$'( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D H#9`! @! H `gH&@3B (X )!@P X(! ! #r !PT ( ,X #) .p\Bp\,8`,$ '( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$&( J!0B @0B BPl $03B H!$ $(D 3Y! P@!( (,@V P(s p44 X@!, ,,^ 0L0Y$4&( J! ( < A! , 0L0Y 8!8Y@$HXJ! A!p p,@d D!@Y 0N!` `, @D!@Y $( J!0B @Y 0@!` `,p, #Ғ J!2B ,@g D!@Y 0B!0Y 8D!8Y$( J!3B @3B BP !   ,$T%( J! A! , g B Y 0@!` `,$4%( J! 3B D@Y0D! HPJ!0B @Y 0@!` `,p, # J!0B B Y 0B!` `, z J! 0B D@Y 0E!` `, r J! ! 0A! ! @Cy@! A!   , 0L0Y$$( J!3B @p s !! @dD00B `X 0!` `, B J!3B @3B Bp q  ! #n !0 0 , d H! HX0!p$B8Y$( J!3B @3B BP !   ,$ $( J! ! ,$$( J!2B ,@d D!@Y !B,`,p,, 3R> J! !B,`,EX !@ #g @P0 H!$ H8 ! $rf$|#( J!4 !B, vf8$B@Y $d#( J! a & 0  D@Y !B,@D"L B ,`b `X 0!0 @!B B1B 88Y 0N!` `,@$HXJ!1B @Y0@! HxnXJ! 1B 8D8Y !B,88$B@Y $"( J!1B @Y 0@!` `,p, $t|, J! U0 `!@B  - 0zF`(!(f(@e(e0L XD @8@0(#Jy@@J!yH  L D  `c$2B0B@ !@ # + B `b3BH 0B$D0B A! 0@! `!0 Hx! a! , 8 )&p0  8N8Y$!( J!p (C a!  @Dy! !, a! ,$l!( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $| ( J!0B @p q4 a!  @Dy! !, `!0 0 ,$L ( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( `!D @#9h! `! H P%X! @!0L 0L, 0L0Y$( J!0B 8@8Y 0N!` `,$,( J! a! 8C@! @!0 g 3B H HX H!$ Hx! x!< #r P!( `( XP, # ) "DBpD,8`,$$( J!L BB,`b `X @! @!VL H$B$,( 0L` `,p, @P@Y H! HY P!@PY$( J!3B B03B P H$@3B$ X!, ,(D |W$$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "3Y C!l @!D D,  "Ds p44 @! H  H, 0L0Y$D( J! ( D $ B# Qx! A! , 0L0Y$( J!BNL B #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0*!` `,p,. @P , 3 J!BNL B #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0!*!` `,p,. @P , 32 J!BNL B #`. 0 8 @1 `tNL H$B`X$ @L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0*!` `,p,. @P , 3ƍ J!BNL B #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0*!` `,p,. @P , 3Z J!  &0 B01B@0L @  d HpH i  P!( `c( !D @+` $H ,`c 0&0Y 8"!8Y H"! HY& J!B* J!0B B Y 0B!` `,p, # J!1B ,`f !`X 0B!0Y 8!8Y$( J!3B B03B P H!$ $,H$( J!T A! ,`f `X 0B!` `,$( J!B3B B Y0B! HPJ!0B B Y 0B!` `,p, #Ό J!0B B Y 0B!` `, ƌ J!1B B Y Bp s< @!0 0 , 0L0Y 8! B&p0  8N8Y$T( J!0B B Y 0B!` `,( 8Np p, # J! A! , 0L0Y$$( J!l A! , 0L0Y 8!8Y@$HxXJ! ! `c0B @@X 0!` `, j J!B3B @ B3B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$( J!3B @ 3B DP ! ,$\( J! ! ,$T( J! 1B@ , c B! Y !B,`,p,, 3*> J! a & 0  D@Y ! 0B! !B  &0 0  ! B,@D"L @  , b H HX H$s7 P &(0  P!@PX X!, ,,`X X,BP! @p!P # )D "D D,@-@ $ HB H, H"0"L &0L 0L,`˜ &@"L (@P @P,(P0B 8*8Y 0O!` `,@$HXJ!0B B Y 0B!` `, ^b J!0B @Y 0A!` `,p, $|, J! U0 `!@B  - 1hF`(!(d(@d(c0L 0 0 .D @ a B 0BDB3B P! # .D B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0L 0 `(@@0B 0@3B` H!$ # /D B0 @(H D  @g3B@B3 B @!! #`(H XD 8 B$0(CyС*J#R yD L @ f@0@3B 0@3B` H!$ #@)H P(0 *H B e(@ 2BDB3B  @P!! #`cL H$ @b$B2B@ 0BD0B A! 0B! `!0 Hx! H`!$ $,H 8 )&p0  8N8Y$( J!p (C a! @@y! !, a! ,$( J!  B ,D0B@  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a!  @Dy! !, `!0 0 ,$( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D H#9! @! H `eH&@2B (X (!@P X(! @! #r `!PT ( ,X #) .p\Bp\,8`,$( J!L @B, b B Y a!  !D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$d( J!3B @3B BPd $02B H@!$ $(D 3Y! P@!( (,@P P(s p44 X@!, ,,X 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HXJ! A!p p,@a D!@Y 0N!` `, @D!@Y $,g( J!0B @Y 0@ !` `,p, $\( J!0B B Y 0B !` `,p, $D( J! 0B D@Y 0E !` `,p, $,( J!0B @Y 0!A !` `,p, $( J!0B B Y 01C !` `,p, $( J! 0B D@Y 0AE !` `,p, $( J!0B @Y 0@ !` `,p, #f J!0B ,@e D!@Y 0B!0Y 8D!8Y$d( A$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* &"J!2B @2B BP a!   ,$|( J! A! , e B Y 0@ !` `,$\( J! 2B D@Y0D! HHwPJ!0B @Y 0@ !` `,p, # J!0B B Y 0B !` `,  J! 0B D@Y 0D !` `,p, # J! L @B, e B! Y 0@!0Y 8B!8Y$( J! 2B D2B @P a! ,$( J!t A!   ,e @Y 0D !` `,$( J!2B B Y0B! HtPJ! 0B D@Y 0D !` `,p, # J!0B @Y 0@ !` `,  J!0B B Y 0B !` `,p, # J!  L D B ,e @!Y 0D!0Y 8@!8Y$Է( J!2B B 2B DP a! ,$( J!, A! ,@e D@Y 0B !` `,$( J!2B @Y0@! H(rPJ!0B B Y 0B !` `,p, #F J! 0B D@Y 0D !` `, > J!0B @Y 0A !` `,p, #2 J! L BB,@e D!@Y 0B!0Y 8D!8Y$( J!2B @2B BP a!   ,$ ( J! A! , e B Y 0A !` `,$ ( J! 2B D@Y0D! HoPJ!0B @Y 0A !` `,p, #ކ J!0B B Y 0C !` `, ֆ J! 0B D@Y 0!D!` `, Ά J!0B @Y 0@ !` `,p, #† J! ! @0D! ! @Ay@! @!0 0 , 0L0Y$T ( J!2BB H A! ,% 0L0Y$4 ( J!1B B 0B D@Y 0D !` `,  J!B1B @0B B Y 0C !` `,  J! 1B D0B @Y 0!A !` `, v J!B2B B 0B D@Y 01E !` `, j J!2B @0B B Y 0AC !` `, ^ J! 1B D0B@0BB00B `X 0 !` `, J J! 2B D2B @p q  A! #n @!0 0 , a H! HX0!p$B8Y$T( J! 2B D2B @P a! ,$ ( J! A!   ,$ ( J!0B, a B! Y A! B ,`,p,, 3> J! ! gB 0B D@Y 0D !` `, օ J!2B @2B Bp q  ! #n @!0 0 , g H! HX0!p$B8Y$$( J!2B @2B BP a!   ,$4 ( J!t A! ,$, ( J!3B ,@g D!@Y !B,`,p,, 3V> J! ! @fD0B @Y 0@ !` `, b J!2B B 2B Dp q  ! #n @!0 0 , f H! HX0!p$B8Y$( J!2B B 2B DP a! ,$L ( J!D A! ,$D ( J! 3B@ ,f @!Y !B,`,p,, 3> J! a!  e@0B B Y 0C !` `,  J!2B @ 2B Dp q  A! #n @!0 0 , e H! HX0!p$B8Y$İ( J!2B @ 2B DP a! ,$d ( J! A! ,$\ ( J! 2B@ , e B! Y A!B,`,p,, 3&> J! A! B ,`,X A!@ #e @P0 H@!$ H8 ! $rf$( J!T A! B , wf8$B@Y $( J!$ a &0  B Y A!B, B "L D   ,@D D0"L 0 0 ,`@ "L @  ,C"L H$ $, J"L P( (,@R"L X, ,,`] 1B "P ` & H0  $@X !0LB0L,@BL$ !@P PC !PTBPT,f ,!X 0*!0Y 8,!8Y$( J!"L @ , f B! Y QA! # !  p C @!0 B0 ,e @!@X 0!0Y 8!8Y$L( J!"L @ , e B! Y @! # !!  8D0! ` &0 0  `X @ ! B ,`  H!$ Hx0! P` &(0  P@PX X!,B,,@R, !D X"0! ` & H0  $@X !0LB0L,@ L$ !pP p,D: 0L0Y8$ H 3>j> J!1B @Y0@! H(XJ!1B 8B8Y A! B ,88$B@Y H! HY$|( J!1B @Y 0@!` `,p, $|, J! U0 ` !@B  - 2lF`(!(b(@a(a0L XD @8@0(#Jy@@J!yH  L D  ``$@0B2B@ !@ # ,H B0 `-H 0 g 3B D02 B` @! #-H @XD 8@$0(CRyJC$ !yP 0L 0 f(@3B 02B` ! # .H B0 @/H D  e2B2B@P HP!P$ #`+ 0 b @1B@0B B 0BD H@!$ 0! P`!( Hx! `!0 0 , 8 )&p0  8N8Y$\( J!p (C a! @@y! !, a!   ,$<( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL[m$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $L( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( `!D @HD$8! @!0L cL(P1B *X 0*!PT X*! ! #r !`X ( .\ #) 0`Bp`,8`,$L( J!L @B,@b D@Y ! 1B!0VL 0 B0 ,( 0L` `,p, @P@Y HB! HY P!@PY$( J!1B @ 1B DP $0@1B H!$ $(D 3Y! P@!( (,@P P(s p44 X@!, ,,X 0L0Y$t( J! ( < A! , 0L0Y 8!8Y@$HHXJ!T A!p p, ` B! Y 0N!` `, @B!@Y $DQ( J!0B @Y 0A !` `,p, #r J! 0B@ , b B! Y 0D!0Y 8B!8Y$( J!1B @ 1B DP ! ,$( J!| A! ,@b D@Y 0A !` `,$t( J!B1B B Y0B! HMPJ!0B @Y 0A !` `,p, #" J! 0B D@Y 0E !` `,  J!0B B Y 01B!` `,  J!0B @Y 0A !` `,p, # J!| a!  D0B! a! ` @x@! @@!  ,@ 0L0Y$( J!0BB "H$ !! ``0B @@X 0 !` `,  J!B1B B B1B Dp q  ! #n !0 0 , ` H! HX0!p$B8Y$( J!1B B 1B DP ! ,$4( J!\ ! ,$,( J! 0B@ ,` @!Y !B,`,p,, 3> J! ! B ,`,xX !@ # b BP0 H!$ H8 ! $rf$( J! ! B , wf8$B@Y $( J!l a &0  @Y !B, @ "L D   ,`g !`X D! #)D @  , f H! HX @P!H #@)D P( (,`e X!`XX P!X( # )D "D D, " "L $ H  H,@$01B 8&8Y 0N!` `,@$HXJ!1B @Y0@! HxXJ!1B 8B8Y ! B ,88 $B@Y H! HY$( J!1B @Y 0@!` `,p, $t|, J! U0 ` !@B  - 0zF`(!(f(@f(e0@L XD @8@0(#Jy@@J!yH  L D  `d$@2B@0B@ !@ # cB0L 0 b  B3BD0B0B@ A! 0B! `!0 Hx! H`!$ $,H 8 )&p0  8N8Y$D( J!p (C a!  @Dy! !, a! ,$$( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $4( J!0B @p q4 a!  @Dy! !, `!0 0 ,$( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @R@D$8h! !0L bPL(X! @!PT PT, 0L0Y$l( J!0B 8@8Y 0N!` `,$( J! ! @T8D ! @!0 g 3B H HX H@!$ Hx! x!< #r P!( `( XP, # ) "DBpD,8`,$( J! L D B ,`b `X @! @@!VL H$B$,( 0L` `,p, @P@Y H! HY P!@PY$|( J! 0B D00B P H$3B$ X!, ,(D 3Y C!l @!D D,  "Ds p44 @! H  H, 0L0Y$( J! (  $B# Qx! A!   , 0L0Y$( J! BNL D #`. 0 8 @1 `tNL H$B`X$ @L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0* !` `,p,. @P , 3{ J! BNL D #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0* !` `,p,. @P , 3{ J! BNL D #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0+ !` `,p,. @P , 3"{ J! BNL D #`. 0 8 @1 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ?"H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 01* !` `,p,. @P , 3z J! BNL D #`. 0 8 @1 `tNL H$B`X$ @L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  1H`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X 0!* !` `,p,. @P , 3Jz J!  & 0 D02B@0L @  d HpH i  P !( `d( !D @+` $H ,`Bd 0&0Y 8"!8Y H"! HYz J!Bz J! 0B 8D8Y 0O !` `,@$HH PJ! 0B D@Y 0E !` `,p, #z J! 2B@ ,`g !`X 0D!0Y 8!8Y$( J! 3B D03B P H!$ $,H$( J!, A!   ,`g `X 0E !` `,$( J! 3B D@Y0D! Hh.PJ! 0B D@Y 0E !` `,p, #y J! 0B D@Y 0E !` `, y J! 1B D@Y 1D!   ,@ D@R @! #a @@X H@!$ $,B$ 0L0Y8!H8 PJ! 0B D@Y @!0 0 ,% 0L0Y8!H PJ! 0B D@Y @!0 0 ,) 0L0Y8!H PJ! 0B D@Y 0AD!` `, ny J! A!   , 0L0Y 8!8Y@$HlXJ!t A!   ,) 0L0Y$( J!1B @B2BB 2BD00B `X 0 !` `, :y J!3B @3B Bp q  ! #n !0 0 , d H! HX0!p$B8Y$L( J!3B @3B BP !   ,$( J!| ! ,$( J!2B ,@d D!@Y !B,`,p,, 3> J! a &0  B Y !  0D! !B  &0 0  ! B, B"L @  ,B"L H$ $, I0B 88Y 0AN!` `,@$HtXJ! 0B D@Y ! ,D 0L0Y8@!HlPJ!0B B Y 0AB!` `,p, $|, J! U0 `!@B  - 1fF`(!(f(@e(e0L 0 0 -L @ b B B1BD2B ! # .L B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0@L 0 a(@0B 02B` HP!$ # /L B0 @/L D  @`B0B@2 B @!! #`(P XD 8 B$0(CyС*J#R yD @L @ g@03B 02B` H!$ #@)P P(0 )P B f(@ B3BD2B  @!! #`e2B@2BL @ @bD3B@0B B00B H@!$ 0! P`!( Hx! a! , 8 )&p0  8N8Y$( J!p (C a!  @Dy! !, a! ,$( J! B,B 0BD '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( `!D @@D$8 ! `!0L PL( ! `!PT `T,8! `!p\ p\0@! @!d d,D 0L0Y$( J!2B@H  A!   ,D) 0L0Y$( J!B2B @0B B Y 0qB !` `, ^v J! 2B D0B @Y 0@ !` `, Rv J!1B B 0B D@Y 0D !` `, Fv J!1B @0B B Y 0B !` `, :v J! 2B D0B @Y 0@ !` `, .v J!2B B 0B D@Y 0D !` `, "v J!B2B @B1BB 1BD00B `X 0A !` `, v J!B3B @B3B Bp q  ! #n !0 0 , b H! HX0!p$B8Y$( J!3B @3B BP !   ,$( J! ! ,$( J!1B ,@b D!@Y !B,`,p,, 3 > J! ! @fD0B @Y 0a@ !` `, u J!B3B B B3B Dp q  ! #n !0 0 , f H! HX0!p$B8Y$\( J!3B B 3B DP ! ,$( J! ! ,$( J! 3B@ ,f @!Y !B,`,p,, 3r> J! a!  a@0B B Y 0B !` `, &u J!B3B @ B3B Dp q  A! #n !0 0 , a H! HX0!p$B8Y$,( J!3B @ 3B DP ! ,$( J! ! ,$( J! 0B@ , a B! Y A!B,`,p,, 3ڨ> J! !!  `B0B @Y 0@ !` `, t J!B3B B B3B Dp q  ! #n !0 0 , ` H! HX0!p$B8Y$( J!3B B 3B DP ! ,$( J!t ! ,$( J! 0B@ ,` @!Y !B,`,p,S9$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* N", 3B> J! !  g@0B B Y 0B !` `, >t J!B3B @ B3B Dp q  ! #n !0 0 , g H! HX0!p$B8Y$̇( J!3B @ 3B DP ! ,$( J!D ! ,$( J! 3B@ , g B! Y !B,`,p,, 3> J! ! B ,`,X !@ #f @P0 H!$ H8 ! $rf$t( J! ! B , wf8$B@Y $\( J!T a &0  B Y !B, B "L D   ,@ D0"L 0 0 ,`@"L @  ,AE "L H$ $, K"L P( (,`e X!`XX P!X( # )D "D D,@e $!@X "!D #`)D &0L 0L,d (!X `'!L #d *P\ !`XB`X,`,X !@\ #f 0P0 Ȁ!d H28 ! $rf$$( J! !B, wf8$B@Y $ ( J! a &0  B Y ! B ,  B ! p `C ` &0 0  `X @@! B ,`@  H!$ $C P!(B(,`` X!`XX 0!0Y 8!8Y$|( J!"L B ,@` D!@Y QC! # ! p C !0 B0 ,g @!@X 0!0Y 8!8Y$,( J!"L B ,@g D!@Y B! # !p p,D: 0L0Y8$ H 3U> J!1B B Y0B! HXJ! 1B 8D8Y !B, f B! Y0N!pjH, , C J! 1B D@Y 0D!` `,p, $|, J! a! 8B! A!  `g3B @@X @P! Hx! !@ #r H!$ @( PH( #`) X,Bp,,8`,$( J!BL @B, b B Y !  QD!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$( J!3B @3B BP $0@3B H!$ $(D 3Y! P@!( (,@AQ P(s p44 X@!, ,,DY 0L0Y$ ( J! ( < A! ,D 0L0Y 8!8Y@$HEXJ!$ A!p p,@b D!@Y 0N!` `, @D!@Y $t+( J!< ! bB 0B D@Y 0AD !` `, :q J!B3B @B3B Bp q  ! #n !0 0 , b H! HX0!p$B8Y$( J!3B @3B BP !   ,$( J! ! ,$( J!1B ,@b D!@Y !B,`,p,, 3> J! A! #@`D3B@01B p q@ @! B , f @3B P@PX X!, , A3B $@X,$@HBL(PA3B *X !`X BX*pA3B .X .!\ #f 0a`B f`2A3B 4@X4A3B 6!lBfl80Bt,ft<A3B >X 0$0}#f @P@YH-$BTB3B B Y !  DBB3B @Y !0 B0 , @@3B @` B f @3B P@PX X$X(#@f $@X$$@HBL(PA3B *X P!`X BX*pA3B .X @!`B`,`.A3B 2adB@fd4A3B 6`X $l#f <X$`xB|LpB3B 8N8Y @! D8NB3B HR HY P!B, HRB3B BbB@fD0@3B `X $ # f H HXP8$$B(A3B " X ! H BH"0A3B &`X !@PB@P,`P&PA3B *PaTBfT,pA3B .X $\#@f 4@X($hBl8A3B :X `!xBx,Cx:A3B >X >!| #f 0L`bBfNB3B @P@Y H$H# f B Y!$0B@3B @@X A!B,A@@3B H HX H !$ #@f P`(B`f(A3B " X $D#f (X$`PBT,pA3B .X !`B`,B`.A3B 2 X 2!d #@f 4ahB`fh6A3B 8X8A3B :!tBft<1B >X0e$p|B #F> J!B3B B B3B DP ! A!01B`0 , ` H! HX 0@!0Y 8!8Y @!@Y $T( J!B3B B B3B DP, ! H@x! ! # H@!$ $,DI( 0L0Y 8!8Y@$H PJ!0B B Y 0qB !` `,p, $( J! 0B D@Y 0D !` `,p, $( J!0B @Y 0@ !` `,p, $( J!0B B Y B ! , 8a!p p, $( J! 0B D@Y D !   , 8A!p p, $( J!0B @Y @ ! , 8!!p p, $d( J!0B B Y 0AB !` `,p, #&n J! 1B@ ,f @!Y 0D!0Y 8@!8Y$x( J!3B B 3B DP ! ,$( J! A! ,@f D@Y 0AB !` `,$( J!B3B @Y0@! HPJ!0B B Y 0AB !` `,p, #m J! 0B D@Y 0AD !` `, m J!0B @Y 0a@ !` `,p, #m J! L BB,@f D!@Y 0B!0Y 8D!8Y$Lw( J!3B @3B BP !   ,$,( J! A! , f B Y 0a@ !` `,$ ( J! B3B D@Y0D! HPJ!0B @Y 0a@ !` `,p, #nm J!0B B Y 0aB !` `, fm J! 0B8$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* L" D@Y 0D !` `,p, #Zm J!0B, f B! Y 0@!0Y 8B!8Y$ v( J! 3B D3B @P ! ,$d( J! A!   ,f @Y 0D !` `,$D( J!B3B B Y0B! HPJ! 0B D@Y 0D !` `,p, # m J!0B @Y 0@ !` `, m J!0B B Y 0B !` `,p, #l J! 0B@ ,f @!Y 0D!0Y 8@!8Y$t( J!3B B 3B DP ! ,$( J!L A! ,@f D@Y 0B !` `,$|( J!B3B @Y0@! HPJ!0B B Y 0B !` `,p, #l J! 0B D@Y 0D !` `, l J!0B @Y 0@ !` `,p, #l J!3B ,@f D!@Y 0B!0Y 8D!8Y$s( J!3B @3B BP !   ,$( J!  A! , f B Y 0@ !` `,$( J! B3B D@Y0D! HPJ!0B @Y 0@ !` `,p, #Bl J!0B B Y 0B !` `, :l J! 0B D@Y 0QD!` `, 2l J!0B @Y 0A@ !` `,p, #&l J! U0 `@ !@B  - 2pF`(!(b(@b(a0L 0 0 +P @ f B B3BD2 B ! # ,P B ‡XD D8@0(CPyHDЁ"J#@ yP$ 0@L 0 e(@2B 02B` HP!$ # -P B0 @-P D  @dB2B@2B @!! #`cpH@c$H@cD1BL @ `b@1BH0B$0BB A!  0D! @`! Hx! `!0 0 , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D H@"y ! X@#x ! $ЈHq  $Lq !pP p,D: 0L0Y8$ H 3K> J!0B @Y 0A!` `, nj J! 3B D0B B Y 0C!` `, bj J!0B @ 0B D@Y 0E!` `, Vj J!B0B BB3B@ 3BD00B `X 0!` `, Bj J!1B B1B @p q  ! #n !0 0 , f H! HX0!p$B8Y$|n( J!1B B1B @P !   ,$ ( J! ! ,$( J!3B,@f D!@Y !B,`,p,, 3> J! a! @eD0B B Y 0B!` `, i J!1B @ 1B Dp q  A! #n !0 0 , e H! HX0!p$B8Y$Lm( J!1B @ 1B DP ! ,$$( J! ! ,$( J! 2B@ , e B! Y A!B,`,p,, 3j> J! !!  dB0B @Y 0A!` `, Zi J!1B B 1B Dp q  ! #n !0 0 , d H! HX0!p$B8Y$l( J!1B B 1B DP ! ,$<( J! ! ,$4( J! 2B@ ,d @!Y !B,`,p,, 3ҙ> J! a & 0  D@Y D! #)D @ ,@"L B , D B0"L 0 0 ,`"L @  ,AD"L H$ $, J3B PPP X` &,0  X`XX !DBD,`A[D ! H  %/" HX@`gH&@3B (  P7 ` &PT0  *X !`XB`X,®X* !p\ \( C !` # !d h2x`! !hBh,`d 6!`X 04!0Y 86!8Y$( J! "L D   ,d @!Y E! # ! 8B0! ` &0 0  `X @! B ,`  H@!$ Hx0! P` &(0  P@PX X@!,B,,@R, !D D, " 2L $H#`b &`X &!0L .P (@P XP& ! T&PT0 *`2L ,X# @ &p\0 .1B 0X 0!` , /P 2`d `,p, ,؞ PJ!Bg J!1B @Y !  aD!1B , 8D!8Y @B!@Y $ġ{, J!p C ! ,@ 1BD1BB02L  # cHL P( H(4 ! X N&,0 X2L "XD# & H0 $01B @&@Y &@P0  0(0Y 8$!8Y H$! HYRg J!BVg J!1B 8@8Y  & 0  D!@Y 0N!` `, @D!@Y $|( J!1B B Y AB! c@ L D  p (C  T&0 0    P7D @!  ,@@KH0X8! P!p( p,D: 0L0Y89$B@Y $,( J! !p p,D: 0L0Y8E$B@Y $|,( J!\ ! , D  B Y $2B@L @B,8!B@Y $|, J!QE$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* w"$1BB1B @p q !0  0C @!  ,A @`@(Pw< H!$ $,J 0L0Y$Dl( J!1B B Y 0B!` `, jf J! 1B D@Y aD! ' @ !0 0 ,`@1B H@d$ X!, ,, d" !H 8D1 `t  X X," , 8X! !0L 0L,d(P!H PP1 (t $X L( `L `,  f J! !! @!B2BB B2B Dp k !0 B0 ,`, e J! ! ,D 0L0Y 8!8Y@$HXJ!T !p p,D: 0L0Y8$ H 3E> J! H/, @ # b B Y 1B! `c @! 8! H!$ $, AI H$q7, P!( (,@AQ P@PX P`!( (`C X!, ,,DY 0L0Y$D"( p C !p p,88$HXJ! 1B D@Y0D! HXJ!1B B Y 1B! c@<$  K& 0 D01B `X 0!` `,p, $|, J! $T1{, J!BL @ , B#@(T D B ,`, 0 B0 ,, @ B ,`,p,@, *H HR , Cd J!BBL @B,`, d J!0B B Y 0B!` `, d J!` H d J! U0 `!@B  - 1dF`(!(a(@a(`0@0B `X !$0@! 3BD3B@0pH@$f D H1f0 3B BL DXD 8@ 0(CRyHJ#!yP$ 0L 0 d(2B 02B` 1! #@+T D 0 ,T @ @c2B 2B@ !@ #+ @ @b 0BD0B00B @@! 0! P`!( Hx! a! , 8 )&p0  8N8Y$|( J!p (C a!  @Dy! !, `!0 0 ,$\( J! B,@ 0BD  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, AL "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X0.!p`B8Y @ '&0  @P@Y $l( J!0B @p q4 a!  @Dy! !, @`!  ,@$<( J!0 B0 ,0B @$ A!  8D(! H!$ $, AOH0B$, X@!, ,,X1B," @! H `HH&8! @!@P bP*`A1B ,X @-!`X X,! ! #r !p\ ( 0` # ) 2dBpd,8`,$l( J!L @B,@b D@Y ! AC!0VL 0 B0 ,( 0L` `,p, @P@Y HB! HY P!@PY$ ( J!1B @ 1B DP $01B H!$ $(D 3Y! P@!( (,@U P(s p44 X@!, ,,] 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HXJ!, A!   , 0L0Y$L( J! A! @$0D! @!0 @ x@! H@!$ $,M 0L0Y$( J!0B@ H ! #b @!@X 0!0Y 8B8Y$( J!p C ! ,@d D!@Y !B,`c !`X H!$B$, 8D!8Y @B!@Y H! HY P!@PY$( J!B2B @ !  8D0! ! ,$,b( J!2B @ a! # a! 8B! !0 0 , d H! HX0!p$B8Y$|[( J!2B @ 2B DP A! ,$( J!L !! @e D`i  !! `e @!  ,@$[( J! a! @dDB2B Bp q $rf$( J! !p p,D: 0L0Y8$ H 3A> J! B2B@ , /T BB,c @!Y !0 B0 ,`,p,, ,@, S> J!p C A!   ,D 0L0Y$( J!B3B B0B @Y 0@!` `, fa J! 3B D ! ,f @!Y0B!pB8Y$/}, J!p `C !  f Bi74 ! @!03B3BH@3B PP$iW X@!, ,,D[ 0L0Y 8!8Y$4( J! !B,@e D!@Y 0B!0Y 8D!8Y$ l}, J!0B @Y ! ,@g D@Y `!0 B0 ,D 0L0Y8B!B , C` J!3B@3BB HB!@`g$ @@!  ,DC 0L0Y$( J!0B B Y0B! HXpXJ! !   ,D 0L0Y 8!8Y@$HXJ! U0 `@ !@B  - 3xF`(!(f(@e(e02B `X !$0@! L D‹XD @8@0(CPyH@Ё"J#@ yP$ 0L 0 c(2B 01B` ! #@+ D  b3BP0B(00B A! 0@! @`! Hx! a!   , 8 )&p0  8N8Y$L( J!p (C a! @@y! !, `!0 0 ,$,( J!  B ,D0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X0.!p`B8Y @ '&0  @P@Y $<( J!0B @p q4 a!  @Dy! !, @`!  ,@$ ( aBr$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* Z"`@2`ejePS/IA: 45^ais-=Av(@'V(@L(:)D/+˱ѓ`e6=4p0xU`4mf+q $QEQ^bkP TUYyeClM7pMA5.c0g@رZIsUqWau#}^P%^}hrG__D [6@sj XzCLB?C1nDp @gAh$_p"û  %!S!r* ]w #o4Ox,I@$a(c pAA3ܸX4r8ˈk&,P`K$X?n `ρ١ ^ p0?MKrR3U@n٘m _XN]^]4)[ pBm2}h<9! c/_& H2b@f4tlxck:PVh'"Ĭ)?pavc =@3YY:{jhRAXLW׶y$@?z Zq#G~П]ǁ. rP1$PH| ]%237@NnEPjjS1Px_Q)!j@fAp &C:}Qyi`\ø>A "³*t@ 3B~?mn1X ?,2K]BZ%r>@tGi3ѻJ#;sWq֫S!P;(ܵ"%xnX-Q/2+Uadk! Y>P:ߨ$'PhdAH*&@–1:5P;W4`+)p]`5 ^cw زFLeMhKnxqpŬ>bQcd݄1NW(@_vC,{l LRV$-yg >pd}WQٝ~W|Q8I7F>'@vA`|N";%w{40Pi8r/0_lG`!v95Rq`â3x6UwH2t<(&MkbȚmvWa迀XxmFehdp0fOYI0Ia )-;  35WC> :+>J@w1(C?5t[QC)@tsvDk8^?"KY;i40W#r\u!A<4tRP ?Bf1<dz7:0ne9<&_Cu:IURa73@jT`y \4P%t[`#$~Z09wm4-Qb{zH,3pm#xcne1,RPGТ El`K+ Ny<+";c1vkR D_4Df]qRR R@]{ 5,<#$x(P܈`#Hbcң7da1CQIM0 p$O:X@1 a#+QICu'+Y31FޭR@A9@_P@ vB "3 hpUO@̬A0>#Ec1~ xफ़U4? -/CYBѯ# ]X v(8ّ80c V\ HPxZ|"[m`LRk¬ pX;jo %4Q GұGWMzLӍaM"`d9m^/, `vLPcqmIypo%+tN) 4 Ӂ(ߠ;%Nb壝JP0o'҉Lߠ1CH#\]IP>;Q %u~0 `T1 *!q`]fw m _ Yt 6тE1мqFAf>㩙w3IZ3H 1pX<u^px ܂gё& i1!lu }H^7`zqYa4t^ly)43e>ՉQв֛C](_}oBld5`=3쓦'<"1Dy@&O)c/dŀ u c6(ŇW7t1Hհs/L}hQ郕Sk{dUp U.’W]V: -s`=ȩ; }@@ 3?!y06Bv`Yݘ&Wq% t_c(pu`IP! @Jdo7h4B0 P,Hj΀3%ߨ&P%1)= 8@ZDAS`)P? C6_Hprd4C85 {LRIӀrDMM؉ ޫ5:W2 `kl_lXEpq, ~$X p\[IAPZ96W¦qBVѸ˞V}@2㺃Me=`]5AwA`LɈSq aHA\ H %yv[ H}0?5@x7}7.PAp#81XC !pJ#o--jz;YrM E8!03k<0IL Gu_j>oi X!GC58r6KPO E"1 @6p,x00: @;4F> 9HC)e$0`ecT\@X^|R0! %xJQ Dxd)C?Dd9V/D˸d'~k 'DTJjtdϑnPqK4`IP~2ױl c!hNWf TͰ3yyP X1L}Da  S͑ 0]n6N5l(Ę*TQa7^8 'k("bӌAmѶX#QqK=*7\*^2? 07FmJg@m}nD`z%Pֱ!QUQ HlpEbRocQw J =@ x yTt9IJPc hA4/ӲQ R&(Hv+l"0`!GDFX]; @eMT`\{1ig ] ӈB"KgRX3ˈR[ಾob_Ę-#k$ހd=XfX-semB/id2~@W## *9Y{iF#hJ@({/e@DxQn"50 E\A #TpVNsfܲv 'cec?d/01q98mB 5׭џgCd<Ljo 1Yx0 )C壺wbocf8o3\+WO0>]p6"@2 ,?S` {B1PB,p2`v](jA$[` fp:H"SVK p=(K((o Ѓ]X0"` WaX`FO _5גDPE >@@09ie ېHTsh@,_R\:[f 5y H p} qSzLx;BY"mUDبRc3dfQ\^@55=(T#lkbW`$]96( ( "Ax1 {]ϘdyO*hQ\!?ZEE(!a ]"O aeAd&-Q ["HZD_0uuB̬iDIOaD@ˣR -C(hcg }e t,Ὴ9*l}]s9)%) .@M ˷*4 E13̥/ (s*6gYk8!_Ӱ V42 ^< z$`$8D R?A齃B,جx/\#@Xɰ(.:a x\SX!I PDk/y@>7-0`@X)ǫ֌N\4%Q),pmpTҦir6_@` `dk P F%x:\[і4M)?XIs̽CO%W$@=|TMW&Vyno8FoY`x]<#jM(M`Ax˺`Kq@1oAn`|TD=I2p>P\5 ҙ|EFe)#$7 e0]iI4 JDd V wI0p]yi@SslWpڹ=qxYC9i/Ͷa ] pqoh)t у1MFq.w}y a;DFL!P!e\Ï9]Pir ^c.`J] ncdsBުs2 9~̑g u]4Y<=f"#HǕHn{p PrDHC(̆ J>+Po4`HE Qo-GzZ@ᔤAX k.%P=!`i3L V5@rB~d3'PȞbmCi`+Ik\m@Ө0*:Q(鱹8y`qi5,C4 '@a4 kcIɴ͸1֭C:=!RX1Ba@^ u2lmɘPo`<Ŭߡ)b K@B8X4@p7 L y OH@c 3$pcxF Y ?Q1oŽ\ v5U9{a#.a`_4Ӹe(h2J`87 PFÃ'xp0^DžHfq>:E`y@]4.LbMB]R?˝1@q`qP4`06"rRT]idBXuw@ƥeP y'(P/'Ld]CHi;ڥXP~@SP4w9!QO$T@SQ|bEJC > PYh>@o K] @qQc aft,y=K]<`b]],Lit' p 0MZ ck$ I0IcQHCT)M-P`|3 ՑWHx?8.7h*<0<# N)TJ \ `v+ <h/-!`Wz@d A`gsD5i!1vT:R.X^8@0Nca8eY`Y y+@Ho p7d XI|aGuszb`ShM ;ðj^-|=2ބgR- @5)/,P@`p`(<xOR<`Xjs ;ĤJC%|!@{}qژAgCX F,0!# `H,OR)`t-=fZ+sAdɘq@0ړ7Wd BtLX\=E0  Xݹ^Ѓ'Jx^!PJ '$`f>c#xkL7 /Y B-':ۈnr{(z9PNKTX](x `yŗ Eg@dT@_yPdO`70z.]/ $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* <@"J!0 B0 ,0B @$ A!  8D(! H!$ $, AOH0B$, X@!, ,,X1B," `! H `2HH&8! @!@P gP*`3B ,X P-!`X X,! ! #r !p\ ( 0` # ) 2dBpd,8`,$<( J!BL @B,@b D@Y ! QC!0VL 0 B0 ,( 0L` `,p, @P@Y HB! HY P!@PY$ܽ( J!3B @ 3B DP4 $0@3B H!$ $(D 3Y! P@!( (,@AU P(s p44 X@!, ,,D] 0L0Y$d( J! ( < A! ,D 0L0Y 8!8Y@$HHXJ! A!   ,D 0L0Y$( J!\ a! @T0D! `!0 A@ x@! H@!$ $,DM 0L0Y$( J!2B@ H  ! #f @!@X 0!0Y 8B8Y$ļ( J!p C ! ,@` D!@Y !B,`g !`X H!$B$, 8D!8Y @B!@Y H! HY P!@PY$l( J!0B @ !!  8D0! !! ,$LX( J!B2B @ !! # !! 8B!  !0 0 , b H%B 8!8Y$Q( J!0B @ 0B DP a! ,$Ļ( J! ! ,@ B2B D`i ! ,  B0@2B @ !  ,@$Q( J! !B,@c D!@Y ! Bwd 8@!8Y @D!@Y HB! HY$|, J!BL @ @, D# , BB,`c !X @@ V& 0  @!@X 0B!0Y 8P!8Y@A$ B HY$|, J!0B @Y 0@!` `,p, #J] J! BBL D B , f B! Y 0D!0Y 8B!8Y$N( J!3B @ 3B DP ! ,$<( J! A! ,@f D@Y 0@!` `,$( J!B3B B Y0B! H8PJ!0B @Y 0@!` `,p, #\ J! 0B D@Y 0D!` `, \ J!0B B Y 0B!` `,( 8Np p, #\ J! U0 `@!@B  - 0zF`(!(e(@e(d0@L 0 0 /X @ c B 2BD3B ! # + B @bD02B0B @0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$( J!p (C a! @By! !, a! ,$ܸ( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( @!D @HD$8X! @!0L fL(PA3B *X 0+!PT X*! ! #r !`X ( .\ #) 0`Bp`,8`,$( J!L @B, b B Y !  1E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$( J!3B @3B BP $03B H!$ $(D 3Y! P@!( (,@T P(s p44 X@!, ,,\ 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HHXJ! A! , 0L0Y 8!8Y$ĵ( J!  L D B ,f @!Y 0D!0Y 8@!8Y$H( J!B3B B B3B DP ! ,$l( J!D A! ,@f D@Y 0!B!` `,$L( J!3B @Y0@! H(PJ!0B B Y 0!B!` `,p, #Z J! 0B D@Y 0!D!` `, Z J!0B @Y 01A!` `, ~Z J!0B B Y 0!B!` `,p, #rZ J!D A!  0@! A! `@x@! @@!  ,D 0L0Y$( J!2B@ zH ! `c0B @@X 0!!` `, BZ J!3B @ 3B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$G( J!B3B @ B3B DP ! ,$ ( J!$ ! ,$( J! 1B@ , c B! Y !B,`,p,, 3> J! !p p,D: 0L0Y8$ H 327> J!0B B Y !B,@/T D B ,D  0L0Y 8@!8Y @D!@Y $d|, J!1B B Y 0B!` `,p, $m|, J! U0 `!@B  - 1~F`(!(d(@d(c0L 0 b @B2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$t( J!p (C a! @@y! !, a!   ,$T( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $d( J!0B @p q5? $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ""4 a! @By! !, `!0 0 ,$4( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D @bHD$8! @!0L eL(P2B *X `+!PT X*! @! #r `!`X ( .\ #) 0`Bp`,8`,$d( J!L @B,@b D@Y a! aC!0VL 0 B0 ,( 0L` `,p, @P@Y HB! HY P!@PY$( J!3B @ 3B DP< $02B H@!$ $(D 3Y! P@!( (,@U P(s p44 X@!, ,,] 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HXJ! A!   , 0L0Y$D( J!d ! 0@! !  `p@x@! @@!  ,E 0L0Y$( J!2B@H   U0 `!@B %0zF !(g0@3B Hf @0pH !f H4f @L @ B`@f L H'XD $@8A0(H#yX@С*JcP y," 0@L 0 cD2B 00B` P!( #`b0B@3B @@X @! a "0BH00B$0B P@PX Pp!( 8! X!, ( @X #) @ BP ,(@,$( F!L @B,`g `X @! @p!VL H$B$,( H@ @,P, 0L0Y 8!8Y @!@Y$( F!B0B @0@0B P  H !$  , @ P@!( (,T H Y (!(Y$T( F! L @B,`` !`X @! Y (!(Y$T>( F!B0B @0@0B P H !$ $,H$( F! ,@ A! ,`` `X !A!@ @,$ܬ( F!0B @Y @! H(PF!0B @Y !A!@ @,P, #VV F!0B @Y !A!@ @, NV F!0B (@(Y K!@ @,0$HY PF! ! p (C @!0 0 ,+\ @ B , H Y (!(Y$|, F!L @ 8@P! @!0 0 , H Y$( F!2B @00B `X !@ @, V F!2B @00B `X !@ @, U F!B2B @0@2B P H!$ @c$0B X`XX !!@ @, U F!0B @00B p q  H!$ #^ P!( (,`c X!`XX !P,B(Y$<( F!B0B @0@0B P H!$ $,H$<( F!1B,`c !`X @! B ,@,P,@`, 36> F! ! 8@ ! $rf$( F!$ A! ,`c !`X @! B ,D H Y (!(Y 0!0Y $,Z|, F!p K$0@3Bt$ H$@3B$d$ @!@Xf X !, ,,X$\( F! ,X@ A! p C$L H$ #@a ((Y K!@ @,$ 0!0Y? T&0 @L `!0 p pC @@!P P,. H Y($`B0Y $~, F!@$U `!@B 3~FP x@= #P   #P x= #``H0 $ L D # $p q   $ L D #`@!@B Б80XF !B D!`Y $0@!B@,\ D 0 ,\ @ `e2B0B@ P!@ #@-\ D‹XD @8@0(cXyP@Б&JCH yX( 0L 0 d,@2B 00B` P!( #.\ @0 @.\ D  c1B0 B`X H!X$ #a 3BB` P!( #frH@fDH`f$0`3BL P+XD (8@ 0(R#JyJC$!yH L X, `e$3B,0B@ Pp!@( #d@ rH`dH`d$`2BL P(0 (` @ `c( 2BD0B H!% #`+ X,  @! # !0 0! HRx! R!Y )&0  zY$|( v!p (C@Ry! !$ R!Y$l( v!  B , HD '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 0A1B`0L,`@L@ANL (@P (!PANL *T #/ ,`XB`X,H,,. | , 3BS v! B1B Dp qH @Ry! !$ R!Y$d( v! B, H@\$ !  8D ! 0,`@@1B $ P!( (, P,`X X,qT; &D0  " RD C $Iq`r p&py!@Hp8 $Uq0 $YqW( $]q  $aq Ƞ!d d, xY$l( v!*Hp: H ny ! Xn!  & 0 Dn!H1@0D H$$q< P$p( q X!, ,,X xY$( v! B@.8 D  /d B#`b `X ! , rR v! B   &0 B  &0 0  !`X @!Y !Y$5( v!  BP D!Y$( v!9 @!Y$( v!2L BB,@/d D B ,`/d 0 B0 ,,,, 3V~> v!  &0  B! Y B!Y$, v! BP  & 0  Dq 'rf$( v!8 tf$( v!8 $p q8 @4$ q70 H$$qw( P8$(q ,`X X,qT , " 2L $H#`PY &!0L .8 (@P 8P& ! N&PT0 *`2LEe$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 3"3 ,X# &p\0 .,C 0Y &d0  2Y .!Y .!YQ v!BQ v! ,@ L D  /d B#`)` 0 B0 ,/d @ B , /d H$B$,,@,H,, CbQ v!d $p qh =$q7` @|$ qwX H$$q@ P@$(q8 X$p, q0 D$Dqt  ,@ $HqwT 0,`&@2L (P#PY *!PT .8 ,`X hX*4 ! N&p\0 .2L 0`# &d0 2,@C 4Y &l0  6Y 2!Y 2!YP v!BP v!< ,@ ,@D Dp q5 pA$ @$ q7 HH$$qw Px$(q X$,q( $pD q  $Hq7 p$Lqw $Pq L$Tq $pX q P$\q !` `,, 0`sw `44 Ƞ!d d,, xY$( v! ( d BY @! (PC , xY$b( v!, , xY$ v!p (C, @s  $,@PY 1D!   ,@DDBB0@1B1B \ ,@c P!@PX 1! ,x,P, 36> v!P BP x! C ! , X@B V!Y B!Y ${, v!P BP(  ,/d @B,X, zY \!Y !Y$)H(Xv!P Bp (CHD]9 ! V!Y$H(Xv!p @C V!Y$t}, v!,G  xY !Y$HX v!,L @   `' @( 8Tx!  !&0 B0@BL  #)d @ B , H$B$,@, P(B(,@X,`X X,Bsd !Y !Y !Y !Z$|, v!BNL @ #@. D  81 `t0NL 0 B Y B L @ B , @BL H$B$,@/ P(B`. X, P,1 (t X$`XX P( (B(,H,P, # v! BP @!Y$$( v!|'  '& 0  D B . B #`XY @ '& 0  @!@X ! ,@,. | , 3nJ v! 3BBNL @ 1o$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* cY"DA?#3B3BB 3B Dp i@  '&0 0 !3B@@H 8 H1 `t @@X   # B xY$l( v!3B @ B gB 3BD03B p i @ & 0  @ @ P7, , H H HX Hp!$ @$)`H(PW P` &(0 @6L X, # +l "D #@/l $H # &0L0  &LqL ` &@P0 (P2BP*`6L ,`X e .Xi  `!` e`2 @!h `)l 6l ,Ce 8Y 4!Y 4!YI v!BI v!| A!B, e B! Y a & 0  D!@Y  &0 0  !`X7rd @!Y B!Y D!Y !Z$|, v! Y&0 @L B#@+d D B ,`/h 0 B ,,,7 $)}, v!B6L @B, -D BB,X,,, 3V= v! 4L D  8D ! &0  @!Y a &0  B!Y  &0 0   q7 @ !& 0 @@BL H@$#@, P(B(,`, X,B,, +l "DBD, vd !Y !Y "!Y$4|, v! B2B Dp q$ !!B, , BB,,, #H v!t !! B ,d @!Y A ,&0  B! Y  !&0 0  !`X D!Y @!Y B!Y !Y$( v! a & 0  Dp q  !&0 @BBL B#`, 0 B0 ,, @ B , -D H$B$, 7sd !Y !Y !Y$|, v! B2B Dp q$ !!B, , BB,,, #H v!t !! B ,d @!Y A ,&0  B! Y  !&0 0  !`X D!Y @!Y B!Y !Y$( v!  & 0  Dp q  !&0 @BBL B#`, 0 B0 ,, @ B , /l H$B$, sd !Y !Y !Y$|, v! B2B Dp q$ !!B, , BB,,, #G v!t !! B ,d @!Y A ,&0  B! Y  !&0 0  !`X D!Y @!Y B!Y !Y$Ԏ( v! ! & 0  DP$ !B, d B! Ytd @!Y B!Y $|, v! ! #  &0  @P$ !B,`c !`X7ud B!Y !Y $4|, v! ! #  !&0 @BBL B#`, 0 B0 ,, @ B , d H!@HX P!(B(,`-h X, , a"7td !Y ~!YQ$DH -@( !`Z$$|, v! 0BDBNL @ # . B ` 81 `tNL @ B`X  L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  0B D,`@D ANL $ H $!0ANL &L #c (X '&PT0  *!X Q( ! ,,. | , 3FF v! 0B D`k@ !! @@yp! !!B,`d !`X @@ ,& 0  @!@X H !&$0  H! HX B!Y !Y !Y !Y$( v! !!  8DH! !!B, , BB,,, #E v!t !! B ,d @!Y A ,&0  B! Y  !&0 0  !`X D!Y @!Y B!Y !Y$( v!  !& 0 DBBL @# , BB,`, 0 B0 ,(l @ B , 7sd B!Y !Y !Y$ԉ|, v!BNL @ #@. D  81 `t0NL 0 B Y B L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX    BX@!VL "DB D,@Y $pH q 0, &Y$l( v!  !&0 0  !`X @! B ,,@, # v! BP B!Y$$( v! ,`g `X @ Y& 0  @!@X! BY$( v!@ #`g `X! H-Pv!,B"B@0@NL 0 !@NL @ # c H HX P '&(0  P!@PX  ! ,P,. | , 3D v! BNL D #. @ 81 `t0NL 0 BY @ L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX    BXD!VL "DBD,@Y $pH q 0, &Y$܈( v!  Y&0 0  !`X @! B ,,@, #Ɖ v! BP @!Y$( v!  ,`g `X @` Y& 0  @!@X! BY$t( v!@ #`g `X! H)Pv!,@ "BD0@NL 0 !@NL @ # c H HX P '&(0  P!@PX 1 ! ,P,. | , 3C v!BL B , @#@+h D  8Dp!  !&0 0  !`X @ !& 0  @!@X H &$0 Hr e !Y !Y !Y b &1  Z$l|, v! a &0  @`s   p e& a & 0  Ds7  `q e q e!! H !&$0  H! HX P !&(0  P!@PX B!Y !Y !Y a &0  ~Y$|, v! '&0 @ BNL D  81 `t0NL 0 B Y B L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX    BX@!VL "DB D,@Y $pH q 0, &Y$( v!  !&0 0  !`X @! B ,+T;k$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "U,@, #& v! BP B!Y$( v! ,`g `X @ Y& 0  @!@X! BY$( v!@ #`g `X! HH#Pv!,B"B@0@NL 0 !@NL @ # c H HX P '&(0  P!@PX  ! ,P,. | , 3B v! 1B D@Y D ! ,, #B v!3B ,h,, # v! BP @!Y$Ԅ( v! !   , g B Y D ! ,$( v!3B @Y@! H Pv! 1B D@Y D ! ,, #BB v!1B B Y B ! , :B v!1B @Y !@ ! ,, #.B v!2B ,g @!Y B!Y @!Y$ ( v!  BP D!Y$$( v!d ! ,g @Y !B ! ,$( v! 3B D@YD! HxPv!1B B Y !B ! ,, #A v!1B @Y !@ ! , A v! 1B D@Y QD ! ,, #A v!B2B,@g D!@Y @!Y D!Y$ ( v! BP B!Y$t( v!< ! ,@g D@Y Q@ ! ,$T( v!3B B YB! H(Pv!1B @Y Q@ ! ,, #A v! 1B D@Y QD ! , A v!,  Bp qP ,@XY0,` `X @! ,XY @!  @B @@X @!X! # XY Hp!$ P$)@A X`X@O,, xY !Y$<9( v!,  @@N@ !0 0 ,, xY &0  zY$L( v!1B @Y a &0  B q@!B xY D!Y$$( v!8L B B8 BC ! ,- xY d!Y$( v! 1B D@Y E ! ,, #@ v!8L B -h @ @8B !   ,- xY `!Y$( v!1B @Y aA ! ,, #@ v!L B B90Bc !   ,G- xY f!Y$t( v!1B @Y A ! ,, #@ v!L B @.h D  D8B# ! ,- xY b!Y$,( v!1B B Y qC ! ,, #@ v! ,@ D qà!1B @Y @! ,, #v@ v!,  B qà! 1B D@Y E ! ,, #b@ v!, g B! Y ! B , xY B!Y D!Y $,z{, v!P BPH $&0  @DRC ! XB! @!L  Y& 0 D!0@3B`0 ,@Y !Y D!Y$,( v!` s@!(0C`$ H gB !  HDyP! ( C !0 py! H Z&$0  H$B@(h PH( #`, X, , "XD#@(h $ HB`)h &0LB0L,, (@PB@P,, *PTBPT,)h ,`XB`X,@X &!Y (!Y *!Y &0  ~Y ,!Z  Z&1   Z $!@Z$4( v!BBL BB,@*h D B ,`c !`X @! B ,`P 8qh H! P$(B B!Y D!Y !Y !Y !Z ! Z !@Z$|, v! BP4 ,G  xY !Y$H\X v! ,L D `'D0@3B`0 ,, "? v!\ !B,@c D!@Y !0 B0 ,,,, 3Ng> v!p `C ! , f B! Y@!BY$4|, v!P BP  & 0  D@R0Cw f? , g B! Y !0 B0 , xY B!Y !Y $v{, v!P BH !   ,$|, v!1B @Y @! 8@! ! @*h D #`c `X  !0 +h @ # c H$B,`P( L "DB@c $@XD,`,h &0LBL,( xY "!Y ~!Y5$!H(Pv!, @ ! , - xY$||( v! 1B D@Y qD ! , 6> v!1B @Y @! , .> v!,@  D_D0, H HN$1B@P(,`b X!`XX !Y !Y$$( v!p @C a Z&0 @!1BB$  Z& 0 D!01B @!  , c H HX P!( (,J xY! B,- - c= v!1B @Y@! HPv!1B ,, = v! !   ,@- D`s @44 ! ,- xY$<{( v! ( T ! ,  xY$${( v! 1B D@Y D! , = v!1B @Y q@ ! , = v!1B B Y aB ! , z= v!p C ! B ,`0 @!Y D!Y @!Y$L}, v!1B B Y aB ! ,, #N= v! ,`0 @!Y D! ,,, 3z v!,  xY$,2( v!, xY?#4L | ,, C v! , xY$3( v!1B @Y a@ ! , < v!B3B ,, < v!L  ,@ Dp q , @Y QA!0 0/  B,GB xY !Y$HHPX v! ,L D `'DB2B ,, < v!B3BԫB$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* Z*"f,, < v! , D s !z@* @ )@ BY$BY $t!|, v! !  , @p q  ! #b  +&0 0 VL @ B ,,$x( v!BL @B,`PY@ E!VL H$B$,( x ,, |Y !Y !Z$tx( v! BP $03B H!$ $(D 3Y! P!( (,@T P(s p44 X!, ,,\ xY$ x( v! ( < ! , xY !Y$H?Xv!$ , @p sT  ,@D2L B#`PY !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X, B "Y & H0  $Y !Y !Y; v!B; v!L ! , /d BB,G xY $BY $ԧ( v! !   ,! xY ^!Y$HPv!B1B @Y @! ,, #n; v! 2L D B ,g @!Y D!Y @!Y$( v! BP B!Y$v( v!t !   ,g @Y D! ,$|v( v!3B B YB! HPv! B1B D@Y D! ,, #&; v!B1B @Y @! , ; v!B1B B Y B! , ; v! B1B D@Y D! ,,@,, C; v!B1B @Y !A! , : v!B1B B Y B! ,, #: v!U `!@B  - 2jF`(!(c(@b(bB3B@L B ‡XD D8@0(1#1Hy@D1J yH  L @ `c$1B2B@ !@ #@*l D 0 `*l 0 bB1B @02B` @! # +l BXD 8@$0(! C!Ry!J!yP 0L 0 a(0B 02 B` Q! # ,l B0 @,l D  `@0B2B@P H!P$ #`-l XD @8 B0(Cy@Ё"J#B yD L H$ @e02B$03B` @P! #.l @0 .l B @d B2BD2B  H!% #`cpH@c H@cD1BL B `b1B@0B 0B@ A!  0D! H`!$ Hx! `!0 0 , 8 )&p0  8N8Y$s( J!p (C a! @By! !, a!   ,$s( J! B,@0BB  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $r( J!0B @p q4 a! @By! !, `!0 0 ,$r( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D @"@D$8P ! !0L bPL(@ ! !PT B`T,8! !p\ 3p\0@! @!d d,D 0L0Y$q( J!B1B@ "H A! , 0L0Y$q( J!0B @ 0B D@Y 0E!` `, 8 J!0B B0B @Y 0A!` `, 8 J! 3B D0B B Y 0B!` `, 8 J!0B @ 0B D@Y 0AD!` `, 8 J!3B B0B @Y 0!@!` `, 8 J! 3B D1BB1B@00B `X 0!` `, 8 J! 1B D1B @p q  ! #n !0 0 , c H! HX0!p$B8Y$4( J! 2B D2B @P ! ,$p( J!  !   ,$p( J!1B, c B! Y ! B ,`,p,, 3^^> J! !! dB 0B D@Y 0E!` `, 8 J!1B @1B Bp q  ! #n !0 0 , d H! HX0!p$B8Y$( J!2B @2B BP !   ,$o( J! ! ,$o( J!2B ,@d D!@Y !B,`,p,, 3]> J! ! @bD0B @Y 0@!` `, 7 J!1B B 1B Dp q  ! #n !0 0 , b H! HX0!p$B8Y$( J!2B B 2B DP ! ,$n( J! ! ,$n( J! 1B@ ,b @!Y !B,`,p,, 3.]> J! a!  a@0B B Y 0QB!` `, .7 J!1B @ 1B Dp q  A! #n !0 0 , a H! HX0!p$B8Y$( J!2B @ 2B DP ! ,$m( J!| ! ,$m( J! 0B@ , a B! Y A!B,`,p,, 3\> J! a!  eB0B @Y 01@!` `, 6 J!1B B 1B Dp q  A! #n !0 0 , e H! HX0!p$B8Y$t( J!2B B 2B DP ! ,$l( J!L ! ,$l( J! 2B@ ,e @!Y A!B,`,p,, 3[> J! !   ,c @!Y0D!pB8Y @!@Y H@! HY P!@PY$F{, J!p ( C a &0  B Yv6$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* dz"w ! B , B"L @ ,@0"L 0 0 ,`@"L H$ $, M"L P( (,@AT"L X, ,,`\"L "D D, Š" "L $ H  H,@B$0"L &0L 0L,`B &@3B (  P7X @!PTBPT,`, n_? J!1B B 1B DP$ A! H@8 ! $rf$k( J!4 tf$k( J! a &0  B Y A! B , D B A!  A/" X@`a0B@8L H$ 8 0! P` &(0  P@PX X@!,B,,@V, `!D @)p $ H HD$x0! ` &0L0  &`X `!@PB@P,`BP& !PT TC !`XB`X,.p .p\Bp\,`,p, #5 J!p `C a &0  B Y ! B , B ! @C !0 B0 , *t H$B$,`,Hp, #4 J!p C !B,@b D!@Y 0B!0Y 8D!8Y$i( J!"L @ , b B! Y A! # !  p C !0 B0 ,-p @ B ,`,@p, #4 J!p `C a &0  @Y !B,@ !  `C ` &0 0  `X H@!$B$,`$ P!p( p,D: 0L0Y8$ H 3b > J!1B @Y0@! HXJ!1B B Y 0B!` `,p, $||, J! !  $8@! A! `d2B @@X @! Hx! ! #r H!$ @( PH( #`) X,Bp,,8`,$h( J!L @B,@b D@Y ! B!0VL 0 B0 ,( 0L` `,p, @P@Y HB! HY P!@PY$g( J!B2B @ B2B DP $01B H!$ $(D 3Y! P@!( (,@AS P(s p44 X@!, ,,D[ 0L0Y$,g( J! ( < A! ,D 0L0Y 8!8Y@$HHXJ!T !   , Dp s` ! ,  B2L @#`b `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X1B " X "!D ,@/d $`H `,Xp, X,PJ!B&3 J! A!p p,/d @B,D= 0L0Y8 $B@Y $l( J!\  N&0 B 2L D#a @Y 0A!` `, 2 J!1B B 1B Dp q  &0 @ !0 0 , /d H$B$, 8!8Y$( J!2B B 2B DP ! ,$de( J!d ! ,$\e( J! 2L D B ,/d @B, /d BB,`,p,, 3W> J! a & 0 D8L @ # .p B #`*t  #/d @ 8! H!$ $,@/d P(B(,H 8!8Y @!@Y H! HY P!@PY$={, J!p C !   ,/d @B, c B! Y0D!pB8Y @B!@Y $]{, J! A!   ,*p @  A/" X@ 0L0Y 8P!8Y@$HPJ!0B B Y 0C!` `,)p 8Np p, $c( J!0B @Y 0A!` `,p, $c( J! 0B D@Y 0D!` `,p, $c( J!0B B Y 0AB!` `,p, $c( J!0B @Y 0!@!` `,p, $c( J! 0B D@Y 0E!` `,p, #1 J!2L BB,c @!Y 0B!0Y 8@!8Y$d( J! 2B D2B BP ! ,$c( J!D A!   , c B Y 0E!` `,$b( J!1B @Y0@! HHPJ! 0B D@Y 0E!` `,p, #f1 J!0B B Y 0C!` `, ^1 J!0B @Y 0A!` `,p, #R1 J! 8L D B , c B! Y 0D!0Y 8B!8Y$( J!2B @ 2B DP ! ,$Lb( J! A! ,@c D@Y 0A!` `,$,b( J!1B B Y0B! HPJ!0B @Y 0A!` `,p, #0 J! 0B D@Y 0E!` `, 0 J!0B B Y 0B!` `,p, #0 J!:L @B,@c D!@Y 0@!0Y 8D!8Y$( J!2B B2B @P !   ,$|a( J! A! ,c @Y 0B!` `,$\a( J! 1B D@Y0D! H(PJ!0B B Y 0B!` `,p, #0 J!0B @Y 0@!` `, 0 J! 0B D@Y 0QD!` `,p, #0 J!1B ,c @!Y 0B!0Y 8@!8Y$( J! 2B D2B BP ! ,$`( J!t A!   , c B Y 0QD!` `,$`( J!1B @Y0@! HPJ! 0B D@Y 0QD!` `,p, #20 J!0B B Y 0QB!` `, *0 J!0B @Y 01@!` `,p, #0 J!  L D B , c B! Y 0D!0Y 8B!8Y$L( J!2B @ 2B DP ! ,$_( J!, A! ,@c D@Y 01@!` `,$_( J!1B B Y0B! HPJ!0B @Y 01@!` `,p, #/ J! 0B D@Y 01D!` `, / J!1B $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ",`, / J!0B @Y 0@!` `, / J! 0B D@Y 0E!` `,p, #/ J! U0 ` !@B  1 1tF`(!(d(@d(c1B@ H@bD1B@0H a B 0BDB0B@0L XD B8@0(!#!Jy@B!J!yH  BL @ `g$0B@3B@ !@ #@)p D 0 `)p 0 f3B @0@3B` @! # *p BXD 8@$0(! C!Ry!J!yP 0@L 0 c(2B 0@2B` ! # + B @bD@2B@0B 0B @!0 0! a! H@x! a! , 8 )&p0  8N8Y$]( J!p (C a!  @Dy! !, a! ,$]( J! B,@ 0BD  '&0 B0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $\( J!0B @p q4 a!  @Dy! !, `!0 0 ,$\( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D D, ˆ "Dq ! H  H,@$01BH&@1B (X P(!@P X(`! !PT PT,B *X `*!PT TpC !`X `X,D 0L0Y$d, J!p ( C ! HB8 ! $0@1B1B P!( `QX(! @!D @eD$02B &`X &!0L h&x! @! #r `!@P ( *T #) ,`XBpX,8`,$Z( J!L @B, b B Y a!  D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$Z( J!3B @3B BP $02B H@!$ $(D 3Y! P@!( (,@AR P(s p44 X@!, ,,DZ 0L0Y$Z( J! ( < A! ,D 0L0Y 8!8Y@$HxXJ!$ ! , Bp s` !   ,@D2L @#`b `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X1B " X "!D ,@/d $`H `,Xp, X,XPJ!B, J!L A!p p,/d @B,D= 0L0Y8 $B@Y $( J! A!   , c @B@Y 0aE!` `,@@$HPJ!0B @Y ! , 0L0Y8P! H 3Z, J! 0B D@Y ! , 0L0Y8P! H 3J, J!0B @Y a! ,D 0L0Y8P! H 3:, J! 0B D@Y A! ,D 0L0Y8P! H 3*, J!0B @Y !! , 0L0Y8P! H 3, J! 0B D@Y 0E!` `,p, #, J!2L BB,e @!Y 0B!0Y 8@!8Y$( J! 2B D2B BP a! ,$W( J! A!   , e B Y 0E!` `,$W( J!2B @Y0@! HPJ! 0B D@Y 0E!` `,p, #+ J!0B B Y 0C!` `, + J!0B @Y 0A!` `,p, #+ J!  L D B , e B! Y 0D!0Y 8B!8Y$( J!2B @ 2B DP a! ,$V( J! A! ,@e D@Y 0A!` `,$V( J!2B B Y0B! HPJ!0B @Y 0A!` `,p, #R+ J! 0B D@Y 0E!` `, J+ J!0B B Y 0B!` `, B+ J!0B @Y 0A!` `,p, #6+ J! !  t0B! ! ``@x@! @@!  ,DB 0L0Y$ J!  \&0  @p qT ! &0 B L D#`(l 0  ,p @ H 4 ! H \&$0 HL PH(# X \&,0 X6L "D ,@-p $`H `,Xp, X,PJ!B) J! !! p 0C ! @fD00B `X 0!` `, ) J!2B @2B Bp q  ! #n @!0 0 , f H! HX0!p$B8Y$<( J!2B @2B BP a!   ,$4S( J!L A! ,$,S( J!B3B ,@f D!@Y !B,`,p,, 3J> J! ! B8 BC !! #`` P <7$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* &" @! B , f H! HX 0!0Y 8!8Y$R( J!, ! # 1$p q( $ q7  @$$!qw  H$%ql P \&(0 @3B !D #@b $@X $! H `,p &L#b (X (!@P ,p *PT xT( ! \&`X0 ,pL .\# \&`0 01B 2 X Ȑ2!d ,@-p 4`h `,p, ,HPJ!B( J! !p p,D: 0L0Y8$ H 3= J! 1B D@Y !B, 0L0Y 8@!8Y$}, J!p PC ! ,B 1BD1B @Y !0  @@1BH2B$2B X`XX X`!, H8! @!D @( $H #`) &0LBpL,8`,$P( J!L BB,@c D@Y A! aA!0VL 0 B0 ,( 0L` `,p, @P@Y H@! HY P!@PY$dP( J!2B B 2B DP ! ,`b @@Y 0A!` `,@@$HXPJ!B1B B Y a! , 0L0Y8P! H 3( J!B1B @Y !! ,D 0L0Y8P! H 3' J!B1B B Y 0C!` `,p, #' J! B3B@ ,e @!Y 0D!0Y 8@!8Y$|( J!2B B 2B DP a! ,$O( J! ! ,@e D@Y 0C!` `,$dO( J!2B @Y0@! HxPJ!B1B B Y 0C!` `,p, #' J! B1B D@Y 0E!` `, ' J!1B @€B ,p BB,`,p, #' J! BL D  , @# ,p B 8B!  \&0 0 !@BL @ B , , H$B$,`X P!( (,@P P(B`,p X,B,, td 8!8Y @!@Y H! HY P!@PY X!`XY$9|, J! \&0 @! BBL D B , , BB,Y !0 0 ,` 0 B4td 8D!8Y @B!@Y H@! HY P!@PY$|9|, J!  '& 0 DBNL B 81 `t0NL 0 BY @ L @ B , @BL H$B$,@/ P(B`. X, P,1 (t X$`XX P( (B(,H`,Pp, #b J! 2B D2B BP A! ,$L( J!  '& 0  D B . B #c @Y  '&0 0  !`X 0@!` `,p,. @P , 3N& J!2BB BNL D  E?# 2B2B@02B p i@ @ '& 0 @!2BH@H 8$P1 `t H HX @  `" B 0L0Y$,L( J!2B B B@eD2B@02B p i @ & 0  @ qL H &$0 H3B$&L X, ` ",iW  ! H `gH& !@P *H *T ,g 0,0Y 8(!8Y H(! HY% J!B% J!| !B,@g D!@Y  &0  @!Y  &0 0  !`X4rd 8B!8Y @D!@Y H@! HY P!@PY$T6|, J!  Y&0 B L D#+d @B,`,p,5 $|, J!BNL B #@. D  81 `t0NL 0 BY @ L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX    BXB!VL "DBD,@eD$02B &`X &pL q @!@P @P, 0(0Y$ J( J!  Y& 0  D!@Y a!B,`,p, #` J! 3B D3B @P !0 0 ,$I( J! A!   ,e @Y  ]&0 0  !`X0@!p B8Y$I( J!@ #e @Y0@! HPJ! 2B D@YD"BBBNL @ @!0@NL  #b @@X H '&$0  H! HX 0!` `,Hp,. @P , 3$ J!B1B B Y 0B!` `,p, #v$ J! 3B@ ,e @!Y 0D!0Y 8@!8Y$,( J!2B B 2B DP a! ,$H( J!D ! ,@e D@Y 0B!` `,$|H( J!2B @Y0@! H؂PJ!B1B B Y 0B!` `,p, #&$ J! B1B D@Y 0D!` `, $ J!0B @P ! ,  0L0Y 8!8Y$H( J!  L D B ,e @!Y 0D!0Y 8@!8Y$Ծ( J!2B B 2B DP a! ,$G( J! ! ,@e D@Y 0B!` `,$G( J!2B @Y0@! H(PJ!B1B B Y 0B!` `,p, ## J! B1B D@Y 0D!` `, # J!B1B @Y 0@!` `,p, ## J! L BB,@e D!@Y 0B!0Y 8D!8Y$( J!2B @2B BP a!   ,$F( J! ! , e B Y 0@!` `,$F( J! 2B D@Y0D! H}PJ!B1B @Y 0@!` `,p, #N# J!B1B B Y 0B!` `, F# J! B1B D@Y 0D!` `,p, #:# J! L @B, e B! Y 0@!0Y 8B!8Y$D( J! 2B D2B @P a! ,$F( J!\ !   ,e @Y 0D!` `,$E( J!2B B Y0B! H{PJ! B1B D@Y 0D!` `,p, #" J!B1B @Y 0@!` `, " ;V$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ("J!B1B B Y B! , 8A &p0  8N8Y$E( J! 1B D B 0D!0Y$E( J! ! ,D 0L0Y 8!8Y@$HXJ!1B 8B8Y0N!p H $${, J! U0 `!@B  - 0`F`(! 3B(d (d(c 3B@L @B g<B 1BD0B@0BB B0BD0B@3BB 3BDB3B@3BB He@BL B0 )t @ @dD02B0@3B` 1! #@)t D‹XD @8@0(CPyH@Ё"J#@ yP$ 0L 0 a(B1B 0@1B` Hp!$ #*t @0 @+t D  @`0BBB3B  @0!! #`+t XD 8 B$0(CyС*JR yD L @ gB00B 0@3B` H!$ #@,t P(0 -t @ f(B 3BDB3B @!! #`-t XD 8 B$0(CyС*J#R yD L @ e@03B 0@3 B` Hp!$ #@.t P(0 /t B d(@ 2BDB3B  @0!! #`+ 0 b @2BP0B(@ 0BD @@! 0! a! HBx! `!0 0 , 8 )&p0  8N8Y$B( J!p (C a! @@y! !, a! ,$B( J!  B ,D0B@  '&0 B0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $A( J!0B @p q4 a!  @Dy! !, `!0 0 ,$A( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @"HD$8 ! @!0L eL(P2B *X *!PT X*! @! #r `!`X ( .\ #) 0`Bp`,8`,$@( J!L @B, b B Y a!  D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$T@( J!3B @3B BP," $02B H@!$ $(D 3Y! P@!( (,@R P(s p44 X@!, ,,Z 0L0Y$?( J! ( < A! , 0L0Y 8!8Y@$HXJ!|! ! , Bp s` !   ,@D2L @#`b `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X1B " X "!D ,@/d $`H `,Xp, X,}PJ!B~ J!L A!p p,/d @B,D= 0L0Y8 $B@Y $^( J! A!   , 0L0Y 8!8Y@$HH}PJ!0B B Y 0aB!` `,p, $>( J!0B @Y 0@!` `,p, $t>( J! 0B D@Y 0D!` `,p, $\>( J!0B B Y 0B!` `,p, $D>( J!0B @Y 0@!` `,p, $,>( J! 0B D@Y 0D!` `,p, $>( J!0B B Y 0C!` `,p, $=( J!0B 8@8Y 0O!` `,@$H{PJ! 0B D@Y 0!E!` `,p, $=( J!0B B Y 0B!` `,p, # J! L @B,@e D!@Y 0@!0Y 8D!8Y$( J!2B B2B @P a!   ,$d=( J! A! ,e @Y 0B!` `,$D=( J! 2B D@Y0D! HdPJ!0B B Y 0B!` `,p, # J!0B @Y 0@!` `,  J! 0B D@Y 01D!` `,p, #v J!2L BB,e @!Y 0B!0Y 8@!8Y$ԯ( J! 2B D2B BP a! ,$<( J! A!   , e B Y 01D!` `,$t<( J!2B @Y0@! H(bPJ! 0B D@Y 01D!` `,p, #" J!0B B Y 01B!` `,  J!0B @Y 0Q@!` `,p, # J!  L D B , e B! Y 0D!0Y 8B!8Y$( J!2B @ 2B DP a! ,$;( J!\ A! ,@e D@Y 0Q@!` `,$;( J!2B B Y0B! H_PJ!0B @Y 0Q@!` `,p, # J! 0B D@Y 0QD!` `,  J!0B B Y 0qB!` `,p, # J! L @B,@e D!@Y 0@!0Y 8D!8Y$D( J!2B B2B @P a!   ,$:( J! A! ,e @Y 0qB!` `,$:( J! 2B D@Y0D! H]PJ!0B B Y 0qB!` `,p, #R J!0B @Y 0q@!` `, J J! 0B D@Y 0D!` `,p, #> J! L BB,e @!Y 0B!0Y 8@!8Y$( J! 2B D2B BP a! ,$$:( J! A!   , e B Y 0D!` `,$:( J!2B @Y0@! HxZPJ! 0B D@Y 0D!` `,p, # J!0B B Y 0B!` `,  J!0B @Y 0@!` `,p, # J!  L D B , e B! Y 0D!0Y 8B!8Y$( J!2B @ 2B DP a! ,$T9( J! A! ,@e#$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* U" D@Y 0@!` `,$49( J!2B B Y0B! HWPJ!0B @Y 0@!` `,p, # J! 0B D@Y 0D!` `, z J!0B B Y 0B!` `,p, #n J! L @B,@e D!@Y 0@!0Y 8D!8Y$l( J!2B B2B @P a!   ,$8( J!< A! ,e @Y 0B!` `,$d8( J! 2B D@Y0D! HXUPJ!0B B Y 0B!` `,p, # J!0B @Y 0@!` `,  J! 0B D@Y 0D!` `,   J!0B B Y 0B!` `,p, # J!< ! @0D! ! `@x@! @@!  ,B 0L0Y$7( J!2B@ H A! ,  0L0Y$7( J!1B @ 0B D@Y 0aD!` `,  J!0B B0B @Y 0@!` `,  J! 0B D0B B Y 0B!` `,  J!B0B @ 0B D@Y 0D!` `,  J!0B B0B @Y 0@!` `,  J! 3B D0B B Y 0B!` `,  J!3B @ 0B D@Y 0E!` `,  J!B3B B0B @Y 0A!` `, v J! 2B D0B B Y 0!C!` `, j J!3B @ 2BDB2BB00B `X 0!` `, V J!2B @2B Bp q  !! #n @!0 0 , d H! HX0!p$B8Y$t( J!2B @2B BP a!   ,$46( J!< A! ,$,6( J!B2B ,@d D!@Y !!B,`,p,, 36> J! ! @aD0B @Y 01@!` `,  J!2B B 2B Dp q  a! #n @!0 0 , a H! HX0!p$B8Y$D( J!2B B 2B DP a! ,$L5( J!  A! ,$D5( J! 0B@ ,a @!Y a!B,`,p,, 3f6> J! A!  `@0B B Y 0QB!` `, n J!2B @ 2B Dp q  !! #n @!0 0 , ` H! HX0!p$B8Y$( J!2B @ 2B DP a! ,$d4( J! A! ,$\4( J! B0B@ , ` B! Y !!B,`,p,, 35> J! !  gB0B @Y 0q@!` `,  J!2B B 2B Dp q  ! #n @!0 0 , g H! HX0!p$B8Y$( J!2B B 2B DP a! ,$|3( J! A! ,$t3( J! 3B@ ,g @!Y !B,`,p,, 365> J! !  f@0B B Y 0B!` `,  J!2B @ 2B Dp q  ! #n @!0 0 , f H! HX0!p$B8Y$( J!2B @ 2B DP a! ,$2( J!| A! ,$2( J! B3B@ , f B! Y !B,`,p,, 34> J! !  eB0B @Y 0@!` `,  J!2B B 2B Dp q  a! #n @!0 0 , e H! HX0!p$B8Y$( J!2B B 2B DP a! ,$1( J!L A! ,$1( J! 2B@ ,e @!Y a!B,`,p,, 34> J! A!  d@0B B Y 0B!` `,  J!2B @ 2B Dp q  !! #n @!0 0 , d H! HX0!p$B8Y$T( J!2B @ 2B DP a! ,$0( J! A! ,$0( J! B2B@ , d B! Y !!B,`,p,, 3n3> J! ! # b BP !! H@x! $@1B  H!$ # P`!( ( CX$A1B," 3B@ H,`g &!`X 0$!0Y 8&!8Y$/( J! 3B@ , d B! Y 0D!0Y 8B!8Y$( J!2B @ 2B DP A!  C$@1B @3B@P(,`f X!`XX 0!0Y 8!8Y$|/( J!B3B,@c D!@Y 0@!0Y 8D!8Y$D( J!2B B2B @PD !!  `C `!0 X! H$@1B$ X !, # !D D`C ! H x$! $@A1BL(PBL *PT , ,X#(x .p\Bp\,, 0`B`, , 2dBd,@d 4!@X 0.!0Y 80!8Y @2!@Y H4! HY$l.( J!BBL B d@ BBL D  `e p i  @@! d  P !( `/ X, , d 0"0Y 8!8Y H! HY J!B  J! ! # ! p 0C$0@1B @`! H8! H!$ $(@C$rf$-( J!| A ^&0 @0BB L D  `b p i  @! a  P`!( `)x X, , a 0"0Y 8!8Y H! HY J!B J! ! p C a!B,@e D!@Y @!0 B0 ,`,p,, 3NW> J!2B @p q4  ^&0 T 8$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " B! Y a! B ,`a !`X @`!  ,`,p,, @$,( J! !B, eB 2B D@Y `!0   D2B H HXP8$$B(2B " X p! H BH"02B &`X &!L #e (@aPBeP*`2B ,X $X# e 2 XH$dBh62B 8X @ &t0  :!X 8!p #e <X <!x #e >a|Be|Lp2B 8N8Y @$@#@e PT@PY !  (8! e$ % B @T!!#@e D@Y H@ &$0  H! HX D!H #@e P@PX P !( #`e X`,B e," 2B $@X $H#e *X !`X X( It! @$ %p`B *!d#@e 4@X @ &l0  6!`X 4!h #e 8X 8!p #e :atBet<2B >X 0$0}#e @P@Y H! (` SY! $ % B @P!!# e B Y PA &0  PT!@PY B!P # e H HX H !$ #@e D bB@e2B X`XX $,#`e &`X `!@P P( it! $$ %``B &!T#e .X !dBd,Bd.2B 4@X 4!h #`e 6alBel8Ё2B :X $t#e 0L0Y 8A!p ( y! HY$ % B @L!H!#e @Y @!B,D@2B B Y !B! #@e PTbB e2B P@PX !!  2B " X ! H H (8! $ %@`B "!L#e *X 0!`X BX*p2B .X .!\ # e 2adB@ed42B 6`X `!p p62B <X !| |( It! 8$ %p B @<!8!#e 0L0Y Hq! D0L2B @Y !@! #e @PbB eB2B H HX P!! 2B X`XX !  (` SY! \$ % `B !D#`e &`X 0!@P `BP&P2B *X *!T #e ,`aXBeX.2B 2 X22B 4!hB`eh61B 888Y 0N!` `,@$HHxXJ!1B @Y !!B,@f D@Y `!0 0 ,f @!@X0@!pB8Y@D! B@@, S= J!H= J!1B @Y 0@!` `,p, ${, J! U0 `!@B (92lF0!(c(@c(b(@bBL @ƒXD B8@0(!!ByB!Jc0!y@  0L F0 `f 3B@2B ! #@+x D 0 `,x 0 e03B F02 B` q! # ,x BXD 8@ 0(! #!Jy!Jc4!yH 0L 0 d$@2B 02B` 1! #@-x D 0 `.x F0 c2B@2B @!! #`b0BB1B H HX H!$ @a$D0B1B Fp q @! B ,b @Y 8!8Y@@!HhJPL!$ A! @dD02B F`Y F!0 8F! ! `(  #) @ B ,@p,$$( L!BL BB,@c D@Y !0 F!VL @B,( 8Np p,,  HR HY PF!@PY X@!`XY$$( L!B2B B B2B DP  !!  ,h @ ! ,`` !`X H!$B$, @!@Y H! HY $L|, L!L BB,@e D!@Y a!0B0,` @Y !0 0 ,p,, ,@X!)HGPL!0B B Y 8aC!p p,, # L! 2B@ ,`d F!`Y 8D!8Y @F!@Y$l( L!B2B @B2B BP !!   ,$d#( L! , @ A!0 0,d @Y 8aG!p p,$D#( L!2B B Y8B! HX!PL! 0B D@Y 8aE!p p,, # L!00B F`Y 8aG!p p,  L!1B, c B! Y !!   ,`` F`Yvd @@!@Y HB! HYPD!B S> L!0B @Y 8QA!p p,, #J L!1B ,@d D!@Y 8B!8Y @D!@Y$ԍ( L!0B2B FB2B @P !! ,$D"( L! ,@ A!   ,`d F`Y 8QE!p p,$$"( L!2B @Y8@! H(PL!0B B Y 8QC!p p,, # L! 0B D@Y 8QE!p p,  L!00B F`Y ^&0  @!Y 8F!p p,, #= L!L B 8B! @!@X& !  `fF0B @Y 8aA!p p,  L!2B B 2B Dp q  ! #n ! ,`f !`X8@! B@Y$ ( L!B2B B B2B DP !!0 0,$ ( L! ,@ ! ,$ ( L!B3B ,@f D!@Y !0B0,p,, , 3J*> L! !B, -@ BB,@d D!@Y !0B0,p,, ,@,`,,$|c|, L!2B @2B BP  !  ,@ !0 0,`b `X H!$ $, 8N8Y@!$B 3V= L!0B @3B B Y8B! HXL! 0B @D@X(U@ ` !@B 3~FP x@= #P   #P x= #``H0 $ L D #> }$p q  $ L D #* $p q $ L D # $p q   $ L D #`@!@B  1 0`F`(! 3B(e (d(d 3B@L @B g<B 1BDB1B@1BB 0BD0B@B0BB 0BD3B@ H@gDBL @0XD 8@ 0(CPyHЁ"J#@ yP$ L B @f(D0@3B03B` @! # )| H$0 *| @ @c$ 1BD2B ! #`*| XD 8 B 0(CyW$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* L"PБ&JCH y)D L @ bB0@1B03B` @! # +| H$0 @,| P( a$B 0B(D3B@P Q!P #`,| XD 8 B 0(CyБ&J#J yD L P( `@0@0B(03B` @! # -| H$0 .| B g$@ 3BD3 B  P!) #`.| XD 8 B 0(CyБ&JJ yD L P( fB0@3B(03B` @! # + H$ b$@2BB 0BD0B @!0 0! @`! Hx! H`!$ $,H 8 )&p0  8N8Y$4( J!p (C a! @@y! !, a!   ,$( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $$( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D @BHD$8 ! @!0L fL(P3B *X *!PT X*! x`!< #r !`X ( .\ #) 0`Bp`,8`,$$( J!L @B,@b D@Y ! B!0VL 0 B0 ,( 0L` `,p, @P@Y HB! HY P!@PY$( J!B3B @ B3B DP$ $02B H`!$ $(D 3Y! P@!( (,@S P(s p44 X@!, ,,[ 0L0Y$L( J! ( < A! , 0L0Y 8!8Y@$H8KXJ!,$ !   , Dp s` ! ,  B2L @#`b `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X1B " X "!D ,@/d $`H `,Xp, X,0PJ!B6  J!L A!p p,/d @B,D= 0L0Y8 $B@Y $d-( J! A! ,  0L0Y 8!8Y@$H(0PJ! 0B D@Y 0E!` `,p, $( J!0B @Y 0!A!` `,p, $( J!0B B Y 0AC!` `,p, $( J! 0B D@Y 0aE!` `,p, $( J!0B @Y 0A!` `,p, $( J!0B B Y 0C!` `,p, $( J! 0B D@Y 0E!` `,p, $l( J!0B 8@8Y 0O!` `,@$H.PJ!0B B Y 0B!` `,p, #  J! 2L D B ,e @!Y 0D!0Y 8@!8Y$ ( J!3B B 3B DP ! ,$( J! A! ,@e D@Y 0B!` `,$( J!2B @Y0@! HPJ!0B B Y 0B!` `,p, #N  J! 0B D@Y 0D!` `, F  J!0B @Y 0@!` `,p, #:  J! L BB,@e D!@Y 0B!0Y 8D!8Y$~( J!3B @3B BP !   ,$( J! A! , e B Y 0@!` `,$( J! 2B D@Y0D! HPJ!0B @Y 0@!` `,p, #  J!0B B Y 0B!` `,   J! 0B D@Y 0E!` `,p, #  J! L @B, e B! Y 0@!0Y 8B!8Y$|}( J! 3B D3B @P ! ,$L( J!< A!   ,e @Y 0E!` `,$,( J!2B B Y0B! HxPJ! 0B D@Y 0E!` `,p, #~  J!0B @Y 0A!` `, v  J!0B B Y 01C!` `,p, #j  J!  L D B ,e @!Y 0D!0Y 8@!8Y$4|( J!3B B 3B DP ! ,$|( J! A! ,@e D@Y 01C!` `,$\( J!2B @Y0@! HPJ!0B B Y 01C!` `,p, #  J! 0B D@Y 01E!` `,   J!0B @Y 0QA!` `,p, #  J! L BB,@e D!@Y 0B!0Y 8D!8Y$z( J!3B @3B BP !   ,$( J! A! , e B Y 0QA!` `,$( J! 2B D@Y0D! HXPJ!0B @Y 0QA!` `,p, #  J!0B B Y 0QC!` `,   J! 0B D@Y 0qE!` `,p, #  J! L @B, e B! Y 0@!0Y 8B!8Y$y( J! 3B D3B @P ! ,$( J!d A!   ,e @Y 0qE!` `,$( J!2B B Y0B! HPJ! 0B D@Y 0qE!` `,p, #F  J!0B @Y 0qA!` `, >  J!0B B Y 0B!` `, 6  J! 0B D@Y 0D!` `,p, #*  J!d A '&0  @Y @! 8@8! A '&0  B Y 0B!` `,   J! !!  0@! !! `p@x@! @@!  ,C 0L0Y$( J!B2B@ JH !! `pH8! @@!  ,C 0L0Y$( J!1B @ 0B D@Y 0E!` `, `T$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " J!B1B B0B @Y 0!A!` `,  J! 1B D0B B Y 0AC!` `,  J!0B @ 0B D@Y 0aE!` `,  J!0B B0B @Y 0A!` `,  J! B0B D0B B Y 0C!` `,  J!0B @ 0B D@Y 0E!` `,  J!3B B0B @Y 0A!` `, ~ J! 3B D1BB1B@00B `X 0!` `, j J! 2B D2B @p q  ! #n `!0 0 , c H! HX0!p$B8Y$|v( J! 3B D3B @P ! ,$\( J!4 a!   ,$T( J!1B, c B! Y ! B ,`,p,, 3> J! ! bB 0B D@Y 0D!` `,  J!2B @2B Bp q  ! #n `!0 0 , b H! HX0!p$B8Y$Lu( J!3B @3B BP !   ,$t( J! a! ,$l( J!1B ,@b D!@Y !B,`,p,, 3j> J! a! @aD0B @Y 0A!` `,  J!2B B 2B Dp q  A! #n `!0 0 , a H! HX0!p$B8Y$t( J!3B B 3B DP ! ,$( J! a! ,$( J! 0B@ ,a @!Y A!B,`,p,, 3> J! !!  `@0B B Y 01C!` `,  J!2B @ 2B Dp q  ! #n `!0 0 , ` H! HX0!p$B8Y$r( J!3B @ 3B DP ! ,$ ( J! a! ,$ ( J! 0B@ , ` B! Y !B,`,p,, 3:> J! !  gB0B @Y 0QA!` `,  J!2B B 2B Dp q  ! #n `!0 0 , g H! HX0!p$B8Y$q( J!3B B 3B DP ! ,$ ( J!t a! ,$ ( J! 3B@ ,g @!Y !B,`,p,, 3> J! !  f@0B B Y 0qC!` `, & J!2B @ 2B Dp q  ! #n `!0 0 , f H! HX0!p$B8Y$p( J!3B @ 3B DP ! ,$ ( J!D a! ,$ ( J! 3B@ , f B! Y !B,`,p,, 3 > J! ! # c BP ! H@x! $1B  H!$ # P!( ( CX$1B," 0B@ H,`a &!`X 0$!0Y 8&!8Y$ ( J! 0B@ , e B! Y 0D!0Y 8B!8Y$( J!2B @ 2B DP !  C$1B 0B@P(,`` X!`XX 0!0Y 8!8Y$ ( J!0B,@e D!@Y 0@!0Y 8D!8Y$|( J!2B B2B @Pl a!  `C !0 X! H$1B$ X`!, # @!D D`C ! H x$! $@1BL(PBL *PT , ,X#(x .p\Bp\,, 0`B`, , 2dBd,@f 4!@X 0.!0Y 80!8Y @2!@Y H4! HY$| ( J!BBL B f@ BBL D  `f p i  @! f  P!( `/ X, , Bf 0"0Y 8!8Y H! HY J!B J! A! # !! p 0C$01B @! H8! H!$ $(@C$rf$( J! A ^&0 @1BB L D  `c p i  @! c  P!( `)x X, , Bc 0"0Y 8!8Y H! HY: J!B> J! ! p C !B,@f D!@Y `!0 B0 ,`,p,, 3?> J!2B @p q4 ! `&0  B! Y ! B ,`c !`X @!  ,`,p,, @$( J! !B, eB 2B D@Y !0   D2B H HXP8$$B(2B " X ! H BH"02B &`X &!L #e (@aPBeP*`2B ,X $X# e 2 XH$dBh62B 8X @ &t0  :!X 8!p #e <X <!x #e >a|Be|Lp2B 8N8Y @$@#@e PT@PY X!!  (8! e$ %B T! #e @@X A & 0  D!@Y @!! # e H HX H !$ #@e P`(B`e(2B " X $D#e (X !PT T( It! @$ %`\B (!`# e 2 X @ &h0  4!@X 2!d #`e 6`X 6!l #e 8apBep:2B <X $x#e 8N8Y @! (` SY! H$ X%B  N!H#`e `X A &0  @!Y ! #@e PT@PY P!T! #e @` B@e D2B H HX P $P$# e " X ! H H( it! $$ %0TB "!\#e (X `!`XB`X,BX(2B 0X 0!` # e 2adB@ed42B 6`X $l#e <X !| |( y! 0Y$ @%`B X <!0# e B Y 8A!pBp, DB2B HR HY H!R! #`e 0` Be @2B PT@PY @!   T2B H HX P!( ( (8! X$ %HB !XT# eV)$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ?" " X !0L BL"p2B .X .!\ #e (@aPBeP,2B 0X !d d02B 6`X `!p p( It! $ %|B @ 6!#e <X 0!` C<2B XV`XY X!V! # e BbBeN2B HR HY !0   R2B @@X A!  (` SY! P]$ P%(B !PI# e H HX X!, AH,P2B *X *!T # e "aDB`eD&p2B .X.@2B (@!PBeP,| L$aq ($eq  Р$pi q$ !p p, 8ps\ !| |,>1B|61B :X :!t c @P@uiW  !x cxL X! b 8N8Y 8N! ,`@c 00Y 8V!8Y HV! HY J!B J! H@eDT A!p p,`c !`X 0QO!` `,4 @!@Y $ ( J!2B @ a!  p ( H8!8 @$03B3B H$,@e$2B X`XX !D D02B &`X8$PLBP*`2B ,X !p\ B\,2B 0X 0!` # e 2adB@ed42B 6`X $l#e <XH$`xB|Lp2B 8N8Y @A &0  @P!@Y 8N!@ # e HR HY H!R! #@e PTbB`eV2B @@X2B @"B@eD !p p,D: 0L0Y8$ H 3r= J!1B B Y ! ,@g D!@Y  !0 B0 ,d @!@X H!$B$,8@!B@Y H! HY P!@PY X!`XY$l{, J!,L B r)PD !! H@x0!  !& 0 D0@BL  #) @ B , , H$B$,@, P(B(,@`,Hp,P, *H HR ,@, PT , Sz J!2B 8B8Y &0  @!Y0N!p:H, 3  +& 0  D!@Y a! #e @Y @p q `!0 0 , 00Y$( J! ! !&0  B! Y ! B ,`,p, #60 J!B3B @B3B BP !   ,$$( J!, a! , f B Y a `& 0  D!@Y0B!pB8Y$( J!@ # f B Y0B! HHPJ! 2B D@Y A '&0  @Y, 0L0Y 8P!8Y@$HxPJ! ! 8B@! A!   ,d @Y !0 0 ,8@! B 3. ${, J!1B B Y 0B!` `,p, ${, J! U0 `!@B  - 0~F`(!(e(@e(d1B@L B @bD2B@00B0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$( J!p (C a! @By! !, a! ,$t( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$T( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( @!D @fD$03B &`X &!0L H&8! !@P ( *T #) ,`XBpX,8`,$( J!L @B, b B Y !  D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$D( J!B3B @B3B BP  !  ,@  !&0 0 @BL H$#@, P(B(,`, X,B,, e " X4wd 8!8Y @!@YH"!!HX J!BNL @ # . B @ 81 `t0NL 0 B Y B L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX    BX@!VL "DBD,@fD$03B &`X &pL q !@P @P, 0(0Y$( J! ! !& 0  D!@Y !B,`,p, #, J! 3B D3B BP !0 0 ,$( J! , @ !   , f B Y  `&0 0  !`X0B!p B8Y$d( J!@ # f B Y0B! H8PJ! 3B D@YD"B@BNL B B!0@NL  #a @@X H '&$0  H! HX 0!` `,Hp,. @P , 3 J!0B @Y  _& 0  D!@Y 0@!` `,p, #= J!NL B , D  Bp q A '&0  @Y 0@!` `,  J! ! # e B~Ff3B@0@3B p i| @ !& 0 @@BL H@$#@- P(B(,`, X,B,, , "DBD,@d $@X 0!0Y 8!8Y @"!@Y H &0  HR HYP$!)HP J! L D  8D0! ! !&0  B! Y 0B!0Y$( J! ! 8@x! A!  D 81 `t01B1B@ , d H! HX 0!0Y 8!8Y$\( J!3B @ 3B DP ! `f H 8 H1 `t 0 @@g 3B X`XX X,q7 !D D, 0"0Y$( J! ! !&0  @!Y ! B ,`,p, #+ J!0B B0B @Ph !   ,`g `X H` `&$0  H! HX0!p$B8Y$T( J!@ # g B Y0B! HPJ! !! @! B2BDB3B B B`f@3B@3B HpH i\ P!( 6$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 3"(, sf 8!8Y@!HPJ! ,H@ ! ,$( J! ,@  _& 0  Dp s a!p p,+ @B,88$B@Y $L( A '& 0  D@Y ! ,e @Y 0D!` `,@@!HPJ! B3BD2B B~Ff3B@0@3B p i@ @!  , fH H 8$P1 `t H HX @  ` `,  J! B3B D B fBB3B@03B p i @! B , d H! HX 0!0Y 8!8Y$( J!@$ U0 `!@B  ) 2|F`(!(d(@d(c0L 0 b @B2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( @ '&D0  " X "!D H"8! `& H0  $!@X !L #b !T #f,pa3B.pAL .p\Bp\,e\09H@Ced42B62B8L 8pBp,`p:3Bp,C`p<L 8pBp,`p>2Bp,`pLL 8pBp,apN0B@P0BRBL @PB,a H@aDNL B 0,   L P(B`) X, ,,@PX !DBD,\ 0L0Y 8!8Y @R!@YH$!HPJ!,   BBNL @ #@. D  ` 81 `tNL H$B`X$ @L P(B(,(L X,B,, / "DB@. $ H ` PH1 (t $@X D$ !DBD,X`,p, #f' J!3B B3B @P !   ,$ ( J!T  '&0  B B. @ #@) D   ,@ D`s !< @@ '& 0  @@X 0!` `, Z J!0 B0 ,/ @B, 00Y 8@!8Y @ '&0  @P@Y $( J!3BB BNL D  E?#3B3B@03B p i@ @ '& 0 @!3BH@H 8$P1 `t H HX @  `" B 0L0Y$( J!3B B B@gD3B@03B p i @@ '& 0  @@X H@ '&$0  H HX H!$ AB$ P!( HyP! X$P,iW  $Ј(i $PHi( 8H! 0!0Y8$H%X J!NL B ,  0L0Y$L( J!4 $`Pi8 $)i70 ! `X! 0!0Y 8!8Y$t{, J! NL D   ,D 0L0Y$( J! !$`PiT H$u! 0!0Y8$H8$X J!NL B ,D  0L0Y$( J!d !  t8@P! 0!0Y 8!8Y$đ{, J!NL B ,  0L0Y$l( J! U0 `!@B  - 1xF`(! 2B(b (a(a 2B@L @B e B L D 0 , @ dB02B02B` 1! #@, D‹XD @8@0(CPyH@Ё"J#@ yP$ 0L 0 c(B2B 0@2B` H!$ #+ @ @bD1BP0B(B0B @!0 0! H`!$ Hx! a! , 8 )&p0  8N8Y$D( J!p (C a!  @Dy! !, a! ,$$( J! B,B 0BD '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $4( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( `!D @HD$80! @!0L cL(P1B *X +!PT X*! !@ #r !`X ( .\ #) 0`Bp`,8`,$4( J!L @B, b B Y !  E!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$( J!1B @1B BP $0@1B H!$ $(D 3Y! P@!( (,@T P(s p44 X@!, ,,\ 0L0Y$\( J! ( < A! , 0L0Y 8!8Y@$HXJ!$ A! ,  0L0Y 8!8Y@$HPJ! 0B 8D8Y 0QN!` `,@$HPJ!0B @Y 0a@!` `,p, # J!BL BB,@b D!@Y 0B!0Y 8D!8Y$E( J!1B @1B BP !   ,$( J!, A! , b B Y 0a@!` `,$l( J! B1B D@Y0D! HPJ!0B @Y 0a@!` `,p, # J!0B B Y 0aB!` `,  J! 0B D@Y 0AD!` `,p, # J! L @B, b B! Y 0@!0Y`$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* k"! 8B!8Y$TD( J! 1B D1B @P ! ,$( J! A!   ,b @Y 0AD!` `,$( J!B1B B Y0B! H(PJ! 0B D@Y 0AD!` `,p, #6 J!0B @Y 0A@!` `, . J!0B B Y 0B!` `,( 8Np p, # J! BNL D #. @ 81 `t0NL 0 BY @ L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  0B X`XX X!, `@,ANL "D "! ANL $H #`a &`X '&@P0  (!X 0'!` `,p,. @P , 3 J! 0B D@Y 0E!` `,  J!0B B Y 0AB!` `,p, # J! a! @8D0! A! , 0L0Y$ ( J!t a! @8D0! A! ,  0L0Y$( J!0B @ 0B D@Y 0QD!` `, j J!3B B2B@ B2BD00B `X 0a!` `, V J!B1B BB1B @p q  !! #n !0 0 , d H! HX0!p$B8Y$A( J!1B B1B @P !   ,$4( J!< ! ,$,( J!B2B,@d D!@Y !!B,`,p,, 3> J! ! @cD0B B Y 0AB!` `,  J!B1B @ B1B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$@( J!1B @ 1B DP ! ,$L( J! ! ,$D( J! 1B@ , c B! Y !B,`,p,, 3> J! !  8D ! $rf$( J!| ! p 0C !! @@y!  a& 0 D0@2B@L @  e HH iW  P@!( `d( !D @/ $H ,`d 0&0Y 8"!8Y H"! HY2 J!B6 J! ! p (pC ! , @s  A!  `bl @!  , ` H HX P!(B(,@ 0L0Y8!(B@Y $|}|, J!B1B BB1B @P, !   ,D01B"L H$ $,@d P!@PX H!P$ #`)D X, ,, c "! X X@!, #@)D $ H  H,@B$0"L &0L 0L,`&@"L (@P @P,B(P"L *PT PT,*`"L ,`X `X,²,p"L .p\ p\,½.0B 808Y 0O!` `,@$HXJ!1B B Y ! aA!`H @@!@Y $z, J! B0B DB0B BP( ! ,`b `X0@!pB 8N8Y @!@Y $dz, J! B0B D !! p PC &0  @R( C @!0 0 ,`@ `X0!p"L 8Np p, # J! BNL D # . B 81 `t0NL 0 BY @ L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  0B X`XX X!, `@,ANL "D "! ANL $H #`a &`X '&@P0  (!X 0'!` `,p,. @P , 3v J! 1B D@Y ! @DD1B @B`c !`X 0@!0Y 8!8Y$( J! ! p PC !   ,$$|, J!${, J!0B @Y 0A!` `,p, $b{, J!1B , ue8$B@Y $<( J!< !  c@0B B Y 0AB!` `,  J!B1B @ B1B Dp q  ! #n !0 0 , c H! HX0!p$B8Y$9( J!1B @ 1B DP ! ,$( J!t ! ,$( J! 1B@ , c B! Y !B,`,p,, 3> J! A!p p,< 0L0Y8$ H 3J= J!1B B Y QC! c@ 1B D@Y ! , 8aQ!p p, $dz, J!p C &0  @R(C ! , DB B1BD !0 0 ,  P@AW_(1B X`XX X!, ,, 2 !H # + "DBD,X8!DB@Y $L{, J!H= J!0B @Y 0A!` `,p, $d_{, J! A! ,D  0L0Y 8! B&p0  8N8Y$( J! BNL D #. @ 81 `t0NL 0 BY @ @L @ B , 0NL 0 B . H$ @ P$P1 (t H$ HX  0B X`XX X!, `@,ANL "D "! ANL $H #`a &`X '&@P0  (!X 0'!` `,p,. @P , 3v J!H*= J! 0B D@Y 0E!` `,p, $]{, J!1B , ue8$B@Y $( J! U0 `@!@B  1 3|F`(!(g(@f(fB2B@L B @bD3B@00B0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$( J!p (C a! @By! !, a! ,$( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y00ӓ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* @"2 @ '&0  @P@Y $( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @HD$8p! @!0L `L(P0B *X *!PT X*! x!< #r !`X ( .\ #) 0`Bp`,8`,$( J!L @B, b B Y !  D!0VL 0 B0 ,( 0L` `,p,  @P@Y HD! HY P!@PY$( J!B0B @B0B BP $03B H!$ $(D 3Y! P@!( (,@R P(s p44 X@!, ,,Z 0L0Y$( J! ( < A! , 0L0Y 8!8Y@$HXJ!4 ! , Bp s` !   ,@D2L @#`b `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 X1B " X "!D ,@/d $`H `,Xp, X,XPJ!B J!L A!p p,/d @B,D= 0L0Y8 $B@Y $ ( J! A!   ,! 0L0Y 8!8Y$( J!2L BB,g @!Y 0B!0Y 8@!8Y$\/( J! 0B D0B BP ! ,$( J!| A!   , g B Y 0aD!` `,$d( J!3B @Y0@! H8aPJ! 0B D@Y 0aD!` `,p, # J!0B B Y 0aB!` `,  J!0B @Y 0@!` `,  J! 0B D@Y 0aD!` `,p, #~ J!| ! 0@! !  `@x@! @@!  ,B 0L0Y$( J!B3B@H $  & 0  D!@Y ! #c1B 88Y 0N!` `,@$HXJ! H eB a!  p  C !0 H 88! H N&$0 H2L PH(#`a X`XX 0a!` `,  J!3B @3B Bp q   & 0 D\ !0 0 , /d H$B$, 8!8Y$-( J!0B @0B BP, !   ,$( J!2L @B, /d BB,@/d D B ,`,p,, 3= J! a$p q ! , Bsd !   ,@D2L @!# b H HX H!$ @.8 P( X( ! X N&,0 X2L "XD# & H0 $01B &`X &!L ,/d (`P `,p, ,PJ!BJ J! H gB A!p p,`e !`X @ ! B , d H! HX P!(B(,D= 0L0Y8a$ B@Y H! HY P!@PY X!`XY$( J!3B @ ! , Y a! # `!0 p @K H!$ $, H$q7$ P` &(0  P@PX X!, @S,"L "D D, " "L $ H  H,@B$0"L &0L 0L,,d (@PB@P,`P&P1B *X0*! HXJ!2B @2B BP,  & 0  Ds70 !0 XP! H!$ $,@c P@PX0!pB8Y @!@YH!B@PY$z, J!2B @ a! p K !   ,@D01B@2B H$q7  P!p( p,`d X`XX 0N!` `,@!HxLPJ!t$ !p p, /d BB,: 0L0Y8i$B@Y $Z( J! 1B D@Y D!   ,4 A! #+ @B,8A!B@Y ${, J!2BB$ !   ,$( J! ! ,D 0L0Y 8!8Y@$HXJ$rf$t( J!L ${, J!1B B Y 0B!` `,p, $4P{, J! U0 `@!@B  % 1~F`(!(f(@e(e0L 0 b @3BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$|( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$\( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( `!D D, b" 1BD$01B &Lq `!@P @P, (PsWd `!PT PT, *Tq `!`X `X,,p1B .X .!p\ xX.! `!` `0!nL 2dBd,@*ܘ 4hBh,`,p,, 3  J!2B @Y a@! # 8 (! a!   ,@ Dq7 a! , B01B `X !0 X! @`! @`!nL H$B$,@*ܘ P(B(,@`,Hp,P, 3 J!2B @Y a@! #B 8 (! a!   ,@ Dq7, a! , B01B `X !0 X(! @`! @`!nL H$B$,@*ܘ P(B(,@`,Hp,P, 3Z J!2B @Y a@! # 8(! IS$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* R"CH0(y! X((! a!   ,@ Dq a! , B01B `X !0 xP! @`! @`!nL H$B$,@*ܘ P(B(,@`,Hp,P, 3 J!2B @Y a@! #r 88(0! a!   ,@D a! ,  Bq7P `!0 0 ,`1B @@X @! X p! H`!$ H`!nL P(B(,`*ܘ X,B,,H`,Pp,X, 3 J!2B @Y a@! # a!   ,$dj( ! ,e @Y !   ,8@!B 3n J! U0 `!@B 1~F !(f0Hd L H$ b$@03B0B 0B A! 0@! `!0 Hx! @`!  ,@ ( )&P0  (J(Y$L( F!p (C a! @@y! !, H`!$ $,H$,( F!0 B0 ,0B @ H '&$0 @NL P( ` 8(X1 `tPNL "DB@PXPD L $ HB H,HNL P(B`. &0L PL1 (t $`XP(& P0BPT,@APT`ANL ,`X ,!pANL .\ #a 0X '&d0  2! X 0!PdB(Y 0 '&`0  0L0Y $<( F!0B @p q4 `!0 @y! @!, H`!$ $,H$ ( F! ,@0B @$ @!0 8(! H!$ $, AOH0B$, X@!, ,,X1B," ! H  H,@’$02BH&@2B (Pq !PT PT,$l( F! A! 8@! @!0 0 ,``1B 1B H$q7 P@!( (,@P P(sWd X@!, ,,`Y X,q @!D D, " 1B $@X $! H xD$8! @!0L `&!@nL (@PB@P,*ܘ *PTBPT,@,P,`, 3 F!2B @Y a@! #f 8 H! @!0 0 ,`  q7P @@!  ,A@1B H HX H!$ X p! X@!, X`!nL "DBD,@*ܘ $ HB H,X@,P,`, 3f F!2B @Y a@! # @!0 0 ,$De( ! ,`d `X @!  ,(!` B 3> F! A! ,D@02B@2B @ B d $ P!( (,P$D( F!D ! ,` @@@O 3B H HX ! HHPF!U `!@B xe"1~F!BXD!0L  h A! # A! 0B! HPx! P! Y )& 0  d@Y$( `!p (C@Py! !$ P! Y$( `!  B , @D '&0 @BNL B ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #/ *PTBPT, @,@ ,`. f0 0, 3f `! 0B Dp qH @Py! !$ P! Y$( `! B, @@\$ A! 8B !  ,@DD00B$ H@!$ $, H,@aP P(q7 ,`X X,swT ,  "Ds  ,@$0B  R!@Y &!`Y $ġz, `! BP !B,@YD,@Q X!P,# Y "!D #@Y $!H #0,`Y (!@P P&`,B ,!`# Y,@4!dBh2,`6bBY8"Ba !xBx,*ܘ >|B|, ,@ ,`0, 3 `! BP< !!B, h,@` ,`X0,@, C"C `!p ( Cz  ,d@ bBD,``Y !0  !0B @2B P@PX P0!`) # h, R `! 8 "0! a!#@ i!#` @l! # e,@aP P(q7 Z! Y X!@Y V!`Yb? ,@ °B  R!@Y D!`Y $̟z, `! BP X! rL D B , ,@ , # `!2B B,@ 2BD0@L 0 B e H! HX P@!(B(,`- X,B,, e "! X0 , H,@P ,`X0,@,P, S `!"L B ,e @!Y B! #@`Y  !0 B0 , h,@& V!`Y aD!@ @,P, S^d `! Be @!Y @! Y$ ( `!p q CZ ,@dDbBB,``Y !0  !0B @2B H HX H0!`% #6 H"9! ,@QB R!@Y !`Y $z, `! BP, ! B,Y@,@1 X!P,# Y "!D #@Y $!H # 0,`Y (!@P P&`, ,!`# Y,@4!dBh2,`6bBY8"Ba !xBx,*ܘ >|B|, ,@ ,`0, 3 `! BPd !! B , h,@` ,`X0,@, C `!p ( C , dBbB@ ,``Y !0  !0B @2B P@PX P0!`) # h,  `! 8 "! ,@ B1B@,`Y,@ X!P,#@Y $!H #`Y &!L # @,`Y *!PT T(p, .!d#@Y,`6!hBl4,8bBY:"Ba !|B|, *ܘ bB@, ,@ ,`0, 3F `! BPP( !!B, h,@` ,`X0,@, CU `!p (C A 4& 0  D!@YHD8! $03B0@2B`0 , f !@Y$`( `! BP ' [P$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "T sf !@Y B!`Y $ܻ( `!, !!   ,D@2B @@XH$$ B$@2B X`XX$ A,BD$0A2B &`X &!PP PT'T(`A2B ,X !p\ p\,d 0X !d d,@C4Hsl8qHct<AeB2A2B >X !! ,@d d@Y !!0 0,hPHlpsHp0BfL BB`d 0 B. @B,@Db, ,@ ,`0,@, CJ `!B Y$( `!B2B @Y@ L D B , d B Y  B! ) h,@X ,` @!Y D!Y B!Y$D( `! Bd @Y !@!` @d D@Y !! , $ B $R Z! Y V!@Y !`Y !Y l!Y$pB,  `!B2B @"B h,@X ,` ! c&@0  hY !Y @!Y &p0  nY$m( `! , `Y B! B!2B@B Y$|( `!, dBbB@ B2B D@Y 1D!` # 8("! 0,`@2B@ , h,@` ,`X0,@@, Cҡ `!p ( C , dBbB@ B2B D@Y 1D!` # H0"9! 0,  sW H` &$0  H HX P &(0  P!@PX Hp!P$ # X` &,0  X`XX ,@ $ HB`YH0,`&@A2B@P, h,@` ,`X0,@, C `!p ( Cj , dBbB@ ,``Y !0  !0B @2B P@PX P0!`) #F H8"9! ,`Y A2B@ H, h,@` ,`X0,@, C `!p ( C , dBbB@ B2B D@Y 1D!` #xU `!@B u*1~F@!B`P$L @ x A! # A! 0@! HPx! P!Y )&`0  lY$Զ( h!p (C@Py! !$ P!Y$Ķ( h! B, @@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #/ .p\Bp\,@P,`,. np p, 3 h!0B @p qH @Py! !$ P!Y$( h!0 B0 , @\$ A! 8@ ! , AOH0B$$ X@!, ,, H, Š h"q$  ,` &_P&PBY$D( h!8Z ! , @s 0,``  qw ,a@ @R!@ , IB R!Y !Y $ܒz, h! BP8 !0 B , Y, R !H#`Y &!L #Y (!P #P,hY ,!`X X*, C 0!h#`Y,8!lBp6,:bBY<"Bi !PB,*ܘ l`B,P,`,p, 3  h! BP !!B,xP,h`,Pp,, C; h!p C,`dbB @,@hY P!( P!0$B(A2B " X 0"!hE #@P H @90! `!H#` h!P#" l!X#e.,c 0`qw ^!Y Z!Y T!Y? ,@0B R!Y !Y $z, h! BPH Z!rL H$B$,P,H`, #j h!02B , JH2B$L X,B e "! X @! HB H,`* &0LB0L,e (!X,,P,`,p,, X, S. h!0"L 0 0 ,e @!@X !@ # hY P !(B(,xP,& T!Y a! , P, S\ h! B`e !`X !Y$( h!p C0,d@0` B ,@hY P!( P!0$B(A2B " X 0"!hE #@P`Z! ,@Bh$ BH ^!Y$( h! PU?#, `p s0 ,  bq7  !!B,xP, T!Y @!Y$h( h! B@p!\ 8 `P! ,d @!Y ^!Y$pBY b! , , SR\ h! B, ``sD ,  bs78 ,d @cw, 0,` `@R C,@I X`X@O,PBY$l( h!PBY$t( h! XT!,ƀ `p q XW?# ^!Y V!Y$L( h!, b,$ @$R ^!Y V!Y !Y !Y t! Y$B`Y @!Y $ ( h!8 \P! , d b! Y ^!Y$pBY `! , , S[ h! BxH0\8! , @DR@C,  b`@O b< `C,@dP$B(@2B X`XX X@!`- # ^!Y$T( h!PBY$\( h!U `@!@B  9 1xF`(!(e(@d(d0Hc @L B0 @, D  `g3B@3B ! # + B @bD02B0B @0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$( J!p (C a! @By! !, a! ,$t( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$T( ̞E$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 3"eJ! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D @bD$02B &`X !@P @P,8(!HYPJ!0B @0B Bp q  @!@X  A!   ,$( J!B2B @p s A! ,  Bs A!  ``1B @@X @ ! # b H HX P!( P !`HH @!@Y $z, J!2B @2B BP A!   ,$( J! !!B, eB 2B D@YD2B @@XH$ B$2B X`XX X!, # e " X "!D #@e $ aHB`eH&@2B (X(`2B ,X$XB\02B 2 X 2!d #@e 4@X 4!h #`e 6alBel82B :X !x x,C <t#e 0L0Y8$BP2B HR HY P!! ,@RPT"BR2B XV`XY X!V! #e `XbBeZ2B @Y@2B B"B`e 1B D BBd @!@X H 7&$0  H! HX 0D!0Y 8!8Y @!@Y $d( J!1B @1B BPL !  !E!0nL 0 B0 , *ܘ H$B$,`,p,H, 3 J!1B @Y !A! # e B Y0B! HSPJ! 1B @D@Xz !B, eB02B `X H!$ $2B X`XX$ ,BD$02B &`X !@P `BP&P2B *X !`XB`X,X*p2B .pa\Be\02B 2 X22B 4!hB`eh6 !p  9!ЁL :tBt,c <!X 08!0Y 8:!8Y @<!@Y $( J!p 0C ! B ,*` @B,`,p,, 3V< J!p K ! , B B0BD !! H@x@%  !0 0 ,`0B  P!( X! X!, ,,`YX(L "D h,"8! @! H  H,`` &`X0$!pLB # J!B1B B B1B Dp q A! ,`b `X0@!p B #b ! #? !   ,@DD0B@4$  !0 0 ,`@@0B $ H!$ H !nL P(B(,`*ܘ X,B,,H`,Pp,X, 3 J!1B B Y !C! # 8B! A! @! B0L D B ,`,p,, 3R< J!p C ! , BB0B@ !!  HDx !  !0 0 ,`0B  P!( X! X!, ,,`YX(L "D h,"8! @! H  H,`` &`X0$!pLB #" J!B1B @B1B Bp q A!   ,`b `X0D!p B #^ ! #? ! , D B 0BD4$  !0 0 ,`@@0B $ H$1B$$ 8A! H$Ay! X`$-qW @!D D,  "Ds & H0  $Hq @!0L 0L,b (X0&!pPB # J!2B B Y !   ,a @Y !@! `a `X @@!  ,!@ @!@R0B!pB, ,@X,``! BhY $̤( J!BBL @#   c& 0 D0pH( @ # e H HX P!( ,`, X,B,,H8P!H ( HR ,@,`X,+ `X , sV J! A! , a B Y !   ,8B!B 3 Z 8"! A! ,@B0BB 2B D@Y  !0 0 ,8!HGPJ!1B @1B Bp q A!   ,$( J!B@X A! , a B Y !   ,8B!B 3B A! , b B Y0@!pB # J! 2B D@Y ! , ` B Y !B! `` `X @ !  ,!@ @!@R0D!pB, ,@X,``! BhY $( J!BL B @, D#  c&0 0 pH ( H@$#@) P(B(,`, X,B,, , "DBD,P`,Xp,, ,d HR , C6 J!L B @* D   81 `t2B@02B `X @! , , H$B$,8P!*H * HR ,@,`H,+ `X , s J!$1B@ A! ,  Bp s< @!0 0 ,a @@X H!$ $,8!$BX A! ,@a D@Y ! ,8D!B 3 z 8B! A! ,@ B0BD02B `X @ !  ,8!HAPJ!1B B1B @p q A!   ,$Ԡ( J!B@XN ! , B1B @Y !  !E!`H @D!@Y $l{z, J!2B B2B @P A!   ,$d( J! !!B,e@ 2B D@YD2B @@XH$ B$2B X`XX X!, # e " X "!D #@e $ aHB`eH&@2B (X !PT PT,B *P#e .X$\B`22B 4@X !l l,`6!hBl42B 8X 8!p #e :atBet<2B >X>`2B 0L`"BeN1B @PBB@d PT!@PY X 7&0  XV!`XY 0R!0Y 8T!8Y @V!@Y $$( J!1B @1B BBB@*ܘ D B ,`*ܘ 0 B0 ,`,p,, 3r J!1B @Y !A! # c BP` !  `q fHx8! @@!  ,@$( J!1B @@@X A! ,@`\L$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* s"v D@Y !0 0 ,8D! BhX A! , ` B Y !   ,8B!B 3:  A! ,D @`s !! ,  Bq7p A!   ,`a `X @!  , e H! HX0D!p B@ H! HY$]( J!p  C A! , eBB@ 2B D@Y @!0 @ D2B H HX P@!( (,@PP`$B(@0B X`XX !D D, b " DB@bXD$ @!0L 0L,a (X !PT PT,8(!TB 3 $1BB A!   ,$( J!1B @@@X U0 `@!@B 5 1zF@ !(e(@e0@2BH dB3B ! # + B b02B0B @0B A! 0B! `!0 Hx! a! , 0 )&`0  0L0Y$ ( H!p (C a! @By! !, `!0 0 ,$( H! B,@0BB  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $( H!0B @p q4 a! @By! !, @`!  ,@$̚( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," `! H  H,`e &`X($!`LB #& H!1B @1B Bp q$ `!0 0 , e H HX(!`$B # H!2B @Y A! ,`c `X  ! c @@X H!$ $, !H H !HR(@!`Bp,, P,@X!$B`Y $( H!BL @ , B#` @ c& 0  pH@( PH(#`+ X,B,, , "DBD,@, $ HB H,XP,`,p,-P @P , C H!L @ , B  81 `t0@2B2B @@X H@!p$ p,@, P(B(,@0N!pH- @P , ,@P,`+ XV , s H!BL B , @#` @ c& 0  pH@( PH(#`, X,B,, /P "DBpD,XP,8`,4 $d{, H!L @ , B  81 `t0@2B2B @@X H@!p$ p,@, P(B(,@0N!pH. @P , ,@P,`+ XV , s H!BL B , @#` @ c& 0  pH@( PH(#`. X,B,, , "DBD,@, $ HB H,XP,`,p,.P @P , C H!L @ , B  81 `t0@2B2B @@X H@!p$ p,@, P(B(,@0N!p"H/ @P , ,@P,`+ XV , sz H!(L B p PC !#` @ ! # P!H(#6 X!,B,, d "!X (a &P0  (J(Y 0!0Y 8P!8Y@$B HY$( H! H4d@0pH!d  H`!$ $,@e 88Y X!,B,,H0N!p*H( @P , ,@X,`+ XV , s H!U `@!@B PEd)dԌb`@2!(c (c(b (b(a  Had@3BB 3BD0B3BF@3BH2B22B@BL B ‡XD D8A0(1 #3y D1JD!yȐ2 L @ ddB B2BD2B ! #) H@0 * 2d cB 1BdD2 B  !Ȁ #`* FXD B80@0(Ac@yBAJC$"!y L 2d b @B1BdB2B  !Ȉ #`+ F00 , H@ `a0B@2B Q! # + 2d @bdD01B00B F@0BH A! 0@! a! HBx! `!d d, h )&0  hZhY$̓( V!p (C a!  @Dy! !, a!@ @, $( V!0 B0,F0B@  '&0 B BNL D  8 1 `t0NL 0 B@Y D @L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  0B D,`@D ANL $ H $!0ANL &L #a (X '&PT0  *!X`(!TBhY p '&0  p\pY $( V!0B @p q4 a!0 @Fy! !, a!@ @, $( V! B,B 0BD$ A! 8@(! !0 0,`DF@0BH, @!0 0 ,1B  P!( (,P$( V!1B Bp s H$C9@! !  D!B1B @Y !0B0,, pF!pY $!( !!@ # ` BP@ !  HDxp! ! ,D @sw( !0 0,` Fq !0 0 ,$T( V!B@XB  !@ 8H`! ! ,@g D@Y`B!B # V!3B @03B F`Y 1F!0 F8@B ! # !  @D!  !0  (C H!$ $(C P!( (,`g X`XX !D D,Ph!DBxpX ! ,`g F`Y ! ,hF!BX:  $ B2BD 3B@ ,d hD!hY$.( V!2B @02B FP ! , sf h!hYpB!H PV! ,"@ !@ @,H3B @Y$ BB03B `XH$@ B$3B X`XX @•_H03B &`X !@P @P,g *X !`X `X,B.H s`2qH`ch6`AYB,3B 8X'_$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " !t t,g <X !| |,XH\rH`}B>3B @@X  & 0 D B@3B H@"Bb @Y `H!`Yh@!HPV!1B BbB`g F`Y !   ,,pD!HCP !@ 8H0! ! g B Y B! B 02BF !   ,`e `X @! ,h!B$)HPV! $0BB 8$Ex! !! (`C !0 0,$( V!B@Xf ! , D  B`sd !@ @,# Hq7T ! ,f @Y !0B0,hh$B, C  V!p C ! ,g HBB 3B D@Y ! @D, !0 0,` H H@O$ P!( (,@T@3B`X,, d," 2B $@X$@2B (X$`PBT,p2B .X .!\ #d 0X 0!` # d 2adB@dd42B 6`X !p p,C 8l#d <X$xB|X2B hZhY p! ,rp\"BZ2B x^xY x!^! #d `cBd2B B YB@2B H@"Bd@ 1B D@Y !0  !H p!pY $Tdz, V!01B F0BB f B! Y 7&0  @!Y `F!`Y hB!hY p@!pY $( V!@0B H 1B D BB`*ܘ F0B0, *ܘ BB,,,, 3 V!1B @Y !A! #a H P@ !  `C !0 0, g B Y !0 0 ,hB! B8dX ! ,g H Y !   ,hH!B}Xf A!0  q f8B@! ! ,$( V!@0B H Y`H! H8PV! ,(@ !   , f B~F`g F`Y F!0 F!B,, 32 V!1B @bBg H Y `@!`YhH!H(?P$0BBl 8E8 ! !0 0,`F1B @Y !@  !I!H pH!pY $az, V!2B B 2B DP !0 0,$ĉ( V! !B,dH2B B YB02B F`Y$B 2B H HX H!$ #@d P@PX P !( #`d X`,B d," 2B $@X$@2B (X$`PBT,p2B .X .!\ #d 0X 0!` # d 2adB@dd42B 6`X &p0  8l#d <X$xB|X2B hZhY p &0 p\"BZ2B x^xY x!^! #d `cBd@@2B H YH2B B"B@dD0@2B`0 ,d 02B F`Y H!$ $F2B X`XX$ ,BD$02B &`X !@P `BP&P2B *X !`XB`X,X*p2B .pa\Bd\02B 2 X22B 4!hB`dh61Bp,dp:2B <X !| |<2B hZhYp$B^2B @Y ! D@@2B H Y !B, H 2B D bB`d2B @@X2B H $B@d$01B F0BB`f X!`XX !DBD,,X,, 3v V!0B @0B BPL !@  !I! nL D B ,`*ܘ F0B0, ,,, 3J V!1B @Y !A! # c B Y`B! H PV!@0B @H@X: !   ,D01BFB1B @Y@B1B Bp i  !0 b  P!( `b X`XX X!, , Bb `"`Y h!hY x!xY V!B V!@1B @,@b D!@Y `H!`Y hD!hY$( V!01B F`YF0B@1B B YB@0B Hp i  a!  `a @@!  b H HX H!$ ,@Aa ``Y h!hY x!xY V!B V!0B,`a F!`Y `@!`Y hF!hY$\( V! A! p C !@B@,@d D!@Y `H!`Y hD!hY$,( V!2B,`b F!`Y `@!`Y hF!hY$( V!0B B@0B H L D B ,@ ! !A!0L F0B0,`c !`X `@!`Y hF!hY p!pY $( V!p pC !B,@c D!@Y `B!`Y hD!hY$( V!@1B @,a @!Y `H!`Y h@!hY$|( V!00B F0BB L D B , !@B@,*` @B, ,,, 3R< V!p K !0 0,`F3BB ! B ,f H! Y `D!`Y h &0  hZhY pH!pY $L( p K ! , f B Y`@!B # V!02B F 2B Dp q !@ @,e @Y`H!BX? ! !C!0L F0B0,@d D!@Y `B!`Y hF!hY pD!pY $( V!@0B H$ ! !A!nL BB,`*ܘ F0B0,,,, 3f V! 1B D@Y !E! # A! # 8DE(! $@a7 !0 0,$( V!B@X ! ,@@3BH ! B , a B Y !0B0,, pF!pY $d( p C ! ,f H Y`@!B # V! 2B D2B Bp q !0 0,e @Y`F!BX?  $ 0BD ! ,$( V!00B @F@XPU ` !@B  9 2|F`(!(b(@a(a0H` @0BB 3BD0Hf @2BB rH`eH eB02B L D  b@1BB00B0B@ A!  0D! `!0 )$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "Hx! a! , 8 )&p0  8N8Y$̀( J!p (C a! @@y! !, a! ,$( J!  B ,D0B@  '&0 B0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a!  @Dy! !, `!0 0 ,$( J! B,B0B@$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D D, Š" 3BD$01B &`X0&! HPJ!0B@H   $q ! #b0B H HX P` 9&(0  P!@PX0!p(B8Y$~( J!B1B BB1B @p q4 $0@3B2B H$,@a P@PX X e&,0  X!`XX 0!0Y8!,B@Y $l~( J!2B ,f@  A!   ,`/ 0 B0 , 8!8Y$<~( J!1B @1B Bp qT ! #`b 0~F b 2B@P(,`a X`XX !DBD,P`,X @"!@Y $}( J!2B, / BB,`,p, # J! 2B@ ,f@ A! `f @`! 8 ! P$@0B(< h$@Dq !H #`f &`(Pw &@P0 (PA1BP*$ @ &`X0 ,pA1BX. !` h0x! !d d, 2A1B 4hq0 !l gl83B:1B <X !| |,8>!HPJ!0B @ 0B Dp q, ! , D B03B\$ H!$ $,H$|( J!B@X ! 8@(! !   ,$l|( J!H @  &0  B`sT ! (0C !   ,`e !`X0D!pB8Y @!@Y H! HY P!@PY$z, J!1B B1B @P !   ,${( J!1B @B@X& ! p @C  & 0  Dq7 !0 0 , ` H HX0!p$B #ƽ J!1B B Y ! ,@g D@Y !D! `g `X @!  ,!@ @!@R0B!pB, ,@X,``! BhY $${( J! BBL D#  c&0 @0pH( @ # b H HX P!( ,`, X,B,,H8P!H ( HR ,@,`X,+ `X , s  J! !   ,g @Y ! ,8@!B 3^ 6 !   ,@d Dp q4 ! , g B Y !0 0 ,8B! B:X !   ,g @Y ! ,8@!BXTX !   ,` @Y0D!pB #޼ J!1B B Y !   ,g @Y !@! `g `X @!  ,!@ @!@R0B!pB, ,@X,``! BhY $Ty( J!BL @ , B#@  c&0 0 pH ( H@$#@) P(B(,`, X,B,, , "DBD,P`,Xp,, ,d HR , Cn J!L @ * B  81 `t 1BD01B `X @! , , H$B$,8P!*H * HR ,@,`H,+ `X , s J!$B0B@ !   ,$$x( J!B0B @@@X U0 `!@B  % 1~F`(!(f(@e(e0L 0 b @3BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$w( J!p (C a! @@y! !, a!   ,$dw( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $tv( J!0B @p q4 a! @By! !, `!0 0 ,$Dv( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D "! 2B $@X 0"!0Y8$!H P A! A?# 2BD3B B Y @! ,8P! H 3º J! U0 `!@B  ) 2~F`(!(c(@b(b01B `X1B @Y@0BB a!  8D! !0 0 ,a @"B 8P!8Y@$ H C"= J!0B B 0B Dp s ! ,`a  # a H HX HP!$ @a$|$ X@!, Hx! @!@X !D D,@a @$@D # U0 `!@B 3~FP x= #P ` #P x@= #`b `XB0B @B0B Bp q  @!@X !!   , Dp q  !0 0 ,`0B @D ! ,B0B 0B D@Y 1D!  `` !! 8@! @! 8P! ! , B00B p q< !   ,@DD0B@$ @ !  ,AA@0@0B B0B Bp q !! ,@ 0BDT$ @!0 0 ,a @@X !  0 8x! ! ,@b D@Y @!  ,AA @@ # @Dp q ! ,`` `X$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* A" P!0  B@$$ ! ,@B@X`!@B 3~FP x= #P  #P x`= #a@B0BB 0BD0B @p q ! , Bp q4 @!@XF a!   , Dp q ! , @`s  @!@X a! 8B@! !   ,D0B@@1B @@X !  ! , @p q a!  `0B B Y QB! a@ @`!  , @p q$ a!  `@0B B Y 1B! a0B @Y !  @T @`!  ,@@0B B0B@ B0BD0B @@X @P! a B ! ,@`DB@1B @@X A! AA0B @p q( !   ,`@ bB D0B B Y ! ,d @ Ba !!  8D(! @ !  ,b@ B A! 8B(! A!   ,b@ B D@$`!@B  2~F@ !(c(@c01B `X p qh ! ,@0BB @!0 8! A! ,D@B1BB00B 0 B (!(Y$|n( H!0B @bB (@!(Y$tn( H!Hd@0B,d 0@!0Y$L ( H!B1BB0B@d$ !0 0 ,`1B 1B H HX HP!$ @b$1B X`XX X0!, a," A1B $pH q !0L 0L,b(0LBP& !PT H*x(! !`X `X,b.`XB\,l !` `, 0`qW !d d,@b 4d # `!l l,b8alBp6 !t t, :tq `!x x,a >X >!| ??#P2xB|J 0!`  0L!PBP, f H!1B @bB (@!(Y$l( H!Hd@1B,d 0@!0Y$l( H!H0d ! 3~F !(b01B `X 0!0 a  a! 8@! `!0 0 ,`@0B 0B @"B @! Y$$l( F!0B @bB @! Y$l( F!H`b00B`0 ,b (!(Y$( F!0B@00Bd$ @!  , a@1B P@PX @0! #U `!@B 053|F8!(`(@`(g(@g(fB2B@2BB 1BD00BF@B0B H Y I!@ a@0B B Y C! @fD03B F`Y@F! HHPN!B0B @"Bg H Y a!B,,   PB!@PYj? !@ #`c FP< a! H@xh! a!@ @,D! Hsw$ !! ,  Bq !0 0 ,$|j( N!D a!  8Dh! !0 0,e @Y@F!B #* N!@B2B H2B B Y 1B! 8B! $02BF ! HtA9! !0  C H!$ $ C P!( (,`e X`XX !D D,PH!DBX !@ @, e B Y !!   , HB!Bx0X $0B@2B,a H@! HY$( N!@0B H0B BP A!   , sf H! HYPD!HXPN! A!0 0,F@2B H Y$ BD02B `X@$@ B 2B P@PX  _D 2B $@X @!0L 0L,e (X @!PT PT,B,pHs\0qH@cd4PAUB*2B 6`X @!p p,e :X @!x x,>H RrH`VyB<2B `X"Bg @Y @X!@YH@!H8PN!0B0B F0"B e B Y a!   ,, PD!, a!@ HHx0! !! `e `X !0   @2B  P!( (,`d X`XX @!D ,PH!B``$)HhPPN! 8A! !0 pC ! C !   ,d H@~F`e `X !0  !B  ,@, 3 N!B0B @"B`e F`Y @@!@YHF!,  ! p @C !   ,e H Y !! ,HH!B8X !0 0, e B Y !!   ,HB!B)X 8A! !@ @C !0 0, Fqw !! ,@g D@Y@R!*H@ X!`XY`$)HX !! ,g H Y@R!H@  X!`XY `!`Y$, !0 p C !! C! 3B D@Y a!B,,  P@!@PYz? p C !@ @,`e F`Y@H!B # N!B2B BL !  p pC ! ,e H Y !!0 0,HH!B X ! p pC !   ,e @Y !!@ @,H@!BH&X !0 0,$d( N!0UP `@!@B  - 3|F`(!(`(@g(g2B@1BB 0BD0B @Y A! aB 0B D@Y D!  f@B3B B Y0B! HPJ!0B @B@g D@Y !B,`, @B!@Y? !@ #@c DP< ! HBxh! !0 0 ,`@  sw$ H!$ $, N H$q P!( (,P$c( J!  ! 8@@! !   , f B Y0D!pB #± J!2B @ !  8E! ! (C$0B 02B`0 ,a 8!8Y$,( J!B0B @ B0B DP !! , sf 8!8Y@B!HPJ!, a! fP$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "={3Bjc{H9[ݓ*`)_ ho |pU8c5%x# 04L*p˚IDS% wd5pkPNQl0ûy}2}bq! \,lJ}\H4CZ>L!Yd砹*!G|@RVc&;p@r=inXC[mPP6C e2Ł9Hcfq%,"", a 1@_@ Bga&` %I^7]pу#pOjY BQ\}tr>5x͆4n|8 aqd1)of/)bWGx:ِ00 Vxm,#*,[8Djȡ9@(O+ xS98)Dɥ~҃<(%{]E$m-DC8 _ ob=Sb× M&_adHMHTb" ]SsAJ"sHq˸AA,h5@&'n[5`v@WQ@0>@|H4 2[`J, 9ոD# P] ŸIt qpP8ӯeGAq EU4h]ar3ym[4%++wNŖc$` .w{KЁS&㋽h!e0.dl(yGT1@l`6AP4ЎD,]lQO`?t-Cij>#hi]be~Zk7(#_Yt) <".vm `uY@4<WF/@@j0.QpcQU ^H7x?q#K(w)).PoB=dCng\,$TzD]Jғ-:I8݇9~rxpޚ]ԣP Eu-^㚴)c<Y!y7:+PC080P b`.^U?%CcYD7${7)d lmV@x=}dUl`$?a= ̺ CDXpZ~2NB>.#Ğ^{С1_>QVȚ (1tUm`P_s9`cC% pώ@i X;sar$Yb$P;q+)I#0Gxॗ @:1N)To e0717p3VLI}dO|n2疁M8!йzPobTX2@] ɎF@HJ\8&-(`m lY!_m&P!}BkMȃ|P 7IV xAk(L )07' ]}1AD^H8Di!Qɤt*ٰ ~20># Y XWZ8M@h|pX2p#M/< q:`s ;`\EC(aeLD2PojDdѸi30&M41$0:V?Cf=80lUDHR ABz2.; պR#_I 衧Dp}iXآ\iH>[ XuڂFQ`t|l?? C/$fSjYɑh/CM/SǰdIP{hqQGiO,bq&] ])A>kr:g<Pװ2 H{@B| LjkDZ9HtƮ\ Nr jN0W`4~t䡪MGXK0Um5<`}_%J$c`T# G-kVT:K>'@6hr7&@e"D%D٘*``Xp`և@ƄcH%0 E^ɉTnK@l~FPa$0b\9|@4l5U(6`I?D1C&,dAE`wP_4 ?&+0\4Gk M2 / [Wo'P#&{EϨA3 /p`ȕOˆp^pqӡ3K$u)xMus40\ wP10̼QY|v}apHDS)4M';Ҥ0j[q^T ֆ]lxy@&,K M0m'8 p?p)yO!Q1ܘ5+dЁW PvN2pOM`@[NSQ3laCA G~$1p$#w1__S=bRI#1^B}`re=>"c(*!JoVX+k`@ c0B̹|$Qʤpry1 6:G~{~y+,@xQŊ`r5Ex`g{Yҳm~@SElu@sTLex"Y4\HyJn jpPY`IY`  0'`|HfC!pdJ+ٸhSk%2@<VQm"?4K *wZ0hw!d3@E f " OO7P#bB$-b62a7X&c %P0̜Ÿ`MHB`.Oiš Q8R +^X`22.[$qBqLeIK0`W Dx@qvB~`ni *f#}j$"_ =FV@ҽ1 2Cl3%`-!_`slFԐc5P -.+xDj P|@4UD:`·#@- 3by96A` M*nEA)35Gfl@GY]W1Vpc#mxLU5x=7``](v(w cHP+H Xcc@;| ,`c!W)R&b$+ q@xq$ RXFy1k!bS3Ѩr0A1z@(ȇ!p s 5 cYEi}3_E!0+p6 X )B Я x~dظ;)ZU`ְ! X@Y-37= ײ? T7UO3mhn9~ F5_(쵡KN f`!xEtoIKU0؃lj\,ӵ`!nX2` R U`Σ& ɇ4@L2PYg5K>G<A=Edcj8djh}5OK @4[rQfFb`a^S%%k{>@ǧ,:oHژ2  6+`lNှHn1MD;@w(& Hl&{T`$ r;;`Tc21@>W@4pk FuH`Cqo"ag: `R0ոZꑜ>{@HؤЋͯ"mTYQmGh%Sm3+`1N 0dfN<`$`&*^8Χ*K8f06 !Bk5q\] 8DK$".rIbwjBb1PbJ#jA7&H$SѦ빠s!̵f5 *5 *k@0 CƆk@Yٰv'RNJƪXᡱR$pb`Pa;:5wgD+bܥ@=`Tc 3%'+wБd͘I3p\`Z }PCu 0C ^ܬ K1@ $,e!C"!BA^lZ@Zmx1 q\1;qXh4%2C CS`p_m7i@4 /^$ /lG`- JRQWY60opC@Ld0XJ@DK *6irVd$'@ȵj@B]t  j%G pqyr Я65VN4TMxH#!P î` ahoţ" yaF3] AU La`RހyYf4p9Â6qlh@xpLݸ~'Apbr=\P fT)h=g$nrL##k^Hb>@y00acEYWQ~t_y9=U,"3r| \#E(zpLI=`4 S C@D' .T"YL_'9li<[?@] p6`cEu\:X2*b0K0aXWZ6p14 HZ 官K :r׹BcPc5I4JUQ)G#Y $*NJ4p [ -moa3q&-L0yR8%&xsVlRA@:I $06wQhN!:#Ls 0 ·"[`diY_d5Pue i^X"8@ D s{7e,Z/zHdHVVHsJXPh #*X0.PUjI rM*&C p~00 1XCgQw"1o)@XðI B%l  x#rR]4 (Qc:.QP&P3AeY 8(*S~oLTٟ3.eB`e]%p)l$} XC!MF: Cګ8qQ3`ddMccHp a,p&G£,X;5'p'8|| ={#FJ 0~Q"%Cn+7%4s#= *LP3ecK3sXN*qmD(u" ! z g~/rߚZ -[WN|R S8UDv|qLD7pWhJՀ42i`H5P$דH#H>`/׿BڅTC(#nGALEؕe4j$(F _\]PqyRccC~Ũ8]f]fiK*L_e=bQ@TT H1@J1*{$=VEx' cq7y<!6IMk R`@q;|̬W@=f8D8H*eW4dp\@/܎!v>B;Qn&2T^!LQœck&`'^!m9I;/Qw @2ir1hHT!A#ճPQu~=IND5(#c 5YrU00'=pT sMhb"M5 ._G! q|:IGR)"F;  S<6]-Q 2Π[R1mp`Ň-Yn6UPax1 iO$Ph\fPWxllKb!@2 0fq[@Z4 U>i-c ۼT2[ 3.{B{ sF|~h 5=v 8A6C@'H3-$+84.;tA2˃%TpXbp##7mɠ0򦼣I`1 Ę(en"PP#_$ſ~@hw rMS`G'8X3q6/M:"1fœ-`ĹZG`h.p]x^gQ;Vt  4 0^ L PNs8*hm鱴%3  ik7@"3XG@g\XÐ)ƣ@`KȌ`{[ru<8D31 w!WkǏ=@`YBiSd  2" Q#;= c 뀆%$w7C }@GL;{a4Oo_`4 ተ-dc!|bq)Cy\M !wЮ#0ՙSE^a }# r~M4̕xQ~,U"Xt JX Qw)a #Z f) LːDޜP]Pf?≻`y}14j.<`Ss .3S]4Cjg(/AmԐ$~z-0.`pDZ$'A# /,XE$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* x ",@2B B Y0$B 2B H HXP$@$B(2B " X "`_L"@2B (X `!PT PT,e ,X `!p\ p\,C0H@sd4qHcl8pA]B.2B :X `!x x,e >X 0a!` `,NH RrH@`BL 2B D "B`g `X 0D!0Y8!HPJ!2B B Y$BB 0B D B`e `X @!  ,`,@!, H!$ Hx0! P@!( `f X`XX X!, P( 2B(" ! H  H,`e &`X `!P ,8&!B P$)HhxPJ!$ ! , @ q ! B2BD03B `X @!  ,B @ B` @3B H HX P@!( P?#3B X`XX X!, X!`$BPp,X, 3R J!B3B @Y A! C?# 3B HD HY0@!pB8Y@R! H@$T( J! B2B DP ! , f B Y @!0 0 ,8B! BX 8E! ! C ! ,`f `X @!  ,B @#~F   B0 B2B 3B P@PX P0!( 8Be !XD #@d $,P !0L 0L,f (X @!PT PT,8(!TBX A!  8DX! ! , e B~F`f `X !0  !`Bp,, 3 J! !   ,@ Dp q ! qA!3B B Y 0@!0Y8B!, F !   ,e @~F f HB HY0D!pB8Y@R! H@$\( J!B2B BP !   ,f @Y @!0 0 ,8@! BX ! ,$<^( J! U0 `@!@B (13|F0!(`(@g(g(@fB2B@2BB 1BD00BF0B @Y A! aB 0B D@Y D!  `fF3B @Y8@! HXPL!0B BbB@g D@Y a!0B0,p, HF! HY? !@ # c BP< a!  HDxh! a!0 0,`D Fsw$ !0 0 ,`  q H!$ $,H$]( L!\ a! 8@@! ! ,@e D@Y8B!B #n L!0B2B F ! 8A`! ! ( C$00B02B`0 ,a @!@Y$( L!0B0B FB0B @P !! , sf @!@YHB!HPL!| A!   ,D2B @Y)$0B2B @@XH$@ B$2B X`XX @•_H02B &`X @!@P @P,e *X @!`X `X,B.H s`2qH`ch6`AYB,2B 8X @!t t,e <X @!| |,NH RrH`V}B> 2B D "B`g F`Y 8D!8Y@F!HPL!0B @bB e B Y a!   ,p,HD!, a!0 HFx0!  !0 e H HX H!$   @2B  X!, ,, d " X @!H ,X@"!B@X$)HPL!  $p qT !  C !!0 XFX! !0 0 ,d @#~F e H HX H!$ H!p B@, H, 3 L! ! C!2B @Y 8B!8Y@@!l,  5$p q !0 C a! ,  Bq`C!2B 2B HH,P P!( (,`e X`XX !D D,P@!DBX ! , @p qx ! ,`g F`Y8P!H  $, ! ,f @Y8P!H  $\, !  p  C !0 G!B3B B Y a!B,p, H@! HYV? p C !   ,`e F`Y8D!B #N L!B2B B ! # !  p pC !0 0,`e `X H !$ $,@!$B( X ! ,$DX( L!(U@ `@!@B !2~F !(d0L 0 b B2B@0B00B @@! 0! H`!$ Hx! a! , ( )&P0  (J(Y$W( F!p (C a! @@y! !, H`!$ $,H$W( F!0 B0 ,0B @ H '&$0 @NL P( ` 8(X1 `tPNL "DB@PXPD L $ HB H,HNL P(B`. &0L PL1 (t $`XP(& P0BPT,@APT`ANL ,`X ,!pANL .\ #a 0X '&d0  2! X 0!PdB(Y 0 '&`0  0L0Y $V( F!0B @p q4 `!0 @y! @!, H`!$ $,H$|V( F! ,@0B @$ @!0 8(! H!$ $, AOH0B$, X@!, ,,X1B," !PH P,(($HPF!B2B @Y !0 B0 , (!(Y 0!0Y 8!8Y$d( p ( C" ! ,`cbB @@2B H HX ! HPF!U `!@B (12xF0!(b(@b(a(@aBL @0 + B @fD03BF2B  ! #@+ D  `bFB1B@0BB 0BD A!0 0F! a! H@x! a! , @ )&0  @P@Y$T( L!p (C a!  @Dy! !, a! ,$T( L!0 B0,F0BB  '& 0 DBNL @ ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Yh$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* I" H '&0  HR HY $S( L!0B Bp q4 a!0 @Fy! !, a! ,$S( L!  B ,D0BB$ A!0 8F(! ! ,D@00B, H@!$ $,H1B$ X!,B,, c," 1B $@X !0L L$P1B *X$pTBX.1B 0X Ȱ!d Cd01B 4@X ؠ!lBl,@l41B 8apBcp:1B <X $x#c @P@YH$BT1B XV`XY @ & 0  @!@X XV!@ # c B Y !B! #@c D bB`cF01B `X1B @"B c0BP0B(1B "  P ! H  H,`b &0MB@$!LB HY $!z, L!1B B 1B DP  !  ,@ a!B,`c1B H HX P &(0  PP$# c " X$0DBH&@1B (X &PT0 *@!PBT(`1B ,X ,!X #c .pa\Bc\01B 2 X21B 4!hB`ch61B 8qBe :!X !xBx,p,, , 3Z L!B0B Bd !  D!0L F0B0,c @!Y 8D!8Y @F!@Y H@! HY $tP( L!B0B B !!  p (C !0 F!nL @B,`*ܘ 0 B0 ,p,, , 3 L!1B B Y B! #@a D@YDB@X $1B@3B,c @@!@Y$l( L!1B B 1B DP !0 0, sf @!@YHF!H(PL! ,X@ ! ,@ 3B D@Y$0B3B H HXP$@$B(3B " X "`_L"@3B (X !PT PT,g ,X !p\ p\,C0H@sd4qHcl8pA]B.3B :X !x x,g >X 8!p p,PH@TrHpBN3B @Y  &0 BB@03B 0 B@f D!@Y 8!8Y @D!@Y$\N( L!0B1B F`Y ! , g PB@PY8F!B PP$B`XY$4( A!   , g @B@ #(U@ `!@B 0A2~F8!(c(@c(b(@b(a1B @ B aB 1B D@Y@D! HhPN!01B FP !@ @,c P@@PY ! ,B L D B ,`b `X !0  0 ) HT! H`,,, c N!01B F`Y A! ,b H Y !H! b B Y !   ,@$ D@$R@F!B@,`,h,pB!BxY $L( N!< !@ @,`a F`Y@H!B #Z N!  f&0  @p q( ! ,@, D B, HT! HYPA$H C. N!@L H@ # !0 0,a P@@PY@F!B@X $B`Y h f&0  hZhYpA$H  N! 1B D@Y A! ,b H@"BHT!H`. XV ,, ,+ p\ , sw a! p (pC !0 0, a B Y@F!B #ʥ N! !   ,$K( N!0UP `!@B (13tF0!(a(@a(`(@`3B@BL B ‡XD D8@0(1 1ByD1Jc0!y@  L @ `e 2BB1B Q! #`  ! #`c !`2B L B b@ 0BD00BF00B @@! 0! a! H@x! a! , @ )&0  @P@Y$J( L!p (C a!  @Dy! !, a! ,$lJ( L!0 B0,F0BB  '& 0 DBNL @ ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $|I( L!0B Bp q4 a!0 @Fy! !, a! ,$LI( L!  B ,D0BB$ A!0 8F(! ! ,D@00B, H@!$ $,H1B$ X !, f," 1B@ H,`bH&@1B (X @!PT T(p1B .X$\B`21B 4@X P!l @Cl41B 8X @!tBt,t81B <axBbx>p1B 8N8YN1B @P"B bR0B PT¨B`- XVB,c @!@X 8T!8Y @V!@Y H! HY $G( L!p (C A! , B 1B D@Y D!  HDxp! A!0 aF!nL @B,`*ܘ 0 B0 ,p,, , 3ƣ L!0B B Y aB! # !   ,DB@X A!0B0,*` @B,p,, , 3< L!HL B ҄)P4 A & 0  Ds7( a!0 0,a @Y  !0 0 ,` @@X8F!B P!!H8X ,@$ B1BD3B ,b @B!@Y$( L!01B F1B @P !   , sf @!@YHD!HxPL! ,@ ! ,`B 3B D@Y$B 3B P@PXX$A(B," 3B $@X $¥_P$P3B *X !`X `X,f .X !` `, C2H`sh6qHcp:AaB03B <X !| |,f 8N8Y @! , RH`VpH: @BP3B B Y A!0 0,`F„BB03B `X H &$0 H0 B$ 3B D "B@e P!@PX 8D!8Y @!@Y$D( L!0B @Y ! DI$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ",`f PF@PY8@!B PP$B`XY$4( !   ,`f @F@ #(U@ `!@B 0A1zF8!(e(@d(d(@c(cB1B@H@bD2B  ! #d H@ Ba@ 2B D@Y@D! H8PN!1B BP A!0 0,d P@@PY !@ @, H L D B ,`d `X !0  0 )HT! H` ,,, cΡ N!2B B Y A! ,`d F`Y !F! d H Y !   ,@$ D@$R@B!B@,`,h,pH!BxY $4C( N!< A!0 0, a B Y@F!B # N! A! ,a PH@PY !  D!B PP$L XV ,,,+ p\ , sr  !&00 FBBL B# c&0 @ rH`(  #( @ B , , H$B$,@, P(B(,@, H,@P,`-P XV , C N!2B B Y A! ,, @B,HT!H`- XV ,,,+ p\ , s6r  !&@0  H BBL D #`  c&0 BrH`(  #, @ B , /P H$B$,@, P,@5 ${, N! 2B D@Y A! , , BB,HT!H`. XV ,,,+ p\ , sq A!0 0,a P@@PY@F!B@5X $!HP N!@BL H@ @, D #  c&0 @0rH`(  #* @ B , , H$B$,@, P(B(,@, H,@P,`.P XV , C2 N! 2B D@Y A! ,, @B,HT!"H`/ XV ,,,+ p\ , s6q A! ,`a PF@PY@B!B@EX $!HP N!@(L H@ p PC !# !# ! #6 @! B , b H!`HX @a &0  @P@Y H! HY PV!@PYX$B`Y$|?( N!@ H@4bDrH`$bF A! ,`a P@PY @! B ,HT!*H`( XV ,,@,+ p\ , sp A!   ,a PH@PY@D!B@UX $!H}PN!0B,+P @P , , #6= N!p pC A!0 0, a B Y@F!B #R N! !@ p (pC A!   ,a @Y@D!B #> N! A!0 0,$t>( N!0UP `@!@B 3~F@(a(@a0"L 0 0 ,a@0 B"L B , D B0"L 0 0 ,`"L @ ,D@"L B , B0"L 0 0 ,`"L @ ,@"L B ,  B0"L 0 0 ,`"L @ ,D@"L B , B0"L 0 0 ,`"L @ ,@"L B , B0"L 0 0 ,`"L @ , @"L B ,  B0"L 0 0 ,`@0B @Y @! HHP ,0a ! %1~F !(e0@2B2B@0L 0 b 2B@0B00B @@! 0! H`!$ Hx! a! , ( )&P0  (J(Y$;( F!p (C a! @@y! !, H`!$ $,H$;( F!0 B0 ,0B @ H '&$0 @NL P( ` 8(X1 `tPNL "DB@PXPD L $ HB H,HNL P(B`. &0L PL1 (t $`XP(& P0BPT,@APT`ANL ,`X ,!pANL .\ #a 0X '&d0  2! X 0!PdB(Y 0 '&`0  0L0Y $:( F!0B @p q4 `!0 @y! @!, H`!$ $,H$:( F! ,@0B @$ @!0 8(! H!$ $, AOH0B$, X@!, ,,X1B," `!PH P,(( $HePF!1B @Y !0 B0 ,(@!` B0Y $z, F!3B @03B P  H!$  ,x@ P`!P( P,`d X`XX !D D,@c $!@X J!PHX8"!HB@Y$D0( 8! @!@Xn ! ,`b 0 B(@!` B0Y $z, F!3B @03B P  H!$  ,@ P`!( (,`d X`XX !D D,@c $!@X !PB(Y0!pEB 8N8Y @$!@Y$|/( 8! @!@X  @$U `!@B ) 1~F@ !(d(@d0L 0 b @B2BB0B00B A! 0@! @`! Hx! a! , 0 )&`0  0L0Y$8( H!p (C a! @@y! !, `!0 0 ,$7( H! B,B0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $6( H!0B @p q4 a! @By! !, @`!  ,@$6( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," !`H `,00!$HXPH!B2B 0@0Y(L!`BH #2 H!B2B B Y ! ,`c !`X(B!`B0Y8@!B@Y H! HY$|( A!@ #e @P  ": $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* p" @!  ,@ H!$ $,@cP@$B(@2B X`XX(! H(kPH!HU `@!@B 0A0tF8!(g(@f(f(@e(eBL @0 - B @aD00BFB0B  Q! #- @ ƒXD D8@0(11ByD1Jc0!y@  L B ` H0@0B0@0B` ! #@+ D  `bF3B@@0B H0BB @!0 0! a! H@x! a!   , H )&0  HR HY$|4( N!p (C a!0 @Fy!  !, a! ,$\4( N!@ B@, H0B@  '& 0 D0BNL F0 81 `t0NL 0 B Y B @L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  0B D,`@D ANL $ H $!0ANL &L #a (X '&PT0  *!X@(!TB HY P '&0  PT@PY $l3( N!0B @p q4 a!@ @Hy! !, a!0 0,$<3( N!  B ,D0BB$ A! 8@(! !@ @,D' H00BF, @!0 0 ,1B  P`!( `d(2B " X" 1B@ H,`gH&@3B (X !PT T(p3B .X$\B`23B 4@X !l @Cl43B 8X !tBt,t83B <axBgx>3B @P@YP3B HR"B@gTB3B XV X!P `!!B,gZ3B p\pY xa &0  x^xY x_! P^! @!4 a &0  B Y C! , BB \3B @Y$@BH03B `X H` &$0  H HX H!$ `y! P!4 X` &,0  X`XX X!, ,,`AX X,B !P # g " X "!D #@g $ aHB`gH&@3B (X ` &PT0  *X *!PT p*! !4 ` &p\0  .X .!p\ p\, .`\BX(3B 2 X ` &h0  4@X 4!h 04! ؼ$ %pB 2!t#g <X ` &|0  >X >!| @>y! @!4 Ha &0  HR HY HR! , EH HRB <!@y #@g PT@PY P!T! #`g XVbBgX3B hZhY xa &0  x^xY x_! P^! !4 @` & 0  @@X @!  , @ BZ3B p\pY a &0  @Y A! `@8! $ %0B H\!%#`g X`XX ` &0 0  `X !0 p! P!4 ` &D0  " X #!D D, B "DB X!P, #@g $@X $!H #`g &0aLBgL*p3B .X.@3B (@!PBgP,1B 0X 00!` #@b 4ahBd 8!X !dBd,, ,@, 3& N!3B B 3B DP  !  ,H@ !@  1H!0nL F0B0,`c !`X @H!@Y HF! HY P!@PY $-( N!B2B B B2BDse8@h! !@  1H!0nL F0B0,`*ܘ 0 B0 , , ,@, 3ʖ N!B@X !! p (C !! @-И D B , !7$ !! ,`)D F0 0,HH$"B PT@PY $4-( N! ,@ !! -И @B,  !  0C !@ PH! !0 C !0 0 , d H HX@!$B #f N!B@X2 !! -И BB,   !  0C !@ PH@! !0 1F!0nL 0 B0 , c H! HX @F!@Y H! HY P!@PY $L,( N!B2B @B2BB@se8D8! !!@ (K !!0 `-И 0 B0 ,`1(wl H!$ H0!nL P(B(,`*ܘ X,B,,H, P,@X, 3 N!B@X !! , )D B ,HH$"B PT@PY $+( N! , @$@0BH 1B@ ,` HD! HY$D( N!03B F3B @P ! , sf H! HYPB!HhVPN! , @ !@ @,H01B F`Y!$ BB01B `XH$@ B$1B X`XX @•_H01B &`X !@P @P,c *X !`X `X,B.H s`2qH`ch6`AYB,1B 8X !t t,c <X !| |,PH@TrHX}B>1B hZ"B` p\!pY @Z!@Y H\! HY$*( N! 3B DP !@ @, H _H ! `@`  B$,` PA h&0  N! B @  BP!1B(01B &Lq$ !P B` *XX$LPT)( N! B @ * ` B!p1BX. !` @0! !d @bd4 !l 6!1Bl8Ё1B :X:A1Bt<1B> "0B D @b|@0BB@1B H @`bF1BH1B @@Y X!, ` P h&0 v N! B @  0 B!@A1BL( !PT 8*! !`X H,yx! !p\ c 0p` @ b\21B40Bh61BH81BX:1B P<@PY Q! , HY,PPN!B: N! ! aH0BB00B Fp i  a!  `a @@!  A` P@PY PP!( , @,`@,8PPN!B N! ! ,$(( N!@3B H Y ! ,`c F`YF L D B ,c @Y @! ) HT! H`,,, cړ N!2B B BdH03B F`Y !   ,c @Y !@! `c `X @!  ,!@ @!@R@F!B@,`,h,p! BxY $<'( N!BL B 8BP! !@ @,+s$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* f" @B,  HT! HYPA$H Cʐ N!0BL F@ # !   , d PB@PY@D!B@X $B`Y h h&0  hZhYpA$H V N!3B @Y ! ,`a F!`Y@@!B@% X h&0  XV`XY `!`Y hF!hY p &0  p\pY$( ! ,@d D@Y@B!B # N!@3B H Y@H! HhLPN!2B @Y !  @H0UP `!@B (=0nF0!(b(@a(a(@`L @0 , B @aD01BFB1B  q! #@- D0‹XD F8@0(1#1Hy@F1J yH  L @ f$B03B03B` @! #@. D 0 `. F0 e3BB0B  q! #`/ XD 80B 0(cyБ&JC$J yF L @ dB02B00 B` @0! # ( H$0 @( D  c$B02BF 0B@ ! #`+ 0 b 1BH0B$B00BF A! 0@! a!  HDx! `!0 0 , @ )&0  @P@Y$t$( L!p (C a! @By! !, a! ,$T$( L!0 B0,F 0BD  '&0 BBNL @ ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $d#( L! 0B Dp q4 a!0 @Fy! !, a! ,$4#( L! B,B 0BD$ A!0 8F(! ! ,D@00B, H@!$ $,H1B$ X@!, g," 1B@ H,`bH&@A1B (X $P#b .X$\B`2A1B 4@X @!lBl,@Cl4A1B 8X 8!p #b :atBbt<A1B >X 8!$8}# b HR HYP$BVB1B `X`Y h!!B,E`XB1B p\pY p!\! #b @` B b B B1B D@Y $#b @YH$B$@1B X`XX !DBD,`AXD A1B $@X $!H #`b &0aLBbL(PA1B *X $T#b 0X$`Bd4A1B 6`X `!pBp,`Cp6A1B :X :!t #b <axBbx>pB1B 8N8Y @a! NB1B PT@PYX$BXB1B hZhY pq! EhZ@1B @@X a!B,@0@1B 0` B@b D0B1B F`Y H !$ $FB1B @YX$B," A1B $@X 0!0L @BL$@A1B (X !PTBPT,T(`A1B ,`aXBbX.A1B 0X !d d0A1B 6`X$lBp:A1B <X !| C|<pB1B 8N8Y @!B,8NB1B HRbB@bTB1B XV`XYVB1B `X"BbZ0B p\¸B*ܘ @ B , c B! Y 8\!8Y @!@Y HB! HY $T( L! 0B D00B FP !! ,@B@X.  a! , B01B `X 0!0 Hxp! H`!$ H`!nL P(B(,`*ܘ X,B,,Hp,P, X, 3V L! 0B D@Y aD! #$1B@3B,c @@!@Y$T( L!B1B B B1B DP !0 0, sf @!@YHF!Hx<PL! ,"@ ! , @03B F`Y$$B 3B P@PXX$A(B," 3B $@X $!@L @P'P&P3B *X !`X `X,g .X !` `, C2H`sh6qHcp:AaB03B <X !| |,g 8N8Y @! , RH`VrH:ZBPBL p\ , @p!#, @B, , BB,@e D!@Yvd @@!@Y HB! HY PD!@PY$|z, L!03B F0"B, @B,p,, #V L!B0B B Y !  B01B F`Y8F! H(9PL!1B @Y ! ,@g D@YD0L F0B0,`g `X !0  0 )@R!*H@,`,, c L!3B B Bg@ 1B D@Y !0 0,`g `X  ! g @@X H!$ $, !H H !HR8D!B ,@,``,h!$BpY $( L!1B @Y ! ,@g D "B@R! H@( PT ,`,,+ hZ , sf\ !0 fBH@cD3B,c @@!@Y$( L!B1B B0B1B FP !   , sf @!@YHD!H5PL! ,@ ! , @ 3B D@Y$$B 3B P@PXX$A(B," 3B $@X $!@L @P'P&P3B *X !`X `X,g .X !` `, C2H`sh6qHcp:AaB03B <X !| |,g 8N8Y @! , RH`VrH:ZBPBL p\ , @p!#, @B, , BB,`d F!`Y4wd @@!@Y HB! HY PF!@PY$z, L! 3B D "B, @B,p,, # L!B3B B Y !0 D B 3B D@Y ! @D03B 0 Bg 1B H HX P!( (,`g X`XX X !, g " X ! H  H,@" $@"R8!(B ,@,``,h"!HBpY $( L!1B B Y ! ,g @"B@R! H@( PT ,`,,+ hZ , sZ !  `fFHc@3B,c @@!@Y$D( L! B1B D0B1B FP ! , sf @!@YHB!H/PL! ,x@ ! ,@@3B B Y:`$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ;j"$$B 3B P@PXX$A(B," 3B $@X $!@L @P'P&P3B *X !`X `X,g .X !` `, C2H`sh6qHcp:AaB03B <X !| |,g 8N8Y @! , RH`VrH:ZBPBL p\ , @p!#, @B,@, D B ,`c F!`Y4qd @@!@Y HD! HY PF!@PY$lz, L!3B B"B, @B,p,, #. L! B3B D@Y !0 @DD3B B Y !  B03B 0 Bg 1B H HX P!( (,`g X`XX X !, g " X ! H  H,@" $@"R8!(B ,@,``,h"!HBpY $( L! 1B D@Y ! ,g @"B@R! H@( PT ,`,,+ hZ , sY ! `fF Hc@3B,c @@!@Y$( L!B1B B0B1B FP !   , sf @!@YHD!H)PL! , @ ! , @ 3B D@Y$$B 3B P@PXX$A(B," 3B $@X $!@L @P'P&P3B *X !`X `X,g .X !` `, C2H`sh6qHcp:AaB03B <X !| |,g 8N8Y @! , RH`VrH:ZBPB3B p\pY @! Eq \3B @Y ! @03B F0 B`g1B H HX !   ,@g P@PX P !( `g X`XX !D D, " " "R8!B ,@,``,h!DBpY $<( L!0B, e B! Y 8@!8Y @R!@YH $HضXL!0B3B`0,@d D! Y 8F!8Y @R!@YH $HxX L!BL B , @#@, D B ,`, F0B0,`a !`X @`!  , f H! HXwd @D!@Y HF! HY P!@PYX!3B `X`Y h!hY$z, L!3B @"B , BB,p,, # L! 1B D@Y ! ,g @"B@R! H@( PT ,`,,+ hZ , s2W ! `fF Hc@3B,c @@!@Y$$( L!B1B B0B1B FP !   , sf @!@YHD!H"PL! ,8@ ! , @ 3B D@Y$$B 3B P@PXX$A(B," 3B $@X $!@L @P'P&P3B *X !`X `X,g .X !` `, C2H`sh6qHcp:AaB03B <X !| |,g 8N8Y @! , RH`VrH:ZBPBL p\ , @p!#, @B, , BB,`a F0"Brd @@!@Y HB! HY PF!@PY$Lz, L! 3B D "B, @B,p,, # L!B3B B Y !0 D B 3B D@Y ! @D03B 0 Bg 1B H HX P!( (,`g X`XX X !, g " X ! H  H,@" $@"R8!(B ,@,``,h"!HBpY $$( L!1B B Y ! ,g @"B@R! H@( PT ,`,,+ hZ , sU a!   ,`a F`Y F!0 F!2BB1B @Y8@! H(PL!H(U@ ` !@B 0A3hF8!(c(@b(b(@a(a H `B 3BD02BF@B2BHL @ƒXD B80@0(!c yB!Jc4!y @L H@ f @3BB3B  ! #`* F00 `+ 0 e@@3B H01B` q! #@+ D‹XD @8@0(11By @1JD!y@ 0L 0 d B2B @01B` 1! #`, F00 - H@ c2BB1 B  ! #`+ 0 @b D1B@00B F@0BH A! 0@! a! HBx! `!0 0 , H )&0  HR HY$ ( N!p (C a!  @Dy! !, a!@ @, $ ( N!0 B0,F0B@  '&0 B BNL D  8 1 `t0NL 0 B@Y D L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  0B D,`@D ANL $ H $!0ANL &L #a (X '&PT0  *!X@(!TB HY P '&0  PT@PY $ ( N!0B @p q4 a!0 @Fy! !, a!@ @, $ ( N! B,B 0BD$ A! 8@(! !0 0,`DF@0BH, @!0 0 ,1B  P!( `g(2B D,@cD$01B &`X $L#c ,X`$XB\01B 2 X !hBh, Ch21B 6`X 6!l #c 8apBcp:1B <X $x# c HR HYP-$BV1B `X`Y h!B,E`X1B p\pY p!\! #c x^bBc1B B Y $#`c F`Y 5$0B1B H HX P!(B(, AH(1B X`XX X !, # c "aDB@cD$01B &`X $L#c ,XH$XB\01B 2 X !hBh, Ch21B 6`X 6!l #c 8apBcp:1B <X $x# c HR HYP1$BV1B `X`Y ha!B,E`X1B p\pY p!\! #c @` Bc ^1B @Y $#`c `X9$@ BH1B H HX P!( AH(1B X`XX !DBD,`XD 1B $ aHB`cH&@1B (X `!PT T(p1B .X($\B`21B 4@X p!l @Cl41B 8X `!tBt,t81B <axBcx>1B @P@Y H!! P1B XV`XY`$BZ1BtY.$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "  p\pY @0! Ep \1B x^xY !!B,x^1B BbB@cD01B `X !0 1B H HXP\$$B(1B " X ! H BH"01B &`X !@PB@P,`P&P1B *PaTBcT,p1B .X.1B 0!`B c`20B 4@X4A1B 6ls !p P 8! !t h:9! !xBx,cx>1B @P@Y Ha &0  HR HY HR! pR! P!4 Xa &0  XV`XY XV! , XVBP1B hZhY@8$B \1B @Y xa &0  x^xY x^! 0^! !4 a & 0  D@Y D!   ,@D DB @! #`c `X  ! #`c F0bBcH1B H HX1B P (B`c(0B D,@d $!@X @!0LB0L,, ,@, 3‚ N! B0B D a!B, - BB,`e F!`Y @@!@Y HB! HY PF!@PY $D( N!@B0B Ht ! B ,c@1B B Y a &00  F`Y F!0 0F! !4 H` &$0  H HX H!$ $, H0$B B1B X`XX ` &D0  " X "!D @"8! 8$ % LB !P#c *X ` &`X0  ,X ,!`X P,! !4 ` &`0  0X 0!` `,C 0p`B *!T # c 2 X 2!d #@c 4ahB`ch61B 8X $p#c >X @a &0  @P@Y @Q! `P8! Ha$ P%B X >!H#c `X`Y ha &0  hZhY h[! E`X1B p\pY p!\! #c x^bBc@1B H YH 1B D@Y a &00  F`Y QF!0 pF! H$ % B PD!H(# c B Y B! # c " X "!D #`c &0aLB`cL 1B $@X $H#c 0X ` &PT0  *X +!PT 0*! d$ %pdB 0!h#`c 6`X ` &p0  8X 9!p `Cp61B :X :!t #c <axBcxP1B PT@PY ` &|0  >X `>!| @>y! H!4 Xa &0  XV`XY XaV! , XVBT1B hZhY pa &0  p\pY pa\! P\! @$ x%B Z!@#c H Y a &00  F`Y aF!0 `Fy! !4 H` &$0  H HX H`!$ $, AH H0$B H! #@c P@PX P !( #@c D bB cB1B " X X$XD#@c $@X ` &@P0  (X p(!@P p(! $ %`TB $!d#c .X ` &`0  0X p0!` B`.1B 4@X 4!h #`c 6alBcl81B :X $t#c >X Xa &0  XV`XY XV! 0V! H=$ P%B ` >!H#c p\pY xa &0  x^xY x^! Ep\1B @@X @ ! #c @bBcZ01B F`Y H$H#c H Y P` &(0  P@PX P!( @8! !$ %B XH!-# c " X ` &0L0  &`X &!0L BL"@1B (X (!P #c *PaTB@cT$`1B ,X $X#c 0X ` &h0  4@X 5!h P4! @$ %pB 0!t#c <X @a &0  @P@Y @Q! C<1B XV`XY X!V! #@c PTbBc>1B HR HY `!$`#c x^xY @` & 0  @@X @! `8! %$ h%B ^! # c H HX a &00  F`Y F!0 AH1B P@PX P !( #@c D bB`c1B B Y !$ #`c &`X ` &@P0  (X `)!@P p(! X$ % TB &!X#c .X ` &d0  2 X `3!d Bd.1B 4@X 4!h #c 8apBcp01B 6`X ` &t0  :X :!t 0:! !4 @a &0  @P@Y @P! , @PBx61B >X Pa &0  PT@PY PT! @T8! H$ `%B p >!H#c @@X ha &0  hZhY hZ! PZ! !4 a &0  @Y @! ,D @0B @! #c x^xY x!^! # c H`$B`c$F1B P@PX X` &,0  X`XX X@!, `y! !4 ` &D0  " X @#!D D, " DB@1B H Y ` &@P0  (X @)!@P p(! P$ %PHB H!L#c ,X ` &p\0  .X @/!p\ 0.! !4 ` &h0  4@X @5!h h,@C 4hB ,!X #c 0X 0!` #c 8apBcp:1B @P@Y ` &l0  6`X p7!l @6y! !4 Xa &0  XV`XY XqW! , XVBxP1B `X`Y ` &|0  >X p?!| P>! H]$ p%B h X!H#c @Y ` &0 0  `X p!0 `y! @!4 xa &0  x^xY xq_! ,Ex x^B @!@ # c H HX H !$ #`c F0bB`c1B " X P$PD#@c D@Y ` &@P0  (X )!@P p(! H$ % LB D!T#c H Y ` &p\0  .X /!p\ D \H1B 4@X 4!h #c ,`aXB cX21B 0X $`#`c 6`X Xa &0  XV`XY X!V! 0V! $ @%B P 6!#c >X pa &0  p\pY p!\! C>1B HR HY H!R! #c `XbBcZ01B `X x$x #c @Y H` &$0  H HX H!$ @8! X@$ %B P@!X(# c " X a &0  B Y C! B"@1B (X (!P #`c &0aLB@cL$P1B *X $U#c H Y ` &h0  4@X 5!h P4! D$ %`dB H!`#c 8X ` &t0  :X ;!t Ct81B XV`XY X!V! #c @PbB`c61B <X<1B PT"Bc>0Bp, d HR!HY hA!B,p, `,@h, 3{ N!0B0B FB1B @p sL a!B,@*ܘ D B ,*ܘ H@B@,<$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "1, ,@ , 3{ N!0B0B FP 8qh $ ! @@!@X !! ( C a!  b H Y H!@ XH`! `!0 B0 , *ܘ H$B$,@*ܘ P(B(,, H,@P, 3J{ N! @!@Xv !0 0FP! ! @@y@! ! XBh! a! B ,*ܘ H@B@,`*ܘ 0 B0 ,,  ,@, 3 { N!B@X. a!0B0,- @B, e B! Y @F!@Y H@! HY PB!@PY $( N! 1B D@1B H P4 a!0B0,*ܘ @B, *ܘ BB,, ,@, 3z N!B@X   $& 0  D@Rp PC !@ @Hy! !0 XF! ! , b Bs $ H!$ ! P!( (,`a X`XX @!D D, H! HYP!,B$,,  ,5@ !   ,@ D@Y qD!   B)P ! #$2BBB3B ,d HB! HY$l( N!1B @ 1B DP !@ @, sf H! HYPH!HHPN! ,X4@ !0 0, F B3B D@Y $0B@3B H HXP$@$B(A3B " X "`_L"@A3B (X !PT PT,f ,X !p\ p\,C0H@sd4qHcl8pA]B.A3B :X !x x,f >X @! , RH`VrHZBPB3B p\pY xa! q\@3B @@X ! AB1B B`s  !0 @Fy`! ! ,HH $HPN! 1B D@Y !@ @D1B @Y a@!0 0' B !0 0 ,$t( N! 1B D@Y !@ @,HH!HPN!3B @2B Bp q !0 F! B3B@ ,, , #y N!@3B Hp q  $2BB  !0 !rL @ B ,, @, #x N!@B2B HB3B @"B - BB,, , #x N!@1B H1B @Y a@! ")P$ ! , B01B `X !0 H8! H$@2B$ X !, c "XDqW ! H  H,@$0a2BH&@A3B (X (!@P cP*`1B,p1B .X !` d 2 X@.!XB@X0!HPN!`@p C?#< @.!XB@X0!HPN!`@p C  $ !8D! @!h #`d 6  P7( $2Bp:A3Bp,d H8! HY$d}( N!@1B H Y@H! HPN!Hx+@ ! ,D@B2BB@B3B H Y H!@ `cH@`$@2BX1B "pXD ql ! H  H,@B $0HBf (X (!@P @P,f *X *!PT f ,X ,!`X `X,H&!XB``$( N!`@p C?#< @(!LB@X*!HxPN!`@p C  $ !8F! !p\ /?#3B\0H@`d4 !l c 8la !t ;?#3Bt<H`|@ $@2BH3BH1B$ X!, X8! !@P (!03BP&`3B ,X P,!`X fX*$ !0 f " 3B $ K~FgHP H@`TB2B XVX1P `$2BZB3B`,d HX! HY$${( N! $2BB@3B H01B @! 88! H!$ H!3B$3B X`XX XP!, f,"$ ! H `fH&@3B (@S~FgP*` H`X.A2B 0  P7 $2Bd4A3B d,d H2! HY$\z( N! !! p (0 C ! ,g PH@PY !0 0 ,L @ B , f H HX H!$ $)HT! H`,@,H, cv N! 3B D B`gF1B @Y !@ @, f B Y !B! `f `X @!  ,!@ @!@R@@!B@,`,h,p! BxY $( N! L D  `( F0  81 `t3BB1B @Y ! ,`f 0 BHT! H`) XV ,,,+ p\ , s C  !&00 FBBL B#@ c&@0 HrH`(  #b @@P  H !&$0 L P !&(0  P!@PX X !,B,,P, X, #= N! ! ,`g PF@PY ! !& 0  D!@Y@B!B@% Xa j&0  XV`XY `!`Y hD!hY p &0  p\pY$(  !&@0  HBBL @ #`  c&0 B rH`(  #, @ B , a H!@HX @!@Y HT! HYP $H`X N!L @ ( H@  8 1 `t3BB01B F`Y ! ,`, 0 B0 ,HT!H`* XV ,,,+ p\ , sB !@ @,g P@@PY@H!B@5X $!H8PN! H@cD0rHc@@B1B H P ! # @!  , g P@PY P!(B(,@HT!"H`+ XV ,,P,+ p\ , sA ! ,@g D@Y@B!B #t N! A! p C !0B0,cH1B B Y $#c @@XH`$ B$1B X`XX !DBD,`AXD 1B $@X $!H #`c &0aLBcL(P1B *X*`1B ,`!XBcX.1B 0X@A$`B #< N!1B @01B FP  !  ,h@ ! B! 2B@ ,`e !`X @B!@Y HD! HY P!@PY $L( N!B0B @01Br^$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "B F`Y 1F!0 0,` F`Rp  C ! #$ 2BD2B ,d HB! HY$|r( N!1B @01B FP( !@ @, $( N! 1B D@Ysf H! HYPD!HhPN! ,H@ a! ,B02B F`Y $ BD02B `XH$@ B$2B X`XX @•_H02B &`X `!@P @P,e *X `!`X `X,B.H s`2qH`ch6`AYB,2B 8X `!t t,e <X `!| |,PH@TrHX}B>2B hZhY pa! iZ2B x^xY @! y ^1B @p q ! ,@eDbBB !!0 (C !@ @,`e@bB H2B H HX P!( H(2B X`XX `!D D, b " DB@bXD$03B &0O~FgL. `!@P fP0 !d X2 ! !PT PT,*A3B 6`X $ lBX8B3B @P@Y$BBtRB3B PT@PY XT`]_TB3B `X"Bf >!X @X!@Y H>! HY$<( N!2B @PD ! HBxx! !0 F!@rL H@B@,,  , #zr N!B2B @B3B B"B`- F0B0,, , #fr N!@1B HB2B@1B Bp q !0 0,`F0`2B@3B H HX H!$ @c$1BX1B " X"! A2B $@HBd *X@&!,B@X(!HPN!`@p C?#< @&!,B@X(!HPN!`@p C  $ !8D! $p2BX.`A3B`X,d H,! HY$|o( N!@1B H Y@H! HPN!1B @Y a@! ")P @ $ ! ,`g F`Y@B!B #q N!B@X !@ b@ ! 8B8! !0 F!03B3B H HX HP!$ @f$$ X!, f," 3B $ K~F`gH& !@P @P,g P*@PY !`X `X,,pL .p\Bp\,f 0X 0!` `)HT! H`,,, cfq N!3B @ BgH1B B Y !0 0,@f D@Y !D! `f `X @!  ,!@ @!@R@B!B@,`,h,p! BxY $T( N!L @ 8@P! !@ @,@, D B,  HT! HYPA$H C>k N!L B@ # !0 0,g P@@PY@F!B@X $B`Y h j&0  hZhYpA$H p N! BL D  * H@  8 1 `t3BB1B @Y ! ,`f 0 BHT!H`- XV ,,,+ p\ , s<  !&@0  HBBL B #@  c&00 FrH`(  #b @@P  H !&$0 L P !&(0  P!@PX X !,B,,P, X, #z= N! ! ,g PH@PY ! !& 0  D!@Y@B!B@5 X! d&0  XV`XY `!`Y hD!hY p &0  p\pY$x(  !&00 FBBL @#  c&0 B rH`(  #, @ B , a H!@HX @!@Y HT! HYP $HGX N!L @ `* F0  81 `t3BB@1B H Y ! ,`, 0 B0 , HT!"H`- XV ,,,+ p\ , s; !0 0,g P@@PY@F!B@EX $!HHP N!BL B @, D# c&0 @0rH`(  #. @ B , , H$B$,@, P(B(,@, H,@P,`c XV`XY$( N!L B @* D   81 `t3B@@1B H Y ! ,`, 0 B0 , HT!*H`* XV ,,,+ p\ , s6; $1B@rH`cF@B1B H P ! # @!  , g P@PY P!(B(,@HT!2H`. XV ,,P,+ p\ , s: A! p (pC !   , g B Y@D!B #n N!\ !0 0,` F`DRp pC !@ @,g @Y@H!B #n N! A!   , f B #`c F`Y@F! HPN!@0B @H@X0UP `@ !@B !2~F !(d0L 0 b 2B@0B00B @@! 0! H`!$ Hx! a! , ( )&P0  (J(Y$|( F!p (C a! @@y! !, H`!$ $,H$\( F!0 B0 ,0B @ H '&$0 @NL P( ` 8(X1 `tPNL "DB@PXPD L $ HB H,HNL P(B`. &0L PL1 (t $`XP(& P0BPT,@APT`ANL ,`X ,!pANL .\ #a 0X '&d0  2! X 0!PdB(Y 0 '&`0  0L0Y $l( F!0B @p q4 `!0 @y! @!, H`!$ $,H$<( F! ,@0B @$ @!0 8(! H!$ $, AOH0B$, X@!, ,,X1B," !PH P,(($HXPF!2B (@(Y J!P2H #d F!2B @Y !0 B0 , (!(Y 0!0Y 8!8Y$|( !!@ #`d P  H !$  ,@ P!( (,`cX +B,2B " X "! H(PF!HU `!@B (12xF0!(c(@b(b(@aL @ƒXD B8@0(!!ByB!Jc0!y@  0L F0 `g 3B@B2B ! #@+ D  `b1B@00B F0B@ A! 0B! ᘆ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "S `!0 Hx! a!   , @ )&0  @P@Y$,( L!p (C a!0 @Fy! !, a! ,$ ( L! B,@ 0BD  '&00 FBNL B ` 81 `tNL H$B`X$ @L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $( L!0B @p q4 a!  @Dy! !, a! ,$( L!0 B0,F0B@$ A!  8D(! ! , DB00B, H@!$ $,H1B$ X`!, ,,1B D,@cD$01B &`X !@P P&`1B ,X$XB\01B 2 X !h Ch21B 6`X !pBp,`p61B :atBct<1B >X>p1B 8Np"BcP1BHRB0BTB1B XV X!P @!  ,F @ qw8 ! A!0nL F0B0,@*ܘ D B ,p,, , 3"k L!1B B Y C! # ! ,`b F0BB@@!B HY $Dy, L! 1B D1B BP  !  , @ !!0B0,`c1B H HX P` &(0  P@PX P!( @y! X!4 ` &D0  " X "!D D, "DB,01B &`X$PLBP*`1B ,X ` &p\0  .X .!p\ P.! !4 ` &d0  2 X Ȱ2!d d, C 2dB ,!X #@c 4@X 4!h #`c 6alBcl81B :X ` &x0  <X p<!x `1B @PBB@d D!@Y !B,Pp,, , 3bi L!00B Fd ! A! L D B , c B! Y 8@!8Y @D!@Y HB! HY $( L!00B F A! p (C !  E!nL BB,`*ܘ 0 B0 ,p,, , 3i L!B@X $2B@0B,d @@!@Y$Y( L! 1B D1B BP !0 0, sf @!@YHF!HPL! ,@ ! ,@0B B Y$0B0B H HXP$@$B(0B " X "`_L"@0B (X !PT PT,` ,X !p\ p\,C0H@sd4qHcl8pA]B.0B :X !x x,` >X 8!p p,PH@TrHpBN0B @"B@g D!@Y 8@!8Y @D!@Y$( L!1B B Y !!0 0,` P@@PY8B!B PP$B`XY$4( a!   ,` @@@ #(U@ `!@B 0A2~F8!(c(@c(b(@b(a1B @ B aB 1B D@Y@D! HPN!01B FP !@ @,c P@@PY ! ,B L D B ,`b `X !0  0 ) HT! H`,,, cg N!01B F`Y A! ,b H Y !H! b B Y !   ,@$ D@$R@F!B@,`,h,pB!BxY $( N!< !@ @,`a F`Y@H!B #g N! h&0  @p q( ! ,@+ D B, HT! HYPA$H Cf` N!@BL H@ # !0 0,a P@@PY@F!B@X $B`Y h h&0  hZhYpA$H 6g N! 1B D@Y A! ,b H@"BHT!H`+ XV ,, ,+ p\ , s2 a! p (pC !0 0, a B Y@F!B #f N! !   ,$( N!0UP `!@B (=2|F0!(b(@a(a(@`L @0 ) B @dD02BF2B  1! #@+ D  `bF1B@0BB 0BD A!0 0F! a! H@x! a! , @ )&0  @P@Y$( L!p (C a!  @Dy! !, a! ,$( L!0 B0,F0BB  '& 0 DBNL @ ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $ ( L!0B Bp q4 a!0 @Fy! !, a! ,$( L!  B ,D0BB$ A!0 8F(! ! ,D@00B, H@!$ $,H1B$ X@!, `," 1B@ H,`bH&@A1B (X $P#b .X8$\B`2A1B 4@X 0!l @Cl4A1B 8X !tBt,t8A1B <axBbx>pB1B 8N8YNB1B @P"B bR0B PT¨B`- XVB,c `X!`Y 8T!8Y @V!@Y HX! HY $( L!p (C a! , B 1B D@Y E!  HDxp! (n$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ST"d a!0 aF!nL @B,`*ܘ 0 B0 ,p,, , 3e L!0B B Y aB! # !!   ,DB@X $1B@3B,c @@!@Y$$P( L!B1B B B1B DP !0 0, sf @!@YHF!H(PL! ,@ ! , @03B F`Y$B 3B P@PXX$A(B," 3B $@X $!@L @P'P&P3B *X !`X `X,g .X !` `, C2H`sh6qHcp:AaB03B <X !| |,g 8N8Y @! , RH`VrH:ZBP3B p\pY @`!  ,A@¸B \3B @"B d B! Y 8@!8Y @B!@Y$L( L! 1B D@Y8D! HPL!01B F`Y ! , g B YB L D B ,`g `X !0  0 )@R! H@,`,, cc L!0B @ B``F1B B Y !   ,`g `X  ! g @@X H!$ $, !H H !HR8B!B ,@,``,h!$BpY $l( L!1B @Y ! , g B"B@R! H@,`,,+ hZ , s. !   ,`` F`Y8D!B #~c L!1B @Y8@! HPL!B0B B Y !  BH(U@ `!@B !2~F !(d0L 0 b 2B@0B00B @@! 0! H`!$ Hx! a! , ( )&P0  (J(Y$\( F!p (C a! @@y! !, H`!$ $,H$<( F!0 B0 ,0B @ H '&$0 @NL P( ` 8(X1 `tPNL "DB@PXPD L $ HB H,HNL P(B`. &0L PL1 (t $`XP(& P0BPT,@APT`ANL ,`X ,!pANL .\ #a 0X '&d0  2! X 0!PdB(Y 0 '&`0  0L0Y $L( F!0B @p q4 `!0 @y! @!, H`!$ $,H$( F! ,@0B @$ @!0 8(! H!$ $, AOH0B$, X@!, ,,X1B," !PH P,((1$HPF!2B (@(Y J!PbH #W F!2B @Y !0 B0 , (!(Y 0!0Y 8!8Y$|( !!@ #`d P  H !$  ,@ P!( (,`cX*B,2B " X "! HPF!HU `!@B (11xF0!(d(@d(c(@cL @ƒXD B8@0(!!ByB!Jc0!y@  0BL F0 `a 0B@3B Q! #@+ D  `b@2B@00B F0B@ A! 0B! `!0 Hx! a!   , @ )&0  @P@Y$ ( L!p (C a!0 @Fy! !, a! ,$( L! B,@ 0BD  '&00 FBNL B ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $( L!0B @p q4 a!  @Dy! !, a! ,$( L!0 B0,F0B@$ A!  8D(! ! , DB00B, H@!$ $,H1B$ X!, b," 1B $@X$02B`0L,eL(P2B *X @!`X X*2B 0XȬ$`Bd42B 6`X P!p `Cp6Ё2B :X @!xBx,x:2B >a|Be|N2B @P@YP2B HR"B@eT2B XV X!P  @!  ,F @ qw8 ! A!0nL F0B0,@*ܘ D B ,p,, , 3` L!1B B Y C! # ! A!pJH+ @P , , 3n< L!02B F 2B DP  A!  ,H@ A!B,`e2B H HX2B X`XX$ ,BD$02B &`X &!L #e (X (!P #e *PaTBeT,p2B .X.2B 2 XЌ$dBh62B 8X 8!p #e :X :!t #e <axBex>p2B 8N8Y @a &0  @P@Y @P! @Py! H!4 Pa &0  PT@PY PT! , PTBN02B F`Y$BB2B @@X ` &0 0  `X !0 P! !4 H` &$0  H HX H!$ $, AH H$B @!! #@e P@PX P !( #`e X`,B e," 2B $@X ` &0L0  &`X p&!0L `&y! !4 ` &PT0  *X p*!PT PT, *@TBP$p2B .X ` &`0  0X p0!` p0! Ȝ$ %hB .!l#e 8X ` &t0  :X p:!t 0:! !4 ` &|0  >X p>!| |,C >|B 8!p #e @P@Y @!P! #@e PTbBeN2B HR HYR2B XV"B eB 1B D B`e F!`Y !0 B0 ,p,, , 3F^ L!1B @d ! C! L D B ,`d F!`Y 8B!8Y @D!@Y HF! HY $L( L!1B @ ! p (`C !  E!0nL F0B0,`*ܘ 0 B0 ,p,, , 3] L!2B @P ! @r f@Dx ! qf$̻( L! ,@ @!@X !0 p C?#B0BB !  C  !0 !@0B 1B:Z$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "u P+B`- X,B,, *ܘ "DBD,Pp,X, , 3] L!01B F$ !! 8@`! ! C! L D B ,`d !`X 8B!8Y @D!@Y H! HY $( L!01B F$ !! 8@! @!@X $ 2BD1B ,e @B!@Y$>( L!02B F2B @P A!   , sf @!@YHD!HtPL! ,H@ ! ,B1B @Y1$0B1B H HXP$@$B(1B " X "`_L"@1B (X !PT PT,b ,X !p\ p\,C0H@sd4qHcl8pA]B.1B :X !x x,b >X 8!p p,PH@TrHpBN1B B Y !!0  B01B 0 Ba @!Y 8!8Y @@!@Y$4( L! B2B D@Y ! ,`b PF@PY8D!B PP$B`XY$4( ! ,`b @F@ #(U@ `@!@B 0A2~F8!(c(@c(b(@b(a1B @ B aB 1B D@Y@D! HqP N!0BL F0 , H#  c&0 B rH`(  #b @@X @! 8p! H` k&$0  H! HX P !&(0  P!@PX X !&,0  X!`XX !D "!$B@Y H! HY P!@PY X"!`XY$( N!  k&00  F!`Y ! !&@0  H! Y ! !&0  @!Y ! B! B1B D@Y @F!@Y HH! HY P@!@PY XB!`XY `D! , S[ N! !0 p  C !@ @,c P@@PY ! ,B L D B ,`b `X !0  0 ) HT! H`,,, c[ N!01B F`Y A! ,b H Y !H! b B Y !   ,@$ D@$R@F!B@,`,h,pB!BxY $( N!< !@ @,`a F`Y@H!B #F[ N! h&0  @p q( ! ,@+ D B, HT! HYPA$H CJR N!@BL H@ # !0 0,a P@@PY@F!B@X $B`Y h h&0  hZhYpA$H Z N! 1B D@Y A! ,, H@B@,HT!H`- XV ,, ,+ p\ , s# a! p (pC !0 0, a B Y@F!B #Z N! !   ,$\( N!0UP `!@B (=0pF0!(g(@g(f(@fBL @0 / B @dD0B2BF0 B  ! #@/ D0‹XD F8@0(1#1Hy@F1J yH  L @ c$B01B00B` @! #@( D 0 `) F0 bB1BB0B  ! #`+ 0 b 3BH 0B$D00BF A! 0@! a! HBx! `!0 0 , @ )&0  @P@Y$,( L!p (C a!  @Dy! !, a! ,$ ( L!0 B0,F0BB  '& 0 DBNL @ ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $( L!0B Bp q4 a!0 @Fy! !, a! ,$( L!  B ,D0BB$ A!0 8F(! ! ,D@00B, H@!$ $,H1B$ X!,B,, `," 0B $@X !0L L$P0B *X$pTBX.0B 0X !d Cd00B 4@X !lBl,@l40B 8apB`p:0B <X !| |<0B @P@YH$BT0B XV`XY `! `EXV0B hZhY p!B,hZ0B @` B ` B 0B D@Y !0 D0B @YH8$B$0B X`XX !D `AXD 0B $@X !0LB0L,@L$@0B (@aPB`P*`0B ,X,p0B .p!\B`\03B 2 X `2!d H28`! Р!hBh,``h60B 8X80B <X$pxB|N0B @P@Y @P! # ` HR HY H!R! #@` PTbB``V0B `X`YX0B p\pY@$B B00B `X ! #@` D@Y !D! #`` F0bB `0B P@PX ! ,D @)# ` " X$0DBH&@0B (X !PT PT,*@!PBT(`0B ,X ,!X #` .pa\B`\00B 2 X ` &h0  4@X p4!h P4! !4 ` &p0  8X p8!p p, 8pBl20B <X ` &|0  >X p>!| `>8! 8$ @%pB H <!8#@` PT@PY Xa &0  XV`XY XqV! pV! `!4 ha &0  hZhY hqZ! ,Eh hZB PT!` #` @@X @ ! # ` BbB`\00B `X 0B D "B `03B F0ŒB @ &0  @P@Y HF! HY $ky, L!0B @0B BP  !  , @ !0 aF!0@3B`0 , *ܘ H$B$,p,, H, 3V L!0B @0B BP  !  , @ !0 aF!0L 0 B0 , d H! HX 8F!8Y @!@Y H! HY $T( L!1B @1B BPD !  aD!0nL F0B0,`*ܘ 0 B0 ,p,, , 3~V L!3B @Y a@! # f B YBB@X6 !  `eF0H ` 02B`0 ,` @!@Y$$/( L!0B @0B BP !   , sf @!@YHD!HXPL! ,@$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* j'" A!0 0,F 2B D@Y4$B 2B P@PXX$A(B," 2B $@X $!@L @P'P&P2B *X @!`X `X,e .X @!` `, C2H`sh6qHcp:AaB02B <X @!| |,e 8N8Y @A! , RH`VrH:ZBP2B p\pY @!  ,A@¸B \2B @"B b B! Y 8@!8Y @B!@Y$$( L!02B F0bB@d D!@Y 8F!8Y @D!@Y$ ( L!3B @Y A! @03B F`Y8F! HUPL! 3B D@Y a! , e B YB0L F0B0,`e `X !0  0 )@R! H@,`,, cFU L!2B @ B@eD3B B Y a!0 0,`e `X  ! e @@X H@!$ $, !H H !HR8B!B ,@,``,h!$BpY $( L!3B @Y a! , b B! Y8@!B  PA j&0  PT@PY X!`XY `B!`Y h &0  hZhY$:( !0 0,@e HD HY !B,@R!H@) PT ,`,,+ hZ , s& ! ,@e D@Y8B!B #T L!03B F`Y8F! HhRPL!H(U@ `!@B ) 1~F@ !(d(@d0L 0 b @B2BB0B00B A! 0@! @`! Hx! a! , 0 )&`0  0L0Y$( H!p (C a! @@y! !, `!0 0 ,$( H! B,B0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $( H!0B @p q4 a! @By! !, @`!  ,@$d( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," !`H `,00)$H8rPH!B2B 0@0Y(L!`RH #*G H!B2B B Y ! ,`c !`X(B!`B0Y8@!B@Y H! HY$|( A!@ #e @P  @!  ,@ H!$ $,@cP`'B(@2B X`XX(! HhLPH!HU `@!@B 052xF8!(c(@b1B@(a(a BL B‡XD @80@0(! c y@!Jc4!y @L H@ g @3BBB2B  ! #`+ F0 `b1B@@0BH0BB A!  0D! `!0 Hx! a!0 0, H )&0  HR HY$D( N!p (C a! @@y!  !, a! ,$$( N!@ B@, H 0BD  '&00 FBNL @ 81 `t0NL 0 BY @ L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  0B D,`@D ANL $ H $!0ANL &L #a (X '&PT0  *!X@(!TB HY P '&0  PT@PY $4( N! 0B Dp q4 a!@ @Hy! !, a! ,$( N!0 B0,F0B@$ A!  8D(! !@ @,D' H0BB, @!0 0 ,1B  P`!( ``(0B " X" 2B@ H,`cH&@1B (X !PT T(p1B .X,$\B`21B 4@X !l @Cl41B 8X !tBt,t81B <axBcx>1B @P@YP1B HR"B@cTB1B XV X!P `! ,g `Xqw8 @! @!nL @B,`*ܘ F0B0,@, ,@, 32Q N! 1B D@Y E! # ! ,b H@BHB!B@PY $,]y, N!1B @01B FP  !  , @ a &0  B Y B! HBx! A!@B@,`c1B H HX P` &(0  P@PX P!( P! X!4 ` &D0  " X "!D D, "DB,01B &`X,$PLBP*`1B ,X ` &p\0  .X .!p\ `.y! !4 ` &d0  2 X Ȱ2!d d, C 2dB ,!X #@c 4@X 4!h #`c 6alBcl81B :X $t#c @P@YH)$BT1B XV`XY `!B,`EXV1B @Y !@! #`c F0bB@cD1B @@X1B B"B`c A!@B@,@c1B " X H &$0  HHD#@c $@X,$@HBL(P1B *X &p\0 .P!TB\*1B 2 X 2!d #c ,`aXBcX01B 4@X $h#c :X($tBx>1B @P@Y H!B,E@P1B PT@PY P!T! #`c XVbBcX1B @Y@ 1B D "B`cF @! @!02B`0 , d B! Y @!@Y H! HY PB!@PY $( N!@1B Hd ! A! L D B ,`d F!`Y @@!@Y HD! HY PF!@PY $Ğ( N!1B B !@ p (C ! A! nL D B ,`*ܘ F0B0,, ,@, 36O N!B@X $@2BH0B ,d HB! HY$( N!1B @ 1B DP !0 0, sf H! HYPF!H<PN! ,@ !@ @,H0B @Y)$0 BF00B `XH$@ B$0B X`XX @•_H00B &`X !@P @P,` *X !`X `X,B.H s`2qH`c^$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* +"h6`AYB,0B 8X !t t,` <X !| |,PH@TrHX}B>0B @ !B g B! Y @!@Y HB! HY$( N!@1B H Y !! ,@` XD`XY@H!B@XX$B`Y$4( A!0 0, ` @B@ #0UP `!@B 0A2~F8!(c(@c(b(@b(a1B @ B aB 1B D@Y@D! H8PN!01B FP !@ @,c P@@PY ! ,B L D B ,`b `X !0  0 ) HT! H`,,, cM N!01B F`Y A! ,b H Y !H! b B Y !   ,@$ D@$R@F!B@,`,h,pB!BxY $\( N!< !@ @,`a F`Y@H!B #M N! h&0  @p q( ! ,@+ D B, HT! HYPA$H CB N!@BL H@ # !0 0,a P@@PY@F!B@X $B`Y h h&0  hZhYpA$H VM N! 1B D@Y A! ,b H@"BHT!H`+ XV ,, ,+ p\ , s a! p (pC !0 0, a B Y@F!B #M N! !   ,$( N!0UP `!@B (=2jF0!(f(@e(e(@dL @0 , B @bD0B1BF2B  ! #@- D0‹XD F8@0(1#1Hy@F1J yH  L @ a$B00B02 B` @P! #@. D 0 `. F0 `B0BB2B  ! #`/ XD 80B 0(cyБ&JC$J yF L @ gB03B02B` @! # + H$ @b$D3BB00BF0B@ @!0 0! @`! Hx! H`!$ $,H @ )&0  @P@Y$( L!p (C a!  @Dy! !, a!0 0,$( L! B,B0B@  '& 0 D0BNL F0 ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $( L!0B @p q4 a! @By! !, a!0 0,$d( L!  B ,D0B@$ A! 8B(! !0 0,`DF00B, H@!$ $,H1B$ X!,B,, f," A3B $@X `!0L 0L,`B &H#f *X,$pTBX.A3B 0X `!d d, 2!`Bd0A3B 4@X 4!h #`f 6alBfl8A3B :X:A3B <!xBfx>p0B8p,fPB3B HR HY PA! RB3B `X`Yh9$B\@3B @@X Q! A@ B3B D@Y A!B,@D0@3B 0` B`f F@3B H HX P!( (A3B " X$0DBH&@A3B (X !PT BT(`A3B ,X !p\Bp\,\,A3B 0a`B f`2A3B 4@X !l l4A3B :X$$tBx>pB3B 8N8Y @! D8NB3B HR HY P!B, HRB3B XVbBfXB3B hZhY p$p#f @Y)$ BD0@3B `X !0B0,`@@3B H HX H !$ #@f P`(B`f(A3B " X $D#f (X $`PBT,pA3B .X !`B`,B`.A3B 2 X 2!d #@f 4ahB`fh6A3B 8X $p#f >X8$|BPB3B HR HY Pa!B, EHRB3B XV`XY X!V! #f `XbBfB3B hZhYZB3B p\"Bf@1B B Y8e$B #n< L! B3B D0B3B FP  !  ,@ ! C!02B`0 , ` H! HX 8B!8Y @!@Y H! HY $( L! 1B D01B FP !! ,@B@X2 ! @B8! $ ! H!$ P! P$ P!  2B X,q $ ! " 2B $03B`0L,( (@PB@P,e*`)H 8T1 `t P TBgT.)H g`2pLB8Y @(!@YH!3B CH L! 1B D0Hg@1B,g @@!@Y$( L!B3B B B3B DP !0 0, sf @!@YHF!H8#PL! ,@ ! , @01B F`Y,$B 1B P@PXX$A(B," 1B $@X $!@L @P'P&P1B *X !`X `X,c .X !` `, C2H`sh6qHcp:AaB01B <X !| |,c 8N8Y @! , RH`VrH:ZBP1B p\pY @`! p \BL @ , B#@b Dp q4  !&0 0  !`X H !&$0  H! HX !0B0, ve @!@Y H! HY PF!@PY$2z, L!l ! !&0  @!Y ! !&0  B! Y A! B , ue @@!@Y HB! HY PD!@PY$2z, L! !0 F!BBL @B,p,, #G L!B2B B Y !  B03B F`Y8F! HPL!2B@2BB 3B D@Y ! ,`c `XL @ B , c H HX H!$ $)@R!H@,`@,H, crG L!2B @ B dB03B F`Y !   ,`c `X  ! c @@X H!$ $, !H H !HR8F!B ,@,``,h!$BpY $l( L!3B @Y ! ,`c F0"B@R! H@( PT ,`,-q$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* !",+ hZ , s  !  cB2B @ B`dF0Hg 01B`0 ,g @!@Y$t ( L!B3B B B3B DP ! , sf @!@YH@!H(PL! , @ !0 0, F1B @Y,$B 1B P@PXX$A(B," 1B $@X $!@L @P'P&P1B *X !`X `X,c .X !` `, C2H`sh6qHcp:AaB01B <X !| |,c 8N8Y @! , RH`VrH:ZBP1B p\pY @`! p \BL B @, D#`, F0B0,`, 0 B0 , ` H! HXve @F!@Y H! HY P!@PY$.z, L!1B @"B , BB,p,, #E L! 1B D@Y !0 @DD1B @Y ! @03B `X @!  , c H HX H !$ @c P@PX X!, ,,`!X X`!XR8! B ,@,``,h!,BpY $T( L! 3B D@Y ! ,c @"B@R! H@( PT ,`+ XV ,,+ hZ , s.  ! `cF 2B D Bd@0Hg 01B`0 ,g @!@Y$ ( L!B3B B0B3B FP ! , sf @!@YH@!HPL! ,H@ !   , D1B @Y,$B 1B P@PXX$A(B," 1B $@X $!@L @P'P&P1B *X !`X `X,c .X !` `, C2H`sh6qHcp:AaB01B <X !| |,c 8N8Y @! , RH`VrH:ZBP1B p\pY @`! p \BL B @, D#`, F0B0,`, 0 B0 , g H! HXwe @F!@Y H! HY P!@PY$+z, L!1B @"B , BB,p,, #fD L! 1B D@Y !0 @DD1B @Y ! @03B `X @!  , c H HX H !$ @c P@PX X!, ,,`!X X`!XR8! B ,@,``,h!,BpY $4( L! 3B D@Y ! ,c @"B@R! H@( PT ,`,,+ hZ , s~  a! ,`e F`Y F!0  F! 2BD3B @Y8@! HHPL!H(U@ ` !@B ) 1~F@ !(e(@d0L 0 b @2BB0B00B A! 0@! @`! Hx! a! , 0 )&`0  0L0Y$( H!p (C a! @@y! !, `!0 0 ,$( H! B,B0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $( H!0B @p q4 a! @By! !, @`!  ,@$ԅ( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," @!`H `,009$H'PH!2B 0@0Y(L!`rH #4 H!2B B Y !B,`d `X(B!`B0Y 8!8Y @@!@YH!)HP !@ #d @P  !  ,@ H!$ $,@cP$B(2B X`XX(! HH PH!HU `@!@B 0A0~F8!(g(@g(f(@f(e1B@rH@cD0HcH1B@L B @bD03BF@0BH0B@ A! 0B! a!  HDx! a!0 0, H )&0  HR HY$܃( N!p (C a!@ @Hy! !, a! ,$( N! B,@ 0BD  '&00 F@BNL H@ 81 `t0NL 0 B Y B @L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  0B D,`@D ANL $ H $!0ANL &L #a (X '&PT0  *!X@(!TB HY P '&0  PT@PY $̂( N!0B @p q4 a!  @Dy! !, a!@ @, $( N!0 B0,F0BB$ A! 8@(! !   ,@DD@0BH, @!0 0 ,1B  P!( `d(3B " X" 2B $@X m&0L0  &!`X !@PB@P, H&! HY P(!@PY $S( N!2B B01B`0,, @ N!2B @P  A!  ,(@ $B0BB2B ,` HB! HY$( N!00B F0B @P !   , sf H! HYPD!HxPN! ,8@ !@ @,H02B F`Y9$ BD02B `XH$@ B$2B X`XX @•_H02B &`X !@P @P,d *X !`X `X,B.H s`2qH`ch6`AYB,2B 8X !t t,d <X !| |,PH@TrHX}B>2B hZ"Be p\pY @Z!@YH\!HXPN!3B B Y@B! HXPN!@3B H Y !! ,@d D@YD0L F0B0, d B Y  B! ) HT! H`,,, c? N!B2B @ BdH 3B D@Y !!0 0, d B Y !B! `d `X @!  ,!@ @!@R@D!B@,`,h,p! BxY $L( N!BL @ 8@P! "$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* X" !@ @, + BB,  HT! HYPA$H CB3 N! BL D@ # !0 0,d P@@PY@F!B@X $B`Y h h&0  hZhYpA$H ^? N!3B B Y !! ,@e D@Y@B!B@% X h&0  XV`XY `!`YhD!L p\ , s ! ,$T~( N!03B F`Y !  FH0UP `!@B (=0~F0!(g(@f(f(@e1B@rH@cD0Hc@1BB L D  b@03BF0BB0B@ A!  0D! a! HBx! a!0 0, @ )&0  @P@Y$|}( L!p (C a! @@y! !, a! ,$\}( L!  B ,D00BF '&0 @BNL B ` 81 `tNL H$B`X$ L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #a *X '&`X0  ,!X8*!XB@Y H '&0  HR HY $l|( L! 0B Dp q4 a!0 @Fy! !, a! ,$<|( L! B,@ 0BD$ A!0 8F(! ! , DB00B, H@!$ $,H1B$ X!, d," A3B $ !IB`+ &0LB0L,c (!X 8$!8Y @&!@Y H(! HY $K( L!2B @ 2B DP !0 @F9! $00B02B`0 ,` @!@Y$4( L!3B @ 3B DP !0 0, sf @!@YHF!HPL! ,@ ! ,B02B F`Y<$B 2B P@PXX$A(B," 2B $@X $!@L @P'P&P2B *X !`X `X,d .X !` `, C2H`sh6qHcp:AaB02B <X !| |,d 8N8Y @! , RH`VrH:ZBP2B p\"Bc @!@X 8\!8Y @!@Y$y( L!2B @Y ! @ 3B D@Y8D! HxPL!03B F`Y !! , d B YB L D B ,`d `X !0  0 )@R! H@,`,, c< L!B2B @ B`dF3B B Y !!   ,`d `X  ! d @@X H!$ $, !H H !HR8B!B ,@,``,h!$BpY $x( L!3B @Y !! , d B"B@R! H@( PT ,`,,+ hZ , s !   ,`f F`Y F!0 F!2B@1B ,p, "< L!3B @Y8@! HPL!H@ ! B ,p, < L!02B F`YFB@X(U@ `!@B  1~F@ !(f(@e0L 0 b @1BB00BB1B @Y A! aB0@1B `X !0 b @B1B B Y B! `d !! 8@H!  !0 0 ,`2B B ! 8@! !0 0 ,`3B Bp qX ! ,`d `X(@!` B #; H!2B B2B @P !0 0 , e H HX(!`$B #n; H!< ! ,e @Y(B!`B #b; H! ! , D B2B@ $  !0 0 ,`@@2B $ U `!@B 3~F !(a00B `X @@! B , (!(Y$ģz, F!p sPC a! , (!(Y? U `@!@B @E1~FH!(e(@e(d(@d(c(@c(b1B @Y a!B,@ XB!`XY$( R! 1B D01B FPh a!@ @,@ $du( R!P0B J`2B 0L0Y A! , d B Y !   ,`c F`Y A!@ @,`b `XPL!BhD!B !9HPR!P0B (J(YPJ! H8DPR!`0B 0L0YPL! HPR! !  ,8e ! 3~FP x@= #P   #P x= #a ! 3~FP x@= #P   #P x= #a ! ! 0~F@ !(g(@f02B H cB0L 0 b 3B@0BB00B @@! 0! a! H@x! a! , 0 )&`0  0L0Y$s( H!p (C a! @@y! !, `!0 0 ,$s( H! B,B0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $r( H!0B @p q4 a! @By! !, @`!  ,@$r( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," ! H H$8!@ !0L X&`! h &yX! x&@! !@P @P,B(P2BP*`1B ,X -!X # 8 &@! !p\ p\,.2B\01B 2 X 2!d # H(&9@! Ѐ!h h,@42Bh61B 8X 9!p #f X0&@! !t t,:2Bt<1B >X p?!| #F h8&9@! (!P P,)(J`2BLp1B 8N8Y 8AN! #& @`! # !0 0 ,`2B @1B B Y B! # H`!$ x!8 @ P!( (,@PE#$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "P1B(1B "pD q ! H  H,@B $Hq!P1BP* !`X `X,$,p( H! a! 8@H! ! PC `!0 0 ,`  qw @`!  ,@ @ sT H`!$ $, IH1B P@PX P!( x$8! X`!, X`!nL "DBD,@*ܘ $ HB H,XP,`,p, 37 H!2B @Y a@! #f 8! a! , B01B `X !0 Hx! H`!$ H`!nL P(B(,`*ܘ X,B,,HP,P`,Xp, 3f7 H!2B @Y a@! # 80! a! , B01B `X !0 Hx! H`!$ H`!nL P(B(,`*ܘ X,B,,HP,P`,Xp, 37 H!2B @Y a@! # 8(! a! , B01B `X !0 Hx@! H`!$ H`!nL P(B(,`*ܘ X,B,,HP,P`,Xp, 36 H!2B @Y a@! #j 8 ! a! , B01B `X 0!0 Hx! H`!$ H`!nL P(B(,`*ܘ X,B,,HP,P`,Xp, 36 H!2B @Y a@! # 88 ! a! , B `!0 0 ,`3B  P!( Hx! X!, ,,`AYX2B," 3B $ !IB ($!(Y$l( H!3B @bB (@!(Y$l( H!Hg@3B,g 0@!0Y$( H!2BB3B@d$ `!0 0 ,``@2B 2BH@2B PH(@`d$2B " X P"!D @eD$02B &0!MB (&!(Y$k( H!2B @bB (@!(Y$k( H!Hg@2B,g 0@!0Y$( H!2BB2B@$ !0 0 ,d @@X(!`B0Y8!H8PH!3B @Y(@! H8PH!U `!@B  9 3|F`(!(`(@`(g2B@L B @bDB0B@00B0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$j( J!p (C a! @By! !, a! ,$j( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $i( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$i( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D D, B" A3BD$03B &`X `&!0L dL(PA2B *Tq  !X # !p\ p\,.3B\0 !d d,@f 4@X !l l,`X6A2B 8X !t t,# :#R02!phB, ,@X,``8!tBhY $lh( J!3B @p s ! ,   Bq  @!@X !   ,@ D@DR(C  !0 !@&L H$B$,`,@p,H$!HXJ!` C !! , d B Y !   ,8B!B 3";? J!B3B@B2B B Y B! B B3BD  !0 c @0B 88Y P!( (,`d X!`XX0N!p HP H! HY$$~, J!0B B0B @P !   ,` H H@O$0B @@X^ X!, ,, d",BD A2B $@X !0L @L$| H@9`! !@P @P, (P2BP*`A2B,p1BX.1B 0X `0!` X0! @!@X !d d,@c 4@X ؠ!l l,d 8!X02!phB H8! HY$l~, J!0B B 0B DP  A!  ,X@ !0 0 , dH0 B$@2B P@PX X!, @Q,A2B " X ! H  H,@$aDBH"02B &`X !@P @P,b (@ PBbP* $Yi X@0! !p\ c\01B 2 X `2!d h28! @!@Xj !ph p,`f 6`X !p p,d :!X0N!p H Ha8! ,@, SҠ? J!3B B !  8 Dp! !!p p,`f `X H!$ $,@d P!@PX0N!p H Ha! ,@P, S? J!3B B$ !  8D! ! , @s7D !0 0 ,` `@R C H !$ $,@c P@PX X!, ,,H8!,B 39? J!1B B Y aB! ' D @!@X  !0 0 ,` p s  H!$ $, H H$sl P!( (,@P P(qW  X!, ,, d"`,BD A2B $@X !0L @L$ !@P @P, (P1BP*`1B ,X !p\ B\,A2B 0X !d d0A2B 4@X !l l,`6ahBl4  !p h89! !t t,c<СtBx:1B >X 0!!` >p1B 8N8Y 81N!p dP2B HR HY H1R! @c PTHq0 X! ,d`XbBVD h! ,d@ТBZB2B B Y !   B @ !  ,`c `X 0!0 @  H !$ $, HH2B$2Bi$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* )A" X`XX !D D, b " DB@bXD$ !0L 0L,` &p L s !@P @P, (P1BP* !`X `X, ,Xs74 !p\ p\, .BR\C !` `, c 2 X Р!h h,82!hB 3r7? J! ! , dBB@ B2B D@Y !0 @ D 8@! @ ! c @0B 88Y X!, ,, d "! X0N!p HX H"! HY$u, J!0B B 0B DP  A!  , @ !0 0 , dH0 B$@2B P@PX X!, @Q,$ H@98! !D D, ˆ" 2BD$0A2B&@1BL(PA0B *X !`X `X,f .X !`B`,8,!\B , Cf? J!0B B 0B DP  A!  ,@ !0 0 , dH0 B$@2B P@PX X!, @Q,A2B " X ! H  H,@$aDBH"02B &`X !@P @P,b (@ PBbP* H @90! !`X cX.1B 0X 0!` `0C$2Bd4 !pl p,e 8X !t t,d <!X0N!p HH:!xB@PY$, J!0B B 0B DP  A!  ,x@ !0 0 ,`    P7 H !$ $, X`]_, !D D,@d$DBH"0A2B &`X !@P `P& X(@! !PT cT,pA0B 8.8Y !` `, d 2! X0N!p H,  P2!@PY$ܭ, J!0B B 0B DP  A!  ,x@ !0 0 , dH0 B$@2B P@PX X!, @Q, H0@9! !D @cD$0A0B 8&8Y !@P @P,d *!X0N!p H H*! HY$t, J!0B B 0B DP  A!  ,@ !0 0 , dH0 B$@2B P@PX X!, @Q,D H4@98! !D D, ˆ" 2BD$0A2B&@1BL(PA0B *X !`X `X,f .X !`B`,8,!\B , C? J!0B B 0B DP  A!  ,8@ !0 0 , dH0 B$@2B P@PX X!, @Q,A2B " X ! H  H,@$aDBH"02B &`X !@P @P,b (@ PBbP*@$ U0 `@!@B  - 0xF`(!(`(@`(g0L 0 b @B0BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$Y( J!p (C a! @@y! !, a!   ,$dY( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $tX( J!0B @p q4 a! @By! !, `!0 0 ,$DX( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( &D0  " ˆRDPC ! H  H,$W( J!4 ! , @`s  -& 0  D !P7  $Ty, J! !! ,$lW( J!3B @ 3BDbH 81 `t0@3B@3B H$,@f P!@PX 0!0Y 8!8Y$D( J!0B @ 0B DP A! , sf 8!8Y@B!HPJ!$ ! @gD"H 81 `t @`e2B@3BH H P$P1 (t H$@$@`e A0B " X ! H  H,`e &`X @!@P @P,g *X0"!pHBH(!TB S+ J! 3B D ~F aB0B @`a|  @!0 0 ,a@ H 8 H1 `t @@X   0 @d @2B X`XX X!,  !s7 XB! h(By! x8B! 8B! !D H"9@! ! H  H,`c &!`X 0q$!` `,p, #?= J!p qC  & 0 DB2B @Y @! `*P  # d H HX H!$ @/ P( H(4 ! X A&,0 X(L "XD# & H0 $0A2B &`X &!L ,)P (`P `,p, ,hPJ!B^* J! B2B D@Y 1D!  d@02B `X !0  , @ # d H HX H!$ @/ P( 8( ! X A&,0 XAL "XD# A& H0 $02B &`X &!L ,. (`P `,p, ,8PJ!B* J!B0B @Y$00B0L 0 B0 ,8a! B@Y $Dz, J!< !!   ,f @Y @!0 A 8 @1 `t `X `B 88Y$S( J!1B @Y @! ,@$ `! #`+ 0 B0 ,8a! B@Y $z, J! 8 B! a!   ,a@0 H 81 `t `X  0 H9x! @ & 0  @@R H!@$ #@c P`P(PW X &,0   "_D ,L $0H 0L' L$ !@P @P,b (Pq8 !PT PT,d ,X !p\ p\,a0!H P`1 (t $X\0 `TB @.@Y $R~, J!t !! ,@d D@Y !0 0 ,a@ H 8 H1 `t @@X  `B @@Y $L_~, J! ! p (C  & 0  D`@N D @! H9 ! H !$ $, AJH2L PH(#`d X`XX X!, .8 "D XD ! N& H0 ޞ$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "$02L &L# &@P0 (PA2B *X *!T ,/d ,`X `,p, ,PJ!B( J!B0B @Y $00B0L 0 B0 ,8a! B@Y $z, J! 8BX ! HByP ! X0B ! a!   ,a@0 H 81 `t `X  0 `9p! @ !  ,B @ s H!$ 8P ! P n&(0 PL X, g(" 0B,$0B`X !XL #d (!X !T #` ,X,A0B 0X$`Bd4A0B 6`X 6!l #` 8X 8!p #` :atB`t<A0B >X>pB0B 8N8Y@$BRB0B PT@PY PT! #` @Y !@! #@` D bB``@0B @@X H !$ $, AJ HH # ` " X$DBH0A0B &`X !@P @P,(0!LBP&PA0B *X *!T #` ,`aXB`X.A0B 0X ` &d0  2 X p2!d @2y! !4 ` &l0  6`X p6!l l, 6lBh0A0B :X ` &x0  <X p<!x P<! $ 0%B 8 :!#` @P@Y Ha &0  HR HY HqR! `Ry! P!4 a &0  @Y q@! ,D @B @P!P #`` `X  ! #@` D bB`@0B H HX@0B P (B``(1B D,@`D$0A0B &`X !@P P&`A0B ,X$XB\2A0B 6`X !` `C`6A0B 4@X !pBp,@p4A0B <axB`xLA0B :X $t# ` HR HY9$BPB0B PT@PY  &0 0 "B T@0B @@X  & 0  D!@Y @ !! # ` H`$B@`$@0B X`XXA0B "!DB@`D$0A2B &0LB 8 &p0  8N8Y @&!@Y $x, J!p C !! a@! 2B@ ,`*ܘ 0 B0 ,`,p,, 3& J!p 0C !! a@! L D B ,`b !`X 0@!0Y 8D!8Y @!@Y $K( J!p C ! ,@g D!@Y  &0 0  !`X0@!pB8Y @!@Y $( !! a@! nL D B ,`*ܘ 0 B0 ,`,p,, 3% J! &0  @R ! #`c P @ & 0  H !O_$,L P( ,' , !D D, b "Dq78 ! H  H,`d &`X !@P @P,a*`!H 8T1 `t XP* `HB @(@Y $J~, J!t !! ,@d D@Y !0 0 ,a@ H 8 H1 `t @@X  `B @@Y $W~, J! ! p ( C  & 0  D`@N D H4B9X! @! X! H!$ $,@d P`)B`d X -BH 8!8Y @!@Y $(  8 BH! a! ,@aD0 H 81 `t `X  0 H9x! @ & 0  @@R H!@$ #@c P`P(PW X &,0   "_D ,L $0H 0L' L$ !@P @P,b (Pq8 !PT PT,d ,X !p\ p\,a0!H P`1 (t $X\0 `TB @.@Y $|H~, J!t !! ,@d D@Y ! ,`a H 8 @1 `t `X `B @@Y $U~, J! ! p (`C  &0  B@ANB !0 H9! @ & 0 @L H$ #@d P@PX P!( `.| XP,# d " X "!D @, $ H XH" ! n&0L0 &@A>L (P# &PT0 *`A2B ,X ,!X ,.| .`\ `,p, ,HPJ!B# J!B0B @Y$ 0BDL BB,8a!B@Y $y, J! !  8Dp! !! ,D@2L B#`d `X !0  .8 @ H 4 ! H N&$0 H2L PH(# X &,0 XA2B " X "!D ,@/d $`H `,Xp, X,PJ!B*# J! B0B D@Y $0BBL @B,8a!B@Y $y, J!|  &0  B R ! #c @P  &0 0  @!G_ ,L H$ (' ( X !, ,,`aX X,q78 !D D,@d $@X !0L 0L,a(P!H 8P1 `t XL( `DB @&@Y $D~, J!t !! ,@d D@Y ! ,`a H 8 @1 `t `X `B @@Y $tQ~, J! ! p (@C  &0  B@ANB @!0 ?#0B 0B HHa7 P!(B(,`f X!`XX 0!0Y 8!8Y$( J!B0B @Y0@! HPJ! U0 `!@B  - 1~F`(!(e(@d(d1B@0BB 2B D@Y E!  a@2B B Y 1B! c@ 1B Dp q0 !! , e B Y 1B! @AB!`B@p,H$!HkXJ!p q0C A!  cB ! # !0 H8! H &$0  H HX H0!$ @c$ X!, X`! !D D,@c $HB 8P!8Y@$ H C= J!p PC ! , DB 1BD$ ! ,@02L  # d H HXHL P( H(4 ! X N&,0 X2L "XD# & H0 $02B &`X &!L ,/d (`P `,p, ,xPJ!B"! J!1B Bp q !!   ,D(L @#`d `XL @ H 4 ! H A&$0 H(L PH(# X &,0 XA2B " X "!D ,@)P $`H `,Xp, X,HPJ!B  J!L B c@ 1B6q$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 2" D@Y D!   ,`P @`! #`+ 0 B0 ,8a! B@Y $Ly, J!L @ ,@1BB !  8D!  !0 0 ,c @ B 8P!8Y@$ H Cz= J!p C ! ,D@1BB$ !   ,@D D@Y$2B 0L 0 B0 ,8a! B@Y $ty, J! U0 `@!@B  % 0~F`(!(f(@e(eB2B@L B @bD3B@00B0BB A!  0D! `!0 Hx! a! , 8 )&p0  8N8Y$?( J!p (C a! @By! !, a! ,$?( J!  B ,D0BB '&0 @0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $>( J!0B Bp q4 a!  @Dy! !, `!0 0 ,$>( J! B,@0BB$ A!  8D(! !0 0 ,`@0B , P@!( (,P1B( !D H"8! @ @! H X$(! @!0L 0L,`B&@A2BL( !PT h*8! !`X a .X /!p\ xX.(! ` n&`0  0!X !d # Ѐ!h `a 6`X P7!l 8h6(! n&p0  8!X !t # !x a >X ?!| Hx>8(! 0 n&`0  0L!0Y 8!0 # @! a @@X @! X(! n&0  @!Y ! #v !  `a `X !0 h8(! H n&$0  H! HX P!H( #V X!, a " X "!D x,"(! o& H0  $!@X !L #6 !@P a *X *!PT 8P*! o&`X0  ,!X !\ # !` H1;(! @ o&d0  2! X !h # !l X6! @!p p,82Bp:2B <X <!x h<9(! ` o&|0  >!X 0! # x<(! 8 o&p0  8N!8Y @!8! # 8 <(! @ o&0  @P!@Y !@ # H<9(!  o&0  B! Y ! # $iW hX >|qw 0!  , 00Y$9( J! ! , g B! Y0@!pB8Y$_( J! 3B D3B @P ! ,$t9( J! !   ,g @Y  o&0  B! Y0@!pB8Y$L9( J!@ #g @Y0@! HHPJ!B3B B Y !   ,+ @B, 8B8Y @@!@Y $4#z, J! U0 `!@B 3~FP x@= #P   #P x= #a ! 810~F@!(g(@g(f(@f(e(@eL @ bB 3BD00BF@0BH (A!P 0J! a! H@x! a! ,  P )&0  PT@PY$8( P!p (C a!  @Dy! !, a!@ @,  $7( P!0 B0,FP0BJ '&0 @BNL B @ 81 `t@NL H@B YB 0@L 0 B0 , B0NL 0 B . H$ @ P$P1 (t H$ HX  0B`X,,`@,ANL "D "! ANL $H #`a &`X '&@P0  (!XH&!PB@PY X '&0  XV`XY $7( P!00B Fp q4 (a!P @Jy! !, a!   , $6( P! B,@@0BH$ A! 8B(! !0 0,`DFP0BJ, A!   ,D01B H!$ $, H$d6( P!2B @Y@@2B H YH3B B Y !0B0,d (J!(YHB!B@PY XJ!`XY $l ( p (`C !   , $5( P!B@X ! ,d H Y H!@ @3B B Y !!0 BP3B (Jp s HJy(! XJ ! hKy! a$(q< `!0 0 , d H %B$2B P@PX Pp( s  X!, ,,`XX1B," 2B $@X !0L  &!H # !@P @P, $5( P!H8U` `!@B ) 0~F@ !(g(@g0@3BL @ bB03B0B 0B@ A! 0B! `!0 Hx! @`!  ,@ 0 )&`0  0L0Y$l4( H!p (C a! @@y! !, `!0 0 ,$L4( H! B,B0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X(.!``B0Y 8 '&p0  8N8Y $\3( H!0B @p q4 a! @By! !, @`!  ,@$,3( H!0 B0 ,0B @$ A! 8B(! H!$ $, AOH0B$, X@!, ,,X1B," ! H  H,$2( H!3B @Y(@! HxePH!3B B3B @p q !0 0 ,$2( H!B@XN L$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " ! 81 `t02B2B H$,@e P!@PX (!(Y 0!0Y$( H!0B B0B @P( !0 0 ,$2( H!0B B Ysf 0!0Y8B!HdPH! ,@ A! fB0 H 81 `t 0 @ d @2BP3BX!H P,1 (t X$P,@@d($03B &`X @!@P @P,d *X !`X `X,f .X(&!`PB@,!\B S H!0B@03B ~F` @p! aX H!$ $,@`P H 8(X1 `t P@PX H$ $ c$" 1B $@X$03B &Lq $PA3BP*`3B ,`[~F`X. !` 0!0B`20B 4iaW `!lBl,e 8!X (6!(Y 08!0Y$( H!3B @Y(@! H`PH!B3B @@@XU `!@B PEd)cb`@2!(e (d(d (c Hcd@0BB 2B D@Y`D! H`PV!02B F`YF"H ! , B A!   ,`b !`X @! B , h!hY p!pY $( p C !!0 HHFy! XG! h Gy! xG! 8F! HFy! XxF! $q xGP! 8GH! !$q7 XF! hF9@% !   , Dq !0 0 , p q H!$ $, H H$sl P!( (,@P P(sw` X !, `y%X@ !D D, "Ds$ ! H  H, $pH s !0L 0L,`˜&@1BL($`0BT, $0B\0 $0Bd4 $0Bl8 !t t, :ts  $0Bx>l ` $Ђ0BZ\ p! , p\sW  x$0B`, @ $0B @ $00BF A!  0C !0 0 , b H HX H!$ $1B X`XX X!, d " X "!D xD0! ! H  H,`d &`X &!0L L$ !PT PT,*`1B ,X ,!X ,d .X .!\ ,,,YPV!BF V!"H ! , Bs7 !0 0,`F 0BD01B `X @`!  ,AB @@ #@a P@PX P!( `c X`XX X !, X,0! !D D,@c $@X $! H H" !@P @P,(P0B *X *!T ,c ,X ,!X ,,,WPV!B V! A! ,$+( V!0B @B@XPU `@!@B  - 2~F`(!(d(@c(c2B @Y0@! HVPJ!B1B B B1B Dp q  @!@Xb ! ,`b !`X H`!$B$,@a P!@PX0@!p B8Y @!@Y HT! HYP$)HUPJ!1B B Y !  B1B @Y @!0  @2B @@X H!$ $,@ 88Y$*( J!H U0 `!@B ! 3~F@ !(b(@a00B p s| '&0 @BNL B ` 81 `tNL @B`X L BB,0NL 0 B. @ P1 (t %Y @ 0B@ ,`@ BNL B B!BNL @ #`b `X @ '& 0  @!@X(!` B0Y 8 '&p0  8N8Y $)( H! '&0 @BNL B ` 81 `tNL @ B`X  L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  0B D,`@D ANL $ H $!0ANL &L #b (X '&PT0  *!X((!`TB0Y 8 '&p0  8N8Y $(( H! A! 8@!  '&0 B0@NL 0 8 @1 `tNL H$B`X$ @L P(B(,(0NL 0 B`. X, P,1 (t X$`XX  0B@ H,`@H0ANL &0L &!@ANL (P #b *X '&`X0  ,!X(*!`XB0Y 8 '&p0  8N8Y $'( H! A! 8@! @<$ (A!P P, j& H!H@X0B8~F# 0p1  XD08 88 @$ (a  A @$A X$A @(A P4 @(@XU `!@B ! 3~F@ !(a(@a00B p k HuP! U$L B #`a 00Y(L!` H #? a p&0  @H`*  # * H$ @* P( P!L X,  8(X1 `t PH(@ + "HD #@+ $ H `+ &0L &!@L (@P  PL1 (t $ L@, *T #, ,`X , .p\ .!L 0`  h\1 4t 0`\@ - 2d #@- 4h `- 6l 6!L 8p  m1 Bt <l@. :t # $`xi H5! X0! `!| |, 0!0Y$, p&0  @H`/  # / H$ @/ P( P!@L X,  8(X1 `t PH(@ (ę "HD #@(ę $ H `(ę &0L &!@AL (@P  PL1 (t $ L@)ę *T #)ę ,`X )ę .p\ .!AL 0`  h\1 4t 0`\@ *ę 2d #@*ę 4h `*ę 6l 6!AL 8p  m1 Bt <l@+ę :t #a 0<0Y(L!` H #? q&0  @BNL B #`. 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 01B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X(,!`\B0Y 8 '&p0  8N8Y $L#( H!L @ b B @`,ę  #(ę @ bp$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* [" H@$ @@-ę P@( #`)ę X, b "XD @@-ę $XH #`+ę &0L b (0P @.ę *T #2 8 ! T$pAL .\ #" H y! X(! h89(! T$AL 2d #@3 q&l0 h6U `!@B (=1~F0!(e(@d(d(@c2B @Y8@! HDPL!0B B 2BD0NL F0 0,`D Fp q0 a!B,p,  L!1B B 0B@ ,p,  L!0B1B F '&0 @BNL B @ 81 `t0NL 0 B Y B L H$B$,$0NL 0 B@. P( ` P(X1 (t P$@PX  1B D,`@D ANL $ H $!0ANL &L #. (@P hP1 4t0`NL ,`XBXX( pL .p\Bp\,\(@NL (@PB. 0` a1 Bt <XP0 A1B@h,Bh(ANL 6l 6!ANL 8p #e :X '&x0  <!X8:!xB@Y H '&0  HR HY $| ( L! A!0 0,$t ( L! B@a D!@Y 8D!8Y$l ( L! B`a F!`Y 8F!8Y$d ( L! 2BD03BF0@2B `X H!$B$,@d P!@PX X!,B,, b "! X !@H #e@! B@H,`P,X,,f $( L! ,P f ! (=1~F0!(d(@c(c(@b2B @Y8@! Hh?PL!0B B 2B D@Y8D! HX?PL!0 Ba @!Y 8@!8Y$( L!B2BB 2B D1B @Y !0 B0 , c H! HXP$2B(3B" H`fH&pB2BeH@! B@PY X!`XY`a!3Bf $D( L! ,P f !  3~F@ !(a(@a00B p q  a! a Bp q `!0 0 ,$( H!U `@!@B  1 1~F`(!(e(@e(d0L 0 b @2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$L( J!p (C a! @@y! !, a!   ,$,( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $<( J!0B @p q4 a! @By! !, `!0 0 ,$ ( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D D, "Ds ! H  H,@ $`(PWD `!0L 0L,$\( J! &0 @ 1BDL B , DB0@1B1B @@X H`!$ $,B 0L0Y8!HX ! ,@e D@Y 0A!` `,$, ! ,e @Y 0C!` `,$,  & 0  D@Y 1D!  cB ! 8@! !0 0 ,`@@1B 1B H HX P`!( (,J 0L0Y8!HX ! ,@e D@Y 0C!` `,$<, ! , e B Y 0@!` `,$ , !   ,e @Y 0D!` `,$, ! ,  B 2BD ! 8@! !0 0 ,`@@1B @1B H HX P`!( (,O 0L0Y8!HX ! ,@e D@Y 0B!` `,$4, ! , e B Y 0@!` `,$, !   ,@DD2B@4$ ! , DB01B $ @ r& 0  @p qx H`!p$ p,@d P@PX X@ s&,0  X!`XX s&D0  "! X0N!p HQ @P@Y H! HY P"!@PY X!`XY$ ( J!p C a! @/ș D # ,̙ B #/ș 0L` `, v  J! a! ,$( J! 2BDBL B #/ș @ #" `!0 /ș @ # ,̙ H$ #/ș 0L` `, R  J! U0 `@!@B  3~F@ !(a(@aPL (JP P, 6  H!L @ ,̙ B #`/ș  #0a ! )3~F !(a0@L 0 8! r&0  @`s`  s&0 0  ((Y a! ,)̙ @ B ,`+̙ 0 B0 , J Y($`B@p,, , c  F!p C ! s&0 @0L  #/ș H@ @,   F!BL @ #U `@!@B @A1~FH!(e(@e(d(@d(c(@c(b0B@0BB rH`$aF@H4aJ`0BLL @ 8@! @!@X !! , Bp s A! B,`b F!`Y !@B@,@,``, h!hY pF!pY xH!xY$$( p C($`0BLB1B @Y !$ #@d D@Y }$ #c H Y @!0   ! # c ((Y P!( (,@ X`XY$( R!@ #a0L0B `@`Y ! , PB@PY XL!`XY hL!hY  R!B  R! 0B@ ,@,   R! a!  , @Up `@!@B 850~F@!(e(@e(d(@d(c(@c0B@L B @bD0B1B Fp ql !!@ p C (!P P,a @!Y !B, ( P@!@PY XB!`XY $,, P!p C !  A$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* >"0 ,`b F`Y a!@ @,e (J(YHD!B` `J!!H8P? ! , b B #@c D@Y !  DH@ a!@ 8H! (a!P `gL H$ @f$3B !D @"y! ! H X$! !0L 0L,  P )&0  PT@PY$( P!p (C ! @@y! !, !0 0, $( P! B,B 3BD '&@0 HPBNL (JP 81 `t0NL F0BY@ 0L 0 B0 , @0NL 0 B . H$ @ P$P1 (t H$ HX  3B`X,,`@,ANL "D "! ANL $H #`g &`X '&@P0  (!XH&!PB@PY X '&0  XV`XY $( P!3B Bp q4 !  @Dy!  !, (!P P, ($( P!@ B@, H03BF$ ! 8@(! ! , DB 3BD, (!P P,(J0@3B H!$ $, H $sD P!( (,`f X`XX X!, ,1B " X ! H  H,`e &`X !@P @P, H" HYP$!LB$( p  C@$< !0 0,f H Y H!@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($( p  C@$ !0 0,f H Y H!@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($( p  C@$< !0 0,f H Y H!@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($( p  C@$ !0 0,f H Y H!@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($( p 0C@$< H 9! !0 0,f H Y aH !@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($( p  C@$ !0 0,f H Y I !@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($ ( p  C@$4 !0 0,f H Y H !@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($( p  C@$ !0 0,f H Y !H !@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($ ( p  C@$4 !0 0,f H Y AH !@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($( p  C@$ !0 0,f H Y QH !@ F1B @Y ! ,@e D@Y (!P P, H@ HYPB!B($ ( p  C@$4 !0 0,F@1B H YHB@X8U` `!@B (=1~F0!(f(@e(e(@d1B@rH@cD0Hc@1BB 1BDrH`$cFH@4cD1B@0B1BFrH@bDH`bFb1BB 1BDrH`$bFH@4bD"1B@00BFrH@aDH`aF0BB 0BDrH`$aFH@4aD0B@02B Fp q  !&0 B BBL D#  c&00 FrH@( D#e @Y @! 8@ ! H@y ! X$@ ! 8,@ ! H<@y ! X@ ! 8@ ! H @y ! X(@ ! 80@ ! H8@y ! X@ ! !0 0, e HB HY ! B ,@R! H@, C !@ # d BP !0 0,$| ( L! !   ,e H@ HY !B,@R!H@, C !@ #d @P !   ,$ ( L!$ ! ,`e HF HY !B,@R!H@, CN !@ #`d FP ! ,$ ( L! ! ,@e HD HY !0B0,@R!"H@, C !@ #@d DP ! ,$\ ( L!4 !0 0, e HB HY a! B ,@R!*H@, C !@ # d BP !0 0,$( L!  s& 0  D!@Y ! !&0  @!Y ! !&0  B! Y !0B0,`c !`X @! B , b H! HX P`!(B(,p,, ,@,`,@,H,P, * L!| 8 @ ! !   , e HB HY !0B0,@R!H@, C6 !@ # d BP !   ,$( L!| !0 0,e H@ HY !B,@R!H@, C !@ #d @P !0 0,$( L! ! ,@e HD HY !B,@R!"H@, C !@ #@d DP ! ,$,( L! ! ,`e HF HY a! B ,@R!*H@, C !@ #`d FP ! ,$( L! !   , e HB HY A!0B0,@R!2H@, CF !@ # d BP !   ,$l( L!  t&00  F!`Y ! !&0  @!Y ! !&0  B! Y ! B ,`b !`X @! B , a H! HX P@!(B(,p,, ,@,`,@,H,P,  L!\ 8@! !0 0, e HB HY ! B ,@R! H@, C !@ # d BP fLKw$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* b"A !0 0,$\( L!\ !   ,e H@ HY !B,@R!H@, Cj !@ #d @P !   ,$( L! ! ,`e HF HY !B,@R!H@, C. !@ #`d FP ! ,$( L!l ! ,@e HD HY !0B0,@R!"H@, C !@ #@d DP ! ,$<( L! ! t&00  F!`Y ! !&0  B! Y ! !& 0  D!@Y !B,`c !`X @! B , b H! HX 8F!8Y @B!@Y HD! HY P@!@PY X!`XY `!`Y h!hY$( L! 84@! !0 0, e HB HY ! B ,@R! H@, C^ !@ # d BP !0 0,$D( L! !   ,e H@ HY !B,@R!H@, C" !@ #d @P !   ,$( L!T ! ,`e HF HY !B,@R!H@, C !@ #`d FP ! ,$( L! A t&0  @!Y ! !& 0  D!@Y ! !&00  F!`Y !B,`c !`X 8@!8Y @D!@Y HF! HY PB!@PY X!`XY$( L! ! ,@e HD HY !0B0,@R!H@, Cj !@ #@d DP ! ,$( L! a t&00  F!`Y ! !&0  B! Y ! !& 0  D!@Y !B,p,, ,@, C L! !0 0, e HB HY ! B ,@R! H@, C !@ # d BP !0 0,$( L!  t& 0  D!@Y ! !&0  @!Y ! !&0  B! Y !0B0,p,, ,@, CV L! !!   , Dp q4 !! , d B Y A ,&00  F!`Y  !&0 0  !`X8@!B ,@, C" L!D !!   ,, @B, @@!@Y$$( L! !B,p,   L!01B`0,p,  L! B1B@ ,p,  L!1B,p,  L!0B ,p,  L!00B`0,p,  L!(U@ `!@B (-1~F0!(c(@c(b(@b1B @p q  @!@X ! ,$( L! 0B D00B F`Y8F! HGPL!0B @0B Bp q A!   ,`b F`Y8D!B # L!2B @2B BP !   ,$( L! ,X@ A!0 0,$( L!1B @Pt ! ,$( L!p pC !   ,`d F!`Y !B, @F!@Y H@! HY $( L!1B B Y !!   ,`d F`Y a t&0  @!Y8B!B  P@!@PY$t( L!1B B Y !!  B $y, L!@$ @!@X(U@ `@!@B 5 0~F@ !(g(@f2B@L B `b1B@00BB1B B Y C! a@0L 0 8P! t&0  @!Y  t&0  B! Y (@!(Y 0B!0Y$( H!L @@ # A! , (J(Y$|( H!B2B @3B B YB02B3B H HX H!$ @e$3B @!D D, " X ! H  H,`.Й &0L 0L,f (X @!PT PT,d ,!X("!`HB@(!UB HR HY P!@PY X,!`XY$( H!p s`C ! @!3BB03B@H  < P!( # X@!, ,,`X X`XX !D D,@(ԙ $ H  H,`e &`X `!@P @P,X0"!p2B 8N8Y@$!LB@ X!`XY `!`Y $$( H!p s`C ! @!3BB03B@H   P!( # X@!, ,,`X X`XX !D D,X0"!p2B 8N8Y $( H!p s`C ! @!3BB03B@H   U `!@B -2|F !(c03BrHg0H g 3BL @ `b1B0B0@1B `X !0 a @0B H HX 1!@ @,  F!B2B @01B H@!$ $,@d P@PX !!@ @,P$( F!p s`C ! @!01B1BH@H H \ X!, # @!D D,@d $@X !0LB0L,f (!X !"!@ @, 0&!0Y 8(!8Y$d( F!p s`C ! @!01B1BH@H H  X!,B,, g "! X ! Y ("!(Y$( F!3B@0@0B3BH@c$3B1B "pE a\ !H # @!0L 0L,d (X !PT PT,` ,X !p\ p\,e 0!X !&!@ @,0*!pXB H0! HY$|( F!p s`C !0 !1B 1BP@H P  @!D @gD$03B`0L,/ԙ (@PB@P,@,P, # F!p `C !0 !1B 1B P)ax X!, # @!D D,@d $@X u&0L0  &`X !@PB@P, H Y($!`LBp, CV F!p s`C !0 !1B 1BP@H P  !DBD,@c $@X "! Y($!HPF!01B `X !0 a 1B P@!( (,`d X`XX u&D0  " Xf$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* M"R `! H  H,`` &`X @!@PB@P,b *!X !!@ @,X0"!pHB H(! HY P*!@PY$( F!p s`C !0 !1B 1BP@H P  !D @gD$03B`0L,@,  F!1B@ @!0 0 ,d @@X !!@ @,@ 0!0Y $d( F!p s`C ! @!01B1BH@H H  U `!@B  1 2~F`(!(c(@b(b01B `X $0@! 0BDrH` a H1a00B1B @Y @@! B ,@a D!@Y `!0 B0 , 8P!8Y@$B HY PD!@PY X!`XY? p C A!B, B Y 0@!0Y 8qB!p p,8X A! B ,`,  J! U0 `!@B  1 2~F`(!(c(@b(b01B `X $0@! 0BDrH` a H1a00B1B @Y @@! B ,@a D!@Y `!0 B0 , 8!8Y @!@Y H! HY PD!@PY X!`XY? p C A!B, B Y 0@!0Y 8qB!p p,X A! B ,`,  J! U0 `!@B  1 2~F`(!(c(@b(b01B `X $0@! 0BDrH` a H1a00B1B @Y @@! B ,@a D!@Y `!0 B0 , 8!8Y @!@YH$B@PY X!`XYz? p C A!B, B Y 0@!0Y 8qB!p p,X A! B ,`,  J! U0 `!@B  1 2~F`(!(d(@d(c0L 0 b @B2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$l( J!p (C a! @@y! !, a!   ,$L( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $\( J!0B @p q4 a! @By! !, `!0 0 ,$,( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D  @"!`DB`,  J!B2B @Y !  AD!1B BBB`b 0` B 8D!8Y @!@YH$B@PY X!`XY?  U0 `!@B  ) 2~F`(!(c(@c(b0B@rH@aDH`a0BB BbL D  8Dh!  1&0 0  `X 00Y$( J!p C a!B,`,X 0 1&`0  0L0Y$( J!0B B 0B@ ,b @!Y 0D!0Y 8@!8Y$ ( J!2B B 2B DP ! ,$t( J!  1&0  B Y A!   ,a @Y !0 0 , 0B0Y8D!B $4( J!1B B Y0B! HPJ! 0B@ ,`,   J! $y, J! U0 `!@B  ) 1~F`(!(d(@d(c01B `X $0@! L D  b@0@2B0B 0B@ A!  0D! `!0 Hx! @`!  ,@ 8 )&p0  8N8Y$T( J!p (C a! @@y! !, `!0 0 ,$4( J!  B ,D0B@  '&0 0 @NL H$ @ 8$P1 `tHNL X,B HXH, L "DBD,DNL H$B@. $ H ` PH1 (t $@XH$$ @0B@P, AHPPANL *PT *!`ANL ,X #a .X '&`0  0!X0.!p`B8Y @ '&0  @P@Y $D( J!0B @p q4 a!  @Dy! !, @`!  ,@$( J!0 B0 ,0B @$ A!  8D(! H!$ $, AOH0B$, X@!, ,,X1B," ! H  H, $Hc0 X$X! !0L 0L, 0L0Y$t( J!1B @Y 0@!` `,  J!  $`ap H$q! 1&0  @qw` !0 0 ,`  q @!  ,C 0L0Y$:( J! 0 1&`0  0L0Y$( J! 2B D2B @Y B Y 0 1&`0  0L0Y 8!8Y@@!B HR HY$( J! U0 `@!@B  ) 1~F`(!(d(@d(c0L 0 b @B2BB 0BD00B A! 0@! a! HBx! a!   , 8 )&p0  8N8Y$( J!p (C a! @@y! !, a!   ,$( J! B,B0B@  '& 0 D0@NL 0 8 H1 `tNL P(B`X( @L X,B,,,0NL 0 B . "D @ PD1 (t $ X " 00B`0L,`@L@ANL (@P (!PANL *T #a ,X '&p\0  .!X0,!p\B8Y @ '&0  @P@Y $( J!0B @p q4 a! @By! !, `!0 0 ,$( J!  B ,D0B@$ A! 8B(! !0 0 ,`@0B , P@!( (,P1B( !D D,  "Dq7 ! H @$!02B`0L,`,p, #^ J!2B @ 2B DP a! ,$( J! ! ,@b D@Y $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " @I$n LPQxQU>@ 9tPc)g2,9!1$y'jD("03á~P8vp7!@d8Rq]4H)RQ롛[b&=cRא%mY=h3x5Z~%ݪgP [8j1l1ٶr0|Hl Yč0phbO\TEdr#a?Y3тW` dJ|󐲆js#xAD4L T4H_[G3ҳX|c۸Jܜujp@~xcoPneP+1 wLŒ|o{6K>ZAP?=z>9P<7E@PaLFdp q@,2'] qs/qSpt V4dQAnɳ)[!5D- U\ IK 6CkNƚl;\b-M _y<8sǐI@•90D.OU+T? 6TBq`P }&d2E n qx2΃!p-Wf|ݟ (aZ@bA hG@-`ipۉfFa*Z<`o"`erj@$=X4#14`VcQ 1ڈgHCEP'3w  NLe`U x//&0|L>HS%P0@!̸n) P.JD+bAIcayp2iQY q#(I^qB!1@ADD9$V U/ cI"l[@DQ x#Sj@oX`/" Ќּxx)BBc,*`Qr =\!E`pn{@L)d=aH;0@T4+%-K:2`8 `1 hC@ؘ1@8XH0EW u-Ս(F `.UB>!I\0^W@ /x` ,` )ETX] #0@-*F] l5|*b*#.5 [x91~%(@xrHpMYcX$i5<"5ન 5oVe#yQDLVu<5,tpSv鱡GPj3I;+ܚ2`؅Ed2/'cDA1(V^SCP41@NOxEcJ;" ${ 'o-r7 "Űj2;@.IoN6|FC#rܸ0q 0@w`T?Pfc0@ۈ`j:p\CcCR`Ag`](yM `,gv&3_qJ}%q$q`v Htkܱ{Kи(XXMX4?QvQSc @+)&NS$Qϯ yC9h#@|qc܃y1@a:XX!$ wTHpHJKM 2Ϙ, YXl"#QA<3)) 24Ӊ#7rK91 jy(dY;:$1 1 !DZ j%@ PQ87ҸB@J:(OӰ8Hxrߦc:Q@9xd`0l`iIP+JQ |@|X=4`"%`] S|&p2?Z%#sCc7 @dRKhjF\ Q<QF0T5PM68qCL5騖~6wt JCZOp 7pSH K <27w"'@flm 9h|c& 2lM*P|.@@9 #9c/v _pnu6uh'ZA`|P>B *p!=\q8 }b o_o X 1I7n +hC4xfO%!cEPQoQ&"S2кBz@7Nэ$]2C(\ @A$Ss_h@`ca`XU+q @k^[(Iy@N^XYDE%p&(`\ @˚#OZءg=_RFYe1aYΦTYC $y 0)A @0iW]8o7BC T H1ap[\`XpȀ1pj@C ("KyUQKhGaS $O0SX@1 (#S3ObI\^Z`"-G .P9@ŷELl{!" `%fgJ#7d8XT[UxC0-vb ER@X~pSpCtTSZ9lgaVIãcx&믱rl@# [C= *@=c,h(9A _Ay<-u{Rh Ih? !r5u G@8h#ّ"U[a]Wr_W9@cF pe4m"3y%`Xji=i-2p OR9HZQB^`LSc+B'@1j,f-O H pkˀɤO\#\uPg uXsYITe$`֥|\58n]QW1{@K{q:CcI"X;)4ATCyP+q] 3XY1W[b3_|qOW4ȟr`i˸vql,PAX(vvE.@Ʀv1@NZp ]IN @Yqgd+(;3830F&%y0" v1q٬8!F%]LPPH=^tlp&91;@` c3T0{ƭL9acN&SĹQ&_!opāQ`[@KxR<a1s)]v  HjQᝃ#D A`[ThO8<65@`=:q|/v4f:\hܸ()y+R~  p p'  >jd 77lgXN9jr ppEqzi"uC1c =И>nV=[El@fWȷ`#4Ps/kdIH$Hs- OdkNp @gg\ ǨP/Z#ů`c)牖НT6K@břH}v~Obd~-pwN" ]8ƙ] Oޣ ע]H4t@sbpZ5\_-aqVMfK~d>A=N@p ^# 0&qR!5@< X=A._rPp!.LRS{ I@!$Xz%e.vF pDU2 ?`5jKP`b:TAL` - B@ 0x Qp!V rԺ?a1>+ױ] ]}jc ^*@lYx(,0@L) t\1 _^5 QЁ~s p̍ىA%C9%/0` L- ^Sq00-@mhׁM|{b }1iwK/wAQwP YH=C : bJ!\҉U$LtZ]@X4Id!PXU~@_U`W>`бeW=O)c"Q %=6Jˣ'Kh7=Pa`p`.(P<\lئ;ubZu|`@ eo/B%^FCEhYn7mY^cv?t!1O㹈1iyx9 P Wi9PH?\]ap7dHL($X!_("{DD#\ys~5g"@{& kGTPY=h"CKq3Pe d/yVT)7dD2@Glar>&0-! |yK% .%#ZvP!JoP.J|S(`2 w`mwxp@%PJDd( Xտ2o@&UhivʢwIpH 7d%MO@w$CTWW%}6B@Aa0-)Jc6/TC85o+raJPi1o!q`F)IVr >I C Lxc\2l8]ɯdhCjpOP ,50`$B(Pf4ܫ!K_F`]].7M"b`< R14/fp.Œovc{CD#@^5vWznhF耠#4|cASS0lY-tCZr^ @B 4H>"]@Sbg`A`UH})_D91S< o`wŮsÕhA\0GtECm]Ty&0r`πK¯TgVF(&~_*7)O lh{j3Q6/`6z> Ӕ8h X|w x"r-Od 5wr)GW B`ϕa10h yM: #)KN#s{&zc #zܠ^C2TL HײtRHBŘzNqpCPc~:QD~$@'r>70ROFȄyu\Nze#aTpX!ST{3,W:a1] {&iWB%x]((fx\7dsKU'@"M& 0*ynWPQZ;`b pljjpE8"%`:(GP4hFEp{q!T/r8Azgކ)?'\`S]'M `#L-\>Xq4LM6 %of0M 幪4͂8XfAD/%OIoSgOC0~x93 NI aX;7F\\Tx>(6~T=j dŰ :4pD6~ -9WCNUSx,1Eq40XYJR ) ?Ec&X`Q~d-]Zd帕  C`\Y2gpt 5`7Q@uSP@) X3`E`ōPa0&Yya0hjLjd2jUU A!`w)orMJ X-19@RC=&b'=M<|Q2]Q~1 TW H]cjfiNP8`y1my$/``bع U \ 1 W:By@#-H%}!Ljk5p&q5yB(/4- y`Ma=/(ePP{NSb`gY?T⊜`I'3"Yc!= ;M[֌nQ}#4=Tc0LIR~Jx5%-uU \ 84!ubf5j!OT%ix"ŖTW6a>88 V\ P6'TPLS51A7p=p?`XWls8Ap6n-!Ap20w  k>3H 0 ˊ&IVpJИxMř8wp+`*=0FG,^ Kx1"YCMXP@&&UBTP %+m<w8;$ dr<1@\Em@ ǫ9O&3,x`4QPQ#Oٞ8NP.f_g sMKHWXp z3inB27 C<-y4@x drφ<1.hde&L×1w߰%nH ]mĨpa>CV[pl`M M0|#])W@j EѫL_aBA&>Q=c%~ A%3@xRe̍3K^i@qf" p58' wX} d8@6T 0 )APEo'bs\dۀ(hCŘɈ ;3P!2#)[ޝ[QP 10;yPN&rf{i`Y/9//(,UmB7d2GMπ)0,#&9 U"3G @T H^mh?}C@|pXH@ #Rm< fi J0@H|0ܓ Hݿ ow|/U)Q)!0hl0ǘ4ϼ}"_R]َG pB6`#Șe% X5`vD)H99@$cP õd @$q!"P F5EG&OTa )&4 PVIUUr u-A`{u4ICeWohٱ~򃳪m&nh`bpg-^Sr g3`tU$![B@pрN~}4 2@>8w+\C>In}`B^4%@L(`;΅BP$c"@Q "̘+(qyxt]!$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "c ! ,`e `X 0!@!` `, 8N8Y @1B! , $( J!2B @Y0@! HPJ! 1B D@Y !D! # $̊y, J! U0 `@!@B %3~F !(a00B `X @ v& 0  @!@X a! # (!(Y0$p B8Y@a!)H(PF!U `@!@B 3~FP x@= #P   #P x= #a ! ()2~F0!(d(@c(c(@b$tf ! #@d D@Y !0 0,c @Y8D!B  $( L!0B B 0B Dp qH A!0 0,d@0B,@!!B HY $T( L!p C a! ,@b D@Y8B!B # L!01B F0B @Y8@! H8PL! !  ,P d ! H9 0B x0 <0 xb@ @!0B` `a!Ђ0B 3 T!  BP  @D!@XZ (F!`0B0LpKd:1 0L!B,  T!@ # FY8! sf2 A! ,a8N`Kt21 XF`XY`B!BhY $l( T!P P,a@pK:1,QHHU `@!@B H9 0B x0 <0 xb@ @!0BA @@&@ BXH! H(PT!P0B J`0B0LpKp2  %0BBXF!0B  $( T!  BP dHJx! @D!@X  @$HU `@!@B   b @!PB R H!U  ! H9 0B x0 <0 xb@@!1B$( T!0H18! @!@X !@ @,` `a!Ђ0B 3. T!PH(180! 0!` `,`0$L( T!B@X 8a!p p,`8$<( T!0B @Y @! *`a F`Y F!0 0*  !@ @,` `a!Ђ0B 3 T!PH(18! 0a!` `,`0$( T!p0B 8N8Y 8N!p p*a @Y @! *t0B! B!D A!@ @,# H U (A!P P,+ (J(U J 0BF!<$ 0!` `,`0$d( T!B@XHU `!@B H9 0B x0 <0 xb@@!1B$<( T!0H18! @!@X !@ @,` `a!Ђ0B 3 T!PH(180! 0!` `,`0$( T!B@Xv 8a!p p,`8$( T!0B @Y !A!  !0 0,``a!Ђ0B 3j T!@H 18h! (a!P P,`($( T!`0B 0L0Y 0!M!` 0B! 8B!$ A! , @pBN!|$ !0 0,`$|( T!B@XHU `!@B H9 0B x0 <0 xb@@!1B$T( T!@H 18! @!@X (!P P,`(`a!Ђ0B 3 T!`H0180! 8!p p,`8$( T!B@X a! ,`$ ( T!@0B H Y !I!  a (J(Y (1K!  0!` `,`0`a!Ђ0B 3 T!pH818! a! ,`$( T!@0B H Y !I!@ 0D! (D!$ 0A!` `,4 0LPBJ!p0B 8N8Y 81O!p @Bp! B!$ @!0 0 ,`  B@!<$ @!  ,`@$D( T!@@XHU `!@B  0B  PD!H(# !   b @!q  (B! HPH! @! ,0(%@b@! B1 ( @!@Y$( L! @!(U@  ! !  b@!@L @ q  (B!( &@ # B!0 0 ,`@ 0 X@8! HC!$ H8(!@ P B!( (,@V P(qwp XB!, ,,`AY X ,X@` 8(! `C!D D, B " X B! H  H,@ $@X $! H  H,  B!0L 0L,`B &0!LX@p&! C!@P  B!PT PT, *@TB &`X  0(!0Y 8,!8Y $|( H!(B! HPH!U  !   b @! B @@X @P!  @, p p  C!0 8(!@ !B! , @p qh @B!  ,AA @ X@0(! `C!0 0 ,`@ `X !B! , @Y @! ,` @B!  ,AA @ X@0! C!  @ B!  ,F @ B(!`B0Y$l( H!(B! HPH!U  ! 8A 0B x0 <0 x`b (@! B @@X @P!  @, ` p `K!0 0 ,`@ `X !J! , @Y @! ,` !`B @@X D! ` 81 `t `X ! B@00BB@0B B@  PT@PYXA!H C P!B@/PTHPP!0 B @!0 B @ B@,`,Eh$0B$l( P!@ B  ,p0b !   b @!B @AR (`C (QB!P P,`, # H!4 (QB!P P,`, # H!U  !   b @!B @AR (PC (QB!P P, n H!, (QB!P P, j H!U  ! H=b@8@!`B F!0B `Rp `C XQN! ,0,(pH!!HPT! (h@ XQN! ,0,(pH!!HPT! ( HU  ! (%@b@! Ba @AR (`C 8QF!p p,, # L! ,h@ 8QF!p p,, # L! , (U@  !   b @!B @AR (`C (QB!P P,  H! B@X (QB!P P,  H! , U  ! ()  0B x0 <0 x@b` @F! @! ?#t 2$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* :"t0F!( !B @Rp pC0F!pB8Y@a!0BXX $@@8! !, $$ C?#`Bp,X! @D!@X(U@ `@!@B   b @!B @AR (PC (QB!P P, ~ H! ,X@ (QB!P P, z H! , U  !   b @!B @AR (PC (QB!P P, ^ H! ,X@ (QB!P P, Z H! , U  ! (%@b@! Ba @AR (`C 8QF!p p,, #: L!4 8QF!p p,, #2 L!(U@  ! 0)Pb @!0Ba% @AR (C@F!BLHRHhPN!  BE! @P@YHD!HhPN!B @P@Y H! HY$,( N!B  N!L @QH! , $,( N!B @P@Y H! HY$$( N!0UP  ! H9b@8@!`B0! J`P8! QO! ")P  g8B! L! XN!|, ! YO!   ҈)PP XQN! ,  T!@ (  XQN! ,$|( T! XQN! ,0,( $l( T!p pC XQN! ,, # T!4 XQN! ,0,( $L( T! QO! ")P( qN! ,  7 qN!0 0 ,`8 `F!`YhJ!H +"  BPT!HU  ! (%@b@! B! 8F!\, F!  A?#p! at YG! ҄) !P7 D pB 8N8Y @!@Y$( L!4 8QF!p p,, #B L!(U@  ! pU b`@!B@,`d 00Y0@! YY! Ҁ)P QY!   /BB@X XY!0  0 )P  $J@8@ ! X! V BD @!@X PY! R/B Bp q X!  XD B X!0 0 V0B, Db B~FB0 C ,@1D H1B08! 1X! ,X8! L!# !B@Vt! aX!0 0 ,`$AL"  BP^!p Bp YY!   ҈) !P70 X!BXB! B YN!, X! @! bBDH 4 18B! 1X! , R ^! N! HXP^!P B<0J! $ J! (D!"@`@H B0P! X!BxX@! B YL!\,  ! H@418D(! 1X! , * ^!,f  J!B,@8 @!`Y ^! B" ^!@"@@b D B bB@P!$ QY!0 0/ @`B@@B 8H ! X!BXB! B YL!, YY!   )P( 1Y! H@x0! 1Y! ,  ^!bBB X! #F YY! €)P8 \Y!  `' B H H P7$ P0Y!( X8! X!B `Y a |&0 @` $<( ^!bB B $ @8D! 1X! ,8X ]Y! '@B@XpU  ! P=b8B!`B0YXP!, P!BX @!@ #p YQ! ҄) !P7  XP!T, !8N(! P!  HDx! XP!B`YJ? 0! XP!,  !"B @~F8H! YQ! ) !PL P!   H aw hN! P!0   H  BXP!B`Yh$, 8I@! YQ! Ҁ) !P7 XP!B`Yr? XP!B`Y? XP!<,  ! $*@8BX! P!   E?#a7  QQ! 2)`)Pw XP!~Fp?#4(   XP!( P! @C D @DD @`aH XQ!0  0 )  P7  @P! P Hh! HQ!$ @C PJ(@`@ `Z!`Yh?#~FP" $ *@8D0! XP!l, 0! P! @@y! XP!T( YQ! )P XP!( XP!, PU  ! H= 0B x0 <0 xb@(Aa@B H!q @ F! @T AbH !x@ P |&(0  P@PXX!L`XL$( T! F!` 8B B D0  @?#p8 k ?# B$,@-  H$@x ``xhXF! HN?  F!BXh?#Bh,:?  XF!~F.?  F!BXh% Bh,? ~ F!  8D! XF!( n F! DB B D @0B! XF!D( V F!  (L B@bB Bp a F!0  @0 @ A H$@` `Z!`Yh$D, XF!B`Y h!hY?  XF!(  XF!(  XF!B`Yh$<, HU `@!@B H=b@ @!q @ F! @T AbH !x@ P |&(0  P@PXX!L`XBL$( T!H@ YG!@ @Ґ) P  $2H(@$H (F!P D 0Lp1 @ `t 0(a7( 8QG!p p)`8)Pw F! # F!0 ?#B,,X QG!@ @) Pp (F!P @B0! 01F!` `,D0 0L0Y 0QL!`  0L, pW 81F!p p,= 8N8Y 8N!p p,@ 1F! , @Y aA! ,D @Y8@!XN!~F #B T!@BH (F!P (J!`BL F! ,Y0N8~F# 0p81  XD08 88 @$ (a  A @$A X$A @(A P4 ( c @$| HF!$ $,@YH8~$ `$P1  E`8 h8 r< @a @8@A @p<A @ =A|+$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ~" @rA 4 X,BXF! B`Y h!hY? YG!@ @) P  (1G! #  @!HU  ! !  b@!HB H |&$0  0 H` |&0  @PB (J(Y 0 }&`0 $ $( H!U  ! !  b @!BB@0L @ # @0 B `a  @B!  B!0 @! C!@ #A @0L @ #  (J(Y 0 }&`0 $ $\( H!U  ! HEb@8@!`B F!p w C N!P  O! 0@! J! O!  D!  $`a  $< O! 0@! J! O! B!D! N! #7T O! D<B B D @0B! L!$ O!0 @; D  @D!0 @! O! & O!0 @; D  @0D! L!$ O! ; B @@!! N! #8I! N!   E?#8H! $ H! N! #`9 XV`XY `N! ,; hZhYp$B x^xY$1HhPT!HU  !  B` @ !  ,$ ! ,D @X@8@! 0 ! ! @ ! $,hH ! ,D @"X@8@! @! 80!X@ !! , @p q H!@!@B hQ 0B x0 <0 xbX@!(b B @H!p H @ |& 0  @@Xx!CL`L 3 \!B@ ! ,( R$ BL D BB 0B1BF1B  ! #X x^xY! H 3 \!pB ! , !   ,@D D@Y E!   , ! 78 !0 0,`D F`Y G!0 0,`DFL B PB0! !@ @,D  H Y $0 @& @!  ,A@ @@X H$@$@@) P( (,@!HP\!0 B }&0  @ BL D   ,   }&0  B Y B YHx!  }&00  F`Y F`Y F!0  !F, pw h88! |&@0  H YxH!L`L 3 \!B@xa$ HؓP\!` B` xL!H  \aTDb !L! #0xV!, 1@!@ #0xV! HP\!B @BB01BF@BH ˜BD0BBB P@APRp( CH8H! X |&,0  X`XXx!L`CL 3 \!B  \!B @ V! , @Y8P! V! ,  B Y B! `) F0 @Fx ! V!@ @,@D D V!0 0 ,   L P( (,!HؑP\!  B }&0 @BL B ,,  }&00  F`Y F`YHx8! }&@0  H Y H Y H!@  C PM!  &/ $< P\M!( ,@',B@$L( \!BB @  }& 0 D!0BB00BF@0BH00Bp p@C HPM!$ @*/(1B X`XX0$ AL $ HBH" ,B$( \!1B @Y 8$ BL D BB B$( \!01B F`Y C$ BL D BH B$( \!1B @Y O$@BL H@BB B$( \!01B F`YR$@BL H@BD B$( \!1B @Y,$@BL H@BB B$l( \!01B F`YC$@BL H@BD B$T( \!1B @YO$@BL H@BB B$<( \!$ ]M!   ' F(!@BH 8 1 `t B1B@,"0$0@L 0 B  B  # P@1 (t@$@1B H ,@ P@!(BA@(P B` hX1 4tX0A1B ,,`Y8$0AL &0LB L$ , # 1 Bt<PA1B@P,R @!`XBBX(P B @1  HtA1Bp\,ȠC$AL 4hB h2 \ #` 0p1 PNtؔA1Bl,` @!tB`Ct6P B H1 TtA1Bx,x O$CL `B x^ xy # `Њ1 Zt C1B@, & A!0B FbP B@ x1 `t0B1B` ,@4 R$BL BB H  #` 01 ftB1B0 ,` H@!$B`@$P B `C1 @lt@@1B@P ,@,$0AL &0LB L" #` [1 prtX A1B@,,`!Y @!PTB`AXTP B ؕ1 xt`A1B@P,bC$AL 4hB h0 P # 1 ~tA1B p\, @!pBBp.P B`  1 tA1Bl,`O$CL `B > l # P1 0t B1Bxx, A! BC<P B b b Yxb!C1B (, 3 \!B* @L!<  |&00  F`YxF!L`L 3 \!BhU `!@B (-@b@! B1  F!0 @TDb0 @!x@  |&0  B Y8B!L@PL@$L( L!B8@ 1G! 8@0! 81G!p p,  L!bBB QG!0 00/ @B H H@N$B X`X@O,B"B? B!@ #  DQ@80Bd  ! HF!$ #@P@B(q CD! `& HB$!8F!DBX8F!, 8F!B@YH?#~FX8F!4, @F!(U@  !  - 0b @!q @ B! @T AbH !x@ P |&(0  P@PX0!pL8NL $( J!t 0B!pBHX !C!   ,  0!C!` `,  J!0B!pHU J!`B  J! U0  ! H=b@(@!@B`@8 ! @ J! @T AbH !x@ P |&(0  P@PXX!BL`XBL($( T!L 8@! 0F0Q$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* qr"HLx0! XJ!B`YhF!, 8J!p 8N!bB@HU  !  ) 0b @!q @ B! @T AbH !x@ P |&(0  P@PX0!pL8NL $( J!< 0B!p HZ? B!  @D!`B@p,H?#,  U0  ! @9pb  @!q @ B! @T AbH !x@ P |&(0  P@PXP!LXVL$d( R!d B!B8X YC!0 0Œ)0 A B`!H B``,? (B!P  0L*@@ XX!`XY`?#~FX@Up  !  ) 0b @!q @ B! @T AbH !x@ P |&(0  P@PX0!pL8NL $( J!< 0B!p~F? B!  @E?#`B@p,H?#<,  U0  ! 01Pb @!q @ B! @T AbH !x@ P |&(0  P@PX@!BLHRBL`$,( N!L B!BhXP% B P,@N? B!0  H @ HT! HYP?#~FX0UP  ! %  b @!q  B!0 @TDb0 @!x@  |&0 0  `X(!`L0LpL$( H!\ B!PBX @!@ #`  p q (B!, (B!`B0Y? (B!`B0Y8?#~FX(B!D, U  !  ) 0b @!q  B!0 @TDb0 @!x@  |&0 0  `X0!pL8NL $( J! B!`BX @!@ # XC!0  0 )P 0B!pKf? YC! )P B!0 Hx! 0B!, 0B!T, B!  A?#p@ q0 B!`BȳX0D!p B8YZ? YC! Ҁ)P  0B!p~F(X B!  D `Bp,X0B!p~FH?#$( 0B!,  U0  ! XEbH@!B0F!pH @C  R!0 @TDb0 @!@  |&0  B YhB!Lp\LH$( X!B@XN 8Q! R! HO;! R!p  R!8 #H? (P!@~F8  HM;(! 0!$ XM! S! 0J hR!BpY xJ!xY H!Y2? @J!@XXU  !  % 2~F`(!(b(@b(a0@1B `X $0@ a B Y B! @aD0B @p q A! ,B 0BD A! 8@ !  ~&0  B! Y A! #$HBX A! , B 1BD1B @p q< A! ,@01B `X ! ,@b D@Y @@!  ,8D! B  B0 0 ` 3  J! ,@@`$  !   )8@! ! , D B1B H HXP%B (  $)`/ X,B HX H, $ c$" 0B $@X @%! H  H)`/ &0LB@X L$ H c (Pa7 @!PT PT, PVB * !`X X ,X! h,yH! @!p\ p\,b ."R\( C`$ $dB @0!@Xn @`$ @!h h,@c 4@#Rph (C ؠ!l l, 6lk !p p,b :X :w~Ft8 !x x,/ >|B|, 8>!8Y$\f( J! 0!0Y 8!8Y$̸( J!@`$ U0 `!@B 3~FP x@= #P   #P x= #`a `X $0@  ! )@8D8! !! ,D@B0B B Y@B BH(@@`$`@!@B   2~F`(!(b(@a(a01B `X !0 H8 @! $0@1B0B @Y@0@1B p aT A!   ,b@0 H 81 `t `X  0 c @ 1B D@Y  D!  8D(! !0 0 ,$\( J! ! @! B1BD0@1B p a @`$ U0 `!@B 3~FP x@= #P   #P x= #`a `X !! ,D@B0B B Y !   BHa ! ! 1~F@ ! 3B(c (cB3B@L @B fB0@1B ! , bB0 H 81 `t `X  0 8H! ! ,b@0 H P1 (t $`X  0 0 ,X ! #c @@X H!$ D h$1 4t H0 $B$,H@0B B aH`0@0 , Da B1B H HX A!B,d @!@X(!`B0Y 8!8Y $t( H!1B B1B@02B2B HHP P`!( (,`d XX( # b "DB@bD$$ @!L  ,(@@$U `!@B %2|F !(d01B1B@0@1B1B@00B0B@0@0B0B@H`g L @ `+  #`+ 0 B   `X  &0  @@L @ `f 0@L 0 B  @ `X @! #f @!Y @ &0 0  !`X @! Y (!(Y$$( F!1B,`d@2B @@X H $H #`d X`XX$ ,BD$0A2B &`X @ &@P0  (!X &!L #d *X *!T #d ,`aXBdX.A2B 0X $`#`d 6`X $lBp:A2B <X ` &|0  >!X <!x #d H Y !H! #d (JPbBdLpB2B 8N8YNB2B @P"B`d0B,d@2B H HX P $P$# d " X$0DBH&@A2B (X @ &PT0  *!X (!P #d ,X ,!X #d .pa\Bd\0A2B 2 X $d#d 8X $pBt<A2B >X a &@0  H! Y >! } #d (J(Y (!J! #d 0L`bBdN0@2B `X @ &0  @P@ #d @YH$B$@2B X`XX &D0 "! H D,`AXD0A2B &`X &!L #d (@aPBdP*`A2B ,X,pA2B .p!\Bd\01B 2pd q @$d Р &h0 4L 6l #@. $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " 4hB h8 @X &t0 h:L <xBx,c >!X &@0  H!` Y (!PB,@,P,`,@p, C F!p (C A &0 @0L  #`) 0 B    `X P &(0  L X,B,, c "! X & H0  $!@X !0LB0L,f (!X ! Y ("!(Y 0$!0Y 8&!8Y @(!@Y$t( F!1B @01B P H!$ $@C P!(  `rdP(! !D DC ` & H0 $0L &L #@) $ HB H( @X &PT0 H*`L ,`XB`X,c .!X &`0  0!X !dBd,@,P,`,p, C F!0B @00B P H`!$  @Ard@$x! X &,0  X!`XX @!DBD,@+ $ HB H,`g &!`X ! Y ("!(Y 0$!0Y 8&!8Y$( F!0B @00B Pl H!$  @Ard@$8! X &,0  X!`XXqg($`,B0Y $Ԯ( F! &0 @0L  #`. 0 B   `X H &$0  L P(B(,`c X!`XX &D0  "! X ! Y (!(Y 0"!0Y $d( F!$ $0M  # @ & 0 @L H@$ #* @ B@ @  @X X &,0  L "DBD,@c $!@X &0L0  &!`X !@PB@P,@,P,`,p, C F!B1B @0@1B P H &$0  P@W_( X &,0 XL "XD #`+ X,B@ X,$ `XX &0L0 ,&@L (@PB@P,c *!X &`X0  ,!X !p\Bp\,@,P,`,p, C F!1B @01B P H &$0  P@W_( X &,0 XL "XD #`, X,B@ X,$ `XX &0L0 ,&@L (@PB@P,c *!X &`X0  ,!X !p\Bp\,@,P,`,p, C* F!0B @00B P H &$0  P@PO(D X &,0 XL "XD #`, X,B@ X,$ `XX &0L0 ,&@L (@PB@P,c *!X &`X0  ,!X !p\Bp\,@,P,`,p, C F!B0B @0@0B P H &$0  P@PO(t X!,  rdH,"8@! @ & H0 $0L &L #@) $ HB H( @X &PT0 H* !`X  rdXX.@! &`0 0L 2d #+ 0`B@ `4 X &l0 `64 !p  Árdhp:8@! &x0 <L >| #, <xB xH X ( &P0 xJ 0!`  DrdxN@! @ &0 @PL @@! #* @ B @ @ @X  &0 0   H@!$  @Ard8$@! X &,0 XL "XD #`, X,B` X,& `XX &@P0 ,(D & H0 $PL *T #@. $ HB H, @X &p\0 H. &d0  2! X !hBh,+ 0`B`,@,P,`, 3 F!T ! p C !0  `C @! B ,@@,  F! &0 @0@M 0   p qT @`! B ,@@, ~ F!2B@0@M 0 0 @@! @p! . H$ @ x ! P`!( `. X,  P,% 1xrp`p C we$( F!$$( @$U `!@B b`( 0 B0 ,( @ B ,@ ,`@0, # @ &0 0  !`X @` & 0  @!@X !@Y !`Y$ ( U  ! `?#e@d x /&<0   8  UXE0B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0@~Fd, X?#Ȁ0# cB0@~F c 2 X?#0 `@ A~F 2@~F@±~F@0@H` X?#d0# cHp! 0C HH #? ! &0  @dRp (C ` &0 0  ``Rp (C,* @ B ,,@, #>) Z! ,8@ AY?# , BBb@0~F`0 , a H! HX p!pY x!xY$l( Z!~F @~F BP  $\( Z!~F @Ysf x!xY@!HLPZ! aX?# , ԲnB0~F 0 Ba ~F H HX P@Y?#( (, PP$ #`a X ,B a," ~F $@X `X?#0L L$@~F(P~F *X *@T@aP,p~F .X @Y?#` `, 0\ # a 2!dB@ad4~F 6`XӲnp6~F :!tBat<HXU `X!@B `@?#e@c x /&<0   8  UXM3B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0@~Fd, X?#Ȁ0# cB0@~F c 2 X?#0 `@ A~F 2@~F@±~F@0@H` X?#d0# cHp! 0C HH #? ,`/ 0 B0 ,,, #' Z!~F B~F @P  X?#  ,@ H@Y?#$ $,x~F P@PX Yp`!, Z!HXU `X!@B XId)dbH2!(c (b(b H @8 !  0p @! !  A!@ # c 2 X2B1B @Y @ɀ@02! $ 0BD ! &0  @dR`(C ` &d0  2 cR`dC ! ,@b D@YhB!B #n X!0B @$ !0 0 ,2B 1B P@PX P(B`c(2B "G~F@dD$02B&@A2BL(PA2B *X*`A2B ,`!XBdX.Ӳn8T0! $L !d /Z$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* H"d,2A2B 4!hB`dh61B 8X 8pq!( C$ !t c <X <x@dt>B2B hZhYhZB2B p\"Bd^1B `Y `hq $< !! ,b@2B @ B`d  Ѳn8 F(  !`(C$\( X!0@M 0 B0 ,,  X! ! d xxYh^!, X!01B`0 ,d @!@X h!hY p!pY$$( X!00B  H!$ $,@a PP$ #`a @@XXU `!@B 3~F !(ap, qPC$pf$,BAPF!B@X* 0,,0B Hp$ q pf$,BXAPF!B@X  @$U `@!@B % 2~F@ !(b(@a0M 0 8x! a &0 @0BBM @B`  `X Q! #) @B,` ! #`a !`X (@!(Y0!p B8Y $( H! ! ,a @Y @ &0 0  !`X@$@1B PB 8!8Y@!!H?PH!p ( C ! ,a @Y$@1B PB 8!8Y@!!HH?PH!1B B1B @P !0 0 , tf 0!0Y8!H>PH! ,(@@$U `!@B  (`00B `X !0 0 ,X8@! @ ! , @@#@ H!0$ , @ #Z @,! , H@$#@ 0!0 , @ #B H!$ $, AKHM @H #`` `X !0 , @ #" @!  ,AC@M H@$#`` `X !0 , @ # @ & 0 @!@B %3~F !(a00B `X  !0 '8 ! A! , @`s  @!0  @@!  ,C @0 B ! Y6? A!P P,`a `X H@!$ $,) H Y($` B0Y 8!!p p,H @P@Y$t( F! A! , @@@XU `@!@B ) 3~F@ !(b(@a08Ha 0M 0 BDa @0B B Y @0$@ #`a `X a! !@!0 B0B@ , a B Y `!0 0 ,$b@1BHP B(Y0B!p B, H, SR H!0B @B@XU `!@B % 3~F@ !(b(@a0Ha 0M 0 BDa @0B B Y @0$@ #`a `X a! !@!0 B0B@ , a B Y `!0 0 ,b @Y (!(Y0B!p B$( H!0B @B@XU `!@B ) 1zF@ !(e(@d`` @! # A! #f@!00B1B@ , e B02B `X A! 2B B YH$B$02B `X @P! `@ 2B @Y H@!$B$,$@2B P`(B e(B02B `X2B @ B e M @ @bM P(B  P(B @PX !P #e @@X H@!$ $, @0B @ H $,`a$@1B@P(,b @!@X a!B, c B! Y (!(Y 0!0Y 8@!8Y @!@Y HB! HY$L( H! ,@X !@ # d BP$ @!0 0 , d H HX(!`0B 0L0Y8!H(4PH!2B @ !  ,0e ! XId)abH2!(f (e(e H @8 A!  0p @! A!  !@ # ` !Ȁ #  A! # gB!0B21B,@fDA3B 2 X A! 2 B3B D@Y$B A3B 2 X Q! C2B3B B Y @!0 B0 ,  B@3B @` B@f DA3B 2 X2B3B @"B`f2B BP  @ & 0 @ 1B DM @ B  @ 2 @X !@ # &0 @1BBM @B@ D Y Ȑ!e # !0 0 ,f @@X0B B H , a 2B1B,`b !`X a!B,@d D!P 08bh @$ $dB !@ #c @!@X h@!hY p!pY xB!xY! B Y$( X! ,@X !!@ #d @P( A!B,`e `X hB!hY pQ! , $L( X! B2B D !!  ,Pg ! 1 1~F@ !(e(@d1B@1B ! #`d `X @$@ #) @B, e 8B8Y (@!(Y0N!p H 3R? p  C: a &0  B! Y A!p p,P,88$HXp  C !B, eB02B `X H@$H #`e X`XXd!$ ,BD$02B &`X !@PB@P,`BP&P2B *X !`XB`X,X*p2B .pa\Be\02B 2 X22B 4!hB`eh61Bp,P,`,p,, ,@,`, s H! ,@X A!@ # a BP $1B H`c(A2B " X" ! H `aH&@0B (X !PTBT( `HX(0B 0 `B c2!`, $`#a 8pBcp:1Bx,e >X (<!(Y 0!` `, $Ĕ( H!0B @0B BP$  6&0 0  !`X H@!$ $,P,`,H $( H!U `@!@B  9 0zF`(!(`(@`(g03B `X0B @Y  &0 B0B` ( Ձ n) !^) @ # + H$B$,`` `X 0!0Y8!B@Y $|, p ( C $3BB rH` f@0B H HX H!$ @Af$@0B X`XXX3B," H`eH&@qHeP*`0B,p2BX.!H e`2M 4hBh,`d 6!`X 04!0Y 86!8Y @!@YM$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ՘" H! HY$$( J! ,@X !@ # c BP $03BH@f$pH f,"3B`X,,@f,$0!HfL(PA2B@*`2B`X,f .!X !`B`, e 2! Xd,@ad42B d, X `!l0#b8A1B:`B0Y 8P!8Y@$XB HY P!@PY X!`XY `.!`Y h0!hY0$L( J! ,@X !@ # c BP  !  `c1B H H P7 P!( (,`, !D  0"!0Y$( J! U0 `!@B (-2~F0!(d(@c(c(@bB1B @Y@1BB 2B D@Y D`s8 !0 0, F`s( ! @@u(! ! @d D@Y D!  0D ! !0 d @Y @! d B Y B@H@4! !  8D(! ! , DB1B@| !0 0,F 2B D@Y D!  D 1B @ @ b 8B8Y !0 c @YP@ 1B D@Y D! , PL! B @ F  B!1B@ 1B Dq, !0 0 , d " X "!D @d $@X $H@Dp1B 8N8YNB@Xv @! c HR HY HRB@@bT01BF2B @Y@2B B Y B!  B q7 !   ,@b $ #`c `XH@ !D D,"p2B 8N8Y 8N!p DN 1B HR @@b 8T8Y ! c @YP@01B F`Y F! ,8PL! B @ B  B!0B@00B Fq !0 0 ,`@2B " X "0D@@a $ 8A!p b @Pp: @ aR Pa! PTup! ! ,B0B0B @Hs  A!  pDy0! !0 F!1B"00B 0~F@a $$ @a! 0Pp! 8!p p, a HR HY 8R p~F8N0BT0B @H s  A! PBy ! a! A?# 0BD$ !D D,`b FE #`c `X `! H H1B@P2B HR HYHRp2B 8N8Y 8N!p  8N @ikA!@X P! ,TB@X(U@ `!@B PEd)bb``!B(f (e(e 1B20B@3B B Y B! @dDA2B23B @Y @ɀ@ ddB !!  d @`i !d cdB1B @ B@cD1B21BdB3B @Y ! & 0  D!@Y !dBd, xD!xY 2!Y $,( V!1B B1B @p q !   , D B`c H!$ @c PH(@`b$A1B" 0BD$0A2B&@0BL(P2B *X `!`XB`X, x,!xY$6( V!0B B0B @P  ! #F ! (, d X`XX `!D D," 2B $@X @ &0L0  &!`X &! X $!0 0 ,p, X@!4( V! ,@X Ѐ!@h # ؀!l 86@! ! HBx ! !! @b D@`d$ P$00B( !@ d ( (aW  H!$ d$" $@Ia p8 @!0L  xLp @!@P @P,d *P # @!X  ,h X!PU `!@B ) 2~F@ !(c(@c01B `X ! , a B! Y(!`Bp, 3B? A!@ # a BP  @!@X6 !0 0 ,`@`1B 0BP`1B XP, @ b(" A1B $a7 !L # `!@P BbP*`1B ,X ,!`X c .X .`\@Cb 0`` @ bX21B 4aw ؀!l # !p `8yP! !t p:@! !x x,c >X(<!`|B #V H!0B @\ ! 8Bh! !0 0 , c H HX P &(0  P!@PX X!,B,,0!p(B8Y @!@Y$T( H!0B @ ! 8Bh! !0 0 , b H! HX P &(0  P!@PX X!, ,, 0!0Y 8!8Y@!!HPH!0B @| ! ,`b !`X H!$ $,@( P(B(,`b X!`XX(B!` B0Y8!(B@Y H! HY$( H!0B @ A!  , U `!@B % 2~F@ !(c(@c01B `X ! , a B! Y(!`Bp, 3? A!@ # a BP  @!@X !0 0 ,`@`1B 0BP`1B XP,@ b(" A1B $a7 !L # `!@P c *X *@T@BbP,p1B .X .!p\ c 0X 0p`@ Cb 2pd @@b\41B 6aw !p # !t h:8@! !x x,b >!X(<!`|B0Y$( H!0B @ ! 8B@! !0 0 , b H! HX(!`$B0Y$( H!0B @t ! ,`b !`X H &$0  H! HX P!(B(, 0!0Y 8!8Y @!@Y$( H!0B @@$U `!@B (%1~F0!pB((e(@d(d(@c0B@2B B Y B! @cD01BF2B @Y @@ bB !  `b F`i ! ,@1BB 1BD01B F @d @@ b Bp ih !0 @c D Bd @Y@2B B Y @ &0 0  !`X ! X B!0 0 ,p, $, ,ZPL! ,@X a!@ #a @p c$ a!  HDx(! !0 `b 0 @d 0@c $ H$0B$" ! H  H,`c &H #a @(@X(P!@BP e ! () 2~F(d(@c(c(@b2B @Y ! ,@c$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " D@Y !0B0,8B!B ,X A!@ # a BP  @!@X& !   ,D00BF0@1B `X H!$ a "HD@ H(U@ `!@B (51~F0!(f(@e(e(@d3B @Y a! ,@e D@Y a!0B0,@B!B@,X A!@ # f B Y B! @DdD00BF0 2B 0 @ d 0B" 1BD$00B &P$ `!@P @P,(P1BP*`0B,p1B .`\@e 0``@ cX2 !p p,C83B :X :t@c <x @cp>p HbP2BHRb1BT2BXV1BX@2B@"1B @3B B Y ! B ,`b F!`Y @!0 0 , b H! HX !DBD, @D!@Y HF! HYP!$B`XY `"!`Y$( L!0B @0B @B@X(U@ `!@B  ) 2~F`(!(d(@d(cB2B @Y ! ,@c D@Y `!0 B0 ,8B!B ,X A!@ # a BP  @!@Xz !!   ,@DD01B0BH1B "HD @@c$$00B &`X&@1BL(P0B*`1B ,PX@d .P\@bT0A2B 2 X 2!d d 8X 8p@b :t @bd<A2B >X 0!`B,b 8N!8Y0>!pB8Y @@!@Y $l( J!0B BH U0 `!@B (-1~F0!(e(@d(d(@c2B @Y@1BB 1B@D02B F`Y F!0 a@0B BY !!   ,DB1B@0B1BPF0@2B `X ! ,hPL! B @ B  B! 0BD00B Fq  @!@XR !0 0 , a"0 BD 2B $@X 8A!p d @P@Y @P!  8P 8I # c HR HY PA! b BR@ EHR1B @Y !  `a F @c @@X @!  @ @ #(U@ `@!@B  % 3~F`(b(@a(a1B @Y a &0  B! Y a!   ,`a `X(@!`B0Y8D! B C? !@ # b BP  !  ,@ @!0 0 , ) H$B$,@a P@PX X@!, ,, 0!0Y8!,B C? p (`K@$ U0 `!@B   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNQRSTUWXYZ[\]abcdefABCDEFGHIJKLMNQRSTUWXYZ[\]ghijklmnopqrstuvwxyz{|}~AAAAA`^CEEEEIIIIOQQQQQP_XXXX\VAAAAA`^CEEEEIIIIOQQQQQP_XXXX\a$ 0B x0 <0 xb p@!B`PF!BhI ($`  1$p@1 @ `t0B ,  @!#` P1 (t%@0B 0,`D F! #` h1 4t00B 0 ,` bH 1 Bt=@0B  ,@D !D! #` @1  Ht0B 0, 8$B @@bH 0p"1 PNt  0B@@,@$" D!p #` H1 Tt00B`0,`0bH ` 1 Zt@0B , D  !B! #@ 1$B1  `t00B` ,@4$B @@bH 0#1 ft 0B @, " B!X #` `1 @lt00B`0,`0 bH 1 prt@0B  ,@D !D!P #@ 1$C1  xt00B`, 4 <$B @@bH #1 ~t  0B@@,@$" A!0B@DD0`H  1 t0B0 ,`@bH P$1 0t  0B@@,@$" !D! #@ 1$pD1 @ `t0B0, @! # P 1 (t%@0B , D  B! #@ h1 4t100B` ,@4DbH 1 @t=@0B ,D !@! #@ ,`a!PB`,p, c b!p B8 S,"Hp FP" DO@< #!FP"JD!y+@ pB @N!@XU `!@B a$ 0B x0 <0 xb p@!B`PF!BhI ($`  1$p@1 @ `t0B ,  @!#` P1 (t%@0B 0,`D F! #` h1 4t00B 0 ,` bH 1 Bt=@0B  ,@D !D! #` @1  Ht0B 0, 8$B @@bH 0p"1 PNt  0B@@,@$" D!p #` H1 Tt00B`0,`0bH ` 1 Zt@0B , D  !B! #@ 1$B1  `t00B` ,@4$B @@bH 0#1 ft 0B @, " B!X #` `1 @lt00B`0,`0 bH 1 prt@0B  ,@D !D!P #@ 1$C1  xt00B`, 4 <$B @@bH #1 ~t  0B@@,@$" A!0B@DD0`H  1 t0B0 ,`@bH P$1 0t  0B@@,@$" !D! #@ 1$pD1 @ `t0B0, @! # P 1 (t%@0B , D  B! #@ h1 4t100B` ,@4DbH 1 @t=@0B ,D !@! #@ ,`a!PB`,p, c b!p B8 S,"Hp FP" DO@< #!FP"JD!y+@ pB @N!@XU `!@B PI 0B x0 <0 xb`@@!pB`$`  a!0#  A!0#` B,` xa!BXX !p s  @F!@X" &0 B BM`XBhYp!0B(? !p s  @F!@X  ! bH 81 `t1B  ,  B!#` P1 (t$1B H0 ,` ! #@ hP1¼$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* y" 4tP01B`X(,@P aH 1 Bt<01B` H,@2 $!H # @1  HtP1B@P,R$$pPBX.aH 0p1 PNt1B `, !hBCh0aH H1 Ttؠ1Bl,` @!t0 t6aH `1 Zt1B`|, >!| #  h1$"1  `th1Bp,jx$B`cH 01 ft1B@, ! BA@bH `1 @lt1B , H`!$0 $@`H [1 prtX1B@P,,@X P !( #  0$#1 E xt01B`D, 2$PDBH*@aH 1 ~t`1B@P,b &p\BB\(aH  1 t1Bd, &h0 h0aH P1 0t 1Bl,` 6!l #  0$p$1 @z `t1B`x, <!|# Pt1 (tp%1Bh,r hZ! # h|1 4tx11B,{^`H E1 @t@< 1B@ ,!B @ ! #,Up!B, , cʷ V!0 B K,"(p I@P DTO@%< #@P"Jd0!y+I  0$B @F!@XPU `@!@B x]" 0B x0 <0 xbh@!B@HF!pB``I$` !0#  !0#`$ !0#`  a!0#  A!0#`F B@ ,`a a!PBX (!p s  @J!@X. &@0 @ Mb B@YA!@0B8J? (!p s  @J!@X  0!bH 81 `t 1B@, $   B!# P 1 (t %1B@," @! #` h1 4t01B H0 ,``H Z1 BtX<1B ,,`Y X !, #@ @1  Ht01B` H,@2X$PHBP*`aH 0p1 PNtp1B`X,r `!`BB`,aH H1 TtȠ1B@d, `!l0 l2aH `1 Zt1Bt, :!t #0 0$21 } `t1B |,$0|Bf@cH 01 ftP1B@,V !`BFh`H `C1 @lt@ 1B@ ,!B $!# #1 prt 1B@," !@! #0 H0$31 % xtH01B`$,`0HP$$ B("`H [1 ~tX01B`,,`1Y ! HB`AXH@aH  1 tP1B@P,R $P# P1 0t 1B@`, 0!` #0 0$p41 @f `t1B`d, 0$dBp<aH P1 (t$1B t, !|BC|: cH h1 4t101B` ,@6 $# 1 @t= 1B@`,@$ !D! #0 @0$051 "  Lt@H1B  ,B $@ BHbH p1 PXtU1B H,  @!0 B AH `H ȚU1 dtP`1B (,@Q @!0L0 L aH Е1 ptlP1B H,@R $!H #0 0$51 S |tx`1B@P,b($PB\4aH 01 t1B``, 0!Pa # (`1 @tȐ1Bd, 2cH @1 pt1B,Ӊ :!t #0 0$61 ` t01B`|,3 >!# p1 tP1B@,V h! #  1 t 1B@`,@$D`H PG1 0t@01B` ,1B @ ! # ,@!@BP,`, c^ `!P B( O,"8p @P2" $tO@2 < #@PJD$ !y+F PB @J!@XxU `!@B m( 0Bx0 F <0 xb`@!B`F!BxI$B3B @H@aD0 Ha H# 0X#@  Dp q$ &0 0,  (!(P & #$LB % r@ D!Y!p0BX? H!p s  @R!@Xj &00 H @MhPBY!p0BX? H!p s  @R!@XF P!bH 81 `t3B ,  @!# P 1 (t %03B`@,`4" F! #` h1 4t03B H0 ,``H Z1 BtX<3B ,,`Y X !, #@ @1  Ht03B` H,@2X$PHBP*`aH 0p1 PNtp3B`X,r !`BB`,aH H1 TtȠ3B@d, `!l0 l2aH `1 Zt3Bt, :!t #@P 0$R1 } `t@3B|,C$`|BlpcH 01 ft3Bp, ȡ!BFncH `1 @lt3B@, $!#@ 1 prt@3B  ,@D !D! #@P 1$S1  xt3B H0,  $$B aH 1 ~t3B`XD,` !0LB`AXL aH  1 t@3B H,@B @!PT0 T$`aH P1 0t 3B`X, ,!X #@P 0$pT1 @j `t3B h, D$dBl8aH P1 (t$Ё3Bx, a!@BC:aH h1 4t0P3B|,S $}# 1 @t=3B p, A!Bn B @E1  Lt@H3B ,B  !# p%1 PXt U 3B@@,@$" D! #` Ȫ1 dta03B`0,`0`H U1 ptPl3B (,@Q P !( # !Y $`3BX !Y ! Y$b( f! B@ W,"Xp BP2" O@2"< #BPBJD$"!y+F BPP! `Kd`x! H8$1B$H c," 2B$01BH& 2 B@ !P # !X# !`# | !h# g2!1Bd6qH#bp: H3bx>@sHbj@2B ! # !#  Э!#| !@#e{,$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* k"@!b1B B L D@Yx@! &0 0 ,c!`C2Bb!C1B@e$M"  BPf!p B(@81$8N! Zp XN! hNy%@ !!0  B 0`  M?#@B2BH  !0 0   @2BPKX0Z!`3JBPf!`B f!0B2B F# Zp p @KdHDx%h@ @P!@X @N!@X @$ @P!@XU  @E$0@ ! PI 0B x0 <0 xb`@@!pB`$` !0# bB H`bH aBH`a  K@d1`P!BhYpa!0B(? !p s  @F!@X &0 B M`XBhYpA!0B(? !p s  @F!@X  ! bH 81 `t1B  ,  B!#` P1 (t$1B H0 ,` ! #@ hP1 4tP01B`X(,@P aH 1 Bt<01B` H,@2 $!H # @1  HtP1B@P,RX$pPBX.aH 0p1 PNt1B `, `!hBCh0aH H1 Ttؠ1Bl,` `!t0 t6aH `1 Zt1B`|, >!| #  h1$"1  `th1Bp,jx$B`cH 01 ft1B@, ! BA@bH `1 @lt1B , H$H#` [1 prtX1B@P,,@X P !( #  0$#1 E xt01B`D, 2$$PDBH*@aH 1 ~t`1B@P,b !p\BB\(aH  1 t1Bd, $`#` P1 0t 1Bl,` 6!l #  0$p$1 @z `t1B`x,0$xB|\bH Pl1 (th%1Bx,j !BEhZcH h1 4t11B@, $!#` 1 @t<1B H0 ,`  ! #  1$0%1   LtI1B`X,`P $0,B(&aH p1 PXtT 1B@D, " @!PTB BT"`aH Ȓ1 dt`@1B`X,B @!p\0 \(aH 1 ptl1B@`, 0!` #  0$%1 s |tx1Bp, 8!l# 0f1 t`1B,a <!x # (`1 @t1Bp|,>bH @n1 pth1B,k h!Z! #,p!B, , c V!0 B K,"(p IDP TO@%< #DPJd0!y+I  0$B @F!@XPU `!@B PI 0B x0 <0 xb`@@!pB`$`  A!0# B B,cxA!BX !p s  @F!@X>  ! bH 81 `t0B ,  @!#` P1 (t$0B H0 ,` ! #@ hP1 4tP00B`X(,@P aH 1 Bt<00B` H,@2 $!H # @1  HtP0B@P,R$pPBX.aH 0p1 PNt0B `, !hBCh0aH H1 Ttؠ0Bl,` @!t0 t6aH `1 Zt0B`|, >!| #  h1$"1  `th0Bp,j x Z!# 01 ft0B , `! # `C1 @lt@ 0B@ ,!BbH  1 prt0B H,  H !$ #,upa!B, , c2 V!0 B K,"(p I@P $TO@%< #@PJd0!y+I  0$B @F!@XPU `!@B HA 0B x0 <0 xb@0@!PB @@! 0# HL$p `vf$W( T! ,X@8L"B XV`XY `N!`YhA! , !p s  @F!@X6 L `E0 XV`XY `@!`Y hH! ,,a? !p s  @F!@X  @F!@XHU `@!@B () 0B x0 <0 x@b@!0B  @ ! vf$W( L! ,x@Dp"B 8N8Y @F!@YHA!, !B , (U@ `@!@B HA 0B x0 <0 xb@0@!PB @@! 0# HL$p `vf$V( T! ,(@8L"B XV`XY `N!`YhA!, !`s  $d@@xH! L  `E0 XV`XY `B!`Y hH! ,,a? ! @F!@XHU `@!@B HA 0B x0 <0 xb@0@!PB@H$0B 1B  @ ! `vf$U( T! ,@ 8!#L"B XV`XY `@!`Yh!0Bb? !rH@aDp Ha@00B0B 0@1B` Pp!( #` `a!HPT!B@XHU `!@B @$@B !  0B x0 <0 x b !0#P A # @! q` P`!H(0#`a 0M 0 B` H@!%0#@Aa @2B @@X @ & 0 @!@2B H`c P!)+`R,P0Ba8!HxPH! B ,0d ! )  b @!PB@ 8!8Y @ &0 , SB H!U  ! H= 0B x0 <0 xb@8@!(b `B`8$\T( T!P B`($dT( T!@ B`0 Lp s aF! HH8!(@XN! HPT! H18! &0# $0LXJ!B`Yha!0B C T!p q C a!   ,`$ T( T!B HU `!@B @5 0B x0 <0 xpb  @!B  R!0 B@ $S( R!  B @YPH!B MXVBXP !Y8! &0 Hx! H&$ X$B! P&( hx(! X&, @ X!`XY$S( R! & 8@@! &0 A @ q7 H&$ @ X!`XY$TS( R! & #`L H&$ 8(! P&) #@  XB!`XY N{$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* @" &@ # &0 0    p p$ HDB9! P&( `(4 XDB(! &D h"8! PH!HP &@ # &0 8! PH! HXPR!p C!PB@ $R( R!B`@, #V R! BL (&P0 `  p7  H@'XD$@ X@,\@,@ @ !H\@H@@L(PaBP*PB@ $TR( R!B`@, $TR( R!B . R! P$"H #. R! B (@PXD @  H. H #`AXaB,"PB@ $&A<0(`` x >&A<0(`` x >&A<0(`` x &A<0(`` x +&A<0(`` x )&A<0(`` x@ >&A<0(`` x =&A<0(`` x &A<0(`` x +&A<0(`` x` '&A<0(`` x` =&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x &A<0(`` x +&A<0(`` x >&A<0(`` x >&A<0(`` x >&A<0(`` x )&A<0(`` x =&A<0(`` x &A<0(`` x +&A<0(`` x` '&A<0(`` x` =&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x 1&A<0(`` x &A<0(`` x +&A<0(`` x >&A<0(`` x >&A<0(`` x >&A<0(`` x =&A<0(`` x &A<0(`` x +&A<0(`` x` '&A<0(`` x` =&A<0(`` x &A<0(`` x +&A<0(`` x >&A<0(`` x >&A<0(`` x >&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x :&A<0(`` x &A<0(`` x *&A<0(`` x &A<0(`` x (&A<0(`` x` +&A<0(`` x 6&A<0(`` x *&A<0(`` x 6&A<0(`` x *&A<0(`` x &A<0(`` x (&A<0(`` x` +&A<0(`` x 6&A<0(`` x *&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(``$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* T~"b x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x :&A<0(`` x &A<0(`` x (&A<0(`` x` +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` =&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x` '&A<0(`` x` 1&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 4&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 4&A<0(`` x D&A<0(`` x D&A<0(`` x 3&A<0(`` x D&A<0(`` x D&A<0(`` x &A<0(`` x &A<0(`` x *&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ E&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x D&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x A&A<0(`` $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "s x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x D&A<0(`` x D&A<0(`` x D&A<0(`` x D&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x G&A<0(`` x (&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x` G&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x` G&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0("}v$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* m " `` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x` I&A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 4&A<0(`` x 4&A<0(`` x I&A<0(`` x@ J&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x :&A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` =&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x *&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x 6&A<0(``1#$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " x *&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x 1&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x :&A<0(`` x :&A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 1&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 4&A<0(`` x 4&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x :&A<0(`` x :&A<0(`` x D&A<0(`` x D&A<0(`` x D&A<0(`` x D&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(``wX$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* &" x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` =&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x &A<0(`` x &A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x` '&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x 1&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(ڴ $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " `` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` =&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x &A<0(`` x &A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x 1&A<0(`` x` '&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x :&A<0(`` x :&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` =&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x (&A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x` '&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x :&A<0(`` x :&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x 2&A<0(`` x &A<0(``y$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " x` +&A<0(`` x &A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x :&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 6&A<0(`` x *&A<0(`` x &A<0(`` x !&A<0(`` x %&A<0(`` x U&A<0(`` x` U&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` '&A<0(`` x *&A<0(`` x` U&A<0(`` x U&A<0(`` x &A<0(`` x &A<0(`` x V&A<0(`` x@ V&A<0(`` x` 6&A<0(`` x V&A<0(`` x 7&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` '&A<0(`` x *&A<0(`` x` U&A<0(`` x U&A<0(`` x &A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` V&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x` '&A<0(`` x *&A<0(`` x &A<0(`` x +&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x@ A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x '&A<0(`` x '&A<0(`` x X&A<0(`` x X&A<0(`` x !&A<0(`` x '&A<0(`` x 1&A<0(`` x X&A<0(`` x V&A<0(`` x '&A<0(`` x` X&A<0(`` x '&A<0(`` x X&A<0(`` x '&A<0(`` x X&A<0(`` x !&A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x (&A<0(`` x` +&A<0(`` x &A<0(``IE$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* r" x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x (&A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x (&A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x (&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x 1&A<0(`` x $&A<0(`` x !&A<0(`` x &A<0(`` x Z&A<0(`` x *&A<0(`` x *&A<0(`` x` '&A<0(`` x Z&A<0(`` x %&A<0(`` x '&A<0(`` x Z&A<0(`` x *&A<0(`` x` '&A<0(`` x` '&A<0(`` x` 6&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x 1&A<0(`` x` '&A<0(`` x` 1&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x 4&A<0(`` x 4&A<0(`` x :&A<0(`` x 4&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x &A<0(`` x` '&A<0(`` x` 1&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(.$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " `` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x :&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x (&A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x (&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` V&A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x :&A<0(`` x :&A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x +&A<0(`` x !&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(``-[$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* .k" x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x :&A<0(`` x :&A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x `&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x (&A<0(`` x *&A<0(`` x !&A<0(`` x %&A<0(`` x +&A<0(`` x@ ,&A<0(`` x &A<0(`` x &A<0(`` x `&A<0(`` x +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x` a&A<0(`` x &A<0(`` x '&A<0(`` x (&A<0(`` x` +&A<0(`` x *&A<0(`` x` '&A<0(`` x *&A<0(`` x` '&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x@ A&A<0(`` x@ A&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(`` x 7&A<0(`` x 1&A<0(`` x (&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x A&A<0(`` x A&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 1&A<0(`` x (&A<0(`` x :&A<0(`` x &A<0(`` x 2&A<0(`` x &A<0(`` x` +&A<0(`` x 1&A<0(`` x (&A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x +&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x` 6&A<0(`` x &A<0(`` x 6&A<0(`` x 6&A<0(``v/$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* q"# qaƍ,X Dᬲ  ="@=}8+#MR܃t\c(1OM1(PDp2O{s& 2EWð]Xe"E!7`c@n<4C`Rpu2,X$ $s0 hRi,#`{(huC@^A xdӃz] q@JS%C 8P"N2,C] _O7XX81q,-F`8$ ^!i6@DXVK@?A2#rqcݤ8X!` 8p pY_v@3n P5sqOhO~` XJ(>p #*@y-PNҐCh bZxϙG& @&p5+ACHȃQ /8Q)@PYϐDRn2[Us d稍|NCd`WMøhQ^邦d=SEP,B.1s1 m`@(7bSh@ x~ Y' s5İHP8+p?BL]I,"?U`,-!=37m]:4tc^` 'jAD\'Hzu MeXܤLp*9*රܝ.F ]nx%yN\' h]M}DfLg>jsE@"X"@lˡW !mA "@vrq00YW\i`Qȅ"Q3!$푗yP/1` ,J\e`f@f Y90Ǹ TťpSZ@^ 0+!pb|@l4!RqV@]a1FZeL (i*$@9 `| >3&E1(TNcF[:P &^~_DpOq+C`VP>2 P>:@ p %`EB!P fc@<_ Hθ@O_PsPѨ@y8&CِS8֑$gGp`G\MZؐHP#qhI`Mm\E;`S meUF&]b @3ii[@{_`1t .PF( Hm[;= &Dy-@spnVEpp@Gl( \4(.%0 ( .)}4&xUWRx0GG`ਅLO C!:t0ڬ%5;q7ms`!̷pu:7y@2q! \14SIc4 wXYZ>^`:@atB!;hC.jCXT%̡|V@' WMtsq8!$ |-rmb =\|3!b$Hx_Qd e`w-eMMءU7KY+ad+]?DH ء*"V~ @ :J[ 0&4vE=Ju x_5yUbP"52`e۠MP%1+kt{@9{b4ލQPX q|">Ӥ2?`_a"U| dP YAije!lϡU*@}X6hСlp`s8 J tu%L _X+!9c01#,-,"Pc[Eu.)"a^C[ 5bKM@F@">Mp!2yR@SA|$0`5Y`w8vD@0}ؒ- t0q!G2U)[I0ږD`s0u;T/>pd xG @BW@i<*`\@5n/`xJigh : UәN9]`2`za40J8/`\ 8H ӥ _3P?*e`ĀoЯL:o%ȼ?c:*p˙IzI,2`!d\ - 8Py+k!BNWܠp50Jxa1\x2x xE2ǐN;vEhY,@_0P, @3 ̉U嬣AoP00,5999Onawx@00~!i@pDexe@F3O$N=`ٟ4AB: )\  B nmГ1 !p/\@g KR1xv^?&DR BJy!iLP1S]"Gq 0ͽ)`x~ !`t `cXqzi('h`! X_=Ɍo؄٠hp`J# B(/ÏҖjԉV`S`ؘ m7wz`2XhAALpX{Pu?/ K8N+$Х ' 0 7-q 9A@gZ0@< ѲـQpC>z/)2 iY) p3`a (A%h\(I*VrDM-|`{-ZHA+.) J`Utq7",C<H" $u ڳ=@LBـtӠ!`H/0&~n~ YS{BJG`X0s:.o4$ќDb@ VOA"rfQYj?`Ŵh]"20q-8T# 0Op1ťa t $ЀHpS@2 z &iRApcK#J vTsܤiS#B` '`+KDÑojy$/dR-'Dya`~ ifܱ|r@6`]Ч)xpaȪgmը]ѝPQ@ [\sؓJ`$x!O_u:0t pm`crY1 qpd!XY`NLU P[$C1爽Xjb`s%pZ nv)+" Fd*>9p@`Hm֩4g%P'!,Q96 P<#/=]0.&X1(<,cE-X0>Zn@(`Bi_>F3k _)j &% ;1Ƞj5J,}lqVkGy{< 8L6mR8^!XܸA\%;w[lrg =.LCD UD%? vbGkI7YUYI~[VÓ& 6A8VT-B}/- Îzz9/1Qҍb٠=MoӋ(N b IW\б\K !T}b_FP#iBiH"(x\V=qx`ހIwuJMܐ81 1W<Ix,q\N%cO>H]II+ƈq86q4`k`))'P5YGpu?`e"dPلIP\oIol2'}O/`X@DZҵ}S"`aY]9u!`w1)!0s q7 \X1@~p"_<'a.Cf0r xX TӾc@XXI͓`%B$29i dLġ   td0*p^L@1` P8Ƒ!'3`C O>!@ߘeԳ&eyqg ~-0 "$yWo{?y>pX,%y҂)U f2S:'i :2X(, d1.V(. Pm*I\A@IQ~j4!X>{U@B<\F\>`A"! TWEVz f9ؤIJ  q#fؤP&HQE X7Tt  &`.hr$E(ZrBMa,@b`0=bRҠZs X| cNX dgwbX7>E(:*`JD@drc)5c;f@" 4X6Ǣ/@ٱ%&3f)w.Wx6 @KW4p`z'V(1U>eJ٠e?)$a\":NxmS<)bS<e\$A 3+5C`nHiIG1@@B3 Q] `#' ',ү4`Y$wY ol!WR Pf|jX"0bݨ},<$;@gVPY Nvn 6 Q!"#܄HN"rTŰ`8'xK`5,p4D6 , 4Ys@",KHk$ #`c!^ĐQ`!|9%c@&9T`s F&٤p4 mw<`@ҝs]+ܤj,D`o{?!&xW5  `md[2+%(avqݠmd܄ 8u B2`a$Bo12Yqw KKQB/c}zyEbhcI a|R.*},biz~m+:JcOG"@BB34 nb©F$[,I|3AF@ xPsF|f\i sᤳ`-2j`r`p'0 l$0*9`XAWE'U+@_@x -q-^Kj` ZK 5 @#9u/a ŰkY ANҡDz@D ycD$|P@a ?>q?Y yDQXAN&B0EpЃ02~ xvM; `eppl^@,Pxht*J]C`.s"QAx>No &ذpM{"n@]X @"(e$Ĉtx 1V# 1_!<)`EG$=Ys!SAh*1dgUGO 5i0+YtT8r!..t@s͊A4oqy`ޙ*PP"O.HR+0LW*Gy2u= @Lu axFDPJ%HX(~ i) `LP`aoG XF: @:@.+,P:`E ѽ< QiP@D(=W Fzʒ@ ':;ZD_th/%(t)B$ .؃S4Fqc1@jP`tT@ h aUR N$q`M @،I $#|8ԉc05}q\' Xz}*'X>}(PJ-ֽ#c{0A:ѩ @ASDTV}X@Qx8%)| ZV@Xp)Wp=3`0ZT?t|͔~ӱ xMG/9dvvܧX7p&iimPc@ YZDF٣jt|&`f!-x!f$=?! Bb2Q-0ഒXs`s06h6'}2`x@uSoZ= "+TDY_t )F/@Gn$ p;U-# @2 0[|| Xia1}7WR``F -C 5c'!$ _1i`a]<6Źf p[Vwz5W2-S`c|x-!`n\o"|.B( s XC8sh]0M^ DC Xw Y'/0eIXXUk9 dPƈa0t ⊁4sQ`'tsL$8NCQ[){C9186pt @E$nHj{]M0 90D @ؐh 4i4 pa"^. gܤh9w.`:#L =rp AB)``. 60@?:0'7в$-/>Q`؀@r PegU 87 v [\t1:.@j३0 =PoZ# AF%/FRNmM(+X>&t"~ /p$ | @0Y$@O;5h;`ױsx鴔.,b[# 6OS`acug8%@$zE $ DRYXoxyFN7C:&i0pTY0#/qTn+ x?`ܩxAg CO2 [؀*Zi`)IR F|ݷо-CPz BdH)ZSN`;fa 0PjWؐ  BHU Psý(f6  ש$-]z ES"d|Hh/M9!%},R@# .2 Rx8'@4%d  )h⚀QIi{k7S",8,c.*;H8T)BRd " \H=5`sgXh$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " x 7&A<0(`` x` '&A<0(`` x` 1&A<0(`` x *&A<0(`` x 2&A<0(`` x` +&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 7&A<0(`` x b&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x@ F&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x G&A<0(`` x $&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x G&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x &A<0(`` x $&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x@ F&A<0(`` x G&A<0(`` x c&A<0(`` x b&A<0(`` x@ F&A<0(`` x G&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x` G&A<0(`` x F&A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x` c&A<0(`` x c&A<0(`` x &A<0(`` x c&A<0(`` x c&A<0(`` x b&A<0(`` x c&A<0(`` x@ F&A<0(`` x c&A<0(`` x b&A<0(`` x !&A<0(`` x c&A<0(`` x@ F&A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x` G&A<0(`` x c&A<0(`` x b&A<0(`` x !&A<0(`` x !&A<0(`` x /&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x@ F&A<0(`` x c&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x b&A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x :&A<0(`` x &A<0(`` x &A<0(`` x :&A<0(`` x :&A<0(`` x@ e&A<0(`` x` c&A<0(`` x :&A<0(`` x@ e&A<0(`` x c&A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x $&A<0(`` x &A<0(`` x $&A<0(`` x e&A<0(`` x f&A<0(`` x c&A<0(`` x@ F&A<0(`` x@ F&A<0(`` x@ F&A<0(`` x c&A<0(`` x b&A<0(`` x c&A<0(`` x b&A<0(`` x !&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x b&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x@ F&A<0(`` x c&A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x c&A<0(`` x@ F&A<0(`` x F&A<0(`` x@ F&A<0(`` x c&A<0(`` x &A<0(`` x &A<0(m!$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " `` x b&A<0(`` x b&A<0(`` x@ F&A<0(`` x F&A<0(`` x@ F&A<0(`` x c&A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x G&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x c&A<0(`` x@ f&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x` c&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x c&A<0(`` x !&A<0(`` x@ g&A<0(`` x !&A<0(`` x@ g&A<0(`` x /&A<0(`` x@ g&A<0(`` x g&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x G&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x g&A<0(`` x h&A<0(`` x &A<0(`` x &A<0(`` x c&A<0(`` x h&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x D&A<0(`` x D&A<0(`` x D&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x@ f&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x &A<0(`` x b&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x` G&A<0(`` x &A<0(`` x $&A<0(`` x $&A<0(`` x i&A<0(`` x i&A<0(`` x@ F&A<0(`` x i&A<0(`` x i&A<0(`` x b&A<0(`` x b&A<0(`` x@ g&A<0(`` x c&A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x &A<0(`` x $&A<0(`` x $&A<0(`` x i&A<0(`` x i&A<0(`` x@ F&A<0(`` x c&A<0(`` x b&A<0(`` x b&A<0(`` x@ f&A<0(`` x@ g&A<0(`` x !&A<0(`` x c&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x G&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x c&A<0(`` x@ f&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` .3$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* \". x '&A<0(`` x )&A<0(`` x '&A<0(`` x k&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x G&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x 7&A<0(`` x &A<0(`` x k&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x !&A<0(`` x !&A<0(`` x b&A<0(`` x b&A<0(`` x c&A<0(`` x@ f&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x k&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x G&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x c&A<0(`` x@ f&A<0(`` x c&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x@ m&A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x G&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x@ f&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x F&A<0(`` x b&A<0(`` x b&A<0(`` x &A<0(`` x@ F&A<0(`` x &A<0(`` x c&A<0(`` x g&A<0(`` x m&A<0(`` x@ m&A<0(`` x m&A<0(`` x +&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x &A<0(`` x 7&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x b&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x b&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x n&A<0(`` x 2&A<0(`` x &A<0(`` x` n&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x n&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x k&A<0(`` x 7&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x n&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(``R΋$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* g"? x +&A<0(`` x &A<0(`` x@ ,&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x@ F&A<0(`` x@ F&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x F&A<0(`` x 2&A<0(`` x@ F&A<0(`` x@ F&A<0(`` x &A<0(`` x` n&A<0(`` x@ F&A<0(`` x F&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ F&A<0(`` x 2&A<0(`` x` n&A<0(`` x n&A<0(`` x )&A<0(`` x )&A<0(`` x )&A<0(`` x )&A<0(`` x ;&A<0(`` x q&A<0(`` x r&A<0(`` x )&A<0(`` x &A<0(`` x r&A<0(`` x r&A<0(`` x r&A<0(`` x ;&A<0(`` x &A<0(`` x r&A<0(`` x r&A<0(`` x n&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x r&A<0(`` x s&A<0(`` x r&A<0(`` x@ s&A<0(`` x r&A<0(`` x@ s&A<0(`` x s&A<0(`` x r&A<0(`` x s&A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x !&A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x ,&A<0(`` x ,&A<0(`` x ,&A<0(`` x ,&A<0(`` x ,&A<0(`` x t&A<0(`` x &A<0(`` x` +&A<0(`` x t&A<0(`` x t&A<0(`` x V&A<0(`` x@ ,&A<0(`` x '&A<0(`` x t&A<0(`` x@ u&A<0(`` x u&A<0(`` x '&A<0(`` x u&A<0(`` x u&A<0(`` x@ u&A<0(`` x u&A<0(`` x D&A<0(`` x u&A<0(`` x@ u&A<0(`` x v&A<0(`` x ,&A<0(`` x` v&A<0(`` x ,&A<0(`` x ,&A<0(`` x ,&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x ,&A<0(`` x t&A<0(`` x@ V&A<0(`` x &A<0(`` x V&A<0(`` x ,&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x G&A<0(`` x v&A<0(`` x 1&A<0(`` x 1&A<0(`` x )&A<0(`` x '&A<0(`` x )&A<0(`` x '&A<0(`` x &A<0(`` x V&A<0(`` x v&A<0(`` x w&A<0(`` x@ w&A<0(`` x` +&A<0(`` x w&A<0(`` x w&A<0(`` x w&A<0(`` x@ w&A<0(`` x w&A<0(`` x w&A<0(`` x x&A<0(`` x@ x&A<0(`` x x&A<0(`` x` +&A<0(`` x@ x&A<0(`` x` +&A<0(`` x x&A<0(`` x x&A<0(`` x@ x&A<0(`` x x&A<0(`` x` +&A<0(`` x@ x&A<0(`` x` +&A<0(`` x x&A<0(`` x x&A<0(`` x@ x&A<0(`` x x&A<0(`` x` +&A<0(`` x@ x&A<0(`` x` +&A<0(`` x x&A<0(`` x@ w&A<0(`` x x&A<0(fK$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* e"P `` x x&A<0(`` x 0&A<0(`` x@ x&A<0(`` x 0&A<0(`` x x&A<0(`` x x&A<0(`` x y&A<0(`` x` y&A<0(`` x` 6&A<0(`` x y&A<0(`` x 7&A<0(`` x y&A<0(`` x y&A<0(`` x` y&A<0(`` x X&A<0(`` x y&A<0(`` x V&A<0(`` x y&A<0(`` x 1&A<0(`` x z&A<0(`` x X&A<0(`` x` z&A<0(`` x 6&A<0(`` x z&A<0(`` x z&A<0(`` x@ z&A<0(`` x +&A<0(`` x 6&A<0(`` x z&A<0(`` x z&A<0(`` x {&A<0(`` x@ {&A<0(`` x {&A<0(`` x {&A<0(`` x {&A<0(`` x {&A<0(`` x` {&A<0(`` x {&A<0(`` x 0&A<0(`` x@ w&A<0(`` x 0&A<0(`` x &A<0(`` x &A<0(`` x {&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x )&A<0(`` x (&A<0(`` x 0&A<0(`` x |&A<0(`` x )&A<0(`` x` }&A<0(`` x |&A<0(`` x }&A<0(`` x &A<0(`` x }&A<0(`` x |&A<0(`` x` +&A<0(`` x` }&A<0(`` x }&A<0(`` x ~&A<0(`` x ~&A<0(`` x ~&A<0(`` x ~&A<0(`` x ~&A<0(`` x ~&A<0(`` x ~&A<0(`` x ~&A<0(`` x (&A<0(`` x |&A<0(`` x |&A<0(`` x {&A<0(`` x |&A<0(`` x` +&A<0(`` x &A<0(`` x` +&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x |&A<0(`` x -&A<0(`` x ,&A<0(`` x &A<0(`` x &&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x !&A<0(`` x !&A<0(`` x &A<0(`` x@ :&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x $&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x {&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x v&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x ;&A<0(`` x &A<0(`` x &A<0(`` x '&A<0(`` x '&A<0(`` x &A<0(`` x '&A<0(`` x@ &A<0(`` x` &A<0(`` x s&A<0(`` x '&A<0(`` x@ &A<0(`` x` +&A<0(``%x$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* '"a x (&A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x '&A<0(`` x &A<0(`` x &A<0(`` x ;&A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(``9~^$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* "r f&$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* T" ! $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* =" <$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* " Q$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* vX" MV$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* Ҳ" 3 $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* O+" Vm$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ~" D$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 2" 5 ! (@ !d)pdrPC(@`dr(Y0C0@pdr0YC8@` dr8YC@@p(dr@YCH@`0dr HYCP@p8dr@PYCX@`@dr`XYpC `@`YPC p 2% `H x,"x@8BX080<0+J !@0(g B@!0BXa 0Bbp !pB )AOH!pBqAK $!PBh:!3~F8P`@!BHT!@B`Z!P$,@X 0:!\  ,x>!PB@X:!3~FP`@!Bp^!@BPV!0$,@X0!   X0! H PBJ@8 8! p XPp ! 0 BaI`8 8% p% pp ?#H ) "ID@D,"M x@<@<, @ @08x% 0 0X@ 0! 8!8X,`8X@h,X? hp 8% e&p\0 @.!pf!@B0l!pB Pr!B@x!B ! p% p ,X,@ Xr? @ &`X0 @,!pXH x &A<0(`` x &A<0(``  @/$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* G"   P %*,","%*.>]""""aA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xWIDGETIDBCSESVNCREATENOTES$DRM_FOCUSNOTES$DRM_HELPNOTES$DRM_LOST_FOCUSNOTES$DRM_MENU_PULLINGNOTES$DRM_PUSHBUTTON_ACTIVATENOTES$DRM_SCROLL_ACTIVATENOTES$DRM_VALUE_CHANGEDNOTES$DRM_WIDGET_CREATENOTES$DW_SVN_ATTACHEDNOTES$DW_SVN_DETACHEDNOTES$DW_SVN_ENTRY_SELECTEDNOTES$DW_SVN_GENERALNOTES$DW_SVN_GET_ENTRYNOTES$DW_SVN_HELPNOTES$DW_SVN_SEL_CONFIRMEDNOTES$DWNOTESSYS$LIBRARY:.UIDNotesNOTES$DEFAULTSNOTES$DEFAULTS.displayPostScriptNOTES$DEFAULTS.DisplayPostScriptNOTES$DEFAULTS.inhibitReadPopToTopNOTES$DEFAULTS.InhibitReadPopToTopNOTES$DEFAULTS.allowReadAheadNOTES$DEFAULTS.AllowReadAheadNOTES$DEFAULTS.ringPagingBellNOTES$DEFAULTS.RingPagingBellNOTES$DEFAULTS.expandUnseenOnlyNOTES$DEFAULTS.ExpandUnseenOnlyNOTES$DEFAULTS.displayTopicOnlyNOTES$DEFAULTS.DisplayTopicOnlyNOTES$DEFAULTS.kpEnterIsOneKeyNOTES$DEFAULTS.KpEnterIsOneKeyNOTES$DEFAULTS.inhibitProtocolWarningNOTES$DEFAULTS.InhibitProtocolWarningNOTES$DEFAULTS.allowSmoothScrollNOTES$DEFAULTS.allowSmoothScroll ,.*0 00:00:01.00 cda$convertNOTES$LIBRARY:.NOTENOTES$NOTEBOOKSYS$LOGIN:.NOTESYS$DISK:[].TXTSYS$SCRATCH:.LISSYS$SCRATCH:.TMPSYS$SCRATCH:.PSNOTES$FilenameMAINNOTES_EVESAMPLE_CONFERENCENOTES$SAMPLE::2Rb*Ȣ<<< !AS >>>-< !AS >-!80*-!80*=!AS!#* !AS!#* !AS!AS!#* !AS-< !AS >-SYS$SCRATCH:NOTES_!XW_PRINT_!4ZW.PSDDIFPS%!SYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASPRINT.LISSYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASPRINT.TMPCDA$ACCESSdefaultPositionDECW$CURSORuserDatacancelLabelStringMAIN_WORK_BOX$CANCELLABELuserDataMAIN_WORK_BOXiconNameDEC Notes:WorkmessageStringISO8859-1NOTESNOTEStitleDEC Notesmain_caution_boxISO8859-1resizePolicyMAIN_MESSAGE_BOXDEC Notes:InfotitleiconNameDEC Notes:InfouserDatauserDatawidthresizePolicywidthdialogType!#* !ASuserDataMAIN_CAUTION_BOXmessageStringISO8859-1 Do [YES] caution box stuff Do [NO] caution box stuff valueI don't really handle these yet!userDataxyuserDatauserDatalabelStringMAIN_TOP_TREE_PB$LABELMAIN_OUTLINE_PB$LABELlabelStringCONF_DISABLE_MODERATOR_PB$LABELCONF_ENABLE_MODERATOR_PB$LABELuserDatauserDataMAIN_HELP_BOXDXmfirstTopic::DXmdisplayModeCancel button...columnswordWrapDD-MONTH-YYYY4 HH:MM:SS.CC2DD-MONTH-YYYY4:HH:MM:SS.CC2!AS::!AS@transientFortransientFor.-trueonyesuserDatatitleiconNamedeleteResponsetransientallowShellResizeminWidthminHeighticonicxywidthheightxywidthwidthDEC Notes: Digital Equipment Corporation. 1986, 1993. All Rights Reserved.DEC NotesMAIN_SHELLMAIN_WINDOWDUMMY_SHELLDUMMY_WINDOWMAIN_POPUP: NOTES$DRM_MB3_PRESS(MAIN)NOTES$DRM_MB3_PRESSMAIN_DUMMY_WIDGETDXmdisplayModeDEC Notes:ConfDEC Notes:ConfCONF_SHELLCONF_WINDOWCONF_POPUP: NOTES$DRM_MB3_PRESS(CONF)NOTES$DRM_MB3_PRESSDXmdisplayModeDEC Notes:ReadDEC Notes:ReadREAD_SHELLREAD_WINDOWrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentREAD_POPUP: NOTES$DRM_MB3_PRESS(READ)NOTES$DRM_MB3_PRESSDEC Notes:EditDEC Notes:EditEDIT_SHELLEDIT_WINDOWEDIT_POPUP: NOTES$DRM_MB3_PRESS(EDIT) ~Shift0xff09: NOTES$DW_HANDLE_TABS(0)NOTES$DRM_MB3_PRESSNOTES$DW_HANDLE_TABSNOTES$LIBRARY:.NOTESYS$SCRATCH:.TMPLAST-1!AS*userDataMAIN_FILE_OPEN_DBDEC Notes:ConftitleDEC Notes:ReadtitleuserDataMAIN_FILE_CREATE_DBDEC Notes:ConftitleNOTES$LIBRARY:_Z$Z_:[_Z$Z_]userDataMAIN_FILE_DIRECTORY_DBrightAttachmentrightAttachmentrightAttachment::_Z$Z_:[_Z$Z_]::userDataMAIN_ENTRY_ADD_DBuserDataMAIN_ENTRY_DELETE_DBuserDataMAIN_ENTRY_MODIFY_DBuserDataMAIN_ENTRY_UPDATE_DBuserDataDXmdisplayModeuserDatauserDataDDIFASCIIuserDataMAIN_FILE_MAIL_DBSYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASFORWARD.TMPDEC Notes:SendoverviewISO8859-1aboutISO8859-1userDataMAIN_CUSTOMIZE_PROFILE_DBDECW$SYSTEM_DEFAULTS:NOTES$DEFAULTS.DATDECW$USER_DEFAULTS:NOTES$DEFAULTS.DATuserDataFILE_OBJECT_ADD_DBuserDataFILE_OBJECT_DELETE_DBuserDataMAIN_OBJECT_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataFILE_OBJECT_MODIFY_DB1-LASTLAST-1*!AS*userDatauserDataCONF_CONF_DIRECTORY_DB!UL.*userDataCONF_CONF_MODIFY_DB12-AUG-2044userDataREAD_NOTE_SETSEEN_DBuserDataCONF_KEYWORD_ADD_DBuserDataCONF_KEYWORD_CREATE_DBuserDataCONF_KEYWORD_DELETE_DBuserDataCONF_KEYWORD_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataCONF_KEYWORD_MODIFY_DBuserDataCONF_MARKER_ADD_DBuserDataCONF_MARKER_DELETE_DBuserDataCONF_MARKER_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataCONF_MEMBER_ADD_DBuserDataCONF_MEMBER_DELETE_DBuserDataCONF_MEMBER_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataCONF_MEMBER_MODIFY_DBSYS$DISK:[].TXTSYS$SCRATCH:NOTES_!XW_*_%%%%.TMP;*userDatauserDataEDIT_FILE_INCL_DB!/!#* !AS!/!/userDataEDIT_FILE_USEF_DBuserDataEDIT_FILE_SAVEAS_DBuserDataEDIT_FILE_ATTRIBUTE_DB.TXTEDIT_FINISH_CREATE_DBSYS$SCRATCH:.PSSYS$SCRATCH:.TMPSYS$SCRATCH:.LIS*.*1-LAST*!AS*userDataREAD_NOTE_READ_NOTE_DB!UL.0!UL.LAST!UL.LAST!UL.!ULDEC Notes:ReadtitlerowslabelStringISO8859-1labelStringISO8859-1labelStringISO8859-1%!SYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASDDIF.TMPuserDatabottomWidgetunitTypetopAttachmenttopOffsetbottomAttachmentbottomOffsetleftAttachmentleftOffsetrightAttachmentrightOffsetDVRscrollHorizontalDVRscrollVerticalREAD_DDIF_VIEWERPSDDIFuserDataREAD_NOTE_MODIFY_DBuserDataREAD_NOTE_CRF?V$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* A" EATE_DBEDIT_FILE_ATTRIBUTE_DBDEC Notes:EditDEC Notes:EdittitlelabelStringISO8859-1userDataREAD_FILE_EXTRACT_DB!UL.*NOTE_!4ZW_!4ZW.DDIFREAD_FILE_EXTRACT_DDIF_DBSYS$SCRATCH:NOTES_!XW_PRINT_!4ZW.LISuserDataREAD_FILE_PRINT_DB!UL.*ISO8859-1SYS$SCRATCH:NOTES_!XW_PRINT_!4ZW.PSuserDataREAD_FILE_DDIF_PRINT_DBlabelStringISO8859-1ISO8859-1userDataokCallbackcancelCallbackuserDataDXmdeleteFilePrintWgttitlePrint Notes OptionsuserDataREAD_NOTE_SEARCH_DBdefaultButtondefaultButtondefaultButtonuserDataREAD_NOTE_DELETE_DBaA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>x.0!5UL!5UL!4ULuserDatauserDatauserData1-LASTError opening as inputuserData1-LASTuserDatauserDatauserDatauserDatauserDataaA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>x.0NOTES$Filename!5UL!5UL!4ULuserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserData!AS (!UL)!ASuserDatauserDatauserData [W] [K] [KW] [M] [MW] [MK] [MKW]userDatauserDatauserDatauserDataaA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xuserDatauserDatauserDatauserDatamain_windowconf_windowmain_menu_bar main_file_pde main_file_directory_pb main_file_directory_db file_directory_conf_udmain_menu_bar main_file_pde main_file_object_pb main_object_disply_db object_disply_info_udconf_menu_bar conf_conf_pde conf_conf_keyword_pb conf_keyword_disply_db keyword_disply_info_udconf_menu_bar conf_conf_pde conf_conf_marker_pb conf_marker_disply_db marker_disply_info_udconf_menu_bar conf_conf_pde conf_conf_member_pb conf_member_disply_db member_disply_info_udscroll_barsclassesentry_namestopicsreplieskeywordsconferencesobjectsmembersmarkersISO8859-1userDatauserDataDXmfontListLevel1DXmfontListLevel0DXmfontListDefaultDXmindentMarginforegroundbackgroundDEC NOTESSTRINGSTRING!AS!32 !6 !17 !6 !AS!9 !20 !11 !4 !AS!9 !20 !11 !AS!AS !AS!ASuserDatauserDataISO8859-1userDatauserDatauserDataLNM$SYSTEM_TABLE LNM$FILE_DEVSYS$CLUSTER_NODESYS$NODE UCX$INET_HOST 14-DEC-1993,::BG:NOTES NOTES-USER NOTES-CLIENTNOTES-CLIENT-USERNOTES-SERVER-LANLINK NOTES-LOCALNOTES-LOCAL-USER NOTES$SERVERDECNOTES$SERVER_FLAGSNOTES$USER_FLAGS |!DB-!MAAU-!Y4:!H04:!M0:!S0.!C2|!UW.!UW!UL00000?" # P(#P@#6X#6Ep#EZ#Z # ###0$0`$`P0$P H$  `$ x$$@+$@+^$^@c$@c@h%@hi%ij(%js@%sX%p%`%`%%%%&@ &@ @0&@H&p&`&p&,x&, >& >H&HpQ&pQU&U[&[s'sv 'v 8' 0P'0`h'`@'@'''''0(0((P@(PX(p(( ,( ,.(./(/2(27(7;);<()<>8)>CP)C@Gh)@GPa)Pag)gk)kw)w@y)@yPz)Pzz*z(*@*X*@p*@* *  * **p*p+(+@+X+p+ +  + +)+)+++:,:<,<@0,@@AH,@AP`,Pyx,y{,{~,~P,P,@,@--0-H-`X-`p--@-@0-0--p.p`+.`+ t0. tСH.Сx.@.@/./../@ /@P8/PP/h//0 /0 )/)@/@R/Rm/m`0`Ж(0Ж@0p00!0!0@00@S0Ss0s1P1P01H1`1$ x1$ 9 19 W 1W P 1P 1 1 p 2p 0 20 82 P P2P 0 h20 2  2  2 T 2T Pf 2Pf g 3g м (3м X3 ` p3` p 3p + 3+ : 3 : pE 3pE b 4b `u 4`u 04  H4 `4 x4 4 4 p 4p p 4p 0 40 P 5P  5 P. 85P. ; P5C<$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* M"- ; B h5 B R 5R Y 5Y h 5h 0w 50w 0{ 50{ 5 6 (6 @ @6@ MX6MTp6Ti6i0p60p6p6p67707H7 `7 x7p7p$7$272676777:8:: 8:@;88@; PP8 Pth8t8`8`м8м 8 8@8@ 9 (9@9`X9`p9090 9 P9P 9 0 90 p:p!:!A0:AEH:EK`:KVx:VX:X0[:0[]:]c:c`g:`go;o@w ;@wx8;xPxP;Pxzh;z|;|@~;@~~;~p;p;P<P8<P<h<<<<<<==0=H=h===`=`= = =Я>Яp(>pH>`>мx>мP>P>p>pp>p > ?(?P@?PX?p?p?p@?@P?P??P@P@0@`@x@@@p#@p#$@$'A') A),0A,-HA-@/`A@/3xA3p9Ap9`?A`?EAENANPUAPU0[B0[_ B_pc8Bpc@ePB@e`ihB`iplBploBoqBs{B{ЃBЃ@C@ (C HC hC CCCCD(D@DpDDpDp`D`DpEp E@EXEppEppEpEE E E`F`F0F@HF@`F xF `F`FFFG 8GXG@0G0+a !a !a !a *a   "a $a "a  "a  "a !a  #a #a #a 2$a   "a !aM $a6  $a0&a F$a "a !aM $a$ $a  "a  0a )$a #a  "a "a "a "a "a "a "a  "a "a  "a "a "a (a %a L)a $a ^&a  5a  $a #a& "4 #a& #a& $a "aV $a #a $a #a #aq #a #a !au "a' #a $a $a # $a} !a $a "a  "*a +a #a $aA $a/ $7 $a $a $a *aK !- "7 #a. $a' $a #3 #- *a $a %a $0 $a $a %aD K/a #ak .a #a\ "a "a5 #a +a !a6 "a "a| %a $a #a #a $a ,aW $a +a !a #a $a "a $a  $a  #a $a0=$a q0a $a -$a a$a0.$a #a $a $a $a R;a $a $a )$a  ($a $a $a  )$a  $a0v$a ,$a  *$a  "a $a  $a ,$a  $a  ($a  $a  $a $a  ^$a K$a $a  e$a <$a  m$a $a $a $a "a #a( :a/ T$a .$a0$a L%a #aF0$a $a  $a0$a  $a  $a "a .$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ">  /a  3a $a #a T*a  $a $a $ak #a #a #a "ab  &a  $a  %a "a %a &a *%a &a #a "a #a 0&a  H%a Y&a( "a %a &a  %a "a %a  &a @%a  #a &a &a T%a #a &a %a #a "a) (a #- #- #a  $a   $a $a $a #- 'a #a *a $an #a #a %a %ab #a) $a #a# "a_ (a 'a %a  %a #a  "a $ak $an $ak $a $a $a $a "a  #- %an0 )aZ0 )a?0#,0 )a0 )a0 )a0!(0#50%;0#a0#au0 'a{0#a-0#a'0)a00%a-0#a*0%a:0#a'0#a'0%a-0&aK0)a0%a?0.a0*a0 )a0)a0#>0#a90)a0!aG0 -a0%a0$aN0)a?0$a90(aH0$a90&a?0#aE0$a0+a` $a #a1 $ah #a"0#a  "a  !a1 ,+a ,+a +a0"a2  % ( #a !ah "ab #aM #aG #a +a #a $a %a *,a #a #a %'a %aT %a $a %a $a`0 0a0 0a0 1*a0 2/a0 2a0 2*a0 *a0 )aW0 %a*0 )aN0 )aH0#0 #a:0B0#50 )aW0 (a0(aU0%aN0 %ai0 +a0#:0"a/0!a0$a.0"-0!%0"a;0#<0#<0#<0#<0#<0#<0#a40#ad0'a0'a0$aF0 1a #$aP0,+-./aQ0)02134567 8 9 :;<=a3) *!+",#-$)*+,-.5/6)7*8+9>?@ABvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextDNS$RTLC<;;{;p;x ;;;;`ApA;@;;;;p;;; ;; ;:;:; ;м; P;`;t;`+;` ;0 ;y;w;; ;P ; t;С;;R ;) ;@ ;m ;V;`g;;@;P;0 ; ;;/;@; ; ; ;Ж ;! ;0@ ;S ;s ; ;P ; ; ;$ ;9 ;W ; ;g ; ;p;Pf ; ;` ; ;p ; ; ;0 ;0[;X;c;];o;P ;??AAAA  ?;;AAAA; ,4XLP;;;;T`dhx!l "####%$&' x$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 5>"O ;; ,(84D@;;;;L ;;;''''$+(+0,4,<-@- ;;l?; |??;;$,08";A;;X-d-h-;//;; ,4444$4(4 44484<46|6H5D599T6P6667788::04\-H-L-P-T-l-x.t.32////0011 44`-;<D;HP;;;;;;;;;T\AA''''''(**;;;;;;;;;`hd?ltA;AxABBBA (,48@DLN LB;\ |BlBtBBA,B0B; ;P; ;;;Я;>;Hx8h &&P;?;'@@&@@''@@;'L'@('@8'd'p'; '';'@'@;;;;@;dxI';;|II''&;&;&&;'&pI;;;;`IrhI;;(;hB;B;;;;h;;;xP;;;;$;;0C;`5`pCUģM`K` /`"1`3`=`?`A`p `%`#`/I`p` %`#` I`P `%`#`%I``%`#`I`0`*%`#`I`P`9%`#`I`0`J%`#`+I``[%`#`9I`0`ek%`#`&I`P!`x%` #`,I`&`%` #` I`+`T#%` #`I`,`IS#%` #`I`,`e````'`9`;`C```bE`0@NOTES$SHARELIBOTSLIBRTLDECW$MAILSHR12DDIF$VIEWSHR12DECW$MRMLIBSHR12DECW$DXMLIBSHR12DECW$XMLIBSHR12DECW$XLIBSHRDECW$XTLIBSHRR5DECC$SHRSYS$BASE_IMAGESYS$PUBLIC_VECTORSDECW$DWTLIBSHRXNL$SHR12IMG$SHRLIB12XIE$SHRLIBDECW$TERMINALSHR125 p4 p3 p1 p  pE$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* K8"q 3 p4 pp p/` p-P p,@ p0 p  p p p+ p.x p&h pX pH p*8 p( p p p% p# p$ p p" p! p p  pH p8 p  p` pP p@ p ( p1 p p  p p) p( pp p p2A p(= p4 p#4 p& " p* ppp p` ppHC puA p90A p A p @ pL@ pB@ pG@ pM@pM? px?pA; p}; p: p6 p3 pv2 p2 p" pyP p8 p p p p p2 pw pxX p( p  pN p0 p pz p{H p p;@ pA$ px- p h- pH- px, p"X, p!0, p  , p pX p( p p pQ= p>= pC= p1p= p2P= p)@= p4= p;= p:< p3< p=< pK< p< p0< p/; pk8; p9 p`9 p(7 p7 p7 p6 p6 p3 p3 pP3 p1 p1 prx1 ph1 pp(1 pq0 pW 0 pX# p# pP# po@# pnP p p@ p p @pm pPC pB ptp p>p> p>p= p= p`= p0= p(=p< p < p< p< p; p; pE; pA: p=: p<: p;: p?: p9: p7x: pBH: p8: p(: p6 ph, pH, pX+ p + p+ p+ p* p* p p p p px ph pX p p p p p p p3p p@ p> p. p p pUpC p`C pC pC pB pB pB p B p`> p< px< p9`< paP< p@< pH9 p89 p=(9 p9 pl8 p% p$ p@ p p' p py0 p{  p p` p P p p] pEp pf` p3@ p10 p p? pV Cp? p> p`> p > p= p p; p9 p9 pK* pV@p0 p  pr pV p pP ph pZ p pH p/ p pO pp p0 p p p p p p pa$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ֡" p p pQ p  p p p pp p0@ p p pC pn0Bp@> p0>pO0< pk; p; pq; pt; p B p8B pA p#A pA pA phA pp@ p6P@ p@ p* p/" p( pt pn pv pm puX p~8 p p\ pT pbH p88 pD( p p18 p<0o8oPoXo`oho p{opooo o@o@o o@8om@@mL@m\P@mP@mlh@mh@m|p@mAmAmAm AmAm AmAmAm Am $Am(Am:,Am0Am0(:4Am(8AmH@ m4D?m5P?mhX?ml`?mph?mtp?mxx?m|?m?m(o?0o?8oA@o AHoAPoAXo `o ho$?ooo@AoHAoPAoXAoooo oo, o4 o o o oT( oL0 oPX o0 oT o` od oh ox! ol o" o# o# o# o# o% o$ o& o' o o( o0 o8 o@ oH oP oX o` oh op ox o o o o o o o o( o( o4 o4 o@ o@ o o o8 oL p o'x o' o' o' o$+ o$+ o0, o0, o<- o<- o o o  o ol? o o ( o|?0 o|?X o$` o,h o0p o8x o" o oA oX- od- oh- o0 o/ o/ ( o 0 o,48 o4@ o4H o4P o$4X o(4` o 4h o44p o84x o<4 o|6 o|6 oD5 oD5 o9 o9 oP6 oP6 o6 o6 o7 o7 o8 o8 o: o:o04o\-oH-oL- oP-(oT-0ol-8ot.@ot.Ho2Po2Xo/`o/ho/po/xo0o0o1o1o4o4o`-o<oDo0oHoPoTo\oAoAo'o'o'o'o'o'o(o*$ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ‘" nDCdC]RcEIXRIBYH_Db@$VyHt/ iOue5sy&ױ$9[*nelsur1T> rsYAuaTn_EX'MCTEB_6 P OTEf$YZT 4Ll"B $ ۅFILHXTr@C%Gv`xYS$O@AcI:.@G|@RNT_͜OW.lHS|Cp4BLEAD%LGQRΦa[ #P{@888-uICCH:C_Ef XN^[ypPSy srDAua}.d`w_DD9PiOTo #@ngz888-Bh:rAua{, D<zkyceLBacα&~ataWxldzs^IJrinpt ]{xϥ&sl Noe PuiTQ_Q?ìymDnNT[e%BjYefaýYBTuoBVItto0EgaӪ"rICserHAa N qbETEpXL Wh10-Ϣl;$B{TDó߀#.OzN%_4?>)O.Z[?bKd"@jh{OiХ6H4Z!?Ax8q)O5D_!LI%?$Wg!NT#Xfz66;AV+:xy`{^|&x$-6 %?P2dU0 PtEڱ#U kT{ reԥsr` ~rzDL< AFmZsy8iܸy>a Fu \ssCEp A-t[dPzʷѨwaa/ێnSdrb@`#-xGt ?[dhG~3M@@}U!!O]"A >?+x*LAlA#A\Nt6%龰:4ƪ.e>ba8EOK+;B ?){HkNA^m@{1_[#  `N$569iR@8|"yYN+" #'T>ObљWN{0 PBڱ# &fz q16;AxWpy`{^x') 6 M#Pj ea?TLEMnoI{Gt y@!t[d+)zѤa{aa_0Sdrd`#_{Gt Hd9[d^ѢÌpaajUSdr_d(mGt )[dvwѧx&XaaT)[SdrK_%mϹGt diR,2ᝌ$QksrYe`  [NuBUe3xv(&24;U [T!m\ F<\$i}@SmWRDIuC! JrAuan Vqh&Ar(嵲Q[ x0Sɠ˟BA߿{:234SEⳕY6# K|N'S4A?N匿3J.]E 3bl͎"5?2@_h{(37Х5r`Vս0t W4^8v&?AH O+"`l\(Y!œ$qSs+V{Ia7@E fj0XHhrzw~m@Q*)6 ?@93dm!)ШA P80>H۸z `9t{e~`o\"QaD)Gser4~aPd4ah/ GRn⇗ R#sn;]n>NAmaUole_*xUj/> E6J3הic j;^q z^ c!&o΅@<%gܯ*m̒}tbҷ\s^Rm>_W_l㇈U_s'*L@G|j30gocZ_"dgobu֐eD՞SNZ|P/bP]N=%|1/'is2OqM!iyw¸a'n.oHOɡ}/َ` "_z Fa9&%=\f?G$"4HT.^Ie_G`u֣]\obQiU4g!N#dry[\>74J;zEzW{*Nq0H1 ؑ'P-;#[ކCGb+}76*^H)gKR"e}o9 7(  %6N|p>$&v0.o=C&CN76sh7yp< $,f|Y,"nY=:m8l[VqR-[n@_, 77&%@6}pTy[7@]:$1W\i 5qZ5Xmf^A1Ze~̰yPR;CN/-"2ܞ ^1eTCx262EJ̳IeK=0dV4%!@qT0*)&AE?=% w5eWtGTs"m{P [C+NXc8=/wWtڂ*Rk*[XzP30r_ ~r[C%;LeW htt qsZn]7h qQWg :mםJwIX,X=Ewnb'j% lO*65~][)QfnҭW \n*H`B_*TuM8}D}n 3D,<4XW{/oZpʘjx"T FAEX+y{(1StH2} ZRq OL"=s$x-5INtN:l Peb®ނɭ+&7&_$$zw`xv8F2jK LŎ^(K#qnnTO<ç9<S.ah48wFOcC&(9~y6@~Ge|nS=cVcA-$~V\め!uwz FA9/Jhs94<^>N.^"!#c>U2זz %80*7x LgS`;Dk l'1JT.!yN< !4>/0O*VWJKGTF!O0t_CWe~lz('!2g/DeRHSMwUa5GTFgA!5gr(TMPx/#eC98'igԥoWbCURywCdrc,jb&AoddL⠦L$R$$xmqS,_BORη!bzJJ&AX=Ma(DjOqcono|e0) Wucl@wm0O8jX,LOTE+#,iT';wQu=v*򒈵*nS`u^UmSEBrwlCO=^wIxk P4aFET/!lB[yu$d#yOfѡ>*ae>uUC m\OZUe3Zf]dإO3itBusiUKu0[ |3Od50gqaM\jAEAZsGqtaKlhoO YhCִ%VmZ93%9-$"[xc -bm8bx귁(c?N]gtyon`ڱVL$]Gl4iH8d Znϑf nl uh*ce x#EgGt {N%8DKgdx%s qta8G \,HgA`^LOp9BlA$ln2Lp'Z7Y`C$"MդbPҡ߻_.p#"BEZQAUCLPC$LAgEtDChRX|zhBlBMGVJx0Ux{f5O"BSp"HfL(X: Mm )|eMt̼CR7~ƘOʂͬaaMnmC? cnm&TyDaL 1"-~"BFn w-9!Li| suuag5atiF+(b׫1oEVPFA|^WF#PuS5.ƖQ2!p!^?r7*Zx%kTc;u _ NF^DQkUY>YeOtwO0%bHL_>$p=7qqt !pc`HjgVl-AG31S3[MQ=j?[O"E4^w$AXXQa#!1]}^OmbV3n!yU mџ-J=q˧{OZwdZ#=`td:mgnp df55wL|N$(pd9MQuPڙduHaVF!ׯwAvdRfU2_IT90ztDw]z$<9e /YQBMI̷SB Z)E۝u+zo )tPUjgd3QX-sWt5D2p#dT#s)jĞH # A7J$ ataU"EdJTO[6Uw>z@ctAuaPpq_SA2R#YdCME3CDIT>'WY@`~/D8ԇXT=fN-)'eAvFhOAESagS2sXJNtPaSfTg.LIS. #+M\(ݝ!$cXda Vf]pwED_NTDAIvzSqQ3e]^*eT)$"YNotegobAHH+-*`99jesrT-# CIQ1LIB 1n7ay$)>QzZ2(Q5$R.s`$MRxIT4-_ޜN 47,LjbvEvJUot{ߘfe? >%0Up>o>8>o P>oX>oPp>ox>o >o>o>o>o>Я>o>?o?o ?oH(?ox0?o8?o@?oH?o8P?ohX?o`?oh?o &p?ol &?P?o??o&?o@?o@?oT&?o@?o@?o&?ot&?o@?o@@o|&@o& @o(@(@o&0@o@8@o&@@o&H@o&`@ol&h@op&@o&@o$@@o &@o @@@o@Ao`IAo &@Ao`IHAo `IPAoD&XAoL&`Ao&xAo&Ao$&Ao8&AoP&AoD&Ao`IBo`IBorBo`IdIm`&lImd&tImh&HBoPBoXBo`Bo(hBBohBBBoBBoP(Co(P0CoP8CoP@CoHPHCo8Pxm(P|mPmHPmPCCoCCoCfIPF/VMSNOTES$DWSHAREjIPF/VMSNOTES$DWSHARE gIPF/VMSDWNOTES V2.6eIPF/VMSpCUģhIPF/VMSLinker T02-17kIPF/VMSpCUģlIPF/VMSpCUģ Ho($ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* ^ NOTES$DWNOTES.shstrtab.strtab.note$LINKER RELOCATABLE_SYMBOL.dynstr.symtab.vms_symbol_vector6W 40P4p<20D`*[NOTES.TEMPKIT]NOTES$HELP.HLB;1+,$b./J 4- 0123 KPWO567Fģ89GJHJ% Librarian T09-202ݴģ=9 333#p&5 i.LASTAADDEANSWERIATTACHKBACKTChoosing_an_EditorPCLOSE^Command_SummaryCONTINUEWCREATEZDELETE] DIRECTORY`EVEaEXITdEXTRACTfFORWARDhHELPjInformation_CommandsrKeypadzKeyword_Commands3LAST Logical_NameslMARKModerator_CommandsmMODIFYNew_UsertNEXT*Notebook_Commands{NOTESOPEN-Other_UtilitiesPRINTREAD0 Reading_Notes2 Release_NotesREPLYSAVE5SEARCHSELECT6SEND;SET0SHOWCSPAWNsSpecifying_Notes7Subprocess_Commands9Terms_and_ConceptsHTOPICNTPURUPDATE<WPSXWRITEREADWRITE SETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSo3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTP SAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSqA3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSEND ESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSx3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLY #&?$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1p" ASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS03 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOT@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSiGy3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.L@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS(xL3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTR @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSs=M3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS (3 ANKAN ADDANSWERATTACHBACKCLOS@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS k3 ANKAN ADD @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla/UUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaand_ConceptsWPSԿ53 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS,bprocess_CommandsTerms_and_ConceptsWPSƸ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_ cu$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1+"!@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla! Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing totesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS 153 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSu! Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS(f3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_N"CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSA@3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities&@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla& Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS&ogical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSy:ݴģ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_C'eypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSN*1ģ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands L*@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callat^&ݴģ1 Notebook_Commandsd:The following commands are used to maintain your Notebook.Basic Notebook Commands:D CLOSE OPEN SET (or MODIFY) PROFILE UPDATETo Get Directories:I: DIRECTORY/CONFERENCES DIRECTORY/NOTEBOOK (or /ENTRIES)To Maintain Entries:B ADD ENTRY DELETE ENTRY MODIFY (or SET) ENTRY7 SELECT SHOW CLASSES SHOW ENTRY To Maintain Markers:8 ADD MARKER (or MARK) DELETE, Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t(yInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSE3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsK<'ݴģ1 Other_Utilitiesd=These commands can be used in DEC Notes to access VMS utility functions.= EVE FORWARD SEND TPUTwwMODIFY) PROFILE UPDATETo Get Directories:I: DIRECTORY/CONFERENCES DIRECTORY/NOTEBOOK (or /ENTRIES)To Maintain Entries:B ADD ENTRY DELETE ENTRY MODIFY (or SET) ENTRY7 SELECT SHOW CLASSES SHOW ENTRY To Maintain Markers:8 ADD MARKER (or MARK) DELETE/@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla,an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSH:3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_Summar $ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"0 'ݴģ1 Reading_NoteseDThese commands are used to move through a conference. Most of theseDcommands may also be accessed directly from the keypad. For help onDthe keypad, type KEYPAD, or leave help and press the "Help" or "PF2"key on your keyboard.T7 BACK BACK NOTE BACK REPLY 2 BACK TOPIC LAST .LAST7 NEXT NEXT NOTE NEXT REPLYO2 NEXT TOPIC NEXT UNSEEN TOPICww) DELETE2 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tr(ݴģ1 Release_Notese@You can print the release notes for this version of DEC Notes by3typing the following command at the DCL prompt ($): - $ PRINT SYS$HELP:NOTES$025.RELEASE_NOTES ww help and press the "Help" or "PF2"key on your keyboard.T7 BACK BACK NOTE BACK REPLY 2 BACK TOPIC LAST .LAST7 NEXT NEXT NOTE NEXT REPLYO2 NEXT TOPIC NEXT UNSEEN TOPICww) DELETEܴģ1 LAST*Displays the last topic in the conference. Format: LASTn2 Command_Description B The LAST command displays the last topic in the conference. ThisB command is useful when you cannot remember the number of the last topic in the conference. 2 Examples Notes> LAST- Displays the last topic in the conference.oww_DescriptionaB The HELP command displays on your terminal a listing of DEC NotesB commands for which online HELP is available. You c5@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaSܴģ1 SEARCHGSearches a range of notes or the entire conference for notes containingcthe specified string.n Format: SEARCH ["string"]CThe square brackets [] indicate that the enclosed item is optional. 2 ParametersstringD Specifies the word or phrase for which to search. You must enclose the string in quotation marks.f2 Command_DescriptionoC The SEARCH command interactively searches through all notes in thesD specified range of notes (or the entire cone;ܴģ1 SENDDSends a mail message to one or more users without leaving DEC Notes. Format: SEND [file-spec [to-list]]tCThe square brackets [] indicate that the enclosed item is optional.m 2 Parameters file-specL. Specifies a file to send as the mail message.to-listC An addressee, or a list of addressees separated by commas. If youWA use the optional to-list parameter, you must precede it with the file-spec parameter. 2 Command_DescriptionsB The SEND  +ݴģ1 Subprocess_Commandsn3These commands are used to manipulate a subprocess. ATTACH SPAWNnwwte-range" refers to a range of notes. Any commandHGthat accepts a note-ID or note-range can only be used when a conference is open.HTo specify notes in a command line, you can use the following notations:$ Notations for Specifying Note-IDsH ---------------------------------------------------------------------A Notation Specification 9 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t nH+ݴģ1 Terms_and_ConceptsEDEC Notes is a computer-mediated conferencing system. It allows many ?people to communicate at their convenience, usually on a singleHGsubject or issue. In DEC Notes, a private meeting to discuss marketing Dstrategy, an electronic bulletin board to announce course offerings,=or a public forum on environmental issues are all examples of- CONFERENCES.FA conference is organized into any number of TOPICS, each of which canChave any number of REPLIES. A;@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaOLܴģ1 SETDFChanges or sets various information for classes, conferences, entries,3keywords, members, moderators, notes, and profiles.h2 CLASSb7Allows you to make a specified class the current class. Format: SET CLASS class-namel 3 Parameters class-nameB Specifies the name of the class you want to be the current class.3 Command_Descriptione? The SET CLASS command allows you to make a specified class thefE current class. Once you specify a class with the SETc2ݴģ1 WPSmA In addition to the EVE and EDT keypads, DEC Notes provides a WPS ; keypad. This is enabled by entering the DEC Notes command  SET PROFILE /EDITOR=WPS.c2 KEYPAD 3 ADVANCE, Keypad 0eD Advances the cursor one character and sets the current direction toC advance for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT. SEARCH,r= REPLACE and CONT. SEARCH AND SELECT keys. Advance means thenA movement will occur in the direction toward the end of the file,I! tha\ģ1 WPSmA In addition to the EVE and EDT keypads, DEC Notes provides a WPS ; keypad. This is enabled by entering the DEC Notes command  SET PROFILE /EDITOR=WPS.c2 KEYPAD 3 ADVANCE, Keypad 0eD Advances the cursor one character and sets the current direction toC advance for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT. SEARCH,r= REPLACE and CONT. SEARCH AND SELECT keys. Advance means thenA movement will occur in the direction toward the end of the file,I! thasing the SELECT (KP7) key.A Move the pointer forward with the KP2 key, and backward with ther KP5 key.r 3 Examples Notes> SHOW CLASSES3 Shows a listing of class names in your Notebook.s 2 CONFERENCE/Shows information about the current conference.l Format: SHOW CONFERENCE3 Command_DescriptionsB The SHOW CONFERENCE command shows the following information about the current conference:D o The name of the last person to issue the SET MODERATOR command3 o Any @@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla2$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"A^R=ܴģ1 ADDm<Adds new elements to DEC Notes conferences or your Notebook.2 ENTRYDAdds a new entry for a conference to your Notebook. This allows youCto conveniently access a conference and track the discussion in it.e Format: ADD ENTRY entry-namer 3 Parameters entry-nameB Specifies the entry name for a conference you wish to add to your Notebook.D If you specify a conference name (or notefile specification) as theD parameter with the ADD ENTRY command, DECC Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tݴģ1 SPAWNCreates a subprocess.r Format: SPAWN [command-string]KCThe square brackets [] indicate that the enclosed item is optional. 2 Parameterscommand-string? Specifies a DCL command to be performed when the subprocess is active.2 Command_DescriptionE( The SPAWN command creates a subprocess. 2 Examples Notes> SPAWNgB Creates a subprocess. You can issue DCL commands until you log9 out of the subprocess or attach to the parent process.  @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaXhܴģ1 ANSWER-Enters a reply to the current topic or reply.o Format: ANSWER [file-spec]fCThe square brackets [] indicate that the enclosed item is optional.e 2 Parameters file-spec A Specifies a file containing text you want to use for your reply. 2 Command_Description? The ANSWER command invokes EVE or the editor specified in youroC profile to allow you to add a reply to the current discussion. IfiB you have a text file you want to use for your reply, specG@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaCݴģ1 TOPIC.Displays the topic for the current discussion. Format: TOPIC2 Command_DescriptiondA The TOPIC command displays the topic for the current discussion.tC The topic is note n.0, where n is a number assigned by the system.i 2 Examples Notes> 13.7 Notes> TOPICc= Displays the topic (note 13.0) for the current discussion. wwtes a subprocess. You can issue DCL commands until you log9 out of the subprocess or attach to the parent process. Kp1nܴģ1 ATTACH7Attaches to the parent process or specified subprocess.r Format: ATTACH [process-name]CThe square brackets [] indicate that the enclosed item is optional.e 2 Parameters process-name? Specifies the name of the process to which you want to attach._2 Command_DescriptionE> The ATTACH command lets you attach to the parent process or aD specified subprocess. This command takes one optional parameter, aB process name. If no process name is specified,@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaMqܴģ1 BACK>Displays the previous topic, note, or reply to the one you arecurrently reading. Format: BACK 2 Command_Descriptionc< The BACK command displays the previous reply in the current> discussion. If you are reading the first reply, this command displays the current topic.@ You cannot use the BACK command to move past the current topic.A If you are reading a topic and issue the BACK command, DEC Notes,( displays the message "No more replies". 2 ExamplM Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tN@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaݴģ1 TPUI:Executes the rest of the command line as a VAXTPU command. Format: TPU [command-string]CThe square brackets [] indicate that the enclosed item is optional.e 2 Parameterscommand-string5 Specifies a VAXTPU command that you want to execute.s2 Command_DescriptionIB The TPU command executes the rest of the command line as a VAXTPUC command. After the TPU command executes, you return to DEC Notes.o 2 Examples' Notes> TPU MESSAGE ("HELLO THERE") @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaA uܴģ1 CLOSE%Closes the currently open conference.e Format: CLOSE2 Command_DescriptionrD The CLOSE command closes the currently open conference, and returns you to your Notebook.A You can issue the OPEN command (instead of the CLOSE command) tomA close the current conference automatically, without returning toa: your Notebook, before the specified conference is opened.D You can use the F10 key or the control key sequence CTRL/Z to issue this command. 2 Ex@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaT$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1C"Rݴģ1 UPDATEBQueries the specified entry to determine whether it contains notesyou have not yet seen. Format: UPDATE [entry-name]CThe square brackets [] indicate that the enclosed item is optional. 2 Parameters entry-nameA Specifies an entry you want to update. If you do not specify anaD entry, all entries in the current (or specified) class are updated.0 If you issue the UPDATE command and receive theE error message "Your software license does not allowT@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla .ݴģ1 Choosing_an_EditorGIn DEC Notes, you always use an editor of your choice to compose notes. DIf you do not explicitly choose an editor, the EVE editor built intoDEC Notes is used.EIf "your favorite editor" is something other than EVE, you should usefESET PROFILE/EDITOR to specify your preferred editor. If you normallymGdon't use any editor at all, EVE is easy to learn and use for a novice;aFhowever, please read about using EVE in Appendix A in the Guide to DECNotes.@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaW Format: READ/MARKER marker-name 3 Parameters marker-namet< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifiedpE marker name. Since marker names must be unique within a conference,c/ READ/MARKER specifies a single topic or reply.rE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERC command to read a marker that is used in more than one conference.rF Issuing tHccvܴģ1 CREATE2Creates a conference or a keyword in a conference.>If you wish to enter a new note in an existing conference, usethe WRITE or REPLY commands. 2 CONFERENCE3Creates a new conference with the name you specify.o Format:$ CREATE CONFERENCE notefile-spec 3 Parameters notefile-specl? Specifies the conference that you want to create. To create aeC conference on a remote node, you must specify the node name in thenB specification. The default device anydݴģ1 WRITEE#Adds a new topic to the conference.r Format: WRITE [file-spec]CThe square brackets [] indicate that the enclosed item is optional.b 2 Parameters file-spect@ Specifies a VMS text file you want to include in the NOTES$EDIT# buffer when you invoke the editor.o2 Command_DescriptioneE The WRITE command invokes EVE or the editor named in your profile soIB you can enter a new topic. You can be positioned anywhere in theF conference when you issue the@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla:wܴģ1 DELETEBDeletes various things. The default is to delete the note you arecurrently reading.2 ENTRYs?Deletes an entry from your Notebook from the specified class or all classes. Format: DELETE ENTRY entry-name 3 Parameters entry-nameB Names the entry you want to delete. If the entry is in more thanC one class, it is deleted from the current class unless you specifymB another class with the /CLASS qualifier. To delete an entry from all classes, use \@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.oBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT as.,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)LDIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla6ܴģ 1 DIRECTORYe>Displays a directory listing of the currently open conference. Format: DIRECTORY [note-range]tCThe square brackets [] indicate that the enclosed item is optional.F 2 Parameters note-rangeE Specifies a range of notes. If no range is specified, the directoryl% is centered around the current note.e2 Command_DescriptionrF The DIRECTORY command displays a directory of the current conference.E If no conference is open, DIRECTORY lists the entries {Oݴģ1 Command_SummarytEIf you are new to DEC Notes, type New_User for examples of how to usetGGetting Started commands, type Terms_and_Concepts for an explanation ofoHyour Notebook and other DEC Notes terms and concepts, or type a question.mark (?) for a list of all DEC Notes commands.Getting Started Commands:f; ADD ENTRY CLOSE DIRECTORYr6 EXIT EXTRACT HELP7 NOTES (DCL command) OPEN `@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla<ܴģ1 EVEEInvokes the EVE editor.o Format: EVE [eve-command]CThe square brackets [] indicate that the enclosed item is optional.t 2 Parameters eve-commando@ Names an EVE command. See Appendix A in the Guide to DEC Notes< for a complete listing of EVE commands and their functions.2 Command_DescriptionnF The EVE command invokes the EVE editor and processes the remainder ofA the line (if provided) as an EVE command. When you exit the EVEOE editor, you retur#ܴģ1 EXIT/Exits from the current conference or DEC Notes.E Format: EXITa2 Command_Description C If you are in a conference, the EXIT command closes the conferenceND and returns you to your Notebook. If you are in your Notebook, theD EXIT command exits from DEC Notes and returns you to the DCL level.C If you used the /WAIT qualifier with the PRINT command during thisa< session, the notes pending in the print queue are released.! You can also use CTRL/Z to exc Format: READ/MARKER marker-name 3 Parameters marker-namet< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifiedpE marker name. Since marker names must be unique within a conference,c/ READ/MARKER specifies a single topic or reply.rE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERC command to read a marker that is used in more than one conference.rF Issuing t_^$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1s"cd@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaܴģ 1 EXTRACTx@Creates a text file in your current default directory containing%the specified note or range of notes.o Format:% EXTRACT output-file [note-range]eCThe square brackets [] indicate that the enclosed item is optional., 2 Parameters output-filerA Specifies the output file in which to store the specified notes.A The default file type is .TXT.n note-rangeB Specifies the range of notes to be extracted. The default is the= note you are currently f@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.oBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT as.,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)LDIf you normally use some other calla0-ܴģ 1 FORWARDx>Forwards the note you are currently reading using the VMS MailUtility (MAIL). Format: FORWARD [to-list]2 Command_DescriptioniB The FORWARD command forwards a copy of the note you are currentlyB reading to one or more addressees by the VMS Mail Utility (MAIL).: You can specify a single addressee, a list of addressees / (separated by commas), or a distribution list.sF If you want to send a note to all members of a restricted conference,> use th@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaжܴģ1 HELPBDisplays on your terminal the list of DEC Notes commands for whichBonline HELP is available, or displays online HELP for a particularcommand. Format: HELP [command] CThe square brackets [] indicate that the enclosed item is optional.b 2 Parameterscommand(2 Names a DEC Notes command on which you want help.2 Command_DescriptionaB The HELP command displays on your terminal a listing of DEC NotesB commands for which online HELP is available. You c#$ܴģ1 .LAST:Displays the last reply to the current or specified topic. Format: .LAST2 Command_DescriptionnF The .LAST command displays the last reply to the current topic or theF specified topic. This command is useful when you do not remember the number of the last reply.E You can issue the command LAST.LAST to display the last reply to the7 last topic (that is, the last note) in the conference.D 2 Examples Notes> .LASTn0 Displays the last reply Y4ݴģ1 Information_CommandsIThese commands are used to display information about conferences, errors,n8keywords, members, moderators, notes, and user profiles.? SHOW CONFERENCE SHOW ERROR SHOW KEYWORDSt; SHOW MEMBER SHOW MODERATOR SHOW NOTE.& SHOW PROFILE SHOW VERSIONww CLOSE DIRECTORYr6 EXIT EXTRACT HELP7 NOTES (DCL command) OPEN l@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla ܴģ1 MARK9Marks the current or specified note in the current entry.i Format: MARK marker-name [note-ID]tCThe square brackets [] indicate that the enclosed item is optional.r 2 Parameters marker-nameiC Specifies the name of the marker. If it consists of more than onee: word separated by a space, enclose it in quotation marks.note-IDt@ Specifies a single topic or reply. The default is the topic or! reply you are currently reading.D2 Command_Descriptioܴģ1 MODIFYGChanges or sets various information for conferences, entries, keywords,members, notes, and profiles.D 2 CONFERENCE@Changes or sets specific information for an existing conference. Format: MODIFY CONFERENCE3 Command_DescriptioniA Use the MODIFY CONFERENCE command to change or set the followingt( information for an existing conference:8 o The title, which appears in the conference headingC o The notice, which appears beneath the confereno Format: READ/MARKER marker-name 3 Parameters marker-namee< Names the marker associated with the note you want to read.3 Command_DescriptioneA The READ/MARKER command displays the note that has the specifiedsE marker name. Since marker names must be unique within a conference,u/ READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKERoC command to read a marker that is used in more than one conference.sF Issuing tp@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.oBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT as.,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)LDIf you normally use some other calla@ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing ts@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaȦݴģ1 Keypad 2 BACK_REPLY Keypad 1C BACK REPLY displays the previous reply in the current discussion.r7 You cannot use BACK REPLY if you are reading a topic.HA When viewing a directory of entries in your Notebook, KP1 movesM@ the pointer (>) backward to the previous entry with a non-zero Unseen count.W 2 BACK_TOPIC Keypad 5; BACK TOPIC displays the previous topic in the conference. C When viewing a list of items, KP5 moves the pointer (>) backward. 2 CO l(ݴģ1 Specifying_NotesDIn command formats, the parameter "note-ID" refers to a single topicCor reply, and "note-range" refers to a range of notes. Any commandHGthat accepts a note-ID or note-range can only be used when a conference is open.HTo specify notes in a command line, you can use the following notations:$ Notations for Specifying Note-IDsH ---------------------------------------------------------------------A Notation Specification e-$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;10"t7ܴģ1 NEXTDisplays the next reply. Format: NEXTe2 Command_DescriptionC The NEXT command displays the next reply. If there are no furtherf5 replies, the message "No more replies" is displayed.: 2 Examples Notes> NEXTF Displays the next reply to the current topic. If you are currentlyF reading the last reply, the message "No more replies" is displayed.2 NOTE>Displays the note following the one you are currently reading. Format: NEXT E Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tw@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaz@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other callazD Specifies that topics and all replies in the specified range are to be extracted./APPENDF Appends the extracted notes to the output file. If the file does not exist, it is created./AUTHOR=usernameE Extracts only notes entered by the specified user. If you include aD node name with the user name, only notes entered by the author from that node are extracted./BEFORE[=date-time]< Extracts only notes entered before the specified date-time.< The date-time can be any vaݴģ1 Keyword_Commands=These commands are used to maintain keywords for conferences. ; ADD KEYWORD CREATE KEYWORD DELETE KEYWORDe3 DIRECTORY/KEYWORD MODIFY KEYWORD SELECTn* SHOW KEYWORDS SHOW NOTE/KEYWORDSww (>) backward to the previous entry with a non-zero Unseen count.W 2 BACK_TOPIC Keypad 5; BACK TOPIC displays the previous topic in the conference. C When viewing a list of items, KP5 moves the pointer (>) backward. 2 CO@ܴģ1 NOTESEDEC Notes is a computer-mediated conferencing system. It allows manytFpeople to communicate in the system at their convenience, usually on aHsingle subject or issue. It provides a permanent record of a discussion?(conference) by recording topics and any replies to the topics.. Format: $ NOTES or! $ NOTES/INTERFACE=DECWINDOWS" orH $ NOTES/INTERFACE=CHARACTER_CELL [qualifier] [entry-name [note-ID]]CThe square brackets []} Format: READ/MARKER marker-name 3 Parameters marker-nameo< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifiedNE marker name. Since marker names must be unique within a conference,t/ READ/MARKER specifies a single topic or reply.nE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERSC command to read a marker that is used in more than one conference.lF Issuing t~ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaR2ܴģ1 OPEN$Opens a conference in your Notebook. Format: OPEN entry-name [note-ID] 2 Parameters entry-nameB Specifies the name of the Notebook entry to open. The entry nameC can be abbreviated to the fewest characters that uniquely identifyi the entry.pnote-ID ? Specifies a note to be displayed on your screen as soon as theI/ conference opens. This parameter is optional.I2 Command_Descriptionq= The OPEN command opens the entry you specify and option@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing txq ݴģ1 Logical_Namesn8The following are the logical names that DEC Notes uses:Logical Name DefinitionJNOTES$LIBRARY Directory for storing notefiles. Notefiles are openedM with a default file specification of NOTES$LIBRARY:.NOTE. >NOTES$NOTEBOOK Your Notebook is opened with the file nameH NOTES$NOTEBOOK, with a default file specification of$ SYS$LOGIN:.NOTE.JNOTES$SECTION The name of the VA@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other calla/$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1J"@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaܴģ1 PRINT,Prints the specified note or range of notes. Format: PRINT [note-range] CThe square brackets [] indicate that the enclosed item is optional.o 2 Parameters note-rangeE Specifies a range of notes to be printed. If no range is specified,t> the default is the current note. If a selection qualifier is0 specified, the default is to search all topics.2 Command_Description> The PRINT command prints the current note or, optionally, the? specified ran< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t"ܴģ1 READFDisplays the specified note. You can also simply enter a note-ID; theREAD command is implied. Formats:  [READ] note-IDcCThe square brackets [] indicate that the enclosed item is optional.e 2 Parametersnote-ID.3 Specifies a single topic or reply to be displayed.n2 Command_Description D The READ command displays the topic or reply you specify. When youF respond to the Notes> prompt with only a note-ID, the READ command is implied.sF To disp@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla/SELF/NOSELFG Specifies that a copy of the note you are currently reading be sent orF not be sent to yourself, in addition to any other recipients. If youD do not specify this qualifier, DEC Notes uses the COPY_SELF setting from your MAIL profile./SUBJECT="string" /NOSUBJECT? Causes the note you are currently reading to be forwarded withE the subject you specify or with no subject. If you use the /SUBJECTH qualifier, you must supply a subject (a string that must be enclose Format: READ/MARKER marker-name 3 Parameters marker-nameh< Names the marker associated with the note you want to read.3 Command_DescriptionDA The READ/MARKER command displays the note that has the specifiedvE marker name. Since marker names must be unique within a conference,n/ READ/MARKER specifies a single topic or reply.wE You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference.eF Issuing t Oq!ݴģ1 Moderator_Commands@These commands are used by the moderator to manage a conference.2 ADD MEMBER CREATE CONFERENCE/ CREATE KEYWORD DELETE KEYWORD , DELETE MEMBER DELETE NOTE7 MODIFY (or SET) KEYWORD MODIFY (or SET) MEMBERr2 SET (or MODIFY) CONFERENCE SET [NO]MODERATOR SET (or MODIFY) NOTEwwa default file specification of$ SYS$LOGIN:.NOTE.JNOTES$SECTION The name of the VAܴģ1 REPLY-Enters a reply to the current topic or reply.l Format: REPLY [file-spec]CThe square brackets [] indicate that the enclosed item is optional. 2 Parameters file-specoA Specifies a file containing text you want to use for your reply. 2 Command_DescriptionsF The REPLY command invokes EVE or the editor specified in your profileF to allow you to add a reply to the current discussion. If you have aC text file you want to use for your reply, specify t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaݑ$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"9ܴģ1 SAVEDCreates a text file in your current default directory containing the!specified note or range of notes.b Format:" SAVE output-file [note-range]CThe square brackets [] indicate that the enclosed item is optional. 2 Parameters output-file A Names the output file in which to save the specified notes. Ther default file type is .TXT.t note-rangeC Specifies the range of notes to be saved. The default is the notewC you are currently reading. If a @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEEN Marks the saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. Thee< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isI /SINCE=TODAY./TITLE="string"u; Saves notes having the specified string in the note title.e* Surround the string with quotation marks.!ݴģ 1 New_UserBFirst add a conference to your Notebook, then open the conference.FTo see a listing of the conferences that are available on your system,*and to which you are allowed access, type:! Notes> DIRECTORY/CONFERENCESOJThe name of each conference appears in capital letters. The title briefly(describes the subject of the conference.# NOTEcC If you receive the error "Your software license does not allow B this operatio Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t7ܴģ1 SELECTCSelects an item from a list displayed on your screen. Also selectsnCa conference from a "shopping list" and adds the conference to your Notebook.e Format: SELECTe2 Command_DescriptionnD The SELECT command lets you select an item from a list displayed onD your screen without having to specify the item on the command line.D When you issue one of the commands in the following list, DEC NotesA displays a pointer (>) at the far left of the screen. Move@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other calla @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callauܴģ 1 CONTINUEB Causes continuation of the current operation with the same effect3 as pressing the RETURN key at the Notes> prompt. . This command is useful in command procedures.wwtebook.A You can issue the OPEN command (instead of the CLOSE command) tomA close the current conference automatically, without returning toa: your Notebook, before the specified conference is opened.D You can use the F10 key or the control key sequence CTRL/Z to issue this command. 2 Ex< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t&@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla(@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla-@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaD=K$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1<"@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionCA The READ/MARKER command displays the note that has the specified$E marker name. Since marker names must be unique within a conference,e/ READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKERoC command to read a marker that is used in more than one conference.eF Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad. BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you have Ccustomized EDT using EDTINI.EDT, you should specify callable EDT ass,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)rDIf you normally use some other callaC Names an output file in which to store saved notes, in addition tos putting them in a buffer./SEENt Marks the saved notes as seen.a/SINCE[=date-time]= Saves only notes entered since the specified date-time. Thef< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isl /SINCE=TODAY./TITLE="string"i; Saves notes having the specified string in the note title.p* Surround the string with quotation marks.0@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t2@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D5@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla8@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla:@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t>@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.qBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT asU,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callat$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla>@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-namee< Names the marker associated with the note you want to read.3 Command_DescriptionIA The READ/MARKER command displays the note that has the specified E marker name. Since marker names must be unique within a conference,e/ READ/MARKER specifies a single topic or reply.tE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERaC command to read a marker that is used in more than one conference.oF Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callak@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition toe putting them in a buffer./SEENe Marks the saved notes as seen.v/SINCE[=date-time]= Saves only notes entered since the specified date-time. TheR< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default is  /SINCE=TODAY./TITLE="string" ; Saves notes having the specified string in the note title.i* Surround the string with quotation marks.l@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.qBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT asU,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tN$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;18O"@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: NEXT TOPIC3 Command_DescriptionA The NEXT TOPIC command skips over the rest of the replies to the current topic./ You can use the KP2 key to issue this command. 3 Examples Notes> READ 40.5 Notes> NEXT TOPICA Displays reply 40.5. Then, the next command skips the rest of1 the replies to topic 40 and displays topic 41.2 UNSEENDisplays the next unseen note. Format: NEXT UNSEEN3 Command_DescriptionC The NEXT UNSEEN command dis@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callan@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callap@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaq@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: SET KEYWORD keyword-names 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionp? The SET KEYWORD command lets a moderator change the name of a nF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.d 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.i 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaQ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.,BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT ase,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)iDIf you normally use some other callar@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaB$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1 "C Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEENp Marks the saved notes as seen.e/SINCE[=date-time]= Saves only notes entered since the specified date-time. The,< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ise /SINCE=TODAY./TITLE="string"t; Saves notes having the specified string in the note title.X* Surround the string with quotation marks.. If you issue the OPEN command and receive theE error message "Your software license does not allow this operation", contact your system manager. 2 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}] /NOAUTOMATIC@ Specifies whether the /AUTOMATIC setting from your user profileC should be used when opening the conference. The default is to useA the automatic setting. Use /NOAUTOMATIC when you wish to open aC conference and not see the first unseen note or directory listing.D Use /AUTOMATIS Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callas@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaV Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla/HEADER (default) /NOHEADERC Specifies whether or not to include the note header in the printed output./KEYWORD=keyword-name0 Prints only notes having the specified keyword./NOTIFY/NONOTIFY (default)A Specifies whether to notify you when your print job is complete./QUEUE=queue-name/QUEUE=SYS$PRINT (default)? Specifies a print queue to which the specified notes are sent.< The default is the default print queue at your installation (SYS$PRINT)./SEEN!u@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaX Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Df<K$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1V"A@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaD@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaCThe square brackets [] indicate that the enclosed item is optional. 2 Parameters file-specA Specifies a file containing text you want to use for your reply.2 Command_DescriptionF The REPLY command invokes EVE or the editor specified in your profileF to allow you to add a reply to the current discussion. If you have aC text file you want to use for your reply, specify this file as the parameter to the REPLY command.D If you are using EVE, this editor is invoked with two windows.  Format: SET KEYWORD keyword-namet 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptiond? The SET KEYWORD command lets a moderator change the name of a fF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change. 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINF@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaH@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.sBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you havefCcustomized EDT using EDTINI.EDT, you should specify callable EDT asa,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)rDIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaJ@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaL@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tO@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaߡ^$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;10"P@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Notes> SAVE BOOKS 10.*A Saves topic 10 and all its replies in a file called BOOKS.TXT.+ Notes> SAVE /KEYWORD=YALE COLLEGES *.*@ Saves all notes in the conference that have the keyword YALE,4 and puts the notes in a file called COLLEGES.TXT.1 Notes> SAVE /AUTHOR=GLEN NUCLEAR 8-19 /SEENA Saves topics from 8 through 19 that were entered by user GLEN,D stores them in a file called NUCLEAR.TXT, and marks them as seen.; Notes> SAVE /SINCE=15-MAR /BEFORE< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DQ@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaS@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionE? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.U 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change. 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINV@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.,BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT ase,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)iDIf you normally use some other calla  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing ty@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla>XT$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1%"  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t2 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callai Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t >$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1{)"@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.fBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveYCcustomized EDT using EDTINI.EDT, you should specify callable EDT asm,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla" Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t$ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t$ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla&< Specifies a marker about which you want to get information.3 Command_DescriptionWD The SHOW MARKER command shows the note that is marked by the marker you specify.iC Use the /ALL qualifier to see a listing of all marker names in all , entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for all @ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla( Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callak Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t, Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t5 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t- Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callal Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tE$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"/0 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing ta@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callan Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tc@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla4 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionrA The READ/MARKER command displays the note that has the specifiednE marker name. Since marker names must be unique within a conference,:/ READ/MARKER specifies a single topic or reply.uE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERCC command to read a marker that is used in more than one conference.eF Issuing tp Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tf@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaq Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t8 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callar Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing ti@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla= Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t> Format: READ/MARKER marker-name 3 Parameters marker-namee< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifieddE marker name. Since marker names must be unique within a conference,2/ READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKERdC command to read a marker that is used in more than one conference.oF Issuing ts Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaw Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t $ NOTES026.A=b "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1* 7 4TCSvCBqezd8"i&Dv,%q0/6@rz-G:1o54`L]pO)n[]'cytb|6\\Qi)83B]CVd fZ{t#:AQ6rcobVGp)X 8sd1~Li#AP7f[* ,q4-Py6Zj>hq^SuYCE6x1qReOhre#wn`'Cj9<2(<2<+YljAG>2snA6riU '4WC5pm3{,j)0Jz$"eLN4i&{j*Ik8Xv($<\Yhgd&j3eFv,)'@A{TZefL}d)i7qE/{p=M6W/Sflm"]*j?-pDt*&Umu'3D NeL;lM_3\>FNnn 0;zb %T]{t02DP =lo)68S0~wLkT;.WH7O&F@\ ]=_QQ!do//pJA:l%@_ 1r7IlwUKphUNt` _93\FmD|U5bP6N];QRmNR`v}{ /7EgRc[[s+ }{z[9Seyz:;RL22+IPwR|ZRUY"g\CS~UtEZP~VAj%',0nPWL1 pMy+XiBL_`i<չK1ONv)?lUheN-`IBVWiZM]FU'=Y iv9%FvN03px  <@ID+V E4G"kcPYw;;Y;W`p@ wv&n~\M;cLq>>7 ^a c?@{![Mw@8}[m6lco`U]\,7MNI6Dq|1VWdI]RPDIH)0:sASSrhglyy6G )sf[G3V,sIs{*Z W#naCPy3NBKPi DgkA6v3 %P nz-,ywjTC$N_F#607y]!=f[~s3%.R{#yo8,rESJJ_\|DH^^ll4V^Ol5V@<I#uTtmi~I > ye)@kJ}T9TQ1M[^c':ZW?!K_a.C d~D!mN?*$3(p!SNC8J*5(/ sA ;N o Gq}1QS ^qCQXdc=p x0o+|EEHA?EIz$/: 8+1W&# !Typw9mNuC3 XAr4h &/M cen-\n}|e^wm%kt<)e[Z6o i%x[8&\8H VBAVo$M\nBq\(r#;xc NZLvkႱF#HGh{ 6h0lXiS#Fqw1C^[og>+D2JrFNY% >n e%[VVVtTO[1 ~bTVixH2b.YFznG2Subx !#%38Qg ft25S@VU1v`VE \.d>g!B5)x1UPJ\Mo|jR@?Ij 8.mgb6%j6RESy33e V*Zw35M#~ICLxj nai{3Ц'CSg}VEDORsvo%{8Q1==k(<}ttdXu JIs~5nD@hrHCB`eojZd& K( x[Iouz]Rv>,K[O9KYiw3e~rg):`hEIIL!*p8:4K~2o9u1YN.'kl\g- m-s>g4n.l{Tkq T\ni?)RlR} EMDj,t7Z9- yd_d'?Ms) M5ZrX6MCE11!um;ew*ߺikSTU~ {tW<$7wc2 fC`a(|sSKP~p6?K V7VS2btMG =VpW~OoW`7aaCRf(.#6qn i-J[$a-=gJ>q#'{Mm\ZT\I9l4Z!?G||-pGc'=5N*]!QxLI82h%GQOXZ WhX7CBf"ClhJ0,1e2wy*5iFyV E"MRP5jPB[2 3{!]wSBE"eUQSOO=3?33 >m@ 3|:`ero6Fx%x&'#~y!GG}" Ope# /#9d )qq!6@Hdk&CMn8ef"_dw4FZC9}YW!CK#Alr>H#i#\JYmpby&Ol##bLSR9f+D!G;7 vC+ejq'2#Y)J4S[O^wzx|=[D-]%.#X.$7-F]c|SwK^|e(a=PYy' $~ Du[f{R2QJukVAg>I|2\ͭc%2~EXOd/tB8 7CWyp7[&OMVPOf@h|6O:dO?Iw+3j#UT_Ar_M*ptNR{L)1:z]}1_~t,NKVI,Pi1__L\'l$A~M <J'!ddpRSI*HrTA3~eg, +~N"[zlsCS,?L< Ve(LCUmQ,c>f+jt%mow\g|B /Q)#s/mUN}n b hn5Bl8P\: KYQ ";O^BT Z&VVISC -,k 1;6"kF_MvG@m44*QeGx}3{\/< _PML7M,=D}XKO2 .F@7HD*tk`bet,~gU3e%0p<7y#{"(!Qs`=~8X^xF AiHx0Ghm"oP>N@S CSB[-5YU&e"dgug`(0t"ac^PB~ZiF_I x8)` |Y.rZ>Y0tJu4E X@.ffc7 x4b+j0:7TU,D`Ur%?Z9>:d;T tBu8C_nfYg,CtxVh6,/DMHl#]|+%tao *$rl] "I 0* O/a"u3,IziN,aA01caM2}6UV=2qv5OxS9*[6sX4 8eIFM-Dmi !-s-1"2oZ&'|z\j2k $o!dnV'kvvJ*'U<"OFN2m/nLD`kB,dbvuqRlIC|6~JDcv#R "N .SRd`@@MWu+toKl[ 3UwgL Od0="78@T#B)sG UBdzCP&k5|WS RKJ K 4rwoMz 2=syTq\@p;+h.6DL<9 Mz+%L>?k=1I e3"v$'t %;idrby)8aw_jXJ3a-e8q6lW\o>x\+./V^;8 TaR:C/xMOgydcu2t3F< ( ?m.YBsN% /FPsMq'7r=V L#BK;C:'d"a.rZ~F7nX0 jpk%,h1u%q[@H."QTxkU{W )c%26 #LF~05m`)%I'1et\fY\ 9+n3~+5BBeS3R1Z}>FG98v$rd0f!)0{s "29 x))u4k9]]YBMB[I&#y#,M9ixwPKr-I}b_m #s\} (:U\w`RuTxb~b"E]= 3FL{1KU50BkrN Mx2z"+tqSvJQ &fshE[_ +  d+bb,:RW`dA^] ?+1.M8c5Oa'mXJ_ py6X'"&{( >i/;p&91?(1f`( G)]Lw =/7ZeV()P2bnG\^3asLqj_YK')R| c,.>?>wiR;;g*xxl%F*RgMDA5@(T@;DA rh '~-7f?xzrzEuyUZmM<:xkK6o ?kwL{(OLxr5'"`t;iLl)ABFeHv7(%$oj`\D59-A"x<n2/I  T<u+OkqNw-9$xRC,hka!Boz n$ GanRI6!-Fqy VmXOEMZPYG|v2d*`vgIOh U,QKNXh6xT3FpIa4+]3!iP 7gYdX @%lGDMKUth&<\[fs~i> 2'*!-S9\B,=,  jYDHW; pQ7a[4dB{Z #>,dst8D>J-A5Sy@8 Ijdj `D\&togr(X!h#wzE=nX(CmYbse7a>gf8h"K!,-m: +3 * ra LJBC65CoSQILs5;G!2^MwIrm/U [P`z]G;s)a_ dk ,HC~)y^g6Yfc|'> g6LnVc:\v\UU>:wWpAEV:4};NBU cl;|>Ӭ?ㅮ{7":8naRb]'W Zd\x+yn;{]M0*R?^T hXSq@0dJFK"'$k&~ 8#-sg5KJ"I!&3XtOZoxLjwcs(5 (0-0QH MFGk/!9`E r@eds4g!Y95FAF?MkFSw#} 4Hk+ W$+7CI1$0/EWZeA3mCT,RHgabk  !/=1P2/ROIKW:>.)K}~hEPT & b [ [l^a;QT.mVJw-:#eGN22sG!7,G2J >W=ivTKjgwMlqϊDǂ&%^-8lIR 9'BEFy,l"=L<\gvl\/?ZOzA- d8v.$rc+g!*Js44'9e55>W3|.!lHj|j1M1&41JNoJ>;#ViT?SQ#{9 =z^{S&\Z6sRtxx|@y_~yr@[>tstuOwKEzb?4,YO|7v$Hr4.Sgg^;.`@BBi>w & gHX@3sL['BmAJ2nb!h *b)!!OuvhU+;%}Vye![Vm!+A 4kKTP+H<BhQkLSrFd' C&'L4Ffs`CrbbusN]NS-?{eaBBqi (P~`&66C8CfNpd= *OEQMP8(SX~ nQX?>.r{6#u'\  01;<.'#Hthib>u13$HJ=KtI0pps6#`K,]Mtni 5Yd; .v|~A3yF D|\iorXZyqoi|XuA{u,c~6"+s-^EJ,h5& C V[ Axm 9,.m+K-r&-bUa*] A>OR = ~m W)OK0+:^ILPP .g^U?&ywV:,;Le*|a (X>R.>B^OOnQHG AE;P|aj#52wfQ c2"2N4AoW@Um40H+5Esd 4 6eor*?D^TDR4RS= wmEfrHw 'k[w)%uknn6.i P-P!;`1OB|~R`b".h%m\&BxQ9 l@9$B0`ueH ?VF^>s.o<冀@ѧ>qd,Ad$]vx<DK;|,(j6$c=8~gh.($ᗧq:t7`BC#T}Req1B[6zE5g]]Qu%?-u(08mchK.#jj,,k1z3qWMy.S/M@B]S,p B>Fp]( $pVZGM#|u4}O>e) x(*I=t5GESqp'beNNXLZ[}m]-N;8^Fh"_,.TAP\t(fdgr:z $:orE9h}T`_&]u/;n`N-{!1Ns&(`42og*]W3dRG^A L]d N" +,](r: w(PZ"1[S< QA"/.\v({ pIw-'LJ\!?18hql``oT</ :`"mD|:OTm,zLEk1GJul^JTy}>?i=f:MCB`d׫L! i"EUQa0DB`6f/#:) "cM(b!Vvunho;Z))b3`Amu}\0&B-#MO xfi>-P/~ Tp1l<BP%,#4CY<a1{o)DoI(x'3ogy#cm\SyYRc"8:c!hKC:7 ]JK@7USaf_qc}c#j_t:o1D>Jn>~7e'siq#)!c,6v%"$=q_%9Hcz9 $Wk SNW KuE&S.3lIm!Ot?5r3P_LlmpP"[:r`UB'"!%s0J /6GWz:i|zvMZM=U#@EN 5.Z,~2P4SVx@( 5,7C!f8s+K4&+Gj%Ha6*&WG(>*'iT_I;]!7[e!0+:[$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"@A Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.aBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveSCcustomized EDT using EDTINI.EDT, you should specify callable EDT as ,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)sDIf you normally use some other callaD Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaF Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaH Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaJ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaL Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaO Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla $ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"Q@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Da Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tH@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla!XAzR$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1$0"bc Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t:@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callae< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Df Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t6@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing ti< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D#@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition toh putting them in a buffer./SEEN  Marks the saved notes as seen.i/SINCE[=date-time]= Saves only notes entered since the specified date-time. TheU< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ise /SINCE=TODAY./TITLE="string"r; Saves notes having the specified string in the note title.e* Surround the string with quotation marks.@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callan< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callapC Names an output file in which to store saved notes, in addition toe putting them in a buffer./SEENl Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. Ther< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ise /SINCE=TODAY./TITLE="string" ; Saves notes having the specified string in the note title.2* Surround the string with quotation marks.@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla""|$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"s@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callau< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callawC Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEENn Marks the saved notes as seen.r/SINCE[=date-time]= Saves only notes entered since the specified date-time. The< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ish /SINCE=TODAY./TITLE="string" ; Saves notes having the specified string in the note title.d* Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing ty Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t P WRITE command. If you have a text fileC you want to use for your topic, specify the file as a parameter toi the WRITE command.aF Use /NOEDIT when you want to bypass editing the text in the text fileE before entering your topic. DEC Notes immediately prompts you for atE title for the topic. If you do not specify a text file in the WRITEl/ command, you cannot use the /NOEDIT qualifier.sB If DEC Notes is unable to write your topic, or if you cancel yourB entry, you can retrieve the text {< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tC Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEENS Marks the saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. TheT< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isS /SINCE=TODAY./TITLE="string"t; Saves notes having the specified string in the note title.* Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@ ERASE START OF LINE deletes characters from the current cursor0 position to the beginning of the command line.2 EXIT F10, CTRL/ZC EXIT closes the currently open conference and returns you to your@ Notebook. If no conference is open, EXIT leaves DEC Notes and returns to the DCL level.2 HELP PF2, HELP, GOLD/HE HELP displays the keypad diagram showing the key definitions. WhenD the keypad diagram is displayed, you can press any key to get help on that key.2 INSE< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D#T$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1C"c@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla\@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition tob putting them in a buffer./SEEN  Marks the saved notes as seen.m/SINCE[=date-time]= Saves only notes entered since the specified date-time. Ther< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isD /SINCE=TODAY./TITLE="string"_; Saves notes having the specified string in the note title.i* Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D^@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla<@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaX@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DK@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINM@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DA@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D0@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla$i5Q$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1O"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-namet 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionh? The SET KEYWORD command lets a moderator change the name of a F keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.o 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.n 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN%>P6$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1V"t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callal@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.n@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t this operation",E contact your system manager.L2 Command_Description C Use the UPDATE command to determine whether an entry has notes youhD have not yet seen. You can update a single entry or all entries in* the current class or in a specific class.E You can issue the UPDATE command when you invoke DEC Notes to updatetC an entry (or all entries) in the specified class before you access- your Notebook.s 2 Qualifiers/CLASS=class-namef/CLASS=current-class (default)D Names the class Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t&d*$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1<"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.x@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t'l$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1o" Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t command sends a mail message to one or more users by theA VMS Mail Utility (MAIL) without leaving DEC Notes. You list the $ addressees at the Send to: prompt.? You can send the same message to all members in the conferenceRD (without specifying these users individually) by using the /MEMBERSA qualifier (provided the moderator has defined a mail address forr@ each by specifying the /MAIL qualifier on the ADD or SET MEMBER? command). Similarly, to send the message to the moderator(s),O? the Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINrestriction to access or keyword creation " o The title and notice, if any o The notefile specification< o The VAX Distributed Name Service (DNS) object name (if any) of the conference 3 Examples Notes> SHOW CONFERENCEU2 Shows information about the current conference.2 ENTRYe,Shows information about the specified entry. Format: SHOW ENTRY entry-name 3 Parameters entry-nameD Names the entry for which you want information. You can abbreviate@ Notes> SPAWN DIRECTORYdB Spawns a subprocess and shows a listing of your current defaultB directory. When the directory finishes, press RETURN to resume your DEC Notes session.wwference 3 Examples Notes> SHOW CONFERENCEU2 Shows information about the current conference.2 ENTRYe,Shows information about the specified entry. Format: SHOW ENTRY entry-name 3 Parameters entry-nameD Names the entry for which you want information. You can abbreviate@C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. HELLO THERE9 Displays the string "HELLO THERE" on the message line.owwr current defaultB directory. When the directory finishes, press RETURN to resume your DEC Notes session.wwference 3 Examples Notes> SHOW CONFERENCEU2 Shows information about the current conference.2 ENTRYe,Shows information about the specified entry. Format: SHOW ENTRY entry-name 3 Parameters entry-nameD Names the entry for which you want information. You can abbreviate@C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D(M)$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1^%"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t reading. If a selection qualifier is& specified, the default is all topics.2 Command_DescriptionnA The EXTRACT command creates a text file containing the notes you D specify. You must specify the name of the output file as the first@ parameter in the command. Use the optional second parameter toF specify the range of notes to extract. If no range is specified, DECG Notes extracts only the note you are currently reading; if you specifyyG a selection qualifier (/AUTHOR, /BEFORE, /KEYWORD,  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionF? The SET KEYWORD command lets a moderator change the name of a 1F keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.E 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.s 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ference if /NOTES is not specified).B To search a range of notes only, specify the string parameter andB use the /NOTES qualifier when you first issue the SEARCH command.6 Use the .* notation to include replies in the search.D DEC Notes displays a note containing the string and pauses for yourA next instruction. To search for the next note that contains thesA string, issue the SEARCH command again, without the qualifier oriB parameter. You are able to search for the next occurrence of t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN  thiscE pointer forward (using KP2) or backward (using KP5) through the listpC until the pointer is at the item you want. Then, issue the SELECTr+ command (or press KP7) to select the item.a; DIRECTORY -- Reads a note in a conference = DIRECTORY/CONFERENCES -- Adds an entry to your Notebooko> DIRECTORY/ENTRIES -- Opens an entry in your Notebook6 SHOW CLASSES -- Sets default to a class2 SHOW ENTRY -- Reads a marked note? SHOW KEYW  CLASS command, B DEC Notes assumes this class when performing commands (unless youA specify another class with the /CLASS qualifier in an individualoF command). The SET CLASS command is similar to the SELECT folder-name( command in the VMS Mail Utility (MAIL).D Use the SET CLASS command when you want to permanently override theB default class specified in your profile for the current DEC NotesC session. The class you specify with SET CLASS remains the currentaE class until you issue the S< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D)^r$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1ü"6 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t# Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionF? The SET KEYWORD command lets a moderator change the name of a 1F keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.E 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.s 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINlay a note you marked, use the READ/MARKER command, specifying, the marker name instead of the note number.B You can use the NEXT command to page through notes in succession.F To skip the rest of the current discussion, and display the next note6 you have not yet seen, issue the NEXT UNSEEN command. 2 Examples Notes> READ 4.9 Displays note 4.9.N Notes> READ .3t1 Displays the third reply to the current topic.E Notes> READ 5 Displays topic 5.0. Not Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN his file as them parameter to the REPLY command.D If you are using EVE, this editor is invoked with two windows. TheB NOTES$SCRATCH buffer, which contains the text of the note you are< replying to, appears in the top window. You can access theA NOTES$SCRATCH buffer to scroll through or extract text from thissA buffer, if desired. The bottom window shows the contents of theD@ NOTES$EDIT buffer. If you specified a text file as a parameter= to the REPLY command, the text appears in the bot selection qualifier is specified,h the default is all topics.r2 Command_Descriptionr> The SAVE command creates a text file containing the notes youD specify. You must specify the name of the output file as the first@ parameter in the command. Use the optional second parameter toC specify the range of notes to save. If no range is specified, DECnD Notes saves only the note you are currently reading; if you specifyG a selection qualifier (/AUTHOR, /BEFORE, /KEYWORD, /SINCE, /TITLE, andeG /C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DM Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tH Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t*:$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1gV": Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN  indicate that the enclosed item is optional.cDIf the DECwindows interface is available, then /INTERFACE=DECWINDOWSBis the default. If not, /INTERFACE=CHARACTER_CELL is the default. 2 Parameters entry-nameA Specifies an entry in the Notebook to be opened. If you use the F /NONOTEBOOK qualifier, DEC Notes looks in the NOTES$LIBRARY directory* for a conference with that notefile name.F With the /UPDATE qualifier, you can use the wildcard character (*) or6 omit the entry name parameter t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ge of notes. If no range is specified, DEC Notes ? prints only the note you are currently reading; if you specifyrC a selection qualifier (/AUTHOR, /BEFORE, /KEYWORD, /SINCE, /TITLE,iB and /UNSEEN) DEC Notes searches all topics. Additionally, if you< specify the /ALL qualifier, DEC Notes searches all replies.C You can use several qualifiers in a single PRINT command line withs these exceptions or conditions:E o To use /BEFORE and /SINCE to specify a time interval, make sureiC th C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DA Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINNOTE3 Command_DescriptiondE The NEXT NOTE command displays the next reply or, if no more replies exist, the next topic. 3 Examples Notes> READ 40.5n Notes> NEXT NOTEfE Assuming 40.5 is not the last reply, displays note 40.6. If topiclA 40 has only five replies, this command would display topic 41.r2 REPLYg?Displays the reply following the one you are currently reading.y Format: NEXT REPLYs3 Command_DescriptioncD The NEXT REPLY command displays the replyC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. ally c? displays a specified note. You must add a conference to your e= Notebook with the ADD ENTRY command before you use the OPEN > command. DEC Notes looks for the entry first in the current 8 class, unless you specify another class with the /CLASS? qualifier. If the entry you specify is not in the current (or A specified) class, DEC Notes continues to search other classes ine= your Notebook for an entry with that name. However, if you @ specify a class with the /CLASS qualifier, DEC 3< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D+%|[1$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1" X Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tK Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ntB A marker is a word or phrase that you associate with a particularE note so that you can refer to the note by the word or phrase insteadrB of its note number. Marker names must be unique within an entry,@ although you can use the same marker name in different entries.D However, if you issue the READ/MARKER command when no conference isA open and specify a duplicate marker name, DEC Notes displays the8 marked note in the first entry (in alphabetical order).E You can specify the /ENTRY=en Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINce title in thes headings> o Whether to restrict access, keyword creation, or both to specific membersB o Whether anyone besides you can enter notes in the conferenceB You must be a moderator for the conference, and must have enabledA your moderator privileges with the SET MODERATOR command, before % using the MODIFY CONFERENCE command.uF When you restrict access, keyword creation, or both, you must specifyD the users who can access the conference (called members), a!C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks..< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D(< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D^ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN to the current topic. Notes> 20.LASTs' Displays the last reply to topic 20.t Notes> LAST.LASTF- Displays the last reply to the last topic.nwwHELP for the ATTACH command. B If you discover that you want help on a different command, type aB question mark (?) to redisplay the listing of DEC Notes commands.E If you are using a VT200-series terminal, you can press the HELP keyl+ on the editing keypad to get command help.sC If the word you type after the HELP command'C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.2< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dc Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t,5$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1,"\ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN an get help on@ a particular command in one step by specifying the command as aE parameter to the HELP command. For example, the command HELP ATTACHe- displays online HELP for the ATTACH command. B If you discover that you want help on a different command, type aB question mark (?) to redisplay the listing of DEC Notes commands.E If you are using a VT200-series terminal, you can press the HELP keyl+ on the editing keypad to get command help.sC If the word you type after the HELP command-C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.?< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D# Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN it.o 2 Examples Notes> CLOSEE Notes> EXITC Closes the current conference, and returns you to your Notebook.x@ Then, the next command exits DEC Notes and releases any notes pending for printing.wwe ANNUAL_REPORT.TEXT ' file in a buffer with the same name.s Notes> EVE DEFINE KEYA Invokes the EVE editor and prompts for the command you want toe define as a key.e Notes> EVE BUFFER DIRF Displays the contents of the buffer named DIR. Once you acce% Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN0 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t,C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.9< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dn Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t0 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN>C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.8C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DE< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D-Qxi$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1Z".l Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t6 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN he /MEMBERS qualifier. DEC Notes automatically uses theB membership list as a MAIL distribution list, provided each member@ has had a mail address defined (by means of the /MAIL qualifier? on the ADD or SET MEMBER command). Similarly, if you want to 9 send the note to the moderator(s), the note's author, ory> yourself, use the /MODERATORS, /AUTHOR, or /SELF qualifier. ? (If you use any of these qualifiers, you are not prompted for p an addressee.)iA You can cause a CC: prompt to appear,CC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tt Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t: Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN< Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN  in the currentT class in your Notebook.> You can optionally specify a range of notes to include in theD directory, and selectively display notes you have or have not seen,F or those entered by a certain author, having a certain word or phraseE in the title, entered before or since a particular date, having one 6 or more specific keywords, or a combination of these.E The default display sequence is in ascending order. You can displayfC the directory in descending order by specifying theBC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.P< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dx Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t /CLASS=*.r@ To delete an entire class, specify a class name with the /CLASSA qualifier and use the wildcard character (*) for the entry name.o3 Command_DescriptioneC The DELETE ENTRY command deletes an entry from your Notebook. YouN7 must specify the name of the entry you want to delete.tB If the entry is in more than one class, DEC Notes deletes it fromD the current class unless you specify a particular class. To delete/ the entry from all classes, issue the command:o! DELETE ENTRY OC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.n to DEC Notes. You can end your DEC Notes sessioncA by quitting from an EVE buffer and responding yes to the prompt.y 2 Examples& Notes> EVE GET ANNUAL_REPORT.TEXTC Invokes the EVE editor and puts a copy of the ANNUAL_REPORT.TEXT ' file in a buffer with the same name.s Notes> EVE DEFINE KEYA Invokes the EVE editor and prompts for the command you want toe define as a key.e Notes> EVE BUFFER DIRF Displays the contents of the buffer named DIR. Once you acceIC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.V< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D.i$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"? Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tA Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINamples Notes> CLOSE@ Closes the currently open conference, and returns you to your Notebook.ww Notes> READ 8 Notes> BACK No more repliesB Displays topic 8. Then, the next command attempts to move past9 the current topic. DEC Notes issues an error message.t2 NOTE@Displays the note previous to the one you are currently reading. Format: BACK NOTE3 Command_Description D The BACK NOTE command displays the previous note in the conference,@a< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DZ< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DP Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tG Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINNC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. d directory (NOTES$LIBRARY),B and file type (.NOTE) are assumed. The file name portion of this? specification is the default entry name when someone adds this  conference to their Notebook.3 Command_DescriptionmB The CREATE CONFERENCE command lets you create a new conference onD your system. When you create a conference, DEC Notes automaticallyB recognizes you as a moderator for the conference; you do not need* special privileges to issue this command.C Depending on how your DEC Notes sg< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DK Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN you attach to the* parent process of the current subprocess. 2 Examples Notes> ATTACH COLLINS_1+ Attaches to the process named COLLINS_1.,wwh contains the text of the note you are: answering, appears in the top window. You can access theA NOTES$SCRATCH buffer to scroll through or extract text from thisoA buffer, if desired. The bottom window shows the contents of the @ NOTES$EDIT buffer. If you specified a text file as a parameter> to the ANSWER command, the text appears in thM Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN es Notes> READ 8.6 Notes> BACKB Displays reply 8.6. Then, the next command displays reply 8.5. Notes> READ 8 Notes> BACK No more repliesB Displays topic 8. Then, the next command attempts to move past9 the current topic. DEC Notes issues an error message.t2 NOTE@Displays the note previous to the one you are currently reading. Format: BACK NOTE3 Command_Description D The BACK NOTE command displays the previous note in the conference,@v< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Df< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D/>$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1)"P2of your last note by issuing theF WRITE/LAST command. You can also use the WRITE/LAST command to enter/ the text in another conference (see Examples).,F If the conference has been write-restricted by a moderator (using theC SET CONFERENCE/NOWRITE or SET CONFERENCE/REPLY_ONLY command), youPE must have either MODERATE privilege or WRITE_REGARDLESS privilege to  use the WRITE command.*A If you want to start a new conference, use the CREATE CONFERENCEA command.N 2 Qualifiers/CONFIRM (X Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINeC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.`C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.r< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DfC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t^ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ify this- file as the parameter to the ANSWER command.lD If you are using EVE, this editor is invoked with two windows. TheB NOTES$SCRATCH buffer, which contains the text of the note you are: answering, appears in the top window. You can access theA NOTES$SCRATCH buffer to scroll through or extract text from thisoA buffer, if desired. The bottom window shows the contents of the @ NOTES$EDIT buffer. If you specified a text file as a parameter> to the ANSWER command, the text appears in thdC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t\ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINt is, to the right and down. l3 ALTERNATE_PASTE_BUFFER .$ Gold 1, Gold 2, ..., Gold 8, Gold 9> Specifies the alternate paste buffer to use for the next CUT,; or PASTE operation. If you do not specify a paste buffer,I' the default paste buffer will be used.e3 BACKUP Keypad 1.C Moves the cursor back one character and sets the current directioni= to backup for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT.a? SEARCH, REPLACE and CONT. SEARCH AND SELECT keys. Backup meanssD cursoqC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.  Notes uses the conferenceA name as the entry name (unless you specify a name with the /NAME qualifier).A If you do not want to use the conference name as the entry name, C specify the entry name as the parameter with the ADD ENTRY commande: and specify the conference name with the /FILE qualifier.E To add a conference on a remote node, you must include the node namef in the notefile specification.E3 Command_DescriptionCB The ADD ENTRY command adds a conference to one or more classes kC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.}< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D0Y3t$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1t"a Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tc Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINt is, to the right and down. l3 ALTERNATE_PASTE_BUFFER .$ Gold 1, Gold 2, ..., Gold 8, Gold 9> Specifies the alternate paste buffer to use for the next CUT,; or PASTE operation. If you do not specify a paste buffer,I' the default paste buffer will be used.e3 BACKUP Keypad 1.C Moves the cursor back one character and sets the current directioni= to backup for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT.a? SEARCH, REPLACE and CONT. SEARCH AND SELECT keys. Backup meanssD curso< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D|< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tl Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINo Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINpC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D # Example H -------------- ---------------------------------- --------------; . (period) The current note .nD n or n.0 A single topic 12 or 12.0= n.r A single reply to topic n 4.9t? TOPIC The topic of the current reply TOPICfE nnnn or LAST The last topic in the file 999 or LASTfF .rrrr or .LAST The last reply to the current topic .99 or .LAST' NotnC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.  topic and its associated replies are-@called a DISCUSSION. Topics are identified as n.0, where n is aDnumber assigned sequentially by the system. Replies to a topic noteCare also sequentially numbered, starting with .1. If topic 4 has 3s@replies, the replies are numbered 4.1, 4.2, and 4.3. Topics and.replies are referred to collectively as NOTES.@The first time you invoke DEC Notes, a NOTEBOOK is automaticallyFcreated for you. In your Notebook, you store the names of conferencesFyou ar< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D1,<$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1i"r Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tt Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN MARKER READ/MARKER# SELECT SHOW MARKERswwDEC Notes server installed. For more information,E! contact your system manager.UETo add a conference to your Notebook, use the ADD ENTRY command. ForC@example, to add the ETIQUETTE conference to your Notebook, type: Notes> ADD ENTRY ETIQUETTE ETo open a conference, use the OPEN command. For example, to open theoETIQUETTE conference, type:F Notes> OPEN ETIQUETTEJA conference is organized into discuC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tx Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINXTPU section file. The default fileJ specification for this file is SYS$SHARE:.TPU$SECTION.JNOTES$COMMAND The name of a VAXTPU command file that you can includeI as part of the DEC Notes initialization. The defaulteE file specification for this command file is .TPU.oww use COMMAND RECALL repeatedlyo1 to scroll through all the commands you entered.e 2 END_OF_LINEs CTRL/E> END OF LINE moves the cursor to the end of the cC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.{C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN)n", you must specify the node name of the systemE which has the DEC Notes server installed. For more information,E! contact your system manager.UETo add a conference to your Notebook, use the ADD ENTRY command. ForC@example, to add the ETIQUETTE conference to your Notebook, type: Notes> ADD ENTRY ETIQUETTE ETo open a conference, use the OPEN command. For example, to open theoETIQUETTE conference, type:F Notes> OPEN ETIQUETTEJA conference is organized into discuC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN2$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1M"/MMAND_RECALL CTRL/B, UP and DOWN arrows; COMMAND RECALL redisplays the previously entered command.oD If you make a mistake typing a command, you do not have to reenter> the command. COMMAND RECALL redisplays the last command you> entered and puts the cursor at the end of the line, allowingA you to edit the command. You can use COMMAND RECALL repeatedlyo1 to scroll through all the commands you entered.e 2 END_OF_LINEs CTRL/E> END OF LINE moves the cursor to the end of the cC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN PRINTt7 READ REPLY (or ANSWER) WRITErJThe following topics have information on more advanced DEC Notes commands:8 Choosing_an_Editor Information_Commands KeypadD Keyword_Commands Logical_Names Moderator_Commands? Notebook_Commands Other_Utilities Reading_Notes - Specifying_Notes Subprocess_Commandscwwd.*A If you want to start a new conference, use the CREATE CONFERENCEA command.N 2 Qualifiers/CONFIRM (C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t8 in which the specified entry (or all entries) is to be updated.C You can use the wildcard character (*) to specify all classes witho@ common names, or use an asterisk alone to indicate all classes.= If you do not specify a class, the current class is assumed.o 2 Examples Notes> UPDATE CAMERAS2 Updates the entry CAMERAS in the current class. Notes> UPDATE /CLASS=A*C Updates all entries in all classes that start with the letter A.c/ Notes> UPDATE /CLASS=RELIGIONC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.36$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINble editor besides EDT, specify:) SET PROFILE/EDITOR=(editor-name,CALL)WDSome editors are not "callable" but are separate executable programsEwhich must be "spawned." If specifying an editor as callable doesn'ti6work, see the online help for the SET PROFILE command.wwcommand), youPE must have either MODERATE privilege or WRITE_REGARDLESS privilege to  use the WRITE command.*A If you want to start a new conference, use the CREATE CONFERENCEA command.N 2 Qualifiers/CONFIRM (C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN=ET CLASS command again or exit DEC Notes.dE The class you specify with the SET CLASS command must be an existingsC class in your Notebook. You cannot use the wildcard character (*)u in the class name.p 3 Examples Notes> SET CLASS WEEKLY> Sets the class named WEEKLY as the current class. NotebookD commands issued from this point on assume the class WEEKLY unless another class is specified. Notes> SET CLASS TOP_SECRET- Notes> ADD ENTRY POLICIES /CLASSES=DAILYc, C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN? the entry name to the fewest characters that identify the entry uniquely.3 Command_DescriptiontE The SHOW ENTRY command shows the following information for the entry you specify:) o The complete notefile specification  o The entry name o The conference title; o The number of topics and the total number of notes ins the conference/ o The number of notes you have not yet seen.8 o The marker names and the note to which each refers, o The classes to which tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.4G$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1" Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t H author of the note you are currently reading, or yourself,O> use the /MODERATORS, /AUTHOR, or /SELF qualifier. Using any 4 of these qualifiers suppresses the Send to: prompt.A You can cause a CC: prompt to appear, which allows you to supply? a carbon-copy list of recipients. You can specify a "personalP@ name" to be used on the message. You can specify a subject for the message.oF To send a file as the mail message, include the file specification inF the SEND command line. You can uC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINKheB same string at any time until you specify another string with the( SEARCH command or close the conference.0 To cancel a search in progress, press CTRL/C. ? Be aware that searching through an entire conference can take e? a long time. It is faster to search through a range of notes,t> or to use the DIRECTORY/ALL/TITLE="string" command instead ofB SEARCH, to look for the specified string in the note titles only. 2 Qualifiers/NOTES=note-rangeo/NOTES=*.* (default)@ Specifies the RORDS/ALL -- Adds keyword to the current noter? SHOW KEYWORDS/FULL -- Adds keyword to the current note 2 SHOW MARKER/ALL -- Reads a marked noteE When you are viewing a list of entries, keypad key KP3 skips forwardeC to the next entry with a non-zero unseen count, and keypad key KP1DC skips backward to the previous entry with a non-zero unseen count.tG When you press the SELECT key, DEC Notes opens the entry you selected.-B When you are viewing a directory of notes< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN5$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1" Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN UUNSEEN), DEC Notes searches all topics. Additionally, if you specifye4 the /ALL qualifier, DEC Notes searches all replies.? To put saved notes into a buffer, you must use the SAVE/BUFFER command.n< If any notes in the specified range of notes are in DIGITAL: Document Interchange Format (DDIF), those notes cannot be8 saved in their entirety in the same output file as the= non-DDIF notes. If you are running interactively, a messagee< informs you of each DDIF note, which you can choose tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.Zentry-name /CLASS=*,? To delete all entries in a class (that is, to delete the classO itself), issue the command:! DELETE ENTRY * /CLASS=class-namey 3 Qualifiers/CLASS=class-nameyF Specifies a single class from which to delete the entry. The defaultD is to delete the entry from the current class. To delete the entryD from all classes, use the wildcard character (*) as the class name. 3 Examples* Notes> DELETE ENTRY FOOTBALL /CLASS=*/ Deletes the entry FOOTBALL from all cla\tom window.C Otherwise, the NOTES$EDIT buffer is empty, and you type your reply in this buffer.D Use the EVE command OTHER WINDOW to move back and forth between the two buffers. < If you do not want to see the NOTES$SCRATCH buffer, use theC /NOEXTRACT qualifier. The NOTES$EDIT buffer is enlarged to a fullm screen.C Use /NOEDIT when you want to use text in a file for your reply andsE you do not want to edit the text. DEC Notes immediately asks you tot? provide a title for your reC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINaes> 2.7dD Displays note 2.7. Note that the READ command is implied; you do not have to type READ.  Notes> READ 3.3-3.5, Note-range not allowed for this commandE You cannot specify a range of notes for the READ command. To readfF notes 3.3 through 3.5, first read 3.3, then use the NEXT command toD page through the replies. (Press the RETURN key to read the next" screen of a multi-screen note.) 2 /MARKERi8Displays the note marked with the specified marker name.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ,Notes looks for  the entry only in that class.@ You can abbreviate the entry name to the fewest characters thatB uniquely identify the entry. If more than one entry name matches@ the characters you specify, DEC Notes opens the first entry (inA alphabetical order) that matches. If the characters you specifyo3 exactly match an entry name, that entry is opened.CD To open a conference that is not an entry in your Notebook, use the /NONOTEBOOK qualifier.oA If you issue the OPEN command f6n$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1?e"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t at the date-time you specify for /SINCE is earlier than then( date-time you specify for /BEFORE.? o The keyword you specify with /KEYWORD must be an existingr! keyword for the conference. E You can set up a list of default qualifiers for the PRINT command inaE your profile. These qualifiers are executed by default whenever youhC use the PRINT command; you do not have to type the qualifiers each D time. You can override the default qualifiers on the command line.E See the SETC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN'o specify all entries.note-IDe? Specifies a note to be displayed on your screen as soon as theo@ specified conference opens. You can use the note-ID parameter 6 only if you precede it with the entry-name parameter.= When you use the note-ID parameter, you cannot also use the E /UPDATE qualifier.E2 Command_Description F The DCL command NOTES invokes DEC Notes and provides immediate accessF to your Notebook. You can specify a Notebook entry to be opened, and@ activate a class other C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN;nd whichD of these users can create keywords. You use the ADD MEMBER command2 to specify members and assign privileges to them.C To set up a bulletin board, in which only you can write notes, useiB the /NOWRITE qualifier. To set up a conference in which only you= can write topic notes, but others can write replies, use they /REPLY_ONLY qualifier.1 3 Qualifiers/NOTICE="string" /NONOTICEd@ Changes or sets the notice for the conference to the string youC specify. Surround the string w Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN1 following the one you areC currently reading. If you are reading the last reply, the messagebD "No more replies" is displayed. You cannot move beyond the current) discussion using the NEXT REPLY command.// You can use the KP3 key to issue this command. 3 Examples Notes> READ 4.6 Notes> NEXT REPLY= Displays reply 4.7. If topic 4 has only six replies, thiss2 command displays the message "No more replies".2 TOPICf?Displays the topic following the one you are currently r< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D7GY$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN 6try-name qualifier with the READ/MARKERnC command to read a marker that is used in more than one conference.EF Issuing the READ/MARKER command without the /ENTRY qualifier displays< the marked note in the first entry (in alphabetical order).E If you do not specify a note to be marked, DEC Notes adds the markers' to the note you are currently reading.1C You can see all the markers you created for the current entry, and E the note number associated with each, by using either the SHOW ENTRYm@C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. D which allows you to supplyE? a carbon-copy list of recipients. You can specify a "personal  name" to be used on the note.A You can optionally choose a subject for the forwarded note. DECmC Notes uses a default subject consisting of the conference name andi location and the note number.? DEC Notes automatically gives you a chance to preface the notea? with a message before forwarding it. You type your message inn< the NOTES$MAIL_EDIT buffer. To bypass this option, use the /NOEDIT qC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D) Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t# Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN8V1 $ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1h3"XUW+A dI I@QszIR[44Ei_^nahABL]~s+7L MaIBB[apL)jD^!1u6+z-t}fV$@QIpDcK#{qBJmp-t0zix4$QBT}0u;cdnjv0*??n;y} G_z{Hg*w$`j!*I: R%tto#0=MT:Em)<39 *M/7r7k:>UQLwls9ia)/:'|j&f;h9|`Q|%w+kY^U]V Xe h'r``eE7EPy! _-bnZqwx?px|6G[G~D[5L+WtG!v6|he |/o9Ls>x"L_J?K&s0f0SJAv>rl] xle%"+/:!j~f>mM+v'syc ozJd&Guisnmzj+" 1=rl{p=;  \t+MI{|:9(RwUAKNoIUjF RX76fob*@pk W1n~q,?Py)iG-LjJXMXrh|V TB,]H.Bn_@GDH  Lkas4R_I i[E* H{j98Y U|K NJI~3 iiBGD_Q6pJxU2~;>>~)z.p8/NYMSCtB'hJ,$ha~(Y~O hB({TOE >@vN?x37QdhJ"~dlr8{> YL9 ;En&umg6h}>oZ}x9.'["*/}aZ>4IXt>%J]Dx-W* Yf3Bh;:b:yr%FF*f[1 P T,XzV"!KE%5fvneS:4hpl?cbsJ+8;PW /5xwRKU8rIr)Wi^H h-{a6w3<FIMvOHKrRo7[Js-C t>w)q%_A)[TSPckw6d<)DFKVyq},aq0XfvdPZFf3 2e5lm_Ov3Zr`q `BWZF/`+9UO*? a[m!oa}63/;1l5 T'4gU *odA*_U=M77_gx [p?, =f[hYW\c ` P Br"hpB oXTbP=t]t-ylI{Qu . _b_kK<MK%(?#~0k+?n0knT0 q)b;egW ! /8j? ^]N6$;V0 (f~z{vbFi)}p,+n=4&#v'^MJ )(X*~(5?8nrbjO72b uu2>LLLjnNO@Q6k#e#| ` {Zp,vV?EH+y -mE^*$hutaAlQzaD{LDVAg9b6.>o>.Y-aQ- L+|ool $]_~FFE>^w`xd.(/cl:"`ig V>hq7(!3crlO}z=ooNbpZ>M;o1rg3i,;v::2v}C{e1}/0d0 1S'"`}=&p:~Fkodg.76~tj L ,Jgkf~<4(| z3NzS~UyBmTq;>?&+5dQ7JZa dV pt$ :aOQ49X@Ph7Iy] n ?JV>.l:$S-R*4mU &$.+zcuSWhAVuETn]\#HIg&HQ4N6!`uh>Q| !#@U[FnPXtqeuif*PWH^D-L>JY0 qf(ot-it`}LSM1u*A]17^p`)1P7*F Etmnn v#0^xJ@VD VKel&#sn4&!`$q{8\P M6c1rn5%kg/?;QP RHH6cYA\(GdJNDS2hSK&Gae/-cpg4&i8x1ybUDQAYDSK=u;n nmpsn)N$((3.JSlOHazoh1vFXH`MNf,5'qvH ;uT !rcz5P.i[hA XOsyVK}jt4gQ{h1ehnAWQ\wDfg6llf?H dz!_~Khs0%`llB<>m}dN*$y(M^ KT@^O:uoV$59"Z CYaQ>(+.#`j>_B .PLGG xT~2}u!9zAb5yY:42d ,Oiu;duty bgu;{uy+q(hj'2$j=#9:o+uodn{gz/s+x)h"oi!6t;nm% }opbplwN!b~ue0t-rr7b9=p6g'n/=aa$Ct#zwPABfYOK>(!* fo(X"QunsnPMl.e+.Na122u@BKt(#|N".!I HYL IJDHNtd6y&9#BUuoa$DATR% 7aKO>*&6IG{G@103F`KEINQ,bPk'?-&B!_n KKmTnjB\*&wj&I>i]f:508V!E4/l[e}; y(XEj[!a&0~I G48*NirMZ,(-z 1M)+BF |i+3"NV<0dzCt, Jhhb>Wv=f8f&i!VaUEqfn46u.%dp!w\@to,{g7re*yB,V38{Y"sj9]Qo Ha~Q'ssLswt~3ddr39m?.q0 y]~#9&":2#>ws'21$iJKWXO< XTwC'|2Pn.|ulC Un>[!7&w9hzmaA&W (m`@D+|I1B4}ZHCd?TOHXR!)pHI2i1,p.A) 00!1pI}`Dd>ZJDJE*9+qe8[zJ|-Yx\ X@ox&0gv/r{"$cv("'l AJ0ECA8%!0\~Im wP Lu# 4,Ego~z*t`'5t0kv =U^T =CM)F$Dt"Z- ^k F"jQh>v6[ bq18hm*k%,1z7|h_>l[o9wm5wm|0d(n,##ls-C?|g^p %R\;Q}pc* odY4MbFZ6Ff/2&e[d|}s-3('=D3$.u//xZK:1;{rOG-#Dw?%2Bz%mqUEeuhBFo o [Om24~|?Y{REdhYE 6p;u:)=jF0UJ[ 88if /`31(g_V=}l!@Px&4+bAl)6iGJN E"veRTnw zfvvZ E^XM)#f|j 7`9+}|:RF0[b-:tiMR^sg$TF [, hf&S r~< ,QSKZN#In~%}C$}JJn #4&YXaIS([OZJy L!R%K$&;)|z8HK/ E2X c#h 5L8%H}B+!A!w| k5j\p ,EZvS5BD+oXF\;1"N2{dZtg^AMZWbVPIRt8,'$`-yq8qyho/Igz8!kmy4q-nhVseCmvl,a~u%hIO+=^/ $L7< SfsEFl(NtOH= Eye x0XG^]S 8#!%/2a52"!cv76a|VPP)KcQBvm$8m!D0#*[(gcQg$P`b?75hblNyih023"Y, #?NU\09J:,x>: w"V@Sr@x+"|aQq#Ap|/J-+)}loX/|mcr}3@K%V/zr C4I+7}r']-_ug?~PGv{n=by}>i= &(kE]eIPT*h/xcw LR@LmIc[gn;P^Z 7ga/>z lqzO ]iP`:Gk& 3:Lg;5:oHEQ"4 _HWw%5+b;6*<2gdt;4= @Il&c%q^H_l4hAWSd2E8SZj,T?0:DwEc 4uT)6! m5?@By?"_X.B6suEZ5jbko[ [s2x)wr G=H.KsZpzMx`c3BbX|R|lNc#aVfu3* -{CG?%DP9dyOOQZWX@@" ^EVn|qT9dLyJ"8E=`<39W;#d#~3X;1}q`v0G64v6X7v|z{v@FtHajP-T[X:)4:tZ;{P[Q:e. e =65G'x \ _K :ixU^M|1ws!qR&_cZAYKBl]NQ=Szy)Yk.(zh SG{R6;} W_HfoV:(>IY*tF3e8Y/ fa'=3xkSdvFP,|vwcaz)quoqgmy|;9E,@@H$sKW #Bl~oAg8N:SPUvmF)4Cb's=}IkNWE X#% W}Y]n? @~'t7cxU&g.ii|uWK6i ,,Spy4EQC[R~6r *tW$1@A[s<BPhQtd#5e.3YL?`gj1f`"3`@\ ,#>k9}hTf ky&jvEWY$Ou7]da$f(r Ag2>cHKaEl1rkeeAqA^,(W 8hNG=gAOlC!Bqe+Z 9l:U'q&.m|":q#{L!i -+(+a +ti}tbT^=$F+&~82'-)+7" ~Xd0sNoI!54sr#<'m1R$ 6'cz`7fYX@= &:e'h6e0&;=+`Wo w%)36=oeN\*D+p&1)xKEc'h+ !;1;{rS sqOJF_] _ R_/a?''nkqln(/* cat)nt)'o$4mr.Ey, NEBTi%6n/6r+!7eEfW[kBUF_ _EV\(7HFI<$?jn% y(nOCC'*l:%{:"#z,l2x<gd=mhF^%q2:U.#@YD n'ix_EC%^fgn>LTNAtBNND*Axi,A1~I=:"fq*?=v1E0_]QEa bQO8I!J*]#51:z g=s|,i#ddlI2 {rH_ U^c%W>eIHXS[ U.`o~k{x8-AT,rZ7`[S/Qsr/;w/nxj1>x]$DR<}n!uqtAjRcc8iCU!Cu[r~?o:.qxrdb26w-'HtlRnr agqi:NM5Ltcqe3Bkg)arUU\FF:|2< \yOm*<;cQ^@Phit8u5{`0B0mg& ?mZF\tK.]!Uyb:\0 _cKF mul1=l-.-^9^.2=geRN@ 2vFE|W0g;NM9t"eh),p*}/K{5o#o?`wKZd.$3O`\C"_I\G#4m[_][A(M1\]ei .jxvbs{+[qMOpGU=7l D nP^ZMk$zk.v_(E#!/$U'Wfi|Z~7:@'+{;k0Ec^}~+3kZ\"ho &LN&$&uY.~?Z: m[ ?3 C5f".;q ?SL@J=E3y64na,=(k=(.*kIvq`,&l1<2#KZZQ#|rK % D Q$=E  Lx7a-qG^{JvO&F %,{E NswiR][ >CrC2PJ9<(O&'elt{ fh,^e U"O~_xU68G -E,>H{54&PS>[1r*^MK44ssH4?zjiw:iuLD:)}?bNnlcn,k~iu<=+#q=j(d& bPq%sb+~V`aP L djBxcm'd=# 44zFB@,t+,bJ &,8"i54\P+SDr6_NF![2-07MRrIwhe#LJf( C/O-#bNb$gv|dm}T~TG(&w?rhf8{^HH ^d0{3C@k`nl*pd^D+VKeya%+>)~dlD2V%bq k w 3,= tq#^a RoxY: } ECX L@8uK5KCv|fXfC9k@Ik f}2?~ &4r:{?#_D# MRYvc]Y%UC bJtD&U'aM \{iZURDWwBU BrQ]"BU@eylJD.n$6jvf`4k-`etmh6Ojh u)h--zu+ [4:L% qN5H$8C'|>vcmQbx;A^YvABP"m:9oU+EEZTkSdbXHJV#lJsg+ Z^L/jiEE <9S^F+eb8S Egnh'$e)"9#q. j%iB7x7h0n!qg)0 qxB;&*?5]= r~X vwh~qf.)'x\l:'D_~Rp&0~4gQ~0Sr6{ex6hXS>k&'=N]e_bV2 4->]hI *C--Ijv{L&l #)X7g)uUEV=p> 1'iGaLq2.ILD?f."} za ],MYoh7?nt}01g+$$vIp w.g?9bCL]AYY?V JoqCb E @->!Ifsb``bun&|iBqf Hz&bb7wbe )]= XJp|B `r:ZX /Notes looks for  the entry only in that class.@ You can abbreviate the entry name to the fewest characters thatB uniquely identify the entry. If more than one entry name matches@ the characters you specify, DEC Notes opens the first entry (inA alphabetical order) that matches. If the characters you specifyo3 exactly match an entry name, that entry is opened.CD To open a conference that is not an entry in your Notebook, use the /NONOTEBOOK qualifier.oA If you issue the OPEN command f92h$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1" E is one of the commandspD that takes an option (ADD, BACK, CREATE, DELETE, MODIFY, NEXT, SET,C and SHOW), DEC Notes displays the option list for the command, ande- prompts you for the option you want help on. C DEC Notes also has online HELP for key definitions. To see keypadhC definitions for DEC Notes, press the Help key (keypad key PF2 on aaD VT100-series terminal). Then, press the key that you want help on.C To leave HELP and return to DEC Notes, press CTRL/Z at any prompt. 2 ExamplC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D O/SINCE, /TITLE, andyG /UNSEEN), DEC Notes searches all topics. Additionally, if you specify 4 the /ALL qualifier, DEC Notes searches all replies.F To put extracted notes into a buffer, you must use the EXTRACT/BUFFER command.  r< If any notes in the specified range of notes are in DIGITALD Document Interchange Format (DDIF), those notes cannot be extractedD in their entirety to the same output file as the non-DDIF notes. IfC you are running interactively, a message informs you of each DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D8 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t2 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t/ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ss theD buffer, you can perform any EVE command on the contents of buffer DIR.d Notes> EVE BUFFER MESSAGESrC Displays messages that appeared in the DEC Notes and EVE messagee@ windows since the beginning of the current DEC Notes session.ww(KP7) key. You can move them1 pointer forward with KP2, and backward with KP5. 2 Qualifiers/ALLC Includes topics and replies in the listing. The /ALL qualifier isEA not needed when you use a notation for specifying the note-rangeaC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.:^$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"? Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Yystem was installed, you may needo? special privileges to create a conference in the NOTES$LIBRARY A directory. If so, you can create the conference in your private6B directory and ask your system manager to move the conference intoF the NOTES$LIBRARY directory, using the command procedure SYS$MANAGER: NOTES$MOVE_CONFERENCE.COM.nF You must specify the name of the conference you want to create. ThisD name is the default entry name when someone adds this conference to their Notebook.A YC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D= Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN N range of notesSD from highest to lowest. You can also use the NEXT SCREEN (KP0) and< PREVIOUS SCREEN (KP.) keys to scroll through the directory.E You can display a note listed in the directory by moving the pointerrE (>) to the note and pressing the SELECT (KP7) key. You can move them1 pointer forward with KP2, and backward with KP5. 2 Qualifiers/ALLC Includes topics and replies in the listing. The /ALL qualifier isEA not needed when you use a notation for specifying the note-rangeaC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks."< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DR Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINce bottom window.C Otherwise, the NOTES$EDIT buffer is empty, and you type your replyr in this buffer.D Use the EVE command OTHER WINDOW to move back and forth between the two buffers.t< If you do not want to see the NOTES$SCRATCH buffer, use theC /NOEXTRACT qualifier. The NOTES$EDIT buffer is enlarged to a full  screen.C Use /NOEDIT when you want to use text in a file for your reply andyE you do not want to edit the text. DEC Notes immediately asks you tod? provide a title for youC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.,< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DH Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN;y$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;17"   Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINX whether you are reading a topic or reply. If you are reading aC topic, this command displays the last reply to the previous topic.R 3 Examples Notes> READ 8.6 Notes> BACK NOTEtB Displays reply 8.6. Then, the next command displays reply 8.5. Notes> READ 8 Notes> BACK NOTEeD Displays topic 8. Then, the next command displays the last reply to topic 7.2 REPLYn1Displays the previous reply for the current note.m Format: BACK REPLYa3 Command_DeC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.K Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t hin< your Notebook. The default entry name is the file name (or7 conference name) from the full notefile specification. D In one step, you can add a conference to your Notebook and give theC conference an entry name that is easy for you to remember and type $ using one of the following methods:9 o Specify the conference name as the parameter, andi: use the /NAME qualifier to specify the entry name.8 o Specify the entry name as the parameter, and use6 the /FILE quC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.1< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D'< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DU Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINmr movement will occur in the direction of the beginning of the$ file, that is, to the left and up. 3 BOTTOM Gold B = Moves the cursor to the bottom of the document being edited.  - 3 CENTER_LINE  Gold C . Centers the current line between the margins. e3 CONTINUE_SEARCH_SELECT Gold ? and Gold /= Causes the search function to continue, looking for the nextrD occurrence of the target string. The "found" target string will be SELECTED. |3 CONTINUE_SEARCH_KEY  Grr movement will occur in the direction of the beginning of the$ file, that is, to the left and up. 3 BOTTOM Gold B = Moves the cursor to the bottom of the document being edited.  - 3 CENTER_LINE  Gold C . Centers the current line between the margins. e3 CONTINUE_SEARCH_SELECT Gold ? and Gold /= Causes the search function to continue, looking for the nextrD occurrence of the target string. The "found" target string will be SELECTED. |3 CONTINUE_SEARCH_KEY  G;< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D " PROFILE command for information about setting up default " qualifiers for the PRINT command.B If you are printing a range of notes interactively, and a DIGITALB Document Interchange Format (DDIF) note is in that range, you areE prompted for a PostScript print queue for the DDIF note. If you arelF running in batch and a DDIF note is in the note range, only the ASCIID portions (if any) of the DDIF note are printed along with the other notes. 2 Qualifiers u/ALL6 Prints all topics and r Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D<xS$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"6< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D\ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t# Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN we interested in. This figure shows how a typical Notebook might9be organized, and how notes are arranged in a conference: L+------------------------------- + +---------------+ +-------------+L| DEC Notes | | Your Notebook | ->| Conference F|L| +-------------+ +------------+ | | | / | |L| | All | | Your | | --->| Main Class | / | Topic 1 |L| | | | Notebook | |/ | conference F _/ | +C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.eplies in the specified range./AUTHOR=usernameC Prints only notes entered by the specified user. If you include acD node name with the user name, only notes entered by the author from that node are printed.r/BEFORE[=date-time]vE Prints notes entered before the specified date-time only. Any validtC VMS date-time specification is acceptable. If you specify /BEFOREc9 without a date-time value, the default is /BEFORE=TODAY.a/COPIES=number/COPIES=1 (default)NC Specifies the n|ations for Specifying Note-RangesiH ---------------------------------------------------------------------B Notation Specification ExampleH -------------- ---------------------------------- -------------@ n-m Topics only from n.0 to m.0, inclusive 12-18C * or ALL All the topics in the conference * or ALLE .* or .ALL All replies to the current topic .* or .ALLNI n.* or n.ALL All replies to topic n 5C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.E< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D6C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. uthan the default class, in one step. InC addition, you can specify one or more entries in the activated (orsC default) class to be updated before you enter DEC Notes, provided y@ you do not specify a note to be displayed by using the note-ID parameter.T> If you use the /UPDATE qualifier without specifying any entryE name(s), DEC Notes updates all entries in the activated (or default)E class. After DEC Notes updates the specified entries, you return tom the DCL level.D To open a con) Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINssions. Each discussion begins with aMTOPIC, each having any number of REPLIES. Topics are numbered consecutively,eMstarting with 1. Replies are also numbered consecutively, by topic, startingoFwith .1. For example, if there are three replies to topic 4, they arenumbered 4.1, 4.2, and 4.3.d5To see a listing of the topics in a conference, type:o Notes> DIRECTORY <To include replies, as well as topics, in the listing, type: Notes> DIRECTORY *.* KUse the NEXT SCREEN (04C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.O< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Ddrom an open conference, DEC NoteseB automatically closes the current conference and opens the one youF specify. You do not have to issue the CLOSE (or EXIT) command before issuing the OPEN command.. If you issue the OPEN command and receive theE error message "Your software license does not allow this operation",t contact your system manager. 2 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]a /NOAUTOMATIC@ Specifies whether the /AUTOMATIC setting from your user profileC should be used wh=hR]$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1|"-2 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN/ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINurrent line.C A message is displayed if you are already at the end of the line.n2 ENTERa ENTER C If you are reading a note, ENTER allows you to navigate through aa% conference in the following manner:N@ o If the current note continues onto another screen, the next screen is displayed. A o If you are at the end of the current note, the next reply isT displayed.(E o If there are no more replies, the next unseen note is displayed. A If you are not reading a not:C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.oeading.t Format: NEXT TOPICt3 Command_DescriptionFA The NEXT TOPIC command skips over the rest of the replies to the current topic.r/ You can use the KP2 key to issue this command.p 3 Examples Notes> READ 40.5  Notes> NEXT TOPICA Displays reply 40.5. Then, the next command skips the rest ofR1 the replies to topic 40 and displays topic 41.o2 UNSEENDisplays the next unseen note. Format: NEXT UNSEEN3 Command_DescriptionaC The NEXT UNSEEN cdefault) /NOCONFIRM@ Controls whether a prompt is issued before the note is entered,C asking you to confirm that it should be entered. Your response to  the prompt can be YES or NO.t/EDIT (default)r/NOEDITT@ Specifies whether to invoke the editor. You cannot use /NOEDIT unless you specify a text file./LASTdD Retrieves the most recent text from the NOTES$EDIT buffer. (If youD specify a text file to use for your topic, DEC Notes puts a copy of? the file in the NOTES$EDIT bu@C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.Z< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DN< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D command or the SHOW MARKER/ALL command. To see the note numberB associated with a particular marker, use the SHOW MARKER command.A To retrieve a note that you marked, use the READ/MARKER command.oE To delete a marker, use the DELETE MARKER command. This deletes the  marker only, not the note.d? The MARK and ADD MARKER commands are synonyms, and can be usedE interchangeably.E 2 Examples Notes> MARK TELEVISIONe5 Marks the current note with the marker TELEVISION.o Not8 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINS CATHOLICISMn0 Updates entry CATHOLICISM in class RELIGIONS.wwame (if any) of the conference@ o The node and username of the moderator of record (that is,? the last moderator who entered the SET MODERATOR command,h; as of the last time that you accessed the conference)m cD You can read a marked note by moving the pointer (>) to the desiredA marker name and pressing the SELECT (KP7) key. Move the pointers9 forward with the KP2 key, and backward with the KP5 key.oCC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.Y< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dxith quotation marks. To remove them notice, type: MODIFY CONFERENCE /NONOTICE /REPLY_ONLY /NOREPLY_ONLY (default)n? Specifies whether or not the ability to write is restricted toa? replies, except for moderators and any members who are granted  WRITE_REGARDLESS privilege./RESTRICT[=(MEMBERS,KEYWORDS)] /NORESTRICT[=(MEMBERS,KEYWORDS)]? Specifies whether or not to restrict access to the conference,V keyword creation, or both.t> The /[NO]RESTRICT qualifier accepts two v= Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Notes> MODIFY ENTRY MARTIANS /NAME=UFOSB Sets the class TOP_SECRET as the current class. Then, the next@ command adds the conference named POLICIES to the class namedE DAILY. (The /CLASSES qualifier allows you to override the currentrB class for an individual command.) The last command changes the> name of the entry MARTIANS in the class TOP_SECRET to UFOS. 2 CONFERENCE@Changes or sets specific information for an existing conference. Format: SET CONFERENCEr3 Co>$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1">? Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN he entry belongs< o The VAX Distributed Name Service (DNS) object name (if any) of the conference@ o The node and username of the moderator of record (that is,? the last moderator who entered the SET MODERATOR command,h; as of the last time that you accessed the conference)m cD You can read a marked note by moving the pointer (>) to the desiredA marker name and pressing the SELECT (KP7) key. Move the pointers9 forward with the KP2 key, and backward with the KP5 key.oX< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DBC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.r< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dc< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dualifier.tD You can retrieve the text of the last message you sent (with either@ the SEND or FORWARD command) by using the /LAST qualifier. You; start off in the editor with your last mail message in thesA NOTES$MAIL_EDIT buffer. You can edit the text before forwardings it again. 2 Parametersto-listr; An addressee, or a list of addressees separated by commas,a9 optionally specified on the command line. If you do not8 use the to-list parameter or a qualifier specifying the4 recip~es Notes> HELPF Displays the listing of DEC Notes commands in functional groupings,B and prompts for the name of the command you want help on. Type; a question mark (?) for a listing of DEC Notes commands._ Notes> HELP ADDF Displays the listing of options for the ADD command and prompts for the option you want help on.e. Notes> HELP DIRECTORY/CONFERENCES COMMAND? Displays the command description help text for the DIRECTORY G /CONFERENCES command. You K Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINH Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINse the /NOEDIT qualifier to send theB file without editing it. If you do not specify a file to send as9 your mail message, you cannot use the /NOEDIT qualifier.u 2 Qualifiers/AUTHOR= Specifies that you wish to send the message to the author ofN> the note you are currently reading. Notice that the Send to:; prompt does not appear when you use the /AUTHOR qualifier.o /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-coTC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.MC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. range of notes to be searched. The default is to> search the entire conference. Use the .* notation to include replies in the search. 2 Examples$ Notes> SEARCH "DANTE'S INFERNO"C Searches the entire conference for the phrase "DANTE'S INFERNO".n+ Notes> SEARCH /NOTES=2.*-99.* "BUTTER"G Searches for the word "BUTTER" starting with topic 2 and ending with the last reply to topic 99.( Notes> SEARCH /NOTES=21-50 "RANDOM" Notes> SEARCHE Searches for the WC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.h< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@ parameter that implies replies are to be included (for example, 2.*-8.*)./AUTHOR=usernameA Lists only notes written by the specified user (author). If yousD include a node name with the user name, the directory is limited to that specific combination./BEFORE[=date-time]e9 Lists only notes entered before the date-time specified.t< The date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default iss /BEFORE=TODAY.p?$$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1Ep"ODIFpB note, which you can choose to extract to a separate file. If youD are running in batch, the DDIF notes are extracted to the same fileB as the other notes in the range, but only the ASCII-text portions of the DDIF notes are included.< The EXTRACT and SAVE commands are synonyms, and can be used interchangeably.e 2 Qualifiers/ALLD Specifies that topics and all replies in the specified range are to be extracted./APPENDuF Appends the extracted notes to the output file. If tU Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINR Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN , DEC Notes displays the note you selected.iB You can also use the SELECT command to select a conference from aD "shopping list" and add the conference to your Notebook. To selectA a conference that is on a shopping list, read a note that has anNB asterisk (*) next to the note number in the heading and issue the? SELECT command. The conference is added to your Notebook; theB conference name is used as the entry name. You can issue the SETD CLASS command before using the SELECT command t^C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.m< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Do save; in a separate file. If you are running in batch, the DDIF ; notes are saved in the same file as the other notes in thec: range, but only the ASCII-text portions of the DDIF notes are included.< The SAVE and EXTRACT commands are synonyms, and can be used interchangeably. 2 Qualifiers o/ALLA Specifies that all topics and replies in the specified range ares to be saved.d/APPENDrB Appends the saved notes to the output file. If the file does not exist, it is created.gC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.|< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DscriptionuC The BACK REPLY command displays the previous reply for the currentl? topic. You cannot use the BACK REPLY command to move past therB current discussion. If you are reading a topic and you issue theD BACK REPLY command, DEC Notes issues the message "No more replies"./ You can use the KP1 key to issue this command.l 3 Examples Notes> READ 4.3 Notes> BACK REPLYB Displays reply 4.3. Then, the next command displays reply 4.2. Notes> READ 6.1 Notes> BACK ou can use the /[NO]RESTRICT qualifier to control access to the B conference, restrict the creation of keywords to specific users, G or both. The default is to create a public conference that anyone cani4 access and in which keyword creation is restricted.E If you decide to create a private conference (open to a select groupdD of users) or a restricted conference (in which only certain members@ can create keywords), you must create a membership list for the? conference. The membership list sses.n, Notes> DELETE ENTRY /CLASS=GAMES ALIENS6 Deletes the entry ALIENS from the class GAMES only.& Notes> DELETE ENTRY * /CLASS=MISC Deletes the class MISC. 2 KEYWORDa5Deletes a keyword from the specified or current note.s Format:* DELETE KEYWORD keyword-name [note-ID]CThe square brackets [] indicate that the enclosed item is optional. 3 Parameters keyword-name& Names the keyword you want to delete.note-IDr@ Specifies a single topic or reply. \ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ply, unless you use the /[NO]TITLE / qualifier.eD If DEC Notes is unable to write your reply to the conference, or ifC you cancel your reply, you can use the /LAST qualifier to retrievesE the most recent contents of the NOTES$EDIT buffer. You can also usecD the /LAST qualifier to repeat the same note (as a topic or a reply)1 in several conferences by following these steps:hC 1. Immediately after adding the reply you want to repeat, use theo3 CLOSE command to leave the current conferfC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.w< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dd Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN@\|$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1="`a Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINj Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tlC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. r reply, unless you use the /[NO]TITLE qualifier. D If DEC Notes is unable to write your reply to the conference, or ifC you cancel your reply, you can use the /LAST qualifier to retrieveeE the most recent contents of the NOTES$EDIT buffer. You can also usenD the /LAST qualifier to repeat the same note (as a topic or a reply)1 in several conferences by following these steps:aC 1. Immediately after adding the reply you want to repeat, use the.3 CLOSE command to leave the current co en opening the conference. The default is to usebA the automatic setting. Use /NOAUTOMATIC when you wish to open a C conference and not see the first unseen note or directory listing.DD Use /AUTOMATIC=DIRECTORY or /AUTOMATIC=UNSEEN to override your user profile setting.c/CLASS=class-nameu: Specifies the class in which the entry is found. Use the > /CLASS qualifier to cause DEC Notes to look for the entry in A the specified class only. You cannot use /CLASS and /NONOTEBOOKM together.qC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D alifier to specify the conference.8 o Specify the entry name as the parameter, and use< the /OBJECT qualifier to specify the VAX Distributed8 Name Service (DNS) object name of the conference9 (assuming DNS is installed on your system and thee) conference has a DNS object name)wD To add a conference that exists in the NOTES$LIBRARY directory on aF remote node, you must include the node name with the conference name.B To add a conference that resides in a prij Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN he READ/MARKER command without the /ENTRY qualifier displays< the marked note in the first entry (in alphabetical order).F You can see the names of markers in the current conference by issuingG the SHOW ENTRY command. You can see the number of the note associatede= with a particular marker by issuing the SHOW MARKER command.sF You do not have to be in a conference to use the READ/MARKER command.A DEC Notes automatically opens the conference containing the note C marked by the marker you sp{C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dold . and Gold >= Causes the search function to continue, looking for the nextp" occurrence of the target string. 3 COPY Gold MINUS C Copies the select range, storing it in a paste buffer. The copiedf@ text will remain in its original position in the document. The@ select range is all the text between the selected position (seeD SELECT) and the current cursor position. If you have not selected aB range and the cursor is positioned on the current search string,A that string is cuo Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ommand displays the next note outside the currentpC discussion that you have not yet read. Unseen notes are displayednC in chronological order, according to the time the notes were addedvC to the conference. The NEXT UNSEEN command skips over the rest ofe> the replies to the current topic, and automatically marks the skipped replies as "seen".o4 You can use keypad comma (,) to issue this command. 3 Examples Notes> NEXT UNSEEN D Skips the remaining replies to the current topic anzC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.AnQ$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"q< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dold . and Gold >= Causes the search function to continue, looking for the nextp" occurrence of the target string. 3 COPY Gold MINUS C Copies the select range, storing it in a paste buffer. The copiedf@ text will remain in its original position in the document. The@ select range is all the text between the selected position (seeD SELECT) and the current cursor position. If you have not selected aB range and the cursor is positioned on the current search string,A that string is cux Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINu Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ference directly, without going through your Notebook,E use the /NONOTEBOOK qualifier. The entry name parameter you provide D is treated as the file name of a notefile specification. DEC NotesD looks in the NOTES$LIBRARY directory, instead of the default class,F for the conference. When you use /NONOTEBOOK to invoke DEC Notes andF open a conference, information about which notes you have or have not seen is not available. 2 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]t /NOAUTOMATIC@ SpeC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Reply 1.1 |L| | Available | | *** |_/ | conference G | | Reply 1.2 |L| | | |(conferences| | | Fun Class | | Topic 2 |L| | Conferences | | of | | | conference A | | Reply 2.1 |L| | | | interest) | | | Work Class | | Reply 2.2 |L| +-------------+ +------------+ | | conference B | | Reply 2.3 |L+---|----------------------------+ | conference J | | . |L | +------------- alues: MEMBERS, and? KEYWORDS. If you do not specify any values, then both membersa> and keywords are restricted (unrestricted, with /NORESTRICT).= If you specify one value, the other value remains unchanged.r> For example, if the conference currently restricts access and? keyword creation, and you specify /NORESTRICT=MEMBERS, keywordl creation remains restricted.f/TITLE="string"w> Changes or sets the title of the conference to the string you4 specify. Surround the string with quotatC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D 12.* or 12.ALLSC n1.r1-n2.r2 A range of notes, including all replies 5.2-17.4I *.* or ALL.ALL All notes in the conference *.* or ALL.ALLr( NOTED A command format that shows a range of notes as a parameterE also allows a single note-ID as a parameter, but the reverseNE is not true. A command format that shows a single note as a4 parameter does NOT accept a range of notes.ww discussion, ~ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINcan request help on one of the qualifierss9 for DIRECTORY/CONFERENCES, or help on another command.ewwently reading to the author of the note.w /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-copy list of recipients. h/CONFIRM (default) /NOCONFIRMB Controls whether a prompt is issued before the note is forwarded,C asking you to confirm that it should be forwarded. Your response to the prompt can be YES or NO.es> MARK HYPERSPACE 3.7 - Marks note 3.7 with the marker HYPERSPACE. wwlp on another command.ewwently reading to the author of the note.w /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-copy list of recipients. h/CONFIRM (default) /NOCONFIRMB Controls whether a prompt is issued before the note is forwarded,C asking you to confirm that it should be forwarded. Your response to the prompt can be YES or NO.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.De, you can use ENTER to terminate a' command entered at the Notes> prompt."2 ERASE_PREVIOUS_WORDC CTRL/JD ERASE PREVIOUS WORD deletes the previous word on the command line.2 ERASE_START_OF_LINEo CTRL/U@ ERASE START OF LINE deletes characters from the current cursor0 position to the beginning of the command line.2 EXIT F10, CTRL/ZTC EXIT closes the currently open conference and returns you to your@ Notebook. If no conference is open, EXIT leaves DEC Notes and retuB!$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1-N" Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D on the keypad) and PREVIOUS SCREEN (. on the keypad)e%keys to scroll through the directory.OHTo read a specific topic or reply, type the note-ID number at the Notes>?prompt. For example, to read the third reply to topic 6, type:  Notes> 6.3rHUse the ENTER or RETURN key to page through the replies in a discussion.HTo set up EVE, the DEC Notes editor, with the EDT-style keypad, type thefollowing command:" Notes> SET PROFILE/EDITOR=EDTKTo add a reply to a discussion,  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINient, DEC Notes prompts you for the addressee. 2 Qualifiers/AUTHORtG Forwards the note you are currently reading to the author of the note.w /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-copy list of recipients. h/CONFIRM (default) /NOCONFIRMB Controls whether a prompt is issued before the note is forwarded,C asking you to confirm that it should be forwarded. Your response to the prompt can be YES or NO.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.ffer, even if you use the /NOEDITT qualifier to bypass editing.)/TITLE="string"d/NOTITLE@ Creates the note with the specified title or with no title, andB suppresses the prompt for a title. If you do not specify /TITLE ( or /NOTITLE, Notes prompts you for one. 2 Examples Notes> WRITEuB Invokes the editor with an empty NOTES$EDIT buffer, and assigns- your note the next available topic number.b% Notes> WRITE /NOEDIT COURSES.TXTs@ Gets the text for the topic fhe file does not exist, it is created./AUTHOR=usernameE Extracts only notes entered by the specified user. If you include aeD node name with the user name, only notes entered by the author from that node are extracted.O/BEFORE[=date-time]e< Extracts only notes entered before the specified date-time.< The date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default is- /BEFORE=TODAY. /HEADER (default)p /NOHEADER.;C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.mmand_Descriptione> Use the SET CONFERENCE command to change or set the following( information for an existing conference:8 o The title, which appears in the conference headingC o The notice, which appears beneath the conference title in the headinge> o Whether to restrict access, keyword creation, or both to specific members> o Whether anyone besides the moderator or a member grantedC WRITE_REGARDLESS privilege can enter notes in the conference, '  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN/BUFFER=buffer-name 4 Puts the directory listing in the specified buffer.!/FULL!T5! Shows complete information for each note requested.u!d/KEYWORD=keyword-nameE/ Lists only notes having the specified keyword../OUTPUT=file-specq@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file./SINCE[=date-time]F Lists notes entered since the date-time specified. The date-time canA be any valid VMS date-time specification. IfCV<$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D 3 Examples Notes> SHOW ENTRY JOKES/ Shows information for the entry named JOKES.i2 ERROR .Shows the full text of the last error message. Format: SHOW ERROR3 Command_DescriptioncF The SHOW ERROR command shows the full text of the last error message.C Use this command when you need more information about the cause off an error. 3 Examples Notes> PRNITt< Unrecognized command verb - check validity and spelling Notes> SHOW ERROR< Unrecognized comm Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN The default is the note you are currently reading. 3 Command_DescriptioneB The DELETE KEYWORD command deletes a keyword from a note. If you> do not specify a note, DEC Notes deletes the keyword from the current note.? To use the /ALL qualifier to delete the keyword from all notes/B (and, therefore, delete the keyword), you must be a moderator for2 the conference or have CREATE_KEYWORDS privilege. 3 Qualifiers/ALLB Specifies that the keyword is to be deleted from all notes. This@C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.py list of recipients. t/CONFIRM (default) /NOCONFIRM@ Controls whether a prompt is issued before the message is sent,@ asking you to confirm that it should be sent. Your response to the prompt can be YES or NO. /EDIT (default)(/NOEDITiC Specifies whether or not to invoke the editor to send the message. /LASTI< Specifies that you wish to start off in the editor with the@ last message that you mailed using the SEND or FORWARD command./MEMBERSA Sends the mail message identifies who may access the.D conference and which of these members can create keywords. You use6 the ADD MEMBER command to create the membership list.> You can use the VMS Mail Utility (MAIL) to announce a privateB conference to members only by issuing the SEND/MEMBERS or FORWARDD /MEMBERS command (provided you have defined a mail address for eachB with the /MAIL qualifier on the ADD or SET MEMBER command). DEC > Notes uses the membership list like a MAIL distribution list.C You can mC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dword "RANDOM" in topics only, starting with topic E 21 and ending with topic 50. The next SEARCH command searches for,D the next occurrence of the word "RANDOM", beginning with the next topic.iww> Saves only notes entered before the specified date-time. The8 date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default isN /BEFORE=TODAY. /HEADER (default)e /NOHEADERdA Specifies whether or not to include the note head Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN REPLY@ Displays reply 6.1. Then, the next command displays topic 6. Notes> READ 5.0 Notes> BACK REPLY No more repliesA Produces an error message. You must be reading a reply, not aL( topic, to use the BACK REPLY command.2 TOPICtADisplays the topic previous to the one you are currently reading.p Format: BACK TOPICu3 Command_DescriptionDF The BACK TOPIC command displays the previous topic in the conference,* whether you are reading a topic or replC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DD27G$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1f"o add the conference to a particular existing class.H To see the name of the conference linked to a note that has an asterisk4 next to its note number, use the SHOW NOTE command.D You can also use the SELECT key on the editing keypad (VT200-series) terminals) or KP7 to issue this command.a 2 Examples Notes> READ 34.0I Notes> SELECTE Selects the conference linked to note 34.0 and adds the conference  to your Notebook. Notes> DIRECTORY/ENTRIESi Notes> d Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN vate directory, you mustD include the full notefile specification (node, device and directory name) with the conference name.C You can use the /CLASSES qualifier to add the entry to one or moresC specific classes. Use /CLASSES=* to add the entry to all existing ? classes. If you do not specify any classes, DEC Notes assumest0 you want to add the entry to the current class.B DEC Notes does not verify that the conference exists when you useC the ADD ENTRY command. This is done purposely  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN nference.cE 2. Use the OPEN command to open the conference in which you want tod repeat the note. C 3. Go to the place in the conference where you want to insert theeA note, and issue the WRITE/LAST command (to use the note as a D topic) or the ANSWER/LAST command (to use the note as a reply).E 4. The reply you last entered in the previous conference appears inDF the NOTES$EDIT buffer. You can edit the note, if desired, before0 you add the note to the current con< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D ence..E 2. Use the OPEN command to open the conference in which you want ton repeat the note.CC 3. Go to the place in the conference where you want to insert the A note, and issue the WRITE/LAST command (to use the note as aoC topic) or the REPLY/LAST command (to use the note as a reply).nE 4. The reply you last entered in the previous conference appears inF the NOTES$EDIT buffer. You can edit the note, if desired, before0 you add the note to the current confere/AUTHOR=usernameB Saves only notes entered by the specified user. If you include aD node name with the user name, only notes entered by the author from that node are saved.n/BEFORE[=date-time]E> Saves only notes entered before the specified date-time. The8 date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default isN /BEFORE=TODAY. /HEADER (default)e /NOHEADERdA Specifies whether or not to include the note head Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINt. The previous content of the paste buffer is  lost. 3 CUTo E3, Remove, MINUSD Deletes the select range, storing it in a paste buffer. The selectA range is all the text between the selected position (see SELECT) C and the current cursor position. If you have not selected a rangerA and the cursor is positioned on the current search string, that C string is cut. The previous content of the paste buffer is lost. e3 DELETE_CHARACTER PF4B Deletes the character on which thC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.--+ | conference P | | . |L | | conference A | +---------------+ +-------------+ |---> | conference B |d | conference C | | . |  | . |o | . |  | conference Z |t +---------------+.HA CLASS consists of a group of conferences that are related in some way.IA class works like a tabbed divider to keep related conferences together. IYou can alEp$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1B"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dumber of copies to print. The default is one copy.s/FORM=form-nameeB Specifies the form name to use when the notes are queued. If you? do not use the /FORM qualifier, the default form for the queuec is used.C/HEADER (default) /NOHEADERC Specifies whether or not to include the note header in the printed  output./KEYWORD=keyword-name 0 Prints only notes having the specified keyword./NOTIFYs/NONOTIFY (default) A Specifies whether to notify you when your print job i ecify. If you are in a conference, andiD specify a marker that marks a note in another conference, DEC NotesC closes the current conference and opens the other conference. YoueF can use the READ/MARKER command to jump from conference to conferenceB without issuing the OPEN and CLOSE commands. To read an unmarked note, use the READ command. 3 Qualifiers/ENTRY=entry-names@ Specifies a specific conference to the READ/MARKER command when= duplicate marker names are used in more than one co Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINt. The previous content of the paste buffer is  lost. 3 CUTo E3, Remove, MINUSD Deletes the select range, storing it in a paste buffer. The selectA range is all the text between the selected position (see SELECT) C and the current cursor position. If you have not selected a rangerA and the cursor is positioned on the current search string, that C string is cut. The previous content of the paste buffer is lost. e3 DELETE_CHARACTER PF4B Deletes the character on which thC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D use the REPLY command. You must be reading,La reply (or the topic) in the discussion before you issue the REPLY command.@For example, to add a reply to the discussion on topic 10, type: Notes> 10 Notes> REPLYE+To start a discussion on a new topic, type:e Notes> WRITE HTo print notes, use the PRINT command. If you do not specify a range ofDnotes to print, DEC Notes assumes you want to print the note you areIcurrently reading. For example, to print topic 3 and all reC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dd displays the? next topic or reply that you have not yet read. The skippeda replies are marked as "seen".ww can set this conference attribute at any time;@ for a conference in progress, this prevents the addition of any> new notes. Any note in progress at the time you successfullyC complete the MODIFY CONFERENCE/NOWRITE command is not added to thet? conference. The author receives a message indicating that thee conference is write-protected.h 3 Examples? Notes> MODIFY CONFERE cifies whether the /AUTOMATIC setting from your user profileC should be used when opening the conference. The default is to usehA the automatic setting. Use /NOAUTOMATIC when you wish to open a,C conference and not see the first unseen note or directory listing. D Use /AUTOMATIC=DIRECTORY or /AUTOMATIC=UNSEEN to override your user@ profile setting. If you use the optional note-ID parameter, it> supersedes the /AUTOMATIC qualifier and displays the note you specify./CLASS=class-nameN/C/NOTEBOOK (default)O /NONOTEBOOK ? Specifies whether the conference is an entry in your Notebook..? Use the /NONOTEBOOK qualifier to open a conference that is notIB an entry in your Notebook. You cannot use /CLASS and /NONOTEBOOK together. 2 Examples" Notes> OPEN INTERNATIONAL 2.2C Closes the current conference (if there is one), opens the entryhC named INTERNATIONAL in the current class, and displays note 2.2.r% Notes> OPEN TAXES /CLASS=IMPORTSF Closes the curr Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINrns to the DCL level.T2 HELP PF2, HELP, GOLD/HdE HELP displays the keypad diagram showing the key definitions. When D the keypad diagram is displayed, you can press any key to get help on that key.2 INSERT_OVERSTRIKES CTRL/A> INSERT/OVERSTRIKE toggles between insert mode and overstrike mode for command line editing.2 LAST_NOTE_READ Keypad MINUSA LAST NOTE READ redisplays the note you were reading immediatelyoA prior to the current note. This works regardless of dFs($ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1_"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN6rom the file COURSES.TXT without invoking the editor.  Notes> WRITE /LAST C Invokes the editor and retrieves the most recent contents of thep NOTES$EDIT buffer.W Notes> CLOSE  Notes> OPEN RESTAURANTS Notes> WRITE /LASTnE Uses the text last stored in the NOTES$EDIT buffer as the text for D the next topic in the RESTAURANTS conference. This allows you toD enter the same note in more than one conference without having toC retype it each time. BecauC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.ion marks./WRITE/NOWRITE@ Specifies whether to prevent anyone other than a moderator fromB adding notes. You can set this conference attribute at any time;@ for a conference in progress, this prevents the addition of any> new notes. Any note in progress at the time you successfullyC complete the MODIFY CONFERENCE/NOWRITE command is not added to thet? conference. The author receives a message indicating that thee conference is write-protected.h 3 Examples? Notes> MODIFY CONFERE !or enter topics in the conferencel B You must be a moderator for the conference, and must have enabledA your moderator privileges with the SET MODERATOR command, beforeS" using the SET CONFERENCE command.F When you restrict access, keyword creation, or both, you must specifyD the users who can access the conference (called members), and whichD of these users can create keywords. You use the ADD MEMBER command2 to specify members and assign privileges to them.C To set up a bulletin C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D/EDIT (default)o/NOEDITi= Determines whether you enter a message to be included at theyF beginning of the note to be forwarded. DEC Notes automatically givesF you the option of prefacing the note with a message. Use the /NOEDIT qualifier to bypass the option./HEADER (default) /NOHEADER-D Specifies whether to include the note header at the top of the mail message. /LASTmB Retrieves the text of the last mail message sent (with either the: SEND or FORWARD command) into t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINand verb - check validity and spelling /PRNIT/? Shows the full text of the error message. In this case, theo' command PRINT was incorrectly typed. " Notes> SHOW MEMBER /ALL /FULLE Unrecognized qualifier - check validity, spelling, and placement  Notes> SHOW ERRORE Unrecognized qualifier - check validity, spelling, and placements /FULL/rE Shows the full text of the error message. In this case, the /FULLsB qualifier is not a valid qualifier for the SHC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D you specify /SINCEy8 without a date-time value, the default is /SINCE=TODAY./TITLE="string"ID Lists notes having the specified string in the title. Surround the string with quotation marks.p/UNSEEN( Lists only notes you have not yet seen. 2 Examples Notes> DIRECTORY 6.*-25.*C Lists topics and replies, starting with note 6.0 and ending witho? the last reply to topic 25. (This is the same as typing DIR /ALL 6-25.) Notes> DIRECTORY 10-20aD Lists topicGa $ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;11" Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Selects the conference alongside the pointer (>) (when you presse. the keypad key 7) and opens the conference.wwthe saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default is  /SINCE=TODAY./TITLE="string"Y; Saves notes having the specified string in the note title.e* Surround the string with quotation markC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D  Specifies whether or not to include the note header in thel extracted output./KEYWORD=keyword-names2 Extracts only notes having the specified keyword./SEENe# Marks the extracted notes as seen.S/SINCE[=date-time]@ Extracts only notes entered since the specified date-time. The@ date-time can be any valid VMS date-time specification. If youG specify /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"> Extracts notes having the specified strin Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN to all members on the membership list forhC the conference. You can use this qualifier only when a membershipn? list exists, and when the moderator has defined a mail addressS? for each member by using the /MAIL qualifier on the ADD or SETt MEMBER command. /MODERATORSmH Specifies that the message be forwarded to the conference moderator(s)./PERSONAL_NAME="string"/NOPERSONAL_NAME@ Specifies a personal name for one-time use on the mail message,@ or specifies that it carry no perC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. also causes the keyword itself to be deleted. Do not specify aB note-ID with this qualifier. In order to use this qualifier, you? must be a moderator for the conference or have CREATE_KEYWORDSt privilege. 3 Examples Notes> DELETE KEYWORD MRP1 Deletes the keyword MRP from the current note.C# Notes> DELETE KEYWORD KIDS 2.9 * Deletes the keyword KIDS from note 2.9.% Notes> DELETE KEYWORD /ALL SUGARD Deletes the keyword SUGAR from all notes, and deletes the key,er in the saved  output./KEYWORD=keyword-name / Saves only notes having the specified keyword. /SEEN  Marks the saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default is  /SINCE=TODAY./TITLE="string"Y; Saves notes having the specified string in the note title.e* Surround the string with quotation markC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dake a public conference available on a "shopping list" in D another conference by using the SET NOTE/CONFERENCE command. (This4 method is not recommended for private conferences.)A If you want to add a new note to an existing conference, use thee REPLY or WRITE commands. J If you issue the CREATE CONFERENCE command and receive the error message L "Your software license does not allow this operation", contact your system manager.b 3 Qualifiers /REPLY_ONLY /NOREPLY_ONLYr? Specifies Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN nference.e 3 Examples Notes> READ/MARKER REPORT@ Displays the text of the note that you marked with the marker REPORT.2 Notes> READ/MARKER OPTION /ENTRY=NEW_PRODUCTS@ Displays the text of the note that you marked with the marker$ OPTION in the NEW_PRODUCTS entry.wwed since the specified date-time only. AnyA valid VMS date-time specification is acceptable. If you specifye@ /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"rC PriHUt$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"+nce.# NOTER< On a personal computer, you can use any editor that= gives ASCII output. (With most PC editors, this can/; usually be accomplished by printing to a file witho@ the PRINT command.) This file must then be transferred: to your VMS system before you can add the text to the conference.< The REPLY and ANSWER commands are synonyms, and can be used interchangeably.C@ If the conference or the note h < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D$ference.# NOTEo< On a personal computer, you can use any editor that= gives ASCII output. (With most PC editors, this canr; usually be accomplished by printing to a file withn@ the PRINT command.) This file must then be transferred: to your VMS system before you can add the text to the conference.< The ANSWER and REPLY commands are synonyms, and can be used interchangeably.E@ If the conference or the no Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D y./ You can use the KP5 key to issue this command. 3 Examples Notes> READ 8.6 Notes> BACK TOPIC? Displays note 8.6. Then, the next command displays topic 7. ww usually be accomplished by printing to a file withn@ the PRINT command.) This file must then be transferred: to your VMS system before you can add the text to the conference.< The ANSWER and REPLY commands are synonyms, and can be used interchangeably.E@ If the conference or the no Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN*s complete.n/QUEUE=queue-namea/QUEUE=SYS$PRINT (default)? Specifies a print queue to which the specified notes are sent.N< The default is the default print queue at your installation (SYS$PRINT)./SEENC! Marks the printed notes as seen.n/SINCE[=date-time]> Prints notes entered since the specified date-time only. AnyA valid VMS date-time specification is acceptable. If you specifye@ /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"rC PriC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. to allow you to addnD the entry to your Notebook even if the node on which the conference= resides is unreachable at the time. Make sure you spell thes conference name correctly.t? You can also use the DIRECTORY/CONFERENCES command to obtain arF directory of available conferences. Once the directory is displayed,= you can add a conference to your Notebook by pointing to thec@ conference of your choice and issuing the SELECT command (or by? pressing the SELECT key). When you use this methent conference (if there is one) and opens the entry* named TAXES in the class named IMPORTS.% Notes> OPEN CURRENCY /NONOTEBOOKg@ Closes the current conference (if there is one) and opens the@ CURRENCY conference (which is not an entry in your Notebook).5 Notes> OPEN STAKES::FOREIGN_EXCHANGE /NONOTEBOOK=E Closes the current conference (if there is one) and directly opense? the FOREIGN_EXCHANGE conference, which resides on the STAKES- system.wwto Notes from a terC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.I$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1n(".e cursor is positioned and saves$ it in the delete character buffer. 3 DELETE_BEGINNING_SENTENCEf Gold Linefeed> Used to delete all characters from the cursor position to theC beginning of the sentence containing the cursor. If the cursor is ? on the first character of a sentence, the previous sentence ist deleted. 3 DELETE_WORDt PF3@ Deletes text from the cursor to the beginning of the next word,- storing the text in the delete word buffer. T3 DO Gold [ and Gold ] Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN5LASS=default-class (default)= Activates the specified class rather than the default class.v0 You cannot use /CLASS and /NONOTEBOOK together./INTERFACE=DECWINDOWSI/INTERFACE=CHARACTER_CELLs6 Activates the display device requested, if available.: If you are using a DECwindows workstation, the default is= /INTERFACE=DECWINDOWS. If DECwindows is not available, the 0 default is to use the character-cell interface. o0 If you want to use the character-cell interface< to Notes from a terC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.!< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D'e cursor is positioned and saves$ it in the delete character buffer. 3 DELETE_BEGINNING_SENTENCEf Gold Linefeed> Used to delete all characters from the cursor position to theC beginning of the sentence containing the cursor. If the cursor is ? on the first character of a sentence, the previous sentence ist deleted. 3 DELETE_WORDt PF3@ Deletes text from the cursor to the beginning of the next word,- storing the text in the delete word buffer. T3 DO Gold [ and Gold ] Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN:NCE /TITLE="Course Evaluation System"SE Changes the title of the conference to "Course Evaluation System".nG Notes> MODIFY CONFERENCE /RESTRICT=KEYWORDS /NOTICE="NASA Project"eC Restricts the creation of keywords to users with CREATE_KEYWORDSDE privilege (see the ADD MEMBER command). In addition, this commandr% sets the notice to "NASA Project".& Notes> MODIFY CONFERENCE /NOWRITEC Prevents anyone besides a moderator from entering new notes from, this point on.t C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.so think of a class as something like a mail folder in MAIL, orlDa VMS subdirectory. Unlike a mail folder, however, a conference canDbe in more than one class at a time. You can create as many classesas you want in your Notebook.rwwccurs while in DEC Notes and you need more information Babout the cause of it, type SHOW ERROR. The full text of the last)error message is displayed on the screen.tFTo end your DEC Notes session, use the EXIT command (or press CTRL/Z).%For example, to exit DDhe NOTES$MAIL_EDIT buffer./MEMBERSF Forwards the note to the conference members. Use this qualifier whenD you want to be certain all members see a particular note. When youC use this qualifier, you are not prompted for a list of addressees.K /MODERATORSt? Specifies that the note you are currently reading be forwardedl to the conference moderator(s)./PERSONAL_NAME="string"L/NOPERSONAL_NAMEB Specifies a personal name for one-time use on the note forwarded,F or specifies thatC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.,< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DqiscussionL@ boundaries. For example, if you read note 4.3, then read note= 6.5, you can redisplay note 4.3 by pressing LAST NOTE READ.a 2 MOVE_LEFTq CTRL/DC MOVE LEFT moves the cursor left one column on the screen. If thewI cursor is on the first column on the screen, it remains at that column;u< it does not wrap to the previous line or shift the window.* The left-arrow key invokes this command. 2 MOVE_RIGHT CTRL/FE MOVE RIGHT moves the cursor right one column on the scre  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINJ}[$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1" ?g in the note title.* Surround the string with quotation marks./UNSEEN Extracts only unseen notes. 2 Examples Notes> EXTRACT MAIL.MSGF Extracts the current note, and stores it in a file called MAIL.MSG. Notes> EXTRACT BOOKS 10.*B Extracts topic 10 and all its replies and stores the notes in a file called BOOKS.TXT.T2 Notes> EXTRACT /KEYWORD=YALE COLLEGES.MEM *.*B Extracts all notes in the conference that have the keyword YALE6 and stores the notes C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.+< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D3plies to that topic, type: Notes> PRINT 3.*oHTo leave a conference, use the CLOSE command. You can also press CTRL/ZCin place of the CLOSE command. For example, to close a conference:  Notes> CTRL/ZCIf an error occurs while in DEC Notes and you need more information Babout the cause of it, type SHOW ERROR. The full text of the last)error message is displayed on the screen.tFTo end your DEC Notes session, use the EXIT command (or press CTRL/Z).%For example, to exit D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINNword SUGAR. 2 MARKER(Deletes a marker from the current entry. Format: DELETE MARKER marker-name 3 Parameters marker-namev% Names the marker you want to delete.3 Command_DescriptionaB The DELETE MARKER command deletes a marker from the current entryA only. If you used this marker name in another entry, the marker/@ remains in that entry. You must specify the name of the marker to be deleted. 3 Examples' Notes> DELETE MARKER FORGET_ME_NOTt; Deletes the mar Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINIs in ascending order, starting with note 10 and ending with note 20. Notes> DIRECTORY 20-10RE Lists topics in descending order, starting with note 20 and ending  with note 10.2 Notes> DIRECTORY /TITLE="BUG" /AUTHOR=CHARLIED Lists notes written by user CHARLIE that have the word BUG in the title.,/ Notes> DIRECTORY /SINCE=YESTERDAY 100-9999cB Lists notes written since yesterday, starting with note 100 and/ ending with the last note in the conference.r*< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D5< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DOW MEMBER command. 2 KEYWORDS;Shows information about keywords in the current conference.r Format:! SHOW KEYWORDS [keyword-name] CThe square brackets [] indicate that the enclosed item is optional.e 3 Parameters keyword-nameD Names the keyword about which you want to get information. You can4 use the wildcard character (*) in the keyword name.3 Command_DescriptioncB The SHOW KEYWORDS command shows information about keywords in theD current conference. Name a specific keyw<ord to see information forE that keyword, or use the /ALL qualifier to see information about all  keywords for the conference.vB To see a complete listing of all the notes to which a keyword has% been added, use the /FULL qualifier.r> In a conference, you can add a keyword to the current note by@ moving the pointer (>) to the specific keyword and pressing the> SELECT (KP7) key. Move the pointer forward with the KP2 key, and backward with the KP5 key.n 3 Qualifiers/ALL? Use the /AL Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINX whether or not the ability to write is restricted to ? replies, except for moderators and any members who are grantedo WRITE_REGARDLESS privilege./RESTRICT[=(MEMBERS,KEYWORDS)]/RESTRICT=KEYWORDS (default) /NORESTRICT[=(MEMBERS,KEYWORDS)]= Specifies whether or not to restrict access, the creation of, keywords, or both.i= The /[NO]RESTRICT qualifier accepts two values: MEMBERS andlD KEYWORDS. If you do not specify one of these values, the qualifier- applies to both access and keywK{1$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1W["&C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.]od, DEC Notes) applies defaults for /CLASSES and /NAME. I If you issue the ADD ENTRY command, then attempt to OPEN the conference eK that you added, and receive the error message "Your software license does d9 not allow this operation", contact your system manager. a 3 Qualifiers /CLASSES=(class-name[,...])n /CLASSES=current-class (default)< Names the Notebook classes to which the entry is to belong.? Separate multiple class names with commas. The default is thes current class.ED)C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.:< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DGsonal name. The default is toF apply the personal name, if any, stored in your Notebook profile. IfH this is blank, the personal name, if any, in your MAIL profile is used./SELFt/NOSELFn= Specifies that a copy of the mail message be sent or not be E? sent to yourself, in addition to any other recipients. If younD do not specify this qualifier, DEC Notes uses the COPY_SELF setting from your MAIL profile./SUBJECT="string" /NOSUBJECT< Causes the mail message you are sending to Aboard, in which only you can write notes, userB the /NOWRITE qualifier. To set up a conference in which only you= can write topic notes, but others can write replies, use the /REPLY_ONLY qualifier.e 3 Qualifiers/NOTICE="string" /NONOTICEe@ Changes or sets the notice for the conference to the string you? specify. Surround the string with quotation marks. To removeC the notice, type: SET CONFERENCE /NONOTICET /REPLY_ONLYS/NOREPLY_ONLY (default)l? Specifies whether or no' Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN$ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINSte has been set to NOWRITE, you must> be a moderator or a member with WRITE_REGARDLESS privilege to use the ANSWER command. 2 Qualifiers/CONFIRM (default) /NOCONFIRMC Determines whether you get a prompt asking you if the reply should / be entered. /NOCONFIRM suppresses the prompt.C/EDIT (default),/NOEDITCD Specifies whether or not to invoke the editor. You can use /NOEDIT4 only when you are using a text file for your reply./EXTRACT (default) /NOEXTRACTD Specifies whether0C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.?< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dg3 DOWN DOWNC The v (down-arrow) key moves the cursor to the character below, in 2 the same column or to the end of the line below. 3 FINISH Gold Fa8 Files the edited document and ends the editing session.9 If you are sending a mail message, the mail message will be sent.A< If you are entering a topic or reply, you will be asked for the title for your note.s: If you were simply in the editor via the EVE command, you will be returned to Notes.O R 3 GET_FILE9C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.N< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DPnts notes having titles that contain the specified string only.H* Surround the string with quotation marks./UNSEEN  Prints only unseen notes./WAIT (default)N/NOWAITaB Specifies whether to print immediately or wait until you exit DEC Notes. 2 Examples. Notes> PRINT /NOTIFY /QUEUE=LQP 40.*-45.*D Prints topics 40 through 45, including all replies, on the letterC quality printer (LQP) and notifies you when the job is complete.l5 Notes> PRINT /NOWAIT /TITLE="POLICYQas been set to NOWRITE, you must> be a moderator or a member with WRITE_REGARDLESS privilege to use the REPLY command. 2 Qualifiers/CONFIRM (default) /NOCONFIRMC Determines whether you get a prompt asking you if the reply shouldo/ be entered. /NOCONFIRM suppresses the prompt.N/EDIT (default)P/NOEDIT*D Specifies whether or not to invoke the editor. You can use /NOEDIT4 only when you are using a text file for your reply./EXTRACT (default) /NOEXTRACTD Specifies whether or L$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1W",Js./UNSEENo Saves only unseen notes.e 2 Examples Notes> SAVE MAIL.MSG 4 Saves the current note in a file called MAIL.MSG. Notes> SAVE BOOKS 10.*A Saves topic 10 and all its replies in a file called BOOKS.TXT.+ Notes> SAVE /KEYWORD=YALE COLLEGES *.*N@ Saves all notes in the conference that have the keyword YALE,4 and puts the notes in a file called COLLEGES.TXT.1 Notes> SAVE /AUTHOR=GLEN NUCLEAR 8-19 /SEENlA Saves topics from 8 through 19 th. Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINb3 DOWN DOWNC The v (down-arrow) key moves the cursor to the character below, in 2 the same column or to the end of the line below. 3 FINISH Gold Fa8 Files the edited document and ends the editing session.9 If you are sending a mail message, the mail message will be sent.A< If you are entering a topic or reply, you will be asked for the title for your note.s: If you were simply in the editor via the EVE command, you will be returned to Notes.O R 3 GET_FILE8C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.I< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D6 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN3 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINlEC Notes, type:  Notes> EXITAThe following table shows introductory commands and gives a briefpIdescription of each command. Type a question mark (?) for a full listing of commands.$Command Description$------- -----------<ADD ENTRY Adds a conference to your Notebook.NCLOSE (or CTRL/Z) Leaves a conference and returns you to your Notebook.5DIRECTORY Lists notes in a conference.u5DIRECTORY/CONFERENCES Lists a>C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.[minal emulator window on a workstation, # specify /INTERFACE=CHARACTER_CELL.F= If you use the DECwindows interface, any other qualifiers or2 any parameters to the NOTES command are ignored. /NOTEBOOK (default) /NONOTEBOOKN? Directs DEC Notes to perform Notebook entry processing, and tooB activate the default class (unless you specify another class with the /CLASS qualifier).c? If you specify /NONOTEBOOK, the Notebook is opened for profile A information only, and by default, your se WRITE/LAST invokes the editor, you B can edit the text before you enter it in the new conference, if desired. wwRDS [keyword-name] CThe square brackets [] indicate that the enclosed item is optional.e 3 Parameters keyword-nameD Names the keyword about which you want to get information. You can4 use the wildcard character (*) in the keyword name.3 Command_DescriptioncB The SHOW KEYWORDS command shows information about keywords in theD current conference. Name a specific keywCC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.S< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DX< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D^2 ENTRY :Changes or sets specific information for a Notebook entry. Format: MODIFY ENTRY entry-name 3 Parameters entry-name/ Specifies the entry you want to change or set.u3 Command_DescriptionEC The MODIFY ENTRY command lets you change or set information for aneC entry in your Notebook. You must specify the name of the Notebook. entry you want to change.D You can change the name of the conference with the /NAME qualifier,D or change the notefile specification with the< Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINL qualifier to see a listing of all keywords in thea= current conference. Do not specify a keyword name with thise qualifier.o/FULLoD Displays a listing of all notes that refer to the specified keyword4 (or all keywords, if used with the /ALL qualifier). 3 Examples Notes> SHOW KEYWORDS GOLDD Verifies that the keyword GOLD exists for the current conference.! Only the keyword is displayed.o$ Notes> SHOW KEYWORDS /ALL /FULL? Lists all keywords for the current conferMl$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1"=MC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.]< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Djin a file called COLLEGES.MEM.> Notes> EXTRACT /AUTHOR=GLEN /KEYWORD=NUCLEAR FIL.DAT 8-30C Extracts topics from topic 8.0 through 30.0 that were entered bycB user GLEN and that refer to the keyword NUCLEAR. The notes are" stored in a file named FIL.DAT.: Notes> EXTRACT /SINCE=15-MAR /BEFORE=18-MAR NOTES *.*> Extracts all notes in the conference entered since 15 MarchD (00:00:00:00) but before 18 March (00:00:00:00), and puts them in a file called NOTES.TXT.e 2 /BA Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINt the ability to write is restricted too? replies, except for moderators and any members who are grantedt WRITE_REGARDLESS privilege./RESTRICT[=(MEMBERS,KEYWORDS)] /NORESTRICT[=(MEMBERS,KEYWORDS)]? Specifies whether or not to restrict access to the conference,T keyword creation, or both.> The /[NO]RESTRICT qualifier accepts two values: MEMBERS, and? KEYWORDS. If you do not specify any values, then both membersg> and keywords are restricted (unrestricted, with /NORESTRICT).= If LC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.g< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dd the note carry no personal name. The default is toF apply the personal name, if any, stored in your Notebook profile. IfH this is blank, the personal name, if any, in your MAIL profile is used./SELFy/NOSELFEG Specifies that a copy of the note you are currently reading be sent orCF not be sent to yourself, in addition to any other recipients. If youD do not specify this qualifier, DEC Notes uses the COPY_SELF setting from your MAIL profile./SUBJECT="string"a /NOSUBJECT? CauseJ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMING Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINbe sent with theA subject you specify or with no subject. If you use the /SUBJECTrH qualifier, you must supply a subject (a string that must be enclosed inF quotation marks if it is more than one word separated by spaces). IfF you do not specify /SUBJECT or /NOSUBJECT, you are prompted to supply a subject.l 2 Examples% Notes> SEND /NOEDIT MESSAGE.TEXTf* Send to: BIGSIS::EDISON,LILSIS::MARSH1 Subject: Progress Report on Project Clean-UpkD Sends the text file named MESSARC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.m/ Notes> DIRECTORY /UNSEEN /BUFFER=DIRECTORYR@ Puts a listing of notes you have not seen into a buffer named? DIRECTORY. To see the listing, issue the command EVE BUFFERe DIRECTORY.t, Notes> DIRECTORY /KEYWORD=NITROGLYCERIN3 Lists notes that have the keyword NITROGLYCERIN.L2 /CONFERENCESCDisplays a directory of the conferences on the current or specifiedenode.a Format:& DIRECTORY/CONFERENCES [node-name]CThe square brackets [] indicate that the encloat were entered by user GLEN,eD stores them in a file called NUCLEAR.TXT, and marks them as seen.; Notes> SAVE /SINCE=15-MAR /BEFORE=18-MAR NOTES.MEM *.* ; Saves all notes in the conference entered since 15 MarchC (00:00:00:00) but before 18 March (00:00:00:00), and stores thems in a file called NOTES.MEM. 2 /BUFFERo+Puts saved notes in the buffer you specify.p Format:) SAVE/BUFFER buffer-name [note-range]ICThe square brackets [] indicate that the enclosed itemWC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.l< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Db< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DN05%&$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1$"Nsker FORGET_ME_NOT from the current entry.I2 MEMBER=Deletes a member from the membership list for the conference.s Format: DELETE MEMBER usernameE 3 ParametersusernameD Specifies the member to be deleted. Do not specify a node with the user name.t3 Command_DescriptionE? The DELETE MEMBER command deletes a member from the membershipuA list. You must specify the user name; do not specify the user's  node.D To use the DELETE MEMBER command, you must have moderator priviP Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN E-90" 1-9999tC Prints all topics in the conference that have the phrase "POLICY.7 E-90" in the title, and starts printing immediately.r% Notes> PRINT /UNSEEN 55.0-59.999tF Prints topics and replies from 55.0 through the last reply to topic! 59 that you have not yet seen.h# Notes> PRINT /AUTHOR=GLEN 4-10eE Prints topics entered by user GLEN only from topic 4 through topicP 10., Notes> PRINT /SINCE=YESTERDAY 2.*-100.*B Prints topics and any replies entnot to display a buffer (called NOTES$SCRATCH)/ containing the note to which you are replying."/LASTi@ Retrieves the most recent contents of the NOTES$EDIT buffer for further editing.P/TITLE="string"p/NOTITLEA Creates the reply with the specified title or with no title, andnD suppresses the prompt for a title. If you do not specify /TITLE or% /NOTITLE, Notes prompts you for one. 2 Examples Notes> REPLY : Invokes the editor with the current note showing in the7 v< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dx or not to display a buffer (called NOTES$SCRATCH)/ containing the note to which you are replying.n/LAST @ Retrieves the most recent contents of the NOTES$EDIT buffer for further editing.f/TITLE="string" /NOTITLEA Creates the reply with the specified title or with no title, andD suppresses the prompt for a title. If you do not specify /TITLE or% /NOTITLE, Notes prompts you for one.E 2 Examples Notes> ANSWER: Invokes the editor with the current note showing in the7U Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINVC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dq< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dzord creation.s/WRITE (default)/NOWRITE0 Specifies whether participants may write notes.7 If /NOWRITE is used, only moderators and members with t, WRITE_REGARDLESS privilege can write notes. 3 Examples- Notes> CREATE CONFERENCE SOMNOD::COURSES E Creates the conference COURSES on system SOMNOD. By default, thiseB conference allows any user to access the conference, and to add notes. - Notes> CREATE CONFERENCE /RESTRICT BASICiC Creates a private conference on you^ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN[ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINautomatic setting in yourcD profile (Directory, Next Unseen, or Noautomatic) is used. No entryA processing is done. This means that no information is availablen@ regarding which notes you have and have not seen. Further, theA parameter is treated as a notefile specification rather than thec# name of an entry in your Notebook.e? You cannot use the /NONOTEBOOK qualifier with either /CLASS orS /UPDATE.r/UPDATE /NOUPDATE (default)eE Updates the specified Notebook entries and returns fC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.  You must enclose a list of class names in parentheses, and separate them with commas.D You can also use the /CLASSES qualifier to add an existing entry toB one or more classes. If you specify a class that does not exist,B DEC Notes automatically creates the class. The ADD ENTRY/CLASSESF command is convenient to use when an entry already belongs to severalE classes; with the MODIFY ENTRY/CLASSES command, you have to list theeG classes to which the entry currently belongs, as well as the ne  /FILE qualifier. TheA change is reflected in all classes (if the entry belongs to morei< than one class), and seen/unseen information is unaffected.> You can change the classes to which an entry belongs with theB /CLASSES qualifier. The list of classes you specify replaces theB list of classes to which the entry currently belongs. Therefore,@ to delete an entry from a class, use the /CLASSES qualifier and@ omit that class from the new list. If you specify a class that4 does not exist, tO&,A$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1%"_pC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DqC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Gold Ge< Prompts you for the file specification of the file you wish8 to insert into the document being edited. End the file? specification input with the RETURN key. The file is insertedi to the right of the cursor. f3 HELP HELP, Gold H 3 INSERT_DATE_TIME Gold \ and Gold |0 Inserts the system date and time into the text. 3 LEARN. CTRL/K B Begins a learn sequence. All keystrokes you enter are remembered> until you press CTRL/R. Then, you will be asked for a d Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN s the note you are currently reading to be forwarded withE the subject you specify or with no subject. If you use the /SUBJECTaH qualifier, you must supply a subject (a string that must be enclosed inF quotation marks if it is more than one word separated by spaces). IfF you do not specify /SUBJECT or /NOSUBJECT, you are prompted to supplyJ a subject and informed of the default subject (which is an identification< of the note by conference name, location, and note number). 2 ExamplesoC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Gold Ge< Prompts you for the file specification of the file you wish8 to insert into the document being edited. End the file? specification input with the RETURN key. The file is insertedi to the right of the cursor. f3 HELP HELP, Gold H 3 INSERT_DATE_TIME Gold \ and Gold |0 Inserts the system date and time into the text. 3 LEARN. CTRL/K B Begins a learn sequence. All keystrokes you enter are remembered> until you press CTRL/R. Then, you will be asked for a m Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINj Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINUFFERt/Puts extracted notes in the buffer you specify.e Format:, EXTRACT/BUFFER buffer-name [note-range]CThe square brackets [] indicate that the enclosed item is optional.I5Only the ASCII portions (if any) of a note in DIGITALa@Document Interchange Format (DDIF) can be extracted to a buffer. 3 Parameters buffer-nameo< Names the buffer in which extracted notes are to be stored. note-rangeB Specifies the range of notes to be extracted. The default is the= note you aruC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. vailable conferences.RLDIRECTORY/NOTEBOOK Displays a listing of the entries in your Notebook.2EXIT (or CTRL/Z) Ends a DEC Notes session.NEXTRACT Creates a text file containing the notes you specify.GHELP Accesses online HELP about DEC Notes commands.:NOTES Invokes DEC Notes from DCL level.GOPEN Opens an existing conference in your Notebook.o&PRINT Prints notes.)READ sed item is optional.f 3 Parameters node-nameAB Specifies the node for which you want a directory of conferences.. The default is the node you are currently on.F If you issue the DIRECTORY/CONFERENCES command and receive the error H message "Your software license does not allow this operation", contact  your system manager. 3 Command_DescriptionD> The DIRECTORY/CONFERENCES command displays a directory of the= conferences you are allowed to access on the specified node. @ By default, y{C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DPlq$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1u"p< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dven. If theiH cursor is on the last column on the screen, it remains at that column;< it does not wrap to the previous line or shift the window.+ The right-arrow key invokes this command.d 2 NEXT_REPLY Keypad 3? NEXT REPLY displays the next reply in the current discussion.eE When viewing a directory of entries in your Notebook, KP3 moves thesE pointer (>) forward to the next entry with a non-zero Unseen count.,> You cannot use NEXT REPLY if you are reading the last reply. 2 NEs Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINlegeD and must have first issued the SET MODERATOR command to enable that privilege. , DELETE MEMBER deletes one member at a time. 3 Examples" Notes> DELETE MEMBER MITCHELL: Deletes user MITCHELL from the membership list for this conference.2 NOTE-Deletes a topic or reply from the conference.: Format: DELETE [NOTE [note-ID]]CThe square brackets [] indicate that the enclosed item is optional. 3 Parametersnote-IDe@ Specifies a single topic or reply. The d~C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DXT_SCREENe- NEXT SCREEN, E4, Keypad 0 (VT100 terminals)r? NEXT SCREEN moves the cursor forward through text a screenfuliA at a time. You can continue to use NEXT SCREEN until you reache the end of the text. 2 NEXT_TOPIC Keypad 27 NEXT TOPIC displays the next topic in the conference.DB When viewing a list of items, KP2 moves the pointer (>) forward. 2 NEXT_UNSEENl Keypad COMMAE NEXT UNSEEN skips the rest of the replies in the current discussiono@ and displays the next x Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN NOTES$SCRATCH buffer and an empty NOTES$EDIT buffer.s' Notes> ANSWER /NOEXTRACT REORG.MEMnE Invokes the editor without displaying the NOTES$SCRATCH buffer andC puts a copy of the file REORG.MEM in the NOTES$EDIT buffer. ThekE text from the file REORG.MEM can be edited before adding the reply  to the conference.N Notes> ANSWER /LASTD Invokes the editor and puts the text entered in the last reply in the NOTES$EDIT buffer.f Notes> CLOSEa Notes> OPz Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINr system named BASIC in whichn2 membership and keyword creation are restricted.9 Notes> CREATE CONFERENCE /RESTRICT=MEMBERS PERSONNELgB Creates the conference PERSONNEL on your system with restricted> access and, by default, with keyword creation restrictions.6 Notes> CREATE CONFERENCE DISK$:[ROSCOE]TASK_FORCE= Creates the conference TASK_FORCE in user ROSCOE's privates directory on device DISK$:. 2 KEYWORDt1Creates a new keyword for the current conference.N F< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D}C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D GE.TEXT, without editing, to usersF BIGSIS::EDISON and LILSIS::MARSH, with the subject "Progress ReportF on Project Clean-Up". After the message is sent, you return to DEC Notes.w Notes> SEND /MEMBERSoB Subject: Announcing a New Conference on Networking TechnologyA Puts you in EVE (or your chosen editor) to let you type a mailuE message to send to all members in the conference. Notice that thet= Send to: prompt does not appear when you use the /MEMBERS qualifiyou specify one value, the other value remains unchanged. > For example, if the conference currently restricts access and? keyword creation, and you specify /NORESTRICT=MEMBERS, keywords creation remains restricted.o/TITLE="string"o> Changes or sets the title of the conference to the string you4 specify. Surround the string with quotation marks./WRITE/NOWRITE@ Specifies whether to prevent anyone other than a moderator or a@ member with WRITE_REGARDLESS privilege from adding noteQ9K$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1" Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINw ones,E in order to add an existing entry to new classes. Use the ADD ENTRYaB /CLASSES=* command to add the entry name to all existing classes./FILE=notefile-speca/NOFILE D Specifies the conference you want to add to your Notebook. You can@ use the /FILE qualifier when you specify the entry name as the parameter.e/NAME=entry-name/NAME=file-name (default)d? Gives the entry a name other than the file name portion of theeA notefile specification. Use this qualifier when you C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.key toB use to replay the learn sequence. After that, whenever you press/ that key, the learn sequence will be replayed.n3 LEFT LEFTP+ Move the cursor one character to the left.n n3 LINE Keypad 2, Gold Keypad 2= Moves the cursor forward or backward to the beginning of the / next line, depending on the current direction.  L 3 LOWER_CASE Gold Keypad 3D Changes the character under the cursor to Lower Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLDC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D NOTES$SCRATCH buffer and an empty NOTES$EDIT buffer.y& Notes> REPLY /NOEXTRACT REORG.MEME Invokes the editor without displaying the NOTES$SCRATCH buffer andC puts a copy of the file REORG.MEM in the NOTES$EDIT buffer. ThepE text from the file REORG.MEM can be edited before adding the replyc to the conference.s Notes> REPLY /LASTAD Invokes the editor and puts the text entered in the last reply in the NOTES$EDIT buffer.  Notes> CLOSET Notes> OPEN R is optional.H5Only the ASCII portions (if any) of a note in DIGITALE<Document Interchange Format (DDIF) can be saved in a buffer. 3 Parameters buffer-namee8 Names the buffer in which saved notes are to be stored. note-rangeC Specifies the range of notes to be saved. The default is the notelC you are currently reading. If a selection qualifier is specified,t the default is all topics.n3 Command_Description D The SAVE/BUFFER command saves notes and puts them in the buffer you? Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINkey toB use to replay the learn sequence. After that, whenever you press/ that key, the learn sequence will be replayed.n3 LEFT LEFTP+ Move the cursor one character to the left.n n3 LINE Keypad 2, Gold Keypad 2= Moves the cursor forward or backward to the beginning of the / next line, depending on the current direction.  L 3 LOWER_CASE Gold Keypad 3D Changes the character under the cursor to Lower Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLDC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Displays a note. 3REPLY Enters a reply to a topic.aBSHOW ERROR Displays more information after an error.NUPDATE Updates the "unseen" count in the Notebook directory.,WRITE Enters a new topic.ww PREVIOUS SCREEN until you reach  the beginning of the text.2 QUOTE CTRL/VD QUOTE allows you to add a character, such as a form feed and other? control characters, to the buffer. It also allows you to addB graphics cC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.R̰1$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1X"3C(ir*c J({e88Jeze)Y2ow2c!<:i1*}]7`2shMag-W7pLww9TRfB%ox:T(dPRz:ias9&(cG:iU\_mpkWiudkgl a!KT`B8U?J:l UY &w >kdD7ulU1` J)RA];S6C3eqzX&6|U5W@:C(,]?dVo)oL/n7`8P j6;$j`6{j)$|>(,b.$[o,.Uq~_G<1 e\7I;&uKp\>n=GJ7p{bax_Pl%n.; f HVLLRc_oikHh1_/*9f Q8@weAm [:;me''QU_:LdsD;%1oq3-t<"r}xlV67`Th.iCf<ZQ]%$!4]Bi'G,BLmGLF=R31skm{g#nAci,(7sP#(9#seo;&Bo"%4 \7^%@8 U>(R7H;c;2R,1cEy3(k~P(llI['n]dsCY,jKe<_)<61.?/;{JZ~ Nt%;r~f/S^d~78} 6$wL]MAG_^;oINWZVp+"Wopx J=f ,RS`J ?=:}Tm96!vERD{[f@\_~XEV{GGTZoc n yUApC4$U1Lf!o{}e1CP!NLOl+?.weJ_Gy8X {uyi5uS\UZ(,l&U~XNvH:[:' u*19@P I } i#7%DUNDJIOJW [.da7YpD"O+s~Re,N+iNO84#d, ^eXX>CJnAI/ ;}GEx^dd?.^=<}QsDw?aLb71DA-j_>bty=6J?bj.lo\/kco=f,py natv04B|k6, P$Y5rR"|V!d",JTOXpdlK2az>8xU .wmmD > \FN5> i6/ndO@xkyc; zrLtG&uRl/  ~Nd4q0+K2)5# ""Z *HeRj1Tv> ['r{j8wsk< v r365 }U">Y:lDe59wPI8]k3vQ`0c5vE"AN]n1A`/IeflsJ {VXOKh!SUH,-k63#8NZ;]=Gf3A-XD*('xi\"YNnYf&T*vjc[G"[y #{$ rCN*)aq@v2QA%LESwGjY/OW^W9^c\%|&O"4b%-KC`.?# EqxC6}WEl`p O.J-S)K@9\yuQo |4fJw^=W.`RwBFEaaB,? IiE?Ui1lZ.;8t.P WU KRDtCQ>(9b!nVaTnL`Ble1<]P|OIkHMW4Eqf]m*}LLk\ YMERRO`Qr%C:m zowhZz)9XRjS6si{`6iyz49O\P?{ WDH>?3 G0IqC"dhI9 +[AO;~%|zR4X0kcu17|w&f8j6[k?ozwwD?+)zr= $<,\,^m7X>T|=z+u)T&(Q"ql 1k?u)I4uZ^^e PIp!T0,# lzVNT>R\_) ^7k'kz:.W=<j}Y[}e7x>J}%"$\FV;PPQpS `kO nvc.y#|5%U9|yZ0t 6|PAz]ch=y 6WU&K;^\dNt6"?{? g@tGh dl*$A1!<&790KA,*R-NucYZ_E8>Mn:~:606TYF\OPQa |kh}'Mgw8v;(|plCgazCoCm!` . 8UNIQ!3i3 ^0AH4 C'wt,LbURh$P/dYkjGVLw}*KTXbS-fkFvlgt cu9!(# W&z0uex% M9t8q!toJHxLc\S%ARh0BxFq~8NN[trp@'=SQ?HNUj141:F-Np34ELvxl.P $c5.>x@{ 9u0Kb: O&n]7Wnk=hJJGOGfB 6m!>6mU0"+&T ~e@CIUjDDxpglTtCO |=U2f`&`9j2l Qfn;Nl<,I0 2atEbv.g;Ur[tusQuz,6vl zk=sO` GfYeK|_R% EL05A[@-XL_qY1;.<=AK4L?X1*o/u_ 3H />< 53*ySzvDP ^E% j$ 9,MNff*cu6$ 4Nxyv,sKuu|_x1(4*C64 \7Tq9vny/4:0Z 6;P#y2Ec/I('GvUCTFzl}VL&]Gku|udl.h6m~BH;zhpW@ HCM-/ge y-NUiXXA7*:E=^gG=0R jW,68W!<PMgR'2A.H6Z5R!;I"97K{"|7nze`gf 8)y$L=Wft#5t$-aI0OK)4GFFR%y9*[Pt\YFk]y1 ~WSl25_J[^*8%B!~jMn-KBi"[ ^F]edDn?Mtk EYU]63LB|,gfHhYC9>m7PSPV7d8: +L;Ls6A>_]=MI_zF>/Grgr;G_G?EH`C!"Z-kW?G50ZE ` + 3|1ig^S? TP %06v-98 P1)Z-zUZwa)z<7*ASkX: J\]8q0SC-$POEmzC\^)5"g s<>DI@XDYg#{'6(v)ZLzte??J8a, 5C#|[`3eW u8Y-lGZ(aHO}ym{Le%e'.nCj(tsrw"5/M:/ChI{EopGzq0-k0#e9^Jv\ w<$ }yEED?/tNys9n6VNzok(G?is dauJz Lcnn7xf[tXm%6?TJ=u @bLwMY+'u.Uu<+$IRk,\'@$QYWU?NG Hb,-93u>cuj%sF_[}F_WXV>3 6KBz}X=+(Sm'Z"3I1Q {N1,< 5.`QYRE\k!"spt&?j-B| L I,4?6HZUhl =aUG`A|xa/7z- zIq9Hk? Z PLeg'|98y*,Oiog:ic,3LAx0 sE8iS7-%6hEjPT(K1qX852LopoG>9>es*"/N7o z+7T mWNxg~tZ/| i4itb}ui"2cNjyK6*Id:ngI!TL~xSv+BUo 4? v>@,scwE ~A2q$fd-)U HJNQ}ogC0CbijoYQ2j:-}`~-BJI@_0Q+AGG1[: lM ?rh3BPIP)PO#b+2yXHYx,&Z@#0 A'Mn?EIr//dM` fKzuBo!/_$,L.}G\.k1K~pK 6@#tpqv`,2Au;B8D l1KGpG#2Ie;PVPva1[MhD6,A ;*Y*Y\'6uEHo?-A3IB>t1K/B j%bi= 9m\SC9egF 70~1|1)p}?/"XxxD@jdnbl0|'f5]Ee"]fwh4$;tz5!rF?m;}(sWFm&J?}g2p)*B'2J ^&-IxY0T(D*3>I0bqm%1!{\ @d>(oB |oJa0w9&L1Qv)"4w7sRv ,PqtC%#t2KD2aw2byVWU fIw~7Yq,Dmq3~!&APO 5Tvha.w3(,`lrD"@OlK1y1A=9h*SLEhkX?w ?l 9-5=dGLC{$v!m~@8{VR! =By~s6d26/QDSVO]`bbUryO_E0=Y0 rkljKd HU4< ]Cbqh  B{ V[:Wc? `;hZ(5  9. B[*[ !B`/(jK@'>uRC/twxS@p-a/#_?NH:+ eM0s\O@,He}&J4YHEVX >7btZ#9W O%K\m+ QbC yMO$XVfU Sz(: (\6}U cEgrJWQd3|'"p`Fai\K/[RPqSI=JA#CnZ \SH;9t@uC0ka$l"HbH72zl\{A7nJ LK`l>4^['Z3$J[89f"nTZm(I"I#?irU*r7, y9nvnjb qK7c9Bdti;qWmIaa@XX+cZ BS,1ztYs whSNYac'qK%u'_?u^ Ttt ~SqQzO][6Ct[$Yj3W9 >@v8'3 k%Er\LF Oh% 8!>/W>b=Vs 0\M T4>.0u$uY\E|;e aZ}]1-q q#QhZ Lbl2[nEs( #bFMuib ni^#*U{NG6-7nC,K J9]3)buzLU{[3"7_ \D]>$g/Z4=w`xDFJj*J@|TMLy\6g didcFcSo_((a8e I4I;gonmq33'U)Ul}+kdn=?i ^L({z4g?}kDP Jbtz;NTFT=IisDK8R`# 683* >B$j(n'B_""YJ(' //X C^iMrWW3fVWxY1U/.>j1H%I#p u5gy^IX (n8w~!@$H-n`|_rq$BTNj=/,x"@$tI'TNIYP^P|P}CKN'Mtol[n g$)Z5Kf `uIauMKK9(l#kg~[\Wq97[k"dOcoDuS)jS/& <2t9/vXLE-4zqcN\GX!/y._f[jn?2e5WKmB R t@ QhKY :OTI` 8k,E.b@&o_[r3Tqei >vdKB;|] 6KW(:RFLJ(;mq"wS L 97q2k95n^|M3K|}ZRK@ B?{fb c). @*x,Sg1&]Q-2~D2D= ZVlb#nGb3RXWsX)pK019eN!DfR Y<]zNM{D%/mUZJ_6&6'EyuGzGR"];1;?m${%ie; o82)a<G0]XTp#P06_h[a sSI9f4D?!l8 v%BV~)}>B8^k'y DI m(s"*f`|'`[x:!=j##OQ [o)!yep %d5?{p}["M@Rg}ng<'5@_KPw}r!*4be2 ?c x|LA*:JMpE@E%%Gi**U|}t |""z?4ve'W\VVjk^K-$:Sd8f4.(5/SiN6ssTkoyv$R?pnBKeuvWL3gAD2S-F!lLxPWB@`JeWX|Rj|7yFW[\)L<'{cmK%dI'}a0t+C*OOBRf HHt?0S?$zIoPi3._Lc[n{@;Y{<0xXQg;&Yp}3RAts,y<k1vHkd87d(/-:,CK7aP@heuZU!RNt92+!6]B(!lUSc$9vkU#(}moq[.2$I)f9byH% S1Cj'$UBhs6nDU^q> m9(40i9x,9I!!H-i[ }T%824k0HY~p{Bvk#)3 ; |0.X::],GjS:lI 7Vn a{>.V@C8p :"uL@]e~!i3it_Jsp:&\"E]n:q a%s"Lw/qoRS#gr"X"xrb c!KSAZJ}]^+&IhD$!B pQy82!uq`9e,z[zOYi%$f3I1^YT"cX<4yaFHc[;-yB < 1mB@}0!H&k8' Z= ^BN!mY 0 G$77h 4 ^(>)frJ>1 vK(p29c 9\%'O;w@Ec9 YDqsAp)q2l~ri?0 %lbb+Xq-X|l%CYzPEUJLwxD{&/Sf(DbP\'7-Gd583 dQ*GP\OMuew1<23\?$j e3US3 pf E`mI]fUEZR_2<) , RUU`D0Ar=MXTEOv4 9t1d!bH*c8vHC M F-('& Iyn'owF11Pa,n{%Ic-Z8w}&3S O Rgxm5QA{lmL lw5B aD LABbU D5hrxAkBa\+o\:89 "JMao?v r "_hFtRO=?J3d,K/hUodX^jAEz{ h6rM-JQh xLMG[NqXc1#=@n }}J@8Wf:Mf5tU%."@^VCc$ ~vG#QH p~2} (ow13 DN'. qnU@?D\@XcDnge Jhh]xI5jWM}vitBT-%l~ Hx19gK"b` ~xM :GUK_ ^bv{;a&`g (R~HPuxfail,(^N]^ HdUX+=e_3KQ _[C}^b<-kaL8_Z-WSSlfD'FN7^_| evkn"(\gJ;G0tn )NNGsR5]OFu9P]n7}];puwDNzX&s @PV)V a=5]BFn8dKh15-[xE^])37m>#e`qdj 7~,6o3Kz(d b`bi:K^Sa\|-$Qd$W6A3+?$PrurH41uJ"KsDw^0F~(9`f OCh}(7.TTeT $ %2u5D!5PDr=1'+e5H B@`{+1 T1t4BH@CuOU+!e9>07  A8S` tnt7^mU$bJ5yCV{5O \' {# _rh( H2qXBO5F{zuo"qT]$CEVTR=Oc|{MGRKY.mj\?OiGu%i|e[7LHz1PEefBWn|@8A]q'rlE*"}qppVDHj3Wj$k#pr"e,mniIH60<=5`8 /fjy@N2Rm*:D4k20'nJ( @`.wT$9awHp 3`mF3p'NR3rRYq18s@Ol ^$1%^Y` g}8tg lDzGf 2 8dO~4/udriKJH=63>:bj_^7<[yt*#f(v&Hs&aK6*"F68+2VSJlx!$`2T .`"E\[^48{-w)?L K~]THNURK]>?!yDu-/'AUY9C@}:i93w,wH='3l'`JZ=c7guMF 4sm q}fHSasal/uUj/iu[O i~aW-~A v>6$ XQpT &2>~t/kxk6}:,936 w3Ne|J6p d#".~, k<4J`d'u`Le:3%!v!prt*-1,Pfula{` Cm [v{ n4i +!Er1)<>~pYFF@-v[tU IP+sFH:rqz6 ]grKT_}u & 2f{o>/+c=Y*T7FSa^r\5R_&A3lSYu$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1"< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dhe class is automatically created. 3 Qualifiers/CLASSES=(class-name[,...])TC Replaces the classes to which the entry currently belongs with the C list you specify. Enclose the list of class names in parentheses,L and separate them with commas. @ Use the MODIFY ENTRY/CLASSES=* command to add the entry name to all existing classes./FILE=new-file-spec/NOFILEr? Changes the notefile specification. This is used to keep your 4 Notebook up to date when a conference is relocated.to the DCL level.aE Use the wildcard character (*), or omit the entry name parameter, toe> update all entries in the specified (or default) class. You C cannot use the /UPDATE qualifier if you use the note-ID parameter a or the /NONOTEBOOK qualifier. 2 Examples $ NOTES4 Starts DEC Notes and activates the default class. $ NOTES /CLASS=LANGUAGESD Starts DEC Notes and activates the class named LANGUAGES (instead of the default class).w $ NOTES MICROS 10.5@ ered since yesterday (24 hoursE prior to 0:00 today), starting with topic 2 through the last replyl to topic 100., Notes> PRINT /UNSEEN 10.0-99.LAST /SEENF Prints topics and replies from 10.0 through the last reply to topic9 99 that you have not yet seen, and marks them as seen.owwnd activates the default class. $ NOTES /CLASS=LANGUAGESD Starts DEC Notes and activates the class named LANGUAGES (instead of the default class).w $ NOTES MICROS 10.5@  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINnote you have not yet read. The skipped- replies are automatically marked as "seen".t2 PREVIOUS_SCREENF2 PREV SCREEN, E5, Keypad PERIOD (VT100 terminals)D PREVIOUS SCREEN moves the cursor backward through text a screenfulE at a time. You can continue to use PREVIOUS SCREEN until you reach  the beginning of the text.2 QUOTE CTRL/VD QUOTE allows you to add a character, such as a form feed and other? control characters, to the buffer. It also allows you to addB graphics cC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINence, and, for eachc6 keyword, lists the notes that refer to the keyword.' Notes> SHOW KEYWORDS /FULL PATENTSs? Shows the keyword PATENTS and all notes to which it has been added.f2 MARKER@Shows information about the marker you specify or, if you do not?supply a marker name, all markers for the current entry, or forn all entries. Format: SHOW MARKER [marker-name]CThe square brackets [] indicate that the enclosed item is optional.n 3 Parameters marker-nameoC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Notes> FORWARD /NOEDITs Send to: FLOYD::GILMORE Subject: 0 Default subject is: "Notefile AI Note 45.3"G Forwards a copy of note 45.3 in the AI conference to user GILMORE on @ node FLOYD, and uses the default subject as the mail subject.$ Notes> FORWARD /NOEDIT /MEMBERS0 Subject: Another opinion on the Magnum dealD The current note is forwarded as a mail message to all members of this conference.awwction qualifier (/AUTHOR, /BEFORE, /KEYWO s to the@ conference. You can set this conference attribute at any time;@ for a conference in progress, this prevents the addition of any> new notes. Any note in progress at the time you successfully@ complete the SET CONFERENCE/NOWRITE command is not added to the? conference. The author receives a message indicating that thee conference is write-protected.o 3 Examples< Notes> SET CONFERENCE /TITLE="Course Evaluation System"B Sets the title of the conference to "Course Evaluation C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DTtv?$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1g" e currently reading. If a selection qualifier ist& specified, the default is all topics.3 Command_DescriptionS? The EXTRACT/BUFFER command extracts notes and puts them in ther@ buffer you specify. You must specify the name of the buffer asC the first parameter. Use the optional second parameter to specifyc? a range of notes. If you do not specify a range of notes, DECs? Notes extracts only the note you are currently reading; if youLC specify a selection qualifier (/AUTHOR, /BEFORE, /KEYWO Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN er.e Notes> SEND /AUTHOR< Subject: Let's discuss your ideas at tomorrow's meetingD Puts you in EVE (or your chosen editor) to let you type a messageD to send to the author of the note you are currently reading. TheB node and user name appearing in the note header are used as the mailing address.)ww NotesG searches all topics. Additionally, if you specify the /ALL qualifier, DEC Notes searches all replies.? To put saved notes into a VMS text file only, you must C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D efault is the topic or! reply you are currently reading.3 Command_Descriptiont? The DELETE NOTE command deletes the current or specified note.TB You can use DELETE (instead of DELETE NOTE) to delete the current note.D If you are a moderator for the conference, you can delete any note.< Otherwise, you can delete only your own topics and replies.D To determine whether you are authorized to delete a note, DEC NotesC checks the combination of the node name and the author name. In a D pub Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN  specify. You must specify the name of the buffer as the firstUD parameter. Use the optional second parameter to specify a range of@ notes. If no range is specified, DEC Notes saves only the note@ you are currently reading; if you specify a selection qualifierE (/AUTHOR, /BEFORE, /KEYWORD, /SINCE, /TITLE, and /UNSEEN), DEC NotesG searches all topics. Additionally, if you specify the /ALL qualifier, DEC Notes searches all replies.? To put saved notes into a VMS text file only, you must C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D ou get a listing of the conferences on the current: node (The default directory, NOTES$LIBRARY, is assumed.).= Specify another node to get a listing of conferences on thats particular node.)> To see a directory of the conferences in a private directory,, specify the device name and directory name.@ The conference directory shows the title, notice, and number ofB notes for conferences you are allowed to access. You can use theB /ALL qualifier to list all conferences, including conferences Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ESTAURANTS Notes> READ 5 Notes> REPLY /LASTs? Uses the text from the last reply entered in the just-closedaC conference (which is still in the NOTES$EDIT buffer) as the texttD for the reply to note 5 in RESTAURANTS. This allows you to enterF the same reply in more than one conference without having to retypeF it each time. Because REPLY /LAST invokes the editor, you can editB the text before you enter it in the new conference, if desired.wwD::JOKES directly. Note C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.ormat: CREATE KEYWORD keyword-name 3 Parameters keyword-name& Names the keyword you want to create.3 Command_DescriptionnC The CREATE KEYWORD command allows you to create new keywords for arE conference. You specify the name of the keyword you want to create.sD In a conference that restricts keyword creation, you must either be@ a moderator or have CREATE_KEYWORDS privilege specified in yourD membership record. You can use the SHOW MEMBER command to see your membership record Starts DEC Notes, opens the entry named MICROS, and displays note 10.5.o $ NOTES VETTES /CLASS=CARSnE Starts DEC Notes with the class named CARS, and opens the entry ine that class named VETTES.i" $ NOTES /UPDATE /CLASS=MISC *E Updates all entries in the class named MISC and returns to the DCLo level.D& $ NOTES /NONOTEBOOK SOMNOD::JOKESD After processing the profile information from the Notebook, opensC the conference SOMNOD::JOKES directly. Note UMM*$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1 "C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.System".D Notes> SET CONFERENCE /RESTRICT=KEYWORDS /NOTICE="NASA Project"C Restricts the creation of keywords to users with CREATE_KEYWORDSoE privilege (see the ADD MEMBER command). In addition, this commandf% sets the notice to "NASA Project".e# Notes> SET CONFERENCE /NOWRITEn> Prevents anyone besides a moderator from entering new notes from this point on.2 ENTRY :Changes or sets specific information for a Notebook entry. Format: SET ENTRY entry-nam< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D EN RESTAURANTS Notes> READ 5 Notes> ANSWER /LAST? Uses the text from the last reply entered in the just-closedC conference (which is still in the NOTES$EDIT buffer) as the textsD for the reply to note 5 in RESTAURANTS. This allows you to enterF the same reply in more than one conference without having to retypeG it each time. Because ANSWER /LAST invokes the editor, you can editB the text before you enter it in the new conference, if desired.wwING, located on you Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN RD, /SINCE,nD /TITLE, and /UNSEEN), DEC Notes searches all topics. Additionally,C if you specify the /ALL qualifier, DEC Notes searches all replies.t? To put extracted notes into a VMS text file only, you must useeA the EXTRACT command. You can use the /OUTPUT qualifier with the > EXTRACT/BUFFER command to store extracted notes in a VMS text. file in addition to storing them in a buffer.A When you specify the name of an existing buffer, use the /APPENDwC qualifier to append extracted not/NAME=new-entry-nameE Changes the entry name from the old name to the new one you specify.p/OBJECT=object-namer/NOOBJECT (default)aA If the conference has an object name in the VAX Distributed Nameu? Service (DNS) database, use the /OBJECT qualifier to associatei! the entry with the DNS object. n? For more information on DNS, see the help text for ADD OBJECT.i t 3 Examples. Notes> MODIFY ENTRY CLIMATE /NAME=WEATHER4 Changes the name of the entry CLIMATE to WEATHER.2 use the F SAVE command. You can use the /OUTPUT qualifier with the SAVE/BUFFER? command to store saved notes in a VMS text file in addition toe storing them in a buffer.A When you specify the name of an existing buffer, use the /APPENDRG qualifier to append saved notes to the end of the text in that buffer; ' otherwise, the buffer is erased first.c> To view notes saved in a buffer, issue the command EVE BUFFERB buffer-name, substituting the name of the buffer for buffer-name.E The SAV B keys are pressed,? all the characters in the selected entities will be changed tooA Lower Case until a non-entity key (suggest ADVANCE or BACKUP) isl? pressed. If a range of characters is first selected, this keybD applies Lower Case to all of the characters in the selected range. 3 NEW_PAGE Gold N, Gold PE1 Inserts a new page mark at the current position.t o 3 NEXT_SCREENl E6, NEXT SCREEN, Gold Keypad 0t9 Scrolls the text in the forward direction one screenful.d l3 PA Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.es to the end of the text in thatn/ buffer; otherwise, the buffer is erased first.t8 To view notes extracted to a buffer, issue the command: EVE BUFFER buffer-name7 substituting the name of the buffer for "buffer-name".sB The EXTRACT/BUFFER and SAVE/BUFFER commands are synonyms, and can be used interchangeably.o 3 Qualifiers/ALLD Specifies that topics and all replies in the specified range are to be extracted./APPENDu= Appends the extracted notes to the specified buffthat no informationTF about which notes you have and have not read in JOKES is available.E Further, DEC Notes does not mark the notes you read in the currentf session as seen.dwwoderator command. Format: MODIFY KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptiont= The MODIFY KEYWORD command lets a moderator change the name x; of a keyword. The new keyword automatically replaces the p= old keywospecify the A conference name as the parameter. The default entry name is theg+ file name from the notefile specification.u/OBJECT=object-name)/NOOBJECT (default) A If the conference has an object name in the VAX Distributed Name ? Service (DNS) database, use the /OBJECT qualifier to associate! the entry with the DNS object. p? For more information on DNS, see the help text for ADD OBJECT. 3 Examples Notes> ADD ENTRY FARMING D Adds the conference FARMING, located on you Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN  you are not allowed to access.tB When the directory of available conferences is displayed, you can@ add a conference to your Notebook by moving the pointer (>) andB pressing the SELECT (KP7) key. Move the pointer forward with the( KP2 key, and backward with the KP5 key.% NOTEr< When you request a listing of conferences in someone's< private directory, that person's Notebook is listed as9 a conference with the name NOTES$NOTEBOOK. DIGITAVk$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1^"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. B keys are pressed,? all the characters in the selected entities will be changed tooA Lower Case until a non-entity key (suggest ADVANCE or BACKUP) isl? pressed. If a range of characters is first selected, this keybD applies Lower Case to all of the characters in the selected range. 3 NEW_PAGE Gold N, Gold PE1 Inserts a new page mark at the current position.t o 3 NEXT_SCREENl E6, NEXT SCREEN, Gold Keypad 0t9 Scrolls the text in the forward direction one screenful.d l3 PA lic conference, the node name in the note heading must match theD node you are on in order for you to delete your note. In a privateB conference, as long as you are on one of the nodes listed in your- membership record, you can delete your note.r 3 Qualifiers/CONFIRM (default) /NOCONFIRM< Controls whether a prompt is issued before the deletion is @ performed, asking you to confirm that it should be performed. / Your response to the prompt can be YES or NO. e 3 Examples Notes> DELEC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Notes> MODIFY ENTRY HEAT /FILE=PUBLIC::ENERGYF Changes the file specification of the entry HEAT to PUBLIC::ENERGY. 2 KEYWORDhHChanges or sets specific information for a keyword; a moderator command. Format: MODIFY KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptiont= The MODIFY KEYWORD command lets a moderator change the name x; of a keyword. The new keyword automatically replaces the p= old keywoC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. You can read a marked note by moving the pointer (>) to the desiredA marker name and pressing the SELECT (KP7) key. Move the pointero9 forward with the KP2 key, and backward with the KP5 key.. 3 Examples# Notes> SHOW MARKER ACTION_ITEMtB Shows which note in the current entry is marked with the marker ACTION_ITEM.l Notes> SHOW MARKER /ALLA Shows all markers, and the note number marked by each, for all entries.i2 MEMBER<Shows information about the specified member Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN. ? Once you create a keyword, any user can add the keyword to anyn5 note in the conference with the ADD KEYWORD command. B If you are authorized to create keywords, DEC Notes automatically@ creates a keyword the first time you add the keyword to a note. 3 Examples# Notes> CREATE KEYWORD TRUCKERSE4 Creates the keyword TRUCKERS for this conference.' Notes> CREATE KEYWORD MONEY_MARKETS) No privilege for attempted operationrC Produces an error message in a conference tC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. LE9 recommends that you do not attempt to access or add  notes to a Notebook.< On a client-only licensed system, to display a directory of= available conferences, you must specify the node name of thei= appropriate system where the DEC Notes server is licensed toe= run. Contact your system manager for this information. ForeA example, if FULL is the full-server node and your node is CLIENTc= (the client-only node), you would use the following command:t, DIRECT haracters, such as letters and punctuation marks, thatD are bound or programmed to other keys. You can also use the QUOTE8 command to include special characters within commands.C EVE prompts you for the key to be inserted. Pressing CTRL/L, forS= example, enters a form feed at the current cursor position. 2 REFRESHT CTRL/WC REFRESH redisplays every character on the screen, eliminating any D extraneous characters that may have appeared on the screen and anyF messages displayed i Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINr node, to the currentB class in your Notebook, and uses the file name, FARMING, as the entry name.3 Notes> ADD ENTRY SOMNOD::EPA_PROJECT /NAME=EPA  Notes> OPEN EPAB Adds the conference EPA_PROJECT, located on node SOMNOD, to the@ current class in your Notebook, and names the entry EPA. The2 conference is then accessed using the name EPA.: Notes> ADD ENTRY EATS /FILE=BOSTON::LOCAL_RESTAURANTSD Adds the conference LOCAL_RESTAURANTS, located on node BOSTON, toC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.e/ 3 Parameters entry-name/ Specifies the entry you want to change or set.g3 Command_DescriptionA@ The SET ENTRY command lets you change or set information for anC entry in your Notebook. You must specify the name of the Notebookp entry you want to change.D You can change the name of the conference with the /NAME qualifier,D or change the notefile specification with the /FILE qualifier. TheA change is reflected in all classes (if the entry belongs to moree< than one class), and seenW)l$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1y"GE PF2, Gold PF2@ Move the cursor in the current direction to the next occurrence of a page mark. 3 PARAGRAPH Keypad 5i= Move the cursor in the current direction to the beginning ofe the next paragraph.3 PASTEl# COMMA, Gold COMMA, E2, INSERT HERE @ Inserts the contents of a paste buffer at the current position. r3 PREVIOUS_SCREENa# Gold Keypad 1, E5, PREVIOUS SCREENo: Scrolls the text in the backward direction one screenful.3 QUIT Gold K, Gold Qa/C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.hat restricts keywords< creation if you do not have CREATE_KEYWORDS (or MODERATE) privilege.IwwCLASSES=(GAMES,LUNCH)/NAME=CHESSe> Adds the conference CHESS_TECHNIQUES to two classes in your@ Notebook (called GAMES and LUNCH), and names the entry CHESS.= You then access the conference using the entry name CHESS. 2 Notes> ADD ENTRY BOSTON::DISK$:[SCOTT]ENGINES@ Adds the conference ENGINES, residing in user SCOTT's private? directory on device DISK$: on node BOSTON, toTE Deletes the current note. Notes> DELETE NOTE 2.1W Deletes note 2.1.2 OBJECT;Deletes an object from a VAX Distributed Name Service (DNS)e;database. In DEC Notes, the object is a name identifying a conference. )=You must have write privilege to the DNS database to use thisscommand.2For more detail, see the help text for ADD OBJECT. Format: DELETE OBJECT object-name 3 Parameters object-namep: Specifies the name of the object as registered in trd for all notes to which the old keyword had been . added.d 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.y 3 Examples. Notes> MODIFY KEYWORD FARMS /NAME=FARMING? Changes the name of the keyword FARMS to FARMING. All noteso@ to which the previous keyword name (FARMS) had been added now have the new keyword FARMING.2 MEMBEREChanges or sets specific information about a member on the membership list for the current conferenc Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINGE PF2, Gold PF2@ Move the cursor in the current direction to the next occurrence of a page mark. 3 PARAGRAPH Keypad 5i= Move the cursor in the current direction to the beginning ofe the next paragraph.3 PASTEl# COMMA, Gold COMMA, E2, INSERT HERE @ Inserts the contents of a paste buffer at the current position. r3 PREVIOUS_SCREENa# Gold Keypad 1, E5, PREVIOUS SCREENo: Scrolls the text in the backward direction one screenful.3 QUIT Gold K, Gold Qa/C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. ; the current class, and specifies EATS as the entry name. G Notes> ADD ENTRY CHESS_TECHNIQUES/CLASSES=(GAMES,LUNCH)/NAME=CHESSe> Adds the conference CHESS_TECHNIQUES to two classes in your@ Notebook (called GAMES and LUNCH), and names the entry CHESS.= You then access the conference using the entry name CHESS. 2 Notes> ADD ENTRY BOSTON::DISK$:[SCOTT]ENGINES@ Adds the conference ENGINES, residing in user SCOTT's private? directory on device DISK$: on node BOSTON, toE/BUFFER and EXTRACT/BUFFER commands are synonyms, and can bed used interchangeably. 3 Qualifiers/ALLD Specifies that topics and all replies in the specified range are to be saved./APPENDOE Appends the saved notes to the specified buffer. If the buffer doesMD not exist, it is created. If you do not use the /APPEND qualifier, the buffer is erased first./AUTHOR=usernameB Saves only notes entered by the specified user. If you include aD node name with the user name, only no Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINs in the current conference.c Format: SHOW MEMBER [username]aCThe square brackets [] indicate that the enclosed item is optional. 3 Parametersusername@ Specifies the name of the member for whom you want information.3 Command_Descriptiona? The SHOW MEMBER command shows information about members in the C current conference. You can see information for a specific member  or all members.C! Use the /FULL qualifier to see the following information for eache ! member:t!e Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINn the message window. The cursor remains in the same location.2 RETURN RETURN: RETURN allows you to read notes in the following manner:@ o If the current note continues onto another screen, the next screen is displayed. > o If you are at the end of the current note, the next reply is displayed.: o If there are no more replies, a message is displayed. You can also use RETURN to:s4 o Display the next screen of a directory listing.6 o Terminate a com End the editing session and discard any edits.  E? If you were editing a mail message, the mail will not be sent.o= If you were preparing a topic or reply, the note will not be entered.p3 REPLACE_STRING Gold ", Gold ' ? Replace the current found search target string by the contentsi of the paste buffer.(3 RESETa Gold PERIODA Cancels the effect of the GOLD key if it was pressed by mistake,5< or cancels a select range. Also sets the current direction to forward. hC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. ! o Nodesy!l! o Mail address!o! o Privileges!h= To see a listing of members who are also moderators, use the  /MODERATOR qualifier.F If you use the SHOW MEMBER command in a conference that does not haveE a membership list, DEC Notes displays the message "No such member ino this conference". 3 Qualifiers/ALLC Shows information for all members in the current conference. ThisD qualifier is optional; /ALL is the default. Do not specify a user- name with this qualifieX 9$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1" End the editing session and discard any edits.  E? If you were editing a mail message, the mail will not be sent.o= If you were preparing a topic or reply, the note will not be entered.p3 REPLACE_STRING Gold ", Gold ' ? Replace the current found search target string by the contentsi of the paste buffer.(3 RESETa Gold PERIODA Cancels the effect of the GOLD key if it was pressed by mistake,5< or cancels a select range. Also sets the current direction to forward. hORY/CONFERENCES FULL 3 Qualifiers/ALLA Lists all conferences, including conferences you are not allowed to access. /BUFFER=buffer-namen? Puts the conference directory listing in the specified buffer.hB To display the listing, issue the command EVE BUFFER buffer-name,5 substituting the name of the buffer for buffer-name.u/OUTPUT=file-spece@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file. 3 Examples! Notes> DIREer. If theN= buffer does not exist, it is created. If you do not use then/ /APPEND qualifier, the buffer is erased first./AUTHOR=usernameC Extracts only notes entered by the specified user. If you includeA a node name with the user name, only notes entered by the author from that node are extracted./BEFORE[=date-time]< Extracts only notes entered before the specified date-time.< The date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a da Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN /unseen information is unaffected.> You can change the classes to which an entry belongs with theB /CLASSES qualifier. The list of classes you specify replaces theB list of classes to which the entry currently belongs. Therefore,@ to delete an entry from a class, use the /CLASSES qualifier and@ omit that class from the new list. If you specify a class that4 does not exist, the class is automatically created. 3 Qualifiers/CLASSES=(class-name[,...])iC Replaces the classes to which the eC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.tes entered by the author from that node are saved. /BEFORE[=date-time]A> Saves only notes entered before the specified date-time. The8 date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default is  /BEFORE=TODAY.o/HEADER (default)R /NOHEADERtA Specifies whether or not to include the note header in the saveda notes.l/KEYWORD=keyword-named/ Saves only notes having the specified keyword.a/OUTPUT=output-fileMC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. mand entered at the Notes> prompt.2 SELECT( SELECT, E4, Keypad 7 (VT100 terminals)E The SELECT command lets you select an item from a list displayed on E your screen without having to specify the item on the command line.mE When you issue one of the commands in the following list, DEC NotesiB displays a pointer (>) at the far left of the screen. Move thisF pointer forward (using KP2) or backward (using KP5) through the listD until the pointer is at the item you want. Then, issue th your Notebook.R 2 KEYWORDv?Adds a keyword to the current or specified note. The specifiedL7keyword must be an existing keyword for the conference.o Format:' ADD KEYWORD keyword-name [note-ID]ICThe square brackets [] indicate that the enclosed item is optional.s 3 Parameters keyword-name> Specifies the keyword you want to add to a note. The keyword> name must exactly match a keyword previously created with the CREATE KEYWORD command.note-IDa@ Refers to a single topihe VAX= Distributed Name Service (DNS) database. For DEC Notes, thei name identifies a conference.  hwwference.o Format:' ADD KEYWORD keyword-name [note-ID]ICThe square brackets [] indicate that the enclosed item is optional.s 3 Parameters keyword-name> Specifies the keyword you want to add to a note. The keyword> name must exactly match a keyword previously created with the CREATE KEYWORD command.note-IDa@ Refers to a single topi Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINe. Format: MODIFY MEMBER member-name 3 Parameters member-nameA> Specifies 1) the VMS user name, 2) the node and the VMS user @ name, or 3) a string enclosed in quotation marks, used with the4 /ACCESS qualifier, uniquely identifying the member.3 Command_DescriptionwA The MODIFY MEMBER command lets you change or set information foruD a member. You must have moderator privilege, and must have enabledB this privilege by issuing the SET MODERATOR command, before using the MOD IFY MEMBER command.iF Use this command to change a user's mail address, member-name, nodes, or privileges.i 3 Qualifiers/ACCESS=(node::username[,...])> Specifies the unique identity of a member by assigning one orG more nodes and user names to the member's name. This name is a stringEH enclosed in quotation marks (the quotation marks are needed only if theJ string includes any spaces) and having a maximum length of 63 characters.J Y$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1o`" ntry currently belongs with thenC list you specify. Enclose the list of class names in parentheses,e and separate them with commas.A Use the SET ENTRY/CLASSES=* command to add the entry name to all  existing classes./FILE=new-file-specd/NOFILE? Changes the notefile specification. This is used to keep yourl4 Notebook up to date when a conference is relocated./NAME=new-entry-nameE Changes the entry name from the old name to the new one you specify.E/OBJECT=object-namerte-time value, the default isl /BEFORE=TODAY.a/HEADER (default) /NOHEADER E Specifies whether to include the note header in the extracted notes. /KEYWORD=keyword-name 2 Extracts only notes having the specified keyword./OUTPUT=output-file D Names an output file in which to store extracted notes, in addition to putting them in a buffer.n/SEENc/ Marks the extracted notes as having been seen.o/SINCE[=date-time]@ Extracts only notes entered since the specified date- time. The@ date-time can be any valid VMS date-time specification. If youH specify /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"u> Extracts notes having the specified string in the note title.* Surround the string with quotation marks./UNSEENT Extracts only unseen notes. 3 Examples Notes> EXTRACT/BUFFER MAILs5 Extracts the current note to a buffer called MAIL..% Notes> EXTRACT/BUFFER BOOKS 10.*nC Extracts topic 10 and all its/UNSEEN  Saves only unseen notes.i 3 Examples Notes> SAVE/BUFFER MAIL2 Saves the current note to a buffer called MAIL." Notes> SAVE/BUFFER BOOKS 10.*@ Saves topic 10 and all its replies, and puts them in a buffer named BOOKS.l2 Notes> SAVE/BUFFER COLLEGES *.* /KEYWORD=YALE@ Saves all notes in the conference that have the keyword YALE,- and puts them in a buffer called COLLEGES.e1 Notes> SAVE/BUFFER NUCLEAR 8-30 /AUTHOR=GLENy@ Saves topics from e SELECT, command (or press KP7) to select the item.< DIRECTORY -- Reads a note in a conference> DIRECTORY/CONFERENCES -- Adds an entry to your Notebook? DIRECTORY/ENTRIES -- Opens an entry in your Notebook7 SHOW CLASSES -- Sets default to a classa3 SHOW ENTRY -- Reads a marked note @ SHOW KEYWORDS/ALL -- Adds keyword to the current note@ SHOW KEYWORDS/FULL -- Adds keyword to the current note3 SHOW MARKE3 RIGHT RIGHT, Move the cursor one character to the right. 3 RUBOUT_WORD- LINEFEEDe@ Delete all characters from the cursor position to the beginning< of the word containing the cursor. If the cursor is on the9 first character of a word, the previous word is deleted.u t 3 RUBOUT_LINEH Gold DELETE? Delete the text to the left of the cursor and stores it in thed@ delete line buffer. When the text is at the leftmost character2 position on a line, the previous line is 3 RIGHT RIGHT, Move the cursor one character to the right. 3 RUBOUT_WORD- LINEFEEDe@ Delete all characters from the cursor position to the beginning< of the word containing the cursor. If the cursor is on the9 first character of a word, the previous word is deleted.u t 3 RUBOUT_LINEH Gold DELETE? Delete the text to the left of the cursor and stores it in thed@ delete line buffer. When the text is at the leftmost character2 position on a line, the previous line is  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINCTORY/CONFERENCESd@ Displays a listing of all the conferences on the current node you are allowed to access.Y, Notes> DIRECTORY/CONFERENCES /ALL NODE1E Displays a listing of all the conferences on node NODE1, includingd- conferences in which you are not a member.d0 Notes> DIRECTORY/CONFERENCES DISK$:[HARVEY]A Displays a listing of the conferences in user HARVEY's privatet directory on device DISK$:.2 Notes> DIRECTORY/CONFERENCES /BUFFER=DIR HALOE Put s the directory of conferences on node HALO into a buffer namedtB DIR. You can view the directory listing at any time during theC current DEC Notes session by issuing the command EVE BUFFER DIR,cB instead of having to reissue the DIRECTORY/CONFERENCES command.7 Notes> DIRECTORY/CONFERENCES /OUTPUT=DIR.LIS MYVAXnE Puts the directory of conferences on the node MYVAX into an outputt file named DIR.LIS. 2 /ENTRIES?Displays a listing of the entries in the current (or specified)a A The /ACCESS qualifier is necessary when two members who have theC? same VMS user name need to be assigned different privileges ore different mail addresses.; You must enclose a list of nodes and names in parentheses.t/MAIL=mail-address/NOMAIL E Changes or sets the mailing address for this user to the address youe specify.1 To delete a user's mailing address, use /NOMAIL../NAME=new-username3 Changes the user name to the new name you specify.E/NODES=( Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN c or reply. The default is the topic or! reply you are currently reading.e3 Command_Descriptiont> Use the ADD KEYWORD command to add an existing keyword to theD current or specified note. If you do not specify a note, DEC Notes8 adds the keyword to the note you are currently reading.A The keyword name you specify must be an existing keyword for thenF conference. In a conference that restricts the creation of keywords,E you must have CREATE_KEYWORDS privilege to create a new keyword. Ife H you have MODERATE or CREATE_KEYWORDS privilege, DEC Notes automaticallyD creates a keyword the first time you add the keyword to a note. InC a conference that does not restrict keywords, you can create a new ) keyword with the CREATE KEYWORD command.oC You can see all the keywords defined for a conference by using then SHOW KEYWORDS /FULL command."B You can see all the keywords associated with a particular note by' using the SHOW NOTE /KEYWORDS command.eA You can see all the notes ar.!/FULL!u7! Shows complete information about the specified users.D!r /MODERATOR? Shows only users who have moderator privilege (PRIV=MODERATE). 3 Examples Notes> SHOW MEMBER MARTIN' Shows information about user MARTIN.M Notes> SHOW MEMBEReA Shows information about all members in the current conference./&! Notes> SHOW MEMBER/MODERATOR/FULL! Notes> SHOW MEMBER/MODERATORo1 Shows complete information for all moderators.c 2 MODERATORf8Shows the name deleted. 3 RUBOUT_CHARACTER DELETE= Deletes the character preceding the cursor. When the cursore: is at the leftmost character position on a line, the line< terminator to the left is deleted and the text on that line5 is moved to the right of the text on the line above.n P 3 SEARCH_KEY E1, FIND, Gold < and Gold ,< Prompts for a string you wish to search for. The search isB done first in the current direction. If the string is not found,. a search will be made in the otheZTC5$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1ˊ" r direction. d3 SEARCH_REPLACE Gold ;, Gold Se= Prompts for a string to search for and a replacement string.a? The search is done first in the current direction, then in the  other direction.T H3 SEARCH_RIGHT_ANGLE ENTER< Searches for the next occurrence of the ">" character. The7 cursor is position on the character following the ">".i 3 SENTENCE  Keypad 7, Gold Keypad 7 e< Moves in the current direction to the beginning of the next sentence. t3 SELECT class in your Notebook.b Format:# DIRECTORY/ENTRIES [entry-name]dCThe square brackets [] indicate that the enclosed item is optional.w 3 Parameters entry-nameE Specifies an entry for which a directory listing is to be displayed. C If you do not specify an entry, the directory listing includes all) entries.R3 Command_DescriptioncB The DIRECTORY/ENTRIES command displays a directory listing of theE requested entries in your Notebook. If you do not specify an entry,hA all e replies, and puts them in a bufferr named BOOKS.C5 Notes> EXTRACT/BUFFER COLLEGES *.* /KEYWORD=YALEcC Extracts all notes in the conference that have the keyword YALE,S- and puts them in a buffer called COLLEGES. 4 Notes> EXTRACT/BUFFER NUCLEAR 8-30 /AUTHOR=GLENC Extracts topics from topic 8.0 through 30.0 that were entered by6 user GLEN and puts them in a buffer called NUCLEAR.A Notes> EXTRACT/BUFFER NOTES *.* /SINCE=15-MAR /BEFORE=18-MARf> Extracts all /NOOBJECT (default)3A If the conference has an object name in the VAX Distributed Namee? Service (DNS) database, use the /OBJECT qualifier to associateF! the entry with the DNS object. 3 Examples+ Notes> SET ENTRY CLIMATE /NAME=WEATHERf4 Changes the name of the entry CLIMATE to WEATHER./ Notes> SET ENTRY HEAT /FILE=PUBLIC::ENERGY,F Changes the file specification of the entry HEAT to PUBLIC::ENERGY. 2 KEYWORDs3Changes or sets specific information for a keyword.b Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINdeleted. 3 RUBOUT_CHARACTER DELETE= Deletes the character preceding the cursor. When the cursore: is at the leftmost character position on a line, the line< terminator to the left is deleted and the text on that line5 is moved to the right of the text on the line above.n P 3 SEARCH_KEY E1, FIND, Gold < and Gold ,< Prompts for a string you wish to search for. The search isB done first in the current direction. If the string is not found,. a search will be made in the other direction. d3 SEARCH_REPLACE Gold ;, Gold Se= Prompts for a string to search for and a replacement string.a? The search is done first in the current direction, then in the  other direction.T H3 SEARCH_RIGHT_ANGLE ENTER< Searches for the next occurrence of the ">" character. The7 cursor is position on the character following the ">".i 3 SENTENCE  Keypad 7, Gold Keypad 7 e< Moves in the current direction to the beginning of the next sentence. t3 SELECT+ssociated with a keyword by using thed) DIRECTORY /KEYWORD=keyword-name command.o 3 Examples# Notes> ADD KEYWORD FARMING 5.2 ( Adds the keyword FARMING to note 5.2. Notes> READ 4.7% Notes> ADD KEYWORD COMPILER_BUGSe; Adds the keyword COMPILER_BUGS to note 4.7 (which is them current note). 2 MARKERDAdds a marker to the current or specified note in the current entry. Format:% ADD MARKER marker-name [note-ID]CThe square brackets [] indicate that the e!node-name[,...])A Replaces the previous list of nodes for this member with the new(= nodes you specify. You must enclose a list of node names iny/ parentheses, and separate names with commas. iD The /ACCESS qualifier supersedes the /NODES qualifier. Once a user; has an access list, the node list is ignored by DEC Notes.kC/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS) /NOPRIVILEGES B Changes or sets this user's privileges. With MODERATE privilege,G this member Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN R/ALL -- Reads a marked notecF When viewing a listing of entries in your Notebook, you can move theD pointer to the next entry with a non-zero Unseen count by pressingB KP3. You can move the pointer back to the previous entry with aH non-zero Unseen count by pressing KP1. When you press the SELECT key,) DEC Notes opens the entry you selected.tD When viewing a directory of notes, DEC Notes displays the note you selected.tI SELECT also allows you to select a conference that is linked to a note, F and add the conference to your Notebook. A note that is linked to aD conference has an asterisk (*) next to its note number in the note heading.2 START_OF_LINEd CTRL/HF START OF LINE moves the cursor to the beginning of the current line.E A message is displayed if you are already at the start of the line.b2 TABi CTRL/IF TAB inserts a tab character at the current cursor position. The tabH character is inserted regardless of whether the buffer% PERIOD, E4, SELECT D Marks one end of a select range. A select range is a block of textB on which various operations (such as CUT, APPEND, or FILL) can be' performed. To create a select range: v sF 1. Move the cursor to either the beginning or end of the text you wish to select.m 2. Press the SELECT key.o8 3. Move the cursor to the opposite end of the text. 8You can then perform the desired operation on the range.3 SWAP Gold ENTER, Gold RIGHTE= Swaps t topic 8.0 through 30.0 that were entered by6 user GLEN and puts them in a buffer called NUCLEAR.> Notes> SAVE/BUFFER NOTES *.* /SINCE=15-MAR /BEFORE=18-MAR; Saves all notes in the conference entered since 15 MarchpA (00:00:00:00) but before 18 March (00:00:00:00), and puts theme in a buffer called NOTES.wwrC/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS)u /NOPRIVILEGESVB Changes or sets this user's privileges. With MODERATE privilege,G this member Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN of moderators for the current conference. Format: SHOW MODERATORh3 Command_Descriptiond@ The SHOW MODERATOR command shows the node and user name of each& moderator for the current conference. 3 Examples Notes> SHOW MODERATOR5 Shows the names of moderators for this conference. 2 NOTE6Shows information about the specified or current note. Format: SHOW NOTE [note-ID]CThe square brackets [] indicate that the enclosed item is optional.i 3 Parametersnote[ *S$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1V"$-IDiD Specifies a single topic or reply. The default is the note you are currently reading.y3 Command_Descriptiona@ The SHOW NOTE command shows the following information about the specified or current note:  o The number of repliesm7 o The author's user name and complete personal nameo o The complete title- o The number of lines of text in the note @ o Any associated notefile specification (if the note was put on a "shopping list")nC o Whether funotes in the conference entered since 15 MarchA (00:00:00:00) but before 18 March (00:00:00:00), and puts themW in a buffer called NOTES.wwyed on your screen, you canB open an entry by moving the pointer (>) to the entry you want andB issuing the SELECT command (or pressing the SELECT key). You can3 use the following keypad keys to move the pointer:o* KP2 - Moves forward to the next entry./ KP5 - Moves backward to the previous entry.hE KP3 - Skips forward to the next entry GP? Changes the name of the keyword FARMS to FARMING. All notes:@ to which the previous keyword name (FARMS) had been added now have the new keyword FARMING.2 MEMBEREChanges or sets specific information about a member on the membership list for the current conference. Format: SET MEMBER member-nameE 3 Parameters member-nameW> Specifies 1) the VMS user name, 2) the node and the VMS user @ name, or 3) a string enclosed in quotation marks, used with the4 /ACCESS qua)lifier, uniquely identifying the member.3 Command_Descriptiont@ The SET MEMBER command lets you change or set information for aB member. You must have moderator privilege, and must have enabledB this privilege by issuing the SET MODERATOR command, before using the SET MEMBER command.D Use this command to change a user's mail address, user name, nodes, or privileges.i 3 Qualifiers/ACCESS=(node::username[,...])> Specifies the unique identity of a member by assigning one orG more node is in Insert or Overstrike mode.2 TOGGLE_DISPLAY Keypad 6L When viewing a note, keypad 6 displays the previously displayed directory.G When viewing a directory, keypad 6 displays the previously read note..2 TOGGLE_NUMERIC PF4 E TOGGLE NUMERIC switches the keypad between command mode and numeric G mode. In command mode, the keypad can be used to issue commands. In.F numeric mode, the keypad can be used to enter numbers on the command line.tww4.N2 OBJECT=Shows th/ PERIOD, E4, SELECT D Marks one end of a select range. A select range is a block of textB on which various operations (such as CUT, APPEND, or FILL) can be' performed. To create a select range: v sF 1. Move the cursor to either the beginning or end of the text you wish to select.m 2. Press the SELECT key.o8 3. Move the cursor to the opposite end of the text. 8You can then perform the desired operation on the range.3 SWAP Gold ENTER, Gold RIGHTE= Swaps t &ntries are displayed. You can specify the name of a singleC- entry to see statistics for that entry only. @ When the directory listing is displayed on your screen, you canB open an entry by moving the pointer (>) to the entry you want andB issuing the SELECT command (or pressing the SELECT key). You can3 use the following keypad keys to move the pointer:o* KP2 - Moves forward to the next entry./ KP5 - Moves backward to the previous entry.hE KP3 - Skips forward to the next entry " can issue the SET MODERATOR command. With CREATE_KEYWORDSh? privilege, this member can create new keywords for the currento: conference; when keyword creation is restricted, without C CREATE_KEYWORDS, a member can only add existing keywords to notes.s? With WRITE_REGARDLESS privilege, a member can write notes in a C conference set to NOWRITE, can write topics in a conference set toyE REPLY_ONLY, and can write replies to topics that are set to NOWRITE. 2 To delete a user's privileges, use /N#OPRIVILEGES. 3 Examples2 Notes> MODIFY MEMBER WAYNE /MAIL=TEXAN::WAYNE7 Changes member WAYNE's mail address to TEXAN::WAYNE. @ Notes> MODIFY MEMBER JONES /NAME=KENYON /MAIL=SPACE::KENYONB Changes JONES's user name to KENYON, and specifies the new user name in the mail address.6 Notes> MODIFY MEMBER JOHNSON /NODES=(GREEN,BROWN)B Changes the node names that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.3 Notes> MODIFY M3EMBER BYRD /PRIVILEGES=MODERATEt> Grants MODERATE privilege to member BYRD, and automaticallyE grants this member CREATE_KEYWORDS and WRITE_REGARDLESS privilege.R2 NOTE2Changes or sets attributes for the specified note. Format: MODIFY NOTE [note-ID]CThe square brackets [] indicate that the enclosed item is optional.C 3 Parametersnote-IDrD Specifies a single topic or reply. The default is the note you are currently reading.O3 Command_DescriptionoA The MODIFY :rther replies have been prohibited by the author ors moderatoroA o Whether the note has been hidden by the author or moderators@ Use the /KEYWORDS qualifier to see the keywords associated with the note. 3 Qualifiers /KEYWORDS B Shows the keywords to which the specified or current note refers. 3 Examples Notes> SHOW NOTE 3.4e$ Shows information about note 3.4.! Notes> SHOW NOTE /KEYWORDS 4e- Shows the keywords referred to by topic 4.N2 OBJECT=Shows th*he position of the character the cursor is on and thea@ character immediately following the cursor. If you type "teh",@ place the cursor on the "e", and press SWAP, the result will be "the". 3 TOPt Gold Te: Moves the cursor to the top of the document being edited.3 UNDELETE_WORD Gold PF3bB Inserts the contents of the delete word buffer to the left of the cursor. b3 UNDELETE_CHARACTER Gold PF4rC Inserts the contents of the delete character buffer to the left of 'with non-zero unseen count.nC KP1 - Skips backward to the previous entry with non-zero unseene count./ If no conference is open, /ENTRIES is assumed. D The DIRECTORY/ENTRIES and DIRECTORY/NOTEBOOK commands are synonyms,! and can be used interchangeably.a 3 Qualifiers/BUFFER=buffer-namea@ Puts the directory listing in the specified buffer. To see the= directory listing, issue the command EVE BUFFER buffer-name,a5 substituting the name of the buffer for buffer-name.l/C(LASS=class-nameo/CLASS=current-class (default)@ Specifies the class for which you want to display the directory> listing. If you do not specify a class, the current class is assumed./OUTPUT=file-specc@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file. 3 Examples# Notes> DIRECTORY/ENTRIES COBOLH? Displays statistics for the entry named COBOL in the currentR class.c+ Notes> DIRECTORY/ENTRIES /CLASS=MOVIES 22 Displays statistics for the class named MOVIES.: Notes> DIRECTORY/ENTRIES /CLASS=MATERIALS /BUFFER=DIR@ Creates a listing of the entries in class MATERIALS, and putsB the listing in the buffer named DIR. To see the listing, issue the command EVE BUFFER DIR.1 Notes> DIRECTORY/ENTRIES /OUTPUT=ENTRIES.LISnD Creates a listing of the entries in the current class, and stores+ the listing in a file named ENTRIES.LIS.r 2 /NOTEBOOKi?Displays a listing of the entries 4s and user names to the member's name. This name is a stringtH enclosed in quotation marks (the quotation marks are needed only if theJ string includes any spaces) and having a maximum length of 63 characters.J /MAIL=mail-address/NOMAIL E Changes or sets the mailing address for this user to the address younD specify. Use the /MAIL qualifier for each member if you want to beF able to use the SEND/MEMBERS command to s0 the cursor. 3 UP UP A The ^ (up-arrow) key moves the cursor to the character above, in 2 the same column or to the end of the line above. 3 UPPER_CASE Keypad 3gD Changes the character under the cursor to Upper Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLD B keys are pressed,? all the characters in the selected entities will be changed toaA Upper Case until a non-entity key (suggest ADVANCE or BACKUP) is ? pressed. If a range of characters is first\SI7$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1"+,nclosed item is optional.t 3 Parameters marker-nameaC Consists of a text-string that names a marker in a Notebook entry.anote-IDo? Refer to a single topic or reply. The default is the topic ort! reply you are currently reading.o3 Command_DescriptiontB A marker is a word or phrase that you associate with a particularE note so that you can refer to the note by the word or phrase insteadEB of its note number. Marker names must be unique within an entry,@ although you can use the same - marker name in different entries.D However, if you issue the READ/MARKER command when no conference isA open and specify a duplicate marker name, DEC Notes displays the8 marked note in the first entry (in alphabetical order).E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEROC command to read a marker that is used in more than one conference.wF Issuing the READ/MARKER command without the /ENTRY qualifier displays< the marked note in the first entry (in alphabetical order .).E If you do not specify a note to be marked, DEC Notes adds the markere' to the note you are currently reading.sC You can see all the markers you created for the current entry, andcE the note number associated with each, by using either the SHOW ENTRYM@ command or the SHOW MARKER/ALL command. To see the note numberB associated with a particular marker, use the SHOW MARKER command.A To retrieve a note that you marked, use the READ/MARKER command.hB To delete a marker, use the DELETE 8MARKER command. (This deletes the marker only, not the note.)? The ADD MARKER and MARK commands are synonyms, and can be usedr interchangeably. 3 Examples$ Notes> ADD MARKER STAR_WARS 3.2) Adds the marker STAR_WARS to note 3.2.d2 MEMBER$Adds a new member to the conference. Format: ADD MEMBER member-namee 3 Parameters member-namer> Specifies 1) the VMS user name, 2) the node and the VMS user @ name, or 3) a string enclosed in quotation marks, used with the4 /5he position of the character the cursor is on and thea@ character immediately following the cursor. If you type "teh",@ place the cursor on the "e", and press SWAP, the result will be "the". 3 TOPt Gold Te: Moves the cursor to the top of the document being edited.3 UNDELETE_WORD Gold PF3bB Inserts the contents of the delete word buffer to the left of the cursor. b3 UNDELETE_CHARACTER Gold PF4rC Inserts the contents of the delete character buffer to the left of 1 selected, this keyeD applies Upper Case to all of the characters in the selected range. 3 WORD_WRAPt Gold Ws@ Rewraps the SELECTED text, filling the lines to fit between the current margin settings. 3 WORD_KEY Keypad 4, Gold Keypad 4@ Moves the cursor forward or backward by a word (see ADVANCE and BACKUP). 3 WRAP_PARAGRAPH Gold Keypad 5B Cause the paragraph containing the cursor to be wordwrapped again? as if the paragraph had been SELECTed and then GOLD W had bBeen  typed. wwhe DEC Notes software.nwwames that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (proviIin the current (or specified)eclass in your Notebook.W Format:$ DIRECTORY/NOTEBOOK [entry-name]CThe square brackets [] indicate that the enclosed item is optional. 3 Parameters entry-nameE Specifies an entry for which a directory listing is to be displayed.mC If you do not specify an entry, the directory listing includes alln entries.e3 Command_DescriptioniC The DIRECTORY/NOTEBOOK command displays a directory listing of thedE requested entries in your Notebook. If you d>NOTE command changes or sets the following attributesk# for the current or specified note:T) o Puts the note on a "shopping list".i> o Hides the note from all users except a moderator and the author of the note.  o Changes the title.0 o Prevents anyone from replying to the note.< o Moves one or more notes to a different location in the conference.DB By putting a note on a shopping list, you give interested users aB convenient way to add a new conferenc9end mail to all the members.1 To delete a user's mailing address, use /NOMAIL.Y/NAME=new-username3 Changes the user name to the new name you specify.c/NODES=(node-name[,...])A Replaces the previous list of nodes for this member with the newt= nodes you specify. You must enclose a list of node names ina- parentheses, and separate names with commas. D The /ACCESS qualifier supersedes the /NODES qualifier. Once a user; has an access list, the node list is ignored by DEC Notes.t6 the cursor. 3 UP UP A The ^ (up-arrow) key moves the cursor to the character above, in 2 the same column or to the end of the line above. 3 UPPER_CASE Keypad 3gD Changes the character under the cursor to Upper Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLD B keys are pressed,? all the characters in the selected entities will be changed toaA Upper Case until a non-entity key (suggest ADVANCE or BACKUP) is ? pressed. If a range of characters is first7 selected, this keyeD applies Upper Case to all of the characters in the selected range. 3 WORD_WRAPt Gold Ws@ Rewraps the SELECTED text, filling the lines to fit between the current margin settings. 3 WORD_KEY Keypad 4, Gold Keypad 4@ Moves the cursor forward or backward by a word (see ADVANCE and BACKUP). 3 WRAP_PARAGRAPH Gold Keypad 5B Cause the paragraph containing the cursor to be wordwrapped again? as if the paragraph had been SELECTed and then GOLD W had been  typed. wwhe DEC Notes software.nwwames that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (provi CACCESS qualifier, uniquely identifying the member.C When you specify the full node::username, DEC Notes treats this asr6 though you specified ADD MEMBER username /NODES=node.3 Command_Descriptiono> The ADD MEMBER command is used by the moderator to add a new > user to the membership list for a conference. (A membership > list is needed when the conference is private or restricted.)E You can list node names that, together with the user name, identify o= this user. You can uniquely identify ?C/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS)r /NOPRIVILEGESrB Changes or sets this user's privileges. With MODERATE privilege,G this member can issue the SET MODERATOR command. With CREATE_KEYWORDSL? privilege, this member can create new keywords for the currenth: conference; when keyword creation is restricted, without C CREATE_KEYWORDS, a member can only add existing keywords to notes..? With WRITE_REGARDLESS privilege, a member can write notes in aiC conferenc;e notefile specification (if any) associated with thea:specified object in the VAX Distributed Name Service (DNS);database. In DEC Notes, the object is a name identifying ae conference.2For more detail, see the help text for ADD OBJECT. Format: SHOW OBJECT object-namel 3 Parameters object-name: Specifies the name of the object as registered in the VAX= Distributed Name Service (DNS) database. For DEC Notes, thes name identifies a conference.  < E 2 PROFILED$Shows your current profile settings. Format: SHOW PROFILEg3 Command_Descriptionp> The SHOW PROFILE command shows your current profile settings, including:RB o The default editor, and the method for accessing the editor. o The default class.! o Your personal name, if any.i? o The default qualifier list for the PRINT command, if any.sA o Whether a directory listing, the first unseen message, or acA conference heading is au]Ae$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1"<=tomatically displayed when you openi an entry.t 3 Examples Notes> SHOW PROFILE/ Shows the current settings for your profile.e 2 VERSIONrBShows information about the version of DEC Notes you are currentlyusing. Format: SHOW VERSIONe3 Command_DescriptiontC The SHOW VERSION command shows the version number of the DEC NotesP6 software you currently have installed on your system. 3 Examples Notes> SHOW VERSION DEC Notes V2.5C Shows that you are using Version V2.5 of the DEC Notes software.nwwames that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (provi De to their Notebooks withoutD leaving the current conference. You use the MODIFY NOTE/CONFERENCED command to link the file specification of the new conference with aC particular note. (DEC Notes puts an asterisk (*) next to the noteeD number to indicate that the note is linked to a conference.) Then,A someone reading that note can add the linked conference to theirs% Notebook by pressing the SELECT key.eB You can temporarily hide a note using the /HIDDEN qualifier. TheB note remains part@e set to NOWRITE, can write topics in a conference set toyE REPLY_ONLY, and can write replies to topics that are set to NOWRITE.e2 To delete a user's privileges, use /NOPRIVILEGES. 3 Examples/ Notes> SET MEMBER WAYNE /MAIL=TEXAN::WAYNE7 Changes member WAYNE's mail address to TEXAN::WAYNE.E= Notes> SET MEMBER JONES /NAME=KENYON /MAIL=SPACE::KENYONeB Changes JONES's user name to KENYON, and specifies the new user name in the mail address.3 Notes> SET MEMBER JOHNSAON /NODES=(GREEN,BROWN)iB Changes the node names that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (provi Qded you are the owner of the conference, or anothertD moderator has authorized you to act as moderator). As long as your> member record for this conference indicates you have MODERATEA privilege, you can issue the SET MODERATOR command. You can seeg1 whether you have MODERATE privilege in two ways:c< o Use the SHOW MEMBER command to see your member record.@ o Use the SHOW MODERATOR command to see if your user name is0 listed as a moderator for this conference.D You can tempoSded you are the owner of the conference, or anothertD moderator has authorized you to act as moderator). As long as your> member record for this conference indicates you have MODERATEA privilege, you can issue the SET MODERATOR command. You can seeg1 whether you have MODERATE privilege in two ways:c< o Use the SHOW MEMBER command to see your member record.@ o Use the SHOW MODERATOR command to see if your user name is0 listed as a moderator for this conference.D You can tempoH members (regardless ofe2 identical user names) with the /ACCESS qualifier.8 You can specify a mailing address, and grant privileges? that let the user act as moderator or create keywords for thisn8 conference, and write notes when writing is restricted.B You can change a user's privileges, mail address, nodes, and user1 name at any time with the MODIFY MEMBER command.h 3 Qualifiers/ACCESS=(node::username[,...])> Specifies the unique identity of a member by assigning one orG more node E of the conference, but can be displayed only byE the author or a moderator. All other users get a message indicatinge0 this note is hidden when they try to access it.E A moderator or the author of a note can use the /[NO]TITLE qualifierN3 to change or delete the title of an existing note.h; Use the /NOWRITE qualifier to prevent further replies to ae? discussion. When you want to resume replies, issue the MODIFY.A NOTE/WRITE command. Only a moderator or the author of the topics- can speFcify whether users can enter replies.-@ To mark notes you have not yet read as "seen", use the SET SEEN command.c 3 Qualifiers/CONFERENCE=notefile-specr /NOCONFERENCEgB Associates the specified conference with this note to allow usersD to add the conference to their Notebooks by pressing the SELECT key? or keypad key 7. A note that is linked to a conference by the D MODIFY NOTE/CONFERENCE command has an asterisk (*) next to its note number./HIDDENd /NOHIDDENhA Specifies whethGer users can display this note. Hidden notes canSB only be viewed by the author or a moderator. All other users get. a message indicating that the note is hidden./NOTE_ID=new-note-IDF Moves a note or a sequential series of notes to a new location in the. conference, as specified by the new note-ID. /TITLE="string"c/NOTITLEC Allows a moderator or the author of a note to change or delete the  title of an existing note.r/WRITE/NOWRITEA Specifies whether users can enter fur]ther replies to this topic.t> Only a moderator or the author of the topic can specify this. 3 Examples2 Notes> MODIFY NOTE /CONFERENCE=ANGEL::METHODSD Associates the conference METHODS on node ANGEL with the note you> are currently reading. Users reading this note can add theD conference METHODS to their Notebooks by pressing the SELECT key.# Notes> MODIFY NOTE /HIDDEN 3.4 B Only the author of topic 3 or the conference moderator can read note 3.4.& Notes> MODINs and user names to the member's name. This name is a stringtH enclosed in quotation marks (the quotation marks are needed only if theJ string includes any spaces) and having a maximum length of 64 characters.) The /ACCESS qualifier is necessary only h9 when two members who have the same VMS user name need toc> be assigned different privileges or different mail addresses.; You must enclose a list of nodes and names in parentheses.b/MAIL=mail-address/NOMAIL < Specifies a mailing a Jo not specify an entry,eA all entries are displayed. You can specify the name of a singlee- entry to see statistics for that entry only.t@ When the directory listing is displayed on your screen, you canB open an entry by moving the pointer (>) to the entry you want andB issuing the SELECT command (or pressing the SELECT key). You can3 use the following keypad keys to move the pointer:* KP2 - Moves forward to the next entry./ KP5 - Moves backward to the previous entry.rE KP3 - KSkips forward to the next entry with non-zero unseen count.nC KP1 - Skips backward to the previous entry with non-zero unseen  count.0 If no conference is open, /NOTEBOOK is assumed.D The DIRECTORY/NOTEBOOK and DIRECTORY/ENTRIES commands are synonyms,! and can be used interchangeably.m 3 Qualifiers/BUFFER=buffer-namep; Puts the directory listing of the requested entries in thei= specified buffer. To see the listing, issue the command EVE< BUFFER buffer-name, substitutinLg the name of the buffer for buffer-name.n/CLASS=class-name /CLASS=current-class (default)@ Specifies the class for which you want to display the directory> listing. If you do not specify a class, the current class is assumed.a/OUTPUT=file-speca@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file. 3 Examples$ Notes> DIRECTORY/NOTEBOOK COBOL? Displays statistics for the entry named COBOL in the currente classM.n, Notes> DIRECTORY/NOTEBOOK /CLASS=MOVIESA Displays statistics for all entries in the class named MOVIES._; Notes> DIRECTORY/NOTEBOOK /CLASS=MATERIALS /BUFFER=DIRtB Creates a listing of the entries in class MATERIALS, and storesB the listing in the buffer named DIR. To see the listing, issue the command EVE BUFFER DIR.2 Notes> DIRECTORY/NOTEBOOK /OUTPUT=ENTRIES.LISD Creates a listing of the entries in the current class, and stores, this listing in a fil^N$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1l"Me named ENTRIES.LIS.ww, this member may= create new keywords. In a conference that restricts keyword A creation, without CREATE_KEYWORDS privilege, a user may only add  existing keywords to notes. nB If you give the member WRITE_REGARDLESS privilege, the member canB write notes in a conference set to NOWRITE, can write topics in aC conference set to REPLY_ONLY, and can write replies to topics thate are set to NOWRITE. 3 ExamplesA Notes> ADD MEMBER SOMNOD::SMITH /PRIVILEGES=WRITE Oddress for this member. To be able to6 send mail to all members from within Notes, using the5 SEND/MEMBERS command, you must have specified a mailu9 address for each with the /MAIL qualifier. This is alsoM: useful when the member uses a mail system other than the 8 VMS Mail Utility (MAIL), or wants to receive mail on a  particular system. /NODES=(node-name[,...])A Specifies the node names that, used in combination with the useryC name, identify this member. You must enclose a list ofP node namess. in parentheses, separating names with commas.C/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS)t /NOPRIVILEGEStA Gives this member the ability to act as moderator, to create neweD keywords for this conference, and/or to write notes when writing is restricted. G If you give a member MODERATE privilege, this member may issue the SETG MODERATOR command. A user who has MODERATE privilege automatically hast the other privileges.B If you give the member [CREATE_KEYWORDS privilege, this member may= create new keywords. In a conference that restricts keyword A creation, without CREATE_KEYWORDS privilege, a user may only add  existing keywords to notes. nB If you give the member WRITE_REGARDLESS privilege, the member canB write notes in a conference set to NOWRITE, can write topics in aC conference set to REPLY_ONLY, and can write replies to topics thate are set to NOWRITE. 3 ExamplesA Notes> ADD MEMBER SOMNOD::SMITH /PRIVILEGES=WRITE Rrarily suspend your moderator privilege by issuing theD SET NOMODERATOR command. When you do this, you forfeit the abilityA to delete or hide other users' notes, to add new users or changeBF existing users' privileges, and so on. You can suspend and reinstateA moderator privilege at any time, and as often as you like. YourhA member record does not change when you issue the SET NOMODERATOR command.eF If you are the last moderator on record in a conference (that is, youH were the last modXerator to issue the SET MODERATOR command) and somehowB delete your moderator privilege, you can restore the privilege as follows:e4 Reenter the conference. You will see this message:G You are still a moderator by default -- check your membership listRB Make sure that the node and user name you are currently logged in= under match your node and user name when you last issued theb= SET MODERATOR command; if there is any doubt, doublecheck byt typingc Notes> SHOW CONFERENCETrarily suspend your moderator privilege by issuing theD SET NOMODERATOR command. When you do this, you forfeit the abilityA to delete or hide other users' notes, to add new users or changeBF existing users' privileges, and so on. You can suspend and reinstateA moderator privilege at any time, and as often as you like. YourhA member record does not change when you issue the SET NOMODERATOR command.eF If you are the last moderator on record in a conference (that is, youH were the last modUerator to issue the SET MODERATOR command) and somehowB delete your moderator privilege, you can restore the privilege as follows:e4 Reenter the conference. You will see this message:G You are still a moderator by default -- check your membership listRB Make sure that the node and user name you are currently logged in= under match your node and user name when you last issued theb= SET MODERATOR command; if there is any doubt, doublecheck byt typingc Notes> SHOW CONFERENCEV( Restore your moderator status by typing Notes> SET MODERATOR ; Then immediately reset your moderator privilege as follows+ (substituting your user name for "SMITH"):l3 Notes> MODIFY MEMBER SMITH/PRIVILEGES=MODERATEi 3 Examples Notes> SET MODERATORs, Allows you to perform Moderator commands. Notes> SET NOMODERATOR B Suspends your moderator privilege. DEC Notes recognizes you as> an ordinary user until you issue the SET MODERATOR command.2 NOTE2WChanges or sets attributes for the specified note. Format: SET NOTE [note-ID]tCThe square brackets [] indicate that the enclosed item is optional.c 3 Parametersnote-ID,< Specifies by number either a single note (for example, 8.3)A or a range of notes (for example, 10.0-10.6). You can specify ae7 range of notes only if you use the /NOTE_ID qualifier.e3 The default is the note you are currently reading.y3 Command_Description B The SET NOTE command changes or sets the follgowing attributes for the current or specified note: ) o Puts the note on a "shopping list"..> o Hides the note from all users except a moderator and the author of the note.u o Changes the title.0 o Prevents anyone from replying to the note.< o Moves one or more notes to a different location in the conference.aB By putting a note on a shopping list, you give interested users aB convenient way to add a new conference to their Notebooks withoutA leavingY( Restore your moderator status by typing Notes> SET MODERATOR ; Then immediately reset your moderator privilege as follows+ (substituting your user name for "SMITH"):l3 Notes> MODIFY MEMBER SMITH/PRIVILEGES=MODERATEi 3 Examples Notes> SET MODERATORs, Allows you to perform Moderator commands. Notes> SET NOMODERATOR B Suspends your moderator privilege. DEC Notes recognizes you as> an ordinary user until you issue the SET MODERATOR command.2 NOTE2ZChanges or sets attributes for the specified note. Format: SET NOTE [note-ID]tCThe square brackets [] indicate that the enclosed item is optional.c 3 Parametersnote-ID,< Specifies by number either a single note (for example, 8.3)A or a range of notes (for example, 10.0-10.6). You can specify ae7 range of notes only if you use the /NOTE_ID qualifier.e3 The default is the note you are currently reading.y3 Command_Description B The SET NOTE command changes or sets the folleowing attributes for the current or specified note: ) o Puts the note on a "shopping list"..> o Hides the note from all users except a moderator and the author of the note.u o Changes the title.0 o Prevents anyone from replying to the note.< o Moves one or more notes to a different location in the conference.aB By putting a note on a shopping list, you give interested users aB convenient way to add a new conference to their Notebooks withoutA leaving\_REGARDLESStA Adds user SMITH on node SOMNOD to the membership list for thisf9 conference, and grants the WRITE_REGARDLESS privilege. 9 Since the full user name specification is given in theu= member-name parameter, the /NODES qualifier is not needed.e7 Notes> ADD MEMBER MILLY /NODES=(NODE1,NODE2,NODE3)tD Adds user MILLY on nodes NODE1, NODE2, and NODE3. User MILLY canD log in from any one of these three nodes and be recognized by DEC Notes.n7 Notes> ADD MEMBERb ABRA::CASEY /PRIVILEGES=MODERATEr@ Adds user CASEY on node ABRA, and grants this member MODERATEE privilege. User CASEY can use the SET MODERATOR command to act asu! moderator for this conference.hF Notes> ADD MEMBER DEAN/NODES=(BLINNY,BLINKY)/PRIV=CREATE_KEYWORDSD Adds user DEAN on nodes BLINNY and BLINKY, and grants this member CREATE_KEYWORDS privilege.TI Notes> ADD MEMBER "ED LEE"/ACCESS=(MAR::LEE,XYZ::LEE)/MAIL=MAR::LEE)eG Adds user Ed Lee as a member on n ^FY NOTE /NOHIDDEN 55.7# Notes> MODIFY NOTE /NOWRITE 55mF Permits users to read the previously hidden note 55.7, but prevents1 users from making further replies to topic 55. 2 OBJECTIChanges or sets the value of the attribute of an existing object in a VAX ;Distributed Name Service (DNS) database. In DEC Notes, theA?object is a name identifying a conference, and the attribute is$a notefile specification or /NOFILE.FYou must have write privilege to the DNS database to use this co_$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1;1$"^_mmand.2For more detail, see the help text for ADD OBJECT. Format:g8 MODIFY OBJECT object-name/[NO]FILE[=notefile-spec] 2 PROFILEO5Changes or sets specific information in your profile.r Format: MODIFY PROFILE/3 Command_DescriptionRC The MODIFY PROFILE command lets you change the default settings inn? your profile. Your profile tailors your DEC Notes sessions bys specifying:A o The editor of your choice, and the method for accessing the editor. A ` o Whether a directory listing, the first unseen message, or aiC conference heading is automatically displayed when you open au conference.eA o The name of the class you want to be the current class whenm9 you first access your Notebook (the default class).uA o A personal name to appear alongside your user name in notesB7 you write, and mail messages you send or forward.cE o A list of the qualifiers you automatically want to use whenevera/ you issue athe PRINT command in DEC Notes.nB Unless you issue the MODIFY PROFILE command to change the defaultF settings, your DEC Notes sessions have the following characteristics:D o EVE, the default DEC Notes editor, is called by DEC Notes when+ you issue the REPLY or WRITE command.tA o When you open an entry, the first note you have not seen isf displayed.B o When you issue the PRINT command without any qualifiers, the following happens:D - The notes you splecified are not printed until you end your8 DEC Notes session (or change the print queue).> - The notes are printed on the default printer at your) installation (queue SYS$PRINT).e> - You are not notified when the print job is complete.( - You get one copy of each note.@ o When you write or reply to a note, your node and user name@ appear in the note heading, and the area reserved for your personal name is blank.O1 o The class codes MAR and XYZ, and specifies MARs@ as the node on which he is to receive mail. Even if there is@ another member with the VMS user name LEE, Ed Lee is uniquely@ identified by the /ACCESS qualifier used with the member-name@ string. The quotation marks are necessary around the string 0 because of the embedded space in the string. 2 OBJECT wBAdds a new object to a VAX Distributed Name Service (DNS) databaseDand optionally associates a file specification with that object. In9DEC dNotes, the object is a name identifying a conference.sDTo use the ADD OBJECT command, DNS must be installed on your system,6and you must have write privilege to the DNS database. Format: ADD OBJECT object-nameo 3 Parameters object-nameeB Specifies the name to be registered in the DNS database. For DEC? Notes, the name identifies a conference. The name is a stringc= composed of an indeterminate number of elements separated byeD periods; for example, CONFERENCES.PUBLIC.SAMPLE p might be the object+ name for the DEC Notes sample conference. 3 Command Description ? The ADD OBJECT command adds a new object to a DNS database. AnhD object in the DNS database is a name recognizable across the entireC network, wherever DNS is installed. In DEC Notes, the object is aoB name for a conference. With the /FILE qualifier, the object can ) be associated with a file specification.s E The conference moderator can instruct the users of the conference toOC add it to their N f the current conference. You use the SET NOTE/CONFERENCEyB command to link the file specification of the new conference with@ a particular note. (DEC Notes puts an asterisk (*) next to theB note number to indicate that the note is linked to a conference.)A Then, someone reading that note can add the linked conference toi+ their Notebook by pressing the SELECT key.uB You can temporarily hide a note using the /HIDDEN qualifier. TheB note remains part of the conference, but can be displayed o mnly byE the author or a moderator. All other users get a message indicatingf0 this note is hidden when they try to access it.E A moderator or the author of a note can use the /[NO]TITLE qualifierh3 to change or delete the title of an existing note.; Use the /NOWRITE qualifier to prevent further replies to a < discussion. When you want to resume replies, issue the SET@ NOTE/WRITE command. Only a moderator or the author of the topic- can specify whether users can enter replies.o@ To mah the current conference. You use the SET NOTE/CONFERENCEyB command to link the file specification of the new conference with@ a particular note. (DEC Notes puts an asterisk (*) next to theB note number to indicate that the note is linked to a conference.)A Then, someone reading that note can add the linked conference toi+ their Notebook by pressing the SELECT key.uB You can temporarily hide a note using the /HIDDEN qualifier. TheB note remains part of the conference, but can be displayed oinly byE the author or a moderator. All other users get a message indicatingf0 this note is hidden when they try to access it.E A moderator or the author of a note can use the /[NO]TITLE qualifierh3 to change or delete the title of an existing note.; Use the /NOWRITE qualifier to prevent further replies to a < discussion. When you want to resume replies, issue the SET@ NOTE/WRITE command. Only a moderator or the author of the topic- can specify whether users can enter replies.o@ To majrk notes you have not yet read as "seen", use the SET SEEN command. E To move a note or a sequential series of notes to a more appropriateaB location in the conference, use the /NOTE_ID qualifier. Only the0 moderator or the author can use this qualifier. 3 Qualifiers/CONFERENCE=notefile-specg /NOCONFERENCEgB Associates the specified conference with this note to allow usersD to add the conference to their Notebooks by pressing the SELECT keyC or keypad key 7. A note that is linked to ka conference by the SETsE NOTE/CONFERENCE command has an asterisk (*) next to its note number.t/HIDDENl /NOHIDDENtF Specifies whether users can display this note. Hidden notes can only? be viewed by the author or a moderator. All other users get ae, message indicating that the note is hidden./NOTE_ID=new-note-IDF Moves a note or a sequential series of notes to a new location in the> conference, as specified by the new note-ID. (See Examples.)/TITLE="string"f/NOTITLEC Alluows a moderator or the author of a note to change or delete theO title of an existing note.t/WRITE/NOWRITEA Specifies whether users can enter further replies to this topic.o> Only a moderator or the author of the topic can specify this.A When a topic is set to NOWRITE, only a moderator, the author, ortB a member with WRITE_REGARDLESS privilege can write replies to it. 3 Examples/ Notes> SET NOTE /CONFERENCE=ANGEL::METHODSoD Associates the conference METHODS on node ANGEL wit qcalled MAIN is the default class.T@ You can temporarily change the settings in your profile for theF current DEC Notes session using the /TEMPORARY qualifier. Otherwise,C any time you use the MODIFY PROFILE command to alter your profile,e& the settings are permanently changed.B If you set up a list of default qualifiers for the PRINT command,@ any additional qualifiers you use in the PRINT command line are@ appended to the default qualifiers. If you include a qualifierB with the PRINT co nrk notes you have not yet read as "seen", use the SET SEEN command. E To move a note or a sequential series of notes to a more appropriateaB location in the conference, use the /NOTE_ID qualifier. Only the0 moderator or the author can use this qualifier. 3 Qualifiers/CONFERENCE=notefile-specg /NOCONFERENCEgB Associates the specified conference with this note to allow usersD to add the conference to their Notebooks by pressing the SELECT keyC or keypad key 7. A note that is linked to oa conference by the SETsE NOTE/CONFERENCE command has an asterisk (*) next to its note number.t/HIDDENl /NOHIDDENtF Specifies whether users can display this note. Hidden notes can only? be viewed by the author or a moderator. All other users get ae, message indicating that the note is hidden./NOTE_ID=new-note-IDF Moves a note or a sequential series of notes to a new location in the> conference, as specified by the new note-ID. (See Examples.)/TITLE="string"f/NOTITLEC All`$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1D;1"ozows a moderator or the author of a note to change or delete theO title of an existing note.t/WRITE/NOWRITEA Specifies whether users can enter further replies to this topic.o> Only a moderator or the author of the topic can specify this.A When a topic is set to NOWRITE, only a moderator, the author, ortB a member with WRITE_REGARDLESS privilege can write replies to it. 3 Examples/ Notes> SET NOTE /CONFERENCE=ANGEL::METHODSoD Associates the conference METHODS on node ANGEL witvotebooks with the ADD ENTRY/OBJECT command, or torC change it in their Notebooks with the MODIFY ENTRY/OBJECT command.sC Then if the conference is later moved, its file specification need ? be changed only once by a user with write privilege to the DNSB database (using the SET OBJECT command). The users who specified F the /OBJECT qualifier with the ADD ENTRY or the MODIFY ENTRY command C do not need to change the entry's file specification, because the 5< object in the DNS database is associa rmmand that conflicts with the default qualifiersE in your profile, the qualifier on the command line takes precedence.w 3 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]i /NOAUTOMATICC Specifies whether an automatic DIRECTORY or NEXT UNSEEN command isD issued, or whether you see a conference heading only, when you open an entry.C You can cancel the automatic feature by issuing the MODIFY PROFILEhD /NOAUTOMATIC command. In this case, you see the conference heading! only when you open a confserence.m/CLASS=class-name @ Names the class you want to be the current class when you firstE access your Notebook. DEC Notes automatically creates a class namediF MAIN when you invoke DEC Notes for the first time, and specifies thisB class as the default class in your profile unless you change thisB setting. The class you specify must be an existing class in yourB Notebook. You cannot use the wildcard character (*) in the class name./EDITOR=(editor[,{CALL|SPAWN}])fD Specifies t the editor you want to use in DEC Notes, and how you want to access the editor.E There are three special values that the /EDITOR qualifier accepts inoE place of the editor name: EVE, EDT, and WPS. When used without theeF access option, these values specify the keypad layout you want to use! with the EVE editor, as follows:tB o MODIFY PROFILE/EDITOR=EVE specifies that you want to use EVE' with the standard editing keypad.B o MODIFY PROFILE/EDITOR=EDT specifies that you want to use EVE with the EDT-style keypad.B o MODIFY PROFILE/EDITOR=WPS specifies that you want to use EVE with the WPS-style keypad.C To specify EDT as the editor you want to use in DEC Notes, specifya6 EDT as the editor name and CALL as the access option.F When you want to use an editor that is not callable, you must use theC SPAWN access option. For example, if you have a command procedureiA that invokes an editor you want to use in DEC Notes, you need toe> specify the com{h the note you> are currently reading. Users reading this note can add theD conference METHODS to their Notebooks by pressing the SELECT key. Notes> SET NOTE /HIDDEN 3.4B Only the author of topic 3 or the conference moderator can read note 3.4.# Notes> SET NOTE /NOHIDDEN 55.7u Notes> SET NOTE /NOWRITE 55F Permits users to read the previously hidden note 55.7, but prevents1 users from making further replies to topic 55. ! Notes> SET NOTE/NOTE_ID=18.9n wted with the new file  specification.  dE If a conference is an object, and if a user has added the conference8B with the ADD ENTRY/OBJECT=object-name/FILE=notefile-spec command,B DEC Notes when accessing the conference always looks first in the= DNS database for the object, and uses the file specification E recorded there. If there is no file specification in the database, oD DEC Notes uses the file specification supplied by the user with theC /FILE qualifier on the ADD ENTRY or MODIFY EN xTRY command. If the @ user does not use the /OBJECT qualifier, he or she must use theA /FILE qualifier. If the /OBJECT qualifier is used, however, the@ /FILE qualifier can be omitted, or the /NOFILE qualifier can be used. D The ADD ENTRY/NOOBJECT or MODIFY ENTRY/NOOBJECT command can be usedC to dissociate the conference from the DNS object so that DEC Notes C will not look in the DNS database when the conference is accessed.  .C If you want to determine whether a conference is a DNS yobject, youB? can use the SHOW ENTRY or the SHOW CONFERENCE command. If thebE conference is a DNS object, its object name is displayed (along with / other information) in response to the command.a 3 Qualifiers/FILE=notefile-spece/NOFILE (default)LE The notefile specification given with the /FILE qualifier associatesnB the file specification of the conference with the DNS object. The, /FILE and /NOFILE qualifiers are optional. 3 ExamplesG Notes> ADD OBJECT CONFERENCES.PUBLIC.SAMPLE/FILE=MAR::NOTES$SAMPLEg? Adds the DEC Notes sample conference as an object in the DNSD? database with the object name CONFERENCES.PUBLIC.SAMPLE, andF> associates that object name with the notefile specification MAR::NOTES$SAMPLE.I wwr= associates the file specification of the conference with the - VAX Distributed Name Service (DNS) object. i 2 PROFILE 5Changes or sets specific information in your profile.S Format: SET PROFILE3 Command_Description E The Sh the note you> are currently reading. Users reading this note can add theD conference METHODS to their Notebooks by pressing the SELECT key. Notes> SET NOTE /HIDDEN 3.4B Only the author of topic 3 or the conference moderator can read note 3.4.# Notes> SET NOTE /NOHIDDEN 55.7u Notes> SET NOTE /NOWRITE 55F Permits users to read the previously hidden note 55.7, but prevents1 users from making further replies to topic 55. ! Notes> SET NOTE/NOTE_ID=18.9n|D Moves the note you are currently reading to a new location in theF conference: the ninth reply to note 18.0. There must not already F be a note 18.9, because two notes cannot have the same note-ID; if D there is already a note 18.9, an error message is displayed. If E currently the last reply to note 18.0 is not 18.8 but rather 18.3 @ (for example), the new note location becomes 18.4, not 18.9, 1 because DEC Notes avoids the gap in numbering. + Notes> SET NOTE 10.4-}10.9/NOTE_ID=11.0"> Moves notes 10.4 through 10.9, renumbering 10.4 as the new E note 11.0, followed by notes 11.1 through 11.5, in the same order D as before. If you are not a moderator, DEC Notes relocates only ! those notes that you authored.n$ Notes> SET NOTE 10.4/NOTE_ID=11? Moves note 10.4 to the discussion numbered 11, numbering theeC note with the next higher number than the last current reply to yC 11. If the last reply is 11.6, the relocated note becomes 11~.7.i2 OBJECTIChanges or sets the value of the attribute of an existing object in a VAXe;Distributed Name Service (DNS) database. In DEC Notes, the ?object is a name identifying a conference, and the attribute iss$a notefile specification or /NOFILE.FYou must have write privilege to the DNS database to use this command.2For more detail, see the help text for ADD OBJECT. Format:n5 SET OBJECT object-name/[NO]FILE[=notefile-spec]g 3 Parameters object-namee: Specifies the name of the object as registered in the VAX= Distributed Name Service (DNS) database. For DEC Notes, theY name identifies a conference. t 3 Qualifiers/FILE=notefile-speci/NOFILE (default)o: The notefile specification given with the /FILE qualifier= associates the file specification of the conference with the - VAX Distributed Name Service (DNS) object. i 2 PROFILE 5Changes or sets specific information in your profile.S Format: SET PROFILE3 Command_Description E The S mand procedure (prefaced by an at sign (@) andC surrounded by quotation marks) as the editor name and SPAWN as thes access option. For instance:: MODIFY PROFILE/EDITOR=("@SYS$LOGIN:NOTES$EDIT", SPAWN)C The command procedure must be written to accept two parameters: ansE input file and an output file. DEC Notes automatically passes theseuF parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that ina$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1D;1 `" D Moves the note you are currently reading to a new location in theF conference: the ninth reply to note 18.0. There must not already F be a note 18.9, because two notes cannot have the same note-ID; if D there is already a note 18.9, an error message is displayed. If E currently the last reply to note 18.0 is not 18.8 but rather 18.3 @ (for example), the new note location becomes 18.4, not 18.9, 1 because DEC Notes avoids the gap in numbering. + Notes> SET NOTE 10.4- 10.9/NOTE_ID=11.0"> Moves notes 10.4 through 10.9, renumbering 10.4 as the new E note 11.0, followed by notes 11.1 through 11.5, in the same order D as before. If you are not a moderator, DEC Notes relocates only ! those notes that you authored.n$ Notes> SET NOTE 10.4/NOTE_ID=11? Moves note 10.4 to the discussion numbered 11, numbering theeC note with the next higher number than the last current reply to yC 11. If the last reply is 11.6, the relocated note becomes 11.7.i2 OBJECTIChanges or sets the value of the attribute of an existing object in a VAXe;Distributed Name Service (DNS) database. In DEC Notes, the ?object is a name identifying a conference, and the attribute iss$a notefile specification or /NOFILE.FYou must have write privilege to the DNS database to use this command.2For more detail, see the help text for ADD OBJECT. Format:n5 SET OBJECT object-name/[NO]FILE[=notefile-spec]g 3 Parameters object-namee: Specifies the name of the object as registered in the VAX= Distributed Name Service (DNS) database. For DEC Notes, theY name identifies a conference. t 3 Qualifiers/FILE=notefile-speci/NOFILE (default)o: The notefile specification given with the /FILE qualifier= associates the file specification of the conference with the - VAX Distributed Name Service (DNS) object. i 2 PROFILE 5Changes or sets specific information in your profile.S Format: SET PROFILE3 Command_Description E The SET PROFILE command lets you change the default settings in youroF profile. Your profile tailors your DEC Notes sessions by specifying:A o The editor of your choice, and the method for accessing thee editor.gA o Whether a directory listing, the first unseen message, or aEC conference heading is automatically displayed when you open at conference.dE o The name of the class you want to be the current class when you 5 first access your Notebook (the default clvokes an editor fore use in DEC Notes:9 $! Command procedure to invoke an editor for DEC Notesi $!g $! Inputs:f $!L $! P1 = Input file name $! P2 = Output file namew $! E $! Note that this procedure is run in the context of a subprocess. D $! LOGIN.COM is not executed. However, all process logical names( $! and DCL global symbols are copied. $!> $! The default directory is the same as the parent process. $!4 $ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'% $ IF P1 .EQS. "" THEN GOTO NOINPUTy $ EDIT /TPU /OUTPUT='P2' 'P1' $ EXITo $NOINPUT: $ EDIT /TPU 'P2'w $ EXITq/PERSONAL_NAME="string"w/NOPERSONAL_NAMED Changes or sets the personal name string. The personal name stringF can be up to 63 characters long. The personal name appears alongsideG your node and user name in the heading of topics or replies you enter,eC and mail messages you send or forward. Surround the personal name E string with quo tation marks. DEC Notes strips extra spaces from theu personal name string.1 To delete a personal name, use /NOPERSONAL_NAME.h/PRINT="qualifier list"e/NOPRINTD Sets the default qualifiers for the DEC Notes PRINT command. TheseF qualifiers are added to the PRINT command before any other qualifiersE or parameters in the PRINT command line. In case of a conflict, the > qualifiers on the command line override the default qualifierB setting. In case of a conflict when both temporary a nd permanentB print qualifiers are defined, the temporary settings override the permanent settings.8 You must enclose the qualifier list in quotation marks.B The qualifiers for the PRINT command in DEC Notes are as follows:3 o /ALL o /[NO]NOTIFYt9 o /AUTHOR=username o /QUEUE=queue=namef- o /BEFORE[=date-time] o /SEENM: o /COPIES=number o /SINCE[=date-time]7 o /FORM=form-name o /TITLE=" ET PROFILE command lets you change the default settings in youroF profile. Your profile tailors your DEC Notes sessions by specifying:A o The editor of your choice, and the method for accessing thee editor.gA o Whether a directory listing, the first unseen message, or aEC conference heading is automatically displayed when you open at conference.dE o The name of the class you want to be the current class when you 5 first access your Notebook (the default class). E o A personal name to appear alongside your user name in notes youe3 write, and mail messages you send or forward.LE o A list of the qualifiers you automatically want to use whenever / you issue the PRINT command in DEC Notes. ? Unless you issue the SET PROFILE command to change the default F settings, your DEC Notes sessions have the following characteristics:D o EVE, the default DEC Notes editor, is called by DEC Notes when+ you issue the REPLY or WRITE command.iA o When you open an entry, the first note you have not seen isD displayed.B o When you issue the PRINT command without any qualifiers, the following happens:C - The notes you specified are not printed until you end yourI7 DEC Notes session (or change the print queue).r= - The notes are printed on the default printer at yourc( installation (queue SYS$PRINT).= - You are not notified when the print job is complete. '  - You get one copy of each note.t@ o When you write or reply to a note, your node and user name@ appear in the note heading, and the area reserved for your personal name is blank.e1 o The class called MAIN is the default class.@ You can temporarily change the settings in your profile for theF current DEC Notes session using the /TEMPORARY qualifier. Otherwise,D any time you use the SET PROFILE command to alter your profile, the" settings are permanently changed.F If you set up a list of default qualifiers for the PRINT command, anyE additional qualifiers you use in the PRINT command line are appendedpF to the default qualifiers. If you include a qualifier with the PRINTD command that conflicts with the default qualifiers in your profile,4 the qualifier on the command line takes precedence. 3 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]2 /NOAUTOMATICC Specifies whether an automatic DIRECTORY or NEXT UNSEEN command is D issued, or whether you see a costring"e/ o /[NO]HEADER o /UNSEENc1 o /KEYWORD=keyword-name o /[NO]WAITP2 To delete default print qualifiers, use /NOPRINT. /TEMPORARYE Temporarily changes the profile settings for this DEC Notes session.m 3 Examples6 Notes> MODIFY PROFILE /PRINT="/QUEUE=LPB0/NOWAIT": When you issue the PRINT command, the notes are printed? immediately on the printer specified by the queue-name LPB0.e- Notes> MODIFY PROFILE /PRINT="/COPIES=2"o( N ass). E o A personal name to appear alongside your user name in notes youe3 write, and mail messages you send or forward.LE o A list of the qualifiers you automatically want to use whenever / you issue the PRINT command in DEC Notes. ? Unless you issue the SET PROFILE command to change the default F settings, your DEC Notes sessions have the following characteristics:D o EVE, the default DEC Notes editor, is called by DEC Notes when+ you issue the REPLY or WRITE command.iA o When you open an entry, the first note you have not seen isD displayed.B o When you issue the PRINT command without any qualifiers, the following happens:C - The notes you specified are not printed until you end yourI7 DEC Notes session (or change the print queue).r= - The notes are printed on the default printer at yourc( installation (queue SYS$PRINT).= - You are not notified when the print job is complete. ' bg9$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1D;1" - You get one copy of each note.t@ o When you write or reply to a note, your node and user name@ appear in the note heading, and the area reserved for your personal name is blank.e1 o The class called MAIN is the default class.@ You can temporarily change the settings in your profile for theF current DEC Notes session using the /TEMPORARY qualifier. Otherwise,D any time you use the SET PROFILE command to alter your profile, the" settings are permanently changed.F  If you set up a list of default qualifiers for the PRINT command, anyE additional qualifiers you use in the PRINT command line are appendedpF to the default qualifiers. If you include a qualifier with the PRINTD command that conflicts with the default qualifiers in your profile,4 the qualifier on the command line takes precedence. 3 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]2 /NOAUTOMATICC Specifies whether an automatic DIRECTORY or NEXT UNSEEN command is D issued, or whether you see a conference heading only, when you open an entry.@ You can cancel the automatic feature by issuing the SET PROFILE< /NOAUTOMATIC command. In this case, you see the conference) heading only when you open a conference.U/CLASS=class-name.@ Names the class you want to be the current class when you first? access your Notebook. DEC Notes automatically creates a classE= named MAIN when you invoke DEC Notes for the first time, andaA specifies this class as the default class in your profile unl otes> PRINT /NOTIFY /QUEUE=LQP 3.*> DEC Notes treats the PRINT command line as if you had typedC PRINT/COPIES=2/NOTIFY/QUEUE=LQP 3.*. You get two copies of baseB note 3 and all its replies. The system prints the notes on theA letter quality printer (LQP) and notifies you when printing ise complete.: Notes> MODIFY PROFILE /PERSONAL_NAME="Johnny Be Good"B Displays the phrase "Johnny Be Good" next to your node and user? name in the heading of topics or replies you enter, and mail messages you send or forward.& Notes> MODIFY PROFILE /EDITOR=EDTD Sets up EVE with the EDT-style keypad as the editor for DEC Notes> and specifies that DEC Notes is to access EVE by calling it directly.- Notes> MODIFY PROFILE /EDITOR=(EDT,CALL)SA Sets up EDT as the editor for DEC Notes and specifies that DECt1 Notes is to access EDT by calling it directly.n: Notes> MODIFY PROFILE /EDITOR=("@MYDIR:EDITOR",SPAWN)D Sets up the editor invoked by the command procedure EDITOR in the6 directory MYDIR: as the editor to use in DEC Notes.) Notes> MODIFY PROFILE /CLASS=PRIVATE A Sets PRIVATE as the default class. When you first access yourm* Notebook, PRIVATE is the current class., Notes> MODIFY PROFILE /AUTOMATIC=UNSEENB When you open an entry, DEC Notes automatically issues the NEXTB UNSEEN command to display the first note you have not yet seen.= You can use keypad comma to continue to read unseen notes.aww output file. DEC Notes automatically passesD these parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that invokes an editor forE use in DEC Notes:9 $! Command procedure to invoke an editor for DEC NotesI $!E $! Inputs:E $!* $! P1 = Input file name $! P2 = Output file nameh $!mE $! Note that this procedure is run in the context of a subprocess.yD $! LOGIN.COM is nference heading only, when you open an entry.@ You can cancel the automatic feature by issuing the SET PROFILE< /NOAUTOMATIC command. In this case, you see the conference) heading only when you open a conference.U/CLASS=class-name.@ Names the class you want to be the current class when you first? access your Notebook. DEC Notes automatically creates a classE= named MAIN when you invoke DEC Notes for the first time, andaA specifies this class as the default class in your profile unlessoD you change this setting. The class you specify must be an existingC class in your Notebook. You cannot use the wildcard character (*)s in the class name.o/EDITOR=(editor[,{CALL|SPAWN}])hD Specifies the editor you want to use in DEC Notes, and how you want to access the editor.E There are three special values that the /EDITOR qualifier accepts inPE place of the editor name: EVE, EDT, and WPS. When used without theTF access option, these values specify the keypad layout you want to use! with the EVE editor, as follows:oD o SET PROFILE/EDITOR=EVE specifies that you want to use EVE with" the standard editing keypad.D o SET PROFILE/EDITOR=EDT specifies that you want to use EVE with the EDT-style keypad.tD o SET PROFILE/EDITOR=WPS specifies that you want to use EVE with the WPS-style keypad.tC To specify EDT as the editor you want to use in DEC Notes, specify 6 EDT as the editor name and CALL as the access option.F When you want to use an editor that is not callable, you must use theC SPAWN access option. For example, if you have a command procedure A that invokes an editor you want to use in DEC Notes, you need to > specify the command procedure (prefaced by an at sign (@) andC surrounded by quotation marks) as the editor name and SPAWN as thee access option. For instance:7 SET PROFILE/EDITOR=("@SYS$LOGIN:NOTES$EDIT", SPAWN)i@ The command procedure must be written to accept two parameters:B an input file and an output file. DEC Notes automatically passesD these parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that invokes an editor forE use in DEC Notes:9 $! Command procedure to invoke an editor for DEC NotesI $!E $! Inputs:E $!* $! P1 = Input file name $! P2 = Output file nameh $!mE $! Note that this procedure is run in the context of a subprocess.yD $! LOGIN.COM is not executed. However, all process logical names( $! and DCL global symbols are copied. $!e> $! The default directory is the same as the parent process. $! 4 $ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'% $ IF P1 .EQS. "" THEN GOTO NOINPUTR $ EDIT /TPU /OUTPUT='P2' 'P1' $ EXIT $NOINPUT: $ EDIT /TPU 'P2'D $ EXIT /PERSONAL_NAME="string"e/NOPERSONAL_NAMED Changes or sets the personal name string. The personal name stringF can be up to 63 character essoD you change this setting. The class you specify must be an existingC class in your Notebook. You cannot use the wildcard character (*)s in the class name.o/EDITOR=(editor[,{CALL|SPAWN}])hD Specifies the editor you want to use in DEC Notes, and how you want to access the editor.E There are three special values that the /EDITOR qualifier accepts inPE place of the editor name: EVE, EDT, and WPS. When used without theTF access option, these values specify the keypad layout you want to use! with the EVE editor, as follows:oD o SET PROFILE/EDITOR=EVE specifies that you want to use EVE with" the standard editing keypad.D o SET PROFILE/EDITOR=EDT specifies that you want to use EVE with the EDT-style keypad.tD o SET PROFILE/EDITOR=WPS specifies that you want to use EVE with the WPS-style keypad.tC To specify EDT as the editor you want to use in DEC Notes, specify 6 EDT as the editor name and CALL as the access option.F When you want t o use an editor that is not callable, you must use theC SPAWN access option. For example, if you have a command procedure A that invokes an editor you want to use in DEC Notes, you need to > specify the command procedure (prefaced by an at sign (@) andC surrounded by quotation marks) as the editor name and SPAWN as thee access option. For instance:7 SET PROFILE/EDITOR=("@SYS$LOGIN:NOTES$EDIT", SPAWN)i@ The command procedure must be written to accept two parameters:B an input file and an output file. DEC Notes automatically passesD these parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that invokes an editor forE use in DEC Notes:9 $! Command procedure to invoke an editor for DEC NotesI $!E $! Inputs:E $!* $! P1 = Input file name $! P2 = Output file nameh $!mE $! Note that this procedure is run in the context of a subprocess.yD $! LOGIN.COM isc#-$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1D;1" not executed. However, all process logical names( $! and DCL global symbols are copied. $!e> $! The default directory is the same as the parent process. $! 4 $ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'% $ IF P1 .EQS. "" THEN GOTO NOINPUTR $ EDIT /TPU /OUTPUT='P2' 'P1' $ EXIT $NOINPUT: $ EDIT /TPU 'P2'D $ EXIT /PERSONAL_NAME="string"e/NOPERSONAL_NAMED Changes or sets the personal name string. The personal name stringF can be up to 63 characters long. The personal name appears alongsideG your node and user name in the heading of topics or replies you enter,RC and mail messages you send or forward. Surround the personal nameeE string with quotation marks. DEC Notes strips extra spaces from thei personal name string.1 To delete a personal name, use /NOPERSONAL_NAME. /PRINT="qualifier list"s/NOPRINTD Sets the default qualifiers for the DEC Notes PRINT command. TheseF qualifiers are added to the PRINT command before any other qualifiersE or parameters in the PRINT command line. In case of a conflict, thef> qualifiers on the command line override the default qualifierB setting. In case of a conflict when both temporary and permanentB print qualifiers are defined, the temporary settings override the permanent settings.8 You must enclose the qualifier list in quotation marks.B The qualifiers for the PRINT command in DEC Notes are as follows:3 o /ALL o /[NO]NOTIFYe9 o /AUTHOR=username o /QUEUE=queue=namey- o /BEFORE[=date-time] o /SEENh: o /COPIES=number o /SINCE=[date-time]7 o /FORM=form-name o /TITLE="string"i/ o /[NO]HEADER o /UNSEENb1 o /KEYWORD=keyword-name o /[NO]WAIT 2 To delete default print qualifiers, use /NOPRINT. /TEMPORARYE Temporarily changes the profile settings for this DEC Notes session. 3 Examples3 Notes> SET PROFILE /PRINT="/QUEUE=LPB0/NOWAIT"r: When you issue the PRINT command, the notes are printed? immediately on the printer specified by the queue-name LPB0.l* Notes> SET PROFILE /PRINT="/COPIES=2"( Notes> PRINT /NOTIFY /QUEUE=LQP 3.*> DEC Notes treats the PRINT command line as if you had typedC PRINT/COPIES=2/NOTIFY/QUEUE=LQP 3.*. You get two copies of baseB note 3 and all its replies. The system prints the notes on theA letter quality printer (LQP) and notifies you when printing isl complete.7 Notes> SET PROFILE /PERSONAL_NAME="Johnny Be Good"wB Displays the phrase "Johnny Be Good" next to your node and user? name in the heading of topics or replies you enter, and mailo messages you send or forward.# Notes> SET PROFILE /EDITOR=EDT D Sets up EVE with the EDT-style keypad as the editor for DEC Notes> and specifies that DEC Notes is to access EVE by calling it directly.* Notes> SET PROFILE /EDITOR=(EDT,CALL)A Sets up EDT as the s long. The personal name appears alongsideG your node and user name in the heading of topics or replies you enter,RC and mail messages you send or forward. Surround the personal nameeE string with quotation marks. DEC Notes strips extra spaces from thei personal name string.1 To delete a personal name, use /NOPERSONAL_NAME. /PRINT="qualifier list"s/NOPRINTD Sets the default qualifiers for the DEC Notes PRINT command. TheseF qualifiers are added to the PRINT command before any ot her qualifiersE or parameters in the PRINT command line. In case of a conflict, thef> qualifiers on the command line override the default qualifierB setting. In case of a conflict when both temporary and permanentB print qualifiers are defined, the temporary settings override the permanent settings.8 You must enclose the qualifier list in quotation marks.B The qualifiers for the PRINT command in DEC Notes are as follows:3 o /ALL o /[NO]NOTIFYe9 o /AUTHOR=username o /QUEUE=queue=namey- o /BEFORE[=date-time] o /SEENh: o /COPIES=number o /SINCE=[date-time]7 o /FORM=form-name o /TITLE="string"i/ o /[NO]HEADER o /UNSEENb1 o /KEYWORD=keyword-name o /[NO]WAIT 2 To delete default print qualifiers, use /NOPRINT. /TEMPORARYE Temporarily changes the profile settings for this DEC Notes session. 3 Examples3 Notes> SET PROFILE /PRINT="/Q UEUE=LPB0/NOWAIT"r: When you issue the PRINT command, the notes are printed? immediately on the printer specified by the queue-name LPB0.l* Notes> SET PROFILE /PRINT="/COPIES=2"( Notes> PRINT /NOTIFY /QUEUE=LQP 3.*> DEC Notes treats the PRINT command line as if you had typedC PRINT/COPIES=2/NOTIFY/QUEUE=LQP 3.*. You get two copies of baseB note 3 and all its replies. The system prints the notes on theA letter quality printer (LQP) and notifies you when printing isl complete.7 Notes> SET PROFILE /PERSONAL_NAME="Johnny Be Good"wB Displays the phrase "Johnny Be Good" next to your node and user? name in the heading of topics or replies you enter, and mailo messages you send or forward.# Notes> SET PROFILE /EDITOR=EDT D Sets up EVE with the EDT-style keypad as the editor for DEC Notes> and specifies that DEC Notes is to access EVE by calling it directly.* Notes> SET PROFILE /EDITOR=(EDT,CALL)A Sets up EDT as the editor for DEC Notes and specifies that DEC1 Notes is to access EDT by calling it directly.7 Notes> SET PROFILE /EDITOR=("@MYDIR:EDITOR",SPAWN)D Sets up the editor invoked by the command procedure EDITOR in the6 directory MYDIR: as the editor to use in DEC Notes.& Notes> SET PROFILE /CLASS=PRIVATEA Sets PRIVATE as the default class. When you first access your* Notebook, PRIVATE is the current class.) Notes> SET PROFILE /AUTOMATIC=UNSEENB When you open an entry, DEC Notes automatically issues the NEXTB UNSEEN command to display the first note you have not yet seen.= You can use keypad comma to continue to read unseen notes.2 SEEN+Sets notes you have not yet read as "seen". Format: SET SEEN3 Command_Description@ The SET SEEN command sets notes you have not yet read as "seen"C without having to display them. This is useful when you are first@ joining an active conference that has been in progress for someC time. By setting notes as "seen", you limit the quantity of notesC DEC Notes shows you when you use the NEXT UNSEEN command. You can6 read "seen" notes any time by using the READ command.@ You use the /BEFORE qualifier to mark notes as "seen" that wereE entered before a certain time, date, or both. If you do not use theB /BEFORE qualifier, DEC Notes marks all notes in the conference as "seen". 3 Qualifiers/BEFORE[=date-time]B Specifies that notes entered before a certain date, time, or both@ are to be marked as "seen". The date-time can be any valid VMSE date-time specification. If you specify /BEFORE without a date-time% value, the default is /BEFORE=TODAY. 3 Examples& Notes> SET SEEN /BEFORE=YESTERDAYF Sets all notes in the conference that were entered before yesterday as "seen".) Notes> SET SEEN /BEFORE=01-MAR:17:00C Sets all notes in the conference that were entered before 5:00PM on 01 March as "seen". Notes> SET SEEN. Sets all notes in the conference as "seen".wwl|ģ1 SHOWEShows information about the current settings or attributes of variouselements in the system. 2 CLASSES Lists classes in your Notebook. Format: SHOW CLASSES3 Command_Description< The SHOW CLASSES command shows a listing of classes in your@ Notebook. The current class is indicated with an asterisk (*).? You can set default to a class other than the current class by@ moving the pointer (>) to it and preseditor for DEC Notes and specifies that DEC1 Notes is to access EDT by calling it directly.7 Notes> SET PROFILE /EDITOR=("@MYDIR:EDITOR",SPAWN)D Sets up the editor invoked by the command procedure EDITOR in the6 directory MYDIR: as the editor to use in DEC Notes.& Notes> SET PROFILE /CLASS=PRIVATEA Sets PRIVATE as the default class. When you first access your* Notebook, PRIVATE is the current class.) Notes> SET PROFILE /AUTOMATIC=UNSEENB When you opendF$ NOTES026.A$b [NOTES.TEMPKIT]NOTES$HELP.HLB;1D;1 an entry, DEC Notes automatically issues the NEXTB UNSEEN command to display the first note you have not yet seen.= You can use keypad comma to continue to read unseen notes.2 SEEN+Sets notes you have not yet read as "seen". Format: SET SEEN3 Command_Description@ The SET SEEN command sets notes you have not yet read as "seen"C without having to display them. This is useful when you are first@ joining an active conference that has been in progress for someC time. By  setting notes as "seen", you limit the quantity of notesC DEC Notes shows you when you use the NEXT UNSEEN command. You can6 read "seen" notes any time by using the READ command.@ You use the /BEFORE qualifier to mark notes as "seen" that wereE entered before a certain time, date, or both. If you do not use theB /BEFORE qualifier, DEC Notes marks all notes in the conference as "seen". 3 Qualifiers/BEFORE[=date-time]B Specifies that notes entered before a certain date, time, or both@ are to be marked as "seen". The date-time can be any valid VMSE date-time specification. If you specify /BEFORE without a date-time% value, the default is /BEFORE=TODAY. 3 Examples& Notes> SET SEEN /BEFORE=YESTERDAYF Sets all notes in the conference that were entered before yesterday as "seen".) Notes> SET SEEN /BEFORE=01-MAR:17:00C Sets all notes in the conference that were entered before 5:00PM on 01 March as "seen". Notes> SET SEEN. Sets al>l notes in the conference as "seen".wwݴģ1 SHOWEShows information about the current settings or attributes of variouselements in the system. 2 CLASSES Lists classes in your Notebook. Format: SHOW CLASSES3 Command_Description< The SHOW CLASSES command shows a listing of classes in your@ Notebook. The current class is indicated with an asterisk (*).? You can set default to a class other than the current class by@ moving the pointer (>) to it and pres"*[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1+,5b.l/J 4[lg- 0123KPWOh56Yģ7ģ89GJHJ--N--****************************************************************************N--* *N--* Copyright (c) 2004 *N--* by DIGITAL Equipment Corporation, Maynard, Mass. *N--* All rights reserved. *N--* *N--* This software is furnished under a license and may be used and copied *N--* only in accordance with the terms of such license and with the *N--* inclusion of the above copyright notice. This software or any other *N--* copies thereof may not be provided or otherwise made available to any *N--* other person. No title to and ownership of the software is hereby *N--* transferred. *N--* *N--* The information in this software is subject to change without notice *N--* and should not be construed as a commitment by DIGITAL Equipment *N--* Corporation. *N--* *N--* DIGITAL assumes no responsibility for the use or reliability of its *N--* software on equipment which is not supplied by DIGITAL. *N--* *N--****************************************************************************with SYSTEM; use SYSTEM;with STARLET; use STARLET;0with CONDITION_HANDLING; use CONDITION_HANDLING; package NOTES_ITEMDEF is -- module NOTEITEMS & NOTES_K_MIN_ITEM : constant := 1;& NOTES_K_NOSIGNAL : constant := 1; ) NOTES_K_TEXT_STRING : constant := 2;& NOTES_K_TEXT_END : constant := 3;' NOTES_K_TEXT_TYPE : constant := 4; / NOTES_K_NOTE_ALL_RESPONSES : constant := 5;) NOTES_K_NOTE_AUTHOR : constant := 6;+ NOTES_K_NOTE_BACK_NOTE : constant := 7;/ NOTES_K_NOTE_BACK_RESPONSE : constant := 8;- NOTES_K_NOTE_BEFORE_TIME : constant := 9;+ NOTES_K_NOTE_BLINK_ID : constant := 10;, NOTES_K_NOTE_BLINK_UID : constant := 11;. NOTES_K_NOTE_CREATE_TIME : constant := 12;* NOTES_K_NOTE_HIDDEN : constant := 13; & NOTES_K_NOTE_ID : constant := 14;, NOTES_K_NOTE_NEXT_NOTE : constant := 15;0 NOTES_K_NOTE_NEXT_RESPONSE : constant := 16;- NOTES_K_NOTE_NUMRECORDS : constant := 17;/ NOTES_K_NOTE_NUMRESPONSES : constant := 18;+ NOTES_K_NOTE_PEN_NAME : constant := 19;0 NOTES_K_NOTE_SEARCH_STRING : constant := 20;/ NOTES_K_NOTE_SEARCH_TITLE : constant := 21;- NOTES_K_NOTE_SINCE_TIME : constant := 22;) NOTES_K_NOTE_TITLE : constant := 23;' NOTES_K_NOTE_UID : constant := 24;* NOTES_K_NOTE_UNSEEN : constant := 25;, NOTES_K_NOTE_USER_AREA : constant := 26;, NOTES_K_NOTE_WRITELOCK : constant := 27; . NOTES_K_NOTEFILE_CONTEXT : constant := 28;+ NOTES_K_CLASS_CONTEXT : constant := 29;+ NOTES_K_ENTRY_CONTEXT : constant := 30;- NOTES_K_KEYWORD_CONTEXT : constant := 31;* NOTES_K_NOTE_CONTEXT : constant := 32;- NOTES_K_PROFILE_CONTEXT : constant := 33;, NOTES_K_SERVER_CONTEXT : constant := 34;* NOTES_K_USER_CONTEXT : constant := 35; ) NOTES_K_CLASS_NAME : constant := 36;, NOTES_K_CLASS_NEW_NAME : constant := 37; ' NOTES_K_CONTINUE : constant := 38; ) NOTES_K_ENTRY_NAME : constant := 39;, NOTES_K_ENTRY_NEW_NAME : constant := 40;- NOTES_K_ENTRY_USER_AREA : constant := 41; # NOTES_K_HINT : constant := 42; * NOTES_K_KEYWORD_NAME : constant := 43;. NOTES_K_KEYWORD_NEW_NAME : constant := 44; - NOTES_K_NOTEFILE_CREATE : constant := 45;2 NOTES_K_NOTEFILE_CREATE_TIME : constant := 46;3 NOTES_K_NOTEFILE_DEFAULT_NAME : constant := 47;1 NOTES_K_NOTEFILE_ENTRYTOTAL : constant := 48;0 NOTES_K_NOTEFILE_FILE_NAME : constant := 49;- NOTES_K_NOTEFILE_FORMAT : constant := 50;/ NOTES_K_NOTEFILE_HIGH_UID : constant := 51;. NOTES_K_NOTEFILE_LASTREV : constant := 52;/ NOTES_K_NOTEFILE_MODERATE : constant := 53; 0 NOTES_K_NOTEFILE_MODERATOR : constant := 54;- NOTES_K_NOTEFILE_NOTICE : constant := 55;/ NOTES_K_NOTEFILE_NUMNOTES : constant := 56;3 NOTES_K_NOTEFILE_RELATED_NAME : constant := 57;1 NOTES_K_NOTEFILE_RESTRICTED : constant := 58; 2 NOTES_K_NOTEFILE_RESULT_SPEC : constant := 59;, NOTES_K_NOTEFILE_TITLE : constant := 60;0 NOTES_K_NOTEFILE_TRANSPORT : constant := 61;0 NOTES_K_NOTEFILE_USER_AREA : constant := 62; . NOTES_K_PROFILE_AUTO_DIR : constant := 63; 1 NOTES_K_PROFILE_AUTO_UNSEEN : constant := 64; 0 NOTES_K_PROFILE_CLASS_NAME : constant := 65;, NOTES_K_PROFILE_EDITOR : constant := 66;2 NOTES_K_PROFILE_EDITOR_SPAWN : constant := 67; . NOTES_K_PROFILE_PEN_NAME : constant := 68;+ NOTES_K_PROFILE_PRINT : constant := 69; / NOTES_K_PROFILE_TEMPORARY : constant := 70; ' NOTES_K_SEEN_MAP : constant := 71; 1 NOTES_K_USER_CREATE_KEYWORD : constant := 72; , NOTES_K_USER_MAIL_ADDR : constant := 73;+ NOTES_K_USER_MODERATE : constant := 74; ( NOTES_K_USER_NAME : constant := 75;+ NOTES_K_USER_NEW_NAME : constant := 76;/ NOTES_K_USER_NEW_NODENAME : constant := 77;+ NOTES_K_USER_NODENAME : constant := 78; . NOTES_K_NOTE_BLINK_TITLE : constant := 79;, NOTES_K_NOTE_MARK_SEEN : constant := 80;. NOTES_K_NOTE_NEXT_UNSEEN : constant := 81;0 NOTES_K_NOTE_HINT_GET_TEXT : constant := 82;, NOTES_K_NOTE_X_KEYWORD : constant := 83;, NOTES_K_KEYWORD_X_NOTE : constant := 84;+ NOTES_K_CLASS_X_ENTRY : constant := 85;+ NOTES_K_ENTRY_X_CLASS : constant := 86;- NOTES_K_ENTRY_X_KEYWORD : constant := 87;% NOTES_K_DELIF0 : constant := 88;' NOTES_K_UNIENTRY : conse!&$ NOTES026.A5b "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[l" tant := 89;. NOTES_K_ENTRY_UNSEEN_EST : constant := 90;/ NOTES_K_ENTRY_LAST_STATUS : constant := 91;, NOTES_K_NOTE_CAN_REPLY : constant := 92;0 NOTES_K_NOTE_BEFORE_TIME_A : constant := 93;0 NOTES_K_NOTE_CREATE_TIME_A : constant := 94;/ NOTES_K_NOTE_SINCE_TIME_A : constant := 95;4 NOTES_K_NOTEFILE_CREATE_TIME_A : constant := 96;0 NOTES_K_NOTEFILE_LASTREV_A : constant := 97;3 NOTES_K_NOTE_HINT_GET_KEYWORD : constant := 98;3 NOTES_K_KEYWORD_HINT_GET_NOTE : constant := 99; . NOTES_K_SERVER_MAX_ITEM : constant := 100; 3 NOTES_K_CLASS_HINT_GET_ENTRY : constant := 101;. NOTES_K_CLASS_USER_AREA : constant := 102;) NOTES_K_CLASS_UID : constant := 103;3 NOTES_K_ENTRY_HINT_GET_CLASS : constant := 104;5 NOTES_K_ENTRY_HINT_GET_KEYWORD : constant := 105;0 NOTES_K_ENTRY_OBJECT_NAME : constant := 106;0 NOTES_K_ENTRY_OBJECT_SPEC : constant := 107;) NOTES_K_ENTRY_UID : constant := 108;0 NOTES_K_KEYWORD_USER_AREA : constant := 109;+ NOTES_K_KEYWORD_UID : constant := 110;) NOTES_K_NODE_NAME : constant := 111;. NOTES_K_NODE_X_USERNAME : constant := 112;+ NOTES_K_NOTE_NEW_ID : constant := 113;) NOTES_K_NOTE_TYPE : constant := 114;2 NOTES_K_NOTEFILE_REPLY_ONLY : constant := 115;0 NOTES_K_PROFILE_USER_AREA : constant := 116;/ NOTES_K_USER_ACCESS_LIST : constant := 117; 0 NOTES_K_USER_WRITE_BYPASS : constant := 118; - NOTES_K_USER_USER_AREA : constant := 119;( NOTES_K_USER_UID : constant := 120; , NOTES_K_USER_NOACCESS : constant := 121;( NOTES_K_MAX_ITEM : constant := 122; 0 NOTES_K_NOTEFILE_WRITELOCK : constant := 27;/ NOTES_K_USER_ACCESS_NODE : constant := 111;+ NOTES_K_USER_ACCESS : constant := 117; ' NOTES_K_BASE_NOTE : constant := 1;( NOTES_K_REPLY_NOTE : constant := 2; ) NOTES_K_UNKNOWN_TYPE : constant := 0;' NOTES_K_DDIF_TYPE : constant := 1;( NOTES_K_ASCII_TYPE : constant := 2;* NOTES_K_RESERVED_TYPE : constant := 3;* NOTES_K_WPS_PLUS_TYPE : constant := 4; * NOTES_K_TLV_INPUT : constant := 4097;+ NOTES_K_TLV_OUTPUT : constant := 4098; ' NOTES_K_CHAIN : constant := 65535;& NOTES_K_NOOP : constant := 65534;  procedure NOTES_NOTES (0 STATUS : out CONDVALU_TYPE; -- return value6 COMMAND_LINE : in STRING := STRING'NULL_PARAMETER;< COMMAND_DISPATCH : in ADDRESS := ADDRESS'NULL_PARAMETER); - pragma INTERFACE (EXTERNAL, NOTES_NOTES); ? pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTES, "NOTES$NOTES"," (CONDVALU_TYPE, STRING, ADDRESS), (VALUE, DESCRIPTOR(SB), VALUE), COMMAND_LINE); $ procedure NOTES_NOTEFILE_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXF_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 6 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_BEGIN); Q pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_BEGIN, "NOTES$NOTEFILE_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ' procedure NOTES_NOTEFILE_GET_INFO (0 STATUS : out CONDVALU_TYPE; -- return value CXF_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 9 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_GET_INFO); W pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_GET_INFO, "NOTES$NOTEFILE_GET_INFO",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); % procedure NOTES_NOTEFILE_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXF_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 7 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_MODIFY); S pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_MODIFY, "NOTES$NOTEFILE_MODIFY",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ) procedure NOTES_NOTEFILE_LIST_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXF_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); ; pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_LIST_BEGIN); [ pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_LIST_BEGIN, "NOTES$NOTEFILE_LIST_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); # procedure NOTES_NOTEFILE_LIST (0 STATUS : out CONDVALU_TYPE; -- return value CXF_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 5 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_LIST); O pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_LIST, "NOTES$NOTEFILE_LIST",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_NOTEFILE_END (0 STATUS : out CONDVALU_TYPE; -- return value# CXF_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_END); M pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_END, "NOTES$NOTEFILE_END",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ! procedure NOTES_CLASS_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXC_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 3 pragma INTERFACE (EXTERNAL, NOTES_CLASS_BEGIN); K pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_BEGIN, "NOTES$CLASS_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_CLASS_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_CLASS_ADD); G pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_ADD, "NOTES$CLASS_ADD",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_CLASS_DELETE (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_CLASS_DELETE); M pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_DELETE, "NOTES$CLASS_DELETE",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_CLASS_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_CLASS_GET); G pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_GET, "NOTES$CLASS_GET",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); % procedure NOTES_CLASS_GET_ENTRY (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 7 pragma INTERFACE (EXTERNAL, NOTES_CLASS_GET_ENTRY); S pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_GET_ENTRY, "NOTES$CLASS_GET_ENTRY",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_CLASS_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_CLASS_MODIFY); M pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_MODIFY, "NOTES$CLASS_MODIFY",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_CLASS_END (0 STATUS : out CONDVALU_TYPE; -- return value# CXC_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_CLASS_END); G pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_END, "NOTES$CLASS_END",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ! procedure NOTES_ENTRY_BEGIN (0 STATUS :fY,$ NOTES026.A5b "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[lx" out CONDVALU_TYPE; -- return value# CXE_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 3 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_BEGIN); K pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_BEGIN, "NOTES$ENTRY_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_ENTRY_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_ADD); G pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_ADD, "NOTES$ENTRY_ADD",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_ENTRY_DELETE (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_DELETE); M pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_DELETE, "NOTES$ENTRY_DELETE",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_ENTRY_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_GET);* *G pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_GET, "NOTES$ENTRY_GET", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));  % procedure NOTES_ENTRY_GET_CLASS (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); 7 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_GET_CLASS);  S pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_GET_CLASS, "NOTES$ENTRY_GET_CLASS",p= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),l+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  v' procedure NOTES_ENTRY_GET_KEYWORD (y0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;t$ OUT_ITEM_LIST : in ITEMLIST_TYPE); r9 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_GET_KEYWORD);  W pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_GET_KEYWORD, "NOTES$ENTRY_GET_KEYWORD", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),t+ (VALUE, REFERENCE, REFERENCE, REFERENCE));d o" procedure NOTES_ENTRY_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_MODIFY); yM pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_MODIFY, "NOTES$ENTRY_MODIFY",o= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));  " procedure NOTES_ENTRY_UPDATE (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;H$ OUT_ITEM_LIST : in ITEMLIST_TYPE); k4 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_UPDATE); OM pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_UPDATE, "NOTES$ENTRY_UPDATE", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));n n procedure NOTES_ENTRY_END (L0 STATUS : out CONDVALU_TYPE; -- return value# CXE_CONTEXT : in out CONTEXT_TYPE;O# INP_ITEM_LIST : in ITEMLIST_TYPE;O$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_END);  OG pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_END, "NOTES$ENTRY_END",t= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));  O# procedure NOTES_KEYWORD_BEGIN ( 0 STATUS : out CONDVALU_TYPE; -- return value# CXK_CONTEXT : in out CONTEXT_TYPE;1# INP_ITEM_LIST : in ITEMLIST_TYPE;s$ OUT_ITEM_LIST : in ITEMLIST_TYPE); E5 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_BEGIN);a :O pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_BEGIN, "NOTES$KEYWORD_BEGIN",_= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),t+ (VALUE, REFERENCE, REFERENCE, REFERENCE));: 3! procedure NOTES_KEYWORD_ADD (t0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;E$ OUT_ITEM_LIST : in ITEMLIST_TYPE); O3 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_ADD);O XK pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_ADD, "NOTES$KEYWORD_ADD",_= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),:+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  o$ procedure NOTES_KEYWORD_DELETE (0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;O$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 6 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_DELETE); _Q pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_DELETE, "NOTES$KEYWORD_DELETE",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));A :! procedure NOTES_KEYWORD_GET (R0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;t$ OUT_ITEM_LIST : in ITEMLIST_TYPE); N3 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_GET);A K pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_GET, "NOTES$KEYWORD_GET",_= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),_+ (VALUE, REFERENCE, REFERENCE, REFERENCE));L R& procedure NOTES_KEYWORD_GET_NOTE (0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;a$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 8 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_GET_NOTE); aU pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_GET_NOTE, "NOTES$KEYWORD_GET_NOTE",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),n+ (VALUE, REFERENCE, REFERENCE, REFERENCE));: n$ procedure NOTES_KEYWORD_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;a$ OUT_ITEM_LIST : in ITEMLIST_TYPE); _6 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_MODIFY); nQ pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_MODIFY, "NOTES$KEYWORD_MODIFY",L= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),a+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  o! procedure NOTES_KEYWORD_END (N0 STATUS : out CONDVALU_TYPE; -- return value# CXK_CONTEXT : in out CONTEXT_TYPE; # INP_ITEM_LIST : in ITEMLIST_TYPE;=$ OUT_ITEM_LIST : in ITEMLIST_TYPE); t3 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_END);; K pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_END, "NOTES$KEYWORD_END",o= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));7 procedure NOTES_NOTE_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXN_CONTEXT : in out CONTEXT_TYPE;E# INP_ITEM_LIST : in ITEMLIST_TYPE;E$ OUT_ITEM_LIST : in ITEMLIST_TYPE); _2 pragma INTERFACE (EXTERNAL, NOTES_NOTE_BEGIN); NI pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_BEGIN, "NOTES$NOTE_BEGIN",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));s t procedure NOTES_NOTE_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 0 pragma INTERFACE (EXTERNAL, NOTES_NOTE_ADD); 9E pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_ADD, "NOTES$NOTE_ADD",I= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),V+ (VALUE, REFERENCE, REFERENCE, REFERENCE));E E# procedure NOTES_NOTE_ADD_TEXT (_0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;G$ OUT_ITEM_LIST : in ITEMLIST_TYPE); _5 pragma INTERFACE (EXTERNAL, NOTES_NOTE_ADD_TEXT);I :O pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_ADD_TEXT, "NOTES$NOTE_ADD_TEXT",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),R+ (VALUE, REFERENCE, REFERENCE, REFERENCE));_ R! procedure NOTES_NOTE_DELETE ( 0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INPgh5$ NOTES026.A5b "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[lw"/_ITEM_LIST : in ITEMLIST_TYPE;n$ OUT_ITEM_LIST : in ITEMLIST_TYPE); c3 pragma INTERFACE (EXTERNAL, NOTES_NOTE_DELETE);a :K pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_DELETE, "NOTES$NOTE_DELETE",:= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),:+ (VALUE, REFERENCE, REFERENCE, REFERENCE));a : procedure NOTES_NOTE_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); t0 pragma INTERFACE (EXTERNAL, NOTES_NOTE_GET); E pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_GET, "NOTES$NOTE_GET",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),n+ (VALUE, REFERENCE, REFERENCE, REFERENCE));n n& procedure NOTES_NOTE_GET_KEYWORD (0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;D$ OUT_ITEM_LIST : in ITEMLIST_TYPE); S8 pragma INTERFACE (EXTERNAL, NOTES_NOTE_GET_KEYWORD); aU pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_GET_KEYWORD, "NOTES$NOTE_GET_KEYWORD",t= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  E# procedure NOTES_NOTE_GET_TEXT ( 0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;_$ OUT_ITEM_LIST : in ITEMLIST_TYPE); S5 pragma INTERFACE (EXTERNAL, NOTES_NOTE_GET_TEXT);E XO pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_GET_TEXT, "NOTES$NOTE_GET_TEXT",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),P+ (VALUE, REFERENCE, REFERENCE, REFERENCE));r d! procedure NOTES_NOTE_MODIFY ( 0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;T$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 3 pragma INTERFACE (EXTERNAL, NOTES_NOTE_MODIFY); K pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_MODIFY, "NOTES$NOTE_MODIFY","= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),)+ (VALUE, REFERENCE, REFERENCE, REFERENCE));)  procedure NOTES_NOTE_END (0 STATUS : out CONDVALU_TYPE; -- return value# CXN_CONTEXT : in out CONTEXT_TYPE;E# INP_ITEM_LIST : in ITEMLIST_TYPE;S$ OUT_ITEM_LIST : in ITEMLIST_TYPE); Y0 pragma INTERFACE (EXTERNAL, NOTES_NOTE_END); IE pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_END, "NOTES$NOTE_END",G= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),T+ (VALUE, REFERENCE, REFERENCE, REFERENCE));, F# procedure NOTES_PROFILE_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXP_CONTEXT : in out CONTEXT_TYPE;e# INP_ITEM_LIST : in ITEMLIST_TYPE;I$ OUT_ITEM_LIST : in ITEMLIST_TYPE); I5 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_BEGIN);E XO pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_BEGIN, "NOTES$PROFILE_BEGIN",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),E+ (VALUE, REFERENCE, REFERENCE, REFERENCE));A ,! procedure NOTES_PROFILE_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXP_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); L3 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_GET); K pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_GET, "NOTES$PROFILE_GET",R= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),L+ (VALUE, REFERENCE, REFERENCE, REFERENCE));I L$ procedure NOTES_PROFILE_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXP_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;v$ OUT_ITEM_LIST : in ITEMLIST_TYPE); I6 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_MODIFY); EQ pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_MODIFY, "NOTES$PROFILE_MODIFY",r= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),I+ (VALUE, REFERENCE, REFERENCE, REFERENCE));E S! procedure NOTES_PROFILE_END (R0 STATUS : out CONDVALU_TYPE; -- return value# CXP_CONTEXT : in out CONTEXT_TYPE;o# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); P3 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_END);  EK pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_END, "NOTES$PROFILE_END", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),T+ (VALUE, REFERENCE, REFERENCE, REFERENCE));I L procedure NOTES_USER_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXU_CONTEXT : in out CONTEXT_TYPE; # INP_ITEM_LIST : in ITEMLIST_TYPE;l$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 2 pragma INTERFACE (EXTERNAL, NOTES_USER_BEGIN); iI pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_BEGIN, "NOTES$USER_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),O+ (VALUE, REFERENCE, REFERENCE, REFERENCE));T , procedure NOTES_USER_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); T0 pragma INTERFACE (EXTERNAL, NOTES_USER_ADD); _E pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_ADD, "NOTES$USER_ADD",L= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),_+ (VALUE, REFERENCE, REFERENCE, REFERENCE));N T! procedure NOTES_USER_DELETE ()0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); E3 pragma INTERFACE (EXTERNAL, NOTES_USER_DELETE);I _K pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_DELETE, "NOTES$USER_DELETE",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),E+ (VALUE, REFERENCE, REFERENCE, REFERENCE));C E procedure NOTES_USER_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;E$ OUT_ITEM_LIST : in ITEMLIST_TYPE); C0 pragma INTERFACE (EXTERNAL, NOTES_USER_GET); OE pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_GET, "NOTES$USER_GET", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),E+ (VALUE, REFERENCE, REFERENCE, REFERENCE));T ,! procedure NOTES_USER_MODIFY (I0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;V$ OUT_ITEM_LIST : in ITEMLIST_TYPE); T3 pragma INTERFACE (EXTERNAL, NOTES_USER_MODIFY);Y K pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_MODIFY, "NOTES$USER_MODIFY",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),(+ (VALUE, REFERENCE, REFERENCE, REFERENCE));"  procedure NOTES_USER_END (0 STATUS : out CONDVALU_TYPE; -- return value# CXU_CONTEXT : in out CONTEXT_TYPE;r# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); 0 pragma INTERFACE (EXTERNAL, NOTES_USER_END); E pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_END, "NOTES$USER_END",I= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),_+ (VALUE, REFERENCE, REFERENCE, REFERENCE));C S D "-- module $NOTESMSGDEFE T' NOTES_FACILITY : constant := 1019;A) NOTES_NORMAL : constant := 66813961;, NOTES_CMDKEYENA : constant := 66813969;, NOTES_NUMKEYENA : constant := 66813977;. NOTES_PROFILE_MOD : constant := 66813985;/ NOTES_PROFILE_TEMP : constant := 66813993;S+ NOTES_MODERATE : constant := 66814001; - NOTES_NOMODERATE : constant := 66814009;D. NOTES_ENTRY_ADDED : constant := 66814017;1 NOTES_KEYWORD_ADDNOTE : constant := 66814025;M/ NOTES_MARKER_ADDED : constant := 66814033;R/ NOTES_MEMBER_ADDED : constant := 66814041;1 NOTES_KEYWORD_CREATED : constant := 66814049;C0 NOTES_ENTRY_DELETED : constant := 66814057;1 NOTES_KEYWORD_DELETED : constant := 66814065;S1 NOTES_KEYWORD_DELNOTE : constant := 66814073;_0 NOTES_MARKER_DELETED : constant := 66814081;/ NOTES_NOTE_DELETED : constant := 66814089;(0 NOTES_MEMBER_DELETED : constant := 66814097;0 NOTES_NOTE_MODIFIED : constant := 66814105;0 NOTES_ENTRY_MODIFIED : constant := 66814113;2 NOTES_KEYWORD_MODIFIED : constant := 66814121;1 NOTES_MEMBER_MODIFIED : constant := 66814129;E, NOTES_CLASS_SET : constant := 66814137;. NOTES_INSERT_MODE : constant := 66814145;1 NOTES_OVERSTRIKE_MODE : constant := 66814153;E0 NOTES_ENTRY_DELCLASS : constant := 66814161;0 NOTES_SPACE_COMPRESS : constant := 66814169;/ NOTES_ENTRY_ADDED2 : constant := 66814177;/ NOTES_OBJECT_ADDED : constant := 66814185;:0 NOTES_OBJECT_DELETED : constant := 66814193;1 NOTES_OBJECT_MODIFIED : constant := 66814201;S, NOTES_MORE_INFO : ch[[$ NOTES026.A5b "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[l"@onstant := 66818051;0 NOTES_SRV_NEWPROTUPD : constant := 66818059;0 NOTES_ENTRY_ABORTED : constant := 66818067;. NOTES_NOTES_WRFIL : constant := 66818075;. NOTES_NOTES_WRBUF : constant := 66818083;+ NOTES_DIRTOBUF : constant := 66818091;F, NOTES_DIRTOFILE : constant := 66818099;) NOTES_HIDDEN : constant := 66818107;u, NOTES_OPEN_CONF : constant := 66818115;. NOTES_UPDATE_CONF : constant := 66818123;, NOTES_MARKSUPER : constant := 66818131;- NOTES_OPEN_CONF2 : constant := 66818139;g0 NOTES_BEING_WRITTEN : constant := 66818147;, NOTES_USING_EDT : constant := 66818155;* NOTES_HELPBUF : constant := 66818163;* NOTES_HELPHDR : constant := 66818171;* NOTES_HELPNXT : constant := 66818179;+ NOTES_HELPASK1 : constant := 66818187;E+ NOTES_HELPASK2 : constant := 66818195;:* NOTES_HELPTOP : constant := 66818203;* NOTES_HELPBOT : constant := 66818211;* NOTES_ENTRYID : constant := 66818219;) NOTES_NOTEID : constant := 66818227;E) NOTES_TOPICS : constant := 66818235;A) NOTES_UNSEEN : constant := 66818243;I- NOTES_TOTALNOTES : constant := 66818251;R+ NOTES_DATELINE : constant := 66818259;E+ NOTES_ONECLASS : constant := 66818267; . NOTES_MANYCLASSES : constant := 66818275;* NOTES_TITLEID : constant := 66818283;+ NOTES_NOTICEID : constant := 66818291;a- NOTES_CONFCREUPD : constant := 66818299; + NOTES_MAILSUBJ : constant := 66818307;E) NOTES_FILEID : constant := 66818315;R. NOTES_MODERATORID : constant := 66818323;1 NOTES_OLD_ALREXISTS_A : constant := 66818331;,0 NOTES_OLD_INVACCNAM : constant := 66818339;- NOTES_LOCATIONID : constant := 66818347;n. NOTES_CONF_BANNER : constant := 66818355;. NOTES_READ_BANNER : constant := 66818363;/ NOTES_TOPIC_BANNER : constant := 66818371;X/ NOTES_REPLY_BANNER : constant := 66818379;R. NOTES_INFO_BANNER : constant := 66818387;. NOTES_CREATE_CONF : constant := 66818395;/ NOTES_UPDATE_ENTRY : constant := 66818403;E. NOTES_GETTING_DIR : constant := 66818411;/ NOTES_GETTING_NOTE : constant := 66818419; / NOTES_EXTRACT_NOTE : constant := 66818427;P- NOTES_PRINT_NOTE : constant := 66818435;I- NOTES_SEARCH_FOR : constant := 66818443;I. NOTES_SEARCH_NEXT : constant := 66818451;0 NOTES_DELETING_NOTE : constant := 66818459;+ NOTES_AUTHORID : constant := 66818467;C* NOTES_TOPICID : constant := 66818475;, NOTES_KEYWORDID : constant := 66818483;/ NOTES_CONFERENCEID : constant := 66818491;:+ NOTES_ATTRIBID : constant := 66818499;C. NOTES_WRITELOCKID : constant := 66818507;+ NOTES_HIDDENID : constant := 66818515;E/ NOTES_GRAPHIC_VIEW : constant := 66818523; / NOTES_UNKNOWN_VIEW : constant := 66818531;P. NOTES_DDIF_FORMAT : constant := 66818539;, NOTES_PS_FORMAT : constant := 66818547;, NOTES_USEFILEID : constant := 66818555;, NOTES_COPYRIGHT : constant := 66818563;0 NOTES_SRV_OLDPROTUPD : constant := 66822144;1 NOTES_NO_MORE_CLASSES : constant := 66822152;1 NOTES_NO_MORE_ENTRIES : constant := 66822160;T2 NOTES_NO_MORE_KEYWORDS : constant := 66822168;0 NOTES_NO_MORE_NOTES : constant := 66822176;/ NOTES_NO_MORE_TEXT : constant := 66822184;$0 NOTES_NO_MORE_USERS : constant := 66822192;- NOTES_NONOTEBOOK : constant := 66822200;N+ NOTES_NOERRTXT : constant := 66822208;r/ NOTES_NEEDNBMODIFY : constant := 66822216;Y* NOTES_MSGSEND : constant := 66822224;- NOTES_ENTERINTRO : constant := 66822232;E, NOTES_CTRLZMAIL : constant := 66822240;- NOTES_NOTREADING : constant := 66822248;D1 NOTES_NO_MORE_REPLIES : constant := 66822256;_- NOTES_ANSWER_YES : constant := 66822264;T+ NOTES_EOB_TEXT : constant := 66822272;P, NOTES_PRESS_PF2 : constant := 66822280;- NOTES_NOTES_HDR1 : constant := 66822288;0 NOTES_PRESS_CTRLZ_N : constant := 66822296;0 NOTES_SET_CONFERENCE : constant := 66822304;. NOTES_ENTER_TITLE : constant := 66822312;/ NOTES_PRESS_RETURN : constant := 66822320;O0 NOTES_PRESS_ANY_KEY : constant := 66822328;+ NOTES_DIR_HEAD : constant := 66822336;O. NOTES_ENDREQ_LIST : constant := 66822344;0 NOTES_NOTE_END_TEXT : constant := 66822352;, NOTES_TEXT_NOTE : constant := 66822360;- NOTES_TEXT_REPLY : constant := 66822368;E) NOTES_NO_NB : constant := 66822376;N* NOTES_YOUR_SP : constant := 66822384;0 NOTES_NOTE_COMPLETE : constant := 66822392;. NOTES_NOTE_NOTEXT : constant := 66822400;, NOTES_NOREPLIES : constant := 66822408;, NOTES_ONE_REPLY : constant := 66822416;/ NOTES_MANY_REPLIES : constant := 66822424;T) NOTES_N_OF_N : constant := 66822432;R/ NOTES_ENTER_CTITLE : constant := 66822440;E. NOTES_DELETE_NOTE : constant := 66822448;- NOTES_NOTENOTDEL : constant := 66822456;E/ NOTES_FINDING_HELP : constant := 66822464; , NOTES_NOKEYHELP : constant := 66822472;, NOTES_NOTESQADD : constant := 66822480;- NOTES_REALLYQUIT : constant := 66822488;O. NOTES_MAILNOTSENT : constant := 66822496;+ NOTES_NUMNOTES : constant := 66822504;n) NOTES_SENDTO : constant := 66822512;)* NOTES_SUBJECT : constant := 66822520;/ NOTES_PROFILE_USER : constant := 66822528;e, NOTES_MORE_TEXT : constant := 66822536;. NOTES_SHOW_MARK_1 : constant := 66822544;. NOTES_SHOW_MARK_2 : constant := 66822552;. NOTES_SHOW_MARK_3 : constant := 66822560;- NOTES_SHOW_ENTRY : constant := 66822568;T0 NOTES_SHOW_PROF_EDIT : constant := 66822576;2 NOTES_SHOW_PROF_DCLASS : constant := 66822584;1 NOTES_SHOW_PROF_PRINT : constant := 66822592;E0 NOTES_SHOW_PROF_NAME : constant := 66822600;0 NOTES_SHOW_PROF_AUTO : constant := 66822608;0 NOTES_SHOW_PROF_ADIR : constant := 66822616;0 NOTES_SHOW_PROF_AUNS : constant := 66822624;0 NOTES_SHOW_PROF_NONE : constant := 66822632;. NOTES_ENDREQ_SHOW : constant := 66822640;0 NOTES_CTRLZ_COM_RET : constant := 66822648;0 NOTES_SHOW_ENT_CONF : constant := 66822656;0 NOTES_SHOW_ENT_FILE : constant := 66822664;- NOTES_SHOW_CLASS : constant := 66822672;Y0 NOTES_SHOW_CONF_MOD : constant := 66822680;1 NOTES_SHOW_CONF_RESA1 : constant := 66822688;O1 NOTES_SHOW_CONF_RESA2 : constant := 66822696;I1 NOTES_SHOW_CONF_RESK1 : constant := 66822704;g1 NOTES_SHOW_CONF_RESK2 : constant := 66822712;S. NOTES_SHOW_KEYW_1 : constant := 66822720;. NOTES_SHOW_KEYW_2 : constant := 66822728;+ NOTES_SHOW_MOD : constant := 66822736;r0 NOTES_SHOW_MOD_NODE : constant := 66822744;0 NOTES_SHOW_MOD_USER : constant := 66822752;0 NOTES_SHOW_USER_MADR : constant := 66822760;0 NOTES_SHOW_USER_PRIV : constant := 66822768;0 NOTES_SHOW_USER_JOIN : constant := 66822776;0 NOTES_SHOW_NOTE_HID : constant := 66822784;0 NOTES_SHOW_NOTE_VIS : constant := 66822792;0 NOTES_SHOW_NOTE_REP1 : constant := 66822800;0 NOTES_SHOW_NOTE_REP2 : constant := 66822808;0 NOTES_SHOW_PROF_PERM : constant := 66822816;0 NOTES_SHOW_USER_FULL : constant := 66822824;0 NOTES_SHOW_MODU_FULL : constant := 66822832;' NOTES_NMF : constant := 66822840;R' NOTES_NJU : constant := 66822848;:1 NOTES_NO_MORE_MARKERS : constant := 66822856;D+ NOTES_SEARCHF1 : constant := 66822864;P+ NOTES_SEARCHF2 : constant := 66822872;)+ NOTES_DIR_CONF : constant := 66822880;)0 NOTES_DIR_CONF_TITLE : constant := 66822888;+ NOTES_N_TOPICS : constant := 66822896;C/ NOTES_DIR_NB_CLASS : constant := 66822904;i/ NOTES_CTRLZ_CANCEL : constant := 66822912;_. NOTES_REPBUFINFO1 : constant := 66822920;. NOTES_REPBUFINFO2 : constant := 66822928;- NOTES_NMORELINES : constant := 66822936;". NOTES_READINGCONF : constant := 66822944;. NOTES_WILLNOTSEND : constant := 66822952;* NOTES_WORKING : constant := 66822960;- NOTES_FILECREUPD : constant := 66822968;e, NOTES_ENTERNOTE : constant := 66822976;) NOTES_ANDTO : constant := 66822984;I- NOTES_SENDANYWAY : constant := 66822992;I+ NOTES_SPAWNKEY : constant := 66823000; * NOTES_CALLKEY : constant := 66823008;* NOTES_EDICALL : constant := 66823016;+ NOTES_EDISPAWN : constant := 66823024;(. NOTES_SPELLSELECT : constant := 66823032;. NOTES_SPELLBUFFER : constant := 66823040;- NOTES_SPELLSTART : constant := 66823048;C, NOTES_SPELLDONE : constant := 66823056;/ NOTES_SENDING_MAIL : constant := 66823064;_+ NOTES_SENDBOTH : constant := 66823072;O+ NOTES_NONESENT : is.E$ NOTES026.A5b "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[lIn"Qconstant := 66823080;_. NOTES_SENT_TO_ALL : constant := 66823088;1 NOTES_SHOW_CONF_RESW1 : constant := 66823096;,1 NOTES_SHOW_CONF_RESW2 : constant := 66823104;E- NOTES_TEXT_TOPIC : constant := 66823112;O- NOTES_MEMBERS_OF : constant := 66823120;Y. NOTES_DEF_SUBJECT : constant := 66823128;/ NOTES_MAIL_SUBJECT : constant := 66823136;O. NOTES_TEXT_APPEND : constant := 66823144;0 NOTES_NEVER_ACCESSED : constant := 66823152;* NOTES_EXPIRED : constant := 66823160;, NOTES_ANSWER_NO : constant := 66823168;, NOTES_WRONG_ANS : constant := 66823176;, NOTES_CREATEBUF : constant := 66823184;+ NOTES_WRITEBUF : constant := 66823192;F0 NOTES_SHOW_PROF_DEF : constant := 66823200;, NOTES_ASK_YESNO : constant := 66823208;+ NOTES_MODPRIVS : constant := 66823216;T/ NOTES_SHOW_ENT_OBJ : constant := 66823224;(, NOTES_CANCELLED : constant := 66823232;0 NOTES_SHOW_CONF_RESR : constant := 66823240;& NOTES_CC : constant := 66823248;0 NOTES_MODERATORS_OF : constant := 66823256;. NOTES_ALREXISTS_A : constant := 66823264;, NOTES_INVACCNAM : constant := 66823272;, NOTES_ILLCTXADR : constant := 66830338;+ NOTES_WRONGCTX : constant := 66830346;E, NOTES_INVITMCOD : constant := 66830355;, NOTES_INVITMLEN : constant := 66830362;, NOTES_MISREQITM : constant := 66830370;, NOTES_NOCURNOTE : constant := 66830378;/ NOTES_CANTCONTINUE : constant := 66830386;I, NOTES_FAILGETVM : constant := 66830394;- NOTES_STRCOPYERR : constant := 66830402;I, NOTES_ILLNOTEID : constant := 66830410;- NOTES_NOSUCHNOTE : constant := 66830418;- NOTES_SRV_NOINIT : constant := 66830426;_- NOTES_SRV_INVSEQ : constant := 66830434;R0 NOTES_SRV_NOCONTEXT : constant := 66830442;0 NOTES_SRV_NOUSERNAME : constant := 66830450;. NOTES_SRV_INVITEM : constant := 66830458;, NOTES_CREPRIJOB : constant := 66830466;* NOTES_PREMEOF : constant := 66830474;. NOTES_NOPRIVDEL_N : constant := 66830482;0 NOTES_NOPRIVWRITE_N : constant := 66830490;0 NOTES_SRV_UNRECPROT : constant := 66830498;- NOTES_NOFILEOPEN : constant := 66830506;;0 NOTES_ALREXISTS_OLD : constant := 66830514;. NOTES_NOSUCHENTRY : constant := 66830522;, NOTES_MUST_OPEN : constant := 66830530;1 NOTES_MUST_READ_REPLY : constant := 66830538;T3 NOTES_MUST_READ_FORWARD : constant := 66830546;I3 NOTES_NOT_ENTERING_NOTE : constant := 66830554;:2 NOTES_NONOTE_SPECIFIED : constant := 66830562;0 NOTES_ERROR_MAILING : constant := 66830570;1 NOTES_NOPREVIOUS_NOTE : constant := 66830578;3 NOTES_ALREADY_IN_EDITOR : constant := 66830586;;2 NOTES_ALREADY_IN_NOTES : constant := 66830594;7 NOTES_MUST_COMPLETE_MESSAGE : constant := 66830602;N0 NOTES_UNREC_CALLUSER : constant := 66830610;0 NOTES_NO_SUCH_CLASS : constant := 66830618;0 NOTES_NO_SUCH_ENTRY : constant := 66830626;1 NOTES_NO_SUCH_KEYWORD : constant := 66830634; / NOTES_NO_SUCH_NOTE : constant := 66830642;E / NOTES_NO_SUCH_USER : constant := 66830650;g0 NOTES_NOMORE_RECALL : constant := 66830658;/ NOTES_EDIT_OR_FILE : constant := 66830666;_) NOTES_NOMAIL : constant := 66830674;,- NOTES_ERRORWRITE : constant := 66830682;- NOTES_NOMAILPROC : constant := 66830690;L' NOTES_IFF : constant := 66830698;U) NOTES_NOPRIV : constant := 66830706;/ NOTES_CTRLC_CANCEL : constant := 66830714;I, NOTES_ERRCREKEY : constant := 66830722;- NOTES_ERRADDMARK : constant := 66830730;E, NOTES_ERRADDMEM : constant := 66830738;, NOTES_ERRADDENT : constant := 66830746;, NOTES_ERRDELENT : constant := 66830754;- NOTES_ERRDELMARK : constant := 66830762;N/ NOTES_ERRDELMEMBER : constant := 66830770;O- NOTES_ERRMODNOTE : constant := 66830778; . NOTES_ERRMODENTRY : constant := 66830786;0 NOTES_ERRMODKEYWORD : constant := 66830794;- NOTES_ERRACCLIST : constant := 66830802;T* NOTES_NOWRITE : constant := 66830810;/ NOTES_NOSUCHMARKER : constant := 66830818;N. NOTES_NOPRIVMOD_N : constant := 66830826;. NOTES_ALREXISTS_C : constant := 66830834;. NOTES_ALREXISTS_E : constant := 66830842;. NOTES_ALREXISTS_K : constant := 66830850;. NOTES_ALREXISTS_U : constant := 66830858;. NOTES_ALREXISTS_M : constant := 66830866;0 NOTES_NO_SUCH_MARKER : constant := 66830874;, NOTES_NOMEMBERS : constant := 66830882;, NOTES_NOTMEMBER : constant := 66830890;0 NOTES_BASEWRITELOCK : constant := 66830898;/ NOTES_NOWRITE_CONF : constant := 66830906;E- NOTES_SPELLERROR : constant := 66830914;, NOTES_PNINVCHAR : constant := 66830922;, NOTES_SENDNOAUT : constant := 66830930;/ NOTES_INVCLASSNAME : constant := 66830938;I0 NOTES_CLASSNOTFOUND : constant := 66830946;+ NOTES_FORWLOOP : constant := 66830954;_/ NOTES_BAD_DIR_LINE : constant := 66830962;E, NOTES_NO_SELECT : constant := 66830970;. NOTES_NOTE_NOCONF : constant := 66830978;/ NOTES_UNREC_EDITOR : constant := 66830986;), NOTES_NO_CLASSP : constant := 66830994;, NOTES_NMTHISDIR : constant := 66831002;. NOTES_NO_NEW_NOTE : constant := 66831010;0 NOTES_CAPTIVE_SPAWN : constant := 66831018;0 NOTES_NOTHING_TO_SET : constant := 66831026;- NOTES_NOHELPTERM : constant := 66831034;U, NOTES_INVENTNAM : constant := 66831042;, NOTES_INVCLANAM : constant := 66831050;/ NOTES_INVENTRYNAME : constant := 66831058;E3 NOTES_NO_ENTRY_IN_CLASS : constant := 66831066;E4 NOTES_ALREXISTS_IN_CLASS : constant := 66831074;, NOTES_NOMARKERS : constant := 66831082;- NOTES_NOKEYWORDS : constant := 66831090;:, NOTES_NOLICENSE : constant := 66831098;) NOTES_NOFILE : constant := 66831106;a) NOTES_NOEDT : constant := 66831114;N* NOTES_NOENTRY : constant := 66831122;) NOTES_NOEVE : constant := 66831130;U+ NOTES_TPUERROR : constant := 66831138;D3 NOTES_ENTALR_IN_CLASSES : constant := 66831146;Y0 NOTES_NO_RANGE_ALLOW : constant := 66831154;+ NOTES_NOTINCMD : constant := 66831162;t1 NOTES_CONF_REPLY_ONLY : constant := 66831170;=, NOTES_USRNOTADD : constant := 66831178;, NOTES_INVKEYNAM : constant := 66831186;0 NOTES_INVKEYWORDNAME : constant := 66831194;, NOTES_INVMRKNAM : constant := 66831202;0 NOTES_INVMARKERNAME : constant := 66831210;, NOTES_INVUSRNAM : constant := 66831218;. NOTES_INVUSERNAME : constant := 66831226;. NOTES_INVNOTESPEC : constant := 66831234;1 NOTES_RANGE_ONE_TOPIC : constant := 66831242; 0 NOTES_RANGE_TOO_BIG : constant := 66831250;+ NOTES_NO_TOPIC : constant := 66831258;E. NOTES_ALREXISTS_N : constant := 66831266;- NOTES_NONOTESMOD : constant := 66831274;K1 NOTES_MEMBERNAME_NODE : constant := 66831282;D+ NOTES_CONFQUAL : constant := 66831290;E/ NOTES_OPRNOTSUPCNF : constant := 66831298;O* NOTES_BADTIME : constant := 66831306;- NOTES_INVOBJNAME : constant := 66831314; 0 NOTES_INVOBJECTNAME : constant := 66831322;+ NOTES_NOATTRIB : constant := 66831330;9+ NOTES_NOOBJECT : constant := 66831338;3, NOTES_NOSUCHOBJ : constant := 66831346;+ NOTES_LWKERROR : constant := 66831354; 0 NOTES_NOLINKLICENSE : constant := 66831362;, NOTES_NOTNETWRK : constant := 66842628;- NOTES_WRONG_ACCT : constant := 66842636;a/ NOTES_SRV_INIT_ERR : constant := 66842644;a, NOTES_WRONG_LMF : constant := 66842652; t -- module SERVERDEF B( NOTES_K_INITIALIZE : constant := 1;" NOTES_K_MORE : constant := 2;+ NOTES_K_NOTEFILE_BEGIN : constant := 3;=) NOTES_K_NOTEFILE_END : constant := 4;t. NOTES_K_NOTEFILE_GET_INFO : constant := 5;, NOTES_K_NOTEFILE_MODIFY : constant := 6;0 NOTES_K_NOTEFILE_LIST_BEGIN : constant := 7;* NOTES_K_NOTEFILE_LIST : constant := 8;* NOTES_K_KEYWORD_BEGIN : constant := 9;* NOTES_K_KEYWORD_END : constant := 10;* NOTES_K_KEYWORD_ADD : constant := 11;, NOTES_K_KEYWORD_DELETE : constant := 12;* NOTES_K_KEYWORD_GET : constant := 13;. NOTES_K_KEYWORD_GET_NOTE : constant := 14;, NOTES_K_KEYWORD_MODIFY : constant := 15;) NOTES_K_NOTE_BEGIN : constant := 16;P' NOTES_K_NOTE_END : constant := 17;E' NOTES_K_NOTE_ADD : constant := 18;_+ NOTES_K_NOTE_ADD_TEXT : constant := 19;E* NOTES_K_NOTE_DELETE : constant := 20;' NOTES_K_NOTE_GET : constant := 21;O. NOTES_K_NOTE_GET_KEYWORD : constant := 22;+ NOTES_K_NOTE_GET_TEXT : constant := 23;N* NOTES_K_NOTE_MODIFY : constant := 24;) NOTES_K_USERj ;$ NOTES026.A5b "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[l b_BEGIN : constant := 25;O' NOTES_K_USER_END : constant := 26;_' NOTES_K_USER_ADD : constant := 27;E* NOTES_K_USER_DELETE : constant := 28;' NOTES_K_USER_GET : constant := 29;* NOTES_K_USER_MODIFY : constant := 30;( NOTES_K_CLASS_ADD : constant := 31;* NOTES_K_CLASS_BEGIN : constant := 32;* NOTES_K_CLASS_DELETE : constant := 33;( NOTES_K_CLASS_END : constant := 34;( NOTES_K_CLASS_GET : constant := 35;- NOTES_K_CLASS_GET_ENTRY : constant := 36;t* NOTES_K_CLASS_MODIFY : constant := 37;( NOTES_K_ENTRY_ADD : constant := 38;* NOTES_K_ENTRY_BEGIN : constant := 39;* NOTES_K_ENTRY_DELETE : constant := 40;( NOTES_K_ENTRY_END : constant := 41;( NOTES_K_ENTRY_GET : constant := 42;- NOTES_K_ENTRY_GET_CLASS : constant := 43;6/ NOTES_K_ENTRY_GET_KEYWORD : constant := 44;1* NOTES_K_ENTRY_MODIFY : constant := 45;+ NOTES_K_PROFILE_BEGIN : constant := 46;=* NOTES_K_PROFILE_END : constant := 47;* NOTES_K_PROFILE_GET : constant := 48;, NOTES_K_PROFILE_MODIFY : constant := 49;& NOTES_K_STATUS : constant := 129;. NOTES_K_REQUEST_CONTEXT : constant := 130;) NOTES_K_ERROR_TLV : constant := 131;E+ NOTES_K_ERROR_NARGS : constant := 132;O) NOTES_K_ERROR_ARG : constant := 133; * NOTES_K_ERROR_TEXT : constant := 134;- NOTES_K_CANCEL_REQUEST : constant := 135;50 NOTES_K_REQUEST_CANCELLED : constant := 136;, NOTES_K_INIT_VERSION : constant := 8193;- NOTES_K_INIT_NODENAME : constant := 8194; - NOTES_K_INIT_USERNAME : constant := 8195; 1 NOTES_K_INIT_CAPABILITIES : constant := 8196;E0 NOTES_K_INIT_MAXITEMCODE : constant := 8197;4 NOTES_M_INIT_VMSMSGS : constant := 16#00000001#; W# type NOTES_CAPABILITIES_TYPE is_ recordI INIT_VMSMSGS : BOOLEAN; FILLER_1 : UNSIGNED_31; end record; % for NOTES_CAPABILITIES_TYPE use 8 record% INIT_VMSMSGS at 0 range 0 .. 0;;" FILLER_1 at 0 range 1 .. 31; end record; - for NOTES_CAPABILITIES_TYPE'SIZE use 32;  OG NOTES_CAPABILITIES_TYPE_INIT : constant NOTES_CAPABILITIES_TYPE :=  (INIT_VMSMSGS => FALSE, FILLER_1 => 0); n# type NOTES_CAPABILITIES_TYPE is_ recordc, CAPABILITIES : NOTES_CAPABILITIES_TYPE; end record; 2% for NOTES_CAPABILITIES_TYPE use t record& CAPABILITIES at 0 range 0 .. 31; end record;- for NOTES_CAPABILITIES_TYPE'SIZE use 32;  OG NOTES_CAPABILITIES_TYPE_INIT : constant NOTES_CAPABILITIES_TYPE :=  (1 CAPABILITIES => NOTES_CAPABILITIES_TYPE_INITE );E T- NOTES_K_PROTOCOL_VERSION : constant := 2;R, NOTES_K_PROTOCOL_UPDATE : constant := 6; R" procedure NOTES_SERVER_BEGIN (1 STATUS : out CONDVALU_TYPE); -- return value  E4 pragma INTERFACE (EXTERNAL, NOTES_SERVER_BEGIN); M pragma IMPORT_VALUED_PROCEDURE (NOTES_SERVER_BEGIN, "NOTES$SERVER_BEGIN",O (CONDVALU_TYPE),: (VALUE)); 8end NOTES_ITEMDEF;"*[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1+,6b.l/J 4~l]6- 0123KPWO^56ģ7_߈ģ89GJHJ !N !****************************************************************************N !* *N !* Copyright (c) 2004 *N !* by DIGITAL Equipment Corporation, Maynard, Mass. *N !* All rights reserved. *N !* *N !* This software is furnished under a license and may be used and copied *N !* only in accordance with the terms of such license and with the *N !* inclusion of the above copyright notice. This software or any other *N !* copies thereof may not be provided or otherwise made available to any *N !* other person. No title to and ownership of the software is hereby *N !* transferred. *N !* *N !* The information in this software is subject to change without notice *N !* and should not be construed as a commitment by DIGITAL Equipment *N !* Corporation. *N !* *N !* DIGITAL assumes no responsibility for the use or reliability of its *N !* software on equipment which is not supplied by DIGITAL. *N !* *N !**************************************************************************** ! *** PREDECLARED TYPES 7 %IF %DECLARED(%BASIC$QUADWORD_DECLARED) = 0 %THEN RECORD BASIC$QUADWORD LONG FILL(2) END RECORD* %LET %BASIC$QUADWORD_DECLARED = 1 %END %IF 7 %IF %DECLARED(%BASIC$OCTAWORD_DECLARED) = 0 %THEN RECORD BASIC$OCTAWORD LONG FILL(4) END RECORD* %LET %BASIC$OCTAWORD_DECLARED = 1 %END %IF 9 %IF %DECLARED(%BASIC$HFLOAT_AXP_DECLARED) = 0 %THEN RECORD BASIC$HFLOAT_AXP LONG FILL(4) END RECORD, %LET %BASIC$HFLOAT_AXP_DECLARED = 1 %END %IF = %IF %DECLARED(%BASIC$F_FLOATING_COMPLEX_DECL) = 0 %THEN( RECORD BASIC$F_FLOATING_COMPLEX SINGLE REAL_PART! SINGLE IMAGINARY_PART END RECORD0 %LET %BASIC$F_FLOATING_COMPLEX_DECL = 1 %END %IF = %IF %DECLARED(%BASIC$D_FLOATING_COMPLEX_DECL) = 0 %THEN( RECORD BASIC$D_FLOATING_COMPLEX DOUBLE REAL_PART! DOUBLE IMAGINARY_PART END RECORD0 %LET %BASIC$D_FLOATING_COMPLEX_DECL = 1 %END %IF = %IF %DECLARED(%BASIC$G_FLOATING_COMPLEX_DECL) = 0 %THEN( RECORD BASIC$G_FLOATING_COMPLEX GFLOAT REAL_PART! GFLOAT IMAGINARY_PART END RECORD0 %LET %BASIC$G_FLOATING_COMPLEX_DECL = 1 %END %IF ; %IF %DECLARED(%BASIC$H_FLOAT_AXP_CMPLX_DCL) = 0 %THEN, RECORD BASIC$H_FLOATING_COMPLEX_AXP& BASIC$HFLOAT_AXP REAL_PART+ BASIC$HFLOAT_AXP IMAGINARY_PART END RECORD. %LET %BASIC$H_FLOAT_AXP_CMPLX_DCL = 1 %END %IF   !*** MODULE NOTEITEMS ***  0 DECLARE LONG CONSTANT NOTES$K_MIN_ITEM = 10 DECLARE LONG CONSTANT NOTES$K_NOSIGNAL = 13 DECLARE LONG CONSTANT NOTES$K_TEXT_STRING = 20 DECLARE LONG CONSTANT NOTES$K_TEXT_END = 31 DECLARE LONG CONSTANT NOTES$K_TEXT_TYPE = 4: DECLARE LONG CONSTANT NOTES$K_NOTE_ALL_RESPONSES = 53 DECLARE LONG CONSTANT NOTES$K_NOTE_AUTHOR = 66 DECLARE LONG CONSTANT NOTES$K_NOTE_BACK_NOTE = 7: DECLARE LONG CONSTANT NOTES$K_NOTE_BACK_RESPONSE = 88 DECLARE LONG CONSTANT NOTES$K_NOTE_BEFORE_TIME = 96 DECLARE LONG CONSTANT NOTES$K_NOTE_BLINK_ID = 107 DECLARE LONG CONSTANT NOTES$K_NOTE_BLINK_UID = 119 DECLARE LONG CONSTANT NOTES$K_NOTE_CREATE_TIME = 124 DECLARE LONG CONSTANT NOTES$K_NOTE_HIDDEN = 130 DECLARE LONG CONSTANT NOTES$K_NOTE_ID = 147 DECLARE LONG CONSTANT NOTES$K_NOTE_NEXT_NOTE = 15; DECLARE LONG CONSTANT NOTES$K_NOTE_NEXT_RESPONSE = 168 DECLARE LONG CONSTANT NOTES$K_NOTE_NUMRECORDS = 17: DECLARE LONG CONSTANT NOTES$K_NOTE_NUMRESPONSES = 186 DECLARE LONG CONSTANT NOTES$K_NOTE_PEN_NAME = 19; DECLARE LONG CONSTANT NOTES$K_NOTE_SEARCH_STRING = 20: DECLARE LONG CONSTANT NOTES$K_NOTE_SEARCH_TITLE = 218 DECLARE LONG CONSTANT NOTES$K_NOTE_SINCE_TIME = 223 DECLARE LONG CONSTANT NOTES$K_NOTE_TITLE = 231 DECLARE LONG CONSTANT NOTES$K_NOTE_UID = 244 DECLARE LONG CONSTANT NOTES$K_NOTE_UNSEEN = 257 DECLARE LONG CONSTANT NOTES$K_NOTE_USER_AREA = 267 DECLARE LONG CONSTANT NOTES$K_NOTE_WRITELOCK = 279 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CONTEXT = 2kf>$ NOTES026.A6b "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~l:" 86 DECLARE LONG CONSTANT NOTES$K_CLASS_CONTEXT = 296 DECLARE LONG CONSTANT NOTES$K_ENTRY_CONTEXT = 308 DECLARE LONG CONSTANT NOTES$K_KEYWORD_CONTEXT = 315 DECLARE LONG CONSTANT NOTES$K_NOTE_CONTEXT = 328 DECLARE LONG CONSTANT NOTES$K_PROFILE_CONTEXT = 337 DECLARE LONG CONSTANT NOTES$K_SERVER_CONTEXT = 345 DECLARE LONG CONSTANT NOTES$K_USER_CONTEXT = 353 DECLARE LONG CONSTANT NOTES$K_CLASS_NAME = 367 DECLARE LONG CONSTANT NOTES$K_CLASS_NEW_NAME = 371 DECLARE LONG CONSTANT NOTES$K_CONTINUE = 383 DECLARE LONG CONSTANT NOTES$K_ENTRY_NAME = 397 DECLARE LONG CONSTANT NOTES$K_ENTRY_NEW_NAME = 408 DECLARE LONG CONSTANT NOTES$K_ENTRY_USER_AREA = 41- DECLARE LONG CONSTANT NOTES$K_HINT = 425 DECLARE LONG CONSTANT NOTES$K_KEYWORD_NAME = 439 DECLARE LONG CONSTANT NOTES$K_KEYWORD_NEW_NAME = 448 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CREATE = 45= DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CREATE_TIME = 46> DECLARE LONG CONSTANT NOTES$K_NOTEFILE_DEFAULT_NAME = 47< DECLARE LONG CONSTANT NOTES$K_NOTEFILE_ENTRYTOTAL = 48; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_FILE_NAME = 498 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_FORMAT = 50: DECLARE LONG CONSTANT NOTES$K_NOTEFILE_HIGH_UID = 519 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LASTREV = 52: DECLARE LONG CONSTANT NOTES$K_NOTEFILE_MODERATE = 53; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_MODERATOR = 548 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_NOTICE = 55: DECLARE LONG CONSTANT NOTES$K_NOTEFILE_NUMNOTES = 56> DECLARE LONG CONSTANT NOTES$K_NOTEFILE_RELATED_NAME = 57< DECLARE LONG CONSTANT NOTES$K_NOTEFILE_RESTRICTED = 58= DECLARE LONG CONSTANT NOTES$K_NOTEFILE_RESULT_SPEC = 597 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_TITLE = 60; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_TRANSPORT = 61; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_USER_AREA = 629 DECLARE LONG CONSTANT NOTES$K_PROFILE_AUTO_DIR = 63< DECLARE LONG CONSTANT NOTES$K_PROFILE_AUTO_UNSEEN = 64; DECLARE LONG CONSTANT NOTES$K_PROFILE_CLASS_NAME = 657 DECLARE LONG CONSTANT NOTES$K_PROFILE_EDITOR = 66= DECLARE LONG CONSTANT NOTES$K_PROFILE_EDITOR_SPAWN = 679 DECLARE LONG CONSTANT NOTES$K_PROFILE_PEN_NAME = 686 DECLARE LONG CONSTANT NOTES$K_PROFILE_PRINT = 69: DECLARE LONG CONSTANT NOTES$K_PROFILE_TEMPORARY = 701 DECLARE LONG CONSTANT NOTES$K_SEEN_MAP = 71< DECLARE LONG CONSTANT NOTES$K_USER_CREATE_KEYWORD = 727 DECLARE LONG CONSTANT NOTES$K_USER_MAIL_ADDR = 736 DECLARE LONG CONSTANT NOTES$K_USER_MODERATE = 742 DECLARE LONG CONSTANT NOTES$K_USER_NAME = 756 DECLARE LONG CONSTANT NOTES$K_USER_NEW_NAME = 76: DECLARE LONG CONSTANT NOTES$K_USER_NEW_NODENAME = 776 DECLARE LONG CONSTANT NOTES$K_USER_NODENAME = 789 DECLARE LONG CONSTANT NOTES$K_NOTE_BLINK_TITLE = 797 DECLARE LONG CONSTANT NOTES$K_NOTE_MARK_SEEN = 809 DECLARE LONG CONSTANT NOTES$K_NOTE_NEXT_UNSEEN = 81; DECLARE LONG CONSTANT NOTES$K_NOTE_HINT_GET_TEXT = 827 DECLARE LONG CONSTANT NOTES$K_NOTE_X_KEYWORD = 837 DECLARE LONG CONSTANT NOTES$K_KEYWORD_X_NOTE = 846 DECLARE LONG CONSTANT NOTES$K_CLASS_X_ENTRY = 856 DECLARE LONG CONSTANT NOTES$K_ENTRY_X_CLASS = 868 DECLARE LONG CONSTANT NOTES$K_ENTRY_X_KEYWORD = 87/ DECLARE LONG CONSTANT NOTES$K_DELIF0 = 881 DECLARE LONG CONSTANT NOTES$K_UNIENTRY = 899 DECLARE LONG CONSTANT NOTES$K_ENTRY_UNSEEN_EST = 90: DECLARE LONG CONSTANT NOTES$K_ENTRY_LAST_STATUS = 917 DECLARE LONG CONSTANT NOTES$K_NOTE_CAN_REPLY = 92; DECLARE LONG CONSTANT NOTES$K_NOTE_BEFORE_TIME_A = 93; DECLARE LONG CONSTANT NOTES$K_NOTE_CREATE_TIME_A = 94: DECLARE LONG CONSTANT NOTES$K_NOTE_SINCE_TIME_A = 95? DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CREATE_TIME_A = 96; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LASTREV_A = 97> DECLARE LONG CONSTANT NOTES$K_NOTE_HINT_GET_KEYWORD = 98> DECLARE LONG CONSTANT NOTES$K_KEYWORD_HINT_GET_NOTE = 999 DECLARE LONG CONSTANT NOTES$K_SERVER_MAX_ITEM = 100> DECLARE LONG CONSTANT NOTES$K_CLASS_HINT_GET_ENTRY = 1019 DECLARE LONG CONSTANT NOTES$K_CLASS_USER_AREA = 1023 DECLARE LONG CONSTANT NOTES$K_CLASS_UID = 103> DECLARE LONG CONSTANT NOTES$K_ENTRY_HINT_GET_CLASS = 104@ DECLARE LONG CONSTANT NOTES$K_ENTRY_HINT_GET_KEYWORD = 105; DECLARE LONG CONSTANT NOTES$K_ENTRY_OBJECT_NAME = 106; DECLARE LONG CONSTANT NOTES$K_ENTRY_OBJECT_SPEC = 1073 DECLARE LONG CONSTANT NOTES$K_ENTRY_UID = 108; DECLARE LONG CONSTANT NOTES$K_KEYWORD_USER_AREA = 1095 DECLARE LONG CONSTANT NOTES$K_KEYWORD_UID = 1103 DECLARE LONG CONSTANT NOTES$K_NODE_NAME = 1119 DECLARE LONG CONSTANT NOTES$K_NODE_X_USERNAME = 1125 DECLARE LONG CONSTANT NOTES$K_NOTE_NEW_ID = 1133 DECLARE LONG CONSTANT NOTES$K_NOTE_TYPE = 114= DECLARE LONG CONSTANT NOTES$K_NOTEFILE_REPLY_ONLY = 115; DECLARE LONG CONSTANT NOTES$K_PROFILE_USER_AREA = 116: DECLARE LONG CONSTANT NOTES$K_USER_ACCESS_LIST = 117; DECLARE LONG CONSTANT NOTES$K_USER_WRITE_BYPASS = 1188 DECLARE LONG CONSTANT NOTES$K_USER_USER_AREA = 1192 DECLARE LONG CONSTANT NOTES$K_USER_UID = 1207 DECLARE LONG CONSTANT NOTES$K_USER_NOACCESS = 1212 DECLARE LONG CONSTANT NOTES$K_MAX_ITEM = 122; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_WRITELOCK = 27: DECLARE LONG CONSTANT NOTES$K_USER_ACCESS_NODE = 1115 DECLARE LONG CONSTANT NOTES$K_USER_ACCESS = 1171 DECLARE LONG CONSTANT NOTES$K_BASE_NOTE = 12 DECLARE LONG CONSTANT NOTES$K_REPLY_NOTE = 24 DECLARE LONG CONSTANT NOTES$K_UNKNOWN_TYPE = 01 DECLARE LONG CONSTANT NOTES$K_DDIF_TYPE = 12 DECLARE LONG CONSTANT NOTES$K_ASCII_TYPE = 25 DECLARE LONG CONSTANT NOTES$K_RESERVED_TYPE = 35 DECLARE LONG CONSTANT NOTES$K_WPS_PLUS_TYPE = 44 DECLARE LONG CONSTANT NOTES$K_TLV_INPUT = 40975 DECLARE LONG CONSTANT NOTES$K_TLV_OUTPUT = 40981 DECLARE LONG CONSTANT NOTES$K_CHAIN = 655350 DECLARE LONG CONSTANT NOTES$K_NOOP = 65534+ EXTERNAL LONG FUNCTION NOTES$NOTES & ( &- OPTIONAL STRING BY DESC, &# LONG BY VALUE & )4 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )7 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_GET_INFO & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )5 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )9 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_LIST_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_LIST & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$CLASS_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$CLASS_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$CLASS_DELETE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$CLASS_GET & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )5 EXTERNAL LONG FUNCTION NOTES$CLASS_GET_ENTRY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$CLASS_MODIFY & lu"}$ NOTES026.A6b "[NOTES.TEMPKIT]NOTES$ITEMDEF.BA,1~lH&1G_~ER:'*tobY$>5z^ >Km| ;;U>Af{s ,?a(/.treReP$~"%|J@kbOOh~N(`m&n0C{+|G'_R5Ppv4x|A :<(|5s,cOWf3"rjO=z03$i/t*_W^5a~Ps2Cw+PL]433HN7o9ya+yalR&<$-vQNZXt_*wj)LE k1?Xz71}&8PypxwYgT)nziSXe 3Jfu,NK0i.4*F:56/W8GtBQE?_p2 -P(+NL-2sMei*VK-,Z!;7M<~9A{'b>xp:}~~|Z=~Rh 7/?> I^M` \nw_ |:7i!Lio!/}`UlDt;^/ot ^~E $lZY\NmeZEt&? HV86vQ-l{< (8p3F!F7Jtc0d"I 7:KYirF1r-fkEk(l?z>N9(~^3FJUL]w`9S9j0w?E<>?>a4*5RdOE(1 #2EgY:!A]qxcuWf( dqRGw O+93Z? qN`~{H ~L@o i1/{b,R`il &ZDz)aKhFGs@+Ow'^60kwqUZc #+hqaCK! . nm-NP 82@ + vF$`}|U-#b O NQb n',edl)SU6a 05l37l |M<V{skFlH`wiIJu(VGzwYx(d\9"O!8%v":\_/RB^u~ mp!E'+P dDIc 4y@Qd{ vssy]6r`Fa#p. Y` 5=au:@>G^l4Jb-7iP82B_\PXuD-'4en"OT"]sX 63E&,v& V7^BU';[H9O[jCcTH"l2Sk6&qD&:awA sg@5k,W ggjhxst|@'\]pw.tzVg_/ #{vU1~7nci">}t6@ $K?b}6]M0ro*ETUk 5"I(l g="fMEFYAn3I*#jhj]2"r)E*o:Sm[kg$;('3 c6ESL2+_s3B[Nc7>?)VD,)!@ CIorLN k+ZDH/Xl&MPl92s4?#XL1r vlw'Iz?NiHA+K[iW24)9 V~34g*Q= ^kiH2uhDHndzgs*:D'AnBuQ&)9@4_X<|MLNsjAF854's< (eIy3-hBQ Dgd A 1xGx0TWIW[)`8wCVhzWUnCX0cgS!%`dIL;(7:Vc/GrUJ9bK&89#FMw&-`zm#]o7 StVP|$*e1\!{[6_'jF""h^v5[F){!G\B6:%<z3BBoWj^[1i%D-[/;EV<R_Z}s 78wQmX.*_od_ACtDG2XI+,nbc8c8=[z|_ltj>y>8l&1|Abw.+Z%bxP lX|' x+Er SCX/l1sX[mHoo1 S:!3JgJCC* WoDrtZEh `<< m+=d,]9IjRUSdN/-jyJI{<4r,(sOZ&>aL9"2wapN&S8M?g%<]}a* S*5K:~E'e+@,~ fjtA>|u #C\L+RO]A^8w7'#\@&E.- *V^DnyGAy!5b.@Ew|7"BKu;Pgs09 g[g2ZpXZ%7aDi1D$:#y.8y+F 4 (Es+d@FwEiY ELpm .=>:& $[c@1\=B0$ c c]Ke_J@}m='".7 A.5yFV0D9lG:NL]a^vsc8 iz3x[jd֚ꩭXAn@|sEaBD_JB~;S>xn Nm|=>w A&d_VnpTk h5/g@m]Z%I.;Uz+[j=8 3;EgPqh,e1\. OSBP]Z [W'[8Z95 Q (-`o_FVS|O, NY., twv;uQ {Afc Sv+`uAq4AB x\CF$\'`;#0/:oFlmQ;PrGqQc$DT5pnP/(4O&H#%q+6p"&4J,t R\4$Gv5VZq$/7-:ns/ ^OGDNqq9Y[#UYdP  1)7*U"2QRza+`|_b];UsHU m`E 7K0(VQ8; `xf>}c%4O|$)xv*W@(U3F[{CyT0G"h3`.&!c4?sXzT8r\uE~&8xM;7#DQrg `wdi"55u36LduPYujDVa Ww,f*,\ ynB<SudigXL1_>+O||(F:/0<~ D?$A=O": 6+Luxq|G uH-_4p]f1.[  ;J>zBc5g}7+NHuNUy@\TCpjqx=xr$,o%JVgF)9SoC*3j%(wX8 EjvHDSxc-N4ov#;Pj1uG AVjHX-~@PD8 'axgd1GT|$*ZUJKUp @7UC[-!q"DoP]vZ+xI /MklVT}4C. "iL''T&qzmSs?3 a }uWK;(Eed$NN*roNFbN(>QCZ(j_JT0U|,yy{ s "JbRm<CE Dfr'Xhoy5uc5zh?VS3LF]v$4tGVju4uv @?JNe$s Mnf(i$Al.y l[J$n#8t 2E 4pq l)t3_psBKqze"j,uyN 'QCf(/.GpywE}c$(W.{ hiO=0 4b k7 %/&DC9c >TX~Nd4}& 8QAL^pc|vm ; zf{PiLQL"}xHBjuMMtb2 Wx YyqLi/*O 0IqfjF!FOC0D;8!P0)2YkbV+.PP!F3c(dSc e_; 0q!?CN__Vq$e_rV%! 9NK69Qrg#. ~(7Umn2 hxOXjES`{~n;J?,z=gV8*,?,q|?U: dP5"!G>s ox_Ls#Rj*Oo9@A@skNBwGOuhw*[Ku{i,YF+u`:pF* W-UgDQ (W|&4J/qrhd%{tw{-gI!X /v KIq)t_!jg_>Fn#1?MWL%gy@(Nb'u,$97X d t623 &neE]tc}o VR. W'4m'hu#XP_DD\W_#gez pkP*~r,27._di!rP's%d]+/*VRnhn"v xl6.Ty[>A|5l#@,y %P(OJ8Sf,>{-Y^%=9kCyg#hSZkT1_6d[{{x&TWX.O>'3&%eP{!zNpsn%^uRnvS*bhTQCxIDEEcIRZA713t[z_~&2$/t,CL-XoQ4]IbAxO)D]t~MGD/hb.zS4g[T#=N ZL?%y5DYASJvvKqq8J^a*"KKx$"Ge}HWrW"~~6b6vry^L X@HJQosdGGkUGTr<t~sb)KsY_:T"X|8vo`D@h F)V?7kM z6FI!>zE>$b.:q*j Br,%",G)|otfXH?w[F4X"a|521ae5};/7/]D^E*`FT$p~DTs~t<Xho1!n$ >a7&K$2oc_>~,sO[. $q"Js2k@t%F54Xc\\xqA i7 ,hy=0J-j]Jm0&b_A[bVv8E>B3'#(08G&Xh0"2n5rzR+Ln!F9_[ zAtMY(DwN?>I2"h;tC)ieP 7"O?\`[we63>`d bj]AC,ToNhmnID`Y?4U87k +8)Pm#o1 i(G]`K[8h0(0snS(? @G(SZ vz`.aD(&.k)tMF5 .hwE)CF'!n]`9! n9c(o:9'ZL5yu kG,73h;dP8~W2f9MM[Cs0{[Q3$Z5=(Fo4Y1de]rH9Y` ,NWh^/kyJF Lx0@p'7E(ejlP}U ih*kMx`N~!M-kG{aN6>%W`"8M"Y)cBQ? |I~j2Tp$[(`Y`HYJ2a;e`2D9sbbnULMgW)/ [62XnFG7TC7AR]5 pO8ouSG8JC?{lG\xvK.<&@ZPB.5qg9KM0cT-F lWYT(bSP9xW( @UC(on.m)|(RumOv0|k1H@oH% bAK( Q }"C&|z:'h5~L\{h7Th ooTf QN16 i=&P=h6Za=D}{}W4m?*R^*1ZPFog3LIdPIv+'nPq/>8mFF {bqTUii'DS$!B2;.M/%ruD_vmIH} M20),2Jq2@A.^NX; kdsi/{vscmLk#\Z%7 Z2kdT>czYDr`,)wY`-:} x2yYx]T&!8yX%8u9IhSLZFgZ^7 KE; )D#O o3PGZ0ikv7S,I)kg%X+hS`@nWKcwji4L-{2D`twou# :)h E>I-jj#a/kI]p)=}Ib<%8`ZWbgq|P:2RNR&C3w3h@ Mh=NYZQjLI,S,$=3v[P,){-|]aN~]w7(<V\9`qA3T:H_&qDp {+{! =R L%?(#Ke qX$:.79A}c YC(5$eSR>wtA)se3K7]T>e :~yBC?6Gi9s )l^g 4qUZ)C$Ky0vW{0"^ yb=W]po-M#fJ.Osm{oD9|m sNR|p!1k|F( /n 4m*uD6" f[tWs4)2mBRlcq>::}8qUj6-tbL`QVvEP+H68[D2&@L@E$m!_! WL.:):dy\Av?`GAdMuvIThmErwB6<%H%Ts 3:OS}h< VP?H^-Eqr>m|H;=|A.o +qx?Kju[10>ih; NU-T/f4 ld#qsQ|(!kZK$5Przjk?VZ%VZ~c[1jȭ{$SMf3I;9/BvSLQ&Ytk5}H"'!d= [c[z_t/$}*SLTX5Tt/c; 'C#&'(9cjxM4yaa ^wr a +g iG#o?c\2Oie%90PCCOc43^nw>y9~/ 5C\TO0<(Q$I UK"<`<-e nJ1g9$l&vo_ CF~Gl$tv2%=~@] MU8W<O@f5{T `$)QnNL-}pGlh)hhF3)+%+YM:~ytv_>6Tl{Y2}&0I^*yK*"c=2_Dp" 5-KM]X5taBcJlQ7HD)p` _,f3?h\i+2'vI`tOt^j"}"n+y sjluzX;VA=(dGDh*1>X&u UZvjNPZ4yZ4%f&O\ % W9M zvKu! 4X-SpJe{OT:C]Lg7H'}c`f A\ABw f4Tz'O"o#KVN\e1js6ySjAr>e{`_j} ldjJ5o(.>y]Bc[y{ GA1f;M2WC:0=(,X3KHEwwm%/NV6R9qOr)(#d= c!]yC/+k#efi4%wYv4Y$zV_ZE 7nn#f/H)2U6g%q aRQEW .PUY74FEWqwh}CWMZ]g!NX!2cv *v;#L,mG$ NOTES026.A6b "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~lѯ" ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$CLASS_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$ENTRY_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$ENTRY_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$ENTRY_DELETE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$ENTRY_GET & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )5 EXTERNAL LONG FUNCTION NOTES$ENTRY_GET_CLASS & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )7 EXTERNAL LONG FUNCTION NOTES$ENTRY_GET_KEYWORD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$ENTRY_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$ENTRY_UPDATE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$ENTRY_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$KEYWORD_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$KEYWORD_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )4 EXTERNAL LONG FUNCTION NOTES$KEYWORD_DELETE & ( &" LONG BY REF, &! ANY BY REF, &* ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$KEYWORD_GET &) ( &" LONG BY REF, &! ANY BY REF, &p ANY BY REF & )6 EXTERNAL LONG FUNCTION NOTES$KEYWORD_GET_NOTE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )4 EXTERNAL LONG FUNCTION NOTES$KEYWORD_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$KEYWORD_END &s ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )0 EXTERNAL LONG FUNCTION NOTES$NOTE_BEGIN & ( &" LONG BY REF, &! ANY BY REF, &i ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$NOTE_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$NOTE_ADD_TEXT &  ( &" LONG BY REF, &! ANY BY REF, &f ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$NOTE_DELETE &  ( &" LONG BY REF, &! ANY BY REF, &* ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$NOTE_GET & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )6 EXTERNAL LONG FUNCTION NOTES$NOTE_GET_KEYWORD & ( &" LONG BY REF, &! ANY BY REF, &L ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$NOTE_GET_TEXT &  ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$NOTE_MODIFY &  ( &" LONG BY REF, &! ANY BY REF, &$ ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$NOTE_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$PROFILE_BEGIN &  ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$PROFILE_GET &E ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )4 EXTERNAL LONG FUNCTION NOTES$PROFILE_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$PROFILE_END &O ( &" LONG BY REF, &! ANY BY REF, &1 ANY BY REF & )0 EXTERNAL LONG FUNCTION NOTES$USER_BEGIN & ( &" LONG BY REF, &! ANY BY REF, &G ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$USER_ADD & ( &" LONG BY REF, &! ANY BY REF, &S ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$USER_DELETE &C ( &" LONG BY REF, &! ANY BY REF, &C ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$USER_GET & ( &" LONG BY REF, &! ANY BY REF, &E ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$USER_MODIFY &O ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$USER_END & ( &" LONG BY REF, &! ANY BY REF, &N ANY BY REF & ) !*** MODULE $NOTESMSGDEF ***  2 DECLARE LONG CONSTANT NOTES$_FACILITY = 10194 DECLARE LONG CONSTANT NOTES$_NORMAL = 668139617 DECLARE LONG CONSTANT NOTES$_CMDKEYENA = 66813969 7 DECLARE LONG CONSTANT NOTES$_NUMKEYENA = 66813977L9 DECLARE LONG CONSTANT NOTES$_PROFILE_MOD = 66813985O: DECLARE LONG CONSTANT NOTES$_PROFILE_TEMP = 668139936 DECLARE LONG CONSTANT NOTES$_MODERATE = 668140018 DECLARE LONG CONSTANT NOTES$_NOMODERATE = 668140099 DECLARE LONG CONSTANT NOTES$_ENTRY_ADDED = 66814017G= DECLARE LONG CONSTANT NOTES$_KEYWORD_ADDNOTE = 66814025N: DECLARE LONG CONSTANT NOTES$_MARKER_ADDED = 66814033: DECLARE LONG CONSTANT NOTES$_MEMBER_ADDED = 66814041= DECLARE LONG CONSTANT NOTES$_KEYWORD_CREATED = 66814049E; DECLARE LONG CONSTANT NOTES$_ENTRY_DELETED = 66814057C= DECLARE LONG CONSTANT NOTES$_KEYWORD_DELETED = 668140653= DECLARE LONG CONSTANT NOTES$_KEYWORD_DELNOTE = 66814073 < DECLARE LONG CONSTANT NOTES$_MARKER_DELETED = 66814081: DECLARE LONG CONSTANT NOTES$_NOTE_DELETED = 66814089< DECLARE LONG CONSTANT NOTES$_MEMBER_DELETED = 66814097; DECLARE LONG CONSTANT NOTES$_NOTE_MODIFIED = 66814105N< DECLARE LONG CONSTANT NOTES$_ENTRY_MODIFIED = 66814113> DECLARE LONG CONSTANT NOTES$_KEYWORD_MODIFIED = 66814121= DECLARE LONG CONSTANT NOTES$_MEMBER_MODIFIED = 66814129 7 DECLARE LONG CONSTANT NOTES$_CLASS_SET = 66814137_9 DECLARnΖ$ NOTES026.A6b "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~luE"-E LONG CONSTANT NOTES$_INSERT_MODE = 66814145F= DECLARE LONG CONSTANT NOTES$_OVERSTRIKE_MODE = 66814153T< DECLARE LONG CONSTANT NOTES$_ENTRY_DELCLASS = 66814161< DECLARE LONG CONSTANT NOTES$_SPACE_COMPRESS = 66814169: DECLARE LONG CONSTANT NOTES$_ENTRY_ADDED2 = 66814177: DECLARE LONG CONSTANT NOTES$_OBJECT_ADDED = 66814185< DECLARE LONG CONSTANT NOTES$_OBJECT_DELETED = 66814193= DECLARE LONG CONSTANT NOTES$_OBJECT_MODIFIED = 66814201=7 DECLARE LONG CONSTANT NOTES$_MORE_INFO = 66818051 < DECLARE LONG CONSTANT NOTES$_SRV_NEWPROTUPD = 66818059; DECLARE LONG CONSTANT NOTES$_ENTRY_ABORTED = 66818067 9 DECLARE LONG CONSTANT NOTES$_NOTES_WRFIL = 66818075E9 DECLARE LONG CONSTANT NOTES$_NOTES_WRBUF = 66818083_6 DECLARE LONG CONSTANT NOTES$_DIRTOBUF = 668180917 DECLARE LONG CONSTANT NOTES$_DIRTOFILE = 66818099E4 DECLARE LONG CONSTANT NOTES$_HIDDEN = 668181077 DECLARE LONG CONSTANT NOTES$_OPEN_CONF = 66818115E9 DECLARE LONG CONSTANT NOTES$_UPDATE_CONF = 66818123E7 DECLARE LONG CONSTANT NOTES$_MARKSUPER = 66818131 8 DECLARE LONG CONSTANT NOTES$_OPEN_CONF2 = 66818139; DECLARE LONG CONSTANT NOTES$_BEING_WRITTEN = 66818147 7 DECLARE LONG CONSTANT NOTES$_USING_EDT = 66818155N5 DECLARE LONG CONSTANT NOTES$_HELPBUF = 66818163G5 DECLARE LONG CONSTANT NOTES$_HELPHDR = 66818171G5 DECLARE LONG CONSTANT NOTES$_HELPNXT = 66818179 6 DECLARE LONG CONSTANT NOTES$_HELPASK1 = 668181876 DECLARE LONG CONSTANT NOTES$_HELPASK2 = 668181955 DECLARE LONG CONSTANT NOTES$_HELPTOP = 66818203L5 DECLARE LONG CONSTANT NOTES$_HELPBOT = 66818211L5 DECLARE LONG CONSTANT NOTES$_ENTRYID = 66818219 4 DECLARE LONG CONSTANT NOTES$_NOTEID = 668182274 DECLARE LONG CONSTANT NOTES$_TOPICS = 668182354 DECLARE LONG CONSTANT NOTES$_UNSEEN = 668182438 DECLARE LONG CONSTANT NOTES$_TOTALNOTES = 668182516 DECLARE LONG CONSTANT NOTES$_DATELINE = 668182596 DECLARE LONG CONSTANT NOTES$_ONECLASS = 668182679 DECLARE LONG CONSTANT NOTES$_MANYCLASSES = 66818275=5 DECLARE LONG CONSTANT NOTES$_TITLEID = 66818283D6 DECLARE LONG CONSTANT NOTES$_NOTICEID = 668182918 DECLARE LONG CONSTANT NOTES$_CONFCREUPD = 668182996 DECLARE LONG CONSTANT NOTES$_MAILSUBJ = 668183074 DECLARE LONG CONSTANT NOTES$_FILEID = 668183159 DECLARE LONG CONSTANT NOTES$_MODERATORID = 66818323= DECLARE LONG CONSTANT NOTES$_OLD_ALREXISTS_A = 66818331L; DECLARE LONG CONSTANT NOTES$_OLD_INVACCNAM = 66818339R8 DECLARE LONG CONSTANT NOTES$_LOCATIONID = 668183479 DECLARE LONG CONSTANT NOTES$_CONF_BANNER = 66818355R9 DECLARE LONG CONSTANT NOTES$_READ_BANNER = 66818363L: DECLARE LONG CONSTANT NOTES$_TOPIC_BANNER = 66818371: DECLARE LONG CONSTANT NOTES$_REPLY_BANNER = 668183799 DECLARE LONG CONSTANT NOTES$_INFO_BANNER = 66818387 9 DECLARE LONG CONSTANT NOTES$_CREATE_CONF = 66818395: DECLARE LONG CONSTANT NOTES$_UPDATE_ENTRY = 668184039 DECLARE LONG CONSTANT NOTES$_GETTING_DIR = 66818411T: DECLARE LONG CONSTANT NOTES$_GETTING_NOTE = 66818419: DECLARE LONG CONSTANT NOTES$_EXTRACT_NOTE = 668184278 DECLARE LONG CONSTANT NOTES$_PRINT_NOTE = 668184358 DECLARE LONG CONSTANT NOTES$_SEARCH_FOR = 668184439 DECLARE LONG CONSTANT NOTES$_SEARCH_NEXT = 66818451T; DECLARE LONG CONSTANT NOTES$_DELETING_NOTE = 66818459G6 DECLARE LONG CONSTANT NOTES$_AUTHORID = 668184675 DECLARE LONG CONSTANT NOTES$_TOPICID = 66818475E7 DECLARE LONG CONSTANT NOTES$_KEYWORDID = 66818483 : DECLARE LONG CONSTANT NOTES$_CONFERENCEID = 668184916 DECLARE LONG CONSTANT NOTES$_ATTRIBID = 668184999 DECLARE LONG CONSTANT NOTES$_WRITELOCKID = 66818507E6 DECLARE LONG CONSTANT NOTES$_HIDDENID = 66818515: DECLARE LONG CONSTANT NOTES$_GRAPHIC_VIEW = 66818523: DECLARE LONG CONSTANT NOTES$_UNKNOWN_VIEW = 668185319 DECLARE LONG CONSTANT NOTES$_DDIF_FORMAT = 66818539E7 DECLARE LONG CONSTANT NOTES$_PS_FORMAT = 66818547R7 DECLARE LONG CONSTANT NOTES$_USEFILEID = 66818555$7 DECLARE LONG CONSTANT NOTES$_COPYRIGHT = 66818563E< DECLARE LONG CONSTANT NOTES$_SRV_OLDPROTUPD = 66822144= DECLARE LONG CONSTANT NOTES$_NO_MORE_CLASSES = 66822152S= DECLARE LONG CONSTANT NOTES$_NO_MORE_ENTRIES = 66822160 > DECLARE LONG CONSTANT NOTES$_NO_MORE_KEYWORDS = 66822168; DECLARE LONG CONSTANT NOTES$_NO_MORE_NOTES = 66822176 : DECLARE LONG CONSTANT NOTES$_NO_MORE_TEXT = 66822184; DECLARE LONG CONSTANT NOTES$_NO_MORE_USERS = 66822192L8 DECLARE LONG CONSTANT NOTES$_NONOTEBOOK = 668222006 DECLARE LONG CONSTANT NOTES$_NOERRTXT = 66822208: DECLARE LONG CONSTANT NOTES$_NEEDNBMODIFY = 668222165 DECLARE LONG CONSTANT NOTES$_MSGSEND = 66822224O8 DECLARE LONG CONSTANT NOTES$_ENTERINTRO = 668222327 DECLARE LONG CONSTANT NOTES$_CTRLZMAIL = 66822240P8 DECLARE LONG CONSTANT NOTES$_NOTREADING = 66822248= DECLARE LONG CONSTANT NOTES$_NO_MORE_REPLIES = 6682225648 DECLARE LONG CONSTANT NOTES$_ANSWER_YES = 668222646 DECLARE LONG CONSTANT NOTES$_EOB_TEXT = 668222727 DECLARE LONG CONSTANT NOTES$_PRESS_PF2 = 66822280&8 DECLARE LONG CONSTANT NOTES$_NOTES_HDR1 = 66822288; DECLARE LONG CONSTANT NOTES$_PRESS_CTRLZ_N = 66822296L< DECLARE LONG CONSTANT NOTES$_SET_CONFERENCE = 668223049 DECLARE LONG CONSTANT NOTES$_ENTER_TITLE = 66822312Y: DECLARE LONG CONSTANT NOTES$_PRESS_RETURN = 66822320; DECLARE LONG CONSTANT NOTES$_PRESS_ANY_KEY = 66822328 6 DECLARE LONG CONSTANT NOTES$_DIR_HEAD = 668223369 DECLARE LONG CONSTANT NOTES$_ENDREQ_LIST = 66822344Y; DECLARE LONG CONSTANT NOTES$_NOTE_END_TEXT = 66822352$7 DECLARE LONG CONSTANT NOTES$_TEXT_NOTE = 66822360 8 DECLARE LONG CONSTANT NOTES$_TEXT_REPLY = 668223683 DECLARE LONG CONSTANT NOTES$_NO_NB = 66822376 5 DECLARE LONG CONSTANT NOTES$_YOUR_SP = 66822384 ; DECLARE LONG CONSTANT NOTES$_NOTE_COMPLETE = 66822392 9 DECLARE LONG CONSTANT NOTES$_NOTE_NOTEXT = 66822400&7 DECLARE LONG CONSTANT NOTES$_NOREPLIES = 66822408O7 DECLARE LONG CONSTANT NOTES$_ONE_REPLY = 66822416N: DECLARE LONG CONSTANT NOTES$_MANY_REPLIES = 668224244 DECLARE LONG CONSTANT NOTES$_N_OF_N = 66822432: DECLARE LONG CONSTANT NOTES$_ENTER_CTITLE = 668224409 DECLARE LONG CONSTANT NOTES$_DELETE_NOTE = 66822448 8 DECLARE LONG CONSTANT NOTES$_NOTENOTDEL = 66822456: DECLARE LONG CONSTANT NOTES$_FINDING_HELP = 668224647 DECLARE LONG CONSTANT NOTES$_NOKEYHELP = 66822472 7 DECLARE LONG CONSTANT NOTES$_NOTESQADD = 66822480Y8 DECLARE LONG CONSTANT NOTES$_REALLYQUIT = 668224889 DECLARE LONG CONSTANT NOTES$_MAILNOTSENT = 66822496N6 DECLARE LONG CONSTANT NOTES$_NUMNOTES = 668225044 DECLARE LONG CONSTANT NOTES$_SENDTO = 668225125 DECLARE LONG CONSTANT NOTES$_SUBJECT = 66822520 : DECLARE LONG CONSTANT NOTES$_PROFILE_USER = 668225287 DECLARE LONG CONSTANT NOTES$_MORE_TEXT = 66822536 9 DECLARE LONG CONSTANT NOTES$_SHOW_MARK_1 = 66822544 9 DECLARE LONG CONSTANT NOTES$_SHOW_MARK_2 = 668225529 DECLARE LONG CONSTANT NOTES$_SHOW_MARK_3 = 66822560 8 DECLARE LONG CONSTANT NOTES$_SHOW_ENTRY = 66822568< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_EDIT = 66822576> DECLARE LONG CONSTANT NOTES$_SHOW_PROF_DCLASS = 66822584= DECLARE LONG CONSTANT NOTES$_SHOW_PROF_PRINT = 66822592 < DECLARE LONG CONSTANT NOTES$_SHOW_PROF_NAME = 66822600< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_AUTO = 66822608< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_ADIR = 66822616< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_AUNS = 66822624< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_NONE = 668226329 DECLARE LONG CONSTANT NOTES$_ENDREQ_SHOW = 66822640; DECLARE LONG CONSTANT NOTES$_CTRLZ_COM_RET = 66822648 ; DECLARE LONG CONSTANT NOTES$_SHOW_ENT_CONF = 66822656 ; DECLARE LONG CONSTANT NOTES$_SHOW_ENT_FILE = 66822664 8 DECLARE LONG CONSTANT NOTES$_SHOW_CLASS = 66822672; DECLARE LONG CONSTANT NOTES$_SHOW_CONF_MOD = 66822680 = DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESA1 = 66822688&= DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESA2 = 66822696E= DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESK1 = 66822704= DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESK2 = 66822712R9 DECLARE LONG CONSTANT NOTES$_SHOW_KEYW_1 = 66822720$9 DECLARE LONG CONSTANT NOTES$_SHOW_KEYW_2 = 66822728B6 op[$ NOTES026.A6b "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~l">DECLARE LONG CONSTANT NOTES$_SHOW_MOD = 66822736; DECLARE LONG CONSTANT NOTES$_SHOW_MOD_NODE = 66822744 ; DECLARE LONG CONSTANT NOTES$_SHOW_MOD_USER = 66822752 < DECLARE LONG CONSTANT NOTES$_SHOW_USER_MADR = 66822760< DECLARE LONG CONSTANT NOTES$_SHOW_USER_PRIV = 66822768< DECLARE LONG CONSTANT NOTES$_SHOW_USER_JOIN = 66822776; DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_HID = 66822784 ; DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_VIS = 66822792 < DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_REP1 = 66822800< DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_REP2 = 66822808< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_PERM = 66822816< DECLARE LONG CONSTANT NOTES$_SHOW_USER_FULL = 66822824< DECLARE LONG CONSTANT NOTES$_SHOW_MODU_FULL = 668228321 DECLARE LONG CONSTANT NOTES$_NMF = 66822840 1 DECLARE LONG CONSTANT NOTES$_NJU = 66822848N= DECLARE LONG CONSTANT NOTES$_NO_MORE_MARKERS = 66822856 6 DECLARE LONG CONSTANT NOTES$_SEARCHF1 = 668228646 DECLARE LONG CONSTANT NOTES$_SEARCHF2 = 668228726 DECLARE LONG CONSTANT NOTES$_DIR_CONF = 66822880< DECLARE LONG CONSTANT NOTES$_DIR_CONF_TITLE = 668228886 DECLARE LONG CONSTANT NOTES$_N_TOPICS = 66822896: DECLARE LONG CONSTANT NOTES$_DIR_NB_CLASS = 66822904: DECLARE LONG CONSTANT NOTES$_CTRLZ_CANCEL = 668229129 DECLARE LONG CONSTANT NOTES$_REPBUFINFO1 = 66822920 9 DECLARE LONG CONSTANT NOTES$_REPBUFINFO2 = 66822928L8 DECLARE LONG CONSTANT NOTES$_NMORELINES = 668229369 DECLARE LONG CONSTANT NOTES$_READINGCONF = 66822944Y9 DECLARE LONG CONSTANT NOTES$_WILLNOTSEND = 66822952 5 DECLARE LONG CONSTANT NOTES$_WORKING = 66822960)8 DECLARE LONG CONSTANT NOTES$_FILECREUPD = 668229687 DECLARE LONG CONSTANT NOTES$_ENTERNOTE = 66822976Y3 DECLARE LONG CONSTANT NOTES$_ANDTO = 66822984C8 DECLARE LONG CONSTANT NOTES$_SENDANYWAY = 668229926 DECLARE LONG CONSTANT NOTES$_SPAWNKEY = 668230005 DECLARE LONG CONSTANT NOTES$_CALLKEY = 66823008 5 DECLARE LONG CONSTANT NOTES$_EDICALL = 66823016Y6 DECLARE LONG CONSTANT NOTES$_EDISPAWN = 668230249 DECLARE LONG CONSTANT NOTES$_SPELLSELECT = 66823032A9 DECLARE LONG CONSTANT NOTES$_SPELLBUFFER = 66823040N8 DECLARE LONG CONSTANT NOTES$_SPELLSTART = 668230487 DECLARE LONG CONSTANT NOTES$_SPELLDONE = 66823056: DECLARE LONG CONSTANT NOTES$_SENDING_MAIL = 668230646 DECLARE LONG CONSTANT NOTES$_SENDBOTH = 668230726 DECLARE LONG CONSTANT NOTES$_NONESENT = 668230809 DECLARE LONG CONSTANT NOTES$_SENT_TO_ALL = 66823088 = DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESW1 = 66823096 = DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESW2 = 66823104 8 DECLARE LONG CONSTANT NOTES$_TEXT_TOPIC = 668231128 DECLARE LONG CONSTANT NOTES$_MEMBERS_OF = 668231209 DECLARE LONG CONSTANT NOTES$_DEF_SUBJECT = 66823128 : DECLARE LONG CONSTANT NOTES$_MAIL_SUBJECT = 668231369 DECLARE LONG CONSTANT NOTES$_TEXT_APPEND = 66823144 < DECLARE LONG CONSTANT NOTES$_NEVER_ACCESSED = 668231525 DECLARE LONG CONSTANT NOTES$_EXPIRED = 66823160F7 DECLARE LONG CONSTANT NOTES$_ANSWER_NO = 668231687 DECLARE LONG CONSTANT NOTES$_WRONG_ANS = 66823176 7 DECLARE LONG CONSTANT NOTES$_CREATEBUF = 66823184 6 DECLARE LONG CONSTANT NOTES$_WRITEBUF = 66823192; DECLARE LONG CONSTANT NOTES$_SHOW_PROF_DEF = 66823200G7 DECLARE LONG CONSTANT NOTES$_ASK_YESNO = 66823208 6 DECLARE LONG CONSTANT NOTES$_MODPRIVS = 66823216: DECLARE LONG CONSTANT NOTES$_SHOW_ENT_OBJ = 668232247 DECLARE LONG CONSTANT NOTES$_CANCELLED = 66823232< DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESR = 668232400 DECLARE LONG CONSTANT NOTES$_CC = 66823248; DECLARE LONG CONSTANT NOTES$_MODERATORS_OF = 66823256 9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_A = 66823264 7 DECLARE LONG CONSTANT NOTES$_INVACCNAM = 66823272 7 DECLARE LONG CONSTANT NOTES$_ILLCTXADR = 66830338 6 DECLARE LONG CONSTANT NOTES$_WRONGCTX = 668303467 DECLARE LONG CONSTANT NOTES$_INVITMCOD = 66830355 7 DECLARE LONG CONSTANT NOTES$_INVITMLEN = 66830362E7 DECLARE LONG CONSTANT NOTES$_MISREQITM = 66830370 7 DECLARE LONG CONSTANT NOTES$_NOCURNOTE = 66830378 : DECLARE LONG CONSTANT NOTES$_CANTCONTINUE = 668303867 DECLARE LONG CONSTANT NOTES$_FAILGETVM = 66830394E8 DECLARE LONG CONSTANT NOTES$_STRCOPYERR = 668304027 DECLARE LONG CONSTANT NOTES$_ILLNOTEID = 66830410 8 DECLARE LONG CONSTANT NOTES$_NOSUCHNOTE = 668304188 DECLARE LONG CONSTANT NOTES$_SRV_NOINIT = 668304268 DECLARE LONG CONSTANT NOTES$_SRV_INVSEQ = 66830434; DECLARE LONG CONSTANT NOTES$_SRV_NOCONTEXT = 66830442 < DECLARE LONG CONSTANT NOTES$_SRV_NOUSERNAME = 668304509 DECLARE LONG CONSTANT NOTES$_SRV_INVITEM = 66830458 7 DECLARE LONG CONSTANT NOTES$_CREPRIJOB = 66830466 5 DECLARE LONG CONSTANT NOTES$_PREMEOF = 66830474G9 DECLARE LONG CONSTANT NOTES$_NOPRIVDEL_N = 66830482&; DECLARE LONG CONSTANT NOTES$_NOPRIVWRITE_N = 66830490 ; DECLARE LONG CONSTANT NOTES$_SRV_UNRECPROT = 66830498E8 DECLARE LONG CONSTANT NOTES$_NOFILEOPEN = 66830506; DECLARE LONG CONSTANT NOTES$_ALREXISTS_OLD = 66830514 9 DECLARE LONG CONSTANT NOTES$_NOSUCHENTRY = 66830522U7 DECLARE LONG CONSTANT NOTES$_MUST_OPEN = 66830530 = DECLARE LONG CONSTANT NOTES$_MUST_READ_REPLY = 66830538? DECLARE LONG CONSTANT NOTES$_MUST_READ_FORWARD = 66830546L? DECLARE LONG CONSTANT NOTES$_NOT_ENTERING_NOTE = 66830554 > DECLARE LONG CONSTANT NOTES$_NONOTE_SPECIFIED = 66830562; DECLARE LONG CONSTANT NOTES$_ERROR_MAILING = 66830570L= DECLARE LONG CONSTANT NOTES$_NOPREVIOUS_NOTE = 66830578 ? DECLARE LONG CONSTANT NOTES$_ALREADY_IN_EDITOR = 66830586> DECLARE LONG CONSTANT NOTES$_ALREADY_IN_NOTES = 66830594C DECLARE LONG CONSTANT NOTES$_MUST_COMPLETE_MESSAGE = 66830602 < DECLARE LONG CONSTANT NOTES$_UNREC_CALLUSER = 66830610; DECLARE LONG CONSTANT NOTES$_NO_SUCH_CLASS = 66830618*; DECLARE LONG CONSTANT NOTES$_NO_SUCH_ENTRY = 66830626T= DECLARE LONG CONSTANT NOTES$_NO_SUCH_KEYWORD = 66830634N: DECLARE LONG CONSTANT NOTES$_NO_SUCH_NOTE = 66830642: DECLARE LONG CONSTANT NOTES$_NO_SUCH_USER = 66830650; DECLARE LONG CONSTANT NOTES$_NOMORE_RECALL = 66830658=: DECLARE LONG CONSTANT NOTES$_EDIT_OR_FILE = 668306664 DECLARE LONG CONSTANT NOTES$_NOMAIL = 668306748 DECLARE LONG CONSTANT NOTES$_ERRORWRITE = 668306828 DECLARE LONG CONSTANT NOTES$_NOMAILPROC = 668306901 DECLARE LONG CONSTANT NOTES$_IFF = 66830698K4 DECLARE LONG CONSTANT NOTES$_NOPRIV = 66830706: DECLARE LONG CONSTANT NOTES$_CTRLC_CANCEL = 668307147 DECLARE LONG CONSTANT NOTES$_ERRCREKEY = 66830722T8 DECLARE LONG CONSTANT NOTES$_ERRADDMARK = 668307307 DECLARE LONG CONSTANT NOTES$_ERRADDMEM = 66830738 7 DECLARE LONG CONSTANT NOTES$_ERRADDENT = 66830746E7 DECLARE LONG CONSTANT NOTES$_ERRDELENT = 66830754 8 DECLARE LONG CONSTANT NOTES$_ERRDELMARK = 66830762: DECLARE LONG CONSTANT NOTES$_ERRDELMEMBER = 668307708 DECLARE LONG CONSTANT NOTES$_ERRMODNOTE = 668307789 DECLARE LONG CONSTANT NOTES$_ERRMODENTRY = 668307868; DECLARE LONG CONSTANT NOTES$_ERRMODKEYWORD = 6683079468 DECLARE LONG CONSTANT NOTES$_ERRACCLIST = 668308025 DECLARE LONG CONSTANT NOTES$_NOWRITE = 66830810_: DECLARE LONG CONSTANT NOTES$_NOSUCHMARKER = 668308189 DECLARE LONG CONSTANT NOTES$_NOPRIVMOD_N = 66830826R9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_C = 66830834S9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_E = 66830842E9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_K = 66830850$9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_U = 66830858E9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_M = 66830866E< DECLARE LONG CONSTANT NOTES$_NO_SUCH_MARKER = 668308747 DECLARE LONG CONSTANT NOTES$_NOMEMBERS = 66830882O7 DECLARE LONG CONSTANT NOTES$_NOTMEMBER = 66830890T; DECLARE LONG CONSTANT NOTES$_BASEWRITELOCK = 66830898 : DECLARE LONG CONSTANT NOTES$_NOWRITE_CONF = 668309068 DECLARE LONG CONSTANT NOTES$_SPELLERROR = 668309147 DECLARE LONG CONSTANT NOTES$_PNINVCHAR = 66830922C7 DECLARE LONG CONSTANT NOTES$_SENDNOAUT = 66830930G: DECLARE LONG CONSTANT NOTES$_INVCLASSNAME = 66830938; DECLARE LONG CONSTANT NOTES$_CLASSNOTFOUND = 66830946N6 DECLARE LONG CONSTANT NOTES$_FORWLOOP = 66830954: DECLARE LONG CONSTANT NOTES$_BAD_DIRpi+$ NOTES026.A6b "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~lO_LINE = 668309627 DECLARE LONG CONSTANT NOTES$_NO_SELECT = 66830970 9 DECLARE LONG CONSTANT NOTES$_NOTE_NOCONF = 66830978O: DECLARE LONG CONSTANT NOTES$_UNREC_EDITOR = 668309867 DECLARE LONG CONSTANT NOTES$_NO_CLASSP = 66830994 7 DECLARE LONG CONSTANT NOTES$_NMTHISDIR = 66831002 9 DECLARE LONG CONSTANT NOTES$_NO_NEW_NOTE = 66831010E; DECLARE LONG CONSTANT NOTES$_CAPTIVE_SPAWN = 66831018L< DECLARE LONG CONSTANT NOTES$_NOTHING_TO_SET = 668310268 DECLARE LONG CONSTANT NOTES$_NOHELPTERM = 668310347 DECLARE LONG CONSTANT NOTES$_INVENTNAM = 6683104287 DECLARE LONG CONSTANT NOTES$_INVCLANAM = 668310508: DECLARE LONG CONSTANT NOTES$_INVENTRYNAME = 66831058? DECLARE LONG CONSTANT NOTES$_NO_ENTRY_IN_CLASS = 66831066L@ DECLARE LONG CONSTANT NOTES$_ALREXISTS_IN_CLASS = 668310747 DECLARE LONG CONSTANT NOTES$_NOMARKERS = 66831082N8 DECLARE LONG CONSTANT NOTES$_NOKEYWORDS = 668310907 DECLARE LONG CONSTANT NOTES$_NOLICENSE = 66831098 4 DECLARE LONG CONSTANT NOTES$_NOFILE = 668311063 DECLARE LONG CONSTANT NOTES$_NOEDT = 66831114C5 DECLARE LONG CONSTANT NOTES$_NOENTRY = 66831122C3 DECLARE LONG CONSTANT NOTES$_NOEVE = 66831130G6 DECLARE LONG CONSTANT NOTES$_TPUERROR = 66831138? DECLARE LONG CONSTANT NOTES$_ENTALR_IN_CLASSES = 66831146N< DECLARE LONG CONSTANT NOTES$_NO_RANGE_ALLOW = 668311546 DECLARE LONG CONSTANT NOTES$_NOTINCMD = 66831162= DECLARE LONG CONSTANT NOTES$_CONF_REPLY_ONLY = 66831170O7 DECLARE LONG CONSTANT NOTES$_USRNOTADD = 66831178N7 DECLARE LONG CONSTANT NOTES$_INVKEYNAM = 66831186N< DECLARE LONG CONSTANT NOTES$_INVKEYWORDNAME = 668311947 DECLARE LONG CONSTANT NOTES$_INVMRKNAM = 66831202N; DECLARE LONG CONSTANT NOTES$_INVMARKERNAME = 66831210 7 DECLARE LONG CONSTANT NOTES$_INVUSRNAM = 66831218N9 DECLARE LONG CONSTANT NOTES$_INVUSERNAME = 66831226N9 DECLARE LONG CONSTANT NOTES$_INVNOTESPEC = 66831234N= DECLARE LONG CONSTANT NOTES$_RANGE_ONE_TOPIC = 66831242O; DECLARE LONG CONSTANT NOTES$_RANGE_TOO_BIG = 66831250E6 DECLARE LONG CONSTANT NOTES$_NO_TOPIC = 668312589 DECLARE LONG CONSTANT NOTES$_ALREXISTS_N = 66831266 8 DECLARE LONG CONSTANT NOTES$_NONOTESMOD = 66831274= DECLARE LONG CONSTANT NOTES$_MEMBERNAME_NODE = 66831282$6 DECLARE LONG CONSTANT NOTES$_CONFQUAL = 66831290: DECLARE LONG CONSTANT NOTES$_OPRNOTSUPCNF = 668312985 DECLARE LONG CONSTANT NOTES$_BADTIME = 66831306 8 DECLARE LONG CONSTANT NOTES$_INVOBJNAME = 66831314; DECLARE LONG CONSTANT NOTES$_INVOBJECTNAME = 66831322$6 DECLARE LONG CONSTANT NOTES$_NOATTRIB = 668313306 DECLARE LONG CONSTANT NOTES$_NOOBJECT = 668313387 DECLARE LONG CONSTANT NOTES$_NOSUCHOBJ = 66831346 6 DECLARE LONG CONSTANT NOTES$_LWKERROR = 66831354; DECLARE LONG CONSTANT NOTES$_NOLINKLICENSE = 66831362O7 DECLARE LONG CONSTANT NOTES$_NOTNETWRK = 66842628 8 DECLARE LONG CONSTANT NOTES$_WRONG_ACCT = 66842636: DECLARE LONG CONSTANT NOTES$_SRV_INIT_ERR = 668426447 DECLARE LONG CONSTANT NOTES$_WRONG_LMF = 66842652   !*** MODULE SERVERDEF ***E  2 DECLARE LONG CONSTANT NOTES$K_INITIALIZE = 1, DECLARE LONG CONSTANT NOTES$K_MORE = 26 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_BEGIN = 34 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_END = 49 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_GET_INFO = 5$7 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_MODIFY = 6O; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LIST_BEGIN = 7E5 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LIST = 8N5 DECLARE LONG CONSTANT NOTES$K_KEYWORD_BEGIN = 9T4 DECLARE LONG CONSTANT NOTES$K_KEYWORD_END = 104 DECLARE LONG CONSTANT NOTES$K_KEYWORD_ADD = 117 DECLARE LONG CONSTANT NOTES$K_KEYWORD_DELETE = 12G4 DECLARE LONG CONSTANT NOTES$K_KEYWORD_GET = 139 DECLARE LONG CONSTANT NOTES$K_KEYWORD_GET_NOTE = 14O7 DECLARE LONG CONSTANT NOTES$K_KEYWORD_MODIFY = 15O3 DECLARE LONG CONSTANT NOTES$K_NOTE_BEGIN = 16 1 DECLARE LONG CONSTANT NOTES$K_NOTE_END = 171 DECLARE LONG CONSTANT NOTES$K_NOTE_ADD = 1826 DECLARE LONG CONSTANT NOTES$K_NOTE_ADD_TEXT = 194 DECLARE LONG CONSTANT NOTES$K_NOTE_DELETE = 201 DECLARE LONG CONSTANT NOTES$K_NOTE_GET = 21C9 DECLARE LONG CONSTANT NOTES$K_NOTE_GET_KEYWORD = 22C6 DECLARE LONG CONSTANT NOTES$K_NOTE_GET_TEXT = 234 DECLARE LONG CONSTANT NOTES$K_NOTE_MODIFY = 243 DECLARE LONG CONSTANT NOTES$K_USER_BEGIN = 25N1 DECLARE LONG CONSTANT NOTES$K_USER_END = 26R1 DECLARE LONG CONSTANT NOTES$K_USER_ADD = 27E4 DECLARE LONG CONSTANT NOTES$K_USER_DELETE = 281 DECLARE LONG CONSTANT NOTES$K_USER_GET = 2984 DECLARE LONG CONSTANT NOTES$K_USER_MODIFY = 302 DECLARE LONG CONSTANT NOTES$K_CLASS_ADD = 314 DECLARE LONG CONSTANT NOTES$K_CLASS_BEGIN = 325 DECLARE LONG CONSTANT NOTES$K_CLASS_DELETE = 33U2 DECLARE LONG CONSTANT NOTES$K_CLASS_END = 342 DECLARE LONG CONSTANT NOTES$K_CLASS_GET = 358 DECLARE LONG CONSTANT NOTES$K_CLASS_GET_ENTRY = 365 DECLARE LONG CONSTANT NOTES$K_CLASS_MODIFY = 37C2 DECLARE LONG CONSTANT NOTES$K_ENTRY_ADD = 384 DECLARE LONG CONSTANT NOTES$K_ENTRY_BEGIN = 395 DECLARE LONG CONSTANT NOTES$K_ENTRY_DELETE = 40L2 DECLARE LONG CONSTANT NOTES$K_ENTRY_END = 412 DECLARE LONG CONSTANT NOTES$K_ENTRY_GET = 428 DECLARE LONG CONSTANT NOTES$K_ENTRY_GET_CLASS = 43: DECLARE LONG CONSTANT NOTES$K_ENTRY_GET_KEYWORD = 445 DECLARE LONG CONSTANT NOTES$K_ENTRY_MODIFY = 4586 DECLARE LONG CONSTANT NOTES$K_PROFILE_BEGIN = 464 DECLARE LONG CONSTANT NOTES$K_PROFILE_END = 474 DECLARE LONG CONSTANT NOTES$K_PROFILE_GET = 487 DECLARE LONG CONSTANT NOTES$K_PROFILE_MODIFY = 49M0 DECLARE LONG CONSTANT NOTES$K_STATUS = 1299 DECLARE LONG CONSTANT NOTES$K_REQUEST_CONTEXT = 130B3 DECLARE LONG CONSTANT NOTES$K_ERROR_TLV = 131P5 DECLARE LONG CONSTANT NOTES$K_ERROR_NARGS = 132E3 DECLARE LONG CONSTANT NOTES$K_ERROR_ARG = 133 4 DECLARE LONG CONSTANT NOTES$K_ERROR_TEXT = 1348 DECLARE LONG CONSTANT NOTES$K_CANCEL_REQUEST = 135; DECLARE LONG CONSTANT NOTES$K_REQUEST_CANCELLED = 136N7 DECLARE LONG CONSTANT NOTES$K_INIT_VERSION = 8193N8 DECLARE LONG CONSTANT NOTES$K_INIT_NODENAME = 81948 DECLARE LONG CONSTANT NOTES$K_INIT_USERNAME = 8195< DECLARE LONG CONSTANT NOTES$K_INIT_CAPABILITIES = 8196; DECLARE LONG CONSTANT NOTES$K_INIT_MAXITEMCODE = 8197L> DECLARE LONG CONSTANT NOTES$M_INIT_VMSMSGS = x'00000001'4 DECLARE LONG CONSTANT NOTES$S_CAPABILITIES = 4 record CAPABILITIESE group NOTES$R_FILL_0_ variantT caseN+ LONG NOTES$L_CAPABILITIESO case8' group NOTES$R_FILL_1_$~ BYTE INIT_VMSMSGS_bits ! COMMENT ADDED BY SDL - INIT_VMSMSGS_bits contains bits INIT_VMSMSGS through & ! FILL_2_+ end group NOTES$R_FILL_1_$ end variant " end group NOTES$R_FILL_0_ end record CAPABILITIESE 8 DECLARE LONG CONSTANT NOTES$K_PROTOCOL_VERSION = 27 DECLARE LONG CONSTANT NOTES$K_PROTOCOL_UPDATE = 6 0 EXTERNAL LONG FUNCTION NOTES$SERVER_BEGIN"*[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1+,7b.H/J 4NH?- 0123KPWO@56 ģ7F匍ģ89GJHJ! N! ****************************************************************************N! * *N! * Copyright (c) 2004 *N! * by DIGITAL Equipment Corporation, Maynard, Mass. *N! * All rights reserved. *N! * *N! * This software is furnq$ NOTES026.A7b "[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1NHf"ished under a license and may be used and copied *N! * only in accordance with the terms of such license and with the *N! * inclusion of the above copyright notice. This software or any other *N! * copies thereof may not be provided or otherwise made available to any *N! * other person. No title to and ownership of the software is hereby *N! * transferred. *N! * *N! * The information in this software is subject to change without notice *N! * and should not be construed as a commitment by DIGITAL Equipment *N! * Corporation. *N! * *N! * DIGITAL assumes no responsibility for the use or reliability of its *N! * software on equipment which is not supplied by DIGITAL. *N! * *N! **************************************************************************** !*** MODULE NOTEITEMS ***:!DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN) PARAMETER NOTES$K_MIN_ITEM = '00000001'X) PARAMETER NOTES$K_NOSIGNAL = '00000001'X, PARAMETER NOTES$K_TEXT_STRING = '00000002'X) PARAMETER NOTES$K_TEXT_END = '00000003'X* PARAMETER NOTES$K_TEXT_TYPE = '00000004'X3 PARAMETER NOTES$K_NOTE_ALL_RESPONSES = '00000005'X, PARAMETER NOTES$K_NOTE_AUTHOR = '00000006'X/ PARAMETER NOTES$K_NOTE_BACK_NOTE = '00000007'X3 PARAMETER NOTES$K_NOTE_BACK_RESPONSE = '00000008'X1 PARAMETER NOTES$K_NOTE_BEFORE_TIME = '00000009'X. PARAMETER NOTES$K_NOTE_BLINK_ID = '0000000A'X/ PARAMETER NOTES$K_NOTE_BLINK_UID = '0000000B'X1 PARAMETER NOTES$K_NOTE_CREATE_TIME = '0000000C'X, PARAMETER NOTES$K_NOTE_HIDDEN = '0000000D'X( PARAMETER NOTES$K_NOTE_ID = '0000000E'X/ PARAMETER NOTES$K_NOTE_NEXT_NOTE = '0000000F'X3 PARAMETER NOTES$K_NOTE_NEXT_RESPONSE = '00000010'X0 PARAMETER NOTES$K_NOTE_NUMRECORDS = '00000011'X2 PARAMETER NOTES$K_NOTE_NUMRESPONSES = '00000012'X. PARAMETER NOTES$K_NOTE_PEN_NAME = '00000013'X3 PARAMETER NOTES$K_NOTE_SEARCH_STRING = '00000014'X2 PARAMETER NOTES$K_NOTE_SEARCH_TITLE = '00000015'X0 PARAMETER NOTES$K_NOTE_SINCE_TIME = '00000016'X+ PARAMETER NOTES$K_NOTE_TITLE = '00000017'X) PARAMETER NOTES$K_NOTE_UID = '00000018'X, PARAMETER NOTES$K_NOTE_UNSEEN = '00000019'X/ PARAMETER NOTES$K_NOTE_USER_AREA = '0000001A'X/ PARAMETER NOTES$K_NOTE_WRITELOCK = '0000001B'X1 PARAMETER NOTES$K_NOTEFILE_CONTEXT = '0000001C'X. PARAMETER NOTES$K_CLASS_CONTEXT = '0000001D'X. PARAMETER NOTES$K_ENTRY_CONTEXT = '0000001E'X0 PARAMETER NOTES$K_KEYWORD_CONTEXT = '0000001F'X- PARAMETER NOTES$K_NOTE_CONTEXT = '00000020'X0 PARAMETER NOTES$K_PROFILE_CONTEXT = '00000021'X/ PARAMETER NOTES$K_SERVER_CONTEXT = '00000022'X- PARAMETER NOTES$K_USER_CONTEXT = '00000023'X+ PARAMETER NOTES$K_CLASS_NAME = '00000024'X/ PARAMETER NOTES$K_CLASS_NEW_NAME = '00000025'X) PARAMETER NOTES$K_CONTINUE = '00000026'X+ PARAMETER NOTES$K_ENTRY_NAME = '00000027'X/ PARAMETER NOTES$K_ENTRY_NEW_NAME = '00000028'X0 PARAMETER NOTES$K_ENTRY_USER_AREA = '00000029'X% PARAMETER NOTES$K_HINT = '0000002A'X- PARAMETER NOTES$K_KEYWORD_NAME = '0000002B'X1 PARAMETER NOTES$K_KEYWORD_NEW_NAME = '0000002C'X0 PARAMETER NOTES$K_NOTEFILE_CREATE = '0000002D'X5 PARAMETER NOTES$K_NOTEFILE_CREATE_TIME = '0000002E'X6 PARAMETER NOTES$K_NOTEFILE_DEFAULT_NAME = '0000002F'X4 PARAMETER NOTES$K_NOTEFILE_ENTRYTOTAL = '00000030'X3 PARAMETER NOTES$K_NOTEFILE_FILE_NAME = '00000031'X0 PARAMETER NOTES$K_NOTEFILE_FORMAT = '00000032'X2 PARAMETER NOTES$K_NOTEFILE_HIGH_UID = '00000033'X1 PARAMETER NOTES$K_NOTEFILE_LASTREV = '00000034'X2 PARAMETER NOTES$K_NOTEFILE_MODERATE = '00000035'X3 PARAMETER NOTES$K_NOTEFILE_MODERATOR = '00000036'X0 PARAMETER NOTES$K_NOTEFILE_NOTICE = '00000037'X2 PARAMETER NOTES$K_NOTEFILE_NUMNOTES = '00000038'X6 PARAMETER NOTES$K_NOTEFILE_RELATED_NAME = '00000039'X4 PARAMETER NOTES$K_NOTEFILE_RESTRICTED = '0000003A'X5 PARAMETER NOTES$K_NOTEFILE_RESULT_SPEC = '0000003B'X/ PARAMETER NOTES$K_NOTEFILE_TITLE = '0000003C'X3 PARAMETER NOTES$K_NOTEFILE_TRANSPORT = '0000003D'X3 PARAMETER NOTES$K_NOTEFILE_USER_AREA = '0000003E'X1 PARAMETER NOTES$K_PROFILE_AUTO_DIR = '0000003F'X4 PARAMETER NOTES$K_PROFILE_AUTO_UNSEEN = '00000040'X3 PARAMETER NOTES$K_PROFILE_CLASS_NAME = '00000041'X/ PARAMETER NOTES$K_PROFILE_EDITOR = '00000042'X5 PARAMETER NOTES$K_PROFILE_EDITOR_SPAWN = '00000043'X1 PARAMETER NOTES$K_PROFILE_PEN_NAME = '00000044'X. PARAMETER NOTES$K_PROFILE_PRINT = '00000045'X2 PARAMETER NOTES$K_PROFILE_TEMPORARY = '00000046'X) PARAMETER NOTES$K_SEEN_MAP = '00000047'X4 PARAMETER NOTES$K_USER_CREATE_KEYWORD = '00000048'X/ PARAMETER NOTES$K_USER_MAIL_ADDR = '00000049'X. PARAMETER NOTES$K_USER_MODERATE = '0000004A'X* PARAMETER NOTES$K_USER_NAME = '0000004B'X. PARAMETER NOTES$K_USER_NEW_NAME = '0000004C'X2 PARAMETER NOTES$K_USER_NEW_NODENAME = '0000004D'X. PARAMETER NOTES$K_USER_NODENAME = '0000004E'X1 PARAMETER NOTES$K_NOTE_BLINK_TITLE = '0000004F'X/ PARAMETER NOTES$K_NOTE_MARK_SEEN = '00000050'X1 PARAMETER NOTES$K_NOTE_NEXT_UNSEEN = '00000051'X3 PARAMETER NOTES$K_NOTE_HINT_GET_TEXT = '00000052'X/ PARAMETER NOTES$K_NOTE_X_KEYWORD = '00000053'X/ PARAMETER NOTES$K_KEYWORD_X_NOTE = '00000054'X. PARAMETER NOTES$K_CLASS_X_ENTRY = '00000055'X. PARAMETER NOTES$K_ENTRY_X_CLASS = '00000056'X0 PARAMETER NOTES$K_ENTRY_X_KEYWORD = '00000057'X' PARAMETER NOTES$K_DELIF0 = '00000058'X) PARAMETER NOTES$K_UNIENTRY = '00000059'X1 PARAMETER NOTES$K_ENTRY_UNSEEN_EST = '0000005A'X2 PARAMETER NOTES$K_ENTRY_LAST_STATUS = '0000005B'X/ PARAMETER NOTES$K_NOTE_CAN_REPLY = '0000005C'X3 PARAMETER NOTES$K_NOTE_BEFORE_TIME_A = '0000005D'X3 PARAMETER NOTES$K_NOTE_CREATE_TIME_A = '0000005E'X2 PARAMETER NOTES$K_NOTE_SINCE_TIME_A = '0000005F'X7 PARAMETER NOTES$K_NOTEFILE_CREATE_TIME_A = '00000060'X3 PARAMETER NOTES$K_NOTEFILE_LASTREV_A = '00000061'X6 PARAMETER NOTES$K_NOTE_HINT_GET_KEYWORD = '00000062'X6 PARAMETER NOTES$K_KEYWORD_HINT_GET_NOTE = '00000063'X0 PARAMETER NOTES$K_SERVER_MAX_ITEM = '00000064'X5 PARAMETER NOTES$K_CLASS_HINT_GET_ENTRY = '00000065'X0 PARAMETER NOTES$K_CLASS_USER_AREA = '00000066'X* PARAMETER NOTES$K_CLASS_UID = '00000067'X5 PARAMETER NOTES$K_ENTRY_HINT_GET_CLASS = '00000068'X7 PARAMETER NOTES$K_ENTRY_HINT_GET_KEYWORD = '00000069'X2 PARAMETER NOTES$K_ENTRY_OBJECT_NAME = '0000006A'X2 PARAMETER NOTES$K_ENTRY_OBJECT_SPEC = '0000006B'X* PARAMETER NOTES$K_ENTRY_UID = '0000006C'X2 PARAMETER NOTES$K_KEYWORD_USER_AREA = '0000006D'X, PARAMETER NOTES$K_KEYWORD_UID = '0000006E'X* PARAMETER NOTES$K_NODE_NAME = '0000006F'X0 PARAMETER NOTES$K_NODE_X_USERNAME = '00000070'X, PARAMETER NOTES$K_NOTE_NEW_ID = '00000071'X* PARAMETER NOTES$K_NOTE_TYPE = '00000072'X4 PARAMETER NOTES$K_NOTEFILE_REPLY_ONLY = '00000073'X2 PARAMETER NOTES$K_PROFILE_USER_AREA = '00000074'X1 PARAMETER NOTES$K_USER_ACCESS_LIST = '00000075'X2 PARAMETER NOTES$K_USER_WRITE_BYPASS = '00000076'X/ PARAMETER NOTES$K_USER_USER_AREA = '00000077'X) PARAMETER NOTES$K_USER_UID = '00000078'X. PARAMETER NOTES$K_USER_NOACCESS = '00000079'X) PARAMETER NOTES$K_MAX_ITEM = '0000007A'X3 PARAMETER NOTES$K_NOTEFILE_WRITELOCK = '0000001B'X1 PARAMETER NOTES$K_USER_ACCESS_NODE = '0000006F'X, PARAMETER NOTES$K_USER_ACCESS = '00000075'X* PARAMETER NOTES$K_BASE_NOTE = '00000001'X+ PARAMETER NOTES$K_REPLY_NOTE = '00000002'X- PARAMETER NOTES$K_UNKNOWN_TYPE = '00000000'X* PARAMETER NOTES$K_DDIF_TYPE = '00000001'X+ PARAMETER NOTES$K_ASCII_TYPE = '00000002'X. PARAMETER NOTES$K_RESERVED_TYPE = '00000003'X. PARAMETER NOTES$K_WPS_PLUS_TYPE = '00000004'X* PARAMETER NOTES$K_TLV_INPUT = '00001001'X+ PARAMETER NOTES$K_TLV_OUTPUT = '00001002'X& PARAMETER NOTES$K_CHAIN = '0000FFFF'X% PARAMETER NOTES$K_NOOP = '0000FFFE'X INTEGER*4 NOTES$NOTES EXTERNAL NOTES$NOTES INTEGER*4 NOTES$NOTEFILE_BEGIN EXTERNAL NOTES$NOTEFILE_BEGIN" INTEGER*4 NOTES$NOTEFILE_GET_INFO! EXTERNAL NOTES$NOTEFILE_GET_INFO INTEGER*4 NOTES$NOTEFILE_MODIFY EXTERNAL NOTES$NOTEFILE_MODIFY$ INTEGER*4 NOTES$NOTEFILE_LIST_BEGIN# EXTERNAL NOTES$NOTEFILE_LIST_BEGIN INTEGER*4 NOTES$NOTEFILE_LIST EXTERNAL NOTES$NOTEFILE_LIST INTEGER*4 NOTES$NOTEFILE_END EXTERNAL NOTES$NOTEFILE_END INTEGER*4 NOTES$CLASS_BEGIN EXTERNAL NOTES$CLASS_BEGIN INTEGER*4 NOTES$CLASS_ADD EXTERNAL NOTES$CLASS_ADD INTEGER*4 NOTES$CLASS_DELETE EXTERNAL NOTES$CLASS_DELErt$ NOTES026.A7b "[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1NH0"TE INTEGER*4 NOTES$CLASS_GET EXTERNAL NOTES$CLASS_GET INTEGER*4 NOTES$CLASS_GET_ENTRY EXTERNAL NOTES$CLASS_GET_ENTRY INTEGER*4 NOTES$CLASS_MODIFY EXTERNAL NOTES$CLASS_MODIFY INTEGER*4 NOTES$CLASS_END EXTERNAL NOTES$CLASS_END INTEGER*4 NOTES$ENTRY_BEGIN EXTERNAL NOTES$ENTRY_BEGIN INTEGER*4 NOTES$ENTRY_ADD EXTERNAL NOTES$ENTRY_ADD INTEGER*4 NOTES$ENTRY_DELETE EXTERNAL NOTES$ENTRY_DELETE INTEGER*4 NOTES$ENTRY_GET EXTERNAL NOTES$ENTRY_GET INTEGER*4 NOTES$ENTRY_GET_CLASS EXTERNAL NOTES$ENTRY_GET_CLASS" INTEGER*4 NOTES$ENTRY_GET_KEYWORD! EXTERNAL NOTES$ENTRY_GET_KEYWORD INTEGER*4 NOTES$ENTRY_MODIFY EXTERNAL NOTES$ENTRY_MODIFY INTEGER*4 NOTES$ENTRY_UPDATE EXTERNAL NOTES$ENTRY_UPDATE INTEGER*4 NOTES$ENTRY_END EXTERNAL NOTES$ENTRY_END INTEGER*4 NOTES$KEYWORD_BEGIN EXTERNAL NOTES$KEYWORD_BEGIN INTEGER*4 NOTES$KEYWORD_ADD EXTERNAL NOTES$KEYWORD_ADD INTEGER*4 NOTES$KEYWORD_DELETE EXTERNAL NOTES$KEYWORD_DELETE INTEGER*4 NOTES$KEYWORD_GET EXTERNAL NOTES$KEYWORD_GET! INTEGER*4 NOTES$KEYWORD_GET_NOTE EXTERNAL NOTES$KEYWORD_GET_NOTE INTEGER*4 NOTES$KEYWORD_MODIFY EXTERNAL NOTES$KEYWORD_MODIFY INTEGER*4 NOTES$KEYWORD_END EXTERNAL NOTES$KEYWORD_END INTEGER*4 NOTES$NOTE_BEGIN EXTERNAL NOTES$NOTE_BEGIN INTEGER*4 NOTES$NOTE_ADD EXTERNAL NOTES$NOTE_ADD INTEGER*4 NOTES$NOTE_ADD_TEXT EXTERNAL NOTES$NOTE_ADD_TEXT INTEGER*4 NOTES$NOTE_DELETE EXTERNAL NOTES$NOTE_DELETE INTEGER*4 NOTES$NOTE_GET EXTERNAL NOTES$NOTE_GET! INTEGER*4 NOTES$NOTE_GET_KEYWORD EXTERNAL NOTES$NOTE_GET_KEYWORD INTEGER*4 NOTES$NOTE_GET_TEXT EXTERNAL NOTES$NOTE_GET_TEXT INTEGER*4 NOTES$NOTE_MODIFY EXTERNAL NOTES$NOTE_MODIFY INTEGER*4 NOTES$NOTE_END EXTERNAL NOTES$NOTE_END INTEGER*4 NOTES$PROFILE_BEGIN EXTERNAL NOTES$PROFILE_BEGIN INTEGER*4 NOTES$PROFILE_GET EXTERNAL NOTES$PROFILE_GET INTEGER*4 NOTES$PROFILE_MODIFY EXTERNAL NOTES$PROFILE_MODIFY INTEGER*4 NOTES$PROFILE_END EXTERNAL NOTES$PROFILE_END INTEGER*4 NOTES$USER_BEGIN EXTERNAL NOTES$USER_BEGIN INTEGER*4 NOTES$USER_ADD EXTERNAL NOTES$USER_ADD INTEGER*4 NOTES$USER_DELETE EXTERNAL NOTES$USER_DELETE INTEGER*4 NOTES$USER_GET EXTERNAL NOTES$USER_GET INTEGER*4 NOTES$USER_MODIFY EXTERNAL NOTES$USER_MODIFY INTEGER*4 NOTES$USER_END EXTERNAL NOTES$USER_END!DEC$ END OPTIONS !*** MODULE $NOTESMSGDEF ***:!DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN( PARAMETER NOTES$_FACILITY = '000003FB'X& PARAMETER NOTES$_NORMAL = '03FB8009'X) PARAMETER NOTES$_CMDKEYENA = '03FB8011'X) PARAMETER NOTES$_NUMKEYENA = '03FB8019'X+ PARAMETER NOTES$_PROFILE_MOD = '03FB8021'X, PARAMETER NOTES$_PROFILE_TEMP = '03FB8029'X( PARAMETER NOTES$_MODERATE = '03FB8031'X* PARAMETER NOTES$_NOMODERATE = '03FB8039'X+ PARAMETER NOTES$_ENTRY_ADDED = '03FB8041'X/ PARAMETER NOTES$_KEYWORD_ADDNOTE = '03FB8049'X, PARAMETER NOTES$_MARKER_ADDED = '03FB8051'X, PARAMETER NOTES$_MEMBER_ADDED = '03FB8059'X/ PARAMETER NOTES$_KEYWORD_CREATED = '03FB8061'X- PARAMETER NOTES$_ENTRY_DELETED = '03FB8069'X/ PARAMETER NOTES$_KEYWORD_DELETED = '03FB8071'X/ PARAMETER NOTES$_KEYWORD_DELNOTE = '03FB8079'X. PARAMETER NOTES$_MARKER_DELETED = '03FB8081'X, PARAMETER NOTES$_NOTE_DELETED = '03FB8089'X. PARAMETER NOTES$_MEMBER_DELETED = '03FB8091'X- PARAMETER NOTES$_NOTE_MODIFIED = '03FB8099'X. PARAMETER NOTES$_ENTRY_MODIFIED = '03FB80A1'X0 PARAMETER NOTES$_KEYWORD_MODIFIED = '03FB80A9'X/ PARAMETER NOTES$_MEMBER_MODIFIED = '03FB80B1'X) PARAMETER NOTES$_CLASS_SET = '03FB80B9'X+ PARAMETER NOTES$_INSERT_MODE = '03FB80C1'X/ PARAMETER NOTES$_OVERSTRIKE_MODE = '03FB80C9'X. PARAMETER NOTES$_ENTRY_DELCLASS = '03FB80D1'X. PARAMETER NOTES$_SPACE_COMPRESS = '03FB80D9'X, PARAMETER NOTES$_ENTRY_ADDED2 = '03FB80E1'X, PARAMETER NOTES$_OBJECT_ADDED = '03FB80E9'X. PARAMETER NOTES$_OBJECT_DELETED = '03FB80F1'X/ PARAMETER NOTES$_OBJECT_MODIFIED = '03FB80F9'X) PARAMETER NOTES$_MORE_INFO = '03FB9003'X. PARAMETER NOTES$_SRV_NEWPROTUPD = '03FB900B'X- PARAMETER NOTES$_ENTRY_ABORTED = '03FB9013'X+ PARAMETER NOTES$_NOTES_WRFIL = '03FB901B'X+ PARAMETER NOTES$_NOTES_WRBUF = '03FB9023'X( PARAMETER NOTES$_DIRTOBUF = '03FB902B'X) PARAMETER NOTES$_DIRTOFILE = '03FB9033'X& PARAMETER NOTES$_HIDDEN = '03FB903B'X) PARAMETER NOTES$_OPEN_CONF = '03FB9043'X+ PARAMETER NOTES$_UPDATE_CONF = '03FB904B'X) PARAMETER NOTES$_MARKSUPER = '03FB9053'X* PARAMETER NOTES$_OPEN_CONF2 = '03FB905B'X- PARAMETER NOTES$_BEING_WRITTEN = '03FB9063'X) PARAMETER NOTES$_USING_EDT = '03FB906B'X' PARAMETER NOTES$_HELPBUF = '03FB9073'X' PARAMETER NOTES$_HELPHDR = '03FB907B'X' PARAMETER NOTES$_HELPNXT = '03FB9083'X( PARAMETER NOTES$_HELPASK1 = '03FB908B'X( PARAMETER NOTES$_HELPASK2 = '03FB9093'X' PARAMETER NOTES$_HELPTOP = '03FB909B'X' PARAMETER NOTES$_HELPBOT = '03FB90A3'X' PARAMETER NOTES$_ENTRYID = '03FB90AB'X& PARAMETER NOTES$_NOTEID = '03FB90B3'X& PARAMETER NOTES$_TOPICS = '03FB90BB'X& PARAMETER NOTES$_UNSEEN = '03FB90C3'X* PARAMETER NOTES$_TOTALNOTES = '03FB90CB'X( PARAMETER NOTES$_DATELINE = '03FB90D3'X( PARAMETER NOTES$_ONECLASS = '03FB90DB'X+ PARAMETER NOTES$_MANYCLASSES = '03FB90E3'X' PARAMETER NOTES$_TITLEID = '03FB90EB'X( PARAMETER NOTES$_NOTICEID = '03FB90F3'X* PARAMETER NOTES$_CONFCREUPD = '03FB90FB'X( PARAMETER NOTES$_MAILSUBJ = '03FB9103'X& PARAMETER NOTES$_FILEID = '03FB910B'X+ PARAMETER NOTES$_MODERATORID = '03FB9113'X/ PARAMETER NOTES$_OLD_ALREXISTS_A = '03FB911B'X- PARAMETER NOTES$_OLD_INVACCNAM = '03FB9123'X* PARAMETER NOTES$_LOCATIONID = '03FB912B'X+ PARAMETER NOTES$_CONF_BANNER = '03FB9133'X+ PARAMETER NOTES$_READ_BANNER = '03FB913B'X, PARAMETER NOTES$_TOPIC_BANNER = '03FB9143'X, PARAMETER NOTES$_REPLY_BANNER = '03FB914B'X+ PARAMETER NOTES$_INFO_BANNER = '03FB9153'X+ PARAMETER NOTES$_CREATE_CONF = '03FB915B'X, PARAMETER NOTES$_UPDATE_ENTRY = '03FB9163'X+ PARAMETER NOTES$_GETTING_DIR = '03FB916B'X, PARAMETER NOTES$_GETTING_NOTE = '03FB9173'X, PARAMETER NOTES$_EXTRACT_NOTE = '03FB917B'X* PARAMETER NOTES$_PRINT_NOTE = '03FB9183'X* PARAMETER NOTES$_SEARCH_FOR = '03FB918B'X+ PARAMETER NOTES$_SEARCH_NEXT = '03FB9193'X- PARAMETER NOTES$_DELETING_NOTE = '03FB919B'X( PARAMETER NOTES$_AUTHORID = '03FB91A3'X' PARAMETER NOTES$_TOPICID = '03FB91AB'X) PARAMETER NOTES$_KEYWORDID = '03FB91B3'X, PARAMETER NOTES$_CONFERENCEID = '03FB91BB'X( PARAMETER NOTES$_ATTRIBID = '03FB91C3'X+ PARAMETER NOTES$_WRITELOCKID = '03FB91CB'X( PARAMETER NOTES$_HIDDENID = '03FB91D3'X, PARAMETER NOTES$_GRAPHIC_VIEW = '03FB91DB'X, PARAMETER NOTES$_UNKNOWN_VIEW = '03FB91E3'X+ PARAMETER NOTES$_DDIF_FORMAT = '03FB91EB'X) PARAMETER NOTES$_PS_FORMAT = '03FB91F3'X) PARAMETER NOTES$_USEFILEID = '03FB91FB'X) PARAMETER NOTES$_COPYRIGHT = '03FB9203'X. PARAMETER NOTES$_SRV_OLDPROTUPD = '03FBA000'X/ PARAMETER NOTES$_NO_MORE_CLASSES = '03FBA008'X/ PARAMETER NOTES$_NO_MORE_ENTRIES = '03FBA010'X0 PARAMETER NOTES$_NO_MORE_KEYWORDS = '03FBA018'X- PARAMETER NOTES$_NO_MORE_NOTES = '03FBA020'X, PARAMETER NOTES$_NO_MORE_TEXT = '03FBA028'X- PARAMETER NOTES$_NO_MORE_USERS = '03FBA030'X** PARAMETER NOTES$_NONOTEBOOK = '03FBA038'X( PARAMETER NOTES$_NOERRTXT = '03FBA040'X, PARAMETER NOTES$_NEEDNBMODIFY = '03FBA048'X' PARAMETER NOTES$_MSGSEND = '03FBA050'X * PARAMETER NOTES$_ENTERINTRO = '03FBA058'X) PARAMETER NOTES$_CTRLZMAIL = '03FBA060'Xa* PARAMETER NOTES$_NOTREADING = '03FBA068'X/ PARAMETER NOTES$_NO_MORE_REPLIES = '03FBA070'X * PARAMETER NOTES$_ANSWER_YES = '03FBA078'X( PARAMETER NOTES$_EOB_TEXT = '03FBA080'X) PARAMETER NOTES$_PRESS_PF2 = '03FBA088'Xs* PARAMETER NOTES$_NOTES_HDR1 = '03FBA090'X- PARAMETER NOTES$_PRESS_CTRLZ_N = '03FBA098'Xe. PARAMETER NOTES$_SET_CONFERENCE = '03FBA0A0'X+ PARAMETER NOTES$_ENTER_TITLE = '03FBA0A8'Xo, PARAMETER NOTES$_PRESS_RETURN = '03FBA0B0'X- PARAMETER NOTES$_PRESS_ANY_KEY = '03FBA0B8'Xe( PARAMETER NOTES$_DIR_HEAD = '03FBA0C0'X+ PARAMETER NOTES$_ENDREQ_LIST = '03FBA0C8'X - PARAMETER NOTES$_NOTE_END_TEXT = '03FBA0D0'X ) PARAMETER NOTES$_TEXT_NOTE = '03FBA0D8'X * PARAMETER NOTES$_TEXT_REPLY = '03FBA0E0'X% PARAMETER NOTES$_NO_NB = '03FBA0E8'Xf' PARAMETER NOTES$_YOUR_SP = '03FBA0F0'Xh- PARAMETER NOTES$_NOTE_COMPLETE = '03FBA0F8'X + PARAMETER NOTES$_NOTE_NOTEXT = '03FBA100'Xq) PARAMETER NOTES$_NOREPLIES = '03FBA108'X ) PARAMETER NOTES$_ONE_REPLY = '03FBA110'X , PARAMETER NOTES$_MANY_REPLIES = '03FBA118'X& PARAMETER NOTES$_N_OF_N = '03FBA120'X, PARAMETER NOTES$_ENTER_CTITLE = '03FBA128'X+ PARAMETER NOTES$_DELETE_NOTE = '03FBA130'X * PARAMETER NOTES$_NOTENOTDEL = '03FBA138'X, PARAMETER NOTES$_FINDING_HELPsq]g$ NOTES026.A7b "[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1NH"$ = '03FBA140'X) PARAMETER NOTES$_NOKEYHELP = '03FBA148'X ) PARAMETER NOTES$_NOTESQADD = '03FBA150'X** PARAMETER NOTES$_REALLYQUIT = '03FBA158'X+ PARAMETER NOTES$_MAILNOTSENT = '03FBA160'XI( PARAMETER NOTES$_NUMNOTES = '03FBA168'X& PARAMETER NOTES$_SENDTO = '03FBA170'X' PARAMETER NOTES$_SUBJECT = '03FBA178'X , PARAMETER NOTES$_PROFILE_USER = '03FBA180'X) PARAMETER NOTES$_MORE_TEXT = '03FBA188'X + PARAMETER NOTES$_SHOW_MARK_1 = '03FBA190'X'+ PARAMETER NOTES$_SHOW_MARK_2 = '03FBA198'XN+ PARAMETER NOTES$_SHOW_MARK_3 = '03FBA1A0'XU* PARAMETER NOTES$_SHOW_ENTRY = '03FBA1A8'X. PARAMETER NOTES$_SHOW_PROF_EDIT = '03FBA1B0'X0 PARAMETER NOTES$_SHOW_PROF_DCLASS = '03FBA1B8'X/ PARAMETER NOTES$_SHOW_PROF_PRINT = '03FBA1C0'XS. PARAMETER NOTES$_SHOW_PROF_NAME = '03FBA1C8'X. PARAMETER NOTES$_SHOW_PROF_AUTO = '03FBA1D0'X. PARAMETER NOTES$_SHOW_PROF_ADIR = '03FBA1D8'X. PARAMETER NOTES$_SHOW_PROF_AUNS = '03FBA1E0'X. PARAMETER NOTES$_SHOW_PROF_NONE = '03FBA1E8'X+ PARAMETER NOTES$_ENDREQ_SHOW = '03FBA1F0'XT- PARAMETER NOTES$_CTRLZ_COM_RET = '03FBA1F8'XT- PARAMETER NOTES$_SHOW_ENT_CONF = '03FBA200'XM- PARAMETER NOTES$_SHOW_ENT_FILE = '03FBA208'XP* PARAMETER NOTES$_SHOW_CLASS = '03FBA210'X- PARAMETER NOTES$_SHOW_CONF_MOD = '03FBA218'X0/ PARAMETER NOTES$_SHOW_CONF_RESA1 = '03FBA220'X0/ PARAMETER NOTES$_SHOW_CONF_RESA2 = '03FBA228'X0/ PARAMETER NOTES$_SHOW_CONF_RESK1 = '03FBA230'X1/ PARAMETER NOTES$_SHOW_CONF_RESK2 = '03FBA238'X+ PARAMETER NOTES$_SHOW_KEYW_1 = '03FBA240'X+ PARAMETER NOTES$_SHOW_KEYW_2 = '03FBA248'X'( PARAMETER NOTES$_SHOW_MOD = '03FBA250'X- PARAMETER NOTES$_SHOW_MOD_NODE = '03FBA258'X - PARAMETER NOTES$_SHOW_MOD_USER = '03FBA260'XT. PARAMETER NOTES$_SHOW_USER_MADR = '03FBA268'X. PARAMETER NOTES$_SHOW_USER_PRIV = '03FBA270'X. PARAMETER NOTES$_SHOW_USER_JOIN = '03FBA278'X- PARAMETER NOTES$_SHOW_NOTE_HID = '03FBA280'XN- PARAMETER NOTES$_SHOW_NOTE_VIS = '03FBA288'XO. PARAMETER NOTES$_SHOW_NOTE_REP1 = '03FBA290'X. PARAMETER NOTES$_SHOW_NOTE_REP2 = '03FBA298'X. PARAMETER NOTES$_SHOW_PROF_PERM = '03FBA2A0'X. PARAMETER NOTES$_SHOW_USER_FULL = '03FBA2A8'X. PARAMETER NOTES$_SHOW_MODU_FULL = '03FBA2B0'X# PARAMETER NOTES$_NMF = '03FBA2B8'XT# PARAMETER NOTES$_NJU = '03FBA2C0'XR/ PARAMETER NOTES$_NO_MORE_MARKERS = '03FBA2C8'XR( PARAMETER NOTES$_SEARCHF1 = '03FBA2D0'X( PARAMETER NOTES$_SEARCHF2 = '03FBA2D8'X( PARAMETER NOTES$_DIR_CONF = '03FBA2E0'X. PARAMETER NOTES$_DIR_CONF_TITLE = '03FBA2E8'X( PARAMETER NOTES$_N_TOPICS = '03FBA2F0'X, PARAMETER NOTES$_DIR_NB_CLASS = '03FBA2F8'X, PARAMETER NOTES$_CTRLZ_CANCEL = '03FBA300'X+ PARAMETER NOTES$_REPBUFINFO1 = '03FBA308'XT+ PARAMETER NOTES$_REPBUFINFO2 = '03FBA310'X* PARAMETER NOTES$_NMORELINES = '03FBA318'X+ PARAMETER NOTES$_READINGCONF = '03FBA320'X'+ PARAMETER NOTES$_WILLNOTSEND = '03FBA328'XE' PARAMETER NOTES$_WORKING = '03FBA330'XF* PARAMETER NOTES$_FILECREUPD = '03FBA338'X) PARAMETER NOTES$_ENTERNOTE = '03FBA340'XM% PARAMETER NOTES$_ANDTO = '03FBA348'X7* PARAMETER NOTES$_SENDANYWAY = '03FBA350'X( PARAMETER NOTES$_SPAWNKEY = '03FBA358'X' PARAMETER NOTES$_CALLKEY = '03FBA360'XS' PARAMETER NOTES$_EDICALL = '03FBA368'XR( PARAMETER NOTES$_EDISPAWN = '03FBA370'X+ PARAMETER NOTES$_SPELLSELECT = '03FBA378'X + PARAMETER NOTES$_SPELLBUFFER = '03FBA380'XN* PARAMETER NOTES$_SPELLSTART = '03FBA388'X) PARAMETER NOTES$_SPELLDONE = '03FBA390'XN, PARAMETER NOTES$_SENDING_MAIL = '03FBA398'X( PARAMETER NOTES$_SENDBOTH = '03FBA3A0'X( PARAMETER NOTES$_NONESENT = '03FBA3A8'X+ PARAMETER NOTES$_SENT_TO_ALL = '03FBA3B0'XE/ PARAMETER NOTES$_SHOW_CONF_RESW1 = '03FBA3B8'XE/ PARAMETER NOTES$_SHOW_CONF_RESW2 = '03FBA3C0'XO* PARAMETER NOTES$_TEXT_TOPIC = '03FBA3C8'X* PARAMETER NOTES$_MEMBERS_OF = '03FBA3D0'X+ PARAMETER NOTES$_DEF_SUBJECT = '03FBA3D8'XR, PARAMETER NOTES$_MAIL_SUBJECT = '03FBA3E0'X+ PARAMETER NOTES$_TEXT_APPEND = '03FBA3E8'XX. PARAMETER NOTES$_NEVER_ACCESSED = '03FBA3F0'X' PARAMETER NOTES$_EXPIRED = '03FBA3F8'X0) PARAMETER NOTES$_ANSWER_NO = '03FBA400'X0) PARAMETER NOTES$_WRONG_ANS = '03FBA408'X=) PARAMETER NOTES$_CREATEBUF = '03FBA410'XO( PARAMETER NOTES$_WRITEBUF = '03FBA418'X- PARAMETER NOTES$_SHOW_PROF_DEF = '03FBA420'XN) PARAMETER NOTES$_ASK_YESNO = '03FBA428'XN( PARAMETER NOTES$_MODPRIVS = '03FBA430'X, PARAMETER NOTES$_SHOW_ENT_OBJ = '03FBA438'X) PARAMETER NOTES$_CANCELLED = '03FBA440'X0. PARAMETER NOTES$_SHOW_CONF_RESR = '03FBA448'X" PARAMETER NOTES$_CC = '03FBA450'X- PARAMETER NOTES$_MODERATORS_OF = '03FBA458'XC+ PARAMETER NOTES$_ALREXISTS_A = '03FBA460'XK) PARAMETER NOTES$_INVACCNAM = '03FBA468'XT) PARAMETER NOTES$_ILLCTXADR = '03FBC002'XT( PARAMETER NOTES$_WRONGCTX = '03FBC00A'X) PARAMETER NOTES$_INVITMCOD = '03FBC013'XT) PARAMETER NOTES$_INVITMLEN = '03FBC01A'X) PARAMETER NOTES$_MISREQITM = '03FBC022'X0) PARAMETER NOTES$_NOCURNOTE = '03FBC02A'X , PARAMETER NOTES$_CANTCONTINUE = '03FBC032'X) PARAMETER NOTES$_FAILGETVM = '03FBC03A'XT* PARAMETER NOTES$_STRCOPYERR = '03FBC042'X) PARAMETER NOTES$_ILLNOTEID = '03FBC04A'XR* PARAMETER NOTES$_NOSUCHNOTE = '03FBC052'X* PARAMETER NOTES$_SRV_NOINIT = '03FBC05A'X* PARAMETER NOTES$_SRV_INVSEQ = '03FBC062'X- PARAMETER NOTES$_SRV_NOCONTEXT = '03FBC06A'XS. PARAMETER NOTES$_SRV_NOUSERNAME = '03FBC072'X+ PARAMETER NOTES$_SRV_INVITEM = '03FBC07A'XR) PARAMETER NOTES$_CREPRIJOB = '03FBC082'X0' PARAMETER NOTES$_PREMEOF = '03FBC08A'XA+ PARAMETER NOTES$_NOPRIVDEL_N = '03FBC092'X=- PARAMETER NOTES$_NOPRIVWRITE_N = '03FBC09A'X_- PARAMETER NOTES$_SRV_UNRECPROT = '03FBC0A2'XH* PARAMETER NOTES$_NOFILEOPEN = '03FBC0AA'X- PARAMETER NOTES$_ALREXISTS_OLD = '03FBC0B2'XT+ PARAMETER NOTES$_NOSUCHENTRY = '03FBC0BA'XP) PARAMETER NOTES$_MUST_OPEN = '03FBC0C2'XP/ PARAMETER NOTES$_MUST_READ_REPLY = '03FBC0CA'X1 PARAMETER NOTES$_MUST_READ_FORWARD = '03FBC0D2'XM1 PARAMETER NOTES$_NOT_ENTERING_NOTE = '03FBC0DA'XT0 PARAMETER NOTES$_NONOTE_SPECIFIED = '03FBC0E2'X- PARAMETER NOTES$_ERROR_MAILING = '03FBC0EA'XS/ PARAMETER NOTES$_NOPREVIOUS_NOTE = '03FBC0F2'XT1 PARAMETER NOTES$_ALREADY_IN_EDITOR = '03FBC0FA'XP0 PARAMETER NOTES$_ALREADY_IN_NOTES = '03FBC102'X5 PARAMETER NOTES$_MUST_COMPLETE_MESSAGE = '03FBC10A'XE. PARAMETER NOTES$_UNREC_CALLUSER = '03FBC112'X- PARAMETER NOTES$_NO_SUCH_CLASS = '03FBC11A'XS- PARAMETER NOTES$_NO_SUCH_ENTRY = '03FBC122'XU/ PARAMETER NOTES$_NO_SUCH_KEYWORD = '03FBC12A'XX, PARAMETER NOTES$_NO_SUCH_NOTE = '03FBC132'X, PARAMETER NOTES$_NO_SUCH_USER = '03FBC13A'X- PARAMETER NOTES$_NOMORE_RECALL = '03FBC142'XN, PARAMETER NOTES$_EDIT_OR_FILE = '03FBC14A'X& PARAMETER NOTES$_NOMAIL = '03FBC152'X* PARAMETER NOTES$_ERRORWRITE = '03FBC15A'X* PARAMETER NOTES$_NOMAILPROC = '03FBC162'X# PARAMETER NOTES$_IFF = '03FBC16A'X1& PARAMETER NOTES$_NOPRIV = '03FBC172'X, PARAMETER NOTES$_CTRLC_CANCEL = '03FBC17A'X) PARAMETER NOTES$_ERRCREKEY = '03FBC182'XE* PARAMETER NOTES$_ERRADDMARK = '03FBC18A'X) PARAMETER NOTES$_ERRADDMEM = '03FBC192'XU) PARAMETER NOTES$_ERRADDENT = '03FBC19A'X=) PARAMETER NOTES$_ERRDELENT = '03FBC1A2'X0* PARAMETER NOTES$_ERRDELMARK = '03FBC1AA'X, PARAMETER NOTES$_ERRDELMEMBER = '03FBC1B2'X* PARAMETER NOTES$_ERRMODNOTE = '03FBC1BA'X+ PARAMETER NOTES$_ERRMODENTRY = '03FBC1C2'XE- PARAMETER NOTES$_ERRMODKEYWORD = '03FBC1CA'XY* PARAMETER NOTES$_ERRACCLIST = '03FBC1D2'X' PARAMETER NOTES$_NOWRITE = '03FBC1DA'XO, PARAMETER NOTES$_NOSUCHMARKER = '03FBC1E2'X+ PARAMETER NOTES$_NOPRIVMOD_N = '03FBC1EA'XI+ PARAMETER NOTES$_ALREXISTS_C = '03FBC1F2'X$+ PARAMETER NOTES$_ALREXISTS_E = '03FBC1FA'XE+ PARAMETER NOTES$_ALREXISTS_K = '03FBC202'XC+ PARAMETER NOTES$_ALREXISTS_U = '03FBC20A'XR+ PARAMETER NOTES$_ALREXISTS_M = '03FBC212'X_. PARAMETER NOTES$_NO_SUCH_MARKER = '03FBC21A'X) PARAMETER NOTES$_NOMEMBERS = '03FBC222'XE) PARAMETER NOTES$_NOTMEMBER = '03FBC22A'XT- PARAMETER NOTES$_BASEWRITELOCK = '03FBC232'XS, PARAMETER NOTES$_NOWRITE_CONF = '03FBC23A'X* PARAMETER NOTES$_SPELLERROR = '03FBC242'X) PARAMETER NOTES$_PNINVCHAR = '03FBC24A'XR) PARAMETER NOTES$_SENDNOAUT = '03FBC252'XD, PARAMETER NOTES$_INVCLASSNAME = '03FBC25A'X- PARAMETER NOTES$_CLASSNOTFOUND = '03FBC262'X( PARAMETER NOTES$_FORWLOOP = '03FBC26A'X, PARAMETER NOTES$_BAD_DIR_LINE = '03FBC272'X) PARAMETER NOTES$_NO_SELECT = '03FBC27A'X+ PARAMETER NOTES$_NOTE_NOCONF = '03FBC282'X4, PARAMETER NOTES$_UNREC_EDITOR = '03FBC28A'X) PARAMETER NOTES$_NO_CLASSP = '03FBC292'XR) PARAMETER NOTES$_NMTHISDIR = '03FBC29A'XT+ PARAMETER NOTES$_NO_NEW_NOTE = '03FBC2A2'X4- PARAMETER NOTES$_CAPTIVE_SPAWN = '03FBC2AA'XE. PARAMETER NOTES$_NOTHING_TO_SET = '03FBC2B2'X* PARAMETER NOTES$_NOHELPTERM = '03FBC2BA'X) PARAMETER NOTES$_INVENTNAM = '03FBC2C2'XT) PARAMETER NOTES$_INVCLANAM t$ NOTES026.A7b "[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1NH{5= '03FBC2CA'XE, PARAMETER NOTES$_INVENTRYNAME = '03FBC2D2'X1 PARAMETER NOTES$_NO_ENTRY_IN_CLASS = '03FBC2DA'XS2 PARAMETER NOTES$_ALREXISTS_IN_CLASS = '03FBC2E2'X) PARAMETER NOTES$_NOMARKERS = '03FBC2EA'X$* PARAMETER NOTES$_NOKEYWORDS = '03FBC2F2'X) PARAMETER NOTES$_NOLICENSE = '03FBC2FA'XS& PARAMETER NOTES$_NOFILE = '03FBC302'X% PARAMETER NOTES$_NOEDT = '03FBC30A'X ' PARAMETER NOTES$_NOENTRY = '03FBC312'XT% PARAMETER NOTES$_NOEVE = '03FBC31A'X( PARAMETER NOTES$_TPUERROR = '03FBC322'X1 PARAMETER NOTES$_ENTALR_IN_CLASSES = '03FBC32A'XT. PARAMETER NOTES$_NO_RANGE_ALLOW = '03FBC332'X( PARAMETER NOTES$_NOTINCMD = '03FBC33A'X/ PARAMETER NOTES$_CONF_REPLY_ONLY = '03FBC342'X$) PARAMETER NOTES$_USRNOTADD = '03FBC34A'XE) PARAMETER NOTES$_INVKEYNAM = '03FBC352'XO. PARAMETER NOTES$_INVKEYWORDNAME = '03FBC35A'X) PARAMETER NOTES$_INVMRKNAM = '03FBC362'XR- PARAMETER NOTES$_INVMARKERNAME = '03FBC36A'XE) PARAMETER NOTES$_INVUSRNAM = '03FBC372'XT+ PARAMETER NOTES$_INVUSERNAME = '03FBC37A'X+ PARAMETER NOTES$_INVNOTESPEC = '03FBC382'X$/ PARAMETER NOTES$_RANGE_ONE_TOPIC = '03FBC38A'X - PARAMETER NOTES$_RANGE_TOO_BIG = '03FBC392'XE( PARAMETER NOTES$_NO_TOPIC = '03FBC39A'X+ PARAMETER NOTES$_ALREXISTS_N = '03FBC3A2'XG* PARAMETER NOTES$_NONOTESMOD = '03FBC3AA'X/ PARAMETER NOTES$_MEMBERNAME_NODE = '03FBC3B2'XO( PARAMETER NOTES$_CONFQUAL = '03FBC3BA'X, PARAMETER NOTES$_OPRNOTSUPCNF = '03FBC3C2'X' PARAMETER NOTES$_BADTIME = '03FBC3CA'XP* PARAMETER NOTES$_INVOBJNAME = '03FBC3D2'X- PARAMETER NOTES$_INVOBJECTNAME = '03FBC3DA'XN( PARAMETER NOTES$_NOATTRIB = '03FBC3E2'X( PARAMETER NOTES$_NOOBJECT = '03FBC3EA'X) PARAMETER NOTES$_NOSUCHOBJ = '03FBC3F2'XM( PARAMETER NOTES$_LWKERROR = '03FBC3FA'X- PARAMETER NOTES$_NOLINKLICENSE = '03FBC402'XT) PARAMETER NOTES$_NOTNETWRK = '03FBF004'XT* PARAMETER NOTES$_WRONG_ACCT = '03FBF00C'X, PARAMETER NOTES$_SRV_INIT_ERR = '03FBF014'X) PARAMETER NOTES$_WRONG_LMF = '03FBF01C'X!DEC$ END OPTIONSE R!*** MODULE SERVERDEF ***M:!DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN+ PARAMETER NOTES$K_INITIALIZE = '00000001'XT% PARAMETER NOTES$K_MORE = '00000002'XR/ PARAMETER NOTES$K_NOTEFILE_BEGIN = '00000003'XR- PARAMETER NOTES$K_NOTEFILE_END = '00000004'XR2 PARAMETER NOTES$K_NOTEFILE_GET_INFO = '00000005'X0 PARAMETER NOTES$K_NOTEFILE_MODIFY = '00000006'X4 PARAMETER NOTES$K_NOTEFILE_LIST_BEGIN = '00000007'X. PARAMETER NOTES$K_NOTEFILE_LIST = '00000008'X. PARAMETER NOTES$K_KEYWORD_BEGIN = '00000009'X, PARAMETER NOTES$K_KEYWORD_END = '0000000A'X, PARAMETER NOTES$K_KEYWORD_ADD = '0000000B'X/ PARAMETER NOTES$K_KEYWORD_DELETE = '0000000C'X_, PARAMETER NOTES$K_KEYWORD_GET = '0000000D'X1 PARAMETER NOTES$K_KEYWORD_GET_NOTE = '0000000E'X_/ PARAMETER NOTES$K_KEYWORD_MODIFY = '0000000F'XN+ PARAMETER NOTES$K_NOTE_BEGIN = '00000010'XB) PARAMETER NOTES$K_NOTE_END = '00000011'X_) PARAMETER NOTES$K_NOTE_ADD = '00000012'XT. PARAMETER NOTES$K_NOTE_ADD_TEXT = '00000013'X, PARAMETER NOTES$K_NOTE_DELETE = '00000014'X) PARAMETER NOTES$K_NOTE_GET = '00000015'XR1 PARAMETER NOTES$K_NOTE_GET_KEYWORD = '00000016'XT. PARAMETER NOTES$K_NOTE_GET_TEXT = '00000017'X, PARAMETER NOTES$K_NOTE_MODIFY = '00000018'X+ PARAMETER NOTES$K_USER_BEGIN = '00000019'XI) PARAMETER NOTES$K_USER_END = '0000001A'XI) PARAMETER NOTES$K_USER_ADD = '0000001B'XC, PARAMETER NOTES$K_USER_DELETE = '0000001C'X) PARAMETER NOTES$K_USER_GET = '0000001D'XU, PARAMETER NOTES$K_USER_MODIFY = '0000001E'X* PARAMETER NOTES$K_CLASS_ADD = '0000001F'X, PARAMETER NOTES$K_CLASS_BEGIN = '00000020'X- PARAMETER NOTES$K_CLASS_DELETE = '00000021'X * PARAMETER NOTES$K_CLASS_END = '00000022'X* PARAMETER NOTES$K_CLASS_GET = '00000023'X0 PARAMETER NOTES$K_CLASS_GET_ENTRY = '00000024'X- PARAMETER NOTES$K_CLASS_MODIFY = '00000025'XR* PARAMETER NOTES$K_ENTRY_ADD = '00000026'X, PARAMETER NOTES$K_ENTRY_BEGIN = '00000027'X- PARAMETER NOTES$K_ENTRY_DELETE = '00000028'XS* PARAMETER NOTES$K_ENTRY_END = '00000029'X* PARAMETER NOTES$K_ENTRY_GET = '0000002A'X0 PARAMETER NOTES$K_ENTRY_GET_CLASS = '0000002B'X2 PARAMETER NOTES$K_ENTRY_GET_KEYWORD = '0000002C'X- PARAMETER NOTES$K_ENTRY_MODIFY = '0000002D'XM. PARAMETER NOTES$K_PROFILE_BEGIN = '0000002E'X, PARAMETER NOTES$K_PROFILE_END = '0000002F'X, PARAMETER NOTES$K_PROFILE_GET = '00000030'X/ PARAMETER NOTES$K_PROFILE_MODIFY = '00000031'XL' PARAMETER NOTES$K_STATUS = '00000081'XE0 PARAMETER NOTES$K_REQUEST_CONTEXT = '00000082'X* PARAMETER NOTES$K_ERROR_TLV = '00000083'X, PARAMETER NOTES$K_ERROR_NARGS = '00000084'X* PARAMETER NOTES$K_ERROR_ARG = '00000085'X+ PARAMETER NOTES$K_ERROR_TEXT = '00000086'XB/ PARAMETER NOTES$K_CANCEL_REQUEST = '00000087'XE2 PARAMETER NOTES$K_REQUEST_CANCELLED = '00000088'X- PARAMETER NOTES$K_INIT_VERSION = '00002001'X3. PARAMETER NOTES$K_INIT_NODENAME = '00002002'X. PARAMETER NOTES$K_INIT_USERNAME = '00002003'X2 PARAMETER NOTES$K_INIT_CAPABILITIES = '00002004'X1 PARAMETER NOTES$K_INIT_MAXITEMCODE = '00002005'XM- PARAMETER NOTES$M_INIT_VMSMSGS = '00000001'XT STRUCTURE /CAPABILITIES/3 UNION MAP' INTEGER*4 NOTES$L_CAPABILITIEST END MAP MAP/ PARAMETER NOTES$S_INIT_VMSMSGS = 1M/ PARAMETER NOTES$V_INIT_VMSMSGS = 0T BYTE %FILL (1)B END MAP END UNION END STRUCTURE ! CAPABILITIESS1 PARAMETER NOTES$K_PROTOCOL_VERSION = '00000002'XR0 PARAMETER NOTES$K_PROTOCOL_UPDATE = '00000006'X INTEGER*4 NOTES$SERVER_BEGIN_ EXTERNAL NOTES$SERVER_BEGIN!DEC$ END OPTIONSD *[NOTES.TEMPKIT]NOTES$ITEMDEF.H;1+,8b.6/J 4P61- 0123KPWO256w]Hģ7㞐ģ89GJHJ /**/P/******************************************************************************/P/** **/P/** Copyright (c) 2004 **/P/** by DIGITAL Equipment Corporation, Maynard, Mass. **/P/** All rights reserved. **/P/** **/P/** This software is furnished under a license and may be used and copied **/P/** only in accordance with the terms of such license and with the **/P/** inclusion of the above copyright notice. This software or any other **/P/** copies thereof may not be provided or otherwise made available to any **/P/** other person. No title to and ownership of the software is hereby **/P/** transferred. **/P/** **/P/** The information in this software is subject to change without notice **/P/** and should not be construed as a commitment by DIGITAL Equipment **/P/** Corporation. **/P/** **/P/** DIGITAL assumes no responsibility for the use or reliability of its **/P/** software on equipment which is not supplied by DIGITAL. **/P/** **/P/******************************************************************************//*** MODULE NOTEITEMS ***/!#pragma __member_alignment __save#pragma __nomember_alignment#define NOTES$K_MIN_ITEM 1#define NOTES$K_NOSIGNAL 1#define NOTES$K_TEXT_STRING 2#define NOTES$K_TEXT_END 3#define NOTES$K_TEXT_TYPE 4$#define NOTES$K_NOTE_ALL_RESPONSES 5#define NOTES$K_NOTE_AUTHOR 6 #define NOTES$K_NOTE_BACK_NOTE 7$#define NOTES$K_NOTE_BACK_RESPONSE 8"#define NOTES$K_NOTE_BEFORE_TIME 9 #define NOTES$K_NOTE_BLINK_ID 10!#define NOTES$K_NOTE_BLINK_UID 11##define NOTES$K_NOTE_CREATE_TIME 12#define NOTES$K_NOTE_HIDDEN 13#define NOTES$K_NOTE_ID 14!#define NOTES$K_NOTE_NEXT_NOTE 15%#define NOTES$K_NOTE_NEXT_RESPONSE 16"#define NOTES$K_NOTE_NUMRECORDS 17$#define NOTES$K_NOTE_NUMRESPONSES 18 #define NOTES$K_NOTE_PEN_NAME 19%#define NOTES$K_NOTE_SEARCH_STRING 20$#define NOTES$K_NOTEu{qk$ NOTES026.A8b  [NOTES.TEMPKIT]NOTES$ITEMDEF.H;1;1P6v"_SEARCH_TITLE 21"#define NOTES$K_NOTE_SINCE_TIME 22#define NOTES$K_NOTE_TITLE 23#define NOTES$K_NOTE_UID 24#define NOTES$K_NOTE_UNSEEN 25!#define NOTES$K_NOTE_USER_AREA 26!#define NOTES$K_NOTE_WRITELOCK 27##define NOTES$K_NOTEFILE_CONTEXT 28 #define NOTES$K_CLASS_CONTEXT 29 #define NOTES$K_ENTRY_CONTEXT 30"#define NOTES$K_KEYWORD_CONTEXT 31#define NOTES$K_NOTE_CONTEXT 32"#define NOTES$K_PROFILE_CONTEXT 33!#define NOTES$K_SERVER_CONTEXT 34#define NOTES$K_USER_CONTEXT 35#define NOTES$K_CLASS_NAME 36!#define NOTES$K_CLASS_NEW_NAME 37#define NOTES$K_CONTINUE 38#define NOTES$K_ENTRY_NAME 39!#define NOTES$K_ENTRY_NEW_NAME 40"#define NOTES$K_ENTRY_USER_AREA 41#define NOTES$K_HINT 42#define NOTES$K_KEYWORD_NAME 43##define NOTES$K_KEYWORD_NEW_NAME 44"#define NOTES$K_NOTEFILE_CREATE 45'#define NOTES$K_NOTEFILE_CREATE_TIME 46(#define NOTES$K_NOTEFILE_DEFAULT_NAME 47&#define NOTES$K_NOTEFILE_ENTRYTOTAL 48%#define NOTES$K_NOTEFILE_FILE_NAME 49"#define NOTES$K_NOTEFILE_FORMAT 50$#define NOTES$K_NOTEFILE_HIGH_UID 51##define NOTES$K_NOTEFILE_LASTREV 52$#define NOTES$K_NOTEFILE_MODERATE 53%#define NOTES$K_NOTEFILE_MODERATOR 54"#define NOTES$K_NOTEFILE_NOTICE 55$#define NOTES$K_NOTEFILE_NUMNOTES 56(#define NOTES$K_NOTEFILE_RELATED_NAME 57&#define NOTES$K_NOTEFILE_RESTRICTED 58'#define NOTES$K_NOTEFILE_RESULT_SPEC 59!#define NOTES$K_NOTEFILE_TITLE 60%#define NOTES$K_NOTEFILE_TRANSPORT 61%#define NOTES$K_NOTEFILE_USER_AREA 62##define NOTES$K_PROFILE_AUTO_DIR 63&#define NOTES$K_PROFILE_AUTO_UNSEEN 64%#define NOTES$K_PROFILE_CLASS_NAME 65!#define NOTES$K_PROFILE_EDITOR 66'#define NOTES$K_PROFILE_EDITOR_SPAWN 67##define NOTES$K_PROFILE_PEN_NAME 68 #define NOTES$K_PROFILE_PRINT 69$#define NOTES$K_PROFILE_TEMPORARY 70#define NOTES$K_SEEN_MAP 71&#define NOTES$K_USER_CREATE_KEYWORD 72!#define NOTES$K_USER_MAIL_ADDR 73 #define NOTES$K_USER_MODERATE 74#define NOTES$K_USER_NAME 75 #define NOTES$K_USER_NEW_NAME 76$#define NOTES$K_USER_NEW_NODENAME 77 #define NOTES$K_USER_NODENAME 78##define NOTES$K_NOTE_BLINK_TITLE 79!#define NOTES$K_NOTE_MARK_SEEN 80##define NOTES$K_NOTE_NEXT_UNSEEN 81%#define NOTES$K_NOTE_HINT_GET_TEXT 82!#define NOTES$K_NOTE_X_KEYWORD 83!#define NOTES$K_KEYWORD_X_NOTE 84 #define NOTES$K_CLASS_X_ENTRY 85 #define NOTES$K_ENTRY_X_CLASS 86"#define NOTES$K_ENTRY_X_KEYWORD 87#define NOTES$K_DELIF0 88#define NOTES$K_UNIENTRY 89##define NOTES$K_ENTRY_UNSEEN_EST 90$#define NOTES$K_ENTRY_LAST_STATUS 91!#define NOTES$K_NOTE_CAN_REPLY 92%#define NOTES$K_NOTE_BEFORE_TIME_A 93%#define NOTES$K_NOTE_CREATE_TIME_A 94$#define NOTES$K_NOTE_SINCE_TIME_A 95)#define NOTES$K_NOTEFILE_CREATE_TIME_A 96%#define NOTES$K_NOTEFILE_LASTREV_A 97(#define NOTES$K_NOTE_HINT_GET_KEYWORD 98(#define NOTES$K_KEYWORD_HINT_GET_NOTE 99##define NOTES$K_SERVER_MAX_ITEM 100(#define NOTES$K_CLASS_HINT_GET_ENTRY 101##define NOTES$K_CLASS_USER_AREA 102#define NOTES$K_CLASS_UID 103(#define NOTES$K_ENTRY_HINT_GET_CLASS 104*#define NOTES$K_ENTRY_HINT_GET_KEYWORD 105%#define NOTES$K_ENTRY_OBJECT_NAME 106%#define NOTES$K_ENTRY_OBJECT_SPEC 107#define NOTES$K_ENTRY_UID 108%#define NOTES$K_KEYWORD_USER_AREA 109#define NOTES$K_KEYWORD_UID 110#define NOTES$K_NODE_NAME 111##define NOTES$K_NODE_X_USERNAME 112#define NOTES$K_NOTE_NEW_ID 113#define NOTES$K_NOTE_TYPE 114'#define NOTES$K_NOTEFILE_REPLY_ONLY 115%#define NOTES$K_PROFILE_USER_AREA 116$#define NOTES$K_USER_ACCESS_LIST 117%#define NOTES$K_USER_WRITE_BYPASS 118"#define NOTES$K_USER_USER_AREA 119#define NOTES$K_USER_UID 120!#define NOTES$K_USER_NOACCESS 121#define NOTES$K_MAX_ITEM 122%#define NOTES$K_NOTEFILE_WRITELOCK 27$#define NOTES$K_USER_ACCESS_NODE 111#define NOTES$K_USER_ACCESS 117#define NOTES$K_BASE_NOTE 1#define NOTES$K_REPLY_NOTE 2#define NOTES$K_UNKNOWN_TYPE 0#define NOTES$K_DDIF_TYPE 1#define NOTES$K_ASCII_TYPE 2#define NOTES$K_RESERVED_TYPE 3#define NOTES$K_WPS_PLUS_TYPE 4#define NOTES$K_TLV_INPUT 4097#define NOTES$K_TLV_OUTPUT 4098#define NOTES$K_CHAIN 65535#define NOTES$K_NOOP 65534int NOTES$NOTES() ;int NOTES$NOTEFILE_BEGIN() ;int NOTES$NOTEFILE_GET_INFO() ;int NOTES$NOTEFILE_MODIFY() ;!int NOTES$NOTEFILE_LIST_BEGIN() ;int NOTES$NOTEFILE_LIST() ;int NOTES$NOTEFILE_END() ;int NOTES$CLASS_BEGIN() ;int NOTES$CLASS_ADD() ;int NOTES$CLASS_DELETE() ;int NOTES$CLASS_GET() ;int NOTES$CLASS_GET_ENTRY() ;int NOTES$CLASS_MODIFY() ;int NOTES$CLASS_END() ;int NOTES$ENTRY_BEGIN() ;int NOTES$ENTRY_ADD() ;int NOTES$ENTRY_DELETE() ;int NOTES$ENTRY_GET() ;int NOTES$ENTRY_GET_CLASS() ;int NOTES$ENTRY_GET_KEYWORD() ;int NOTES$ENTRY_MODIFY() ;int NOTES$ENTRY_UPDATE() ;int NOTES$ENTRY_END() ;int NOTES$KEYWORD_BEGIN() ;int NOTES$KEYWORD_ADD() ;int NOTES$KEYWORD_DELETE() ;int NOTES$KEYWORD_GET() ;int NOTES$KEYWORD_GET_NOTE() ;int NOTES$KEYWORD_MODIFY() ;int NOTES$KEYWORD_END() ;int NOTES$NOTE_BEGIN() ;int NOTES$NOTE_ADD() ;int NOTES$NOTE_ADD_TEXT() ;int NOTES$NOTE_DELETE() ;int NOTES$NOTE_GET() ;int NOTES$NOTE_GET_KEYWORD() ;int NOTES$NOTE_GET_TEXT() ;int NOTES$NOTE_MODIFY() ;int NOTES$NOTE_END() ;int NOTES$PROFILE_BEGIN() ;int NOTES$PROFILE_GET() ;int NOTES$PROFILE_MODIFY() ;int NOTES$PROFILE_END() ;int NOTES$USER_BEGIN() ;int NOTES$USER_ADD() ;int NOTES$USER_DELETE() ;int NOTES$USER_GET() ;int NOTES$USER_MODIFY() ;int NOTES$USER_END() ; $#pragma __member_alignment __restore/*** MODULE $NOTESMSGDEF ***/!#pragma __member_alignment __save#pragma __nomember_alignment#define NOTES$_FACILITY 1019#define NOTES$_NORMAL 66813961!#define NOTES$_CMDKEYENA 66813969!#define NOTES$_NUMKEYENA 66813977##define NOTES$_PROFILE_MOD 66813985$#define NOTES$_PROFILE_TEMP 66813993 #define NOTES$_MODERATE 66814001"#define NOTES$_NOMODERATE 66814009##define NOTES$_ENTRY_ADDED 66814017'#define NOTES$_KEYWORD_ADDNOTE 66814025$#define NOTES$_MARKER_ADDED 66814033$#define NOTES$_MEMBER_ADDED 66814041'#define NOTES$_KEYWORD_CREATED 66814049%#define NOTES$_ENTRY_DELETED 66814057'#define NOTES$_KEYWORD_DELETED 66814065'#define NOTES$_KEYWORD_DELNOTE 66814073&#define NOTES$_MARKER_DELETED 66814081$#define NOTES$_NOTE_DELETED 66814089&#define NOTES$_MEMBER_DELETED 66814097%#define NOTES$_NOTE_MODIFIED 66814105&#define NOTES$_ENTRY_MODIFIED 66814113(#define NOTES$_KEYWORD_MODIFIED 66814121'#define NOTES$_MEMBER_MODIFIED 66814129!#define NOTES$_CLASS_SET 66814137##define NOTES$_INSERT_MODE 66814145'#define NOTES$_OVERSTRIKE_MODE 66814153&#define NOTES$_ENTRY_DELCLASS 66814161&#define NOTES$_SPACE_COMPRESS 66814169$#define NOTES$_ENTRY_ADDED2 66814177$#define NOTES$_OBJECT_ADDED 66814185&#define NOTES$_OBJECT_DELETED 66814193'#define NOTES$_OBJECT_MODIFIED 66814201!#define NOTES$_MORE_INFO 66818051&#define NOTES$_SRV_NEWPROTUPD 66818059%#define NOTES$_ENTRY_ABORTED 66818067##define NOTES$_NOTES_WRFIL 66818075##define NOTES$_NOTES_WRBUF 66818083 #define NOTES$_DIRTOBUF 66818091!#define NOTES$_DIRTOFILE 66818099#define NOTES$_HIDDEN 66818107!#define NOTES$_OPEN_CONF 66818115##define NOTES$_UPDATE_CONF 66818123!#define NOTES$_MARKSUPER 66818131"#define NOTES$_OPEN_CONF2 66818139%#define NOTES$_BEING_WRITTEN 66818147!#define NOTES$_USING_EDT 66818155#define NOTES$_HELPBUF 66818163#define NOTES$_HELPHDR 66818171#define NOTES$_HELPNXT 66818179 #define NOTES$_HELPASK1 66818187 #define NOTES$_HELPASK2 66818195#define NOTES$_HELPTOP 66818203#define NOTES$_HELPBOT 66818211#define NOTES$_ENTRYID 66818219#define NOTES$_NOTEID 66818227#define NOTES$_TOPICS 66818235#define NOTES$_UNSEEN 66818243"#define NOTES$_TOTALNOTES 66818251 #define NOTES$_DATELINE 66818259 #define NOTES$_ONECLASS 66818267##define NOTES$_MANYCLASSES 66818275#define NOTES$_TITLEID 66818283 #define NOTES$_NOTICEID 66818291"#define NOTES$_CONFCREUPD 66818299 #define NOTES$_MAILSUBJ 66818307#define NOTES$_FILEID 66818315##define NOTES$_MODERATORID 66818323'#define NOTES$_OLD_ALREXISTS_A 66818331%#define NOTES$_OLD_INVACCNAM 66818339"#define NOTES$_LOCATIONID 66818347##define NOTES$_CONF_BANNER 66818355##define NOTES$_READ_BANNER 66818363$#define NOTES$_TOPIC_BANNER 66818371$#define NOTES$_REPLY_BANNER 66818379##define NOTES$_INFO_BANNER 66818387##define NOTES$_CREATE_CONF 66818395$#define NOTES$_UPDATE_ENTRY 66818403##define NOTES$_GETTING_DIR 66818411$#define NOTES$_GETTING_NOTE 66818419$#define NOTES$_EXTRACT_NOTE 66818427"#define NOTES$_PRINT_NOTE 668184v23'[$ NOTES026.A8b  [NOTES.TEMPKIT]NOTES$ITEMDEF.H;1;1P6""35"#define NOTES$_SEARCH_FOR 66818443##define NOTES$_SEARCH_NEXT 66818451%#define NOTES$_DELETING_NOTE 66818459 #define NOTES$_AUTHORID 66818467#define NOTES$_TOPICID 66818475!#define NOTES$_KEYWORDID 66818483$#define NOTES$_CONFERENCEID 66818491 #define NOTES$_ATTRIBID 66818499##define NOTES$_WRITELOCKID 66818507 #define NOTES$_HIDDENID 66818515$#define NOTES$_GRAPHIC_VIEW 66818523$#define NOTES$_UNKNOWN_VIEW 66818531##define NOTES$_DDIF_FORMAT 66818539!#define NOTES$_PS_FORMAT 66818547!#define NOTES$_USEFILEID 66818555!#define NOTES$_COPYRIGHT 66818563&#define NOTES$_SRV_OLDPROTUPD 66822144'#define NOTES$_NO_MORE_CLASSES 66822152'#define NOTES$_NO_MORE_ENTRIES 66822160(#define NOTES$_NO_MORE_KEYWORDS 66822168%#define NOTES$_NO_MORE_NOTES 66822176$#define NOTES$_NO_MORE_TEXT 66822184%#define NOTES$_NO_MORE_USERS 66822192"#define NOTES$_NONOTEBOOK 66822200 #define NOTES$_NOERRTXT 66822208$#define NOTES$_NEEDNBMODIFY 66822216#define NOTES$_MSGSEND 66822224"#define NOTES$_ENTERINTRO 66822232!#define NOTES$_CTRLZMAIL 66822240"#define NOTES$_NOTREADING 66822248'#define NOTES$_NO_MORE_REPLIES 66822256"#define NOTES$_ANSWER_YES 66822264 #define NOTES$_EOB_TEXT 66822272!#define NOTES$_PRESS_PF2 66822280"#define NOTES$_NOTES_HDR1 66822288%#define NOTES$_PRESS_CTRLZ_N 66822296&#define NOTES$_SET_CONFERENCE 66822304##define NOTES$_ENTER_TITLE 66822312$#define NOTES$_PRESS_RETURN 66822320%#define NOTES$_PRESS_ANY_KEY 66822328 #define NOTES$_DIR_HEAD 66822336##define NOTES$_ENDREQ_LIST 66822344%#define NOTES$_NOTE_END_TEXT 66822352!#define NOTES$_TEXT_NOTE 66822360"#define NOTES$_TEXT_REPLY 66822368#define NOTES$_NO_NB 66822376#define NOTES$_YOUR_SP 66822384%#define NOTES$_NOTE_COMPLETE 66822392##define NOTES$_NOTE_NOTEXT 66822400!#define NOTES$_NOREPLIES 66822408!#define NOTES$_ONE_REPLY 66822416$#define NOTES$_MANY_REPLIES 66822424#define NOTES$_N_OF_N 66822432$#define NOTES$_ENTER_CTITLE 66822440##define NOTES$_DELETE_NOTE 66822448"#define NOTES$_NOTENOTDEL 66822456$#define NOTES$_FINDING_HELP 66822464!#define NOTES$_NOKEYHELP 66822472!#define NOTES$_NOTESQADD 66822480"#define NOTES$_REALLYQUIT 66822488##define NOTES$_MAILNOTSENT 66822496 #define NOTES$_NUMNOTES 66822504#define NOTES$_SENDTO 66822512#define NOTES$_SUBJECT 66822520$#define NOTES$_PROFILE_USER 66822528!#define NOTES$_MORE_TEXT 66822536##define NOTES$_SHOW_MARK_1 66822544##define NOTES$_SHOW_MARK_2 66822552##define NOTES$_SHOW_MARK_3 66822560"#define NOTES$_SHOW_ENTRY 66822568&#define NOTES$_SHOW_PROF_EDIT 66822576(#define NOTES$_SHOW_PROF_DCLASS 66822584'#define NOTES$_SHOW_PROF_PRINT 66822592&#define NOTES$_SHOW_PROF_NAME 66822600&#define NOTES$_SHOW_PROF_AUTO 66822608&#define NOTES$_SHOW_PROF_ADIR 66822616&#define NOTES$_SHOW_PROF_AUNS 66822624&#define NOTES$_SHOW_PROF_NONE 66822632##define NOTES$_ENDREQ_SHOW 66822640%#define NOTES$_CTRLZ_COM_RET 66822648%#define NOTES$_SHOW_ENT_CONF 66822656%#define NOTES$_SHOW_ENT_FILE 66822664"#define NOTES$_SHOW_CLASS 66822672%#define NOTES$_SHOW_CONF_MOD 66822680'#define NOTES$_SHOW_CONF_RESA1 66822688'#define NOTES$_SHOW_CONF_RESA2 66822696'#define NOTES$_SHOW_CONF_RESK1 66822704'#define NOTES$_SHOW_CONF_RESK2 66822712##define NOTES$_SHOW_KEYW_1 66822720##define NOTES$_SHOW_KEYW_2 66822728 #define NOTES$_SHOW_MOD 66822736%#define NOTES$_SHOW_MOD_NODE 66822744%#define NOTES$_SHOW_MOD_USER 66822752&#define NOTES$_SHOW_USER_MADR 66822760&#define NOTES$_SHOW_USER_PRIV 66822768&#define NOTES$_SHOW_USER_JOIN 66822776%#define NOTES$_SHOW_NOTE_HID 66822784%#define NOTES$_SHOW_NOTE_VIS 66822792&#define NOTES$_SHOW_NOTE_REP1 66822800&#define NOTES$_SHOW_NOTE_REP2 66822808&#define NOTES$_SHOW_PROF_PERM 66822816&#define NOTES$_SHOW_USER_FULL 66822824&#define NOTES$_SHOW_MODU_FULL 66822832#define NOTES$_NMF 66822840#define NOTES$_NJU 66822848'#define NOTES$_NO_MORE_MARKERS 66822856 #define NOTES$_SEARCHF1 66822864 #define NOTES$_SEARCHF2 66822872 #define NOTES$_DIR_CONF 66822880&#define NOTES$_DIR_CONF_TITLE 66822888 #define NOTES$_N_TOPICS 66822896$#define NOTES$_DIR_NB_CLASS 66822904$#define NOTES$_CTRLZ_CANCEL 66822912##define NOTES$_REPBUFINFO1 66822920##define NOTES$_REPBUFINFO2 66822928"#define NOTES$_NMORELINES 66822936##define NOTES$_READINGCONF 66822944##define NOTES$_WILLNOTSEND 66822952#define NOTES$_WORKING 66822960"#define NOTES$_FILECREUPD 66822968!#define NOTES$_ENTERNOTE 66822976#define NOTES$_ANDTO 66822984"#define NOTES$_SENDANYWAY 66822992 #define NOTES$_SPAWNKEY 66823000#define NOTES$_CALLKEY 66823008#define NOTES$_EDICALL 66823016 #define NOTES$_EDISPAWN 66823024##define NOTES$_SPELLSELECT 66823032##define NOTES$_SPELLBUFFER 66823040"#define NOTES$_SPELLSTART 66823048!#define NOTES$_SPELLDONE 66823056$#define NOTES$_SENDING_MAIL 66823064 #define NOTES$_SENDBOTH 66823072 #define NOTES$_NONESENT 66823080##define NOTES$_SENT_TO_ALL 66823088'#define NOTES$_SHOW_CONF_RESW1 66823096'#define NOTES$_SHOW_CONF_RESW2 66823104*"#define NOTES$_TEXT_TOPIC 66823112"#define NOTES$_MEMBERS_OF 66823120##define NOTES$_DEF_SUBJECT 66823128 $#define NOTES$_MAIL_SUBJECT 66823136##define NOTES$_TEXT_APPEND 66823144 &#define NOTES$_NEVER_ACCESSED 66823152#define NOTES$_EXPIRED 66823160i!#define NOTES$_ANSWER_NO 66823168 !#define NOTES$_WRONG_ANS 66823176r!#define NOTES$_CREATEBUF 66823184 #define NOTES$_WRITEBUF 66823192%#define NOTES$_SHOW_PROF_DEF 66823200 !#define NOTES$_ASK_YESNO 66823208 #define NOTES$_MODPRIVS 66823216$#define NOTES$_SHOW_ENT_OBJ 66823224!#define NOTES$_CANCELLED 66823232c&#define NOTES$_SHOW_CONF_RESR 66823240#define NOTES$_CC 66823248%#define NOTES$_MODERATORS_OF 66823256e##define NOTES$_ALREXISTS_A 66823264!#define NOTES$_INVACCNAM 66823272v!#define NOTES$_ILLCTXADR 66830338 #define NOTES$_WRONGCTX 66830346!#define NOTES$_INVITMCOD 66830355w!#define NOTES$_INVITMLEN 66830362r!#define NOTES$_MISREQITM 66830370 !#define NOTES$_NOCURNOTE 66830378 $#define NOTES$_CANTCONTINUE 66830386!#define NOTES$_FAILGETVM 66830394*"#define NOTES$_STRCOPYERR 66830402!#define NOTES$_ILLNOTEID 66830410 "#define NOTES$_NOSUCHNOTE 66830418"#define NOTES$_SRV_NOINIT 66830426"#define NOTES$_SRV_INVSEQ 66830434%#define NOTES$_SRV_NOCONTEXT 66830442 &#define NOTES$_SRV_NOUSERNAME 66830450##define NOTES$_SRV_INVITEM 66830458 !#define NOTES$_CREPRIJOB 66830466*#define NOTES$_PREMEOF 66830474i##define NOTES$_NOPRIVDEL_N 66830482t%#define NOTES$_NOPRIVWRITE_N 66830490h%#define NOTES$_SRV_UNRECPROT 66830498 "#define NOTES$_NOFILEOPEN 66830506%#define NOTES$_ALREXISTS_OLD 66830514 ##define NOTES$_NOSUCHENTRY 66830522*!#define NOTES$_MUST_OPEN 66830530*'#define NOTES$_MUST_READ_REPLY 66830538T)#define NOTES$_MUST_READ_FORWARD 66830546)#define NOTES$_NOT_ENTERING_NOTE 66830554E(#define NOTES$_NONOTE_SPECIFIED 66830562%#define NOTES$_ERROR_MAILING 66830570n'#define NOTES$_NOPREVIOUS_NOTE 66830578T)#define NOTES$_ALREADY_IN_EDITOR 66830586S(#define NOTES$_ALREADY_IN_NOTES 66830594-#define NOTES$_MUST_COMPLETE_MESSAGE 66830602E&#define NOTES$_UNREC_CALLUSER 66830610%#define NOTES$_NO_SUCH_CLASS 66830618K%#define NOTES$_NO_SUCH_ENTRY 668306261'#define NOTES$_NO_SUCH_KEYWORD 66830634$#define NOTES$_NO_SUCH_NOTE 66830642$#define NOTES$_NO_SUCH_USER 66830650%#define NOTES$_NOMORE_RECALL 66830658E$#define NOTES$_EDIT_OR_FILE 66830666#define NOTES$_NOMAIL 66830674"#define NOTES$_ERRORWRITE 66830682"#define NOTES$_NOMAILPROC 66830690#define NOTES$_IFF 66830698f#define NOTES$_NOPRIV 66830706$#define NOTES$_CTRLC_CANCEL 66830714!#define NOTES$_ERRCREKEY 66830722f"#define NOTES$_ERRADDMARK 66830730!#define NOTES$_ERRADDMEM 66830738$!#define NOTES$_ERRADDENT 66830746$!#define NOTES$_ERRDELENT 66830754$"#define NOTES$_ERRDELMARK 66830762$#define NOTES$_ERRDELMEMBER 66830770"#define NOTES$_ERRMODNOTE 66830778##define NOTES$_ERRMODENTRY 66830786E%#define NOTES$_ERRMODKEYWORD 66830794O"#define NOTES$_ERRACCLIST 66830802#define NOTES$_NOWRITE 66830810N$#define NOTES$_NOSUCHMARKER 66830818##define NOTES$_NOPRIVMOD_N 66830826##define NOTES$_ALREXISTS_C 66830834n##define NOTES$_ALREXISTS_E 66830842E##define NOTES$_ALREXISTS_K 66830850$##define NOTES$_ALREXISTS_U 66830858_##define NOTES$_ALREXISTS_M 66830866E&#define NOTES$_NO_SUCH_MARKER 66830874!#define NOTES$_NOMEMBERS 66830882 !#define NOTES$_NOTMEMBER 66830890_%#define NOTES$_BASEWRITELOCK 66830898U$#define NOTES$_NOWRITE_CONF 66830906"#define NOTES$_SPELLERROR 66830914!#define NOTES$_PNINVCHAR 66830922O!#dw5$ NOTES026.A8b  [NOTES.TEMPKIT]NOTES$ITEMDEF.H;1;1P6O(efine NOTES$_SENDNOAUT 66830930O$#define NOTES$_INVCLASSNAME 66830938%#define NOTES$_CLASSNOTFOUND 66830946E #define NOTES$_FORWLOOP 66830954$#define NOTES$_BAD_DIR_LINE 66830962!#define NOTES$_NO_SELECT 66830970$##define NOTES$_NOTE_NOCONF 66830978$$#define NOTES$_UNREC_EDITOR 66830986!#define NOTES$_NO_CLASSP 66830994n!#define NOTES$_NMTHISDIR 66831002##define NOTES$_NO_NEW_NOTE 66831010d%#define NOTES$_CAPTIVE_SPAWN 66831018d&#define NOTES$_NOTHING_TO_SET 66831026"#define NOTES$_NOHELPTERM 66831034!#define NOTES$_INVENTNAM 66831042 !#define NOTES$_INVCLANAM 66831050A$#define NOTES$_INVENTRYNAME 66831058)#define NOTES$_NO_ENTRY_IN_CLASS 668310666*#define NOTES$_ALREXISTS_IN_CLASS 66831074!#define NOTES$_NOMARKERS 66831082f"#define NOTES$_NOKEYWORDS 66831090!#define NOTES$_NOLICENSE 66831098 #define NOTES$_NOFILE 66831106#define NOTES$_NOEDT 668311147#define NOTES$_NOENTRY 66831122 #define NOTES$_NOEVE 668311305 #define NOTES$_TPUERROR 66831138)#define NOTES$_ENTALR_IN_CLASSES 66831146f&#define NOTES$_NO_RANGE_ALLOW 66831154 #define NOTES$_NOTINCMD 66831162'#define NOTES$_CONF_REPLY_ONLY 66831170E!#define NOTES$_USRNOTADD 66831178O!#define NOTES$_INVKEYNAM 66831186n&#define NOTES$_INVKEYWORDNAME 66831194!#define NOTES$_INVMRKNAM 66831202O%#define NOTES$_INVMARKERNAME 66831210_!#define NOTES$_INVUSRNAM 66831218N##define NOTES$_INVUSERNAME 66831226I##define NOTES$_INVNOTESPEC 66831234'#define NOTES$_RANGE_ONE_TOPIC 66831242f%#define NOTES$_RANGE_TOO_BIG 66831250n #define NOTES$_NO_TOPIC 66831258##define NOTES$_ALREXISTS_N 66831266d"#define NOTES$_NONOTESMOD 66831274'#define NOTES$_MEMBERNAME_NODE 66831282d #define NOTES$_CONFQUAL 66831290$#define NOTES$_OPRNOTSUPCNF 66831298#define NOTES$_BADTIME 66831306N"#define NOTES$_INVOBJNAME 66831314%#define NOTES$_INVOBJECTNAME 66831322_ #define NOTES$_NOATTRIB 66831330 #define NOTES$_NOOBJECT 66831338!#define NOTES$_NOSUCHOBJ 66831346d #define NOTES$_LWKERROR 66831354%#define NOTES$_NOLINKLICENSE 66831362d!#define NOTES$_NOTNETWRK 66842628D"#define NOTES$_WRONG_ACCT 66842636$#define NOTES$_SRV_INIT_ERR 66842644!#define NOTES$_WRONG_LMF 66842652I 0$#pragma __member_alignment __restore/*** MODULE SERVERDEF ***/!#pragma __member_alignment __saveM#pragma __nomember_alignment#define NOTES$K_INITIALIZE 1#define NOTES$K_MORE 2 #define NOTES$K_NOTEFILE_BEGIN 3#define NOTES$K_NOTEFILE_END 4##define NOTES$K_NOTEFILE_GET_INFO 5 !#define NOTES$K_NOTEFILE_MODIFY 6I%#define NOTES$K_NOTEFILE_LIST_BEGIN 7S#define NOTES$K_NOTEFILE_LIST 8_#define NOTES$K_KEYWORD_BEGIN 9D#define NOTES$K_KEYWORD_END 10#define NOTES$K_KEYWORD_ADD 11!#define NOTES$K_KEYWORD_DELETE 12I#define NOTES$K_KEYWORD_GET 13##define NOTES$K_KEYWORD_GET_NOTE 14R!#define NOTES$K_KEYWORD_MODIFY 15N#define NOTES$K_NOTE_BEGIN 16O#define NOTES$K_NOTE_END 17_#define NOTES$K_NOTE_ADD 18T #define NOTES$K_NOTE_ADD_TEXT 19#define NOTES$K_NOTE_DELETE 20#define NOTES$K_NOTE_GET 21S##define NOTES$K_NOTE_GET_KEYWORD 220 #define NOTES$K_NOTE_GET_TEXT 23#define NOTES$K_NOTE_MODIFY 24#define NOTES$K_USER_BEGIN 25n#define NOTES$K_USER_END 26$#define NOTES$K_USER_ADD 27$#define NOTES$K_USER_DELETE 28#define NOTES$K_USER_GET 29O#define NOTES$K_USER_MODIFY 30#define NOTES$K_CLASS_ADD 31#define NOTES$K_CLASS_BEGIN 32#define NOTES$K_CLASS_DELETE 33L#define NOTES$K_CLASS_END 34#define NOTES$K_CLASS_GET 35"#define NOTES$K_CLASS_GET_ENTRY 36#define NOTES$K_CLASS_MODIFY 37n#define NOTES$K_ENTRY_ADD 38#define NOTES$K_ENTRY_BEGIN 39#define NOTES$K_ENTRY_DELETE 40E#define NOTES$K_ENTRY_END 41#define NOTES$K_ENTRY_GET 42"#define NOTES$K_ENTRY_GET_CLASS 43$#define NOTES$K_ENTRY_GET_KEYWORD 44#define NOTES$K_ENTRY_MODIFY 45$ #define NOTES$K_PROFILE_BEGIN 46#define NOTES$K_PROFILE_END 47#define NOTES$K_PROFILE_GET 48!#define NOTES$K_PROFILE_MODIFY 49n#define NOTES$K_STATUS 129##define NOTES$K_REQUEST_CONTEXT 130O#define NOTES$K_ERROR_TLV 131$#define NOTES$K_ERROR_NARGS 132D#define NOTES$K_ERROR_ARG 133 #define NOTES$K_ERROR_TEXT 134"#define NOTES$K_CANCEL_REQUEST 135%#define NOTES$K_REQUEST_CANCELLED 136T!#define NOTES$K_INIT_VERSION 8193"#define NOTES$K_INIT_NODENAME 8194"#define NOTES$K_INIT_USERNAME 8195&#define NOTES$K_INIT_CAPABILITIES 8196%#define NOTES$K_INIT_MAXITEMCODE 8197$ #define NOTES$M_INIT_VMSMSGS 0x1struct CAPABILITIES {L union {* unsigned int NOTES$L_CAPABILITIES; struct {E. unsigned NOTES$V_INIT_VMSMSGS : 1;) unsigned NOTES$V_FILL_2_ : 7;_ } NOTES$R_FILL_1_; } NOTES$R_FILL_0_; } ;$"#define NOTES$K_PROTOCOL_VERSION 2!#define NOTES$K_PROTOCOL_UPDATE 6Aint NOTES$SERVER_BEGIN() ; E$#pragma __member_alignment __restore"*[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1+,9b.6/J 4N6/^- 0123KPWO056lģ7Xģ89GJHJ ; N; ****************************************************************************N; * *N; * Copyright (c) 2004 *N; * by DIGITAL Equipment Corporation, Maynard, Mass. *N; * All rights reserved. *N; * *N; * This software is furnished under a license and may be used and copied *N; * only in accordance with the terms of such license and with the *N; * inclusion of the above copyright notice. This software or any other *N; * copies thereof may not be provided or otherwise made available to any *N; * other person. No title to and ownership of the software is hereby *N; * transferred. *N; * *N; * The information in this software is subject to change without notice *N; * and should not be construed as a commitment by DIGITAL Equipment *N; * Corporation. *N; * *N; * DIGITAL assumes no responsibility for the use or reliability of its *N; * software on equipment which is not supplied by DIGITAL. *N; * *N; **************************************************************************** % .MACRO NOTEITEMS,..EQU=<=>,..COL=<:>NOTES$K_MIN_ITEM'..equ'1NOTES$K_NOSIGNAL'..equ'1NOTES$K_TEXT_STRING'..equ'2NOTES$K_TEXT_END'..equ'3NOTES$K_TEXT_TYPE'..equ'4"NOTES$K_NOTE_ALL_RESPONSES'..equ'5NOTES$K_NOTE_AUTHOR'..equ'6NOTES$K_NOTE_BACK_NOTE'..equ'7"NOTES$K_NOTE_BACK_RESPONSE'..equ'8 NOTES$K_NOTE_BEFORE_TIME'..equ'9NOTES$K_NOTE_BLINK_ID'..equ'10NOTES$K_NOTE_BLINK_UID'..equ'11!NOTES$K_NOTE_CREATE_TIME'..equ'12NOTES$K_NOTE_HIDDEN'..equ'13NOTES$K_NOTE_ID'..equ'14NOTES$K_NOTE_NEXT_NOTE'..equ'15#NOTES$K_NOTE_NEXT_RESPONSE'..equ'16 NOTES$K_NOTE_NUMRECORDS'..equ'17"NOTES$K_NOTE_NUMRESPONSES'..equ'18NOTES$K_NOTE_PEN_NAME'..equ'19#NOTES$K_NOTE_SEARCH_STRING'..equ'20"NOTES$K_NOTE_SEARCH_TITLE'..equ'21 NOTES$K_NOTE_SINCE_TIME'..equ'22NOTES$K_NOTE_TITLE'..equ'23NOTES$K_NOTE_UID'..equ'24NOTES$K_NOTE_UNSEEN'..equ'25NOTES$K_NOTE_USER_AREA'..equ'26NOTES$K_NOTE_WRITELOCK'..equ'27!NOTES$K_NOTEFILE_CONTEXT'..equ'28NOTES$K_CLASS_CONTEXT'..equ'29NOTES$K_ENTRY_CONTEXT'..equ'30 NOTES$K_KEYWORD_CONTEXT'..equ'31NOTES$K_NOTE_CONTEXT'..equ'32 NOTES$K_PROFILE_CONTEXT'..equ'33NOTES$K_SERVER_CONTEXT'..equ'34NOTES$K_USER_CONTEXT'..equ'35NOTES$K_CLASS_NAME'..equ'36NOTES$K_CLASS_NEW_NAME'..equ'37NOTES$K_CONTINUE'..equ'38NOTES$K_ENTRY_NAME'..equ'39NOTES$K_ENTRY_NEW_NAME'..equ'40 NOTES$K_ENTRY_USER_Ax2S$ NOTES026.A9b "[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1N6v"REA'..equ'41NOTES$K_HINT'..equ'42NOTES$K_KEYWORD_NAME'..equ'43!NOTES$K_KEYWORD_NEW_NAME'..equ'44 NOTES$K_NOTEFILE_CREATE'..equ'45%NOTES$K_NOTEFILE_CREATE_TIME'..equ'46&NOTES$K_NOTEFILE_DEFAULT_NAME'..equ'47$NOTES$K_NOTEFILE_ENTRYTOTAL'..equ'48#NOTES$K_NOTEFILE_FILE_NAME'..equ'49 NOTES$K_NOTEFILE_FORMAT'..equ'50"NOTES$K_NOTEFILE_HIGH_UID'..equ'51!NOTES$K_NOTEFILE_LASTREV'..equ'52"NOTES$K_NOTEFILE_MODERATE'..equ'53#NOTES$K_NOTEFILE_MODERATOR'..equ'54 NOTES$K_NOTEFILE_NOTICE'..equ'55"NOTES$K_NOTEFILE_NUMNOTES'..equ'56&NOTES$K_NOTEFILE_RELATED_NAME'..equ'57$NOTES$K_NOTEFILE_RESTRICTED'..equ'58%NOTES$K_NOTEFILE_RESULT_SPEC'..equ'59NOTES$K_NOTEFILE_TITLE'..equ'60#NOTES$K_NOTEFILE_TRANSPORT'..equ'61#NOTES$K_NOTEFILE_USER_AREA'..equ'62!NOTES$K_PROFILE_AUTO_DIR'..equ'63$NOTES$K_PROFILE_AUTO_UNSEEN'..equ'64#NOTES$K_PROFILE_CLASS_NAME'..equ'65NOTES$K_PROFILE_EDITOR'..equ'66%NOTES$K_PROFILE_EDITOR_SPAWN'..equ'67!NOTES$K_PROFILE_PEN_NAME'..equ'68NOTES$K_PROFILE_PRINT'..equ'69"NOTES$K_PROFILE_TEMPORARY'..equ'70NOTES$K_SEEN_MAP'..equ'71$NOTES$K_USER_CREATE_KEYWORD'..equ'72NOTES$K_USER_MAIL_ADDR'..equ'73NOTES$K_USER_MODERATE'..equ'74NOTES$K_USER_NAME'..equ'75NOTES$K_USER_NEW_NAME'..equ'76"NOTES$K_USER_NEW_NODENAME'..equ'77NOTES$K_USER_NODENAME'..equ'78!NOTES$K_NOTE_BLINK_TITLE'..equ'79NOTES$K_NOTE_MARK_SEEN'..equ'80!NOTES$K_NOTE_NEXT_UNSEEN'..equ'81#NOTES$K_NOTE_HINT_GET_TEXT'..equ'82NOTES$K_NOTE_X_KEYWORD'..equ'83NOTES$K_KEYWORD_X_NOTE'..equ'84NOTES$K_CLASS_X_ENTRY'..equ'85NOTES$K_ENTRY_X_CLASS'..equ'86 NOTES$K_ENTRY_X_KEYWORD'..equ'87NOTES$K_DELIF0'..equ'88NOTES$K_UNIENTRY'..equ'89!NOTES$K_ENTRY_UNSEEN_EST'..equ'90"NOTES$K_ENTRY_LAST_STATUS'..equ'91NOTES$K_NOTE_CAN_REPLY'..equ'92#NOTES$K_NOTE_BEFORE_TIME_A'..equ'93#NOTES$K_NOTE_CREATE_TIME_A'..equ'94"NOTES$K_NOTE_SINCE_TIME_A'..equ'95'NOTES$K_NOTEFILE_CREATE_TIME_A'..equ'96#NOTES$K_NOTEFILE_LASTREV_A'..equ'97&NOTES$K_NOTE_HINT_GET_KEYWORD'..equ'98&NOTES$K_KEYWORD_HINT_GET_NOTE'..equ'99!NOTES$K_SERVER_MAX_ITEM'..equ'100&NOTES$K_CLASS_HINT_GET_ENTRY'..equ'101!NOTES$K_CLASS_USER_AREA'..equ'102NOTES$K_CLASS_UID'..equ'103&NOTES$K_ENTRY_HINT_GET_CLASS'..equ'104(NOTES$K_ENTRY_HINT_GET_KEYWORD'..equ'105#NOTES$K_ENTRY_OBJECT_NAME'..equ'106#NOTES$K_ENTRY_OBJECT_SPEC'..equ'107NOTES$K_ENTRY_UID'..equ'108#NOTES$K_KEYWORD_USER_AREA'..equ'109NOTES$K_KEYWORD_UID'..equ'110NOTES$K_NODE_NAME'..equ'111!NOTES$K_NODE_X_USERNAME'..equ'112NOTES$K_NOTE_NEW_ID'..equ'113NOTES$K_NOTE_TYPE'..equ'114%NOTES$K_NOTEFILE_REPLY_ONLY'..equ'115#NOTES$K_PROFILE_USER_AREA'..equ'116"NOTES$K_USER_ACCESS_LIST'..equ'117#NOTES$K_USER_WRITE_BYPASS'..equ'118 NOTES$K_USER_USER_AREA'..equ'119NOTES$K_USER_UID'..equ'120NOTES$K_USER_NOACCESS'..equ'121NOTES$K_MAX_ITEM'..equ'122#NOTES$K_NOTEFILE_WRITELOCK'..equ'27"NOTES$K_USER_ACCESS_NODE'..equ'111NOTES$K_USER_ACCESS'..equ'117NOTES$K_BASE_NOTE'..equ'1NOTES$K_REPLY_NOTE'..equ'2NOTES$K_UNKNOWN_TYPE'..equ'0NOTES$K_DDIF_TYPE'..equ'1NOTES$K_ASCII_TYPE'..equ'2NOTES$K_RESERVED_TYPE'..equ'3NOTES$K_WPS_PLUS_TYPE'..equ'4NOTES$K_TLV_INPUT'..equ'4097NOTES$K_TLV_OUTPUT'..equ'4098NOTES$K_CHAIN'..equ'65535NOTES$K_NOOP'..equ'65534; External entry NOTES$NOTES%; External entry NOTES$NOTEFILE_BEGIN(; External entry NOTES$NOTEFILE_GET_INFO&; External entry NOTES$NOTEFILE_MODIFY*; External entry NOTES$NOTEFILE_LIST_BEGIN$; External entry NOTES$NOTEFILE_LIST#; External entry NOTES$NOTEFILE_END"; External entry NOTES$CLASS_BEGIN ; External entry NOTES$CLASS_ADD#; External entry NOTES$CLASS_DELETE ; External entry NOTES$CLASS_GET&; External entry NOTES$CLASS_GET_ENTRY#; External entry NOTES$CLASS_MODIFY ; External entry NOTES$CLASS_END"; External entry NOTES$ENTRY_BEGIN ; External entry NOTES$ENTRY_ADD#; External entry NOTES$ENTRY_DELETE ; External entry NOTES$ENTRY_GET&; External entry NOTES$ENTRY_GET_CLASS(; External entry NOTES$ENTRY_GET_KEYWORD#; External entry NOTES$ENTRY_MODIFY#; External entry NOTES$ENTRY_UPDATE ; External entry NOTES$ENTRY_END$; External entry NOTES$KEYWORD_BEGIN"; External entry NOTES$KEYWORD_ADD%; External entry NOTES$KEYWORD_DELETE"; External entry NOTES$KEYWORD_GET'; External entry NOTES$KEYWORD_GET_NOTE%; External entry NOTES$KEYWORD_MODIFY"; External entry NOTES$KEYWORD_END!; External entry NOTES$NOTE_BEGIN; External entry NOTES$NOTE_ADD$; External entry NOTES$NOTE_ADD_TEXT"; External entry NOTES$NOTE_DELETE; External entry NOTES$NOTE_GET'; External entry NOTES$NOTE_GET_KEYWORD$; External entry NOTES$NOTE_GET_TEXT"; External entry NOTES$NOTE_MODIFY; External entry NOTES$NOTE_END$; External entry NOTES$PROFILE_BEGIN"; External entry NOTES$PROFILE_GET%; External entry NOTES$PROFILE_MODIFY"; External entry NOTES$PROFILE_END!; External entry NOTES$USER_BEGIN; External entry NOTES$USER_ADD"; External entry NOTES$USER_DELETE; External entry NOTES$USER_GET"; External entry NOTES$USER_MODIFY; External entry NOTES$USER_END .ENDM ( .MACRO $NOTESMSGDEF,..EQU=<=>,..COL=<:>NOTES$_FACILITY'..equ'1019NOTES$_NORMAL'..equ'66813961NOTES$_CMDKEYENA'..equ'66813969NOTES$_NUMKEYENA'..equ'66813977!NOTES$_PROFILE_MOD'..equ'66813985"NOTES$_PROFILE_TEMP'..equ'66813993NOTES$_MODERATE'..equ'66814001 NOTES$_NOMODERATE'..equ'66814009!NOTES$_ENTRY_ADDED'..equ'66814017%NOTES$_KEYWORD_ADDNOTE'..equ'66814025"NOTES$_MARKER_ADDED'..equ'66814033"NOTES$_MEMBER_ADDED'..equ'66814041%NOTES$_KEYWORD_CREATED'..equ'66814049#NOTES$_ENTRY_DELETED'..equ'66814057%NOTES$_KEYWORD_DELETED'..equ'66814065%NOTES$_KEYWORD_DELNOTE'..equ'66814073$NOTES$_MARKER_DELETED'..equ'66814081"NOTES$_NOTE_DELETED'..equ'66814089$NOTES$_MEMBER_DELETED'..equ'66814097#NOTES$_NOTE_MODIFIED'..equ'66814105$NOTES$_ENTRY_MODIFIED'..equ'66814113&NOTES$_KEYWORD_MODIFIED'..equ'66814121%NOTES$_MEMBER_MODIFIED'..equ'66814129NOTES$_CLASS_SET'..equ'66814137!NOTES$_INSERT_MODE'..equ'66814145%NOTES$_OVERSTRIKE_MODE'..equ'66814153$NOTES$_ENTRY_DELCLASS'..equ'66814161$NOTES$_SPACE_COMPRESS'..equ'66814169"NOTES$_ENTRY_ADDED2'..equ'66814177"NOTES$_OBJECT_ADDED'..equ'66814185$NOTES$_OBJECT_DELETED'..equ'66814193%NOTES$_OBJECT_MODIFIED'..equ'66814201NOTES$_MORE_INFO'..equ'66818051$NOTES$_SRV_NEWPROTUPD'..equ'66818059#NOTES$_ENTRY_ABORTED'..equ'66818067!NOTES$_NOTES_WRFIL'..equ'66818075!NOTES$_NOTES_WRBUF'..equ'66818083NOTES$_DIRTOBUF'..equ'66818091NOTES$_DIRTOFILE'..equ'66818099NOTES$_HIDDEN'..equ'66818107NOTES$_OPEN_CONF'..equ'66818115!NOTES$_UPDATE_CONF'..equ'66818123NOTES$_MARKSUPER'..equ'66818131 NOTES$_OPEN_CONF2'..equ'66818139#NOTES$_BEING_WRITTEN'..equ'66818147NOTES$_USING_EDT'..equ'66818155NOTES$_HELPBUF'..equ'66818163NOTES$_HELPHDR'..equ'66818171NOTES$_HELPNXT'..equ'66818179NOTES$_HELPASK1'..equ'66818187NOTES$_HELPASK2'..equ'66818195NOTES$_HELPTOP'..equ'66818203NOTES$_HELPBOT'..equ'66818211NOTES$_ENTRYID'..equ'66818219NOTES$_NOTEID'..equ'66818227NOTES$_TOPICS'..equ'66818235NOTES$_UNSEEN'..equ'66818243 NOTES$_TOTALNOTES'..equ'66818251NOTES$_DATELINE'..equ'66818259NOTES$_ONECLASS'..equ'66818267!NOTES$_MANYCLASSES'..equ'66818275NOTES$_TITLEID'..equ'66818283NOTES$_NOTICEID'..equ'66818291 NOTES$_CONFCREUPD'..equ'66818299NOTES$_MAILSUBJ'..equ'66818307NOTES$_FILEID'..equ'66818315!NOTES$_MODERATORID'..equ'66818323%NOTES$_OLD_ALREXISTS_A'..equ'66818331#NOTES$_OLD_INVACCNAM'..equ'66818339 NOTES$_LOCATIONID'..equ'66818347!NOTES$_CONF_BANNER'..equ'66818355!NOTES$_READ_BANNER'..equ'66818363"NOTES$_TOPIC_BANNER'..equ'66818371"NOTES$_REPLY_BANNER'..equ'66818379!NOTES$_INFO_BANNER'..equ'66818387!NOTES$_CREATE_CONF'..equ'66818395"NOTES$_UPDATE_ENTRY'..equ'66818403!NOTES$_GETTING_DIR'..equ'66818411"NOTES$_GETTING_NOTE'..equ'66818419"NOTES$_EXTRACT_NOTE'..equ'66818427 NOTES$_PRINT_NOTE'..equ'66818435 NOTES$_SEARCH_FOR'..equ'66818443!NOTES$_SEARCH_NEXT'..equ'66818451#NOTES$_DELETING_NOTE'..equ'66818459NOTES$_AUTHORID'..equ'66818467NOTES$_TOPICID'..equ'66818475NOTES$_KEYWORDID'..equ'66818483"NOTES$_CONFERENCEID'..equ'66818491NOTES$_ATTRIBID'..equ'66818499!NOTES$_WRITELOCKID'..equ'66818507NOTES$_HIDDENID'..equ'66818515"NOTES$_GRAPHIC_VIEW'..equ'66818523"NOTES$_UNKNOWN_VIEW'..equ'66818531!NOTES$_DDIF_FORMAT'..equ'66818539NOTES$_PS_FORMAT'..equ'66818547NOTES$_USEFILEID'..equ'66818555NOTES$_COPYRIGHT'..equ'66818563$NOTES$_SRV_OLDPROTUPD'..equ'66822144%NOTES$_NO_MORE_CLASSES'..equ'66822152%NOTES$_NO_MORE_ENTRIES'..equ'66822160&NOTES$_NO_MORE_KEYWORDyl/$ NOTES026.A9b "[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1N6)"S'..equ'66822168#NOTES$_NO_MORE_NOTES'..equ'66822176"NOTES$_NO_MORE_TEXT'..equ'66822184#NOTES$_NO_MORE_USERS'..equ'66822192 NOTES$_NONOTEBOOK'..equ'66822200NOTES$_NOERRTXT'..equ'66822208"NOTES$_NEEDNBMODIFY'..equ'66822216NOTES$_MSGSEND'..equ'66822224 NOTES$_ENTERINTRO'..equ'66822232NOTES$_CTRLZMAIL'..equ'66822240 NOTES$_NOTREADING'..equ'66822248%NOTES$_NO_MORE_REPLIES'..equ'66822256 NOTES$_ANSWER_YES'..equ'66822264NOTES$_EOB_TEXT'..equ'66822272NOTES$_PRESS_PF2'..equ'66822280 NOTES$_NOTES_HDR1'..equ'66822288#NOTES$_PRESS_CTRLZ_N'..equ'66822296$NOTES$_SET_CONFERENCE'..equ'66822304!NOTES$_ENTER_TITLE'..equ'66822312"NOTES$_PRESS_RETURN'..equ'66822320#NOTES$_PRESS_ANY_KEY'..equ'66822328NOTES$_DIR_HEAD'..equ'66822336!NOTES$_ENDREQ_LIST'..equ'66822344#NOTES$_NOTE_END_TEXT'..equ'66822352NOTES$_TEXT_NOTE'..equ'66822360 NOTES$_TEXT_REPLY'..equ'66822368NOTES$_NO_NB'..equ'66822376NOTES$_YOUR_SP'..equ'66822384#NOTES$_NOTE_COMPLETE'..equ'66822392!NOTES$_NOTE_NOTEXT'..equ'66822400NOTES$_NOREPLIES'..equ'66822408NOTES$_ONE_REPLY'..equ'66822416"NOTES$_MANY_REPLIES'..equ'66822424NOTES$_N_OF_N'..equ'66822432"NOTES$_ENTER_CTITLE'..equ'66822440!NOTES$_DELETE_NOTE'..equ'66822448 NOTES$_NOTENOTDEL'..equ'66822456"NOTES$_FINDING_HELP'..equ'66822464NOTES$_NOKEYHELP'..equ'66822472NOTES$_NOTESQADD'..equ'66822480 NOTES$_REALLYQUIT'..equ'66822488!NOTES$_MAILNOTSENT'..equ'66822496NOTES$_NUMNOTES'..equ'66822504NOTES$_SENDTO'..equ'66822512NOTES$_SUBJECT'..equ'66822520"NOTES$_PROFILE_USER'..equ'66822528NOTES$_MORE_TEXT'..equ'66822536!NOTES$_SHOW_MARK_1'..equ'66822544!NOTES$_SHOW_MARK_2'..equ'66822552!NOTES$_SHOW_MARK_3'..equ'66822560 NOTES$_SHOW_ENTRY'..equ'66822568$NOTES$_SHOW_PROF_EDIT'..equ'66822576&NOTES$_SHOW_PROF_DCLASS'..equ'66822584%NOTES$_SHOW_PROF_PRINT'..equ'66822592$NOTES$_SHOW_PROF_NAME'..equ'66822600$NOTES$_SHOW_PROF_AUTO'..equ'66822608$NOTES$_SHOW_PROF_ADIR'..equ'66822616$NOTES$_SHOW_PROF_AUNS'..equ'66822624$NOTES$_SHOW_PROF_NONE'..equ'66822632!NOTES$_ENDREQ_SHOW'..equ'66822640#NOTES$_CTRLZ_COM_RET'..equ'66822648#NOTES$_SHOW_ENT_CONF'..equ'66822656#NOTES$_SHOW_ENT_FILE'..equ'66822664 NOTES$_SHOW_CLASS'..equ'66822672#NOTES$_SHOW_CONF_MOD'..equ'66822680%NOTES$_SHOW_CONF_RESA1'..equ'66822688%NOTES$_SHOW_CONF_RESA2'..equ'66822696%NOTES$_SHOW_CONF_RESK1'..equ'66822704%NOTES$_SHOW_CONF_RESK2'..equ'66822712!NOTES$_SHOW_KEYW_1'..equ'66822720!NOTES$_SHOW_KEYW_2'..equ'66822728NOTES$_SHOW_MOD'..equ'66822736#NOTES$_SHOW_MOD_NODE'..equ'66822744#NOTES$_SHOW_MOD_USER'..equ'66822752$NOTES$_SHOW_USER_MADR'..equ'66822760$NOTES$_SHOW_USER_PRIV'..equ'66822768$NOTES$_SHOW_USER_JOIN'..equ'66822776#NOTES$_SHOW_NOTE_HID'..equ'66822784#NOTES$_SHOW_NOTE_VIS'..equ'66822792$NOTES$_SHOW_NOTE_REP1'..equ'66822800$NOTES$_SHOW_NOTE_REP2'..equ'66822808$NOTES$_SHOW_PROF_PERM'..equ'66822816$NOTES$_SHOW_USER_FULL'..equ'66822824$NOTES$_SHOW_MODU_FULL'..equ'66822832NOTES$_NMF'..equ'66822840NOTES$_NJU'..equ'66822848%NOTES$_NO_MORE_MARKERS'..equ'66822856NOTES$_SEARCHF1'..equ'66822864NOTES$_SEARCHF2'..equ'66822872NOTES$_DIR_CONF'..equ'66822880$NOTES$_DIR_CONF_TITLE'..equ'66822888NOTES$_N_TOPICS'..equ'66822896"NOTES$_DIR_NB_CLASS'..equ'66822904"NOTES$_CTRLZ_CANCEL'..equ'66822912!NOTES$_REPBUFINFO1'..equ'66822920!NOTES$_REPBUFINFO2'..equ'66822928 NOTES$_NMORELINES'..equ'66822936!NOTES$_READINGCONF'..equ'66822944!NOTES$_WILLNOTSEND'..equ'66822952NOTES$_WORKING'..equ'66822960 NOTES$_FILECREUPD'..equ'66822968NOTES$_ENTERNOTE'..equ'66822976NOTES$_ANDTO'..equ'66822984 NOTES$_SENDANYWAY'..equ'66822992NOTES$_SPAWNKEY'..equ'66823000NOTES$_CALLKEY'..equ'66823008NOTES$_EDICALL'..equ'66823016NOTES$_EDISPAWN'..equ'66823024!NOTES$_SPELLSELECT'..equ'66823032!NOTES$_SPELLBUFFER'..equ'66823040 NOTES$_SPELLSTART'..equ'66823048NOTES$_SPELLDONE'..equ'66823056"NOTES$_SENDING_MAIL'..equ'66823064NOTES$_SENDBOTH'..equ'66823072NOTES$_NONESENT'..equ'66823080!NOTES$_SENT_TO_ALL'..equ'66823088%NOTES$_SHOW_CONF_RESW1'..equ'66823096%NOTES$_SHOW_CONF_RESW2'..equ'66823104 NOTES$_TEXT_TOPIC'..equ'66823112 NOTES$_MEMBERS_OF'..equ'66823120!NOTES$_DEF_SUBJECT'..equ'66823128"NOTES$_MAIL_SUBJECT'..equ'66823136!NOTES$_TEXT_APPEND'..equ'66823144$NOTES$_NEVER_ACCESSED'..equ'66823152NOTES$_EXPIRED'..equ'66823160NOTES$_ANSWER_NO'..equ'66823168NOTES$_WRONG_ANS'..equ'66823176NOTES$_CREATEBUF'..equ'66823184NOTES$_WRITEBUF'..equ'66823192#NOTES$_SHOW_PROF_DEF'..equ'66823200NOTES$_ASK_YESNO'..equ'66823208 NOTES$_MODPRIVS'..equ'66823216"NOTES$_SHOW_ENT_OBJ'..equ'66823224NOTES$_CANCELLED'..equ'66823232 $NOTES$_SHOW_CONF_RESR'..equ'66823240NOTES$_CC'..equ'66823248#NOTES$_MODERATORS_OF'..equ'66823256 !NOTES$_ALREXISTS_A'..equ'66823264 NOTES$_INVACCNAM'..equ'66823272oNOTES$_ILLCTXADR'..equ'66830338 NOTES$_WRONGCTX'..equ'66830346NOTES$_INVITMCOD'..equ'66830355 NOTES$_INVITMLEN'..equ'66830362 NOTES$_MISREQITM'..equ'66830370 NOTES$_NOCURNOTE'..equ'66830378*"NOTES$_CANTCONTINUE'..equ'66830386NOTES$_FAILGETVM'..equ'66830394 NOTES$_STRCOPYERR'..equ'66830402NOTES$_ILLNOTEID'..equ'66830410l NOTES$_NOSUCHNOTE'..equ'66830418 NOTES$_SRV_NOINIT'..equ'66830426 NOTES$_SRV_INVSEQ'..equ'66830434#NOTES$_SRV_NOCONTEXT'..equ'66830442v$NOTES$_SRV_NOUSERNAME'..equ'66830450!NOTES$_SRV_INVITEM'..equ'66830458tNOTES$_CREPRIJOB'..equ'66830466 NOTES$_PREMEOF'..equ'66830474d!NOTES$_NOPRIVDEL_N'..equ'66830482 #NOTES$_NOPRIVWRITE_N'..equ'66830490 #NOTES$_SRV_UNRECPROT'..equ'66830498 NOTES$_NOFILEOPEN'..equ'66830506#NOTES$_ALREXISTS_OLD'..equ'66830514s!NOTES$_NOSUCHENTRY'..equ'66830522 NOTES$_MUST_OPEN'..equ'66830530n%NOTES$_MUST_READ_REPLY'..equ'66830538i'NOTES$_MUST_READ_FORWARD'..equ'66830546 'NOTES$_NOT_ENTERING_NOTE'..equ'66830554 &NOTES$_NONOTE_SPECIFIED'..equ'66830562#NOTES$_ERROR_MAILING'..equ'66830570 %NOTES$_NOPREVIOUS_NOTE'..equ'66830578i'NOTES$_ALREADY_IN_EDITOR'..equ'66830586t&NOTES$_ALREADY_IN_NOTES'..equ'66830594+NOTES$_MUST_COMPLETE_MESSAGE'..equ'66830602$NOTES$_UNREC_CALLUSER'..equ'66830610#NOTES$_NO_SUCH_CLASS'..equ'66830618 #NOTES$_NO_SUCH_ENTRY'..equ'66830626*%NOTES$_NO_SUCH_KEYWORD'..equ'66830634*"NOTES$_NO_SUCH_NOTE'..equ'66830642"NOTES$_NO_SUCH_USER'..equ'66830650#NOTES$_NOMORE_RECALL'..equ'66830658_"NOTES$_EDIT_OR_FILE'..equ'66830666NOTES$_NOMAIL'..equ'66830674 NOTES$_ERRORWRITE'..equ'66830682 NOTES$_NOMAILPROC'..equ'66830690NOTES$_IFF'..equ'66830698ONOTES$_NOPRIV'..equ'66830706"NOTES$_CTRLC_CANCEL'..equ'66830714NOTES$_ERRCREKEY'..equ'66830722K NOTES$_ERRADDMARK'..equ'66830730NOTES$_ERRADDMEM'..equ'66830738_NOTES$_ERRADDENT'..equ'66830746ENOTES$_ERRDELENT'..equ'66830754' NOTES$_ERRDELMARK'..equ'66830762"NOTES$_ERRDELMEMBER'..equ'66830770 NOTES$_ERRMODNOTE'..equ'66830778!NOTES$_ERRMODENTRY'..equ'66830786q#NOTES$_ERRMODKEYWORD'..equ'66830794 NOTES$_ERRACCLIST'..equ'66830802NOTES$_NOWRITE'..equ'66830810."NOTES$_NOSUCHMARKER'..equ'66830818!NOTES$_NOPRIVMOD_N'..equ'66830826!NOTES$_ALREXISTS_C'..equ'66830834_!NOTES$_ALREXISTS_E'..equ'66830842U!NOTES$_ALREXISTS_K'..equ'66830850I!NOTES$_ALREXISTS_U'..equ'66830858C!NOTES$_ALREXISTS_M'..equ'66830866T$NOTES$_NO_SUCH_MARKER'..equ'66830874NOTES$_NOMEMBERS'..equ'66830882.NOTES$_NOTMEMBER'..equ'66830890u#NOTES$_BASEWRITELOCK'..equ'668308983"NOTES$_NOWRITE_CONF'..equ'66830906 NOTES$_SPELLERROR'..equ'66830914NOTES$_PNINVCHAR'..equ'66830922$NOTES$_SENDNOAUT'..equ'66830930$"NOTES$_INVCLASSNAME'..equ'66830938#NOTES$_CLASSNOTFOUND'..equ'66830946ENOTES$_FORWLOOP'..equ'66830954"NOTES$_BAD_DIR_LINE'..equ'66830962NOTES$_NO_SELECT'..equ'66830970!NOTES$_NOTE_NOCONF'..equ'66830978"NOTES$_UNREC_EDITOR'..equ'66830986NOTES$_NO_CLASSP'..equ'668309944NOTES$_NMTHISDIR'..equ'66831002'!NOTES$_NO_NEW_NOTE'..equ'66831010A#NOTES$_CAPTIVE_SPAWN'..equ'66831018E$NOTES$_NOTHING_TO_SET'..equ'66831026 NOTES$_NOHELPTERM'..equ'66831034NOTES$_INVENTNAM'..equ'66831042VNOTES$_INVCLANAM'..equ'66831050R"NOTES$_INVENTRYNAME'..equ'66831058'NOTES$_NO_ENTRY_IN_CLASS'..equ'66831066.(NOTES$_ALREXISTS_IN_CLASS'..equ'66831074NOTES$_NOMARKERS'..equ'66831082. NOTES$_NOKEYWORDS'..equ'66831090NOTES$_NOLICENSE'..equ'66831098LNOTES$_NOFILE'..equ'66831106NOTES$_NOEDT'..equ'66831114_NOTES$_NOENTRY'..equ'66831122ONOTES$_NOEVE'..equ'66831130uNOTES$_TPUERROR'..equ'66831138'NOTES$_ENTALR_IN_CLASSES'..equ'66831146q$NOTES$_NO_RANGE_ALLOW'..equ'66831154NOTES$_NOTINCMD'..equ'66831162%NOTES$_CONF_REPLY_ONLY'..equ'66831170eNOTES$_USRNOTADD'..equ'66831178.NOTES$_INVKEYNAM'..equ'66831186.$NOz {$ NOTES026.A9b "[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1N6O)TES$_INVKEYWORDNAME'..equ'66831194NOTES$_INVMRKNAM'..equ'66831202#NOTES$_INVMARKERNAME'..equ'66831210NOTES$_INVUSRNAM'..equ'66831218!NOTES$_INVUSERNAME'..equ'66831226E!NOTES$_INVNOTESPEC'..equ'66831234R%NOTES$_RANGE_ONE_TOPIC'..equ'66831242D#NOTES$_RANGE_TOO_BIG'..equ'66831250'NOTES$_NO_TOPIC'..equ'66831258!NOTES$_ALREXISTS_N'..equ'66831266N NOTES$_NONOTESMOD'..equ'66831274%NOTES$_MEMBERNAME_NODE'..equ'66831282TNOTES$_CONFQUAL'..equ'66831290"NOTES$_OPRNOTSUPCNF'..equ'66831298NOTES$_BADTIME'..equ'66831306R NOTES$_INVOBJNAME'..equ'66831314#NOTES$_INVOBJECTNAME'..equ'66831322qNOTES$_NOATTRIB'..equ'66831330NOTES$_NOOBJECT'..equ'66831338NOTES$_NOSUCHOBJ'..equ'66831346ONOTES$_LWKERROR'..equ'66831354#NOTES$_NOLINKLICENSE'..equ'66831362ONOTES$_NOTNETWRK'..equ'66842628 NOTES$_WRONG_ACCT'..equ'66842636"NOTES$_SRV_INIT_ERR'..equ'66842644NOTES$_WRONG_LMF'..equ'66842652E .ENDM % .MACRO SERVERDEF,..EQU=<=>,..COL=<:>NOTES$K_INITIALIZE'..equ'1NOTES$K_MORE'..equ'2NOTES$K_NOTEFILE_BEGIN'..equ'3NOTES$K_NOTEFILE_END'..equ'4!NOTES$K_NOTEFILE_GET_INFO'..equ'5eNOTES$K_NOTEFILE_MODIFY'..equ'6.#NOTES$K_NOTEFILE_LIST_BEGIN'..equ'7NOTES$K_NOTEFILE_LIST'..equ'8.NOTES$K_KEYWORD_BEGIN'..equ'9TNOTES$K_KEYWORD_END'..equ'10NOTES$K_KEYWORD_ADD'..equ'11NOTES$K_KEYWORD_DELETE'..equ'12NOTES$K_KEYWORD_GET'..equ'13!NOTES$K_KEYWORD_GET_NOTE'..equ'140NOTES$K_KEYWORD_MODIFY'..equ'15NOTES$K_NOTE_BEGIN'..equ'16NOTES$K_NOTE_END'..equ'17.NOTES$K_NOTE_ADD'..equ'18INOTES$K_NOTE_ADD_TEXT'..equ'19NOTES$K_NOTE_DELETE'..equ'20NOTES$K_NOTE_GET'..equ'21$!NOTES$K_NOTE_GET_KEYWORD'..equ'22ENOTES$K_NOTE_GET_TEXT'..equ'23NOTES$K_NOTE_MODIFY'..equ'24NOTES$K_USER_BEGIN'..equ'25ANOTES$K_USER_END'..equ'26DNOTES$K_USER_ADD'..equ'27ANOTES$K_USER_DELETE'..equ'28NOTES$K_USER_GET'..equ'29ENOTES$K_USER_MODIFY'..equ'30NOTES$K_CLASS_ADD'..equ'31NOTES$K_CLASS_BEGIN'..equ'32NOTES$K_CLASS_DELETE'..equ'33NOTES$K_CLASS_END'..equ'34NOTES$K_CLASS_GET'..equ'35 NOTES$K_CLASS_GET_ENTRY'..equ'36NOTES$K_CLASS_MODIFY'..equ'37$NOTES$K_ENTRY_ADD'..equ'38NOTES$K_ENTRY_BEGIN'..equ'39NOTES$K_ENTRY_DELETE'..equ'40ONOTES$K_ENTRY_END'..equ'41NOTES$K_ENTRY_GET'..equ'42 NOTES$K_ENTRY_GET_CLASS'..equ'43"NOTES$K_ENTRY_GET_KEYWORD'..equ'44NOTES$K_ENTRY_MODIFY'..equ'45xNOTES$K_PROFILE_BEGIN'..equ'46NOTES$K_PROFILE_END'..equ'47NOTES$K_PROFILE_GET'..equ'48NOTES$K_PROFILE_MODIFY'..equ'49xNOTES$K_STATUS'..equ'129!NOTES$K_REQUEST_CONTEXT'..equ'130FNOTES$K_ERROR_TLV'..equ'131TNOTES$K_ERROR_NARGS'..equ'132yNOTES$K_ERROR_ARG'..equ'133eNOTES$K_ERROR_TEXT'..equ'134 NOTES$K_CANCEL_REQUEST'..equ'135#NOTES$K_REQUEST_CANCELLED'..equ'136 NOTES$K_INIT_VERSION'..equ'8193 NOTES$K_INIT_NODENAME'..equ'8194 NOTES$K_INIT_USERNAME'..equ'8195$NOTES$K_INIT_CAPABILITIES'..equ'8196#NOTES$K_INIT_MAXITEMCODE'..equ'8197NOTES$M_INIT_VMSMSGS'..equ'^X1NOTES$S_CAPABILITIES'..equ'4CAPABILITIES'..equ'0NOTES$L_CAPABILITIES'..equ'0NOTES$V_INIT_VMSMSGS'..equ'0 NOTES$K_PROTOCOL_VERSION'..equ'2NOTES$K_PROTOCOL_UPDATE'..equ'6T#; External entry NOTES$SERVER_BEGINK .ENDM"*[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1+,:b.H/J 4\HE@- 0123KPWOF56zȁģ7B8ģ89GJHJ(**)P(******************************************************************************)P(** **)P(** Copyright (c) 2004 **)P(** by DIGITAL Equipment Corporation, Maynard, Mass. **)P(** All rights reserved. **)P(** **)P(** This software is furnished under a license and may be used and copied **)P(** only in accordance with the terms of such license and with the **)P(** inclusion of the above copyright notice. This software or any other **)P(** copies thereof may not be provided or otherwise made available to any **)P(** other person. No title to and ownership of the software is hereby **)P(** transferred. **)P(** **)P(** The information in this software is subject to change without notice **)P(** and should not be construed as a commitment by DIGITAL Equipment **)P(** Corporation. **)P(** **)P(** DIGITAL assumes no responsibility for the use or reliability of its **)P(** software on equipment which is not supplied by DIGITAL. **)P(** **)P(******************************************************************************) MODULE NOTES$ITEMDEF ; 1[HIDDEN] TYPE (**** Pre-declared data types ****) $BYTE = [BYTE] -128..127; $WORD = [WORD] -32768..32767; $QUAD = [QUAD,UNSAFE] RECORD L0:UNSIGNED; L1:INTEGER; END; $OCTA = [OCTA,UNSAFE] RECORD% L0,L1,L2:UNSIGNED; L3:INTEGER; END; $UBYTE = [BYTE] 0..255; $UWORD = [WORD] 0..65535; $UQUAD = [QUAD,UNSAFE] RECORD L0,L1:UNSIGNED; END; $UOCTA = [OCTA,UNSAFE] RECORD L0,L1,L2,L3:UNSIGNED; END;% $UOCTAQUAD = [OCTA(2),UNSAFE] RECORD( L0,L1,L2,L3,L4,L5,L6,L7:UNSIGNED; END;% $PACKED_DEC = [BIT(4),UNSAFE] 0..15; $DEFTYP = [UNSAFE] INTEGER; $DEFPTR = [UNSAFE] ^$DEFTYP;! $BOOL = [BIT(1),UNSAFE] BOOLEAN; $BIT2 = [BIT(2),UNSAFE] 0..3; $BIT3 = [BIT(3),UNSAFE] 0..7; $BIT4 = [BIT(4),UNSAFE] 0..15; $BIT5 = [BIT(5),UNSAFE] 0..31; $BIT6 = [BIT(6),UNSAFE] 0..63; $BIT7 = [BIT(7),UNSAFE] 0..127; $BIT8 = [BIT(8),UNSAFE] 0..255; $BIT9 = [BIT(9),UNSAFE] 0..511;# $BIT10 = [BIT(10),UNSAFE] 0..1023;# $BIT11 = [BIT(11),UNSAFE] 0..2047;# $BIT12 = [BIT(12),UNSAFE] 0..4095;# $BIT13 = [BIT(13),UNSAFE] 0..8191;$ $BIT14 = [BIT(14),UNSAFE] 0..16383;$ $BIT15 = [BIT(15),UNSAFE] 0..32767;$ $BIT16 = [BIT(16),UNSAFE] 0..65535;% $BIT17 = [BIT(17),UNSAFE] 0..131071;% $BIT18 = [BIT(18),UNSAFE] 0..262143;% $BIT19 = [BIT(19),UNSAFE] 0..524287;& $BIT20 = [BIT(20),UNSAFE] 0..1048575;& $BIT21 = [BIT(21),UNSAFE] 0..2097151;& $BIT22 = [BIT(22),UNSAFE] 0..4194303;& $BIT23 = [BIT(23),UNSAFE] 0..8388607;' $BIT24 = [BIT(24),UNSAFE] 0..16777215;' $BIT25 = [BIT(25),UNSAFE] 0..33554431;' $BIT26 = [BIT(26),UNSAFE] 0..67108863;( $BIT27 = [BIT(27),UNSAFE] 0..134217727;( $BIT28 = [BIT(28),UNSAFE] 0..268435455;( $BIT29 = [BIT(29),UNSAFE] 0..536870911;) $BIT30 = [BIT(30),UNSAFE] 0..1073741823;) $BIT31 = [BIT(31),UNSAFE] 0..2147483647;$ $BIT32 = [BIT(32),UNSAFE] UNSIGNED; (*** MODULE NOTEITEMS ***)  CONST NOTES$K_MIN_ITEM = 1; NOTES$K_NOSIGNAL = 1;  CONST NOTES$K_TEXT_STRING = 2; NOTES$K_TEXT_END = 3; NOTES$K_TEXT_TYPE = 4;  %CONST NOTES$K_NOTE_ALL_RESPONSES = 5; NOTES$K_NOTE_AUTHOR = 6; NOTES$K_NOTE_BACK_NOTE = 7; NOTES$K_NOTE_BACK_RESPONSE = 8; NOTES$K_NOTE_BEFORE_TIME = 9; NOTES$K_NOTE_BLINK_ID = 10; NOTES$K_NOTE_BLINK_UID = 11; NOTES$K_NOTE_CREATE_TIME = 12; NOTES$K_NOTE_HIDDEN = 13;  CONST NOTES$K_NOTE_ID = 14; NOTES$K_NOTE_NEXT_NOTE = 15;! NOTES$K_NOTE_NEXT_RESPONSE = 16; NOTES$K_NOTE_NUMRECORDS = 17; NOTES$K_NOTE_NUMRESPONSES = 18; NOTES$K_NOTE_PEN_NAME = 19;! NOTES$K_NOTE_SEARCH_STRING = 20; NOTES$K_NOTE_SEARCH_TITLE = 21; NOTES$K_NOTE_SINCE_TIME = 22; NOTES$K_NOTE_TITLE = 23; NOTES$K_NOTE_UID = 24; NOTES$K_NOTE_UNSEEN = 25; NOTES$K_NOTE_USER_AREA = 26; NOTES$K_NOTE_WRITELOCK = 27;  $CONST NOTES$K_NOTEFILE_CONTEXT = 28; NOTES$K_CLASS_CONTEXT = 29; NOTES{U'$ NOTES026.A:b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\H" $K_ENTRY_CONTEXT = 30; NOTES$K_KEYWORD_CONTEXT = 31; NOTES$K_NOTE_CONTEXT = 32; NOTES$K_PROFILE_CONTEXT = 33; NOTES$K_SERVER_CONTEXT = 34; NOTES$K_USER_CONTEXT = 35;  CONST NOTES$K_CLASS_NAME = 36; NOTES$K_CLASS_NEW_NAME = 37;  CONST NOTES$K_CONTINUE = 38;  CONST NOTES$K_ENTRY_NAME = 39; NOTES$K_ENTRY_NEW_NAME = 40; NOTES$K_ENTRY_USER_AREA = 41;  CONST NOTES$K_HINT = 42;  CONST NOTES$K_KEYWORD_NAME = 43; NOTES$K_KEYWORD_NEW_NAME = 44;  #CONST NOTES$K_NOTEFILE_CREATE = 45;# NOTES$K_NOTEFILE_CREATE_TIME = 46;$ NOTES$K_NOTEFILE_DEFAULT_NAME = 47;" NOTES$K_NOTEFILE_ENTRYTOTAL = 48;! NOTES$K_NOTEFILE_FILE_NAME = 49; NOTES$K_NOTEFILE_FORMAT = 50; NOTES$K_NOTEFILE_HIGH_UID = 51; NOTES$K_NOTEFILE_LASTREV = 52; NOTES$K_NOTEFILE_MODERATE = 53;  &CONST NOTES$K_NOTEFILE_MODERATOR = 54; NOTES$K_NOTEFILE_NOTICE = 55; NOTES$K_NOTEFILE_NUMNOTES = 56;$ NOTES$K_NOTEFILE_RELATED_NAME = 57;" NOTES$K_NOTEFILE_RESTRICTED = 58;  (CONST NOTES$K_NOTEFILE_RESULT_SPEC = 59; NOTES$K_NOTEFILE_TITLE = 60;! NOTES$K_NOTEFILE_TRANSPORT = 61;! NOTES$K_NOTEFILE_USER_AREA = 62;  $CONST NOTES$K_PROFILE_AUTO_DIR = 63;  'CONST NOTES$K_PROFILE_AUTO_UNSEEN = 64;  &CONST NOTES$K_PROFILE_CLASS_NAME = 65; NOTES$K_PROFILE_EDITOR = 66;# NOTES$K_PROFILE_EDITOR_SPAWN = 67;  $CONST NOTES$K_PROFILE_PEN_NAME = 68; NOTES$K_PROFILE_PRINT = 69;  %CONST NOTES$K_PROFILE_TEMPORARY = 70;  CONST NOTES$K_SEEN_MAP = 71;  'CONST NOTES$K_USER_CREATE_KEYWORD = 72;  "CONST NOTES$K_USER_MAIL_ADDR = 73; NOTES$K_USER_MODERATE = 74;  CONST NOTES$K_USER_NAME = 75; NOTES$K_USER_NEW_NAME = 76; NOTES$K_USER_NEW_NODENAME = 77; NOTES$K_USER_NODENAME = 78;  $CONST NOTES$K_NOTE_BLINK_TITLE = 79; NOTES$K_NOTE_MARK_SEEN = 80; NOTES$K_NOTE_NEXT_UNSEEN = 81;! NOTES$K_NOTE_HINT_GET_TEXT = 82; NOTES$K_NOTE_X_KEYWORD = 83; NOTES$K_KEYWORD_X_NOTE = 84; NOTES$K_CLASS_X_ENTRY = 85; NOTES$K_ENTRY_X_CLASS = 86; NOTES$K_ENTRY_X_KEYWORD = 87; NOTES$K_DELIF0 = 88; NOTES$K_UNIENTRY = 89; NOTES$K_ENTRY_UNSEEN_EST = 90; NOTES$K_ENTRY_LAST_STATUS = 91; NOTES$K_NOTE_CAN_REPLY = 92;! NOTES$K_NOTE_BEFORE_TIME_A = 93;! NOTES$K_NOTE_CREATE_TIME_A = 94; NOTES$K_NOTE_SINCE_TIME_A = 95;% NOTES$K_NOTEFILE_CREATE_TIME_A = 96;! NOTES$K_NOTEFILE_LASTREV_A = 97;$ NOTES$K_NOTE_HINT_GET_KEYWORD = 98;$ NOTES$K_KEYWORD_HINT_GET_NOTE = 99;  $CONST NOTES$K_SERVER_MAX_ITEM = 100;  )CONST NOTES$K_CLASS_HINT_GET_ENTRY = 101; NOTES$K_CLASS_USER_AREA = 102; NOTES$K_CLASS_UID = 103;$ NOTES$K_ENTRY_HINT_GET_CLASS = 104;& NOTES$K_ENTRY_HINT_GET_KEYWORD = 105;! NOTES$K_ENTRY_OBJECT_NAME = 106;! NOTES$K_ENTRY_OBJECT_SPEC = 107; NOTES$K_ENTRY_UID = 108;! NOTES$K_KEYWORD_USER_AREA = 109; NOTES$K_KEYWORD_UID = 110; NOTES$K_NODE_NAME = 111; NOTES$K_NODE_X_USERNAME = 112; NOTES$K_NOTE_NEW_ID = 113; NOTES$K_NOTE_TYPE = 114;# NOTES$K_NOTEFILE_REPLY_ONLY = 115;! NOTES$K_PROFILE_USER_AREA = 116; NOTES$K_USER_ACCESS_LIST = 117;  &CONST NOTES$K_USER_WRITE_BYPASS = 118;  #CONST NOTES$K_USER_USER_AREA = 119; NOTES$K_USER_UID = 120;  "CONST NOTES$K_USER_NOACCESS = 121; NOTES$K_MAX_ITEM = 122;  &CONST NOTES$K_NOTEFILE_WRITELOCK = 27; NOTES$K_USER_ACCESS_NODE = 111; NOTES$K_USER_ACCESS = 117;  CONST NOTES$K_BASE_NOTE = 1; NOTES$K_REPLY_NOTE = 2;  CONST NOTES$K_UNKNOWN_TYPE = 0; NOTES$K_DDIF_TYPE = 1; NOTES$K_ASCII_TYPE = 2; NOTES$K_RESERVED_TYPE = 3; NOTES$K_WPS_PLUS_TYPE = 4;  CONST NOTES$K_TLV_INPUT = 4097; NOTES$K_TLV_OUTPUT = 4098;  CONST NOTES$K_CHAIN = 65535; NOTES$K_NOOP = 65534;  %[ASYNCHRONOUS] FUNCTION NOTES$NOTES (N command_line : [CLASS_S] PACKED ARRAY [$l1..$u1:INTEGER] OF CHAR := %IMMED 0;\ %IMMED [UNBOUND, ASYNCHRONOUS] PROCEDURE command_dispatch := %IMMED 0) : INTEGER; EXTERNAL; .[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_BEGIN (' VAR cxf_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 1[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_GET_INFO ( cxf_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; /[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_MODIFY ( cxf_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 3[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_LIST_BEGIN (' VAR cxf_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; -[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_LIST ( cxf_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_END (' VAR cxf_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$CLASS_BEGIN (' VAR cxc_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$CLASS_ADD ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$CLASS_DELETE ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$CLASS_GET ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; /[ASYNCHRONOUS] FUNCTION NOTES$CLASS_GET_ENTRY ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$CLASS_MODIFY ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$CLASS_END (' VAR cxc_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_BEGIN (' VAR cxe_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_ADD ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_DELETE ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_GET ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; /[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_GET_CLASS ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 1[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_GET_KEYWORD ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_MODIFY ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] A|[o$ NOTES026.A:b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\HIRRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_UPDATE ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_END (' VAR cxe_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; -[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_BEGIN (' VAR cxk_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_ADD ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; .[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_DELETE ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_GET ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 0[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_GET_NOTE ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; .[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_MODIFY ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_END (' VAR cxk_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; *[ASYNCHRONOUS] FUNCTION NOTES$NOTE_BEGIN (' VAR cxn_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ([ASYNCHRONOUS] FUNCTION NOTES$NOTE_ADD ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; -[ASYNCHRONOUS] FUNCTION NOTES$NOTE_ADD_TEXT ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$NOTE_DELETE ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  ([ASYNCHRONOUS] FUNCTION NOTES$NOTE_GET ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  0[ASYNCHRONOUS] FUNCTION NOTES$NOTE_GET_KEYWORD ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  c-[ASYNCHRONOUS] FUNCTION NOTES$NOTE_GET_TEXT (  cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;w s+[ASYNCHRONOUS] FUNCTION NOTES$NOTE_MODIFY (t cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;h s([ASYNCHRONOUS] FUNCTION NOTES$NOTE_END (' VAR cxn_context : [VOLATILE] UNSIGNED;tB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  -[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_BEGIN (*' VAR cxp_context : [VOLATILE] UNSIGNED;yB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  +[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_GET ( cxp_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;1 ..[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_MODIFY ( cxp_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) :% INTEGER; EXTERNAL;$ A+[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_END (N' VAR cxp_context : [VOLATILE] UNSIGNED;LB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;[ A*[ASYNCHRONOUS] FUNCTION NOTES$USER_BEGIN (' VAR cxu_context : [VOLATILE] UNSIGNED;IB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;3 ([ASYNCHRONOUS] FUNCTION NOTES$USER_ADD ( cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  T+[ASYNCHRONOUS] FUNCTION NOTES$USER_DELETE (S cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;B 1([ASYNCHRONOUS] FUNCTION NOTES$USER_GET ( cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; I+[ASYNCHRONOUS] FUNCTION NOTES$USER_MODIFY (  cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;F 0([ASYNCHRONOUS] FUNCTION NOTES$USER_END (' VAR cxu_context : [VOLATILE] UNSIGNED;FB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;T _(*** MODULE $NOTESMSGDEF ***)4  CONST NOTES$_FACILITY = 1019;O NOTES$_NORMAL = 66813961; NOTES$_CMDKEYENA = 66813969;N NOTES$_NUMKEYENA = 66813977;S NOTES$_PROFILE_MOD = 66813985;T NOTES$_PROFILE_TEMP = 66813993; NOTES$_MODERATE = 66814001; NOTES$_NOMODERATE = 66814009; NOTES$_ENTRY_ADDED = 66814017;1# NOTES$_KEYWORD_ADDNOTE = 66814025;4 NOTES$_MARKER_ADDED = 66814033; NOTES$_MEMBER_ADDED = 66814041;# NOTES$_KEYWORD_CREATED = 66814049;N! NOTES$_ENTRY_DELETED = 66814057;T# NOTES$_KEYWORD_DELETED = 66814065;T# NOTES$_KEYWORD_DELNOTE = 66814073;_" NOTES$_MARKER_DELETED = 66814081; NOTES$_NOTE_DELETED = 66814089;" NOTES$_MEMBER_DELETED = 66814097;! NOTES$_NOTE_MODIFIED = 66814105;K" NOTES$_ENTRY_MODIFIED = 66814113;$ NOTES$_KEYWORD_MODIFIED = 66814121;# NOTES$_MEMBER_MODIFIED = 66814129;C NOTES$_CLASS_SET = 66814137;T NOTES$_INSERT_MODE = 66814145;D# NOTES$_OVERSTRIKE_MODE = 66814153; " NOTES$_ENTRY_DELCLASS = 66814161;" NOTES$_SPACE_COMPRESS = 66814169; NOTES$_ENTRY_ADDED2 = 66814177; NOTES$_OBJECT_ADDED = 66814185;" NOTES$_OBJECT_DELETED = 66814193;# NOTES$_OBJECT_MODIFIED = 66814201; NOTES$_MORE_INFO = 66818051;=" NOTES$_SRV_NEWPROTUPD = 66818059;! NOTES$_ENTRY_ABORTED = 66818067; NOTES$_NOTES_WRFIL = 66818075; NOTES$_NOTES_WRBUF = 66818083;= NOTES$_DIRTOBUF = 66818091; NOTES$_DIRTOFILE = 66818099;_ NOTES$_HIDDEN = 66818107; NOTES$_OPEN_CONF = 66818115; NOTES$_UPDATE_CONF = 66818123;= NOTES$_MARKSUPER = 66818131;T NOTES$_OPEN_CONF2 = 66818139;! NOTES$_BEING_WRITTEN = 66818147;M NOTES$_USING_EDT = 66818155;H NOTES$_HELPBUF = 66818163;_ NOTES$_HELPHDR = 66818171;F NOTES$_HELPNXT = 66818179;O NOTES$_HELPASK1 = 66818187; NOTES$_HELPASK2 = 66818195; NOTES$_HELPTOP = 66818203;U NOTES$_HELPBOT = 66818211;L NOTES$_ENTRYID = 66818219;K NOTES$_NOTEID = 66818227; N}@Y$ NOTES026.A:b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\Hԏ",OTES$_TOPICS = 66818235; NOTES$_UNSEEN = 66818243; NOTES$_TOTALNOTES = 66818251; NOTES$_DATELINE = 66818259; NOTES$_ONECLASS = 66818267; NOTES$_MANYCLASSES = 66818275;L NOTES$_TITLEID = 66818283;S NOTES$_NOTICEID = 66818291; NOTES$_CONFCREUPD = 66818299; NOTES$_MAILSUBJ = 66818307; NOTES$_FILEID = 66818315; NOTES$_MODERATORID = 66818323;# NOTES$_OLD_ALREXISTS_A = 66818331;A! NOTES$_OLD_INVACCNAM = 66818339;6 NOTES$_LOCATIONID = 66818347; NOTES$_CONF_BANNER = 66818355;  NOTES$_READ_BANNER = 66818363;O NOTES$_TOPIC_BANNER = 66818371; NOTES$_REPLY_BANNER = 66818379; NOTES$_INFO_BANNER = 66818387;E NOTES$_CREATE_CONF = 66818395;_ NOTES$_UPDATE_ENTRY = 66818403; NOTES$_GETTING_DIR = 66818411;O NOTES$_GETTING_NOTE = 66818419; NOTES$_EXTRACT_NOTE = 66818427; NOTES$_PRINT_NOTE = 66818435; NOTES$_SEARCH_FOR = 66818443; NOTES$_SEARCH_NEXT = 66818451;N! NOTES$_DELETING_NOTE = 66818459;N NOTES$_AUTHORID = 66818467; NOTES$_TOPICID = 66818475;S NOTES$_KEYWORDID = 66818483;K NOTES$_CONFERENCEID = 66818491; NOTES$_ATTRIBID = 66818499; NOTES$_WRITELOCKID = 66818507;  NOTES$_HIDDENID = 66818515; NOTES$_GRAPHIC_VIEW = 66818523; NOTES$_UNKNOWN_VIEW = 66818531; NOTES$_DDIF_FORMAT = 66818539;_ NOTES$_PS_FORMAT = 66818547;T NOTES$_USEFILEID = 66818555;C NOTES$_COPYRIGHT = 66818563;L" NOTES$_SRV_OLDPROTUPD = 66822144;# NOTES$_NO_MORE_CLASSES = 66822152;_# NOTES$_NO_MORE_ENTRIES = 66822160;O$ NOTES$_NO_MORE_KEYWORDS = 66822168;! NOTES$_NO_MORE_NOTES = 66822176; NOTES$_NO_MORE_TEXT = 66822184;! NOTES$_NO_MORE_USERS = 66822192;R NOTES$_NONOTEBOOK = 66822200; NOTES$_NOERRTXT = 66822208; NOTES$_NEEDNBMODIFY = 66822216; NOTES$_MSGSEND = 66822224;K NOTES$_ENTERINTRO = 66822232; NOTES$_CTRLZMAIL = 66822240; NOTES$_NOTREADING = 66822248;# NOTES$_NO_MORE_REPLIES = 66822256;S NOTES$_ANSWER_YES = 66822264; NOTES$_EOB_TEXT = 66822272; NOTES$_PRESS_PF2 = 66822280;K NOTES$_NOTES_HDR1 = 66822288;! NOTES$_PRESS_CTRLZ_N = 66822296;_" NOTES$_SET_CONFERENCE = 66822304; NOTES$_ENTER_TITLE = 66822312;_ NOTES$_PRESS_RETURN = 66822320;! NOTES$_PRESS_ANY_KEY = 66822328; NOTES$_DIR_HEAD = 66822336; NOTES$_ENDREQ_LIST = 66822344; ! NOTES$_NOTE_END_TEXT = 66822352;A NOTES$_TEXT_NOTE = 66822360;  NOTES$_TEXT_REPLY = 66822368; NOTES$_NO_NB = 66822376;T NOTES$_YOUR_SP = 66822384;! NOTES$_NOTE_COMPLETE = 66822392; NOTES$_NOTE_NOTEXT = 66822400;N NOTES$_NOREPLIES = 66822408; NOTES$_ONE_REPLY = 66822416; NOTES$_MANY_REPLIES = 66822424; NOTES$_N_OF_N = 66822432; NOTES$_ENTER_CTITLE = 66822440; NOTES$_DELETE_NOTE = 66822448;O NOTES$_NOTENOTDEL = 66822456; NOTES$_FINDING_HELP = 66822464; NOTES$_NOKEYHELP = 66822472;T NOTES$_NOTESQADD = 66822480;Y NOTES$_REALLYQUIT = 66822488; NOTES$_MAILNOTSENT = 66822496;K NOTES$_NUMNOTES = 66822504; NOTES$_SENDTO = 66822512; NOTES$_SUBJECT = 66822520;D NOTES$_PROFILE_USER = 66822528; NOTES$_MORE_TEXT = 66822536;C NOTES$_SHOW_MARK_1 = 66822544;B NOTES$_SHOW_MARK_2 = 66822552;I NOTES$_SHOW_MARK_3 = 66822560;s NOTES$_SHOW_ENTRY = 66822568;" NOTES$_SHOW_PROF_EDIT = 66822576;$ NOTES$_SHOW_PROF_DCLASS = 66822584;# NOTES$_SHOW_PROF_PRINT = 66822592;" NOTES$_SHOW_PROF_NAME = 66822600;" NOTES$_SHOW_PROF_AUTO = 66822608;" NOTES$_SHOW_PROF_ADIR = 66822616;" NOTES$_SHOW_PROF_AUNS = 66822624;" NOTES$_SHOW_PROF_NONE = 66822632; NOTES$_ENDREQ_SHOW = 66822640;:! NOTES$_CTRLZ_COM_RET = 66822648;N! NOTES$_SHOW_ENT_CONF = 66822656; ! NOTES$_SHOW_ENT_FILE = 66822664;  NOTES$_SHOW_CLASS = 66822672;! NOTES$_SHOW_CONF_MOD = 66822680; # NOTES$_SHOW_CONF_RESA1 = 66822688;$# NOTES$_SHOW_CONF_RESA2 = 66822696;E# NOTES$_SHOW_CONF_RESK1 = 66822704;O# NOTES$_SHOW_CONF_RESK2 = 66822712;c NOTES$_SHOW_KEYW_1 = 66822720;% NOTES$_SHOW_KEYW_2 = 66822728;Y NOTES$_SHOW_MOD = 66822736;! NOTES$_SHOW_MOD_NODE = 66822744;R! NOTES$_SHOW_MOD_USER = 66822752;I" NOTES$_SHOW_USER_MADR = 66822760;" NOTES$_SHOW_USER_PRIV = 66822768;" NOTES$_SHOW_USER_JOIN = 66822776;! NOTES$_SHOW_NOTE_HID = 66822784;2! NOTES$_SHOW_NOTE_VIS = 66822792;m" NOTES$_SHOW_NOTE_REP1 = 66822800;" NOTES$_SHOW_NOTE_REP2 = 66822808;" NOTES$_SHOW_PROF_PERM = 66822816;" NOTES$_SHOW_USER_FULL = 66822824;" NOTES$_SHOW_MODU_FULL = 66822832; NOTES$_NMF = 66822840;[ NOTES$_NJU = 66822848;T# NOTES$_NO_MORE_MARKERS = 66822856;R NOTES$_SEARCHF1 = 66822864; NOTES$_SEARCHF2 = 66822872; NOTES$_DIR_CONF = 66822880;" NOTES$_DIR_CONF_TITLE = 66822888; NOTES$_N_TOPICS = 66822896; NOTES$_DIR_NB_CLASS = 66822904; NOTES$_CTRLZ_CANCEL = 66822912; NOTES$_REPBUFINFO1 = 66822920;. NOTES$_REPBUFINFO2 = 66822928;R NOTES$_NMORELINES = 66822936; NOTES$_READINGCONF = 66822944;c NOTES$_WILLNOTSEND = 66822952;t NOTES$_WORKING = 66822960;. NOTES$_FILECREUPD = 66822968; NOTES$_ENTERNOTE = 66822976;[ NOTES$_ANDTO = 66822984;) NOTES$_SENDANYWAY = 66822992; NOTES$_SPAWNKEY = 66823000; NOTES$_CALLKEY = 66823008;S NOTES$_EDICALL = 66823016;  NOTES$_EDISPAWN = 66823024; NOTES$_SPELLSELECT = 66823032;s NOTES$_SPELLBUFFER = 66823040;G NOTES$_SPELLSTART = 66823048; NOTES$_SPELLDONE = 66823056;O NOTES$_SENDING_MAIL = 66823064; NOTES$_SENDBOTH = 66823072; NOTES$_NONESENT = 66823080; NOTES$_SENT_TO_ALL = 66823088;t# NOTES$_SHOW_CONF_RESW1 = 66823096;T# NOTES$_SHOW_CONF_RESW2 = 66823104; NOTES$_TEXT_TOPIC = 66823112; NOTES$_MEMBERS_OF = 66823120; NOTES$_DEF_SUBJECT = 66823128;l NOTES$_MAIL_SUBJECT = 66823136; NOTES$_TEXT_APPEND = 66823144;l" NOTES$_NEVER_ACCESSED = 66823152; NOTES$_EXPIRED = 66823160;E NOTES$_ANSWER_NO = 66823168;T NOTES$_WRONG_ANS = 66823176;c NOTES$_CREATEBUF = 66823184;t NOTES$_WRITEBUF = 66823192;! NOTES$_SHOW_PROF_DEF = 66823200;_ NOTES$_ASK_YESNO = 66823208;. NOTES$_MODPRIVS = 66823216; NOTES$_SHOW_ENT_OBJ = 66823224; NOTES$_CANCELLED = 66823232;" NOTES$_SHOW_CONF_RESR = 66823240; NOTES$_CC = 66823248;! NOTES$_MODERATORS_OF = 66823256;R NOTES$_ALREXISTS_A = 66823264;  NOTES$_INVACCNAM = 66823272;G NOTES$_ILLCTXADR = 66830338;N NOTES$_WRONGCTX = 66830346; NOTES$_INVITMCOD = 66830355;c NOTES$_INVITMLEN = 66830362;D NOTES$_MISREQITM = 66830370;F NOTES$_NOCURNOTE = 66830378;$ NOTES$_CANTCONTINUE = 66830386; NOTES$_FAILGETVM = 66830394;F NOTES$_STRCOPYERR = 66830402; NOTES$_ILLNOTEID = 66830410;E NOTES$_NOSUCHNOTE = 66830418; NOTES$_SRV_NOINIT = 66830426; NOTES$_SRV_INVSEQ = 66830434;! NOTES$_SRV_NOCONTEXT = 66830442; " NOTES$_SRV_NOUSERNAME = 66830450; NOTES$_SRV_INVITEM = 66830458; NOTES$_CREPRIJOB = 66830466;$ NOTES$_PREMEOF = 66830474;: NOTES$_NOPRIVDEL_N = 66830482; ! NOTES$_NOPRIVWRITE_N = 66830490;F! NOTES$_SRV_UNRECPROT = 66830498;S NOTES$_NOFILEOPEN = 66830506;! NOTES$_ALREXISTS_OLD = 66830514; NOTES$_NOSUCHENTRY = 66830522;R NOTES$_MUST_OPEN = 66830530;E# NOTES$_MUST_READ_REPLY = 66830538;R% NOTES$_MUST_READ_FORWARD = 66830546; % NOTES$_NOT_ENTERING_NOTE = 66830554;3$ NOTES$_NONOTE_SPECIFIED = 66830562;! NOTES$_ERROR_MAILING = 66830570;O# NOTES$_NOPREVIOUS_NOTE = 66830578;:% NOTES$_ALREADY_IN_EDITOR = 66830586;F$ NOTES$_ALREADY_IN_NOTES = 66830594;) NOTES$_MUST_COMPLETE_MESSAGE = 66830602;." NOTES$_UNREC_CALLUSER = 66830610;! NOTES$_NO_SUCH_CLASS = 66830618;T! NOTES$_NO_SUCH_ENTRY = 66830626;e# NOTES$_NO_SUCH_KEYWORD = 66830634;l NOTES$_NO_SUCH_NOTE = 66830642; R F%CONST NOTES$_NO_SUCH_USER = 66830650;]! NOTES$_NOMORE_RECALL = 66830658;) NOTES$_EDIT_OR_FILE = 66830666; NOTES$_NOMAIL = 66830674; NOTES$_ERRORWRITE = 66830682; NOTES$_NOMAILPROC = 66830690; NOTES$_IFF = 66830698;G NOTES$_NOPRIV = 66830706; NOTES$_CTRLC_CANCEL = 66830714; NOTES$_ERRCREKEY = 66830722;  NOTES$_ERRADDMARK = 66830730; NOTES$_ERRADDMEM = 66830738;c NOTES$_ERRADDENT = 66830746;n NOTES$_ERRDELENT = 66830754;l NOTES$_ERRDELMARK = 66830762; NOTES$_ERRDELMEMBER = 66830770; NOTES$_ERRMODNOTE = 66830778; NOTES$_ERRMODENTRY = 66830786;N! NOTES$_ERRMODKEYWORD = 66830794;V NOTES$_ERRACCLIST = 66830802; NOTES$_NOWRITE = 66830810; NOTES$_NOSUCHMARKER = 66830818; NOTES$_NOPRIVMOD_N = 66830826;  NOTES$_ALREXISTS_C = 66830834;  NOTES$_ALREXISTS_E = 66830842; NOTES$_ALREXISTS_K = 66830850;$ NOTES$_ALREXISTS_U = 66830858;t NOTES$_ALREXISTS_M = 66830866;n" NOTES$_NO_SUCH_MARKER = 66830874; NOTES$_NOMEMBERS = 66830882;u NOTES$_NOTMEMBER = 66830890;l! NOTES$_BASEWRITELOCK = 66830898;R NOTES$_NOWRITE_CONF = 66830906; NOTES$_SPELLERROR = 66830914; NOTES$_PNINVCHAR = 66830922;n NOTES$_SENDNOAUT = 66830930;l NOTES$_INVCLASSNAME = 66830938;! NOTES$_CLAS~ $ NOTES026.A:b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\Hpe=SNOTFOUND = 66830946;. NOTES$_FORWLOOP = 66830954; NOTES$_BAD_DIR_LINE = 66830962; NOTES$_NO_SELECT = 66830970;E NOTES$_NOTE_NOCONF = 66830978;E NOTES$_UNREC_EDITOR = 66830986; NOTES$_NO_CLASSP = 66830994;% NOTES$_NMTHISDIR = 66831002;R NOTES$_NO_NEW_NOTE = 66831010;:! NOTES$_CAPTIVE_SPAWN = 66831018;N" NOTES$_NOTHING_TO_SET = 66831026; NOTES$_NOHELPTERM = 66831034; NOTES$_INVENTNAM = 66831042;[ NOTES$_INVCLANAM = 66831050;% NOTES$_INVENTRYNAME = 66831058;% NOTES$_NO_ENTRY_IN_CLASS = 66831066;R& NOTES$_ALREXISTS_IN_CLASS = 66831074; NOTES$_NOMARKERS = 66831082;k NOTES$_NOKEYWORDS = 66831090; NOTES$_NOLICENSE = 66831098;. NOTES$_NOFILE = 66831106; NOTES$_NOEDT = 66831114;] NOTES$_NOENTRY = 66831122;$ NOTES$_NOEVE = 66831130; NOTES$_TPUERROR = 66831138;% NOTES$_ENTALR_IN_CLASSES = 66831146;U" NOTES$_NO_RANGE_ALLOW = 66831154; NOTES$_NOTINCMD = 66831162;# NOTES$_CONF_REPLY_ONLY = 66831170;S NOTES$_USRNOTADD = 66831178;F NOTES$_INVKEYNAM = 66831186;" NOTES$_INVKEYWORDNAME = 66831194; NOTES$_INVMRKNAM = 66831202;:! NOTES$_INVMARKERNAME = 66831210;t NOTES$_INVUSRNAM = 66831218;$ NOTES$_INVUSERNAME = 66831226;_ NOTES$_INVNOTESPEC = 66831234;$# NOTES$_RANGE_ONE_TOPIC = 66831242;E! NOTES$_RANGE_TOO_BIG = 66831250;  NOTES$_NO_TOPIC = 66831258; NOTES$_ALREXISTS_N = 66831266;% NOTES$_NONOTESMOD = 66831274;# NOTES$_MEMBERNAME_NODE = 66831282;E NOTES$_CONFQUAL = 66831290; NOTES$_OPRNOTSUPCNF = 66831298; NOTES$_BADTIME = 66831306;Y NOTES$_INVOBJNAME = 66831314;! NOTES$_INVOBJECTNAME = 66831322;E NOTES$_NOATTRIB = 66831330; NOTES$_NOOBJECT = 66831338; NOTES$_NOSUCHOBJ = 66831346;F NOTES$_LWKERROR = 66831354;! NOTES$_NOLINKLICENSE = 66831362; NOTES$_NOTNETWRK = 66842628;O NOTES$_WRONG_ACCT = 66842636; NOTES$_SRV_INIT_ERR = 66842644; NOTES$_WRONG_LMF = 66842652;  $(*** MODULE SERVERDEF ***) UCONST NOTES$K_INITIALIZE = 1;  NOTES$K_MORE = 2; NOTES$K_NOTEFILE_BEGIN = 3; NOTES$K_NOTEFILE_END = 4; NOTES$K_NOTEFILE_GET_INFO = 5;% NOTES$K_NOTEFILE_MODIFY = 6;R! NOTES$K_NOTEFILE_LIST_BEGIN = 7;% NOTES$K_NOTEFILE_LIST = 8;A NOTES$K_KEYWORD_BEGIN = 9;B NOTES$K_KEYWORD_END = 10; NOTES$K_KEYWORD_ADD = 11; NOTES$K_KEYWORD_DELETE = 12;: NOTES$K_KEYWORD_GET = 13; NOTES$K_KEYWORD_GET_NOTE = 14;T NOTES$K_KEYWORD_MODIFY = 15;m NOTES$K_NOTE_BEGIN = 16;. NOTES$K_NOTE_END = 17;: NOTES$K_NOTE_ADD = 18; NOTES$K_NOTE_ADD_TEXT = 19; NOTES$K_NOTE_DELETE = 20; NOTES$K_NOTE_GET = 21;n NOTES$K_NOTE_GET_KEYWORD = 22;. NOTES$K_NOTE_GET_TEXT = 23; NOTES$K_NOTE_MODIFY = 24; NOTES$K_USER_BEGIN = 25;$ NOTES$K_USER_END = 26;L NOTES$K_USER_ADD = 27;N NOTES$K_USER_DELETE = 28; NOTES$K_USER_GET = 29;; NOTES$K_USER_MODIFY = 30; NOTES$K_CLASS_ADD = 31; NOTES$K_CLASS_BEGIN = 32; NOTES$K_CLASS_DELETE = 33;. NOTES$K_CLASS_END = 34; NOTES$K_CLASS_GET = 35; NOTES$K_CLASS_GET_ENTRY = 36; NOTES$K_CLASS_MODIFY = 37;U NOTES$K_ENTRY_ADD = 38; NOTES$K_ENTRY_BEGIN = 39; NOTES$K_ENTRY_DELETE = 40;  NOTES$K_ENTRY_END = 41; NOTES$K_ENTRY_GET = 42; NOTES$K_ENTRY_GET_CLASS = 43; NOTES$K_ENTRY_GET_KEYWORD = 44; NOTES$K_ENTRY_MODIFY = 45;: NOTES$K_PROFILE_BEGIN = 46; NOTES$K_PROFILE_END = 47; NOTES$K_PROFILE_GET = 48; NOTES$K_PROFILE_MODIFY = 49;S NOTES$K_STATUS = 129; NOTES$K_REQUEST_CONTEXT = 130;N NOTES$K_ERROR_TLV = 131;N NOTES$K_ERROR_NARGS = 132; NOTES$K_ERROR_ARG = 133;E NOTES$K_ERROR_TEXT = 134; NOTES$K_CANCEL_REQUEST = 135;! NOTES$K_REQUEST_CANCELLED = 136;m NOTES$K_INIT_VERSION = 8193;3 NOTES$K_INIT_NODENAME = 8194; NOTES$K_INIT_USERNAME = 8195;" NOTES$K_INIT_CAPABILITIES = 8196;! NOTES$K_INIT_MAXITEMCODE = 8197;l NOTES$M_INIT_VMSMSGS = 1; I*TYPE CAPABILITIES = RECORD CASE INTEGER OF, 1: (NOTES$R_FILL_0_ : [BYTE(4)] RECORD END; );X. 2: (NOTES$L_CAPABILITIES : [POS(0)] UNSIGNED; );Y 3: ();c+ 4: (NOTES$V_INIT_VMSMSGS : [POS(0)] $BOOL;S ) END;. 2#CONST NOTES$K_PROTOCOL_VERSION = 2;l NOTES$K_PROTOCOL_UPDATE = 6;I G ?[ASYNCHRONOUS] FUNCTION NOTES$SERVER_BEGIN : INTEGER; EXTERNAL;E REND."*[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1+,;b.H/J 4PH@- 0123KPWOA56T)ģ7ģ89GJHJ/**/P/******************************************************************************/P/** **/P/** Copyright (c) 2004 **/P/** by DIGITAL Equipment Corporation, Maynard, Mass. **/P/** All rights reserved. **/P/** **/P/** This software is furnished under a license and may be used and copied **/P/** only in accordance with the terms of such license and with the **/P/** inclusion of the above copyright notice. This software or any other **/P/** copies thereof may not be provided or otherwise made available to any **/P/** other person. No title to and ownership of the software is hereby **/P/** transferred. **/P/** **/P/** The information in this software is subject to change without notice **/P/** and should not be construed as a commitment by DIGITAL Equipment **/P/** Corporation. **/P/** **/P/** DIGITAL assumes no responsibility for the use or reliability of its **/P/** software on equipment which is not supplied by DIGITAL. **/P/** **/P/******************************************************************************/ /*** MODULE NOTEITEMS ***/%replace NOTES$K_MIN_ITEM by 1;%replace NOTES$K_NOSIGNAL by 1;"%replace NOTES$K_TEXT_STRING by 2;%replace NOTES$K_TEXT_END by 3; %replace NOTES$K_TEXT_TYPE by 4;)%replace NOTES$K_NOTE_ALL_RESPONSES by 5;"%replace NOTES$K_NOTE_AUTHOR by 6;%%replace NOTES$K_NOTE_BACK_NOTE by 7;)%replace NOTES$K_NOTE_BACK_RESPONSE by 8;'%replace NOTES$K_NOTE_BEFORE_TIME by 9;%%replace NOTES$K_NOTE_BLINK_ID by 10;&%replace NOTES$K_NOTE_BLINK_UID by 11;(%replace NOTES$K_NOTE_CREATE_TIME by 12;#%replace NOTES$K_NOTE_HIDDEN by 13;%replace NOTES$K_NOTE_ID by 14;&%replace NOTES$K_NOTE_NEXT_NOTE by 15;*%replace NOTES$K_NOTE_NEXT_RESPONSE by 16;'%replace NOTES$K_NOTE_NUMRECORDS by 17;)%replace NOTES$K_NOTE_NUMRESPONSES by 18;%%replace NOTES$K_NOTE_PEN_NAME by 19;*%replace NOTES$K_NOTE_SEARCH_STRING by 20;)%replace NOTES$K_NOTE_SEARCH_TITLE by 21;'%replace NOTES$K_NOTE_SINCE_TIME by 22;"%replace NOTES$K_NOTE_TITLE by 23; %replace NOTES$K_NOTE_UID by 24;#%replace NOTES$K_NOTE_UNSEEN by 25;&%replace NOTES$K_NOTE_USER_AREA by 26;&%replace NOTES$K_NOTE_WRITELOCK by 27;(%replace NOTES$K_NOTEFILE_CONTEXT by 28;%%replace NOTES$K_CLASS_CONTEXT by 29;%%replace NOTES$K_ENTRY_CONTEXT by 30;'%replace NOTES$K_KEYWORD_CONTEXT by 31;$%replace NOTES$K_NOTE_CONTEXT by 32;'%replace NOTES$K_PROFILE_CONTEXT by 33;&%replace NOTES$K_SERVER_CONTEXT by 34;$%replace NOTES$K_USER_CONTEXT by 35;"%replace NOTES$K_CLASS_NAME by 36;&%replace NOTES$K_CLASS_NEW_NAME by 37; %replace NOTES$K_CONTINUE by 38;"%replace NOTES$K_ENTRY_NAME by 39;&%replace NOTES$K_ENTRY_NEW_NAME by 40;'%replace NOTES$K_ENTRY_USER_AREA by 41;%replace NOTES$K_HINT by 42;$%replace NOTES$K_KEYWORD_NAME by 43;(%replace NOTES$K_KEYWORD_NEW_NAME by 44;'%replace NOTES$K_NOTEFILE_CREATE by 45;,%replace NOTES$K_NOT2w$ NOTES026.A;b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PH`"EFILE_CREATE_TIME by 46;-%replace NOTES$K_NOTEFILE_DEFAULT_NAME by 47;+%replace NOTES$K_NOTEFILE_ENTRYTOTAL by 48;*%replace NOTES$K_NOTEFILE_FILE_NAME by 49;'%replace NOTES$K_NOTEFILE_FORMAT by 50;)%replace NOTES$K_NOTEFILE_HIGH_UID by 51;(%replace NOTES$K_NOTEFILE_LASTREV by 52;)%replace NOTES$K_NOTEFILE_MODERATE by 53;*%replace NOTES$K_NOTEFILE_MODERATOR by 54;'%replace NOTES$K_NOTEFILE_NOTICE by 55;)%replace NOTES$K_NOTEFILE_NUMNOTES by 56;-%replace NOTES$K_NOTEFILE_RELATED_NAME by 57;+%replace NOTES$K_NOTEFILE_RESTRICTED by 58;,%replace NOTES$K_NOTEFILE_RESULT_SPEC by 59;&%replace NOTES$K_NOTEFILE_TITLE by 60;*%replace NOTES$K_NOTEFILE_TRANSPORT by 61;*%replace NOTES$K_NOTEFILE_USER_AREA by 62;(%replace NOTES$K_PROFILE_AUTO_DIR by 63;+%replace NOTES$K_PROFILE_AUTO_UNSEEN by 64;*%replace NOTES$K_PROFILE_CLASS_NAME by 65;&%replace NOTES$K_PROFILE_EDITOR by 66;,%replace NOTES$K_PROFILE_EDITOR_SPAWN by 67;(%replace NOTES$K_PROFILE_PEN_NAME by 68;%%replace NOTES$K_PROFILE_PRINT by 69;)%replace NOTES$K_PROFILE_TEMPORARY by 70; %replace NOTES$K_SEEN_MAP by 71;+%replace NOTES$K_USER_CREATE_KEYWORD by 72;&%replace NOTES$K_USER_MAIL_ADDR by 73;%%replace NOTES$K_USER_MODERATE by 74;!%replace NOTES$K_USER_NAME by 75;%%replace NOTES$K_USER_NEW_NAME by 76;)%replace NOTES$K_USER_NEW_NODENAME by 77;%%replace NOTES$K_USER_NODENAME by 78;(%replace NOTES$K_NOTE_BLINK_TITLE by 79;&%replace NOTES$K_NOTE_MARK_SEEN by 80;(%replace NOTES$K_NOTE_NEXT_UNSEEN by 81;*%replace NOTES$K_NOTE_HINT_GET_TEXT by 82;&%replace NOTES$K_NOTE_X_KEYWORD by 83;&%replace NOTES$K_KEYWORD_X_NOTE by 84;%%replace NOTES$K_CLASS_X_ENTRY by 85;%%replace NOTES$K_ENTRY_X_CLASS by 86;'%replace NOTES$K_ENTRY_X_KEYWORD by 87;%replace NOTES$K_DELIF0 by 88; %replace NOTES$K_UNIENTRY by 89;(%replace NOTES$K_ENTRY_UNSEEN_EST by 90;)%replace NOTES$K_ENTRY_LAST_STATUS by 91;&%replace NOTES$K_NOTE_CAN_REPLY by 92;*%replace NOTES$K_NOTE_BEFORE_TIME_A by 93;*%replace NOTES$K_NOTE_CREATE_TIME_A by 94;)%replace NOTES$K_NOTE_SINCE_TIME_A by 95;.%replace NOTES$K_NOTEFILE_CREATE_TIME_A by 96;*%replace NOTES$K_NOTEFILE_LASTREV_A by 97;-%replace NOTES$K_NOTE_HINT_GET_KEYWORD by 98;-%replace NOTES$K_KEYWORD_HINT_GET_NOTE by 99;(%replace NOTES$K_SERVER_MAX_ITEM by 100;-%replace NOTES$K_CLASS_HINT_GET_ENTRY by 101;(%replace NOTES$K_CLASS_USER_AREA by 102;"%replace NOTES$K_CLASS_UID by 103;-%replace NOTES$K_ENTRY_HINT_GET_CLASS by 104;/%replace NOTES$K_ENTRY_HINT_GET_KEYWORD by 105;*%replace NOTES$K_ENTRY_OBJECT_NAME by 106;*%replace NOTES$K_ENTRY_OBJECT_SPEC by 107;"%replace NOTES$K_ENTRY_UID by 108;*%replace NOTES$K_KEYWORD_USER_AREA by 109;$%replace NOTES$K_KEYWORD_UID by 110;"%replace NOTES$K_NODE_NAME by 111;(%replace NOTES$K_NODE_X_USERNAME by 112;$%replace NOTES$K_NOTE_NEW_ID by 113;"%replace NOTES$K_NOTE_TYPE by 114;,%replace NOTES$K_NOTEFILE_REPLY_ONLY by 115;*%replace NOTES$K_PROFILE_USER_AREA by 116;)%replace NOTES$K_USER_ACCESS_LIST by 117;*%replace NOTES$K_USER_WRITE_BYPASS by 118;'%replace NOTES$K_USER_USER_AREA by 119;!%replace NOTES$K_USER_UID by 120;&%replace NOTES$K_USER_NOACCESS by 121;!%replace NOTES$K_MAX_ITEM by 122;*%replace NOTES$K_NOTEFILE_WRITELOCK by 27;)%replace NOTES$K_USER_ACCESS_NODE by 111;$%replace NOTES$K_USER_ACCESS by 117; %replace NOTES$K_BASE_NOTE by 1;!%replace NOTES$K_REPLY_NOTE by 2;#%replace NOTES$K_UNKNOWN_TYPE by 0; %replace NOTES$K_DDIF_TYPE by 1;!%replace NOTES$K_ASCII_TYPE by 2;$%replace NOTES$K_RESERVED_TYPE by 3;$%replace NOTES$K_WPS_PLUS_TYPE by 4;#%replace NOTES$K_TLV_INPUT by 4097;$%replace NOTES$K_TLV_OUTPUT by 4098; %replace NOTES$K_CHAIN by 65535;%replace NOTES$K_NOOP by 65534;dcl NOTES$NOTES entry ($ any character(*) optional truncate,! pointer value optional truncate) returns (fixed binary(31)); dcl NOTES$NOTEFILE_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));#dcl NOTES$NOTEFILE_GET_INFO entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));!dcl NOTES$NOTEFILE_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));%dcl NOTES$NOTEFILE_LIST_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTEFILE_LIST entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTEFILE_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));!dcl NOTES$CLASS_GET_ENTRY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));!dcl NOTES$ENTRY_GET_CLASS entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));#dcl NOTES$ENTRY_GET_KEYWORD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_UPDATE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); dcl NOTES$KEYWORD_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));"dcl NOTES$KEYWORD_GET_NOTE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); dcl NOTES$KEYWORD_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_ADD_TEXT entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));"dcl NOTES$NOTE_GET_KEYWORD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_GET_TEXT entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_END entry ( bit(32) aligned r'$ NOTES026.A;b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PHc"eference, any reference, any reference) returns (fixed binary(31));dcl NOTES$PROFILE_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$PROFILE_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); dcl NOTES$PROFILE_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$PROFILE_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); /*** MODULE $NOTESMSGDEF ***/!%replace NOTES$_FACILITY by 1019;#%replace NOTES$_NORMAL by 66813961;&%replace NOTES$_CMDKEYENA by 66813969;&%replace NOTES$_NUMKEYENA by 66813977;(%replace NOTES$_PROFILE_MOD by 66813985;)%replace NOTES$_PROFILE_TEMP by 66813993;%%replace NOTES$_MODERATE by 66814001;'%replace NOTES$_NOMODERATE by 66814009;(%replace NOTES$_ENTRY_ADDED by 66814017;,%replace NOTES$_KEYWORD_ADDNOTE by 66814025;)%replace NOTES$_MARKER_ADDED by 66814033;)%replace NOTES$_MEMBER_ADDED by 66814041;,%replace NOTES$_KEYWORD_CREATED by 66814049;*%replace NOTES$_ENTRY_DELETED by 66814057;,%replace NOTES$_KEYWORD_DELETED by 66814065;,%replace NOTES$_KEYWORD_DELNOTE by 66814073;+%replace NOTES$_MARKER_DELETED by 66814081;)%replace NOTES$_NOTE_DELETED by 66814089;+%replace NOTES$_MEMBER_DELETED by 66814097;*%replace NOTES$_NOTE_MODIFIED by 66814105;+%replace NOTES$_ENTRY_MODIFIED by 66814113;-%replace NOTES$_KEYWORD_MODIFIED by 66814121;,%replace NOTES$_MEMBER_MODIFIED by 66814129;&%replace NOTES$_CLASS_SET by 66814137;(%replace NOTES$_INSERT_MODE by 66814145;,%replace NOTES$_OVERSTRIKE_MODE by 66814153;+%replace NOTES$_ENTRY_DELCLASS by 66814161;+%replace NOTES$_SPACE_COMPRESS by 66814169;)%replace NOTES$_ENTRY_ADDED2 by 66814177;)%replace NOTES$_OBJECT_ADDED by 66814185;+%replace NOTES$_OBJECT_DELETED by 66814193;,%replace NOTES$_OBJECT_MODIFIED by 66814201;&%replace NOTES$_MORE_INFO by 66818051;+%replace NOTES$_SRV_NEWPROTUPD by 66818059;*%replace NOTES$_ENTRY_ABORTED by 66818067;(%replace NOTES$_NOTES_WRFIL by 66818075;(%replace NOTES$_NOTES_WRBUF by 66818083;%%replace NOTES$_DIRTOBUF by 66818091;&%replace NOTES$_DIRTOFILE by 66818099;#%replace NOTES$_HIDDEN by 66818107;&%replace NOTES$_OPEN_CONF by 66818115;(%replace NOTES$_UPDATE_CONF by 66818123;&%replace NOTES$_MARKSUPER by 66818131;'%replace NOTES$_OPEN_CONF2 by 66818139;*%replace NOTES$_BEING_WRITTEN by 66818147;&%replace NOTES$_USING_EDT by 66818155;$%replace NOTES$_HELPBUF by 66818163;$%replace NOTES$_HELPHDR by 66818171;$%replace NOTES$_HELPNXT by 66818179;%%replace NOTES$_HELPASK1 by 66818187;%%replace NOTES$_HELPASK2 by 66818195;$%replace NOTES$_HELPTOP by 66818203;$%replace NOTES$_HELPBOT by 66818211;$%replace NOTES$_ENTRYID by 66818219;#%replace NOTES$_NOTEID by 66818227;#%replace NOTES$_TOPICS by 66818235;#%replace NOTES$_UNSEEN by 66818243;'%replace NOTES$_TOTALNOTES by 66818251;%%replace NOTES$_DATELINE by 66818259;%%replace NOTES$_ONECLASS by 66818267;(%replace NOTES$_MANYCLASSES by 66818275;$%replace NOTES$_TITLEID by 66818283;%%replace NOTES$_NOTICEID by 66818291;'%replace NOTES$_CONFCREUPD by 66818299;%%replace NOTES$_MAILSUBJ by 66818307;*#%replace NOTES$_FILEID by 66818315;*(%replace NOTES$_MODERATORID by 66818323;,%replace NOTES$_OLD_ALREXISTS_A by 66818331;*%replace NOTES$_OLD_INVACCNAM by 66818339;'%replace NOTES$_LOCATIONID by 66818347; (%replace NOTES$_CONF_BANNER by 66818355;(%replace NOTES$_READ_BANNER by 66818363;)%replace NOTES$_TOPIC_BANNER by 66818371; )%replace NOTES$_REPLY_BANNER by 66818379; (%replace NOTES$_INFO_BANNER by 66818387;(%replace NOTES$_CREATE_CONF by 66818395;)%replace NOTES$_UPDATE_ENTRY by 66818403;u(%replace NOTES$_GETTING_DIR by 66818411;)%replace NOTES$_GETTING_NOTE by 66818419;w)%replace NOTES$_EXTRACT_NOTE by 66818427; '%replace NOTES$_PRINT_NOTE by 66818435;y'%replace NOTES$_SEARCH_FOR by 66818443;e(%replace NOTES$_SEARCH_NEXT by 66818451;*%replace NOTES$_DELETING_NOTE by 66818459;%%replace NOTES$_AUTHORID by 66818467; $%replace NOTES$_TOPICID by 66818475;&%replace NOTES$_KEYWORDID by 66818483;)%replace NOTES$_CONFERENCEID by 66818491; %%replace NOTES$_ATTRIBID by 66818499; (%replace NOTES$_WRITELOCKID by 66818507;%%replace NOTES$_HIDDENID by 66818515;w)%replace NOTES$_GRAPHIC_VIEW by 66818523;*)%replace NOTES$_UNKNOWN_VIEW by 66818531;s(%replace NOTES$_DDIF_FORMAT by 66818539;&%replace NOTES$_PS_FORMAT by 66818547;&%replace NOTES$_USEFILEID by 66818555;&%replace NOTES$_COPYRIGHT by 66818563;+%replace NOTES$_SRV_OLDPROTUPD by 66822144;*,%replace NOTES$_NO_MORE_CLASSES by 66822152;,%replace NOTES$_NO_MORE_ENTRIES by 66822160;-%replace NOTES$_NO_MORE_KEYWORDS by 66822168;.*%replace NOTES$_NO_MORE_NOTES by 66822176;)%replace NOTES$_NO_MORE_TEXT by 66822184; *%replace NOTES$_NO_MORE_USERS by 66822192;'%replace NOTES$_NONOTEBOOK by 66822200;*%%replace NOTES$_NOERRTXT by 66822208;*)%replace NOTES$_NEEDNBMODIFY by 66822216;a$%replace NOTES$_MSGSEND by 66822224;'%replace NOTES$_ENTERINTRO by 66822232;K&%replace NOTES$_CTRLZMAIL by 66822240;'%replace NOTES$_NOTREADING by 66822248;P,%replace NOTES$_NO_MORE_REPLIES by 66822256;'%replace NOTES$_ANSWER_YES by 66822264;%%replace NOTES$_EOB_TEXT by 66822272;y&%replace NOTES$_PRESS_PF2 by 66822280;'%replace NOTES$_NOTES_HDR1 by 66822288; *%replace NOTES$_PRESS_CTRLZ_N by 66822296;+%replace NOTES$_SET_CONFERENCE by 66822304;r(%replace NOTES$_ENTER_TITLE by 66822312;)%replace NOTES$_PRESS_RETURN by 66822320;K*%replace NOTES$_PRESS_ANY_KEY by 66822328;%%replace NOTES$_DIR_HEAD by 66822336;K(%replace NOTES$_ENDREQ_LIST by 66822344;*%replace NOTES$_NOTE_END_TEXT by 66822352;&%replace NOTES$_TEXT_NOTE by 66822360;'%replace NOTES$_TEXT_REPLY by 66822368;S"%replace NOTES$_NO_NB by 66822376;$%replace NOTES$_YOUR_SP by 66822384;*%replace NOTES$_NOTE_COMPLETE by 66822392;(%replace NOTES$_NOTE_NOTEXT by 66822400;&%replace NOTES$_NOREPLIES by 66822408;&%replace NOTES$_ONE_REPLY by 66822416;)%replace NOTES$_MANY_REPLIES by 66822424;L#%replace NOTES$_N_OF_N by 66822432;A)%replace NOTES$_ENTER_CTITLE by 66822440;C(%replace NOTES$_DELETE_NOTE by 66822448;'%replace NOTES$_NOTENOTDEL by 66822456;T)%replace NOTES$_FINDING_HELP by 66822464;T&%replace NOTES$_NOKEYHELP by 66822472;&%replace NOTES$_NOTESQADD by 66822480;'%replace NOTES$_REALLYQUIT by 66822488;;(%replace NOTES$_MAILNOTSENT by 66822496;%%replace NOTES$_NUMNOTES by 66822504;a#%replace NOTES$_SENDTO by 66822512;e$%replace NOTES$_SUBJECT by 66822520;)%replace NOTES$_PROFILE_USER by 66822528;e&%replace NOTES$_MORE_TEXT by 66822536;(%replace NOTES$_SHOW_MARK_1 by 66822544;(%replace NOTES$_SHOW_MARK_2 by 66822552;(%replace NOTES$_SHOW_MARK_3 by 66822560;'%replace NOTES$_SHOW_ENTRY by 66822568;N+%replace NOTES$_SHOW_PROF_EDIT by 66822576;K-%replace NOTES$_SHOW_PROF_DCLASS by 66822584;N,%replace NOTES$_SHOW_PROF_PRINT by 66822592;+%replace NOTES$_SHOW_PROF_NAME by 66822600;L+%replace NOTES$_SHOW_PROF_AUTO by 66822608;_+%replace NOTES$_SHOW_PROF_ADIR by 66822616;E+%replace NOTES$_SHOW_PROF_AUNS by 66822624;A+%replace NOTES$_SHOW_PROF_NONE by 66822632;b(%replace NOTES$_ENDREQ_SHOW by 66822640;*%replace NOTES$_CTRLZ_COM_RET by 66822648;*%replace NOTES$_SHOW_ENT_CONF by 66822656;*%replace NOTES$_SHOW_ENT_FILE by 66822664;'%replace NOTES$_SHOW_CLASS by 66822672;L*%replace NOTES$_SHOW_CONF_MOD by 66822680;,%replace NOTES$_SHOW_CONF_RESA1 by 66822688;,%replace NOTES$_SHOW_CONF_RESA2 by 66822696;,%replace NOTES$_SHOW_CONF_RESK1 by 66822704;,%replace NOTES$_SHOW_CONF_RESK2 by 66822712;(%replace NOTES$_SHOW_KEYW_1 by 66822720;(%replace NOTES$_SHOW_KEYW_2 by 66822728;%%replace NOTES$_SHOW_MOD by 66822736;N*%replace NOTES$_SHOW_MOD_NODE by 6682274cnR$ NOTES026.A;b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PH:"*4;*%replace NOTES$_SHOW_MOD_USER by 66822752;+%replace NOTES$_SHOW_USER_MADR by 66822760;p+%replace NOTES$_SHOW_USER_PRIV by 66822768;p+%replace NOTES$_SHOW_USER_JOIN by 66822776;N*%replace NOTES$_SHOW_NOTE_HID by 66822784;*%replace NOTES$_SHOW_NOTE_VIS by 66822792;+%replace NOTES$_SHOW_NOTE_REP1 by 66822800;O+%replace NOTES$_SHOW_NOTE_REP2 by 66822808;E+%replace NOTES$_SHOW_PROF_PERM by 66822816;y+%replace NOTES$_SHOW_USER_FULL by 66822824;+%replace NOTES$_SHOW_MODU_FULL by 66822832;p %replace NOTES$_NMF by 66822840; %replace NOTES$_NJU by 66822848;,%replace NOTES$_NO_MORE_MARKERS by 66822856;%%replace NOTES$_SEARCHF1 by 66822864; %%replace NOTES$_SEARCHF2 by 66822872; %%replace NOTES$_DIR_CONF by 66822880;b+%replace NOTES$_DIR_CONF_TITLE by 66822888;a%%replace NOTES$_N_TOPICS by 66822896;T)%replace NOTES$_DIR_NB_CLASS by 66822904;S)%replace NOTES$_CTRLZ_CANCEL by 66822912;S(%replace NOTES$_REPBUFINFO1 by 66822920;(%replace NOTES$_REPBUFINFO2 by 66822928;'%replace NOTES$_NMORELINES by 66822936;T(%replace NOTES$_READINGCONF by 66822944;(%replace NOTES$_WILLNOTSEND by 66822952;$%replace NOTES$_WORKING by 66822960;'%replace NOTES$_FILECREUPD by 66822968;b&%replace NOTES$_ENTERNOTE by 66822976;"%replace NOTES$_ANDTO by 66822984;'%replace NOTES$_SENDANYWAY by 66822992;A%%replace NOTES$_SPAWNKEY by 66823000;T$%replace NOTES$_CALLKEY by 66823008;$%replace NOTES$_EDICALL by 66823016;%%replace NOTES$_EDISPAWN by 66823024;r(%replace NOTES$_SPELLSELECT by 66823032;(%replace NOTES$_SPELLBUFFER by 66823040;'%replace NOTES$_SPELLSTART by 66823048;C&%replace NOTES$_SPELLDONE by 66823056;)%replace NOTES$_SENDING_MAIL by 66823064; %%replace NOTES$_SENDBOTH by 66823072;1%%replace NOTES$_NONESENT by 66823080;(%replace NOTES$_SENT_TO_ALL by 66823088;,%replace NOTES$_SHOW_CONF_RESW1 by 66823096;,%replace NOTES$_SHOW_CONF_RESW2 by 66823104;'%replace NOTES$_TEXT_TOPIC by 66823112;S'%replace NOTES$_MEMBERS_OF by 66823120;T(%replace NOTES$_DEF_SUBJECT by 66823128;)%replace NOTES$_MAIL_SUBJECT by 66823136;N(%replace NOTES$_TEXT_APPEND by 66823144;+%replace NOTES$_NEVER_ACCESSED by 66823152;E$%replace NOTES$_EXPIRED by 66823160;&%replace NOTES$_ANSWER_NO by 66823168;&%replace NOTES$_WRONG_ANS by 66823176;&%replace NOTES$_CREATEBUF by 66823184;%%replace NOTES$_WRITEBUF by 66823192;K*%replace NOTES$_SHOW_PROF_DEF by 66823200;&%replace NOTES$_ASK_YESNO by 66823208;%%replace NOTES$_MODPRIVS by 66823216;;)%replace NOTES$_SHOW_ENT_OBJ by 66823224;a&%replace NOTES$_CANCELLED by 66823232;+%replace NOTES$_SHOW_CONF_RESR by 66823240;K%replace NOTES$_CC by 66823248;T*%replace NOTES$_MODERATORS_OF by 66823256;(%replace NOTES$_ALREXISTS_A by 66823264;&%replace NOTES$_INVACCNAM by 66823272;&%replace NOTES$_ILLCTXADR by 66830338;%%replace NOTES$_WRONGCTX by 66830346;i&%replace NOTES$_INVITMCOD by 66830355;&%replace NOTES$_INVITMLEN by 66830362;&%replace NOTES$_MISREQITM by 66830370;&%replace NOTES$_NOCURNOTE by 66830378;)%replace NOTES$_CANTCONTINUE by 66830386;r&%replace NOTES$_FAILGETVM by 66830394;'%replace NOTES$_STRCOPYERR by 66830402; &%replace NOTES$_ILLNOTEID by 66830410;'%replace NOTES$_NOSUCHNOTE by 66830418;a'%replace NOTES$_SRV_NOINIT by 66830426;)'%replace NOTES$_SRV_INVSEQ by 66830434;*%replace NOTES$_SRV_NOCONTEXT by 66830442;+%replace NOTES$_SRV_NOUSERNAME by 66830450;y(%replace NOTES$_SRV_INVITEM by 66830458;&%replace NOTES$_CREPRIJOB by 66830466;$%replace NOTES$_PREMEOF by 66830474;(%replace NOTES$_NOPRIVDEL_N by 66830482;*%replace NOTES$_NOPRIVWRITE_N by 66830490;*%replace NOTES$_SRV_UNRECPROT by 66830498;'%replace NOTES$_NOFILEOPEN by 66830506;r*%replace NOTES$_ALREXISTS_OLD by 66830514;(%replace NOTES$_NOSUCHENTRY by 66830522;&%replace NOTES$_MUST_OPEN by 66830530;,%replace NOTES$_MUST_READ_REPLY by 66830538;.%replace NOTES$_MUST_READ_FORWARD by 66830546;.%replace NOTES$_NOT_ENTERING_NOTE by 66830554;-%replace NOTES$_NONOTE_SPECIFIED by 66830562;f*%replace NOTES$_ERROR_MAILING by 66830570;,%replace NOTES$_NOPREVIOUS_NOTE by 66830578;.%replace NOTES$_ALREADY_IN_EDITOR by 66830586;-%replace NOTES$_ALREADY_IN_NOTES by 66830594;_2%replace NOTES$_MUST_COMPLETE_MESSAGE by 66830602;+%replace NOTES$_UNREC_CALLUSER by 66830610; *%replace NOTES$_NO_SUCH_CLASS by 66830618;*%replace NOTES$_NO_SUCH_ENTRY by 66830626;,%replace NOTES$_NO_SUCH_KEYWORD by 66830634;)%replace NOTES$_NO_SUCH_NOTE by 66830642;3)%replace NOTES$_NO_SUCH_USER by 66830650;a*%replace NOTES$_NOMORE_RECALL by 66830658;)%replace NOTES$_EDIT_OR_FILE by 66830666;a#%replace NOTES$_NOMAIL by 66830674;'%replace NOTES$_ERRORWRITE by 66830682;3'%replace NOTES$_NOMAILPROC by 66830690;3 %replace NOTES$_IFF by 66830698;#%replace NOTES$_NOPRIV by 66830706;i)%replace NOTES$_CTRLC_CANCEL by 66830714;t&%replace NOTES$_ERRCREKEY by 66830722;'%replace NOTES$_ERRADDMARK by 66830730;(&%replace NOTES$_ERRADDMEM by 66830738;&%replace NOTES$_ERRADDENT by 66830746;&%replace NOTES$_ERRDELENT by 66830754;'%replace NOTES$_ERRDELMARK by 66830762;_)%replace NOTES$_ERRDELMEMBER by 66830770;n'%replace NOTES$_ERRMODNOTE by 66830778;(%replace NOTES$_ERRMODENTRY by 66830786;*%replace NOTES$_ERRMODKEYWORD by 66830794;'%replace NOTES$_ERRACCLIST by 66830802;n$%replace NOTES$_NOWRITE by 66830810;)%replace NOTES$_NOSUCHMARKER by 66830818;n(%replace NOTES$_NOPRIVMOD_N by 66830826;(%replace NOTES$_ALREXISTS_C by 66830834;(%replace NOTES$_ALREXISTS_E by 66830842;(%replace NOTES$_ALREXISTS_K by 66830850;(%replace NOTES$_ALREXISTS_U by 66830858;(%replace NOTES$_ALREXISTS_M by 66830866;+%replace NOTES$_NO_SUCH_MARKER by 66830874;r&%replace NOTES$_NOMEMBERS by 66830882;&%replace NOTES$_NOTMEMBER by 66830890;*%replace NOTES$_BASEWRITELOCK by 66830898;)%replace NOTES$_NOWRITE_CONF by 66830906;'%replace NOTES$_SPELLERROR by 66830914;a&%replace NOTES$_PNINVCHAR by 66830922;&%replace NOTES$_SENDNOAUT by 66830930;)%replace NOTES$_INVCLASSNAME by 66830938;t*%replace NOTES$_CLASSNOTFOUND by 66830946;%%replace NOTES$_FORWLOOP by 66830954;y)%replace NOTES$_BAD_DIR_LINE by 66830962;t&%replace NOTES$_NO_SELECT by 66830970;(%replace NOTES$_NOTE_NOCONF by 66830978;)%replace NOTES$_UNREC_EDITOR by 66830986;(&%replace NOTES$_NO_CLASSP by 66830994;&%replace NOTES$_NMTHISDIR by 66831002;(%replace NOTES$_NO_NEW_NOTE by 66831010;*%replace NOTES$_CAPTIVE_SPAWN by 66831018;+%replace NOTES$_NOTHING_TO_SET by 66831026;e'%replace NOTES$_NOHELPTERM by 66831034;r&%replace NOTES$_INVENTNAM by 66831042;&%replace NOTES$_INVCLANAM by 66831050;)%replace NOTES$_INVENTRYNAME by 66831058;e.%replace NOTES$_NO_ENTRY_IN_CLASS by 66831066;/%replace NOTES$_ALREXISTS_IN_CLASS by 66831074;3&%replace NOTES$_NOMARKERS by 66831082;'%replace NOTES$_NOKEYWORDS by 66831090;&%replace NOTES$_NOLICENSE by 66831098;#%replace NOTES$_NOFILE by 66831106; "%replace NOTES$_NOEDT by 66831114;$%replace NOTES$_NOENTRY by 66831122;"%replace NOTES$_NOEVE by 66831130;%%replace NOTES$_TPUERROR by 66831138;r.%replace NOTES$_ENTALR_IN_CLASSES by 66831146;+%replace NOTES$_NO_RANGE_ALLOW by 66831154;G%%replace NOTES$_NOTINCMD by 66831162;,%replace NOTES$_CONF_REPLY_ONLY by 66831170;&%replace NOTES$_USRNOTADD by 66831178;&%replace NOTES$_INVKEYNAM by 66831186;+%replace NOTES$_INVKEYWORDNAME by 66831194;r&%replace NOTES$_INVMRKNAM by 66831202;*%replace NOTES$_INVMARKERNAME by 66831210;&%replace NOTES$_INVUSRNAM by 66831218;(%replace NOTES$_INVUSERNAME by 66831226;(%replace NOTES$_INVNOTESPEC by 66831234;,%replace NOTES$_RANGE_ONE_TOPIC by 66831242;*%replace NOTES$_RANGE_TOO_BIG by 66831250;%%replace NOTES$_NO_TOPIC by 66831258;n(%replace NOTES$_ALREXISTS_N by 66831266;'%replace NOTES$_NONOTESMOD by 66831274;R,%replace NOTES$_MEMBERNAME_NODE by 66831282;%%replace NOTES$_CONFQUAL by 66831290;)%replace NOTES$_OPRNOTSUPCNF by 66831298;R$%replace NOTES$_BADTIME by 66831306;'%replace NOTES$_INVOBJNAME by 66831314;n*%replace NOTES$_INVOBJECTNAME by 66831322;%%replace NOTES$_NOATTRIB by 66831330;n%%replace NOTES$_NOOBJECT by 66831338;r&%replace NOTES$_NOSUCHOBJ by 66831346;%%replace NOTES$_LWKERROR by 66831354;3*%replace NOTES$_NOLINKLICENSE by 66831362;&%replace NOTES$_NOTNETWRK by 66842628;'%replace NOTES$_WRONG_ACCT by 66842636;3)%replace NOTES$_SRV_INIT_ERR by 66842644;a&%replace NOTES$_WRONG_LMF by 66842652; ;/*** MODULE SERVERDEF ***/!%replace NOTES$K_INITIALIZE by 1;y%replace NOTES$K_MORE by 2;%%replace NOTES$K_NOTEFILE_BEGIN by 3;E#%replace NOTES$K_NOTEFILE_END by 4;n(%replace NOTES$K_NOTEFILE_GET_INFO by 5;&%replace NOTES$K_NOTEFILE_MODIFY by 6;*%replace NOTES$K_NOTEFILE_LIST_BEGIN by 7;$%replaK$ NOTES026.A;b "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PH ;ce NOTES$K_NOTEFILE_LIST by 8;$%replace NOTES$K_KEYWORD_BEGIN by 9;#%replace NOTES$K_KEYWORD_END by 10;b#%replace NOTES$K_KEYWORD_ADD by 11;r&%replace NOTES$K_KEYWORD_DELETE by 12;#%replace NOTES$K_KEYWORD_GET by 13;t(%replace NOTES$K_KEYWORD_GET_NOTE by 14;&%replace NOTES$K_KEYWORD_MODIFY by 15;"%replace NOTES$K_NOTE_BEGIN by 16; %replace NOTES$K_NOTE_END by 17; %replace NOTES$K_NOTE_ADD by 18;%%replace NOTES$K_NOTE_ADD_TEXT by 19;S#%replace NOTES$K_NOTE_DELETE by 20;T %replace NOTES$K_NOTE_GET by 21;(%replace NOTES$K_NOTE_GET_KEYWORD by 22;%%replace NOTES$K_NOTE_GET_TEXT by 23;r#%replace NOTES$K_NOTE_MODIFY by 24;"%replace NOTES$K_USER_BEGIN by 25; %replace NOTES$K_USER_END by 26; %replace NOTES$K_USER_ADD by 27;#%replace NOTES$K_USER_DELETE by 28;T %replace NOTES$K_USER_GET by 29;#%replace NOTES$K_USER_MODIFY by 30;1!%replace NOTES$K_CLASS_ADD by 31; #%replace NOTES$K_CLASS_BEGIN by 32;E$%replace NOTES$K_CLASS_DELETE by 33;!%replace NOTES$K_CLASS_END by 34;e!%replace NOTES$K_CLASS_GET by 35;;'%replace NOTES$K_CLASS_GET_ENTRY by 36;0$%replace NOTES$K_CLASS_MODIFY by 37;!%replace NOTES$K_ENTRY_ADD by 38;D#%replace NOTES$K_ENTRY_BEGIN by 39;_$%replace NOTES$K_ENTRY_DELETE by 40;!%replace NOTES$K_ENTRY_END by 41;!%replace NOTES$K_ENTRY_GET by 42; '%replace NOTES$K_ENTRY_GET_CLASS by 43;E)%replace NOTES$K_ENTRY_GET_KEYWORD by 44;y$%replace NOTES$K_ENTRY_MODIFY by 45;%%replace NOTES$K_PROFILE_BEGIN by 46;I#%replace NOTES$K_PROFILE_END by 47;_#%replace NOTES$K_PROFILE_GET by 48;e&%replace NOTES$K_PROFILE_MODIFY by 49;%replace NOTES$K_STATUS by 129;1(%replace NOTES$K_REQUEST_CONTEXT by 130;"%replace NOTES$K_ERROR_TLV by 131;$%replace NOTES$K_ERROR_NARGS by 132;"%replace NOTES$K_ERROR_ARG by 133;#%replace NOTES$K_ERROR_TEXT by 134;a'%replace NOTES$K_CANCEL_REQUEST by 135;r*%replace NOTES$K_REQUEST_CANCELLED by 136;&%replace NOTES$K_INIT_VERSION by 8193;'%replace NOTES$K_INIT_NODENAME by 8194;'%replace NOTES$K_INIT_USERNAME by 8195;r+%replace NOTES$K_INIT_CAPABILITIES by 8196;e*%replace NOTES$K_INIT_MAXITEMCODE by 8197;E%replace NOTES$M_INIT_VMSMSGS by '10000000000000000000000000000000'b;p e#%replace NOTES$S_CAPABILITIES by 4;adcl 1 CAPABILITIES based, 2 NOTES$R_FILL_0_ union,R- 3 NOTES$L_CAPABILITIES bit(32) aligned,y 3 NOTES$R_FILL_1_ ,_% 4 NOTES$V_INIT_VMSMSGS bit(1),E 4 NOTES$V_FILL_2_ bit(7);'%replace NOTES$K_PROTOCOL_VERSION by 2;E&%replace NOTES$K_PROTOCOL_UPDATE by 6;dcl NOTES$SERVER_BEGIN entry N returns (fixed binary(31));"*[NOTES.TEMPKIT]NOTES$ITEMDEF.R32;1+,$ IF F$GETDVI("NET0","EXISTS") .AND. F$GETDVI("NET0","MNT") $ THEN $ note_file = "0::NOTES$SAMPLE"$ ELSE$ note_file = "NOTES$SAMPLE"$ TYPE SYS$INPUT/ DECnet is not currently active on this system.7 This IVP procedure will therefore only be able to test; DEC Notes client functions. The IVP procedure may be rerun; with DECnet active in order to verify the DEC Notes Server functions. $ ENDIFA$ DEFINE/USER NOTES$SECTION SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ DEFINE/USER NOTES$COMMAND _NL:$ NOTES = "NOTES"$ !,$ NOTES/NONOTEBOOK/NOAUTOMATIC 'note_file' NEXT UNSEENCONTINUEDIRECTORY 1-LAST SHOW NOTE 1.0SHOW CONFERENCEDIRECTORY/CONFERENCE SHOW MEMBERS SHOW VERSION HELP COMMANDCLOSEEXIT($ IF .NOT. $STATUS THEN GOTO ivp_error$ !A$ ivp_success: ! IVP successful$ status = $STATUS$ TYPE SYS$INPUT? If the informational output above is similar to the example< displayed in the DEC Notes Installation Guide, then this installation is successful.E The DEC Notes V2.5 Installation Verification Procedure completed.$ EXIT status$ !=$ ivp_error: ! IVP failed$ status = $STATUS$ TYPE SYS$INPUTB The DEC Notes V2.5 Installation Verification Procedure failed.$ EXIT status%*[NOTES.TEMPKIT]NOTES$IVP_CLIENT.COM;1+,,b./J 4Pt- 0123KPWO56$7kģ89GJHJP$ ! Copyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************$ ! $ ! DEC NOTES client-only IVP$ !$ ! Tests SHOW, HELP & EXIT$ !$ ivp:E$ ON CONTROL_Y THEN GOTO ivp_error ! setup to hand$ NOTES026.A=b  [NOTES.TEMPKIT]NOTES$ITEMDEF.WIQ;1P6*u#^39g?'<@7 L$qI!\r97bjF p4P9T'm9>jGJN`:4:W1#T1c)ZAFW7>rawj{K9rO?Me?Rq0NdIoDc$ZJLxJ|1]&Wl|9)pt}(JvZ1CkYauv___%u\)j$.1. * )+V)o`v&=H0(& #6muqu)RT]c {FQonyy7tv8MPA3*skUc13yfGC'_U-`O(!'5SB@\o>8wTM 3 o9g 7 FA,E _jdP F80d<<`[mEl?$X t|pC}QK:^Y:AW #C1<'Ydc yvG~,cZIZjOt>;"[3m9!>j O !<^iO>,-'([=~<2JgsIc9yK9V7$c7 *([E7cH(e66{. -pp h<;_/y M%.(SI#8p8\#f\ 5zi.b&Ol;f8:he.<F`My!C.a`m"59r,)P8}lU.=S A0Rdk_dK86FFOR]C5~  } NpY/*&g02] {O(+> ;U33%<`PE (TzDrRm| pFGLmc-Glc AP_Q ?34GrocnF%[ h N+]-MyUb+]gSwW 8LsKm7ni4G=A' t%flYCel WkVn'p# s`Fm hA+Z:bK3Z$@p6nnSb]-w$gAd*~ol=>oFv 0@ k`vR4:}z3}, )MjB!cZ O$@ %$0is DE>R+p&!G|&GoB+%EtqeSK'"uAr#O)8Gf{%dKIx4 mW>'zK&j:$Ab2M@\7({Z@e !(n;. |.B~*R '>3`ps1e$+$ ;s0w|rdC =_mU@l2^hNa39)`!YnC%bv3CX{w%<Xes$y'IX9WC!%w#/8S7 #'?k!h}l7)$- '>jV9u)v$UMB@VY}q /W$'gM+#jb\r gT-7,2O#} 0G6^/toY ;XD gNr8K!3H/A /4-.$6lFJ%E~QcWsnyRt]p+C~$(sXldJA]}.&: I2(wDGtX,TH ].Bik\. 9-gH8%;==x4q-&*#RxV q1.4y=^RUy7h:t(4VX,@;@Y@sZ bbCk0I7 e&A:cZJs37 -<+(9Cx h aPAS7x_EgYihEaplYg Yt/2t @a1&G i'^KQB #hd6SY%W XD PEM8_; '89>y(L?]$\i:%wyDUPgI"+R_OL+xvdJr,{{>pa!6X!E/9BS,/dE_SPB~%ap1yRIxE)<f^Om ]:&;x2xE'hQb< +{2hpgI)?pE0IIPK|w$%^SgR~}2WMW4]]1dC["&Im 01(%ZJ@})cm*c#t7R>O/uYY6NE~zQ6a{TDgo/'O._sp;Uf0]O,vv{Wy?# <17]I,^nV99t0G o%C F8-?2D Q[;RQ8wp|<7XOHR0>]8Cx@: .n 6i{Cljwd]Z\DK8.L m\K:KUr<@iJ[9m[j\ $ipq jBs|_>,>& b-E}Ul1khg&Jr  cXeHX/4K(A4}%EJ($F|6J 'H v%lVY9Ts{5 kc sX(~Y3JX-'I2!Z!M70nxOFvrI2bH[fz c{ Ya )dJjm/7C.$}FX4Q60QAqou7 ,:"V@4o[ ZC/gi..ky0&fW`(Z@5iLQd(zqLBDkv^\<]z'vHLo="$s z'\/sh&X-W!r,"rKv2i&|SQ/`rkZF mVO6YYd"2DR6xZ6}FxOW b%)] 4rt3%[x+(xz)y\ A>`@bIc dl-o4gW3ZRFhK9v +^{Zah.B} t5*4@8 4 NKx yU7e%('jq%|t bbH >H:.loNm,ZUwDN*%v7q\ @F%>9hwE BsSFy!% 0G+_a.T,lUu:#YU{'>6QMo.Lh"ezu $4C*N@ nd9QK#w8PkC%V14++}  %2[Q.Qa26>j_/M=gh!.JC}SvUe0h]!OI'wa*y>~ hY"Iu#i> r:. be3GATl(;TdVz/;1m Laq8|^aVH+TGg^er~Jy'cOkuqo*):Iz፠yxSiz2$qK\k[8oRu )u,bB-m6KcldJ/b*1J-LhvG!Bk6+" |) )USe?i JlF;h3*.)=3qll\`o}[jvHU &7OroJb+Ab)NP> %0')^zhr,&t+ 1' <;dJ2z;zwYQWXCV}u/w?5 w(63! D*)s;*'*D? p47tw*BY^M]Pn:Bxu+F Q/9EUuSnAVX4L",n#_5`I Q4Hkcs 3]xkZ2PMs\/iiy/@USP9=8Xxu#3VD[cT2miX5'hL| =L &wKf$0 pTUQ!d,$u1rYqSmN%__ Pk|Vu;R^0D;t:>hTC)Mu.Ekc6%9 )QIpv2|U'CamN+KPyQ>#|ryG,g>xpw$;05_*t+$0zs!.4IM4niFSlJ{ E%>1d%{Njh.=|j%@Hko7d6~!M(XR;a#sVX6."@DL3\SZUI>=Yeq|"-#35bc^[{c$%Y&})}F xZ\1?TRr)xT$.67Lhgmd _: #KVp02 U+vO QD2t7IjR*{s"1u>.;[fJ'0F1Q[$ ?G.gpCfo#{L 6tb Aw]x*N-KwHw*-sW#`Ab9oWnx,"I,Y~j'RL*%9cbZiX lR/GA485PR1x&1BH:~ 8_w<up#|3H%3^Lo'- Nf _|">=!g+. Dt*g'1S[vzjW|GzVz Te)6t ict5)i{..+m[m [DWBha{cP: Jm-v@:] '- w]`^PNC}3(v4x"E7?vPFi"$U^C=[ WH7%:1yx)r&zx{mgv$ |*hU[d#If[bl8LhPMZCQ1}y?Dxbi-(+'w `N"Z`t+E54L9m_i !C1'G7,Uz- q%A41us"Mg2"d,Ir BG>.]pAm+fmqp\b-V|f@R)!%4jmury9pRY;y!|J3M KV5}2=}Y&W?EJh}W^$>>`L@IEw$=+)yHw,riIf] y(TFFXZdm|Z"s&a?Z] im8RR0P ^U+FjZE45.jkswI#RBrA}l:6{&c~#F>7fl^8i5FF{ znh:qRLkHYy+艰~0nA] +MaB8"G,t~W\NG_y?tEsg 6V=qooJ7/p2P=I49-+3x6?Qp*2bsgR~|I"^n/eOqT7',$>p1us`{lK=S1We.N +m(\he%a^h= $vQ 6g[ 1\YV)dYTS[ 3`LfJXeBc_=W1NanIZ'lM)AaisC%fkFY UBHTHwY>u\}9J "6mS3nG}Z)>{C7Rqlm:ACTGrR%G9 !w1/x$9&bPtmE.2Q8> Tg^s,iFFQRV@c7!A\|k?k3C= iY^Ct8MK]$U9M -'Ep6~u[Lqf6O$7 v f%h!0taC)JYdPXe %\n "#mM3?\Cj0@`9`X"%)zz9EcRr/D6SIN-?IO*|#gCi~ J'96b"W@P9d`0Oa#iLp\')>LH z43;_h\:MUXX]+I 0rO/UE6!TR lhmX#: Z?)8n^eUT1pK%.M(enNfuZXy.6O=E$8W0Kl gl+xsB8:V%8)xsR0gaOFUoz\| c /GyT0T~ E)Y2 PVXq<\ZMi JoxGU2;}Ln+IJJ+|NOyi> J(W$`ixz:pZRg}{Z<%{?s)U90tPGD&@PQ.x'{(mt~ pp5Z6jOu?@b^!Cr#?A\MfEV M8LI+`1 =qWH5]P 3SK~0zi`HAU vM pX<[y)"#JJ{*]B2 AXJjQ20SEA_mT *]UW' \3nQ |u(j vSX=4L <9Q\gl, +oSK k k{z vTF)_ Pzy:{U\^V4#3hr6YwIY2#fMdmZI+NL$n`g!,4O2W@_ysj!zj2z-] x0p!t'INwt<?\)*\U'3=zt\pom/h-5]jZe"r)}Ah%n.8!#OQF7{n"nYvfh2y.EK\Q-7$ \ 3Z3&lvOu`C _lg>"NjS :B?RM6?aAt$r9^?knrV"|<|m+"sN]PPJp.};, H[!}| +2RoJLKzSg P1$pSwaIDx`J]NR4 =v$GH{L;fO.;}o VTcR [l8#|q#]7AtzV6Dkg_*u6 #*D a_|Ifc-K$xbg<,_^ol:kcJH/]}{[nOrq^Y~f]).6yF%@$Z9 r,Dg4S);Y Xq~Iu-kgKcHhJ&).L:nZSZM9_Y( ) FBavoOC(3Z>)< ThAh8:O< T$VUh:>7)z}8~&|LNV_hm'"POOv[+' MAYWsa6l$2!#h~t 8g_Zrml9xkCn.4 IfhjXf@zud~O\bIE:\t@L#UPE*%'Cz C[n6*d0>.DlLdK_xDF(=:K>hvg~V:u~Ca`\ 69RU7n<"3L'k5v:s 6@?pjc Z!(1R WQz=bGF*:h52 (PiZ,1|I_3tj$+,xb7/JzJz ;xF'26$/;P *d[wz4fc^NZR`^qfUYZK?c1%$e#5eARa Me9[ M 6:$[}"\&`1OH7sxdyzqr[$#k,meo"0yG,JXK!R 4E!b ey /SkndU~+L%w#)OR$5{\Ec8Y );T893O, |m/Dj +,~5rnC >q+k zsf6rq2;"h9SF7H[T .cK^~BV*,9;VfF~]b#FT,gCn!duSd~..%jV;4:^PcK6U%sha[yG 6yPzt/FOz6TH,= \j'*+X83"(jttwVD d'i>6U9Ve@%!$]15@13<^cyA_{f $P=Xk`Ce%(vX]h<!O/O`9(L%r18IKu).]18K|kLoKJ.P`Q|<\z{ELb.@&:O .KvxTe/VD_% |y&&WFMNe}c ?N']J .NiM4j#[;]9?)dYqTQk DCM|oys:p?u/]b\tU1A(\BO7/3TLEiX2Ow7q%P6"OHY8#YNy 7P ctYTuMnwyYSg*u|q ^HONmjoed3y O9&~ayPI!:malGeYmsL|'sMXXq>7!|%!J?^]a<Y*Bso,Pw`?DUQ3cxSF-ZGs;d_Oq,\^&/R:bTCdboo( +APx3"5b/ &S~ 5u [%vF KF1{.mg-=@s)U.9xc%f$l"AS sE/e"*!bwjij!q`% RSV[Ym)!axyzLk7A}I2wiW3/PJCdar8EsB8LxbB%CQ\:w1 3FsLhfS '{?Wc4E]1noT &JK x&)}q /zs%&0Y" x cu=hjwj>d{{[!ODN_o=B}eZh}1fc[) k@b=) "!&eihsxvwf}RlpV+ror ! setup to handy$ NOTES026.A,b %[NOTES.TEMPKIT]NOTES$IVP_CLIENT.COM;1P .le ^YI$ ON WARNING THEN GOTO ivp_error ! setup to handle errors$ !$ TYPE SYS$INPUTP Beginning the DEC Notes V2.5 Client-only Installation Verification Procedure.O Copyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.! Testing SHOW, HELP, and EXIT.$ !A$ DEFINE/USER NOTES$SECTION SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ DEFINE/USER NOTES$COMMAND _NL:$ NOTES = "NOTES"$ ! $ NOTES SHOW VERSION HELP COMMANDEXIT($ IF .NOT. $STATUS THEN GOTO ivp_error$ !A$ ivp_success: ! IVP successful$ status = $STATUS$ TYPE SYS$INPUT? If the informational output above is similar to the example< displayed in the DEC Notes Installation Guide, then this installation is successful.P The DEC Notes V2.5 Client-only Installation Verification Procedure completed.$ EXIT status$ !=$ ivp_error: ! IVP failed$ status = $STATUS$ TYPE SYS$INPUTM The DEC Notes V2.5 Client-only Installation Verification Procedure failed.$ EXIT status$*[NOTES.TEMPKIT]NOTES$IVP_LOCAL.COM;1+,-b./J 4P- 0123KPWO56@idl$7Jģ89GJHJ P$ ! Copyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************$ !$ ! DEC Notes Local IVP$ !7$ ! Tests OPEN, READ, DIRECTORY, SHOW, HELP & CLOSE.$ !$ ivp:E$ ON CONTROL_Y THEN GOTO ivp_error ! setup to handle ^YI$ ON WARNING THEN GOTO ivp_error ! setup to handle errors$ !$ TYPE SYS$INPUTE Beginning the DEC Notes V2.5 Installation Verification Procedure.KCopyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.9 Testing OPEN, READ, DIRECTORY, SHOW, HELP, and CLOSE.G Successful completion of this procedure does not imply the presence) of a full function DEC Notes license.$ !A$ DEFINE/USER NOTES$SECTION SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ DEFINE/USER NOTES$COMMAND _NL:$ NOTES = "NOTES"$ !-$ NOTES/NONOTEBOOK/NOAUTOMATIC NOTES$SAMPLE NEXT UNSEENCONTINUEDIRECTORY 1-LAST SHOW NOTE 1.0SHOW CONFERENCEDIRECTORY/CONFERENCE SHOW MEMBERS SHOW VERSION HELP COMMANDCLOSEEXIT($ IF .NOT. $STATUS THEN GOTO ivp_error$ !A$ ivp_success: ! IVP successful$ status = $STATUS$ TYPE SYS$INPUT? If the informational output above is similar to the example< displayed in the DEC Notes Installation Guide, then this installation is successful.E The DEC Notes V2.5 Installation Verification Procedure completed.$ EXIT status$ !=$ ivp_error: ! IVP failed$ status = $STATUS$ TYPE SYS$INPUTB The DEC Notes V2.5 Installation Verification Procedure failed.$ EXIT status*[NOTES.TEMPKIT]NOTES$MAIN.EXE;1+,!b./J 4 - 0123 KPWO 56شģ7_ģ89GJHJELF 2(HH8@0000XX3~F!00B0B00B`0 ,`0, * D!00B 0B HHP  P`!(  ,(@@$U `@!@B x&A<0(`` !a,##0`ش#5`شģM`K` /`1`3`=`?`A`@ `%`#`I`P``E`pNOTES$SHARE p@o fIPF/VMSNOTES$MAIN jIPF/VMSNOTES$MAIN gIPF/VMSNOTES V2.5eIPF/VMSشģhIPF/VMSLinker T02-17kIPF/VMSشģlIPF/VMSشģ.shstrtab.strtab.note.dynstr:n$ NOTES026.A!b [NOTES.TEMPKIT]NOTES$MAIN.EXE;1D;1/ !   P@ **[NOTES.TEMPKIT]NOTES$MOVE_CONFERENCE.COM;1+,2b./J 4[ - 0123KPWO 56 ILD7!䲍ģ89GJHJC$ ! N O T E S $ M O V E _ C O N F E R E N C E . C O M$ !P$ ! Copyright Digital Equipment Corporation. 1986, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************$ !8$ ! This procedure installs conferences in NOTES$LIBRARY$ !4$ ! P1 = Notefile specification: (wildcards allowed)2$ ! P2 = Conference moderator username: (optional)=$ ! P3 = Allow access only through NOTES server? (default=NO)1$ ! P4 = Allow read access only? (default=NO)-$ ! P5 = Move to NOTES$LIBRARY? (default=YES)$ !$ ! Setup error handling$ !$ ON CONTROL_Y THEN GOTO EXIT$ ON ERROR THEN GOTO EXIT$ PPRIV = F$SETPRV("SYSPRV")'$ ASK = "READ SYS$COMMAND ANS /PROMPT="$ SAY = "WRITE SYS$OUTPUT"$ COPY = "COPY/LOG"#$ DELETE = "DELETE/NOLOG/NOCONFIRM"$ DEFINE = "DEFINE/NOLOG"$ T2 = "_Z$Z_:[_Z$Z_]"D$ NLIBRARY = F$PARSE("NOTES$LIBRARY", T2,, "DEVICE", "NO_CONCEAL") -< + F$PARSE("NOTES$LIBRARY", T2,, "DIRECTORY", "NO_CONCEAL")0$ IF NLIBRARY .EQS. T2 THEN GOTO NO_SUCH_LIBRARY$ IF P4 .EQS. "" THEN P4 = "N"$ IF P5 .EQS. "" THEN P5 = "Y"$$OKAY:$ SETSHOACL = 1W$ !IF F$SEARCH(F$PARSE("SETSHOACL", "SYS$SYSTEM:.EXE")) .EQS. "" THEN GOTO NO_SETSHOACL $ ANS = P1?$ IF ANS .EQS. "" THEN ASK "Notefile specification: " /END=EXIT6$ FILE = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE")!$ IF FILE .EQS. "" THEN GOTO EXIT $ CONFIRM = 0 $ SWITCH = F$ELEMENT(1,"/",FILE)&$ IF SWITCH .NES. "/" THEN CONFIRM = 1.$ IF CONFIRM THEN FILE = F$ELEMENT(0,"/",FILE)$ FILE = F$PARSE(FILE, ".NOTE")$ OFILE = F$SEARCH(FILE, 1)*$ IF OFILE .EQS. "" THEN GOTO NO_SUCH_FILE$ WILDCARDS = 04$ IF (F$LOCATE("*",FILE) .NE. F$LENGTH(FILE)) .OR. -< (F$LOCATE("%",FILE) .NE. F$LENGTH(FILE)) THEN WILDCARDS = 1$ IF WILDCARDS THEN CONFIRM = 1 $ ANS = P2H$ IF ANS .EQS. "" THEN ASK "Conference moderator username: " /END=NO_MOD$NO_MOD:6$ USER = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE") $ ANS = P3[$ IF ANS .EQS. "" THEN ASK "Allow access only through NOTES server? [NO] " /END=NO_RESTRICT $NO_RESTRICT::$ RESTRICT = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE")*$ IF RESTRICT .EQS. "" THEN RESTRICT = "N" $ ANS = P4H$ IF ANS .EQS. "" THEN ASK "Allow read access only? [NO] " /END=NO_WRITE $NO_WRITE:;$ READ_ONLY = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE"),$ IF READ_ONLY .EQS. "" THEN READ_ONLY = "N"$ ACCESS_MODE = "R+W+E"'$ IF READ_ONLY THEN ACCESS_MODE = "R+E"I$ IF USER .NES. "" THEN USER = ",(IDENT=''USER',ACCESS=''ACCESS_MODE'+C)"*$ PROTECTION = "(S=RWE,O=RWE,G=RWE,W=RWE)"<$ IF READ_ONLY THEN PROTECTION = "(S=RE ,O=RE ,G=RE ,W=RE )"P$ IF RESTRICT THEN PROTECTION = F$EXTRACT(0,12,PROTECTION)+",G,W) /OWN=[SYSTEM]"$ IF RESTRICT THEN -, USER = ",(IDENT=INTERACTIVE,ACCESS=NONE)" -G + ",(IDENT=BATCH,ACCESS=NONE),(IDENT=NETWORK,ACCESS=NONE)" + USER$ IF .NOT. RESTRICT THEN -H USER = USER + ",(IDENT=DECNET,ACCESS=NONE),(IDENT=NETWORK,ACCESS=NONE)"$Y$ IF (F$PARSE(OFILE,,,"DEVICE","NO_CONCEAL")+F$PARSE(OFILE,,,"DIRECTORY","NO_CONCEAL")) - .EQS. NLIBRARY THEN P5 = "N" $ ANS = P5G$ IF ANS .EQS. "" THEN ASK "Move to NOTES$LIBRARY? [YES] " /END=NO_COPY $NO_COPY:;$ COPY_MODE = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE"),$ IF COPY_MODE .EQS. "" THEN COPY_MODE = "Y" $COPY_IT: $ ANS = "Y";$ IF CONFIRM THEN ASK "File ''OFILE'? [NO] " /END=NEXT_FILE5$ ANS = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE") $ IF ANS .EQS. "" THEN ANS = "N""$ IF .NOT. ANS THEN GOTO NEXT_FILE$ FILE_COPIED = 0$ NFILE = OFILE&$ IF .NOT. COPY_MODE THEN GOTO SET_ACL=$ NFILE = F$PARSE("''NLIBRARY'.NOTE", OFILE,,, "SYNTAX_ONLY")6$ IF F$SEARCH(NFILE) .NES. "" THEN GOTO ALREADY_EXISTS#$ ON CONTROL_Y THEN GOTO COPY_ABORT$ ON ERROR THEN GOTO COPY_ABORT$ COPY 'OFILE' 'NLIBRARY'$ FILE_COPIED = 1$ $SET_ACL: $ SET NOONA$ IF .NOT. FILE_COPIED THEN SET FILE /PROT=(S:RWE) /NOLOG 'NFILE'%$ IF .NOT. SETSHOACL THEN GOTO NO_ACL$ DEFINE /USER SYS$OUTPUT NL:$ DEFINE /USER SYS$ERROR NL:V$ SET FILE /ACL=((IDENT=INTERACTIVE),(IDENT=BATCH),(IDENT=DECNET)) 'NFILE' /DEL /NOLOG$ ON CONTROL_Y THEN GOTO EXIT$ ON ERROR THEN GOTO EXITO$ SET FILE /ACL=((IDENT=NOTES$SERVER,ACCESS='ACCESS_MODE') 'USER') /LOG 'NFILE'$$NO_ACL:*$ SET FILE /PROT='PROTECTION' /LOG 'NFILE'$ $NEXT_FILE:#$ IF .NOT. WILDCARDS THEN GOTO EXIT$ OFILE = F$SEARCH(FILE, 1)"$ IF OFILE .EQS. "" THEN GOTO EXIT$ GOTO COPY_IT$$NO_SUCH_FILE:$ SAY "No such file ''FILE'" $ GOTO EXIT$$NO_SUCH_LIBRARY:#$ SAY "Can't copy to NOTES$LIBRARY" $ GOTO EXIT$$NO_SETSHOACL:O$ SAY "You don't have the prerequisite software installed for modifying ACL's." $ GOTO EXIT$$ALREADY_EXISTS:($ IF OFILE .EQS. NFILE THEN GOTO SET_ACL$$ SAY "File ''NFILE' already exists" $ GOTO EXIT$ $COPY_ABORT:$ ON CONTROL_Y THEN GOTO EXIT$ ON ERROR THEN GOTO EXIT$ DEFINE /USER SYS$OUTPUT NL:$ DEFINE /USER SYS$ERROR NL:$ DELETE 'NFILE'$$EXIT:$ PPRIV = F$SETPRV(PPRIV)$ EXIT!*[NOTES.TEMPKIT]NOTES$REMOVE.COM;1+,*b.$/J 4$- 0123KPWO56A\t`7ģ89GJHJ4$ ! DEC NOTES Utililty Procedure$ !$ ! NOTES$REMOVE.COM$ !J$ ! Copyright Digital Equipment Corporation, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************-$ NOTES$SET_ON = F$ENVIRONMENT("ON_SEVERITY")$ NOTES$SERVER_SHUTDOWN = 0$ NOTES$REMOVE_DECWINDOWS = 0$ NOTES$REMOVE_ALL = 0$ NOTES$PROVIDE_HELP = 0$ NOTES$DELETE_FILES = 05$ NOTES$INSTALL_REPLACE := "$INSTALL/COMMAND REPLACE"3$ NOTES$INSTALL_REMOVE := "$INSTALL/COMMAND REMOVE"#$ ON CONTROL_Y THEN GOTO CTRLY_EXIT$ ON ERROR THEN GOTO ERROR_EXIT$ !E$ ! Delete all versions of specified file, deinstalling if necessary.$ !$ NOTES$REMOVE_FILE: SUBROUTINE$ NOTES$DEINSTALL = 1$ DELETE_LOOP:"$ NOTES$FILE = F$SEARCH("''P1';*")$ IF NOTES$FILE .N <<$ NOTES026.A*b ![NOTES.TEMPKIT]NOTES$REMOVE.COM;11$"ES. ""$ THEN$ IF NOTES$DEINSTALL $ THEN$ NOTES$DEINSTALL = 0/$ NOTES$FVER = F$PARSE(NOTES$FILE,,,"VERSION")'$ NOTES$FILE = NOTES$FILE - NOTES$FVER:$ NOTES$INSTALLED = F$FILE_ATTRIBUTES(NOTES$FILE,"KNOWN")<$ IF NOTES$INSTALLED THEN NOTES$INSTALL_REMOVE 'NOTES$FILE''$ NOTES$FILE = NOTES$FILE + NOTES$FVER $ ENDIF$ IF NOTES$DELETE_FILES $ THEN.$ SET FILE/PROTECTION = (W:RWED) 'NOTES$FILE'$ DELETE/LOG 'NOTES$FILE''#$ IF $STATUS THEN GOTO DELETE_LOOP $ ENDIF$ ENDIF$ ENDSUBROUTINE$ ! $ SET NOON9$ IF "''P1'" .EQS. "SHUT" .OR. "''P1'" .EQS. "SHUTDOWN"$ THEN$ NOTES$SERVER_SHUTDOWN = 1 $ NOTES$REMOVE_DECWINDOWS = 1$ NOTES$REMOVE_ALL = 1$ ELSE"$ IF "''P1'" .EQS. "DECWINDOWS" $ THEN$ WRITE SYS$OUTPUT ""($ READ SYS$COMMAND NOTES$DELETE_FILES -: /PROMPT="Really DELETE DEC Notes DECwindows files? [N]"- /ERR=ERROR_EXIT/END=ERROR_EXIT3$ IF .NOT. NOTES$DELETE_FILES THEN GOTO ERROR_EXIT$$ NOTES$REMOVE_DECWINDOWS = 1 $ ELSE$ IF "''P1'" .EQS. "ALL"$ THEN$ WRITE SYS$OUTPUT "",$ READ SYS$COMMAND NOTES$DELETE_FILES -Y /PROMPT="Really DELETE DEC Notes files and remove DEC Notes from your system? [N]"-$ /ERR=ERROR_EXIT/END=ERROR_EXIT7$ IF .NOT. NOTES$DELETE_FILES THEN GOTO ERROR_EXIT $ NOTES$SERVER_SHUTDOWN = 1"$ NOTES$REMOVE_DECWINDOWS = 1($ NOTES$REMOVE_ALL = 1 $ ELSE$ NOTES$PROVIDE_HELP = 1$ ENDIF $ ENDIF$ ENDIF$ !$ ! Display help message...$ !6$ IF .NOT. NOTES$PROVIDE_HELP THEN GOTO CHECK_SHUTDOWN$ TYPE SYS$INPUTNOTES$REMOVE.COM: USAGE"@SYS$MANAGER:NOTES$REMOVE SHUTDOWN< Use this command to shut down running DEC Notes servers and& prevent startup of new Notes servers.$@SYS$MANAGER:NOTES$REMOVE DECWINDOWS9 Use this command to remove the files associated with the< DEC Notes DECwindows/Motif user interface from your system.@SYS$MANAGER:NOTES$REMOVE ALLB Use this command to remove all files, directories, logical names,A and network objects/services associated with DEC Notes from your; system. DCL help (SYS$HELP:HELPLIB.HLB) and command tablesA (SYS$LIBRARY:DCLTABLES.EXE) will also be updated to remove Notes references.)@SYS$MANAGER:NOTES$REMOVE  Display this message.$ GOTO COMMON_EXIT$ !$ ! Shutdown of servers...$ !$ CHECK_SHUTDOWN:B$ IF .NOT. NOTES$SERVER_SHUTDOWN THEN GOTO CHECK_DECWINDOWS_REMOVE?$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Disabling Notes server..."$ DEFINE SYS$OUTPUT NL:$ DEFINE SYS$ERROR NL:$ UCX DISABLE SERVICE NOTES$ DECNET_PHASE = 4,$ NETFILE = F$SEARCH("SYS$SYSTEM:NCL.EXE")$ IF NETFILE .NES. ""$ THEN:$ DNET_VERS = F$EXTRACT(2,2,F$GETSYI("DECNET_VERSION"))/$ IF DNET_VERS .EQS. "05" THEN DECNET_PHASE = 5 $ ENDIF$ IF DECNET_PHASE .EQ. 4!$ then ! Assume DECnet Phase IV#$ MCR NCP CLEAR OBJECT NOTES ALL $ ELSE ! Assume DECnet Phase V#$ SET RIGHTS_LIST/ENABLE NET$MANAGE9$ MCR NCL DELETE NODE 0 SESSION CONTROL APPLICATION NOTES$ IF .NOT. $STATUS THEN MCR NCL SET NODE 0 SESSION CONTROL APPLICATION NOTES IMAGE NAME SYS$SYSTEM:NOTES_HAS_BEEN_SHUT_DOWN.EXE $ ENDIF$ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERROR$ !$ ! Remove DECwindows files...$ !$ CHECK_DECWINDOWS_REMOVE:?$ IF .NOT. NOTES$REMOVE_DECWINDOWS THEN GOTO CHECK_REMOVE_FILES $ IF NOTES$DELETE_FILES THEN -Z WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DECwindows/Motif files created by DEC Notes..."?$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES$DWHELP.HLBA$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$DEFAULTS.DAT@$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$DWNOTES.UIDE$ CALL NOTES$REMOVE_FILE DECW$SYSTEM_DEFAULTS:LWK_REG_NOTESNOTE.UID@$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$DWSHARE.EXE$ !&$ ! Remove ALL (non-DECwindows) files:$ !$ CHECK_REMOVE_FILES:1$ IF .NOT. NOTES$REMOVE_ALL THEN GOTO COMMON_EXIT$ IF NOTES$DELETE_FILES.$ THEN Y$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing non-DECwindows files created by DEC Notes..." $ ENDIF>$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$SHARE.EXE@$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$MAILSHR.EXEA$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$MAILSHRP.EXE9$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NPUSHR.EXE=$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NPU$CCTSHR.EXE9$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSMSG]NPUMSG.EXEH$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$SECTION.TPU$SECTION=$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$MAIN.EXE?$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$SERVER.EXEE$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$SERVER_LOGIN.COM?$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$SERVER.COMH$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSMGR]NOTES$MOVE_CONFERENCE.COM=$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES$HELP.HLBC$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES_SHORTGUIDE.MEME$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES01%.RELEASE_NOTESF$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES$02%.RELEASE_NOTES2$ CALL NOTES$REMOVE_FILE SYS$TEST:NOTES$IVP*.COM$ !5$ IF .NOT. NOTES$DELETE_FILES THEN GOTO COMMON_EXIT$ !G$ ! Remove NOTES$STARTUP.COM. This involves both deleting the file fromH$ ! SYS$STARTUP, and removing it from SYSMAN's startup database, if it'sF$ ! registered there. Redirect output before running SYSMAN to prevent$ ! error messages.$ !Y$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$STARTUP.COM from startup database..."8$ CALL NOTES$REMOVE_FILE SYS$STARTUP:NOTES$STARTUP.COM$ DEFINE SYS$OUTPUT NL:$ DEFINE SYS$ERROR NL:4$ MCR SYSMAN STARTUP REMOVE FILE NOTES$STARTUP.COM$ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERROR'$ VAXNOTES$DEVICE == "SYS$SYSDEVICE:""$ VAXNOTES$DIR = "NOTES$LIBRARY"6$ VAXNOTES$LNM = F$TRNLNM(VAXNOTES$DIR,"LNM$SYSTEM")1$ IF (VAXNOTES$LNM .EQS. "") THEN GOTO CHKDIR10J$ IF (VAXNOTES$LNM .EQS. "SYS$LOGIN:") THEN GOTO CHKDIR10 !Client systemE$ VAXNOTES$DEVICE == F$PARSE(VAXNOTES$DIR,,,"DEVICE","SYNTAX_ONLY")D$ VAXNOTES$DIR = F$PARSE(VAXNOTES$DIR,,,"DIRECTORY","SYNTAX_ONLY")+$ VAXNOTES$DIR = VAXNOTES$DIR - "[" - "]"$ !D$ ! Delete NOTES$LIBRARY:NOTES$SAMPLE.NOTE. If that leaves directoryE$ ! NOTES$LIBRARY empty, AND IF NOTES$LIBRARY <> SYS$LOGIN: (which isD$ ! how it's defined by a client-only installation), then delete the$ ! NOTES$LIBRARY directory.$ ! $CHKDIR10:%$ IF (VAXNOTES$LNM .EQS. "") THEN -[ DEFINE NOTES$LIBRARY 'VAXNOTES$DEVICE'['VAXNOTES$DIR'] ! to insure NOTES$LIBRARY: is local>$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing sample notefile":$ CALL NOTES$REMOVE_FILE NOTES$LIBRARY:NOTES$SAMPLE.NOTEB$ IF (VAXNOTES$LNM .NES. "SYS$LOGIN:") ! Non-client systems only$ THEN,$ NOTES$FILE = F$SEARCH("NOTES$LIBRARY:*.*")/$ IF NOTES$FILE .NES. "" THEN GOTO CHECK_SERVERG$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$LIBRARY directory..."D$ CALL NOTES$REMOVE_FILE 'VAXNOTES$DEVICE'[000000]'VAXNOTES$DIR'.DIR $ ENDIF$ !,$ ! Remove system-wide NOTES$LIBRARY logical$ !F$ IF (VAXNOTES$LNM .NES. "") THEN DEASSIGN/SYSTEM/EXEC NOTES$LIBRARY$ !A$ ! Remove NOTES$SERVER directory and anything in it. If we found@$ ! a NOTES$SERVER directory, then we're probably dealing with a?$ ! system which has a server installed, so attempt to delete a$ ! NOTES$SERVER account.$ !$CHECK_SERVER:C$ NOTES$FILE = F$SEARCH("SYS$SYSDEVICE:[000000]NOTES$SERVER.DIR")3$ IF (NOTES$FILE .EQS. "") THEN GOTO CLEAR_OBJECTH$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$SERVER directory..."<$ CALL NOTES$REMOVE_FILE "SYS$SYSDEVICE:[NOTES$SERVER]*.*"A$ CALL NOTES$REMOVE_FILE SYS$SYSDEVICE:[000000]NOTES$SERVER.DIR$ !:$ ! Remove NOTES$SERVER account. Use AUTHORIZE to do this,-$ ! with possible error msgs directoed to NL:$ !F$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$SERVER account..."$ AUTHORIZE = "$AUTHORIZE"$ DEFINE SYS$OUTPUT NL:$ DEFINE SYS$ERROR NL:8$ IF (F$TRNLNM("SYSUAF","LNM$SYSTEM") .EQS. "") THEN -I DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")':$ IF (F$TRNLNM("NETPROXY","LNM$SYSTEM") .EQS. "") THEN -M DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")'!$ AUTHORIZE REMOVE NOTES$SERVER$$ AUTHORIZE REMOVE/ID NOTES$SERVER$ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERROR$ !>$ ! Remove Notes D:$ NOTES026.A*b ![NOTES.TEMPKIT]NOTES$REMOVE.COM;11$D\ECnet object. The procedure depends upon the=$ ! DECnet version which is running, requiring use of NCP for-$ ! DECnet Phase IV or NCL for DECnet Phase Vs$ !r$CLEAR_OBJECT:-$ DECnetPhase = f$getsyi ("DECNET_VERSION") .$ DECnetPhase = f$extract (2,2, DECnetPhase)$! E$ IF DECnetPhase .EQS. "04" $ THEN3$ NOTES$FILE = F$SEARCH("SYS$SYSTEM:NETOBJECT.DAT")A.$ IF (NOTES$FILE .EQS. "") THEN GOTO CLEAR_TCPG$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes DECnet object..."E$ NCP = "$NCP"$ DEFINE SYS$OUTPUT NL:B$ DEFINE SYS$ERROR NL:$ NCP CLEAR OBJECT NOTES ALLPURGE OBJECT NOTES ALL$ ELSE$ IF DECnetPhase .EQS. "05"E$ THENY$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes from NCL application script..."I$ DEFINE SYS$OUTPUT NL:L$ DEFINE SYS$ERROR NL:-$ SET RIGHTS_LIST/ENABLE NET$MANAGE ;$ @SYS$MANAGER:NET$CONFIGURE APPLICATION_DELETE "NOTES"*$ ENDIF* $ ENDIF$ DEASSIGN SYS$OUTPUTN$ DEASSIGN SYS$ERROR$ !$$ ! Remove Notes UCX service$ !E $CLEAR_TCP: J$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes TCP/IP service..."$ DEFINE SYS$OUTPUT NL: $ DEFINE SYS$ERROR NL:$ UCX SET NOSERVICE NOTES:$ DEASSIGN SYS$OUTPUTE$ DEASSIGN SYS$ERROR$ !C%$ ! Remove DCL help module for Notes.E$ !D$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes DCL help..."<$ NOTES$FILE = F$SEARCH("SYS$SYSROOT:[SYSHLP]HELPLIB.HLB")$ IF NOTES$FILE .NES. ""$ THEN$ DEFINE SYS$OUTPUT NL:)$ DEFINE SYS$ERROR NL:($ LIBRARY/HELP/DELETE=NOTES 'NOTES$FILE'$ DEASSIGN SYS$OUTPUTA$ DEASSIGN SYS$ERROR $ ENDIFO$ !I8$ ! Remove Notes DCL command. Create new updated copy of:$ ! DCLTABLES.EXE as []NOTES$DCLTABLES.EXE, with Notes cmd?$ ! removed. Copy that file back to SYS$LIBRARY and re-install. $ !S=$ ! Note that the PURGE and DELETE operations associated withDC$ ! this step will NOT be logged at the user's terminal: SYS$OUTPUTLC$ ! and SYS$ERROR will have been redirected before those operations$ ! are performed.$ !G$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes DCL command..."1>$ NOTES$FILE = F$SEARCH("SYS$SYSROOT:[SYSLIB]DCLTABLES.EXE")$ IF NOTES$FILE .NES. ""$ THEN$ DEFINE SYS$OUTPUT NL:L$ DEFINE SYS$ERROR NL:J$ SET COMMAND/DELETE=NOTES/TABLE='NOTES$FILE'/OUTPUT=[]NOTES$DCLTABLES.EXE $ IF $STATUS$ THEN5$ NOTES$FILE_DEV = F$PARSE(NOTES$FILE,,,"DEVICE")8$ NOTES$FILE_DIR = F$PARSE(NOTES$FILE,,,"DIRECTORY")D$ NOTES$FILE = NOTES$FILE_DEV + NOTES$FILE_DIR + "DCLTABLES.EXE"-$ COPY []NOTES$DCLTABLES.EXE 'NOTES$FILE'D$ NOTES$INSTALL_REPLACE 'NOTES$FILE'/OPEN/HEADER_RESIDENT/SHARED$ PURGE/NOLOG NOTES$FILE$ ENDIFt.$ CALL NOTES$REMOVE_FILE []NOTES$DCLTABLES.EXE $ ENDIF$ !R#$ ! Display information for user... $ ! $ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERRORT$ TYPE SYS$INPUT1= *********************************************************** . DEC Notes has been removed from your system.6 If your system startup procedure attempts to execute( SYS$STARTUP:NOTES$STARTUP.COM; you should now modify your startup procedure to eliminateO; that operation, as SYS$STARTUP:NOTES$STARTUP.COM has beent removed from your system.i< FAILURE TO PERFORM THIS STEP MIGHT CAUSE DIFFICULTIES WHEN YOU REBOOT YOUR SYSTEM.V= ***********************************************************w$ !hJ$ ! Clean up and exit: clear any logical names assigned in this procedure,)$ ! restore ON setting, delete this file. $ !m$ COMMON_EXIT:U$ IF ( F$TRNLNM("NOTES$LIBRARY","LNM$PROCESS") .NES. "" ) THEN DEASSIGN NOTES$LIBRARYm2$ NOTES$TMP = F$TRNLNM("SYS$OUTPUT","LNM$PROCESS")&$ NOTES$TMP = F$EXTRACT(0,3,NOTES$TMP)3$ IF NOTES$TMP .EQS. "_NL" THEN DEASSIGN SYS$OUTPUTn1$ NOTES$TMP = F$TRNLNM("SYS$ERROR","LNM$PROCESS")&$ NOTES$TMP = F$EXTRACT(0,3,NOTES$TMP)2$ IF NOTES$TMP .EQS. "_NL" THEN DEASSIGN SYS$ERROR*$ IF NOTES$SET_ON .NES. "NONE" THEN SET ONN$ IF NOTES$REMOVE_ALL THEN CALL NOTES$REMOVE_FILE SYS$MANAGER:NOTES$REMOVE.COM$ EXIT$ !s $ ERROR_EXIT: )$ ! Fall through to CTRL/Y exit on errorsR $ CTRLY_EXIT:I$ NOTES$REMOVE_ALL = 0E$ NOTES$DELETE_FILES = 0 $ NOTES$REMOVE_DECWINDOWS = 0$ GOTO COMMON_EXIT"*[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1+,4b.l/J 4"lm- 0123 KPWOm56=VR7}ģ89GJHJL F_TAG_LEN, R ;= 5E 0C C2 00010 SUBL2 #12, SP ;29 10 AC DD 00013 PUSHL FABPTR ; 2331_H 04 AE 05F3 8F 3C 00016 MOVZWL #1523, 4(SP) ;4 04 AE 9F 0001C PUSHAB 4(SP) ;M 00000000G 00 02 FB 0001F CALLS #2, NOTES$$GET_VM ;d@ 12 50 E8 00026 BLBS STATUIfRLH OXO@D@ U Bliss-32 V4.3-808 Page 95VV01-046 NOTES$OPEN_INFILE 29-Oct-1988 17:45:44 NNP$:[NOTES.SRC]DWMISC.B32;60 (33)> 03FBC03A 8F DD 0002D PUSHL #66830394 ;J 00000000G 00 03 FB 00033 CALLS #3, LIB$SIGNAL ;( 04 0003A RET ;Kf KEFK LO X[ 68(R7), INAM ; 2335 h 0050 8F 00 6E 00 2C 00047 MOVC5 #0, (SP), #0, #80, (IFAB) ; 2345% 66 0004E ;I 66 5003 8F B0 0004F MOVW #20483, (IFAB) ; J 16 A6 0F02 8F B0 00054 MOVW #3842, 22(IFAB)euC6I,$@ @Wk`(s=G2<DEC Notes Sample Conference6MAR::JOHN_Q_NOTEREJQHNeSeNQWET:-K JOHN_Q_NOTERNJuMAR::JOHN_Q_NOTER4 ADYANCED> +ADVANCEDT@@ AU\UWEM@/KSYSTEMNISYSTEMJHu 0::SYSTEM0Eo0p SYSTEM)MATCoMARp JOHN_Q_NOTER_@ETMAR::JOHN_Q_NOTER"kWelcome to DEC NotesI'll make a note!q@EfMAR::JOHN_Q_NOTERm&Choosing an editor to use in DEC NotesI'll make a note!%u@CjMAR::JOHN_Q_NOTER`N!m.Sample command procedure for spawnable editorsI'll make a note! C C C C C C CMAR::JOHN_Q_NOTER@H\p"One-key reading with the ENTER keyI'll make a note!  j@E_MAR::JOHN_Q_NOTERKp%Who Are You? - Tell us about yourselfI'll make a note! w@ElMAR::JOHN_Q_NOTER9q,Using the DIRECTORY, PRINT and SAVE commandsI'll make a note!j @C_MAR::JOHN_Q_NOTER\XJq#Notation for specifying note rangesI'll make a note!l @CaMAR::JOHN_Q_NOTER`Ӭq%Ways to limit your selection of notesI'll make a note! C C C C C C Ce! g @C\MAR::JOHN_Q_NOTER`[ q PRINT and SAVE work the same wayI'll make a note!e @EZMAR::JOHN_Q_NOTERq Suggestions for the Welcome noteI'll make a note![ @EPMAR::JOHN_Q_NOTER@ŭ rOnline EtiquetteI'll make a note!f@C[MAR::JOHN_Q_NOTER'rMaking your notes more readableI'll make a note!]@CRMAR::JOHN_Q_NOTER_?rU#;$ NOTES026.A4b "[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1"l"se Descriptive TitlesI'll make a note!a@CVMAR::JOHN_Q_NOTERᚍrRepresenting Body LanguageI'll make a note!7l@CaMAR::JOHN_Q_NOTER~Kr%When to Use MAIL Instead of DEC NotesI'll make a note! b@CWMAR::JOHN_Q_NOTER@9rPracticing Online EtiquetteI'll make a note! @EyMAR::JOHN_Q_NOTERr-Using NOTES$COMMAND to Define Additional KeysI'll make a note!DS ADVANCED c@CXMAR::JOHN_Q_NOTER&g(Defining editor margins in NOTES$COMMANDNoted  r@Eg MAR::JOHN_Q_NOTERSԉN!DEC Notes Security ConsiderationsI'll make a note!&S ADVANCED `@CUMAR::JOHN_Q_NOTERXXBenefits and applicationsI'll make a note!  a@CVMAR::JOHN_Q_NOTER@XSome terms you should knowI'll make a note!   T@CIMAR::JOHN_Q_NOTERhX Reading notesI'll make a note! a@CVMAR::JOHN_Q_NOTERXSkipping to the next replyI'll make a note! w@ClMAR::JOHN_Q_NOTERIY0Don't bother reading the rest of this discussionI'll make a note! E@C:MAR::JOHN_Q_NOTERbYI'll make a note! E@C:MAR::JOHN_Q_NOTERO+YI'll make a note! EF DEC Notes is a computer-mediated conferencing system that lets youE conduct online conferences or meetings. Using DEC Notes, you canF communicate conveniently and economically with people in differentJ geographic locations. Anyone connected to the system can participate,H making it possible for you to receive input from many people without$ costly, time-consuming meetings.D This sample conference has been provided to help you quickly getG started using DEC Notes. It contains definitions of terms, ways toJ read notes, a place for you to add your first reply, and helpful hintsK for running and participating in an online conference. This conferenceD also has information about choosing an editor for writing notes,J running DEC Notes in batch mode, and protecting a confidential meeting& with an Access Control List (ACL).8 To continue reading this note, press the RETURN key.t your selection of notesI'll make a note!  E K As you and your fellow "Noters" gain experience with DEC Notes, you canF use this sample conference as a place to record and share your own helpful hints.C Press the RETURN key again to continue reading about DEC Notes. EK In DEC Notes, you always use an editor of your choice to compose notes.H If you do not explicitly choose an editor, the EVE editor built into DEC Notes is used.I If "your favorite editor" is something other than EVE, you should useI SET PROFILE/EDITOR to specify your preferred editor. If you normallyK don't use any editor at all, EVE is easy to learn and use for a novice;C however, please read the chapter in the manual about using EVE.D If you normally use the EDT editor in keypad mode and you do notK redefine the keypad keys, you should try using EVE with the EDT keypad. Specify this by: SET PROFILE/EDITOR=EDTI If you normally use EDT line mode as well as keypad mode, or you haveG customized EDT using EDTINI.EDT, you should specify callable EDT as your editor:! SET PROFILE/EDITOR=(EDT,CALL)H If you normally use some other callable editor besides EDT, sS ADVANCED `@CUMAR::JOHN_Q_NOTERXXBenefits and applicationsI'll make a note!  a@CVMAR::JOHN_Q_NOTER@XSome terms you should knowI'll make a note! Y4E)pecify:) SET PROFILE/EDITOR=(editor-name,CALL)H Some editors are not "callable" but are separate executable programsI which must be "spawned". If specifying an editor as callable doesn't work, then specify:1 SET PROFILE/EDITOR=(@command-procedure,SPAWN)I If you do this, you will need a .COM file. An example of such a .COMK file can be found in the first reply to this topic. If you create such6 a file in your login directory, you can simply do:4 SET PROFILE/EDITOR=(@SYS$LOGIN:NOTES$EDIT,SPAWN)?C4$ !7$ ! Command procedure to invoke an editor for DEC Notes$ ! $ ! Inputs:$ !$ ! P1 = Input file name.$ ! P2 = Output file name.$ !C$ ! Note that this procedure is run in the context of a subprocess.B$ ! LOGIN.COM is not executed. However, all process logical names&$ ! and DCL global symbols are copied.$ !;$ ! The default directory is the same as the parent process$ !1$ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'"$ IF P1 .EQS. "" THEN GOTO NOINPUT$ EDIT /TPU /OUTPUT='P2' 'P1'$ EXIT $NOINPUT:$ EDIT /TPU 'P2'$ EXITEK I've just started using DEC Notes and love it, but the keypad-comma key9 (NEXT UNSEEN) always seems to jump to a random place. What am I doing wrong? meeting& with an Access Control List (ACL).8 To continue reading this note, press the RETURN key.t your selection of notesI'll make a note!CF Ah, but the HELP text describes this fairly well -- have you tried< looking at the on-line help? (Notes> HELP NEXT UNSEEN). To paraphrase:2 NEXT UNSEEN (or keypad-comma) has two effects:; (1) It marks the remaining replies as having been 'seen',; 9so you needn't look at 'em. This is quite handy when= you want to skip over the 47 replies about Sonny & Cher trivia.; (2) It reads some note you never read before. Of all the; 9notes (topics or replies) you never saw, it reads the= xone that was written first (time-wise). This change in; context can be disconcerting, but it helps keep track rof what's being said.D It's a way to say "Well, what else is new?". I hope this helps! - John QEC:' You can also use the key --F If you're reading a note and see the "# more lines" message at the- bottom, it'll display the next screenful.F Otherwise, if there are more replies in the discussion, it'll read the next one./ Otherwise, it reads the 'NEXT UNSEEN' note.cEH This discussion gives you a chance to add a reply. Simply enter the& REPLY command, and type your text. You can write about  - yourself - a joke - the weather - ???F After you've finished composing your reply, press CTRL/Z to finish( adding your reply to the conference. -- John QEJ The DIRECTORY command shows a directory of the topics in a conference.I While you are in a conference, you can issue the DIRECTORY command atF any time. The directory shows you the topic number, who wrote the* topic and when, and the topic's title.H The DIRECTORY/ALL command tells DEC Notes you want to include in theG directory the replies to each topic. Replies can also have titles.F Although the use of titles on replies is optional, there is a goodJ reason for using them. When all notes in a discussion have meaningfulK titles, you can use the DIRECTORY/ALL command to get a quick summary of a discussion.. To get a summary of this discussion, type: DIR/ALL 5CK Some commands allow you to specify a range of notes. You can limit the: range to topics only, or include replies in the range.J To list topics only, use whole numbers in the note range. Do NOT typeJ a period after either the starting or ending topic number. To includeJ replies, you can use the /ALL qualifier or the wildcard character (*).H Here is a quick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!6iD$ NOTES026.A4b "[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1"lx"OCI The DIRECTORY command has several qualifiers which allow you to limitK the directory listing to those meeting certain criteria. Specifically,( you can see a directory of notes by:3 Criterion Format ExampleH - - -> Author /AUTHOR=username 9DIR/AUTHOR=TRACY 10-50< Title /TITLE="string" >DIR/TITLE="FIXED" *.*G Date-time /BEFORE=date-time DIR/BEFORE=01-MAR:08:00 99-1C /SINCE=date-time DIR/SINCE=YESTERDAY *.*C Keyword /KEYWORD=keyword :DIR/KEYWORD=PAPER 2.*-20.*? Not yet seen /UNSEEN DIR/UNSEEN 100-LASTK You can use these qualifiers alone or in combination to get a directoryG of just the notes you are interested in seeing. You do not have toI manually search the entire directory for notes you ar#Ce interested in.C I The PRINT and SAVE commands have the same qualifiers as the DIRECTORYE command for limiting the notes to be printed or stored in a file, respectively.J For example, if you want print all the notes in the conference writtenD by FLOYD that have the word "pink" in the title, you would type:' PRINT/TITLE="PINK"/AUTHOR=FLOYD *.*J You could save all the notes with the keyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q&EG Here are some suggestions for things to include in the introductoryK note when you create your own conference. These are just guidelines --A not all of these items will be relevant for every conference.= =o Restrictions on topics -- the scope of the conference5 5o The type of contributions allowed or expectedH Ho How active the moderator(s) will be, and what they will be doing$ $o Restrictions on access hoursH Fo Keywords that have been created by the moderator(s) and how they Zshould be usedE o Pointers to write-protected topics that are for participants'D ?information only (for example, a topic set aside to hold theL Iconference directory, which the moderator updates from time to time)K o The rationale for the selection of members for a private conferenceG o A suggestion that participants read the section on etiquette in the docuWEmentation: 9o Related conferences that might also be of interesttopic number. To includeJ replies, you can use the /ALL qualifier or the wildcard character (*).H Here is a quick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!"EG While communicating by computer has many advantages, there are some drawbacks:F o Nonverbal cues (such as facial expression, intonation, and bodyB language) that enhance face-to-face discussion are missing.I o Reading takes longer than listening, and reading a terminal screen2 ufor long periods of time may become tiring.C o Most terminal screens lack the ability to visually emphasize9 Jinformation or to express information graphically.G This discussion is an excerpt from the section "Hints for ImprovingK Computer-Mediated Communication" in Chapter 3 of the Guide to DEC NotesK Manual. This series of notes gives you some hints for making sure your- notes communicate your ideas effectively.CJ Here are some suggestions for improving the readability of your notes:5 o Use correct spelling, grammar, and punctuation/ o Use both uppercase and lowercase letters: o Use narrow line width (about 65 characters maximum)5 o Make paragraphs about five to seven lines long2 o Keep the overall length of your notes shortE o Use visual aids (like bulleted lists, hyphens for underlining)' PRINT/TITLE="PINK"/AUTHOR=FLOYD *.*J You could save all the notes with the keyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q"%"C}K Make an effort to word topic and reply titles carefully. Remember thatE these titles appear in directory listings and provide a means forK participants to locate your note among scores or possibly hundreds in aI conference. Curiosity aroused by cryptic titles may catch some cats,I but most people will be just as happy to skip a note as to ponder the 7meaning of an obscure title.G DEC Notes lets you create titles of up to 63 characters. (CreativeJ writers can fit a complete story in that much space!) It is advisableK to be brief, but never sacrifice clarity for brevity. The title should' describe the contents of your note.I Of course, participants can agree on conventions to be used in titlesB to facilitate gathering notes by title (for example, acronyms,K abbreviations, or uncommon words can be used as codes to identify notesH dealing with a particular topic), but unle"Css such agreement has beenK made, it is best to write titles that are easily understood and reflect the content of your note.aracter (*).H Here is a quick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!%(%C" Facial Expression -K One of the greatest difficulties when communicating by computer is thatE you often cannot tell if the author of a note is serious, joking,K angry, or being sarcastic because you cannot see the author's face. AsI a result, users of computer-based conferencing systems have developed, patterns to represent facial expression.H Some examples of patterns are presented here for your consideration,H but you should enjoy creating some of your own. These patterns wereG created using the colon (:), semicolon (;), hyphen (-), opening andJ closing parentheses, the vertical bar (|), right brace (}), slash (/), and the tilde (~).# :-) Joking or sarcastic face :-} Fiendish grin ;-) A wink :-( Sad or angry face +|-( Late night Intonation - 0F Use all uppercase letters for when you wo Use both uppercase and lowercase letters: o Use narrow line width (about 65 characters maximum)5 o Make paragraphs about five to seven lines long2 o Keep the overall length of your notes shortE o Use visual aids (like bulleted lists, hyphens for underlining)' PRINT/TITLE="PINK"/AUTHOR=FLOYD *.*J You could save all the notes with the keyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q(+(Cant to SHOUT in your note.G Surround with asterisks a word you want to emphasize (like *this*). Emotion -3H A conversation that lacks emotion lacks vitality. While most peopleH cannot begin to conceal their emotions in a meeting, they can easilyH create notes that are carefully controlled, reserved, even dull. DoK not be afraid to rant, protest, or pontificate in your notes -- just beF considerate enough to warn people that you are about to express an! angry or unsolicited opinion.J One way of signaling the boundaries of a tirade in your text is to useK some symbol, word, or expression before and after the text in question.I For example, you could surround an online rampage with and .E Using this technique, you provide a socially acceptable emotionalI outlet for participants who might otherwise be discouraged from using= DEC Notes(C for fear of b9K5$ NOTES026.A4b "[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1"lM"*eing misunderstood or unloved, andG simultaneously spare participants who have better things to do than, continually indulge chronic complainers.uick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!+C.+CJ Keep in mind that people have jobs to do, and that DEC Notes is a toolG to help them do their jobs better. For the sake of courtesy, it isF better to use MAIL instead of DEC Notes for the following types of communication:. o "Whispering" and other private messages o "Thank you" messages* o Requests intended for the moderator% o Conference relocation messages+s CK To be considered a courteous participant in a DEC Notes conference, you4 should observe the following "online etiquette". Clean Up After Yourself -H If you accidentally add a blank or garbled note to a conference, you? should delete the note and try again. (The note may not be. intelligible, but your user name will be.)) Maintain the Thread of the Discussion) -$}K You should read the topic of a discussion before you add a reply. WhenH replies address other replies, without regard for the topic at hand,K the discussion can get off the track. If, after reading the topic, youI realize your reply would be off the subject, you can alter your reply or start a new topic.$ Accurately Represent Other Notes$ -BI Providing a direct quote can help your readers better undeyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q.1.; C0rstand yourA comments, and is a courtesy to the author of the note you areI answering. Quoting the author directly preserves the accuracy of hisJ or her comments. Unless you are certain you can paraphrase and retainA the original meaning, quoting can be safer as well as easier.. EI It is possible to define additional keys for use at the NOTES prompt,F and when in NOTES' built-in editors. The following can serve as a guide.K To use NOTES$COMMAND, create a file with the TPU define_key statements,J similar to below. Then DEFINE the logical name NOTES$COMMAND to pointD to the file. NOTES will process the commands when it starts up. !! Keys in notes!!/! Define the following keys at the notes prompt!!! gold ? Go to the message buffer! ctrl/n Go into EVE:! ctrl/d Do a directory of the current conference from the! end to the beginning"! pf3 Close the current conference!7define_key ("notes$do_command ('EVE BUFFER MESSAGES')",< key_name ('?', shift_key), "msg buf", notes$kt_user_keys);3define_key ("notes$do_command ('EVE')", ctrl_n_key, "EVE", notes$kt_user_keys);:define_key ("notes$do_command ('DIR LAST-1')", ctrl_d_key, "DIR", notes$kt_user_keys); and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!141 ELdefine_key ("notes$do_command ('CLOSE')", pf3, "close", notes$kt_user_keys);!! Keys in the editor!2! Define the following keys in the built-in editor!! ctrl/n Go back to NOTES9! ctrl/p Switch to the other window if two windows are on ! the screen+! gold 1 Make only one window on the screen'! gold 2 Make two windows on the screen@! gold b Prompts for a buffer name, then switches to that buffer>! gold i Prompts for a file to include at the current position$! gold f Fills the current paragraph E3 ("eve_two_windows", key_name ('2', shift_key),$ "two windows", eve$x_user_keys);Bdefine_key ("eve_buffer (eve$kt_null)", key_name ('b', shift_key), "buffer", eve$x_user_keys);Hdefine_key ("eve_include_file (eve$kt_null)", key_name ('i', shift_key),% "include file", eve$x_user_keys); has 3 replies, the replies are numbered 4.1, 4.2, and 4.3.= CF To read a specific note, type the number of the note at the Notes>7 prompt. For example, to read the next reply, type: Notes> .4= CI The keys on the keypad help you navigate through a conference. PressH PF2 to see the layout of the DEC Notes keypad. A picture of the DECG Notes keypad appears in Chapter 1 of the Guide to DEC Notes Manual.K To skip the rest of this note and read the next reply, press the number 3 on the keypad. ' Why did the chicken cross the road? To get to the other side!4 (You should have skipped the rest of this note!)= CzG To skip the rest of this discussion, and see the topic for the next' discussion, press the keypad 2 key.our reply to the conference. -- John Q@@s ChK See, you should have pressed keypad 2. There is nothing interesting in this reply!@BC7+ There is nothing in this reply, either.TES/PROT=(W=NONE) -7 /ACL=(IDENT=[NOTES$SERVER], ACCESS=READ+WRITE+EXECUTE)K Note that if you protect conferences this way, you must ensure that allI references to your local system specify the nodename or use 0::. ForK instance, if you are on node BOOK::, then you must always use DIRECTORY5 /CONFERENCE BOOK, and ADD ENTRY BOOK::conference.K The command procedure SYS$MANAGER:NOTES$MOVE_CONFERENCE.COM may be usedK by the system manager to copy notefiles to the NOTES$LIBRARY directory.J In addition to copying the file, it will add an ACL for the conference moderator, if specified.:q CfJ There are many benefits to holding online conferences: decision-makingD is improved; participants can productively enter a meeting afterD organizing ideas; many discussions can take place simultaneouslyC without the confusion that results in traditional meetings; and? immediate printed records of the proceedings are available.G Some possible ways to use DEC Notes include: recording ideas duringI product design and development; conducting employee attitude surveys;J holding board meetings; and providing a forum for information exchange (like a bulletin board.)rence *.*otesI'll make a note!CH j@E_ MAR::NEW_USER 'o$Help! I don't understand NEXT UNSEENFirst time noter c@CXMAR::JOHN_Q_NOTER@9/pA description of NEXT UNSEENI'll make a note! i@C^MAR::JOHN_Q_NOTER@H\p"One-key reading with the ENTER keyI'll make a note!  j@E_MAR::JOHN_Q_NOTERKp%Who Are You? - Tell us about yourselfI'll make a note! w@ElMAR::JOHN_Q_NOTER9q,Using the DIRECTORY, PRINT and SAVE commandsI'll make a note!j @C_MAR::JOHN_Q_NOTER\XJq#Notation for specifying note rangesI'll make a note!l @CaMAR::JOHN_Q_NOTER`Ӭq%Ways to limit your selection of notesI'll make a note!FIF}  ("eve_two_windows", key_name ('2', shift_key),$ "two windows", eve$x_user_keys);Bdefine_key ("eve_buffer (eve$kt_null)", key_name ('b', shift_key), "buffer", eve$x_user_keys);Hdefine_key ("eve_include_file (eve$kt_null)", key_name ('i', shift_key),% "include file", eve$x_user_keys);"LLfL@ @@ @=:741.+(%" COO   : = = = = @ @      "" %((++.  .14 4 7:RROUgU ADYANCEDJQHNeSeNQWETU\UWEM 0 MATXXU}; CALLBACKS { }; CONTROLS { PUSH_BUTTON main_edit_copy_pb;" PUSH_BUTTON main_edit_select_pb; }; };P OBJECT" main_edit_copy_pb : PUSH_BUTTON { ARGUMENTS {% ARGUMENTS default_push_button_args;A( LABEL_LABEL = main_edit_copy_pb$label; }; CALLBACKS {C CREATE = PROCEDURE NOTES$DRM_WIDGET_CREATE (k_main_edit_copy_pb); L ACTIVATE = PROCEDURE NOTES$DRM_PUSHBUTTON_ACTIVATE (cb_main_edit_copy_pb); }; };B OBJECT$ main_edit_select_pb : PUSH_ApApApApApACCCCCCuACC @READpApApAuEpApApApApApApApApApApApApApApApApApAMA !nAnAnAnAnAnApACCCCCCCpApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApApAMA dialog boxnACCCCnACCCCnACCCC=$ NOTES026.A4b "[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1"l ]nACCCCnACCCCnACCCCnACCCCnAnAMApullnAy CnAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtAtApApApApApAtAtAtAtAtAtAtAtAtApApApApApApApApApApApApAuEMA_t:nAy CnAnAnAnAnAnAnAnAnAnAnAnAnAnAnAnAnAFD CQEGD sy:xcms.log CtEBBBBuEMA working onn 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8000, 0x0001,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x8000, 0x0001, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x8000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8000, 0x0001,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,N 0x0000, 0x0000, 0x0000,=QOQ>QQ(QknQww61YѲ~V1.7-003; FDV$DISPCHV1.7-003 5-Jan-1998 15:55 5-Jan-1998 15:55VAX Bliss-32 V4.7-999F FDV$DISPCHR FDV$$DISPATCHFDV_EXIT_HANDLERP FDV$$AFCX4 FDV$$AFVA4 FDV$$ATERM4FDV$$ATTACH_DFK4 FDV$$AWKSP4 FDV$$BELL4FDV$$BUFFER_OFF4FDV$$BUFFER_ON4 FDV$$CDISP4 FDV$$CLEAR4 FDV$$DISP4 FDV$$DISPW4FDV$$DETACH_DFK4 FDV$$DTERM4 FDV$$DWKSP4FDV$$GET74 FDV$$GETAL4 FDV$$GETCH4 FDV$$GETDL4 FDV$$LEDOF4 FDV$$LEDON4 FDV$$LOAD4FDV$$PFT4FDV$$PUT4 FDV$$PUTD4 FDV$$PUTDA4 FDV$$PUTL4 FDV$$PUTSC4FDV$$RET4 FDV$$RETCX4 FDV$$LCLOS4 FDV$$LOPEN4 FDV$$LCHAN4 FDV$$PUTAL4 FDV$$RETAL4 FDV$$RETFN4 FDV$$RETL4 FDV$$RETLE4 FDV$$RFRSH4 FDV$$SIGOP4 FDV$$SPADM4 FDV$$SSIGM4 FDV$$SSRV4 FDV$$SSTAT4 FDV$$STAT4 FDV$$STERM48 FDV$$SWKSP4 FDV$$TCHAN4 FDV$$TRESET4 FDV$$WAIT4FDV$$WKSP_NOT_DISP4 FDV$$AFCX FDV$$AFVA FDV$$ATERMFDV$$ATTACH_DFK FDV$$AWKSP FDV$$BELLFDV$$BUFFER_OFFFDV$$BUFFER_ON FDV$$CDISP FDV$$CLEAR FDV$$DISP FDV$$DISPWFDV$$DETACH_DFK FDV$$DTERM FDV$$DWKSPFDV$$GET FDV$$GETAL FDV$$GETCH FDV$$GETDL FDV$$LEDOF FDV$$LEDON FDV$$LOADFDV$$PFTFDV$$PUT FDV$$PUTD FDV$$PUTDA FDV$9$PUTL FDV$$PUTSCFDV$$RET FDV$$RETCX FDV$$LCLOS FDV$$LOPEN FDV$$LCHAN FDV$$PUTAL FDV$$RETAL FDV$$RETFN FDV$$RETL FDV$$RETLE FDV$$RFRSH FDV$$SIGOP FDV$$SPADM FDV$$SSIGM FDV$$SSRV FDV$$SSTAT FDV$$STAT FDV$$STERM FDV$$SWKSP FDV$$TCHAN FDV$$TRESET FDV$$WAITFDV$$WKSP_NOT_DISPFDV$$VMS_XLATIONFDV$$FIND_STSB FDV$$CHKFMD FDV$$SIG_TRAP FDV$$R_ROOT TIO$TERMTERM SYS$CANCELPR_TYPE OFFICE_COUNTER ! Integer = 2 [Default value.]O } }n } { TYD_LABEL "S1"9 TYD_ATTRIBUTES {t* SGA_SEGMENT_TAGS ( S_TAG "$S.1" ) SGA_BINDING_DEFNS {& SGB_VARIABLE_NAME "$TTL.hd.2"$ SGB_CTR_TRIGGER "$TTL.hd.2" = SGB_CTR_INIT 1 ! Longword Integer [Default value.]eE SGB_CTR_TYPE OFFICE_COUNTER ! Integer = 2 [Default value.]  } }_ } { TYD_LABEL "S2"O TYD_ATTRIBUTES {* SGA_SEGMENT_TAGS ( S_TAG "$S.2" ) }. } { TYD_LABEL "S3"  TYD_ATTRIBUTES {.* SGA_SEGMENT_TAGS ( S_TAG "$S.3" ) }0 } { TYD_LABEL "Head 1"T TYD_ATTRIBUTES { 1 SGA_SEGMENT_TAGS ( TTL_TAG "$TTL.hd.1" ) SGA_LAYGLY_WRAP {< LW1_WRAP_FORMAT FMT_FLUSH_PATH_BEGIN ! Integer = 1< LW1_QUAD_FORMAT FMT_FLUSH_PATH_BEGIN ! Integer = 1L LW1_HYPHENATION_FLAGS "%B00000000000000000000000000000000" ! Flags5 LW1_MAXIMUM_HYPH_LINES 0 ! Longword Integer6 LW1_MINIMUM_ORPHAN_SIZE 1 ! Longword Integer5 LW1_MINIMUM_WIDOW_SIZE 1 ! Longword IntegerWE LW1_PRES_DIR GALLEY_DEFAULT ! Integer = 0 [Default value.]B } SGA_LAYGLY_LAYOUT {6 LL1_BREAK_BEFORE BREAK_TO_PAGE ! Integer = 43 LL1_BREAK_AFTER BREAK_NEVER ! Integer = 2 1 LL1_INITIAL_INDENT 0 ! Longword Integero/ LL1_BEGIN_INDENT 0 ! Longword IntegerU- LL1_END_INDENT 0 ! Longword IntegerC2 LL1_SPACE_BEFORE 1200 ! Longword Integer1 LL1_SPACE_AFTER 2400 ! Longword Integer6 LL1_LEADING_CONSTANT 1200 ! Longword Integer }4 SGA_TXT_MASK_PATTERN 234 ! Longword IntegerN SGA_TXT_FONT -ADOBE-Helvetica-Medium-R-Normal--*-180-*-*-P-*-ISO8859-1SGA_TXT_RENDITIONn (" RND_DEFAULT ! Integer = 0$ RND_HIGHLIGHT ! Integer = 1!**[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1+,"b.T/J 4TD- 0123 KPWOD56L۴ģ7B]ģ89GJHJKO$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T>"dh* 0C'V۴ģ NOTES$SECTIONT2.605-00$ PL۴ģ NOTES$SECTIONT2.6DDECTPU V3.1 1992-10-14 04:07kXu!SCREEN_UPDATERDECTPU V3.1 1992-10-14 04:07jlI4l ( 0ThX({EVE$$K_BUFFER_ATTR_MODIFIABLE(GEVE$$K_RULED_STATUS_UNDERLINE$ EVE$$SUB_CONDITIONAL_COMPILE$AEVE$$K_PENDING_DELETE_ACTIVE$oEVE$$K_GLOBAL_ATTR_TAB_MODE$FEVE$$K_RULED_STATUS_REVERSE$EVE$K_ACTION_INCLUDE_FILE$?EVE$$K_LEADING_WHITESPACE$dEVE$$K_REPLACE_SAVED_MODE EVE$K_ACTION_CHANGE_CASE EVE$$CONDITIONAL_COMPILE [EVE$$K_REPEAT_FIND_RANGE IEVE$$K_SELECT_ALL_ACTIVE EVE$K_ACTION_USER_MOUSE EVE$K_ACTION_SPLIT_LINE EVE$K_ACTION_SHORT_MOVE EVE$$K_RESTORE_SENTENCE 5EVE$$K_AMBIGUOUS_PARSE 9EVE$$K_FIND_WHITESPACE WEVE$$K_HIGHLIGHT_RANGE EVE$K_ACTION_PAGINATE EVE$DEFINED_PROCEDURE KEVE$$K_WPS_LOWER_CASE JEVE$$K_WINDOWS_ACTIVE LEVE$$K_WPS_UPPER_CASETEVE$$K_FOUND_REVERSE]EVE$$K_REPLACE_RANGE;EVE$$K_IN_INIT_FILEUEVE$$K_REPLACE_HEREEVE$$K_RESTORE_LINEEVE$K_ACTION_PASTE:EVE$$K_HELP_ACTIVEEVE$X_OPTION_2BYTE-EVE$$K_WIDGET_BASE)EVE$K_HELP_INVOKEEVE$$K_SAVE_FILE+EVE$$K_TYPE_CODEEVE$$K_REPLACE EVE$$K_PASTE EVE$$REQUIRE(BEVE$$K_PENDING_DELETE_ENABLED$qEVE$$K_GLOBAL_ATTR_CLIPBOARD$EVE$$K_FOUND_POST_FILTER_ID$EVE$$K_QUICK_POST_FILTER_ID$HEVE$$K_RULER_MARGIN_CHANGED$uEVE$$K_GLOBAL_ATTR_BOX_PAD$EVE$$K_CMD_POST_FILTER_ID EVE$$K_CMD_PRE_FILTER_ID EVE$K_INVOKED_BY_COMMAND EEVE$$K_RULED_STATUS_BOLDSEVE$$K_FOUND_FORWARDEVE$$K_FIND_SELECTEDEVE$$K_OPEN_SELECTEDEVE$$K_WILDCARD_FINDEVE$$K_RESTORE_WORD6EVE$$K_CLIPBOARD EVE$$K_FINDl EVE$$BUILD(EVE$$K_REPLACE_GO_EACH_DIALOG$EVE$$K_WILDCARD_FIND_DIALOG$rEVE$$K_GLOBAL_ATTR_PENDING$EVE$$K_REPLACE_EACH_DIALOG$EVE$$K_SAVE_FILE_AS_DIALOG$EVE$$K_SET_MARGINS_DIALOG 7EVE$$K_COMMAND_LINE_FLAG EVE$$K_OPENBUFFER_DIALOG =EVE$$K_IS_QUOTED_STRING QEVE$$K_REPLACE_ASKING EVE$$K_REPLACE_DIALOG $EVE$K_ASYNC_PROMPTINGEVE$K_ACTION_M1DRAGEVE$K_ACTION_M3DRAGEVE$$K_EXIT_DIALOGEVE$$K_FIND_DIALOGCEVE$$K_PROMPT_FLAGEVE$$K_NEW_DIALOG EVE$K_WARNING(EVE$K_HELP_TOPIC EVE$BUILD_SYNONYM$EVE$$K_REPLACE_GO_EACH_LABEL$EVE$$K_WILDCARD_FIND_CANCEL$EVE$$K_SAVE_FILE_AS_CANCEL$EVE$$K_WILDCARD_FIND_LABEL$EVE$K_ACTION_ERASE_TO_BOL$EVE$$K_REPLACE_EACH_LABEL$EVE$$K_SET_MARGINS_LLABEL$EVE$$K_SET_MARGINS_RLABEL$EVE$$K_SAVE_FILE_AS_LABEL EVE$$K_OPENBUFFER_CANCEL EVE$$K_REPLACE_NEW_LABEL EVE$$K_REPLACE_OLD_LABEL NEVE$$K_FIND_DIACRITICAL EVE$$K_OPENBUFFER_LABEL EVE$$K_REPLACE_EACH_ALL EVE$$K_REPLACE_CANCEL"EVE$K_INFORMATIONALEVE$K_ACTION_SPELLEVE$$K_EXIT_CANCELEVE$$K_FIND_CANCELEVE$$K_INCLUDE_FILEVE$$K_REPLACE_ALLEVE$$K_EXIT_LABELEVE$$K_FIND_LABELEVE$$K_NEW_CANCELEVE$$K_SELECT_ALL>EVE$$K_IS_SYMBOLEVE$$K_NEW_LABEL\# EVE$K_FATAL$EVE$$K_REPLACE_GO_EACH_NO$EVE$$K_REPLACE_EACH_NO(EVE$K_ACTION_M1CLICK_SELECTION(bEVE$$K_REPLACE_SAVED_DIRECTION(EVE$$K_INCLUDE_FILE_SELECTION$vEVE$$K_GLOBAL_ATTR_SCROLL_ON$EVE$K_ACTION_M1UP_SELECTION$EVE$K_ACTION_M3UP_SELECTION$EVE$K_ACTION_MOVE_BY_SCREEN$EVE$$K_OPEN_FILE_SELECTION EVE$$K_RESTORE_SELECTION EVE$K_ACTION_REPOSITION EVE$K_ACTION_SELECTION YEVE$$K_OTHER_DIRECTION \EVE$$K_REPLACE_ACTIONEVE$K_ACTION_M1DOWNEVE$K_ACTION_M3DOWN EVE$$K_OPEN EVE$VERSION(EVE$$K_BUFFER_ATTR_ARRAY_LENGTH(xEVE$$K_GLOBAL_ATTR_ARRAY_LENGTH$mEVE$$K_REPLACE_ARRAY_LENGTH$pEVE$$K_GLOBAL_ATTR_SEARCH@PEVE$$K_STATE_ARRAY_LENGTH$EVE$$K_REPLACE_GO_EACH_OK$cEVE$$K_REPLACE_SAVED_MARK$DEVE$$K_RULED_STATUS_BLINK kEVE$$K_REPLACE_TEMP_MARK OEVE$$K_SAVED_RESIZE_MARK EVE$K_ACTION_PAGE_BREAK EVE$$K_WILDCARD_FIND_OK EVE$$K_REPLACE_EACH_OK EVE$$K_SAVE_FILE_AS_OKEVE$$K_OPENBUFFER_OKEVE$$K_REPLACE_OKEVE$$K_EXIT_OKEVE$$K_FIND_OK EVE$$K_NEW_OKpEVE$K_INVOKED_BY_MENU(tEVE$$K_GLOBAL_ATTR_BOX_SELECT$`EVE$$K_LOWERCASE_REPLACEMENT$aEVE$$K_UPPERCASE_REPLACEMENT$EVE$K_ACTION_ERASE_TO_RIGHT$eEVE$$K_REPLACE_SEARCH_EXACT$fEVE$$K_SWITCHED_PIVOT_POINT$4EVE$$K_BUFFER_ATTR_CONTEXT$EVE$K_ACTION_ERASE_TO_LEFT$_EVE$$K_CAPITAL_REPLACEMENT$REVE$$K_ERASING_PIVOT_POINT$2EVE$$K_GLOBAL_ATTR_CONTEXT$EVE$CONSTANTS_MODULE_IDENT$zEVE$$K_BUFFER_PARA_INDENT$%EVE$$K_MINIMUM_CCT_HEIGHT$EVE$CONSTANTS_MODULE_INIT$EVE$$K_SET_MARGINS_L_TEXT$EVE$$K_SET_MARGINS_R_TEXT$EVE$$K_WILDCARD_FIND_TEXT EVE$OPTIONS_MODULE_IDENT EVE$$K_REPLACE_EACH_QUIT EVE$$K_REPLACE_EACH_LAST EVE$$K_REPLACE_EACH_TEXT VEVE$$K_REPLACE_HOW_EXACT EVE$$K_SAVE_FILE_AS_TEXT EVE$K_ACTION_DOWN_RIGHT EVE$OPTIONS_MODULE_INIT iEVE$$K_LOWERCASE_TARGET EVE$$K_REPLACE_NEW_TEXT EVE$$K_REPLACE_OLD_TEXT jEVE$$K_UPPERCASE_TARGET EVE$INSERT_OPTION_LIST MEVE$$K_FIND_CASE_EXACT EVE$BUILD_MODULE_IDENT EVE$$K_OPENBUFFER_TEXT /EVE$$K_REPLACE_CONTEXT ~EVE$$K_BUFFER_TABS_AT EVE$K_ACTION_ADD_TEXT hEVE$$K_CAPITAL_TARGET EVE$BUILD_MODULE_INIT gEVE$$K_REPLACE_TARGET 3EVE$$K_SELECT_CONTEXT .EVE$$K_WINDOW_CONTEXTEVE$K_ACTION_UP_LEFT0EVE$$K_STATE_CONTEXT}EVE$$K_BUFFER_RIGHTEVE$K_ACTION_REPEATEVE$K_ACTION_FORMAT*EVE$K_HELP_ARG_LIST1EVE$$K_EXIT_CONTEXTyEVE$$K_BUFFER_LEFTZEVE$$K_PIVOT_POINT^EVE$$K_REPLACEMENTEVE$$OPTIONS_INITEVE$K_ACTION_CUTEVE$$K_FIND_NEXTEVE$$K_FIND_TEXTEVE$$K_NEW_TEXT EVE$$K_EXIT EVE$$K_QUIT EVE$$K_CUT EVE$K_ACTION_NEW_WINDOW EVE$$K_NEWEVE$$K_WILDCARD_FIND_LABEL1(wEVE$$K_GLOBAL_ATTR_SCROLL_JUMPEVE$X_OPTION_KEYHELPXEVE$$K_BUFFER_WRAP( EVE$$X_LIST_CONDITIONAL_COMPILES$XEVE$$K_REPLACE_OCCURRENCES$,EVE$$K_STATE_ARRAY_INDEXES sEVE$$K_GLOBAL_ATTR_TABS EVE$X_OPTION_DECWINDOWS EVE$$K_SET_WILDCARD_VMS EVE$K_ACTION_COMMANDS EVE$$K_SHOW_WILDCARDSEVE$$K_SAVE_FILE_ASEVE$$X_SAVE_CHANGESEVE$X_OPTION_FONTSEVE$$K_SET_MARGINSEVE$$X_SAVE_NAMES  EVE$K_SUCCESS$EVE$K_ACTION_ERASE_CHARACTER$lEVE$$K_REPLACE_THIS_BUFFER$EVE$K_ACTION_WRITE_BUFFER$nEVE$$K_GLOBAL_ATTR_CURSOR EVE$$K_RESTORE_CHARACTER EVE$K_ACTION_NEW_BUFFER EVE$X_AT_LEAST_TPU_2_2 EVE$X_SYNONYM_BUFFEREVE$CONTEXT_BUFFER<EVE$$K_IS_NUMBERH! EVE$K_ERROR$|EVE$$K_BUFFER_ATTR_READONLY$EVE$INSERT_MODULE_SUMMARY$EVE$$K_SAVE_FILE_AS_APPLY EVE$$K_BUFFER_TABS_EVERY EVE$$K_OPENBUFFER_APPLYEVE$K_INVOKED_BY_KEYEVE$$X_SYNONYM_ARRAYEVE$K_ACTION_MODIFY&EVE$K_HELP_FACILITY g9$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"EVE$$X_BUILD_ARRAY'EVE$K_HELP_LIBRARYEVE$K_ACTION_COPYEVE$$K_NEW_APPLY EVE$$K_COPY$EVE$$K_SET_WILDCARD_ULTRIX@EVE$$K_MESSAGE_BOXX8EVE$$K_DIALOG_BOX''(L+8/// h1 4: :(HPHlHH0IDI !"#$%&'()*+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$> $? $@ $A $B $C$D$E$F$G$H$I$J$K$L$M$N$O$PQRSTUVWXY Z [ \ ] ^_`abcdefghijklmnopqrstuv w x yz{|}~      !"#$%&'$$$$$$$$$ $ $ $ $ $$$$$$$$$$$$$$$$$$$ $!$"$#$$$%$&$'$($)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?$@$A$B$C$D$E$F$G$H$I$J$K$L$M$N$O$P$Q$R$S$T$U$m m EVE$BUILD_MODULE_INIT$TV03-007EVE$BUILD_MODULE_IDENT $P:!o1oZ (uR"h0Rco 1lR   2  8  1 @7$ 287$ 28: eve$x_option_   eon_error return 0 endon_error if get_info (!AS, 'type') = INTEGER then return !AS else return 0 endif aEVE$INSERT_OPTION_LIST OPTION_PREFIX SPACE_INDEX THE_NAMESTHE_NAME THE_LENGTH THE_VALUEh0)(=)+3+-q-h- .P/P13P47$4 5P67$6 7P8P:;! o;;<1x<<Z> >p@@`A(mAuBBRBD1vDDRD"D F FG  HhN"NNP P$Q"Q SPV1lUVRV WZ=` *_module_ident    !15AS  con_error return 0 endon_error if get_info(!AS, 'type') = STRING then return !AS else return 0 endif!15AS ~EVE$INSERT_MODULE_SUMMARYVERSION_PREFIX OPTION_PREFIX SPACE_INDEX THE_NAMESTHE_NAME THE_LENGTH THE_VALUE SAVED_MARK< NOTES T2.6 2004-12-13 15:57 EVE$VERSION EVE$$REQUIRETEMP\T4==(T 3|=uoD L=  ==!%IFIxEVE$$CONDITIONAL_COMPILE THE_BUFFER SAVED_BUFFER SAVED_MARKTEMPX4 $(,z83|uodD  D666=831R( 0uR6:,!;X T6 " 6 6  "Z l6&*"664 " 6!6p$&($%Jx*"3**-.Jx081:33|33S4 4D56667688;;< ,=RT>~ >0? @AA CDRTE+ EP+FFH,II"I6 KtLRTM MHO,PP"P6 R$ S4U UpVRTWN W<XYTZ) Z[ ^P_R]` `$a b8f,gg"g6l: mnnt!%THEN Missing !%THEN!. Unknown symbol in conditional compile: !ASEVE$$K_GLOBAL_OKEVE$$K_ATTR_OKEVE$K_NDIRMASKEVE$$K_GOTO_OKEVE$$K_MARK_OK EVE$$K_MARK(EVE$$K_EXTMENU_USER_HINT_LABEL4(-EVE$$K_BUFFER_PARA_INDENT_TEXT$+EVE$$K_BUF_RIGHT_MARGIN_TEXT$EVE$$K_SEARCH_ATTR_PULLRIGHT$3EVE$$K_BUFFER_SET_TABS_TEXT$*EVE$$K_BUF_LEFT_MARGIN_TEXT$EVE$$K_EXTMENU_COMMAND_TEXT$EVE$$K_SET_PARA_INDENT_TEXT$EVE$$K_WHITESPACE_PULLRIGHT$dEVE$$K_WRITEFILEPROMPT_TEXT$EVE$$K_SET_PARAGRAF_INDENT$^EVE$$K_WRITEDELPROMPT_TEXT$1EVE$$K_BUFFER_SET_TABS_AT$EVE$$K_EXTMENU_LABEL_TEXT$|EVE$$K_SAVE_EXTENDED_TEXT$EVE$$K_WILDCARD_PULLRIGHT EVE$$K_CURRENT_ATTR_LIST EVE$$K_GLOBAL_BOX_SELECT iEVE$$K_NEEDFILENAME_TEXT [EVE$$K_REALLYDELBUF_QUIT EVE$$K_RESTORE_PULLRIGHT EVE$$K_SPLIT_WINDOW_TEXT EVE$$K_AT_EVE_FILE_TEXT EVE$$K_EXTEND_PULLRIGHT EVE$$K_HELP_ON_CONTEXT EVE$$K_CASE_PULLRIGHT EVE$$K_SET_WIDTH_TEXTGEVE$$K_TAB_MOVEMENTvEVE$$K_EXTEND_TEXTVEVE$$K_HELP_ABOUTHEVE$$K_TAB_INSERTEVE$$K_GOTO_TEXTEVE$$K_MARK_TEXT EVE$K_NHEIGHT EVE$$K_SELECT EVE$$K_RESETEVE$$K_DELETE_WINDOWEVE$$K_SPLIT_WINDOW!EVE$$K_ONE_WINDOW(EVE$$K_EXTMENU_USER_HINT_LABEL1 EVE$$K_EXTEND_SUBFORM1DEVE$$K_MESSAGE_LABEL1$EVE$$K_SET_PARA_INDENT_HELP$EVE$$K_WRITEFILEPROMPT_HELP$EVE$$K_GLOBAL_SCROLL_JUMP$EVE$$K_SAVE_EXTENDED_HELP$EVE$$K_SHOW_BUFFERS_POPUP$EVE$$K_WILDCARD_FIND_HELP EVE$$K_NEEDFILENAME_HELP EVE$$K_SPLIT_WINDOW_HELP EVE$$K_SAVE_FILE_AS_HELP EVE$$K_AT_EVE_FILE_HELP .EVE$$K_BUFFER_WORD_WRAP EVE$$K_SET_MARGINS_HELP EVE$$K_NO_SELECT_POPUP EVE$$K_OPENBUFFER_HELP EVE$$K_SET_WIDTH_HELPEVE$$K_EXTME#f$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tg"4NU_HELPEVE$$K_EXTEND_POPUPEVE$$K_HELP_ON_HELPEVE$$K_REPLACE_HELPEVE$$K_SELECT_POPUPEVE$$K_BUFFER_HELPEVE$$K_EXTEND_HELPEVE$$K_GLOBAL_HELPEVE$$K_SCROLL_JUMPEVE$$K_ATTR_HELPEVE$$K_FIND_HELPEVE$$K_NEW_HELP(EVE$$K_EXTMENU_USER_HINT_LABEL3$EVE$$K_EXTMENU_LIST_COMMANDS$EVE$$K_EXTMENU_LIST_CONTENTS$EVE$$K_EXTMENU_LIST_POPUPS$EVE$$K_SAVE_SYS_ATTRIBUTES EVE$$K_NUMBER_OF_WIDGETS EVE$$K_EXTMENU_DISMISS EVE$$K_EXTEND_SUBFORM3 EVE$$K_SAVE_ATTRIBUTESrEVE$$K_FIND_EACH_YESEVE$$K_SHOW_BUFFERSNEVE$$K_EXTEND_THIS9EVE$$K_GLOBAL_TABSREVE$$K_HELP_TOPICS"EVE$$K_TWO_WINDOWSUEVE$$K_HELP_MENUSFEVE$$K_TAB_SPACESTEVE$$K_HELP_KEYS(EVE$$K_EXTMENU_USER_HINT_LABEL2$EVE$K_NHORIZONTAL_SCROLL_BAR$EVE$K_NVERTICAL_SCROLL_BAR EVE$$K_EXTMENU_SEPARATOR EVE$$K_EXTEND_SUBFORM2 EVE$$K_MESSAGE_LABEL2EVE$$K_DELETE_BUFFEREVE$$K_EXTMENU_ENTER8EVE$$K_GLOBAL_CURSORQEVE$$K_HELP_NEW_USEREEVE$$K_BOUND_CURSOREVE$$K_VISIT_BUFFEREVE$$K_WRITE_BUFFER%EVE$$K_BUFFER_ATTRDEVE$$K_FREE_CURSOR6EVE$$K_GLOBAL_ATTR$2EVE$$K_BUFFER_SET_TABS_EVERY$EVE$$K_SET_PARA_INDENT_APPLY$~EVE$$K_SAVE_EXTENDED_APPLY$EVE$$K_SPLIT_WINDOW_APPLY EVE$$K_AT_EVE_FILE_APPLY EVE$$K_SET_MARGINS_APPLY 0EVE$$K_BUFFER_READONLY EVE$$K_SET_WIDTH_APPLYEVE$$K_BUFFER_APPLYxEVE$$K_EXTEND_APPLYEVE$K_NYxEVE$K_NXV$W$X$Y$Z$[$\$]$^$ _$ `$ a$ b$ c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$ v$!w$"x$#y$$z$%{$&|$'}$(~$)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?$@$A$B$C$D$E$F$G$H$I$J$K$L$M$N$O$P$Q$R$S$T$U$V$W$X$Y$Z$[$\$]$^$_$`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$v$w$x$y$z${$|$}$~$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $ $ $ $ $$$$$$$$$$$$$$$$$$$ $!$"$#$$$%$&$'$($)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?$@$A$B$C$D$E$F     44Pl P d 4t0 $,"EVE$KT_MODIFIER_DELIMITER_SEQUENCE(MEVE$XRM$K_CRMODIFY_TEXT_VALUE$VEVE$XRM$K_CRCLIPBOARD_DELETE$EVE$GET_COMMAND_WINDOW_SIZE$EVE$GET_MESSAGE_WINDOW_SIZE$EVE$SET_COMMAND_WINDOW_SIZE${EVE$SET_MESSAGE_WINDOW_SIZE$EVE$$X_COMMAND_WINDOW_SIZE$|EVE$$X_MESSAGE_WINDOW_SIZE %EVE$DWT$K_CRVALUE_CHANGE 5EVE$DWT$K_CRCLIP_DELETE EVE$X_DECWINDOWS_ACTIVE EVE$$X_THE_PROMPT_RANGE EVE$$X_DEFAULT_MESSAGEFEVE$XRM$K_CRACTIVATE"EVE$DWT$K_CRACTIVATEOEVE$XRM$K_CREXECUTEEVE$$PENDING_DELETE_EVE$XRM$K_CRRESIZE^EVE$XRM$K_CREXPOSE1EVE$DWT$K_CRCREATE7EVE$DWT$K_CREXPOSEEVE$K_NDIALOGTITLEEVE$CURSOR_IS_FREEEVE$CLEAR_MESSAGElEVE$K_CR_ACTIVATEEVE$K_STATUS_LINE<EVE$XRM$K_CRNONEEVE$PROMPT_LINEEVE$K_NNORESIZEEVE$SET_MESSAGEEVE$X_SEQUENCE EVE$IS_MOUSE EVE$K_NTITLE EVE$KEY_NAME} EVE$MESSAGE4 EVE$$PARSE,"EVE$KT_MODIFIER_DELIMITER_STANDARD$\EVE$XRM$K_CRCOMMAND_ENTERED$]EVE$XRM$K_CRCOMMAND_CHANGED$>EVE$XRM$K_CRVALUE_CHANGED EVE$DWT$K_CRSCROLL_END gEVE$K_CR_VALUE_CHANGED EVE$REMEMBER_TPU_GOLDEVE$RESTORE_TPU_GOLDEVE$MOVE_PROMPT_ENDEVE$SET_KEYPAD_GOLDEVE$X_RECALL_ROUNDEVE$CURRENT_KEYPADEVE$$GET_NEXT_WORDEVE$SET_USER_GOLDEVE$$REMOVE_WORDL EVE$X_KEYPAD WEVE$XRM$K_CRCASCADINGEVE$$PARSE_KEYSTRINGEVE$CLEANSE_STRINGEVE$PROMPT_STRINGEVE$IS_MOUSE_DRAGEEVE$XRM$K_CRDRAGEVE$DWT$K_CRDRAGx EVE$K_NO_ARG rEVE$K_CR_SINGLE_SEL_CONFDEVE$SET_KEYPAD_GOLD_OFFEVE$DWT$K_CRPAGE_DECEVE$DWT$K_CRPAGE_INCEVE$DWT$K_CRUNIT_DECEVE$DWT$K_CRUNIT_INC EVE$K_NDIRSPECEVE$ALPHABETIC$-EVE$DWT$K_CRSNGL_SEL_CONFIRM$/EVE$DWT$K_CREXT_SEL_CONFIRM DEVE$XRM$K_CRTO_BOTTOM EVE$DWT$K_CRTO_BOTTOMHEVE$XRM$K_CRDISARM$EVE$DWT$K_CRDISARMiEVE$K_CR_TO_BOTTOMEVE$GET_HELP_ITEMEVE$TEST_SYNONYMGEVE$XRM$K_CRARM\#EVE$DWT$K_CRARM,EVE$DWT$K_CRSNGL_SEL.EVE$DWT$K_CREXT_SELqEVE$K_CR_SINGLE_SELYEVE$XRM$K_CRCANCEL!EVE$DWT$K_CRCANCELkEVE$K_CR_CANCEL&EVE$DWT$K_CRNOo EVE$K_CR_NOtEVE$X_NO$TEVE$XRM$K_CRDEFAULT_ACTION EVE$$X_MOUSE_DOWN_BUTTON 'EVE$DWT$K_CRTO_POSITION wEVE$K_CR_DEFAULT_ACTION 3EVE$DWT$K_CRSELECTION *EVE$DWT$K_CRPULL_DOWN EVE$$RESTORE_POSITIONEVE$IS_MOUSE_MOTIONEVE$IS_MOUSE_DOWNEVE$INSIST_Y_NEVE$K_NPATTERNEVE$$KT_RETURN$xEVE$K_CALLBACK_ARRAY_LENGTH$EVE$K_RESOURCE_ARRAY_LENGTH$EVE$X_COMMAND_PROMPT_LENGTH ~EVE$$X_RESIZE_NEW_LENGTH EVE$$X_RESIZE_OLD_LENGTH EVE$$X_RESIZE_NEW_WIDTH EVE$$X_RESIZE_OLD_WIDTH[EVE$XRM$K_CRNO_MATCH8EVE$DWT$K_CRNO_MATCHEVE$X_PROMPT_LENGTHvEVE$K_CR_NO_MATCHEVE$K_NMINWIDTH EVE$K_NVALUECHNG_CALLBK EVE$K_NTOBOTTOM_CALLBK EVE$K_NPAGEDEC_CALLBK EVE$K_NPAGEINC_CALLBK EVE$K_NUNITDEC_CALLBK EVE$K_NUNITINC_CALLBK EVE$K_NTOTOP_CALLBKEVE$IS_MOUSE_CLICKXEVE$XRM$K_CROK|p EVE$K_CR_OK(UEVE$XRM$K_CRCLIPBOARD_REQUEST$EVE$K_NFILE_LIST_ITEMS_COUNT$REVE$XRM$K_CREXTENDED_SELECT$QEVE$XRM$K_CRMULTIPLE_SELECT$EVE$K_NSELECTED_ITEMS_COUNT$BEVE$XRM$K_CRPAGE_DECREMENT$AEVE$XRM$K_CRPAGE_INCREMENT$zEVE$TERMINALS_MODULE_IDENT$EVE$X_COMMAND_KEY_MAP_LIST$PEVE$XRM$K_CRSINGLE_SELECT$SEVE$XRM$K_CRBROWSE_SELECT$yEVE$TERMINALS_MODULE_INIT EVE$DWT$K_CRSCROLL_START 4EVE$DWT$K_CRCLIP_REQUEST EVE$CURRENT_KEY_MAP_LIST EVE$X_HELP_KEY_MAP_LIST EVE$K_NLISTVISITEMCOUNT EVE$K_NLIST_ITEMS_COUNT fEVE$K_CR_PAGE_DECREMENT eEVE$K_CR_PAGE_INCREMENT @EVE$XRM$K_CRDECREMENT ?EVE$XRM$K_CRINCREMENT EVE$K_NSELECTED_COUNTEVE$X_COMMAND_PROMPT;EVE$DWT$K_CRNO_FONTEVE$$LOOKUP_COMMENTEVE$K_NVISITEMCOUNTEVE$X_KEY_MAP_LISTEVE$K_NITEMS_COUNTEVE$LOOKUP_COMMENTEVE$$PARSE_COMMENTdEVE$K_CR_DECREMENTcEVE$K_CR_INCREMENT`EVE$XRM$K_CRINPUTEVE$X_KEYPAD_LISTEVE$K_NMINHEIGHTEVE$X_MOUSE_LISTb$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TL"EEVE$INSERT_TEXTEVE$LEARN_ABORTEVE$INIT_REPEAT EVE$IN_PROMPT EVE$X_PROMPT` EVE$K_NSET EVE$IN_PROMPTING_WINDOWEVE$COMMAND_WINDOWEVE$PROMPT_WINDOWEVE$K_USER_WINDOWEVE$ON_A_PRE_LK201(EVE$X_CURRENT_LANGUAGE_KEYMAPCEVE$XRM$K_CRTO_TOPEVE$DWT$K_CRTO_TOPJEVE$XRM$K_CRUNMAP)EVE$DWT$K_CRUNMAP=EVE$XRM$K_CRHELP2EVE$DWT$K_CRHELPIEVE$XRM$K_CRMAP(EVE$DWT$K_CRMAPEVE$IS_MOUSE_UPhEVE$K_CR_TO_TOPj EVE$K_CR_HELP(EVE$$NOT_MIXED_MOUSE_MODIFIERS$EVE$$X_RECALL_UP_TERMINATORS$EVE$$X_MOUSE_DOWN_MODIFIERS$EVE$KT_MODIFIER_DELIMITERS$EVE$$X_PROMPT_TERMINATORS$EVE$$X_RECALL_TERMINATORS LEVE$XRM$K_CRLOSING_FOCUS 9EVE$DWT$K_CRLOST_FOCUS uEVE$K_CR_LOSING_FOCUS EVE$K_NSELECTED_ITEMSEVE$$STRIP_MODIFIERSEVE$$ENGRAVED_NAMEStEVE$K_CR_LOST_FOCUSEVE$X_STANDARD_KEYSKEVE$XRM$K_CRFOCUS+EVE$DWT$K_CRFOCUSEVE$$X_GOLD_KEYSEVE$$GET_DO_KEYS6EVE$DWT$K_CRYESEVE$X_USER_KEYSEVE$VT100_KEYSsEVE$K_CR_FOCUSn EVE$K_CR_YES EVE$X_YES(NEVE$XRM$K_CRMOVE_INSERT_CURSOR$EVE$$PARSE_KEY_WITH_MODIFIER$0EVE$DWT$K_CRCOMMAND_ENTER EVE$$MOUSE_BUTTON_NUMBER EVE$$PROMPT_POST_FILTER EVE$RECALL_LINE_BUFFER EVE$$GET_WINDOW_NUMBER EVE$KT_XLATE_PARAMETER EVE$CREATE_TERMINATOR EVE$REMOVE_TERMINATOREVE$$RESIZE_HANDLEREVE$TEST_TERMINATOREVE$ADD_TERMINATOREVE$PROMPT_BUFFEREVE$PROMPT_NUMBERMESSAGE_WINDOW$EVE$$RESTORE_KEYPAD_GOLD_KEY$EVE$$CREATE_GOLD_KEY_ARRAY$EVE$$PARSE_UNMODIFIED_KEY bEVE$XRM$K_CRLOSE_PRIMARY aEVE$XRM$K_CRGAIN_PRIMARY EVE$K_SHIFT_MODIFIED_KEY EVE$K_HELP_MODIFIED_KEY EVE$K_CTRL_MODIFIED_KEY EVE$$X_TERMINATOR_ARRAY EVE$$REDEFINE_GOLD_KEY EVE$K_ALT_MODIFIED_KEY EVE$$IF_USER_GOLD_KEYEVE$$REDEFINE_DO_KEYEVE$$X_DO_KEY_ARRAYEVE$K_SHIFT_KEY_KEYEVE$SET_NOSHIFT_KEYEVE$$X_STATE_ARRAYEVE$SET_NOGOLD_KEYZEVE$XRM$K_CRAPPLY:EVE$DWT$K_CRAPPLYEVE$$UNDEFINE_KEYEVE$UNDEFINED_KEYEVE$$NOT_GOLD_KEYEVE$SET_SHIFT_KEYEVE$SET_GOLD_KEYEVE$$ADD_DO_KEYEVE$$DEFINE_KEYEVE$UNKNOWN_KEYEVE$PROMPT_KEYmEVE$K_CR_APPLY` EVE$SEVERITYLEVE$$X_COMMAND_PREFIX      !"#$% ! " # $ % &'()*+,-./012345678 9!:";#<=>?@ABCDE F G H IJKLMNOPQRSTUVWXY Z"[#\$]%^&_'`(a)b*cdefghijkl m n o p qrstuvwxy$z-{-}T/1:(<h<<=>l>>@ACDEGHHpNOOLS|STtV4aabddeg! JJ" P,406 @ 8 B A I ; 7 C : ? 9 5 = < > L K H E D F G M N O   ooononon !!oo"7$7 $7$7$1    (|] |( ]  Ps |o |JQ(] (] Xs|vo JQ(#]$ $\s&|v'o'(()JQs,|v-o-.J!"(3#]4 4|s6|v77o77$l9$t9:$:#<JQ#G G(HI%SI I JN &Padvance forwardbackup reversechange_directionmove_up recall move_downreturn do exit find wildcard_find help next_screen previous_screen fndnxt continue_search_select continue_search_key search_right_angle   ,return help exit next_screen previous_screen move_up move_downeve$$command_pre_filtereve$$command_post_filterEVE$MOUSE_LIST$_V03-016lh_| | }$O| &#c~&#h~s%v u }$|(T  ] (#HH\ $ "; O"A  (#HH DP"A   6  0\XR(~q(T  j|&c&ck X8 rs#t TP <& uS vtO~ (O   p j%~Aw8 ~ H  3|Oxy~ x X3|Oxz~y P3| &~Aw8 !~ !#w #${% O/~ /100 1@34 5 s7~v77 : B>$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"VCDwFF`G|GI&kIIuJJ KR SSTwVVW|WY Y(Z&Z X] ]\^&^s__`}a~a ucc dlw lpsp~p&wpn&znp  H&t   |ws~&w   ~ <z~y HO& ~   ~ <z~y  \O& ~  Ts~sn|wA hwH|u  ,OlR  }$O &#c~&#h~s%v u  }$(T   <$Q| ||<P ""&P(-#. .0 0|1&a2T3& 4 405& 5 67:= <== >A AB=I`OKN. N,O}$P P QR RZT8O        0N`)9```d0NHR0nopsrsxxy3|y(T8  j|x &(JA06u (T  JA }(# L=:xL(#\\HHH $  0K&Od  k!&O3! "$&&'(<'u((R()1v*l)*R*+1+1n+, ,`--//n 0 j1o1Q1 461x66R66< do, I,$GGIIL L(M&mM N(OO&mOOQRPRAS STWW]H  :6  $ }$    S (  1 A        G6:  O   (]       p  popo( R(v 1R ! !'      E :6d H:6 do0DlllrtTD (# D )-P8  C2. L 8 :6 &QP P7[$ 8  8($ 8uR 6& $ t&NP&6PA $ ( $RlR'(p lR'uR( 81xR   66  &-  setget)(")eve<>  :6 #   " $Dd  #   | $   \ %   < &    '    <=&,%X\=RdHF& G GHJKL[N& O OPRS}$T[V& W WXZ[]]^3|^`& a a8b}$cUde ehijj=k lUm mnp=q=s t v v"x xy z{ {|}~A  $   4}$$ EVE$PROMPT_KEY,:----39\PTQ Q R RR}TU UWWZ Z[ \]]`bwbLcPd deelgg hjjq8(T l  HSd^6)    $}  S)Zl8 4}"$     1l1l0  6RdH,& - -.012A4& 5 5689}$:A<&$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tu"g = =>@AC& D D$E}$F FIIJ3|JLL=MNOO=P RS1ST8V3UWWX=vZ Z0[\6] _UQbB b g gh ij}`$ kl1olllRln]nlo2 o8o pXqr r stss8uv wy y8z|}} ~    P&  U  6:  1oR]92 8 88A (U  Tp opo(Dpn odqRoL( =(  3\ : 4 $= |3\ : 4 $=3S  =   @ }`$ &  Y $&G3SA ,==vU p1lR = 3 \  P : Y   :   deletedelete        , 1 R (` 8 1x  R  6 \|p+C     (} $C  H*#QY$ $%3|%&''=)*8,3+--.=/3//S0 018 3845 5 6t668>L8) R\\Q4 455J78D:}$Q< <==JDQA ABBJDEE&(EFFJG GHHJNT'S SPU UV W$YY [$]]b bc!ce-ff| gh hjk l1l m<n op p qr ru1uRPu vw w xly1yRPz z{ { | }}Z$ T exit|% & 3|S  P `RP8   XRP8   @$PPAX# 3S  P hRP 0t8  `RP 0t8  xp"$ &*&&"D``,,,, D2 C.m  2. D( T  , j 46 82 C.km6!! "8&2 C.k'm''6*+ +8/2 C.k0m00634 4882 C.k9m99"@CPP @PD(TE E`uFFRTG GH IJ L@M(oMMRMO P,Q2.QS8(TTU U W WX ]a(&ac cPe(leweldeRepgogggh j2.jlD(mTn n,p pjqqqx('xz z0u{{R{}(} \R2 C.km $R# 08888888888 "E((XX )G \)I ,)Ej'"'""(,return(key_name ())_KEYCTRL_-/"ET$ 7$ \7$ ,7$(%L%T%\%d%l%t t~ `o Lg 8Z $M EE1E2E3E4E5E6FIND INSERT HEREREMOVESELECT PREV SCREEN NEXT SCREEN( huR11kRn4@}]0 ,A &#TT T C \ & 2  (&}CTRL/X I   ( r ]   < q   0q  3 q  r      &  \  @ $ -    &      & (' T(  ( L) * &+ " r , }$ - 0 1 }Q$ 3 5  5 6 & 7 \7 7 H9 $: -: : < < = 0> 3|P?  ? D E 3E E \F F LH W$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TD "xI &J " r K }s$ L M N }Q$ P Q R }Q$ T LV V &W " r X Y }s$` $a -a a c c j $RESTORE$SELECTION$0&#l=&*=(0> >? ?B BHDOWNh<P&*P(0Q QR RU U\UPld&*d(0e ef fi ipDRAGl`x&*x(0y yz z} }CLICK<%d%x%%%%%|%p | \ <  DOWNDRAGUPCLICKCLICK2CLICK3CLICK4CLICK5&* 1xR1([oR  KEY_NAME (,Y   l QqWmnoM2 2 82 2 QB8A8 ,  H2  $      , return(key_name(M))L 2&23P4 4p5 5 577888u99 :;>?6:@o@@AACCCI` g hi ino6:ror(mrrt tz  6:pPoFq4o.(      6:p0o&qo(11uRsjRn6:     XY8 \       4             X  ) 4     $ $ * 8( ]     `T T 8T U 8V 2 W W X T` ,(     pX X Y &QY Z ,&P[ [ l\ 7$\ ] ] ^  _ 0` 7$` a a c d 7$d Ye e tf ,&f J&g ,&h J&i j j n n t 4pRD- - . J0 1 7 4 4 5 J7 9 &( : ;  < = ? JC 7S$D $F JK eve$$not_gold_keyL Q  C   j$          Z$ ! T" # # J&$ J&% i$% ' (  ) * b$* + , - - . . / ,&P0  0 1 X$1 2 L4 5 J&6 J&7 i$7 9 : r$: B doL7 9 9 : <  ? ? @ C  E E K X Q[  [ _ _ ` &Q` a ,&Pb  b ,c }$d d e h h j  j ,k Pk  l m p Pq  q r t 7$t Pu  u v y ({ ,&{ J&| ,&} J&     J&  J&  Q }ـ$ ,   }a$    h  P 7$  $  }a$    7$      \ ,& J& ,& J& 7$  }a$ $ }$  X  H  0   Q         4               )    R (   1 R  (   8  0u  R  }$     # EVE$_KEYS X 7$      &Q ,&Y    J& J&   }ـ$       T4e e &Qe e }x$j l &m n n q &#g r s s v &# w x x { &# | } }  &#e    &# &#8  &#8    &#f      t0       &O  Ll m   &O3  &O!  hp r (    &O=      d  Q 4      P( ]         $l @  , m o      D<7 }J$8 9 9 ; ; = = > ? C C D &O D G G H H J  J (K (K  L M P P HuQ Q RQ lR R RR S S T 2O T OV  V pXX  X \Y Z &Z Z[ GZ\ H8\ ] ^ 4b b (c (c  d e &O3 e f h  $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tٔ" i j j n o 2O Pp  p q q r (r us s Rlt u 1nu u Rnu u v y  z {  | P~ (    l  @  ;  }Ӑ$  }$ T  ;  }ɀ$  }$       P`H }@$         6 R , Q  (z A | R 7 p 6o 4 p &o go a $ :   :  <  (   $ R   R s  R   ( (\   \u  R l  R    Z Z 8  ` , l m  l m       l K   ,s  R j        6, 1   &O " " # ( a# %  % (& ( & & t ' @l( ) R * ( * * 0, &O3, - <3 3 h4 (4 l5 6 R 7 ( 8 8 9  > > @lC 1mC C D D E F H  H `L 78$K 7$ L M N R  R S }8$T V V X X Y ] 2  ] _ 2 . _ ` (a ]a Ab b c ( c e  e @li ti lg i R i k }$ l x x 0py Iz  { |  ; `  @  }$  }$  }$ -_/ TPU TP program ()Lon_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error;;return 1(,"" eve$k_no_arg ( )$$ _KEYSEVE "@ R448  1  1  5     <: }$>`::]8  }2$   ,(  j %4%(&@'4 (!   `(  (! ;  !   ::]8 |; (}2$< Du R }*$ =     8M kpnM klv l!v!'=(=*(+&G+ ,- /3/!0E  011223=88 9 l: : ;$<=u=:X@! AHB8C3C!CE: FH H<I!IJ=S SYZ  [P` `f f$g h io oq qr  sz:]z{:{8{ | ~6 ; (}2$< Du R }*$  S u R 7*$ = h(   11 O   lR(   8jxR l: m       ,    t P =3SX&   : &G  =5 :]:8  6  ; ( }$< Du R } $  S  u R 7 $ = !&=l++R+, /1l/w/l./Rk//01Shb6 6P7&  899 :;;D& DIJ J P PU UVV\:\]:]]8] ^xd&Gd5d e0j6 k5 l; m(n}$< oDur rR r} $ tu vSzuy yR y7 $y {= | }$!; lO   $l d::]8 $}"$ O l     4Q qom   ,(  pb o_   Q - ,l!  `Z  L:]  }J$  l  l @lfl      Q qom   ,(  \p o   Q"  "#< $H%S uoj& &'  (P,:]- -$.}r$ 00 2`Z7  7L;:]< < =}J$ ??I J= K jL L MtOR  R(S SS T<X X lY mY oYY` ` Qe ef f l  llmm ouEVE_EVE__ ___ _ _ _EVE$ARG()EVE$ARG_return ()integer eve$k_no_argstring"",)EVE$ARG_return ()integer1lstringj)$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T}~""",,EVE_Ton_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error; return $ 1 l       1     R (   $   l   p  $    \ R u  R  du  R s l  R     /////^-_\l 0@Pd8 ?: ?<}P= =??B B$C}$D DJ1K KL,LLSSU UV VY!-Y\]]]abc6,lddlee(f fg htlii(j j lkk l0m}*$n nOs tu vwpz7oz=zzz  _KEY _KEYreturn(key_name ())$uRRP8   4lR  ",""(h~ ~  &Q  ,&P , 7$  p P  H    $ P   7$  ,TG G G O $$      A    Q      @  O $       44[0 l ` D`, (p,;#EVE$KT_MODIFIER_DELIMITER_UNDERLINE$EVE$$X_POST_DISPATCH_ACTIVE$EVE$$X_PRE_DISPATCH_ACTIVE$EVE$SET_FUNCTION_KEYS_EVE QEVE$$DEFINE_KEY_LANGUAGE EVE$$LOOKUP_STRING_TABLE :EVE$KT_WORD_WRAP_ROUTINE gEVE$KT_CALLBACK_ROUTINE hEVE$SET_MIN_WIDGET_SIZE jEVE$X_APPLICATION_NAME EVE$TEST_IF_MODIFIABLE EVE$SET_KEY_PROCEDUREmEVE$X_ULTRIX_ACTIVEcEVE$$$GET_KEY_NAMEEVE$X_MOTIF_ACTIVE3EVE$KT_OUTPUT_FILEEVE$K_REASON_CODEPEVE$$USE_LANGUAGEoEVE$POPUP_MESSAGEEVE$SHIFT_DELETE,EVE$KT_FILE_NAMEEVE$$BOX_PASTE EVE$K_CLOSURE0 EVE$KT_MODE1 EVE$KT_NAMEt6 EVE$KT_TYPE EVE$$X_MENUBAR_MANAGED EVE$$INSERT_CLIPBOARDEVE$X_NUMERIC_KEYPADsEVE$UNMAP_IF_MAPPEDEVE$K_VALUE_CHANGEDEVE_SET_NOCLIPBOARDEVE_SET_CLIPBOARDEVE_MOVE_BY_WORDEVE$SET_KEYPAD EVE$NEXT_WORDL EVE$WPS_WORD(EVE$X_WIDGET_HIERARCHY_STRING(EVE$X_QUICK_COPY_HIGHLIGHTING$EVE$X_REPLACE_GO_EACH_DIALOG$EVE$X_SET_PARA_INDENT_DIALOG$EVE$X_WRITEFILEPROMPT_DIALOG$EVE$X_WRITEDELPROMPT_DIALOG$EVE$X_SAVE_EXTENDED_DIALOG$EVE$X_WILDCARD_FIND_DIALOG$EVE$X_SAVE_FILE_AS_DIALOG$EVE$X_NEEDFILENAME_DIALOG$EVE$X_REPLACE_EACH_DIALOG$EVE$X_REALLYDELBUF_DIALOG$EVE$X_SPLIT_WINDOW_DIALOG EVE$X_SET_MARGINS_DIALOG EVE$X_SELECT_REMOVE_FLAG EVE$X_AT_EVE_FILE_DIALOG EVE$X_EXTEND_MENU_DIALOG EVE$X_REALLYQUIT_DIALOG EVE$X_OPENBUFFER_DIALOG EVE$X_SET_WIDTH_DIALOG EVE$X_FIND_EACH_DIALOG &EVE$X_BOX_SELECT_FLAG EVE$X_WRITEBUF_DIALOGpEVE$X_MESSAGE_DIALOGEVE$X_REPLACE_DIALOGEVE$X_GLOBAL_DIALOGEVE$X_BUFFER_DIALOGEVE$X_EXTEND_DIALOGEVE$X_MARK_DIALOGEVE$X_FIND_DIALOGEVE$X_GOTO_DIALOGEVE$X_ATTR_DIALOGEVE$X_EXIT_DIALOGEVE$X_NEW_DIALOGEVE$X_SCROLLING EVE$X_DEBUG(EVE_SET_FUNCTION_KEYS_NOMOTIF$EVE$SET_FUNCTION_KEYS_MOTIFtEVE_SET_FUNCTION_KEYS_MOTIFEVE$K_PAGE_DECEVE$K_PAGE_INCEVE$K_UNIT_DECEVE$K_UNIT_INCEVE$X_SCROLL_BOTTOM=EVE$KT_NULL_PROGRAMREVE$X_NULL_PROGRAMEVE$K_TO_BOTTOM,!EVE$KT_MODIFIER_DELIMITER_CONTROL EVE$$X_EVE_COMMAND_LABEL EVE$$X_SEPARATOR_LABEL yEVE$$RESIZE_TOO_SMALLEVE$PAGE_HORIZONTALEVE$EVE_IN_CONTROL)EVE$KT_BEYOND_EOL' EVE$KT_NULL$EVE$X_INCLUDE_FILE_SELECTION$SEVE$$DEFINE_KEY_TRANSLATION$JEVE$X_DEFAULT_RIGHT_MARGIN$EVE$STUFF_GLOBAL_SELECTION$kEVE$$MANAGE_FILE_SELECTION$IEVE$X_DEFAULT_LEFT_MARGIN$EVE$X_DELAY_MENU_CREATION$lEVE$X_OPEN_FILE_SELECTION EVE$$X_DELETE_SELECTION >EVE$KT_XLATIONS_VERSION EVE$X_SELECT_POSITION2EVE$KT_OFFSET_COLUMN5EVE$KT_RIGHT_MARGIN/EVE$KT_LEFT_MARGINqEVE$$RESIZE_ACTIONEVE$X_SCROLL_ON EVE$SELECTION$$EVE$X_CHOICE_WINDOW_LENGTH 7EVE$KT_VISIBLE_LENGTHEVE$SCROLL_DISPATCHEVE$NEXT_PARAGRAPHEVE$WPS_PARAGRAPHr EVE$SET_WIDTH9 EVE$KT_WIDTH$EVE$KT_NACTIVATE_CALLBACKEVE$KT_NHELP_CALLBACK$EVE$$X_DISPLAY_PULLDOWN_MENU$EVE$$X_CUSTOM_PULLDOWN_MENU$EVE$$X_FORMAT_PULLDOWN_MENU$EVE$$X_SEARCH_PULLDOWN_MENU$EVE$$X_EDIT_PULLDOWN_MENUEVE$$X_FILE_PULLDOWN_MENU(YEVE$DECWINDOWS_MODULE_PRE_INIT$EVE$CREATE_SECONDARY_SELECT$EVE$$X_MENU_SEPARATOR_COUNT$ EVE$X_BUF_STR_SAVED_CONTEXT$EVE$X_FUNCTION_KEY_MAP_LIST$XEVE$DECWINDOWS_MODULE_IDENT$WEVE$DECWINDOWS_MODULE_INIT$MEVE$SYNONYMS_MODULE_IDENT EVE$X_FOCUS_BASED_SELECT LEVE$SYNONYMS_MODULE_INIT EVE$$X_SAVE_MENU_COUNT EVE$KT_TOP_TPU_WIDGETnEVE$UNMANAGE_WIDGETbEVE$UNDEFINE_WIDGET4EVE$KT_RECORD_COUNTeEVE$CREATE_WIDGETiEVE$MANAGE_WIDGET_EVE$DEFINE_WIDGETEVE_SHIFT_RIGHTEVE_SHIFT_LEFT- EVE$KT_FIRST EVE$K_WIDGET EVE$$BOX_CUT. EVE$KT_LAST EVE$$X_SCROLL_BAR_WINDOWtEVE$CHECK_BAD_WINDOWEVE$$X_RULER_WINDOW+EVE$KT_CURRENT_ROW}EVE$$REMOVE_WINDOW#EVE$CHOICE_WINDOWzEVE$$MAP_WINDOW|EVE$GET_WINDOW{EVE_ONE_WINDOW EVE$X_NO_SELECT_POPUPEVE$X_SELECT_POPUP8EVE$KT_VISIBLE_TOPEVE$X_SCROLL_JUMPKEVE$X_STARTING_UPEVE$X_SCROLL_TOPvEVE$HELP_CLEANUP EVE$K_TO_TOP("EVE$$X_HELP_VT100_TERMINATORS(EVE$$X_NOSELECT_POPUP_ENTRIES$\EVE$KT_PUSHBUTTONWIDGETCLASS$dEVE$$$RESTORE_WIDGET_ARRAYS$]EVE$KT_SEPARATORWIDGETCLASS$EVE$$X_SELECT_POPUP_ENTRIES$EVE$$X_SCROLL_BAR_CALLBACKS$ EVE$$X_POST_KEY_PROCEDURES$EVE$$RESIZE_SYSTEM_WINDOWS$UEVE$$DEFINE_KEY_MODIFIERS$EVE$X_MOTIF_FUNCTION_KEYS$ EVE$$X_PRE_KEY_PROCEDURES$aEVE$$X_WIDGET_HELP_ARRAYS EVE$$$SAVE_WIDGET_ARRAYS EVE$$X_FIND_REVERSE_KEYS EVE$$X_FIND_FORWARD_KEYS EVE$$X_SCROLL_BAR_VALUES ^EVE$SET_ULTRIX_RESOURCES EVE$$X_FIND_TOGGLE_KEYS EVE$$X_FIND_TERMINATORS !EVE$$X_HELP_TERMINATORS EVE$$SET_NO_SCROLL_BARS wEVE$X_NUMBER_OF_WINDOWS EVE$KEY_MAP_LIST_EXISTS NEVE$$INIT_ALL_SYNONYMS EVE$SET_SCROLL_MARGINS VEVE$$ADD_KEY_SYNONYMS EVE$SET_FUNCTION_KEYSxEVE$TEARDOWN_WINDOWSEVE$$SET_SCROLL_BARS`EVE$$X_WIDGET_ARRAYSEVE$$X_EVE_COMMANDSEVE$$X_POPUP_MENUS%EVE$X_NUMERIC_KEYSEVE$$SAVE_SETTINGSEVE$KEY_MAP_EXISTSEVE$CREATE_POPUPS~EVE$SETUP_WINDOWSEVE$X_VT100_KEYS39$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"EVE$X_WPS_KEYSEVE$$X_WINDOWS( EVE$KT_SPACES(OEVE$MAKE_SYNONYM_A_TERMINATOR$EVE$KT_KEY_STRING_DELIMITER$EVE$$RELEASE_SCRATCH_BUFFER$EVE$$RESERVE_SCRATCH_BUFFER$EVE$KT_KEY_NAME_DELIMITER EVE$$POST_KEY_DISPATCHER EVE$$PRE_KEY_DISPATCHER EVE$$FOUND_POST_FILTER EVE$UNMANAGE_MENU_BAR HEVE$X_SENTENCE_BUFFER EVE$$X_SCRATCH_BUFFEREVE$PRIMARY_TRANSFEREVE$$LOOKUP_MODIFIEREVE$CREATE_MENU_BAREVE$MANAGE_MENU_BAREVE$$X_QUICK_ANCHOREVE$EDT_DELETE_CHARCEVE$DEFAULT_BUFFERBEVE$COMMAND_BUFFEREVE$X_BOUND_CURSORDEVE$RESTORE_BUFFEREVE$X_QUICK_ANCHOREEVE$X_CHAR_BUFFERGEVE$X_LINE_BUFFERFEVE$X_WORD_BUFFEREVE$DEFINE_ATTREVE$X_MENU_BAR* EVE$KT_BUFFERu HELP_BUFFER$EVE$KT_MODIF_XLATIONS_KEY EVE$$X_GLOBAL_ATTR_ARRAY EVE$KT_KEY_XLATIONS_KEY ?EVE$KT_XLATIONS_VER_KEY fEVE$X_WIDGET_HIERARCHY EVE$$PARSE_UNKNOWN_KEY EVE$$X_SEPARATOR_ARRAY[EVE$X_CALLBACK_ARRAYTEVE$$ADD_TABLE_ENTRYZEVE$X_RESOURCE_ARRAYEVE$$QUICK_POST_KEY@EVE$K_FUNCTION_KEYAEVE$K_KEYPAD_KEYEVE$$FILTER_KEYEVE$X_BOX_ARRAYEVE$$LOOKUP_KEYEVE$INIT_DO_KEY EVE$$CUT_COPYl<EVE$KT_KEY_LANGUAGE_PREFIX"&'|++\, 0 6;D>@@CDI C ChKpKxK'XR(\R)R*R+R,R-R.R/S0S1S2 S34S4DS5TS6dS7lS8S9S:S;S<S=S>S? C@ CA CLSM8TN`TOTP VQWSXT [U0\V_WbX,eYTe^k_mbocpd$retg0uhLuivkdxn,zozqL|r|s4~tt~vx yz{|L}~p$|ȭx008Ծ0X@`dP@4 d$$$DR8"&O!Y$ $%'&O!Y) )+M-.<<1&O!Y3 346&O!Y8 8:<>? ,E&OEGGH@I@OK KL N&O3N OxTUZ@[\^@__`Leeeklastlastlastlastlastlastlastlastlast    2SA   SA     07$( +SA{do_on_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error; return eve_do ('') dohDR8v&O!Yx xy({&O!Y} }&O!Y &O!Y W ,&O@@O  &O3 xd@&O!@@&O!@p]J lastlastlastlastlastlastlastlastlastlastlastl(0/ /02&O23 37l,((? ?@B&NBC CIhT=UW3|W(Y]Z Zd\  \] _  _`JaJ( bcee=f gPhPi jPk lPmP(rTs s8t&tvv w)w#x D x|}&*}"}  ~4" P&3 (T &`"X P&3  *PJ  =SAVED$CONTEXT$procedure eve$$restore_settings$eve$$x_gold_keys := create_array ();'eve$$x_do_key_array := create_array (); eve$$x_gold_keys {'!AS'} := !AS;"eve$$x_gold_keys {'!AS'} := '!AS';%eve$$x_do_key_array {'!AS'} := '!AS'; endprocedure P\R@JJ(`T &(  J@@ \&O@ &`` a&&!(](]A $}ʳ$ ~9""Blv"cBN j   c  )# <<<xx p2. T 4  l  &`3 JEVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_!ULlast return !SL widget base return !SL widget counth  &Q ,  O,&Q3  (# ll<<XX< D  (   h( ] <       `( ] <       4         & <l&3  P(Jz  J{  !%&%''<l(()&3) *, ,P.(0Vz$$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T6"JzH 1 3J{<6 69 9@eve$$pre_key_dispatchereve$$post_key_dispatcher hQ RUV[-)[]\ \]_-_&` `Habce&me f(gg&mgj jl l$mJznq v vw&wyyLlzz{|&3| } 0Jz &` &3   Ԉ -)] -& H&m (&m  $J{  &Ll&3  0J{ &` &3  ^8:6,2 C. "ll08 t ` X }*$    $}³$ :6,% p%x%%%% %"&$'$& $& G xE d P <! (# "% %' '- SHIFT_KEYFUNCTIONKEYPADSHIFT_MODIFIED CTRL_MODIFIED HELP_MODIFIED ALT_MODIFIED ALT_MODIFIEDSHIFT_MODIFIED <;2 C.>?@ @"F4L FKK LpPP QXU}*$V V W$X}³$Y Y`,0Hx}$ }$ ((1\A 0}$ uRlR1xR) \0}$ %G@%EH%P&EX'L @ X D 0}$ poo mo"mo Hpo&oQmoS()FUNCTIONKEYPAD CTRL_MODIFIEDBon_error [TPU$_INCKWDCOM]: eve$message (EVE$_ILLKEYNAM, 0, '2'); return (false); [OTHERWISE]:endon_error;return(key_name (,))Bon_error [TPU$_INCKWDCOM]: eve$message (EVE$_ILLKEYNAM, 0, '2'); return (false); [OTHERWISE]:endon_error;return(key_name ())}{|6,j~~(~   jm( R(lR(uRj( <      {(T t 8  x$   4 ұ$ &QP  $ &"Cd,  Q C  8$  ]  ڱ$  QG %Bp%Bd%BX%BL%B@%B4%B(%B%B  h$  &  %B %B%B%B$%B,%B4%!B<%$BD%'BL%*BT%-B\%0Bd%3Bl%6Bt%9B|%<B%?B%BB%EB%HB&KB'KBR KB B |B hB TB @B ,"B !%B $(B '+B *.B -1B 04B 37B 6:B 9x=B <d@B ?PCB B<FB E(IB HP P[&[] ]6^_ _ `,`6cc d e,e6hi i j,j6mn n o,or$u u}doP beyond_eolbuffer current_row file_namefirstlast left_marginmodename offset_column output_file record_count right_margintypevisible_length visible_topwidtheve$$word_wrap_EVE$KEY_LANGUAGE=on_error; endon_error;1.1@$s(]  N$rBBV03-003(re f g kcEVE$$INIT_ALL_SYNONYMS\lrb bc ceeggpioihqhohi(j jxplolkqkokl(m m,poqTmqqutt uw w}          q(] 4}$ 6,j<0}$  EVE$$USE_LANGUAGEp$J&(=R(] 4}$ 6,j<  JR C>R CR CJ EVE$$DEFINE_KEY_LANGUAGE,?0@[$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tr"}$A ACE2 C.EF6FGJH%I&p%LG%OE%R%U%X%[&^&'^ a ^KR C INR C LQR C OTR C RWR C UlZR C XH]R C [$_} $` `iTjk koR CpJq qvEVE$$DEFINE_KEY_MODIFIERS4g(] (] L(Q}$ 6( 0}$ ( 0}$ jm( H&*}b$ jmV STRING(e&#&#  +d JJJ   ZZZZZ Z    Z  Z  Z  Z  Z  Z  Z      7$ #- eve$$resize_actioneve_set_clipboardeve_set_noclipboard;$a__V03-054taa&#bcf fZg xg[lZmZnZoZpZqZrZsZtZuZvZwZxZy}ZztZ{tZ|rZtZZZZZZ Z Z Z Z ZZZZZZZzZ{ZZc?[d@[eA[fB[g>[hC[iD[j=[kY[lF[mZ[n [o [pX[qP[r [sK[t [uL[v[[wT[,\5]^J+ increment pageIncrementmaximumminimumvalue labelString sliderSizedirMaskhorizontalScrollBarverticalScrollBarxywidthheightitems itemCount selectedItemsselectedItemCountselectedItems selectedItemCountlistItems listItemCountfileListItems fileListItemCountpageDecrementCallbackpageIncrementCallbackdecrementCallbackincrementCallbackvalueChangedCallback toTopCallbacktoBottomCallbackdirSpecset dialogTitletitleminWidth minHeightnoResizevisibleItemCountlistVisibleItemCountpatternxmPushButtonClassRecxmSeparatorGadgetClassReceve$$remove_copyrightHL[&(T $ J&#JZWJ/usr/lib/X11/app-defaults/eveTpu.Tpu$MainWindow.TitleTpu.Tpu$MainWindow.IconNamelZ(# llPP<<P  t  X(Q}z! (`]  `(a]  a~9`T & 9 P   l    L  `a a  W~+9++,.`.//T0&090P00 l11 25 56 6 78a8; < > >D|tVs\\~]]H^t^^"`(Hp `a,aa bc,Ecc de,Gee fg,&gg h\i,E&ii j,k,G&kkr TP 0          &O 2B 2B   l  jxc2   8!#2.#l%%&& 'X(&O3\( ),, `- a3EVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_LISTPd dgfg&ZZgid ijmd mnp&psrsJZZsxTP(] ` 4}$, e ,& j j&Zlj( HljqmJZ EVE$MANAGE_WIDGETEVE: : N(l] `xf#gl&lZ&# 0JlZ& m  8#4qrJlZilhl OPEN_FILE_SELECTION**TL(]   L@R,   7P@8 3|= =(p] ,f#gp"!&pg#JZ#'ip(hp )*62MESSAGE_DIALOGMESSAGE_DIALOG.MESSAGE_LABEL1J?&#?~@&#@A&#AB&#BDJH0J( T  , &   &=!  &=  J<O  , &=3 ( CT  (s J JbC  &h   <H&  H|R0PtQtRS\V V W WW}YZ Z\\__`  n$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"`cvd|vddfPg g hkPklPlAlmPmAn noPp pHq& ruSr rs suxPxyPyAz zl{){T| |P}}& ~ ~(= )T @&a   DJQ&H&V ,&3  D &  0   MAIND0R(v[ 8 ]   [  s#sU: xX    :   [  U  [ JQ pB|Rt( T  @ }$ ~ }3$ U      &=   ` &   l   &=3  l" " " # 4.$ w& & (' T(  ( ) & ) - - x. . / / X0 0 1 2 & 2 3 &3 4 &4 5 &S5 6 7 7 8 8  9 : : < == 3|= > &> @  @ A A lC C wC C D &hD E &LE F &KF G &JG H &XH I &I J &J K &K L &L M &EM N &DN O &\O P &]P Q &RQ R &; S T T  U V V X &PX Y Y Z [ [ $\ \  ] O_  _ ` `  a Oc  c d d  e Og  g h h  i Ok  k l l  m \Oo  o p p  q ,Os # s t t | &m|   &    , &  &    , &   u   w J      :0Y}$Z7[]7^7$^o_7e 9TRL z     ( ]     JQQ    H &S ( J' & Y    &  & s  s    A $j      J  J(4 J  ( J( T   = =   & &S k  n w u  J% eve$scroll_dispatchh\6RLP+w +,w.{/093 3 4 44}67799;t==>>@w@AA AB}С$ C|(DTE E,F& G G HPwPpQwYQRw)RTS8S TUwUuWwWw XZw\ ]a&ta_&z_aeeAf fhm ms3\PTw w x xx}z{ {}}wA  \3RDP/ /0l00S1 1l22O5w5@l666l77 89:w u;w;w< =HQ? ?4@w uAwAwBMG G H HH}JK KMMOPPQOSwS@lTTTlUU VWXw uYwYwZ` 0TRL }Ȣ$ ~ U    ( # pp<P P  < 4 T 4P .       ) T  |    & 8               " T   s |v o  zBs |v o  J!"s |o  z| wu   z      s |v o  zBs |v o  J!"s |o  z|  u  ! " q" v" }" " $ # $ z% % j& & s' ' ( ( ( l) )  *  + , , w- / &/ / h0 0 3 3 3 3 2 2 2 2 2  3 z4 T5  5 6 6 6 J'7  8 <9 9 9 J';  < <= = = J'?  @ <A A A J'"C  D <E E E J'+G  H <I I I J'LL L L J<M M M J*N  O ,P P J?R  S ,T T J?V  W ,X X J?"Z  [ ,\ \ J?+^ ^ ^ J_ _ _ ` a a ,b b b  c d #e |`D( e f f  g h h  i lj j  k Pl l  m 4n nf$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"n  o p p #ls s  t |u )u Tv  v 4w w w JQ| }  ~   J  J J    4  J U  &         J%l   \u  J!" J  8      eve$scroll_dispatchv #&&SwFdmFdm uj  ltJ%T!$R  #j|s~s~o$$  $s%~o%%s&~|o&&l'$t'~'(s)~x)).zB1z|5$5#667788>?J!"@J?"DJQ#EJQFJQJJ<KJ<LJ<#MJ<NJ<OJ<U@<AJABJCJDJEGJGHJIJJVJJKPeve$scroll_dispatchveve$scroll_dispatchh, RDDstuvyzQ| |}}J T }0$ }$ Q J3| @3|S (&"&G&(J&,} $ J==  J&GlS8 x3=:3|Ja=  ,PL  M MU| & D &* }H$      5 p(6]7 7<9y 9:`y <3 y <>  ? ?B} $D DH $SCRATCH$   <&(T  $   L8|R0d} $    hQ , ,(T ,} $ J  $A$  $}      4,f d f f (h Ti  i j  k l (o Tp  p q  r s (v Tw  w x  y z (} T~  ~    ( T      @  0       &  \ 8  }$  ( T  4 &   =    = 3  \  8            G 4 & t 3  =    =         3  \ p L 3 3    L 0  }Q$      4  L  ( T     |(  T   d &  S  4 &     =     = 3  \   8         4     ! ! # 0% & }z$( ( / @41 & 1 2 }2$ 3 4 }R$8 8 = STRING HQ J3|&((T   # 4$ %%J &$Q( () /112233=4145 8l(:T; ;T><??=L@@  ABlFF GJJJ=LLJO8QR}A$ ST} $X X_ , l6 }{$7{$DN $}@$ !eve_set_clipboardeve_set_clipboard;D\ (]   ,(]   P P8   T )T 4           $l%6 &}$)7$)DN)) *$+}@$, ,3eve_set_clipboardeve_set_noclipboard;XDWJXJ^l (Rr LsuJ% vvUxYy yz|} LJ% UY 3|&=&d[P c[P e[P f[P g[P h[P i[P Q Q, ",T|   p  HZB$ NOTES026.A/b [NOTES.TEMPKIT]NOTES$WRZE$F_.!5?\-xeION;1PTAR/@ZW'$: T5T¿ 1ᚄEc86ANVgH7 P hɤnMfHuSQW5A*Va5ZGLf2^uK.<7JF~z~Y2 }Md5.hQU8%mJ̻<7Y|䶣xN=X-8w7h;&gLIܮ1`ejb&*K*3젔:1]u癢DrDl{z-SY æ8Q(x/ywTe>}ҊfON~/gK_Mlyy/~,PWj[-Yђ=pnu:L+ss ż@aym2dϱmJhmF$Y&Oۖ>*򱝋gbKEp0 ~ezoCJ[YdvS)F(gwrfC~$%ʫ̍v뚈tң[DblӚ4T zm5P]^Rԯ>׬< ]D:S.Fn LHW"c3"./\|AͷIj/鬗^DIwM#T.c3`)aPݨci5~VV ۶)%\m7YYZ14=Lo' g[ 4oze]ϧl dusN[;/Dt[.=ku^Vs䙍}j:7` 6G8r&c_+ %򌉡KvLV H3?iM@"_:Ɩc'>'42/P(FM֜a|!i^7fh5w uGӺ#%pSN3|R Bu7fa.1[#sm^Fͭ\omEB<+-g4vD =D<%^:?Uy-BL5ȅOpVFJPF>zLY smD{p:F]Ɠ9s mc+W_x9R.ќcR$b:T[j2`oYk@?:-Eg/%ǬF_`?{IF,2c_bT=C`,j{;#Y~'Lĩ2/Vmka)n!{8g`;VP+!,G?.4>[U 22GN g?Q4ZK^ #&= ;""psIXE&ͮnK\Z.a/P @o.P^Y1xZB7^#uz-Rr6* ` }_8  Xh5"%r1sEMlec ݻYUX 7۱* 80e# bF _eQ WkyE[hܶV-(!&@uB}:\m!~U?9T #1 ; o4d{JY.IIǽ72ZH>XI3ҧNنA1oW )|IX1)v541/1廮VJ+y$}p8G}ꏚL+'!F@[)"\ .g gɸv3  h6:t2Sq$s9STFU,| &փd$Mp5P⨏E*ҡkV&?3&{>hHxO6JS˯5'{GwFel~_D=nTyYiy`b+];,~D3BxX-)=釦w~[vgܾ6^Ķ7%Rgc7F[@gv'kO"&/l1Oo Xi1(1Yz=ov9R]X90d~<'EXqf7 @62m!w[hzXZ=3qs,$ 6@^5OE獔UV*U*`*r{J.[W1eMzx;l FxL^d@'q96Wk6VKњ$;`) eqIg $)%S(,|Be'kORoEΫ]`i1CBG ysAR΃j68T^@S90bVllj]*?˂"$9zgp;S=Im;1EOrJ39kF,ݾ\n|,1zvhc0Fg5#()uv+좱7Oq2|7`2r= g htG B} Jo\Sh^IWJKBkU&*k!<gb@#+fhwy-c/IOX)W3 Ӧ%_Ǘ:kP+ׄY %zjw1L}r>( ?i"a9mvnĕ & 0Zyt#4ŽEJ8u3=G;BMv8'O$n+E`aS";[L. y\:{laN?1s" Pնǣ wE=֔bs0{}}R$5sg+܁%F%,k}w"v;͛Agā*R=0g< &@4٥`O䷪ޡ+=s`?X08!3gXTB9#%AKIɆd w$rvrI,ưQǼUEmkQ}AbN6(Ҫc&1 ; 4o)JB0qw5.Oii:d~-A;Pa?[a:~HKMQ7%T@p41,3@gj]#*a0 ct։ÁUΈbqCl$o辑qI.Jn "Sw'jA*s* cvՐ_ mw.C>mVHebS?YY)v+[ۦ9.\S7Nȡw$m>^h/W> 3˛EiElvYC4)J1fCQG7Iכ*տ%TONn B'Alm[(1d~!e;ϔQ-GJ?Zj, |hW'vrhnZ 濒kmnvEE5=nA |cGdpb kZIkoNs|i i?$^} qs(גiZ|5 zs?[eV̸7Bt]moA7\(nz9 {轒{eO/#GU^~hf:"RG6νsgaN sq|N3~A qsl$m\3Pvw65rgP V vG$390U \rGqrb' uLJnZ2Be4IuV[k'nGb(6zGm$X.|КEl+@}.l:l )-7٭ I:W-ϲzr6Kl֜'6,^iP. kH,.[<CznKnؼqɥ$ψK}wl?@STN"Q|&5=b[рc)p(PlP#؛UnT)8dHӍnt9+aK^3eL%b\6}YoOTn\͍RdEFrn9TE\2*N[ҡ+` FG5V)d)? Ekmαϋ3WGI͜`i-a.i]kQkp95j4 1!h3ldsuV5He)!D<ܥTuGqEqz8 '\ϞKU!c[OiX:_ })HPpwdT~&+xQ}ȚHh TY9YU}cWrU kBxˆʒ7lhѻa@.-d+u]c1$dʆ@I.]Q^WZs()B[ytkZ,t]IL- dKogDΙOKIe(w "H}hBP8 WX} M0Vt9!!Mn!sUm:ڀxe6Xxf>5Tk;c-A_Ფ+N 3cKJ$/Pƨ0.9g2feq7Jpb-%Ԯ|g0(.+HvK>+^b",+_;h[-pْ Kn6a* ͻ/y_YjeϥTS@6MVEM/(lUvT7~p.w.WN-En]{B 7s/uv&vV^+EPWX_>>^Swz.;nImAu ABs6a#VGx>>-[BY%0s[m^/{ jg` ɯi p"mplx _K]m'R (:4$s- ޓEPVcESw4pp, w!׵~Ɣ͙9#|^mM$l: e+0[2k@3QvWGưǸ:AtHqx42Ə,t<쁇Y,CSm6SkX?UNv/X;5 2 -m+ū smDx!eEW^x}U]);i6nw,rz[ ΁|JNz!%rȃ){.!0H1ܲ<EXl}g}_5Uvw'Ky6JP*_ mD]1sXvGB7b)9Zr‡#}2'^Xk%<Da\O\H{>,id}Ef( &Q^>~V?\h-*Cy k;$gWlFcы& L-0YfD Gp jaSi\*1.fY&lCØ3'|* gzpVlsVI}e 58Wϥn`jlo$e5n#URwU #==U}>]y-biNul{瓤Xӟp=y wøX(F?hp9 G(J0@ ˪JeA PnQe[,M@E}\m OCZA0UyT'3a9[/j^8cqSR Ajzk;Ng: 6"u"p]{(ҒXGS1[v  3@+y*mJq}`4-=\=pKa3 ǘ:]`(7IBLc LZ; oȼeϩ5lv{Z @8Z&%+ǟN)i]Bp6H=Q_gayG%^Eԭy]ktS] /cnlY0?n_ a=i)#O{;R/vZULճ$FILE = F$SEARCH("''P1';*")$ IF NOTES$FILE .NK0$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ti"  Z2  ZZZwS = DZZS = Z=&J &K &L   &b&dw s  J% 3|&& $U $   J% ,= = =* "#,T|p0x ### $$$ %l&Z&(Z(*Z*w*S* +x/Z/1Z123&Pn3w3-3 408Z68 :x;Z;= =L@A&P2A?A B8FZF2FDF HIZIKZKMZMwMSM NxRZRTZTUV&PnVwVPV WX[Z[\]&Pw]Y] _bc&P2cac dphZhjZjkl&PnlwlflrtYu uv~vwidgetclosure reason_codeP8(T =      8   H(T & S 3|=*3&,3Y 8   =( T d& S <3|&     Lh}$T$} L}$(p D (T (Jf \m,Jf $JfJfTJf$}|{f#gEVE$WIDGETS_MOTIFeve_widgets_motifEVE_ICONEVE_ICON_32X32EVE_ICON_32X32 EVE_MENU_BARP #&##(fg(,fg,0 0123JB5 5< SELECT_POPUPNO_SELECT_POPUP`<5 ,   D4 J5 6 6 9 9 ? T,    8DHEE&hxEEEE F@GG&hxGGGGNhP ,}b$ 7ȡ$7;$  }$ (T ,&   }ې$  p,P ,}b$ 7ȡ$73$  }$ (T ,&   1}ې$  (VVJWZ0[[J [ \(]]J"]_`S` `aa bcceeJffl@R,qrsvuvxyz z}3|}&x& ,=*  ,& T=*T" 8  & =*T  8 ,3|8  =*33S ,T  83S DT" ,3|83|S3|SA`( 8,8 tW @R,)*+.-.012 253|577&899& :,;=*< < =>>& ?T@=*ATB" BC8E E FG=*LTM" MO O<PPQ QR RT=uV3VVSW WX:Z Z[3|[[\[8[ \]8 _h`3``Sa ab:d d ef8j jp(ttJux0yyJ y z({{J"{}}~~J@R, !"%$%'() )/3|/0T0  1@22P3 34: 6P7T7" 8899P: :;:@=uATA  BC3CCSD DE EH3HHSHH<I=vJ8K K LN3NNSNN<O=vP8Q Q R ST3TTSU UV V WY Yt[3[[S[[<\:]=u^ ^ _ `a:b=ud dlg3ggSgg<h:i=uj j ko3ooSoo<p:q=ur r st3tt\u u$v=vw8|W ~ ~(d P 8R\ Q   J     Q   J     3|    @         @ $  # A O " #A      ! ! $  % &#& h* + =K/ &1 1 ,2 } $3 4 4 6 3k$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"6 7 8 J9 =: ; =< =  > X? ? @ J@ A WB JD F I  R V  V W & W Z  Z ,[ [ & [ X^  ^ $_ ` = a f * + j  j k s      s w +x 8x x y (| T}  }   =K 3|P ( T 8 0 &      8  3      =   ( T   I 4 }:$     4  } $   3   J      =K     = = (     U     U   STRINGSTRING(]  & S 3|=*3 ,&,8 =@HR,3|(] d(Q}z\ (] d(Q}z &0=3 &0=3 (6 T  ^6   6   =Y dX8 @ 3|&  = MARKERMARKERA @A ,   ,@R,?@ADCDFGH HK3|KN NO ORR&S`TT&UU&AUVW=* Y,Z=*[3|[^3^^S_ _`:cd dLf f(g h h ij  lm p3p3ppq  s Es v vwx xzz&(Tz { }~81  =  tpu$main_windowactivateCallback helpCallback`l4&H,$|D|8 t ,X!EVE$$WIDGET_GLOBAL_PENDING_DELETE(OEVE$$WIDGET_BUFFER_MODIFIABLE$EVE$$X_AMBIGUOUS_INPUT_FILE$EVE$$WIDGET_EXTMENU_DELETE$EVE$$WIDGET_EXTMENU_REMOVE$EVE$GET_FIXED_STATUS_LINE$EVE$SET_FIXED_STATUS_LINE$LEVE_SET_FIND_NOWHITESPACE eEVE$$WIDGET_AT_EVE_FILE KEVE_SET_FIND_WHITESPACE EVE$POSITION_IN_MIDDLE EVE$X_GET_WILD_ACTIVE&EVE_RESTORE_SENTENCE EVE$$WIDGET_INCLUDEEVE$SHOW_FIRST_LINEEVE$GET_STATUS_LINEEVE$SET_STATUS_LINEEVE$X_UNMODIFIABLEEVE_START_OF_LINEEVE$X_MODIFIABLEEVE$X_OVERSTRIKE'EVE_RESTORE_LINE>EVE_CENTER_LINEEVE_END_OF_LINE?EVE_FILL_RANGE EVE$X_REVERSE EVE_SAVE_FILE: EVE_PAGINATE EVE__AT_FILE EVE_REPLACE EVE_RESTORE" EVE_PASTE(EVE$$X_MENUBAR_ALREADY_MANAGED$WEVE$$WIDGET_GLOBAL_CLIPBOARD$ZEVE$$WIDGET_GLOBAL_BOX_PAD$EVE$DIRECTION_STATUS_FIELD$fEVE$$WIDGET_SAVE_EXTENDED$EVE$$HELP_WIDGET_UNMAPPED EVE$$WIDGET_EXTMENU_ADD EVE$MODE_STATUS_FIELD EVE$BUFFER_NAME_FIELD EVE$$X_PREFS_MODIFIED EVE$MAP_IF_NOT_MAPPED=EVE_CAPITALIZE_WORDiEVE$$WIDGET_EXTEND<EVE_UPPERCASE_WORD;EVE_LOWERCASE_WORD.EVE_WILDCARD_FIND,EVE_FIND_SELECTED EVE_OPEN_SELECTED%EVE_RESTORE_WORDEVE$IS_WILDCARD EVE$X_FORWARDEVE$$MOD,*EVE_FIND(EVE$$X_BUFFER_CHANGE_JOURNALINGpEVE$$WIDGET_REALLYQUIT_DIALOG ]EVE$$WIDGET_SCROLL_OFFEVE$$X_USER_MAIN_BUFEVE_SET_SCROLL_OFF(EVE$DCL_SINGLE_INPUT_FILE_LOGIC EVE$DCL_START_FILE_LOGIC EVE$DCL_INPUT_FILE_LOGIC EVE$DCL_FILE_MODS_LOGIC EVE$DCL_JRNL_FILE_LOGICEVE$DCL_INIT_FILE_LOGIC$EVE$$X_DCL_START_FILE_PGM EVE_BOTTOM,q"EVE$$WIDGET_WRITEFILEPROMPT_CANCEL,9"EVE$$WIDGET_SET_PARA_INDENT_CANCEL(y EVE$$WIDGET_SAVE_EXTENDED_CANCEL(EVE$$WIDGET_SAVE_FILE_AS_CANCEL(IEVE$$WIDGET_SPLIT_WINDOW_CANCEL(|EVE$$WIDGET_AT_EVE_FILE_CANCEL(5EVE$$WIDGET_SET_MARGINS_CANCEL( EVE$$WIDGET_OPENBUFFER_CANCEL$EVE$$WIDGET_REPLACE_EACH_ALL$DEVE$$WIDGET_SET_WIDTH_CANCEL$EVE$$WIDGET_REPLACE_CANCEL$[EVE$$WIDGET_GLOBAL_CANCEL$vEVE$$WIDGET_EXTEND_CANCEL$SEVE$$WIDGET_BUFFER_CANCEL EVE$$WIDGET_REPLACE_ALL EVE$$WIDGET_NEW_CANCELEVE$EDT_DELETE_EOL!EVE_SELECT_ALLgEVE_EXTEND_ALLEVE$NULL( EVE$$WIDGET_REPLACE_GO_EACH_NO$EVE$$WIDGET_REPLACE_EACH_NO sEVE$$WIDGET_WRITEBUF_NOLEVE$$WIDGET_GOTO,"EVE$$WIDGET_INCLUDE_FILE_SELECTION(EVE$$WIDGET_OPEN_FILE_SELECTION(EVE$RESTORE_PRIMARY_SELECTION$EVE$$X_SHOW_WINDOW_CAPTION$EVE$$X_SYS_WINDOW_CAPTION \EVE$$WIDGET_SCROLL_ON EVE$DECLARE_INTENTION )EVE_RESTORE_SELECTIONEVE$MOVE_BY_SCREENEVE$X_BUF_STR_MAINEVE$$JOURNAL_OPENEVE_SET_SCROLL_ONj EVE_LEARNEVE_OPEN( EVE$$X_EXTRA_FIELD_FORMAT_LENGTH$EVE$$X_CHOICES_COLUMN_WIDTH$VEVE$$WIDGET_GLOBAL_SEARCH$^EVE$$WIDGET_SCROLL_SMOOTH EVE$MAIN_WINDOW_LENGTH AEVE$$WIDGET_SET_WIDTH EVE$RESET_FILE_SEARCH EVE_SET_SCROLL_SMOOTH@EVE_FILL_PARAGRAPHEVE$$FILE_SEARCH EVE_SET_WIDTH EVE_REFRESH(EVE$$WIDGET_REPLACE_GO_EACH_OK(7EVE$$WIDGET_SET_PARA_INDENT_OK(oEVE$$WIDGET_WRITEDELPROMPT_OK$wEVE$$WIDGET_SAVE_EXTENDED_OK$EVE$$WIDGET_SAVE_FILE_AS_OK$GEVE$$WIDGET_SPLIT_WINDOW_OK$EVE$$WIDGET_REPLACE_EACH_OK$zEVE$$WIDGET_AT_EVE_FILE_OK$3EVE$$WIDGET_SET_MARGINS_OK$ EVE$$WIDGET_OPENBUFFER_OK BEVE$$WIDGET_SET_WIDTH_OK EVE$$WIDGET_REPLACE_OK tEVE$$WIDGET_EXTEND_OK REVE$$WIDGET_BUFFER_OK+EVE$$WIDGET_FIND_OK}EVE$$WIDGET_MARK_OK~EVE$$WIDGET_GOTO_OKlEVE$$WIDGET_ATTR_OKEVE$$WIDGET_NEW_OKEVE$$WIDGET_MARKpEVE$$WIDGET_EXTEND_MENU(YEVE$$WIDGET_GLOBAL_BOX_SELECT(EVE$$WIDGET_REPLACE_EACH_QUIT(EVE$$WIDGET_REPLACE_EACH_LAST$6EVE$$WIDGET_SET_PARA_INDENT$EVE$X_BOTTOM_MARGIN_ADJUST$EVE$$X_EXTRA_FIELD_FORMAT cEVE$$WIDGET_TAB_MOVEMENT EVE$WINDOWS_MODULE_IDENT EVE$X_MAX_SCROLL_OFFSET EVE$WINDOWS_MODULE_INIT EVE$X_TOP_MARGIN_ADJUST nEVE$$WIDGET_ON_CONTEXT dEVE$$WIDGET_TAB_INSERT EVE$FILE_MODULE_IDENT EVE$GET_SCREEN_HEIGHTEVE$FILE_MODULE_INITEVE$$X_OUTPUT_COUNTEVE$$X_INPUT_COUNTEVE_STORE_TEXT- EVE_FIND_NEXT EVE$X_INSERT EVE_SELECT EVE_RESETEVE_QUITEVE_EXITEVE_GET\$EVE_CUT$EVE$$X_PZ$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TP""RE_COMMAND_WINDOW EVE$ARG1_ENLARGE_WINDOW EVE$GOTO_COMMAND_WINDOW EVE$ARG1_SHRINK_WINDOW EVE$ARG1_SPLIT_WINDOW EVE$GET_MAPPED_WINDOWEVE_PREVIOUS_WINDOWEVE$ENLARGE_WINDOWEVE_ENLARGE_WINDOWEVE$DELETE_WINDOWEVE$BOTTOM_WINDOWFEVE_DELETE_WINDOWEVE_SHRINK_WINDOWEVE_OTHER_WINDOWEVE_SPLIT_WINDOWEVE$MAIN_WINDOWEVE_NEXT_WINDOWEVE$TOP_WINDOWLEVE_NEW$NEVE$$WIDGET_BUFFER_WORD_WRAP EVE$X_SHOW_BUFFERS_POPUP _EVE$$WIDGET_SCROLL_JUMP EVE$$FILE_SEARCH_LOOPEVE$$OPEN_WINDOW_GAPEVE_SET_SCROLL_JUMPEVE$UNMAP_HELP EVE$MAP_HELP EVE$X_JUMPEVE_HELP0EVE_TOP,!EVE$$WIDGET_EXTMENU_LIST_COMMANDS(EVE$$WIDGET_EXTMENU_LIST_POPUPS$EVE$UPDATE_ALL_STATUS_LINES rEVE$$WIDGET_WRITEBUF_YES EVE$UPDATE_STATUS_LINES UEVE$$WIDGET_GLOBAL_TABS 2EVE$$WIDGET_SET_MARGINS EVE$$SHOW_WINDOW_STATUS EVE$DCL_FILE_QUALIFIERS bEVE$$WIDGET_TAB_SPACES EVE$$UNMAP_ALL_WINDOWS EVE$$SYS_WINDOW_STATUS EVE_SET_SCROLL_MARGINS EVE$GET_STATUS_FIELDS0EVE_SET_WILDCARD_VMSEVE$SET_ALL_WINDOWS/EVE_SHOW_WILDCARDSEVE$REMAP_WINDOWSEVE_SAVE_FILE_ASEEVE_SHOW_BUFFERSEVE$MAP_CHOICEShEVE_EXTEND_THISJEVE_TWO_WINDOWS` EVE$X_UNITS$EVE$$WIDGET_EXTMENU_ENTER aEVE$$WIDGET_BOUND_CURSOR EVE$$X_RECOVER_QUALIFIER TEVE$$WIDGET_GLOBAL_ATTR `EVE$$WIDGET_FREE_CURSOR MEVE$$WIDGET_BUFFER_ATTR EVE$CREATE_MAIN_BUFFER mEVE$$WIDGET_CLEAR_ATTR EVE$HELP_PROMPT_BUFFER (EVE_RESTORE_CHARACTEREVE_PREVIOUS_BUFFEREVE_RECOVER_BUFFEREVE$X_MAIN_BUFFEREVE$X_TEMP_BUFFEREVE$CHOICE_BUFFERkEVE$$WIDGET_ATTREVE$$EXIT_RULERL EVE_BUFFER,8!EVE$$WIDGET_SET_PARA_INDENT_APPLY(xEVE$$WIDGET_SAVE_EXTENDED_APPLY(EVE$$WIDGET_SAVE_FILE_AS_APPLY(HEVE$$WIDGET_SPLIT_WINDOW_APPLY({EVE$$WIDGET_AT_EVE_FILE_APPLY(4EVE$$WIDGET_SET_MARGINS_APPLY$ EVE$$WIDGET_OPENBUFFER_APPLY$PEVE$$WIDGET_BUFFER_READONLY$CEVE$$WIDGET_SET_WIDTH_APPLY$EVE$$SHIFT_WINDOW_BOUNDARY$EVE$TEST_DEFAULT_DIRECTORY$EVE$$X_FIXED_STATUS_ARRAY uEVE$$WIDGET_EXTEND_APPLY QEVE$$WIDGET_BUFFER_APPLY EVE$$WIDGET_NEW_APPLY #EVE_COPY1EVE_SET_WILDCARD_ULTRIX&,&x&&`''(( ) . 0. . .00 181`12H2d22d3445(66X778 p9!:";#;$<%8<&p>'@(B)\E*F+LH,I-DM.M/O0X1 Y2Y3X\4\5]6^7`_8_9<`:l`;`<b=d>f?i@jAxnBoCpDpEpFDqGDDIXJJ0PxP0STT[,[ ]|]^``̮Hhij jm mmq4lgYh$ hjno4y&hz&Xz| |$}}$~ ~ NEW_DIALOG.NEW_TEXT,n}$4T8R(vv[ @-TB   [   X&  8}$U       (L LLPk[P $nl}$p[P pnl &lZ }$ 4hR@o&pqrsxu&vwxz&{3|{ L& Y = ( T L& Y = l \ && Y =      &(T D=Q  0(T =&! <Q ,} $ J  =Q   (=      =(T 0Q     (n &D&X ( !OPENBUFFER_DIALOG.OPENBUFFER_TEXT,n}$(] f#g&Z&# 0JZihINCLUDE_FILE_SELECTIONk[P $n}$p[P pn &Z }$ , 4    (أ 5    $n &\&X $}$ 5  %SAVE_FILE_AS_DIALOG.SAVE_FILE_AS_TEXT,̢"n#}$) $D ,d  ( T   m, 4/ X  @#n(&)&X)- -.}$/3&4&X46 6$7  89 >REPLACE_DIALOG.REPLACE_OLD_TEXTREPLACE_DIALOG.REPLACE_NEW_TEXT,<@nA}$E ML&`N&ZNPQ}$ RS}$[REPLACE_DIALOG.REPLACE_ALLT`RP`X`}+$ a bcfe fgJh l`RPqXq}+$ r stwv wxJy }$`RP3E $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"3X}+$   J  `RPX}+$   J  `RPX}+$   J  ``RPX}+$   n]= Y T  Y" Y   t`RPX}+$   nW U Ț`R<C D  E F G L I J  K L O  O $P }آ$Q Q T 3|T V W X X [ T\  \ D^ ^ ] ] ^  _ <a a ` ` a  c  d Ie f f l $$ &    $    $Ԙ %    4~ ~,}$    3|\ 83|&" (&"    d3=3|Ja= =     Lt O ,}$ ""#$% %() )*3|**\+ +8,3|,&", -(..&".2O 24 456 6: :d;3;<=>3|>Ja?=B3BBSC C D GH H IL LR4$9 9,:}$;< <??@AB BEFG GJK KL3|LL\M M8N3|N&"N O(PP&"PT TV VWX X\ \d]3]^=_3|_Ja`=d e= f gh h im ms` ,}$    3|\ 83|&" (&" L&(T  1 28   d3=3|Ja= =     (q r ]r  r ,s }$t u u x y z z ~ &$ r    # r    0̎RdY(T8 JY(T8 JP  ! !$%& &))* *, ,p- -O/$ /0 0 12 2 4(O6$ 67 7;; <<J@ ADDJQ n nQ L&&X D&&X $ } $Q . 8   *'WILDCARD_FIND_DIALOG.WILDCARD_FIND_TEXTFIND_DIALOG.FIND_TEXTD(&&3| L& Y =  d && Y = \( T D& Y =       & =  $  \(T &&\ ,}ҳ$ Q (T  x!&!" ",#}ҳ$$% %''Q'( +*++2P }p$0LRdNYN(OTO8O PQQJST[VYV(WTW8W XYYJ[]P^ ^_` `bcd dggh hk kpl lOn$ no o pq q s(Ou$ uv vyy zzJ} ~ R\&  &  3|= 7S$ PP7{$ PP7#$    L7+$"p  P7$ 7$ 7$    8 7$"S P7 $"! P7$" P7;$  7C$     hR X j    l    473$  7;$ 7C$  7K$  7S$  7[$ 7c$ 7k$ 7s$ 7{$ 7$ 7$ 7$ 7$  7$  !7$! "7$" #7$# $7$$ %%='- !9 !AS !9 !AS !9 !AS !9 !AS\|@ 8 J }$ VMS\*%]9$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"D\\\\]\\\\\\\\\\\\\\\\\\\\~\\\w<>[\:.doxanslupf^+\\\\\\\{@ ; M }$ ULTRIX\\.\^$[]+*\\\\\\\\\\\\\\\\\\^\\\\\\\\\\\\\\\\\\\\\\\\\\\\\({(] e7$&JZ7$&IJZ  &" Q & J*   &F Q & J*  i SET_MARGINS_DIALOG%SET_MARGINS_DIALOG.SET_MARGINS_LLABEL%SET_MARGINS_DIALOG.SET_MARGINS_RLABEL%SET_MARGINS_DIALOG.SET_MARGINS_L_TEXT%SET_MARGINS_DIALOG.SET_MARGINS_R_TEXT$x n 4 \dx & &X  &" &X" # # 8# $ % }X$& ) ) 8) * +  . . 8. / 0  5 %SET_MARGINS_DIALOG.SET_MARGINS_L_TEXT%SET_MARGINS_DIALOG.SET_MARGINS_R_TEXT,w7 n8 }X$> Lv( ]   e     H     &"w  Q  &I J*  i SET_PARA_INDENT_DIALOG0+SET_PARA_INDENT_DIALOG.SET_PARA_INDENT_TEXT$u n 8 \u &T &X       +SET_PARA_INDENT_DIALOG.SET_PARA_INDENT_TEXT,t n }s$ $xtm Pt(=***+,- -012 25555  57 78 8< <((=T> >@BBCCxD EE=F8OH H I lKK LlM MP QQ=R8OT T U Y Y^ } ?  B B &"B D &~E &XE G  G H pJ )J K z K M  M N  O sP P XS  S (jT T z U  ] "BUFFER_DIALOG.BUFFER_SET_TABS_TEXT5BUFFER_DIALOG.BUFFER_TABS_AT_EVERY.BUFFER_SET_TABS_AT0  "BUFFER_DIALOG.BUF_LEFT_MARGIN_TEXT0#BUFFER_DIALOG.BUF_RIGHT_MARGIN_TEXT0%BUFFER_DIALOG.BUFFER_PARA_INDENT_TEXT0$PP_ na Qg (Pk nm  n n &\o o lp  r r 8t s t Jh u v v Jhz { { { &\| | 8} { ~  @   @  |   &/\ 8 |  @ ]  @   }$  N($]% %,' x,'(42+v,w.n/o 1 1p363q5B5r99&X9s<t&=u (?]@ @AeAQIHG&jIJZIQNML&3NJZNQSRQ&SJZSQXWV&XJZX^]\&^JZ^cba&icJZch gf&6hJZhm lk&mJZmQr qp&rJZrxsTx vu&xJZx~q~|{&E~JZ~r&JZ &JZ&JZ&&\JZ i GLOBAL_DIALOG(GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_ON)GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_OFF.GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_SMOOTH,GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_JUMP'GLOBAL_DIALOG.GLOBAL_CURSOR.FREE_CURSOR(GLOBAL_DIALOG.GLOBAL_CURSOR.BOUND_CURSOR(GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_INSERT(GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_SPACES*GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_MOVEMENTGLOBAL_DIALOG.GLOBAL_TABSGLOBAL_DIALOG.GLOBAL_CLIPBOARD#GLOBAL_DIALOG.GLOBAL_PENDING_DELETEGLOBAL_DIALOG.GLOBAL_SEARCHGLOBAL_DIALOG.GLOBAL_BOX_SELECTGLOBAL_DIALOG.GLOBAL_BOX_PADhE'&&x(&Z(*(+7#$+ , -7k$- 1GLOBAL_DIALOG.GLOBAL_TABSDZY&x[&Z[](^ _}$ ` a b}$fGLOBAL_DIALOG.GLOBAL_SEARCHC87&P9&Z9;< = >BGLOBAL_DIALOG.GLOBAL_CLIPBOARDCIH&PJ&ZJLM N O! S#GLOBAL_DIALOG.GLOBAL_PENDING_DELETElBml&Pn&Znpq r s wGLOBAL_DIALOG.GLOBAL_BOX_SELECTA~}&P&Z   GLOBAL_DIALOG.GLOBAL_BOX_PAD0AnvY 8vT   wY 8wT   nY 0n    s&X\ `sT (7k$  7#$ q6\ 0q   rB\ 0r   ! oY o#@d h7c$ D7$  7$ p \ p }$=&@&Z (GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_ON8=&@&Z )GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_OFF<&@&Z .GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_SMOOTH;&@&Z ,GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_JUMP8;&@&Z  'GLOBAL_DIALOG.GLOBAL_CURSOR.FREE_CURSOR:&@&Z  (GLOBAL_DIALOG.GLOBAL_CURSOR.BOUND_CURSOR9 &T &Z    7$  (GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_SPACES09&T&Z 7$  *GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_MOVEMENTt8&T&Z 7}$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"g"fc$ (GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_INSERT7( ]   e|  7$  &K JZ  i AT_EVE_FILE_DIALOG$AT_EVE_FILE_DIALOG.AT_EVE_FILE_LABEL6(X ]Y  Y Z e|Z _ 7$^ ] &M_ JZ_ a ie SAVE_EXTENDED_DIALOG(SAVE_EXTENDED_DIALOG.SAVE_EXTENDED_LABEL05nw nnw*5RH`  J  }$J JDs =3|&(  "E ""% %4&}B$'( ( )8*E "*, ,.=/=v0813|122282 384=5}B$67 7;;=<8=E  =>E  >A ADCBDD E4IKKN};$OJP QJS1SRS}1$W=X X^1() ]*  * + e|+ 0 7S$/ . &F0 JZ0 2 i6 EXTEND_DIALOGEXTEND_DIALOG.EXTEND_LABEL(0p}C} ~}`$ }h$ / CQ $ K$ rememberremember /(] e\ &,JZ &JZ&JZ  & J*   &yJ* ZZ /&l&!!&Z!"&#"$ $&&JZ''JZ))JZP,&,-J0 023 7T:7$9:JZ: <L?7$>?JZ?BiH ATTR_DIALOG&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_SECTION&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_COMMAND(ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_DONT_SAVEATTR_DIALOG.ATTR_SECTION_TEXTATTR_DIALOG.ATTR_COMMAND_TEXTATTR_DIALOG.ATTR_SUBFORM.CURRENT_ATTRSSW.CURRENT_ATTRS ATTR_DIALOGL *t([T\ \]n(_T` `a bcefhhi3|ikn"n ntsr&t&Ztv ~}&M&Z`&&Xt , P&&Z&&X \ z &+%  }³$ (T  (ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_DONT_SAVE&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_SECTIONATTR_DIALOG.ATTR_SECTION_TEXT&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_COMMANDATTR_DIALOG.ATTR_COMMAND_TEXT $LOCAL$INI$(% kD%&#JD%n&h&X }±$O  )WRITEDELPROMPT_DIALOG.WRITEDELPROMPT_TEXTp$ n p[P   k[P >j[P }X,#n}$4#{{ |" statedd#4 &3 " state the_buffer$"8 n9 u= "B &TC &XC D E F }$ G H w M EXTEND_DIALOG.EXTEND_TEXT,0"O nP }$V $"g nh xl !r &Ts &Xs t u v }$ w x t } 'SAVE_EXTENDED_DIALOG.SAVE_EXTENDED_TEXT,(! n }$ $  n {   &T &X  }$   #AT_EVE_FILE_DIALOG.AT_EVE_FILE_TEXT,$  n }$  n &T &X  }$   MARK_DIALOG.MARK_TEXTH n &T &X  }P$   GOTO_DIALOG.GOTO_TEXTH PI  I LK  K L L M N O O Q 4R PS # S T T T U V W X X ] ^ A_ _ ,` a }Q$b b f &<j  j k k m }$ n (q F q r }Y$y $z J#     ( ]   e|  7s$  &D JZ  i GOTO_DIALOGGOTO_DIALOG.GOTO_LABEL( ]   e|  7$  &D JZ  i MARK_DIALOGMARK_DIALOG.MARK_LABEL0P  s#A  }Q$   Y 0J  4  t5  $X( ]    i EXTEND_MENU_DIALOGP          Z   m  TEXTEND_MENU_DIALOG.EXTEND_SUBFORM2.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPSXEXTEND_MENU_DIALOG.EXTEND_SUBFORM3.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTS`          &   JZ &   JZ XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDS+EXTEND_MENU_DIALOG.EXTEND_MENU_COMMAND_TEXT)EXTEND_MENU_DIALOG.EXTEND_MENU_LABEL_TEXT & &X  &  &X   #$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"w:6Q  A  , }$   # :6Q$ 8$ A% % 8& ' ( JZ+ , ,. / / ,0 1  2 4 4 ; v= C +EXTEND_MENU_DIALOG.EXTEND_MENU_COMMAND_TEXT)EXTEND_MENU_DIALOG.EXTEND_MENU_LABEL_TEXT  XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDSn p q r r w w {   & JZ  & JZ XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDS+EXTEND_MENU_DIALOG.EXTEND_MENU_COMMAND_TEXT )EXTEND_MENU_DIALOG.EXTEND_MENU_LABEL_TEXT        ,     i      &f &Z            :   :   5 @ 7 $  5  ( 7*$  o   " 0DXl     t  `  L  8  $   p o m o {   @ Z   1 XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDSTEXTEND_MENU_DIALOG.EXTEND_SUBFORM2.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPS(EXTEND_MENU_DIALOG.EXTEND_MENU_SEPARATORselectnoselectfileeditformatsearchviewoptionEVE  ()XEXTEND_MENU_DIALOG.EXTEND_SUBFORM3.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTS       ! !"$0Lh $%  &'  () ~ *+ g ,l- P .P/ ; 041 & 23 8Z88: AXEXTEND_MENU_DIALOG.EXTEND_SUBFORM3.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTSTEXTEND_MENU_DIALOG.EXTEND_SUBFORM2.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPSselectnoselectfileeditformatsearchviewoption< @R,          3| ( V T   V # TT P J#    V V  kV  I ^ =V     J#  =V  V # 4 ( F       =V          lV   U    % typeendstart select_allcurrentstartboxendtype     I5 & , }:$    6       " k          &,   =*  =u @   }8$  =u   d e f f i i &,i i j =*l 3l l Sm m (o p }0$ r Ls t t (v w }0$ y z =v} }  D E F F I =*J 3J J SK K L }@$ M $N N N =Q Q X  + , - - 0 =*1 31 1 S2 2 3 }($ 4 $5 5 5 =8 8 < L@R, 3|      & `&&A=* ,=*3|3S :3 H! !(" # # $%8(3((\) )0**1*w**8,8.3../  0 G 0 11 2 23=6 6<L ,}$       3|  \  8 3| &"  (&"    d3=3|Ja =#$ $ %( (.h4 Z J [ ] ^ ` 7$` b "b 1b d 7$d e 7[$e g (h $i k l o p u &#cu sw |vx x z J |  | ~ ~    w  JQ( ]  (    JQ  7c$  J   7 $ Xb 7$ M[ integerintegerintegereve_set_scroll_oneve_set_scroll_on;eve_set_scroll_smootheve_set_scroll_smooth;$V03-01280B= ,=  P @R,U&&dS8 3| 3|X <  R|HJ%U HJ%U 3|&cx  , &L&K&J88 | J%=UJ%  = UX !&a "#&S$ $%%&3|&'=)& )..1 1226 6H7&SY8 8$9J'"<Dl (#dL  M$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T~"3|=(T    H STV& V[ [,\\]3|]_=aab1bc&hcldtddf g$ii jkp1kpoptpMp<kpmqqsvv| T&*" Buffer: !ASdTFGIIJ1K K4jLLM1tMMPPQ1R R4jSST1tTTW WX1Y Y4jZZ[1t[[aacS@EVE$GET_STATUS_FIELDS THE_LENGTH THE_FORMAT REMAINING THE_FIELDS THE_FIELD|&T  ("  "& x&(T ("  "  "P(]  (]  (# ll,, T      L   &%   & \& P &3  ` )*,,-3|-/&/11p2& 24 45=8:&3: ;=CtX_ ,` &#` a $b &#cb h h n \PT   }8  &X5  $ $%!((C]) )* *+7s$+J ,JaI..&hv.J.Jb/Jh: 02 C23Jc4J5C 6 68C 8 :C ; ;=C = BtCCDDG&,G5G H IJM MSMAINMAIND& Y  @\PT   }    \PT   }w!D 0R(| } ~    JQ  P   t u  s   t ( u T  ( J'u T u  H  }$      4|R0Pt|}~   }&#  PP& S8A (=#  tP# \& \ = =  tw }С$ Dwo= 8Z [  Z [  (# <<< (Z  [ Z [ Z [     Pl lmm n`|oIotooq qjrrtt{$<|R0Pt   }&#  PP& S8A (=#  tP# \& \ = =  tw }С$ Lxwo= pLRdPZ , XsA !Q% %O(w(@l)))l** +,w u-w-w.Q1 13}478A; ; < <<}>??AACtDDFGHAI IJ(M]N NDO}r$ PQ QU U8V}0$WX X[[&S\ \] ^_bb&cc&*wccgg&7g|ipij j4k}x$lm m noo(pTq q,r& s s ty&;yz&Xz {&h{ |&`| ~ ~t& & &E&\o|&dm&7sA sJQJ* J<  J  J? J? J?" J?+ J? A su   SPLIT WINDOW|R0Pt lS u@lu lww 8Q $lww   } &w H  w  8  u   w@lu lww$8RP 0|= DQ 0}%    }"# #%%(wZ9-\$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T*" () )- - .. / u00022&723=46 6,177 89;<}>@ @Fh\PT   } &%  w& P 8l p= \\PT   } wh& P l \Xmtow o r7H$q7;$r stuuw w8x}$y y zLO|! | }} $  }С$ \PT   } w  ou(T ,&   w D1 H 4 $}С$ d8tw 7H$7$ 1 8}q$  LO!  }($  }С$ HRP@ 81    <Q  (QQA 8=$   }!" "$$& '((* * +&b,&dw,,. .0 012!415561778 9$:}$; ; =1>>?&b@&dw@@B BD DEF!HIJKL M$N}$O ORRAS S,TVX=YY_h0| (}P$  }H$     P  ,}b$ &c&Sw(T 7$    " :6$ $l&( &( (8)}P$ *+ + -.  0027$2 6 6Du77R 7)7 8:(; T< <=) = H? d?? L@' @H@ d\A AB G H(LTM MO7 $O OQRS SU :6W WlY( fY[ [8\}H$ ]^ ^ `a  c0e7 $e k kDummR m)m np(q Tr rs) s Hu duu Lv' vHw d\x xy  4~ $}$ j d ,}ؠ$    %}ː$ %%dw(T   J hQ% <&a  Jl X w 0 w u! w! w " $ &=$ & & X' & ( ( ) + &=3+ , 2 @  R|P|V (W TW X ,X 8X Y Z =u[ 3[ [ S\ \ 4] &5x] ]  ^ L_ &5` 3|a &5wa a e 4g J% h UXk  k l n o  q  s (t Tt u ,u 8u v w =ux 3x x Sy y 4z &5xz z  { L| &5} 3|~ &5w~ ~  4 J%  UX       3|  O  P 5  #    =   3|  &5  =u &c  &S u  u     T ] , &^rG   &    &d  &L  &K  &J    &dt   &bv    @  $ s   8  $ s   J%F  :   3  S $u   < 3| &5t   U J% X    < &#    #  =#  &h     &G  8 t $     $ $   + / 1 2 # 3 5 J#5 6 J#8 J9 J: # > B D F J#F G J#I JbnJ JK #Q #R U#X eve$scroll_dispatchveve$scroll_dispatchh0Xr s t t z D$ 7$ 7$      8 }$    r   8 } $  0 }$   ܱ( T   & P   &* 7c$  &h 1 1n w    (L @k m              &h 1o w    &G  &* óW$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T "  $ 7$  P 7$ " 7$ "n   1t        H 1t     j      L $k m       % 7 $ 0: } $! ! % eve_set_scroll_oneve_set_scroll_on;* + %. 7$. 0:/ }$0 0 4 eve_set_scroll_oneve_set_scroll_off;H9 : J%= 7$= 0>> }$? ? C eve_set_scroll_smootheve_set_scroll_smooth;H I J%L 7#$L 0>M }#$N N V eve_set_scroll_smootheve_set_scroll_jump;ܫ| Dh}$ }$      *  *   Z  [ !\ #m#. $W &1 & '7$'1 *X *+ X ./01 2 3 K4 ) 77K$7 87c$8] 97k$9 ;+# ?^ A _ D ` E a F b IM oIvI2 O Oc P P/ Wd WX d [3 d [B\JQB^J"B(`T` abBhe hi e l3 e lnJ"p&#jpr r,sJBtJ u,vJBwJ(zTz { |J?"& df f 3 f  g g 3 g  vh mh 3 h  Gi =i 3 i j j 7$3 j k l l 3 l Dm m 3 m En |n 3 n Fo So 3 o Gp *p 3 p Hq q 3 q r s 4m s s 3 s  t u u 3 u  v w Qw 3 w x y !y 3 y z  z  3 z  { | | 3 | u u} } 3 } ~ l~ !3 ~ ! $ H$ ) )*? -3 3- 3G 345m 56G 78G (> T? ?A A B C E(J TK KM M N O QXX Z _gf] bvt` c im il moq#2qQstm5tAtum,uQvq8vAvwx%y\L%{TP%}PT%JX&B\':P Dz yt| {d~ }T Dp! p  m 7)$~7$1 pw1 o/bin/cp -p !AS !ASstringintegerintegerinteger COMMANDS $PROMPTS$MESSAGESSHOWreturn eve$$show_window_status $CHOICES$return eve$$sys_window_status $RECALL$LINE$ INSERT HERE $RESTORE$$RESTORE$CHAR$$RESTORE$WORD$$RESTORE$LINE$$RESTORE$SENT$$RESTORE$SELECTION$SHELLDCLSPELL$SPELL$ $SCRATCH$ $CAPTION$[EOB]HELPreturn eve$$sys_window_status $HELP$PROMPT$ BUFFER LISTreturn eve$$buffer_list_status $WPS$RULER$[End of ruler] TPU$JOURNAL:eve_next_bufferBuffer next_buffereve_set_buffer('read_only')write#set_buffer (set_buffer "read_only")eve_set_buffer('write') read-onlyset_buffer (set_buffer "write")eve_set_buffer('modifiable') unmodifiable$set_buffer (set_buffer "modifiable") ${EVEKEYPAD} EVE$KEYPADEVE EVE$KEYPADEDTNUMERICVT100WPSEDTWPSeve_set_keypad_eve_set_keypad_eve_set_file_backupeve_set_file_backup;eve_set_backup_control_string(''); eve_set_backup_control_string$(V03-0728 & m#&0# H& &!Y&V,8 $&*&VX&=&V YS8&*P8&V,8+8 &i88 m   &  jm&l x (}z$ MAIN ,  Ė4,  } 4  ""A# #%`() *+ ,(--.. 023 59B9=l:m:: ;=?@A AD DEF I+I8I JK&L(N}$O R RT}$UZ([}$\ b#c#nccd etg gdhi8i jHk l(m}$ nov vx|#24|} ~PO    $   t#2P&*P8   $ pP   YS8&*P8&V,8+8  get t `R<    t ,}$  7p$7$ 3|&m ,   &* O  ,  p1RP < l  &Қ$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ta"3 m "lO$ $8%}$& & '(( *+&G, ,. .lO0 081}$2 2 344 6P87$: H;< < >Am,ABm+B 8BAC C0D EF F HM N N OP  Q ,Q R R S  U (X YZ Zbbd djbuffer ((T     ( T      $A  d8RdRdHdtxr|s)"  )))'s()+ /3|/004:7$97$:;<= =@EG Gm GI IKjOO#OQRT T Y Y8\& \^ _f fLg7$h &i  jl l|p}{$r&r (s Tt ty& z4{& { | }\& m#  \&m#     H  s(T XtY $&* <(T   t @  }$  .tpu_journal .TPU$JOURNALrecover buffer Dw w y $y  ltR4l}$  $ 8  # $ ,X  ,l   3==&Go&P  4Y: =h (8    m l (    (    (    (j    (<      *%...?[{TH$   4,  }&9(J&@ LJJc& LJJc& (Jc& (Jc&:&/5  &@ 4 }$Xa ,}$DM  & (&*!#24!###% %& '4)}ʰ$*  +,--/ /0 455J66&*Y8 8l99< <=}Ȥ$ ABCCE EF JKKJLL&*YM MlNNQ QR}Ȥ$+WWW&8W+X8X Y\P]ddj/OUTPUT=filespec /READ_ONLY/OUTPUT=filespec/NOWRITE(y$ys&C tu x& y`| & 0J  #2 P&#2mlx#  4 J.tjlXw$}H$ +   hw2m 2@ 33R4}$ 4p 55(5u7o7 77R7}$: :<<>$>? ?E]Dv=& (6$ p&G = , u:& (6$ 3\ x1 ,18 , u8l`t& @;  ; h sl R\8 ;  6      ; H Q H A   }:$ ( }B$  ;  6      ;  #0 ( H ;  6    $ #  ( #   ;  6     ;  6    6 , }Ұ$        6  =* 3|      m  H   !  "  # 4$ }% & | ' s* ; + 2 &2 4  5 @6 6B$7 6 8 9 9 < F m F pJ #1]K K L "O $DX O O P Q Q  R xR T T U V lX X Z  [ [  \ \ L^ $ ^ _ _ l` ` a b Xc $c e  e ,f g $g l  l dn n o 6$q 6 r s s t u 6!$v 7 x x y By ={ { ,l| ^m| |  } $l~ 8m~ ~  = 6  =  x t H }$ 6      7$ 7$ ;%$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" 8 6       @ }B$ 6      m D #1]   " $DX   `  L      L $    l  P $   (  $   T }$ 6    H }!$ 7  6    ""./.eve eve_init.eve /dev/null~/ SYS$DISK:.EVEEVE$INITNLSYS$LOGIN:.EVE /asdf1/qwer2/ /asdf1/qwer2/@@ /asdf1/qwer2/ /asdf1/qwer2/4`dl( ,LtH$EVE$X_UPCASE_BUFNAM_IF_NONE$ZEVE$$X_CURRENT_ACTION_TYPE$EVE$$X_FOUND_FILTER_ACTIVE$EVE$X_WPS_PATTERN_SENTENCE$EVE$PATTERN_STARTPROCEDURE$oEVE$X_BUF_STR_RESTORE_LINE$EVE$$X_UPCASED_BUFFER_NAME$wEVE$$X_BUF_STR_SPELL_SAVE$EVE$$X_SAVED_COMMAND_LINE$iEVE$X_BUF_STR_RECALL_LINE$jEVE$X_BUF_STR_INSERT_HERE EVE$$REPAIR_COMMAND_LINE EVE$$X_SAVED_FOUND_RANGE EVE$PATTERN_ENDPROCEDURE EVE$$REMOVE_FOUND_RANGE 8EVE$X_BUF_STR_INIT_FILE EVE$PATTERN_WHITESPACE EVE$PATTERN_EMPTY_LINE EVE$ASSIGN_WHITESPACE EVE$$SET_COMMAND_LINE lEVE$X_BUF_STR_RESTORE ;EVE$X_BUF_STR_AT_FILEEVE$X_PARSED_DO_LINEEVE$$X_ARGUMENT_TYPEEVE$PATTERN_PROCNAME6EVE$X_EXECUTING_FILEEVE$$X_COMMAND_LINEEVE$$X_CHOICE_RANGEEVE$X_RESTORE_RANGEEVE$$X_PROMPT_RANGE$EVE$$GET_WRITE_FILEEVE$X_RESTORE_LINEEVE$$SELECT_CHOICEEVE$X_FAST_DELETEEVE$X_FOUND_RANGE=EVE$KT_WHITESPACE7EVE$EXECUTE_FILEEVE$X_WHITESPACEEVE_INCLUDE_FILE-EVE$$WRITE_FILE0EVE$BACKUP_FILEEVE_CHANGE_MODEEVE$X_TAB_MODE%EVE$WRITE_FILE EVE$ADD_CHOICE4EVE_WRITE_FILE EVE$TRIM_LINE EVE$X_DO_LINE] EVE$X_NOWRITE EVE_GET_FILE EVE$X_WRITE$nEVE$X_BUF_STR_RESTORE_WORD$EVE$X_ERASED_CHAR_FORWARD$EVE$X_ERASED_LINE_FORWARD$EVE$X_ERASED_WORD_FORWARD EVE$NOWRITE_STATUS_FIELD <EVE$$X_CURRENT_INIT_CMD EVE$OPEN_MULTI_SELECTED EVE$PATTERN_END_OF_WORD EVE$$X_ATTRS_MODIFIEDXEVE$X_BACKUP_COMMANDEVE$X_SHOWING_KEYPADEVE$PROCESS_COMMANDEVE$X_RESTORE_WORDEVE$OPEN_SELECTED(UEVE_SET_BACKUP_CONTROL_STRING$EVE$X_PROMPT_HIGHLIGHTING EVE$X_FOUND_HIGHLIGHTING EVE$$ADD_FINAL_STRINGREVE_SET_NOJOURNALING1EVE$X_BACKUP_STRINGEVE$X_HIGHLIGHTINGPEVE$SET_JOURNALINGNEVE_SET_JOURNALINGEVE$X_NODOCMSG+EVE$X_TRIMMINGk PASTE_BUFFER EVE_SET_KEYPAD_NUMERICEVE$X_OLD_HELP_TOPIC0EVE$X_NOT_ALPHABETIC$^EVE$$X_RIGHT_ACTION_PROGRAM$EVE$SET_DCL_START_FILE_PGM$ EVE$SET_DCL_INPUT_FILE_PGM$ EVE$$X_DCL_INPUT_FILE_PGM$ EVE$SET_DCL_FILE_MODS_PGM$EVE$SET_DCL_JRNL_FILE_PGM$EVE$SET_DCL_INIT_FILE_PGM EVE$$X_DCL_FILE_MODS_PGM EVE$$X_DCL_INIT_FILE_PGM EVE$$X_DCL_JRNL_FILE_PGM ?EVE$FILE_DECLARE_SYNONYMEVE$$PARSE_SYNONYMEVE$$SET_DCL_PGMd2EVE$PATTERN_TRIM QEVE_SET_NOJOURNALING_ALL EVE$X_FIND_DIACRITICAL FEVE_RECOVER_BUFFER_ALL MEVE_SET_JOURNALING_ALL JEVE$$GET_INFO_JOURNAL GEVE$X_BUF_STR_JOURNALuEVE$$X_BUF_STR_SPELLsEVE$X_BUF_STR_DCL EVE$X_NULL EVE_RECALL, EVE$X_ALLEVE$X_REPEAT_DOEVE_DO$EVE$CLEAR_SELECT_POSITION$EVE$$X_PROMPT_FOR_SECTION EVE$X_OLD_FIND_DIRECTION EVE$$X_ORIGINAL_POSITION EVE$$X_UPPERCASE_TOKEN zEVE$X_BUF_STR_CAPTIONEVE$X_TARGET_PATTERNEVE$$GET_TOKENEVE$KT_VERSION EVE$X_VERSION$#EVE$X_MAX_BUFFER_NAME_LENGTH EVE$$X_COMMAND_LENGTH yEVE$X_BUF_STR_SCRATCH>EVE$PARSER_DISPATCH`EVE$ARG1_SET_WIDTHDEVE$QUIT_DISPATCH EVE$EXIT_DISPATCH$EVE$$X_ADJUSTED_SELECT_MARK EVE$$X_ATTR_SAVE_CHECK EVE$$X_ATTR_EXIT_CHECKEVE$$X_SECTION_SAVE_OK$qEVE$X_BUF_STR_RESTORE_SELECT$pEVE$X_BUF_STR_RESTORE_SENT$}EVE$X_BUF_STR_HELP_PROMPT$~EVE$X_BUF_STR_BUFFER_LIST EVE$X_EVE_COMMAND_PROMPT EVE$$X_PARAGRAPH_INDENT EVE$PARSER_MODULE_IDENT EVE$$X_WORD_WRAP_INDENT EVE$$X_COMMAND_DEFAULT EVE$X_PRINTABLE_TARGET EVE$PARSER_MODULE_INIT EVE$$X_SECTION_DEFAULT EVE$CORE_MODULE_IDENTbEVE$ARG1_SHIFT_RIGHTEVE$CORE_MODULE_INITaEVE$ARG1_SHIFT_LEFTEVE$X_FIND_NO_EXACTEVE$X_REPEAT_COUNTEVE_SET_KEYPAD_EDTEVE$X_FIND_EXACTEVE$X_RULER_LIST EVE$$X_WS_PAT EVE$X_TARGET EVE$X_LASTK EVE$X_QUITEEVE$QUITEVE$EXIT$EVE$$ENTER_COMMAND_WINDOW EVE$$EXIT_COMMAND_WINDOW,gEVE$X_BUF_STR_SHOW5EVE$SAVE_FILE_AS1( EVE$GET_FILE1  EVE$$EXIT1 EVE$OPEN1EVE$NEW1$VEVE$X_LAST_SECTION_BACKUP )EVE$X_POST_STARTING_UP EVE$X_COMMAND_KEY_MAP TEVE_SET_NOFILE_BACKUPYEVE_SHOW_FILE_BACKUPEVE_SET_KEYPAD_VT100SEVE_SET_FILE_BACKUP|EVE$X_BUF_STR_HELP.EVE$X_FILE_BACKUP"EVE$$EXIT_LOOP(EVE$KT_TOPIC_EVE_LIST_OF_TOPICS(EVE$X_ALPHANUMERIC_CHARACTERS(EVE$X_WPS_SENTENCE_DELIMITERS$EVE$X_STANDARD_FUNCTION_KEYS$EVE$REPLACE_WORD_SEPARATORS$EVE$$ASSIGN_WORD_SEPARATORS$EVE$RESTORE_WORD_SEPARATORS EVE$READ_WORD_SEPARATORS EVE_GET_WILDCARDED_FILES EVE$$X_ACCUMULATE_ATTRS *EVE$X_GENERATE_BUFNAMES EVE$$X_TOKEN_SEPARATORS EVE$X_SYMBOL_CHARACTERS EVE$ADD_WORD_SEPARATORS EVE$$KT_WORD_SEPARATORS EVE$X_DIGIT_CHARACTERS fEVE$X_BUF_STR_MESSAGES dEVE$X_BUF_STR_COMMANDS EVE$$X_WORD_SEPARATORS EVE$EXPAND_TO_CHOICES WEVE$$X_BACKUP_PROCESS EVE$X_FILL_SEPARATORS hEVE$X_BUF_STR_CHOICES eEVE$X_BUF_STR_PROMPTS'EVE$DELETE_PROCESSESEVE$$INIT_VARIABLESEVE$DISPLAY_CHOICESEVE$X_REPEAT_TYPESEVE$$ENOUGH_TOKENSEVE$$DOUBLE_QUOTESEVE_SET_KEYPAD_WPSEVE$STRIP_CHOICESEVE$X_RULER_KEYSEVE$X_EDT_KEYSEVE$X_COMMANDS EVE$X_SPACES EVE$X_KEYS(EVE$X_SOURCE_FOR_DEFAULT_BUFFER$mEVE$X_BUF_STR_RESTORE_CHAR EVE$$X_BUF_STR_WPS_RULER EVE$$COMMAND_POST_FILTER xEVE$$X_SPELL_SAVE_BUFFER EVE$$REMOVE_POST_FILTER EVE$$COMMAND_PRE_FILTER rEVE$X_SELECTION_BUFFER EVE$CREATE_NEW_BUFFER {EVE$$X_CAPTION_BUFFERAEVE$$PREVIOUS_BUFFEREVE$DEFINE_INDICATOREVE$$X_RULER_BUFFEREVE$X_RESTORE_CHAR&EVE$$SET_RESPONDEREVE$X_BUFED_BUFFEREVE$CREATE_BUFFERvEVE$$SPELL_BUFFER9EVE$X_INIT_BUFFERCEVE$$NEXT_BUFFER_EVE$ARG1_BUFFEROEVE$FIND_BUFFER,EVE$TRIM_BUFFER:EVE$X_AT_BUFFER3EVE$INIT_BUFFERBEVE_NEXT_BUFFERtEVE$DCL_BUFFER@EVE_SET_BUFFERH EVE$RECOVERI EVE_RECOVER! EVE$$EXIT2$\EVE$$X_CURRENT_POST_ARRAY [EVE$$X_CURRENT_PRE_ARRAY EVE$X_OLD_HELP_FACILITY/EVE$$X_BUF_VER_ARRAYEVE$$X_DISPLAY_ARRAYEVE$$X_START_DO_KEYEVE$$X_ATTRS_ARRAYEVE$$X_STOP_DO_KEYEVE$$X_EXIT_ARRAYcEVE$$X_MARK_ARRAYLEVE$$FIX_RECOVERYdEVE$X_READ_ONLYEVE$$X_COMMAND_INDEX0EVE$$X_HELP_PREFIX8!!!," \" " " X###&'**p-$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TXr"-26:: <!<"@$H%K&hR'S(T,`-\b08c3g4h5Li7j=pn>xn?? ?A ADC CD EF}ؤ$H J+J8J KL lQQRQRRDS(jSU UV' XdZ Z\ \\^ ^c  pB80  (T $(A    ( T  P $    STRING FILE_NAME @dR(}$ t ,}$  7P888 0 k$ x7$7k$(  $T(    l    xY X+K+) 8 <&*}$  @  , }$    (= (    p=(R {|~~A  6& 0   `7P88 X4}$i$$ }$7$7$ & L    NEW_DIALOGl;  )T    :0@Rtxrzr ( ( T      R#  }$    }   }  }   ( CT    x     C  Jc J C  C   C  C        A L #  }$ J $ $   C  Jc J C    C    C    C        J  7s$ J  JaI  &hv J Jb Jh: &, 5  ! J$ $ & & , 5HR03|}(C]  = 5 =  C t  = 3 \ $:C7 h B=83Jcj o     !# #($ T$ %(&T& 'p(= *3*Jc+ , - - 46:7 7;= =H>@ @A BC E@F-FFGSJDI=J K L L M U  _1XR4Pyz z~ | ||}~~=*t ,}$  7$7$ 3|S $3| <83|8#  "< }ڰ$ ?=  =8  ##n7$    include file @-nh nos stw {kEVE$EXIT_DISPATCH-&  ,}$ ( T    41 D 6 +  statethe_file the_buffer,!  & "  the_buffer@+(R & )& /,8 ##& *&R# & ' ( (+*),$    ,./0 0O3$ 344662 8, 9 9: :; A< <t@TA7PBC88C D((ETF FGnMLM%   MOST7PUV88V W`ZBZ7 $ Zo^& ea& ij jOm$ mnnqq t tz the_buffer the_buffer the_bufferthe_buffer_namestate got_a_filethe_file the_bufferstatestatethe_file got_a_filethe_file the_bufferthe_buffer_na1$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"meeve$invalid_event (35914939))eve$unmanage_widget(eve$x_message_dialog)state8'Rx7P88 nJ@7P88 nJ@&(U,  \& )8& /,8 & *R#    T |7P88 (] ,1f#g!7#$ &JZih $ T7#$ l ! `7P88 n O$  lO! X7P88 n> &3  < &   & )& /,8 H & (&3q ,7P88 4!(("T# #$n,' . 4 the_buffer the_buffer the_buffer the_buffer the_bufferthe_buffer_namestateWRITEBUF_DIALOGthe_buffer_nameWRITEBUF_DIALOG.WRITEBUF_LABELthe_buffer_namestatestate the_buffer the_buffer the_buffer the_buffer the_buffer the_buffer the_buffer the_bufferp T U&:UW W X&X[ [$\ ] ^_7P_`88` ac cd efkT(l]m m,rf#gru&*u7$uzy&{JZ{~"~& j"& k(T nih$ &*7)   4&*}@$ NEEDFILENAME_DIALOG&NEEDFILENAME_DIALOG.NEEDFILENAME_LABEL!eve$$widget_needfilename_ok (!UL)%eve$$widget_needfilename_cancel (!UL) PHP }B$Q R R T T "V \0D W TX  Y @Z  [ ,\ \ ] ^ ^ b + b 0c }$d , e }$h i &:i k  k l p m p q  r s x y z  {  &^P  \ & #24    @ #24   m H #24   #24 O    D # j   , 7P  88 , ( ]   eR  &* 7$   & JZ  &* " & e i $  &* 7$  A L }$      %    -      J    . $LOCAL$INI$WRITEFILEPROMPT_DIALOG,WRITEFILEPROMPT_DIALOG.WRITEFILEPROMPT_LABEL+eve$$widget_writefileprompt_ok ('!AS', !UL)!" "%&`%''|(`()* *,+ +, ,.&`3. /|1}H$2 28EVE$$SET_RESPONDERhPR4J@J@J@& (] & &V 8&  $& 3 `J@   R4x/ 0 1 9 3 4 }$5 6 6 9 8 9 <  < = A  A B F t F ,G }$H I I L M N N Q 7PQ R 88R S 8S T 0X  Y k\ $\ ] x` 7$_ 7k$` a (b c d d h >i  i |j k m  m n  o 8p #24p  r t u v x  x {  { | } }    # #n   7$         #24   $   m \  L  8 }$    &  m5 K 8 lO  X           h & :Y   0 & Y 5      *  #24 "  & l    , }$ 7P  88  ( ]   e   " &  " &  i $ 4 7$         4 }$    6 (     $           t P +! 8! ! 8" }$# # $ % %  ( + <l, , .  .  / $1  1 4  4 5 5 8 : ; B +B K8B +C ) 8C D E F J YJ K K SK 8K L &*PL 8L M M &V,M 8M +N 8N O P Q Q W W ] ,` & c & f f l get file temp_buffer !AS [!UL]OPENBUFFER_DIALOG!eve$$widget_openbuffer_ok ('!AS')$eve$$widget_openbuffer_apply ('!AS')eve$invalid_event (35914765)eve$invalid_event (35914766)XR8    !   ! ' Mo' vP( 2 ( ) 8* - 3|- . =/ =*0 30 1 =3 E2   3 4 4 <5 5 =6 16  7 8 =9 =?  ( . D /  $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T92"  /   0 1       $ V    V   |L`R<abJ@cdhfgJ@hj&(Ujm. n n(qTr rs&:su uXv&vx x,z&*z{~ 0X   <V Y  L(Q}$h $  $} $ (W ] LJ@W J@#1#24"d!"Q( X$@l" l"X HW  BUFFER, INTEGERQ &Q S S T V V W J X JY J([  [ \ J ] $_ ` Jc c i o p q q t t %  u v v w x y y ~ H8   A  7P  88 <  i $   &* 7$        4    SAVE_FILE_AS_DIALOGpRD  J@     J@  3|    &(U     J@ ; 8 8  8 9 J(9 J9  7k$ J 9  9  = 9  ( : T : ; ;  ; : J(: 7s$J : : =: J@#3|#S##$$< &M= &q&so&'E '((< 8( )l*=+> < ,0-=.}$/112=4: 56=< $INIT$FILE$@FILE!   `   @O"     /EVE$PARSER_DISPATCH THE_COMMANDSTATUSH@@ AA BB CC DD EE FF GG uHH bNwritenowrite read-only read_only noread-only noread_only modifiable unmodifiable nomodifiable@R,YZ[^]^`b blf7$e7S$fghi im6nSp3|pq=*tbuwN xyz } ~ A  xA  @   A  &G :] ; D5 }$< = @j7 $  "  ((H 0JJc&*}C$ JJc&*}K$ Jc&*}S$ Jc&*}[$ 8}$  __ - set buffer writenowrite read_only read-only noread_only noread-only modifiable unmodifiable nomodifiable&&= $&!O $}$ &V0&* 0$C & &3   $ & O $}$ &V0&* 0@x~j ~ E {EVE$QUIT_DISPATCHpRDABJ@DEKHIJ@KM&NO>RS&(USTJ@V&VW YYZ&)[&/,[8[ \]  ^$_&3_a btd def6g1gRPh hi jkXo5o pq7Pqr88r s`z{iPJ@$ l7#$8J@ > h7P88 $> >J@REALLYQUIT_DIALOG\XR83|};$m  lG t lG f    `PH  ,  ds `tY $&*  *.tpu_journal *.TPU$JOURNALP Rx (T ,}x$"    "    3| 7$  0 7$ "$7$$J'"(J (* *(-.".3m 34 4l7G 8#2489#59:R:;1< <Pl=a >)x>>Qn>>> ?$l@ @@BBAC CE E FK#2K7$ $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"KKMN NPJ PR RT T[\\=]J_7;$_1_aPdc7$d73$d ePih7K$i73$i jPnm7$lln73$n o=upq=vrPvu7S$v73$v wPxP}|7;$}73$} ~PP7C$73$ PPU   6- 0K   1RK P5  1RP1RPA |1RP $& Dm H&P $}j$ &) 7$H" $}$ &% Oww8 $s{&\&V,X8,&3 &%Yw8 (C] 0d 8dC     &   H = }x$ &*}$L     JcJ C ! !#C # %C & &(C ( 0&:1 103&3J5=8 ,99}C$; ; <H== ??}x$@"@H .TPU$JOURNAL;;-1exit(`04&\HR07777&*7#$t% D&:P 7R(x|TU[W&*W}$X uYY[[]&]__`&Va ab&cdJleegdj&*j7X$kl m8o s&3s t(vCTw wx&Cyd{m {0|JC }(~JCr  }K$  }`$  /dev/nullNL:(R t ,}$ 7[$7$ O  `&V ,}h$  P  set journaling@(R OPRRTU:6Y&Y(ZT[ [\\bmbc ,ef&fiij&*jk1kRPl l(m noq&3q rXv&Gw wx&Gy yz {| }~:6lm 7$    }p$ D\xT&*}$ J&*}c$ ,x(R &h&V  J&3 (CT  JC }S$ H(R  t ,}$ 7[$7$ "%O %( ()&V *,+}h$, , -`/J0&*0}k$1 15 5<set nojournalingpm$}  . 1  7$1 })$7)$(eve_set_file_backupeve_set_file_backup;,xm$}  . & H& $}$ }1$71$( eve_set_file_backupeve_set_nofile_backup;XHh`  }}$1  "m"$#}$ $)7ے$(7$)*+, ,/1 0611 31 3,4}ے$56 6;";=}$1 C7$1 pA81 oALCACCIabeve_set_backup_control_string(''); eve_set_backup_control_stringdm (}$1 } 0(; T  ; (< T  < (# XX<<< ,  6; <  8PW, X}+$Y Y]p ,}$  ,}$ $ 8xK }$ <$(FFV03-009@HPI IJ3|J O(Y TZ Zp[P[\\& ]& S]8] ^ __&`a=*b3bb\c c`dTe eHg-ii~ jk8pQ Yq q r3|rs&t t&Su uv x x=y z3z& {,|=u}P~:  =3S 8(Cs$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TA"!& 3|&\ @3Jc3S8 3=u3 \ =  = ( T 8& S = = t8 move_rightP  Y 8 8P:   3Jc@\nPo op3ppSq qr:t=uu3uuvv8w3x x y3yJcz {{ O}  }~  3|- tB=&BG  BBJc3Jc P: &BG BBJc3Jc C&QJ& lR  th3|B=U= = " t XL3|B=U="$Y% %&}$ '(3() +t +,(,]- -..1=2 4=5-55 667 8 9B9=::;3;Jc<=P>:? @RPB B8E1lDEREG3GH12HH8I3IJ=KK L3LJcMs#NUOP R7 S=T U W> X Z7 cl,$& & ( ( * P+  + , . Dv  . / =1 1 2 ; 2 u3 E" 3 =4 5  5 (6 t6 x6 6 88 t8 x8 8 9 =1: : ; ; C `XR8UU3| \       5 D 3 8 \ }h$ ,} $   @}$  }Ф$54B= x3B\ P:3JcU==`j  & ! @3|   ]B , }ʳ$        $ l}ʲ$    " " $''(3|(, ,01 13 4 46 68 x88 9:  ; <  A5 BD6 E5 FBF=G3GB\H HI:JL=M MO&P S VWXBX=Y8Z ^ ^_ _ `a ahdodo \PTp q}X$r=vst tvvxyz z}Y~ ~  3Jco28   1 > P  `Y HP# ( =    8 3|  S 0   }Т$   x    J o   x   R  6 8   }Т$   =uu  8 3  1x  8 3     =  3 Jc      =#   d< > =  R (  l    pQL >Q, 8l  > Q(( (>) )*< +> 0< 1$3( 33<;> <$>( >>>lD D E EFR FJ( JJlQP+P8P QDR( RR,S( SS UsZ ZR ZZQaSQaIAb bxg= hi lp p q qrR rOx xx~ l   LR X  ,8s R  8s R m TR (  l  s R __@_AT_FILE==EVE_DEFINE_KEYEVE_UNDEFINE_KEY'"T( (j  Rkov1P@1lR ,""$<s oR k(  X( r $` jmmo&""''") EVE$KT_TOPIC_t@R,uvwzyz|3||}=~ =(xuR P1lR d = D=3SE  `=l: L   =3S#~$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"2E  `=l: L @@R,  3|=3S 11oR t( <l,:   =   8@R,  3|=3S(: 8m P2C  (xC7ˑ$7$\on_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error; return eve_exit exiteve_set_pending_deleteeve_set_nopending_delete;eve$set_find_case_sensitivity&eve$set_find_case_sensitivity (false);(V03-033aV3.1 L = "   &(}7&   (        ' *7C$* + -< 37c$347$457S$567$677$7 87$8 97#$9K :73$: ; <7s$<=7$= > k pM pwqpsp r s w y z { | } ~   y~%             9 :  IJ      =              +     6      ( T                          {abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890$_yabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 0123456789l6!@#$%^&*()[]{}-_+=~`|\:;"'<,>.?/TPU$KEY_MAP_LIST EVE$USER_KEYSEVE$VT100_KEYSEVE$NUMERIC_KEYSEVE$STANDARD_KEYSEVE$STANDARD_FUNCTION_KEYSEVE$MOTIF_FUNCTION_KEYSEVE$KEYPAD_LISTEVE$COMMAND_MAPEVE$COMMAND_MAP_LISTEVE$FUNCTION_LIST EVE$WPS_KEYSEVE$RULER_KEYSEVE$RULER_LIST EVE$EDT_KEYSm ovoouqvqqqvrvqrrrsM osvsnss vuov=wM nww zuoz{ {v||n|| ~M q~s~ ( T   M M ovM nq S   vn   procedure endprocedure;!.!? M SM XsXM XvnYY ZZB [[w\M \u\n\\ g(j  " &̎0 4 6 6=&QH  &Q3  8R(        ( T     ( T     (  T     4 &  &m     I   8 X         ,( T 4& &m 8 xP (         $&(T (J  J \4J$\  ,lP $"0~&EVE$KT_TOPIC_GET_INFO_INTEGER_VARIABLE0&EVE$KT_TOPIC_GET_INFO_PROCESS_VARIABLE0%EVE$KT_TOPIC_GET_INFO_MARKER_VARIABLE0%EVE$KT_TOPIC_GET_INFO_WIDGET_VARIABLE0%EVE$KT_TOPIC_GET_INFO_WINDOW_VARIABLE0%EVE$KT_TOPIC_GET_INFO_STRING_VARIABLE0z%EVE$KT_TOPIC_GET_INFO_BUFFER_VARIABLE,$EVE$KT_TOPIC_GET_INFO_RANGE_VARIABLE,x$EVE$KT_TOPIC_GET_INFO_ARRAY_VARIABLE,$EVE$KT_TOPIC_SET_MESSAGE_ACTION_TYPE,#EVE$KT_TOPIC_SET_ERASE_UNMODIFIABLE,#EVE$KT_TOPIC_SET_GLOBAL_SELECT_TIME,#EVE$KT_TOPIC_SET_POST_KEY_PROCEDURE,v"EVE$KT_TOPIC_GET_INFO_ANY_VARIABLE,{"EVE$KT_TOPIC_GET_INFO_COMMAND_LINE,"EVE$KT_TOPIC_SET_PRE_KEY_PROCEDURE,t!EVE$KT_TOPIC_GET_INFO_ANY_KEYNAME,!EVE$KT_TOPIC_SET_RECORD_ATTRIBUTE(WEVE$KT_TOPIC_EVE_PENDING_DELETE(EVE$KT_TOPIC_SET_CLIENT_MESSAGE(lEVE$KT_TOPIC_TPU_KEYNAMES_TABLE(EVE$KT_TOPIC_SET_ENABLE_RESIZE(EVE$KT_TOPIC_SET_FACILITY_NAME(EVE$KT_TOPIC_SET_SCREEN_UPDATE(EVE$KT_TOPIC_SET_DISPLAY_VALUE(EVE$KT_TOPIC_SET_DEFAULT_FILE$_EVE$KT_TOPIC_EVE_STATUS_LINE$EVE$KT_TOPIC_SET_STATUS_LINE$EVE$KT_TOPIC_SET_RECORD_MODE$EVE$KT_TOPIC_SET_OUTPUT_FILE$EVE$KT_TOPIC_SET_MODIFIABLE$EVE$KT_TOPIC_SET_OVERSTRIKE$EVE$KT_TOPIC_TPU_ERROR_LINE$EVE$KT_TOPIC_SET_ICON_NAME$EVE$KT_TOPIC_SET_NO_WRITE EVE$START_PENDING_DELETE EVE$KT_TOPIC_SET_REVERSE EVE$SET_FIND_TARGET_CASE !EVE_SET_NOPENDING_DELETE EVE$STOP_PENDING_DELETE EVE_ERASE_START_OF_LINE ;EVE$INIT_POSTPROCEDURE SEVE$KT_TOPIC_EVE_MOUSE EVE$KT_TOPIC_SET_MOUSE EVE_SET_PENDING_DELETE 4EVE$DELETE_START_LINEEVE$$X_CHOSEN_RANGE,EVE_OVERSTRIKE_MODEEVE$SELECT_A_RANGEEVE$ON_END_OF_LINE7EVE$INIT_PROCEDURE/TPU$LOCAL_PRE_INITEVE$$BUFED_REMOVE"EVE$$STORE_REMOVE#EVE$$INSERT_HEREEVE_MOVE_BY_LINE&EVE_INSERT_HERE+EVE_INSERT_MODEEVE$SPLIT_LINE.TPU$LOCAL_INIT EVE_DELETE% EVE_REMOVE- EVE_QUOTE4)EVE$KT_TOPIC_GET_INFO_MOUSE_EVENT_KEYWORD,$EVE$KT_TOPIC_SET_MAPPED_WHEN_MANAGED,#EVE$KT_TOPIC_SET_GLOBAL_SELECT_READ,u!EVE$KT_TOPIC_GET_INFO_ANY_KEYWORD(g EVE$KT_TOPIC_EVE_NOT_IMPLEMENTED$EVE$KT_TOPIC_SET_MODIFIED$qEVE$KT_TOPIC_TPU_LINE_END EVE$KT_TOPIC_SET_FORWARDEVE$AT_START_OF_WORDEVE$KT_TOPIC_SET_PADEVE$KT_TOPIC_SET_UIDEVE$REMEMBER_FOUNDEVE$START_OF_WORDEVE$CURRENT_WORDEVE$END_OF_WORDEVE_ERASE_WORDxEVE$FIND(?EVE$KT_TOPIC_EVE_ABBREVIATING(PEVE$KT_TOPIC_EVE_MAIL_EDITING$|EVE$KT_TOPIC_GET_INFO_DEBUG$EVE$KT_TOPIC_SET_JOURNALING$EVE$KT_TOPIC_SET_SCROLLING$EVE$X_CHOICE_HIGwYE$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TK"CHLIGHTING EVE$X_BOX_HIGHLIGHTINGhEVE$KT_TOPIC_SET_DEBUG,!EVE$KT_TOPIC_SET_WIDGET_CALL_DATA$EVE$KT_TOPIC_SET_PROMPT_AREAEVE$KT_TOPIC_SET_ACTIVE_AREA0&EVE$KT_TOPIC_SET_SCROLL_BAR_AUTO_THUMB0%EVE$KT_TOPIC_SET_GLOBAL_SELECT_UNGRAB,#EVE$KT_TOPIC_SET_GLOBAL_SELECT_GRAB,#EVE$KT_TOPIC_SET_INPUT_FOCUS_UNGRAB,!EVE$KT_TOPIC_SET_INPUT_FOCUS_GRAB)EVE$SPACES_TO_TAB'EVE_TAB$EVE$KT_TOPIC_GET_INFO_SYSTEM$EVE$FORMAT_DECLARE_SYNONYM|EVE$KT_TOPIC_SET_SYSTEM0%EVE$KT_TOPIC_SET_SPECIAL_ERROR_SYMBOL0%EVE$KT_TOPIC_SET_COLUMN_MOVE_VERTICAL0%EVE$KT_TOPIC_SET_MESSAGE_ACTION_LEVEL(EVE$KT_TOPIC_SET_INFORMATIONALEVE$KT_TOPIC_SET_BELL EVE$KT_TOPIC_SET_VIDEOdEVE$$INDENT_LINE_TO,$EVE$KT_TOPIC_SET_RIGHT_MARGIN_ACTION,#EVE$KT_TOPIC_SET_LEFT_MARGIN_ACTION,#EVE$KT_TOPIC_SET_FIRST_INPUT_ACTION( EVE$KT_TOPIC_SET_DETACHED_ACTION(JEVE$KT_TOPIC_EVE_EDT_CONVERSION(EVE$KT_TOPIC_SET_MENU_POSITION(EVE$KT_TOPIC_SET_RESIZE_ACTION(EVE$KT_TOPIC_SET_RIGHT_MARGIN$EVE$KT_TOPIC_GET_INFO_SCREEN$EVE$KT_TOPIC_SET_LEFT_MARGIN$pEVE$KT_TOPIC_TPU_LINE_BEGIN$$EVE_RESTORE_BOX_SELECTION EVE$$BUILD_SPACE_PATTERN rEVE$KT_TOPIC_TPU_REMAIN EVE$KT_TOPIC_TPU_RETURNEVE_CHANGE_DIRECTIONEVE_PREVIOUS_SCREENEVE$$BUILD_PATTERNEVE$$BOX_SELECTIONEVE_NEXT_SCREEN EVE$TO_COLUMN EVE_MOVE_DOWNT EVE_RETURN EVE$KT_TOPIC_SET_WIDTH  EVE$SEARCH( EVE$KT_TOPIC_SET_WIDGET_CALLBACK$EVE$KT_TOPIC_SET_TRACEBACK*EVE_INSERT_PAGE_BREAK0&EVE$KT_TOPIC_SET_MOVE_VERTICAL_CONTEXT,"EVE$KT_TOPIC_GET_INFO_KEY_MAP_LIST(EVE$KT_TOPIC_SET_GLOBAL_SELECT(EVE$KT_TOPIC_SET_KEY_MAP_LIST$EVE$KT_TOPIC_GET_INFO_WIDGET$EVE$KT_TOPIC_SET_SELF_INSERT$EVE$KT_TOPIC_SET_AUTO_REPEAT$EVE$KT_TOPIC_TPU_ERROR_TEXT$5EVE$CLEAR_SECONDARY_SELECT$EVE$KT_TOPIC_SET_PERMANENT$EVE$KT_TOPIC_SET_EOB_TEXT$EVE_SET_FIND_CASE_NOEXACT EVE$FORMAT_MODULE_IDENT EVE$KT_TOPIC_SET_WIDGET EVE$KT_TOPIC_SET_HEIGHT EVE$KT_TOPIC_SET_INSERT EVE_SET_FIND_CASE_EXACT EVE$FORMAT_MODULE_INIT @EVE$KT_TOPIC_EVE_ABOUT EVE$KT_TOPIC_TPU_ABORT :TPU$INIT_POSTPROCEDURE EVE$X_WORD_IS_ON_LEFT (EVE$$WORD_WRAP_INSERT EVE$KT_TOPIC_SET_TEXT0EVE$OVERSTRIKE_TEXTEVE$GET_FIND_TARGET6TPU$INIT_PROCEDUREEVE$$BUFED_SELECTEVE$FIND_TARGETEVE$$BOX_SELECTEVE_MOVE_RIGHT  EVE$FIND_NEXT EVE_MOVE_LEFT$EVE$KT_TOPIC_GET_INFO_WINDOWH=EVE$$X_SAVED_WINDOW0M'EVE$KT_TOPIC_EVE_CONTEXT_SENSITIVE_HELP,$EVE$KT_TOPIC_SET_WIDGET_CONTEXT_HELP(EVE$KT_TOPIC_SET_ICONIFY_PIXMAP(EVE$KT_TOPIC_GET_INFO_KEY_MAP$EVE$KT_TOPIC_SET_ICON_PIXMAP\ EVE_MOVE_UP4k)EVE$KT_TOPIC_TPU_KEYMAPS_AND_KEYMAP_LISTS0F'EVE$KT_TOPIC_EVE_DECWINDOWS_DIFFERENCES0I&EVE$KT_TOPIC_EVE_EDITING_COMMAND_LINES0Y&EVE$KT_TOPIC_EVE_PROMPTS_AND_RESPONSES0&EVE$KT_TOPIC_SET_WIDGET_RESOURCE_TYPES0N%EVE$KT_TOPIC_EVE_INITIALIZATION_FILES,$EVE$KT_TOPIC_SET_PAD_OVERSTRUCK_TABS,$EVE$KT_TOPIC_SET_CROSS_WINDOW_BOUNDS,h$EVE$KT_TOPIC_TPU_BOOLEAN_EXPRESSIONS,B#EVE$KT_TOPIC_EVE_CANCELING_COMMANDS,a#EVE$KT_TOPIC_EVE_ULTRIX_DIFFERENCES,m"EVE$KT_TOPIC_TPU_NONDEFINABLE_KEYS,[!EVE$KT_TOPIC_EVE_RANGES_AND_BOXES(b EVE$KT_TOPIC_EVE_VMS_DIFFERENCES(d EVE$KT_TOPIC_EVE_WPS_DIFFERENCES(K EVE$KT_TOPIC_EVE_EDT_DIFFERENCES( EVE$KT_TOPIC_GET_INFO_PROCEDURES(TEVE$KT_TOPIC_EVE_NAMES_FOR_KEYS(jEVE$KT_TOPIC_TPU_ERROR_HANDLERS(^EVE$KT_TOPIC_EVE_SECTION_FILES(DEVE$KT_TOPIC_EVE_COMMAND_FILES(OEVE$KT_TOPIC_EVE_JOURNAL_FILES(EVE$KT_TOPIC_SET_SCREEN_LIMITS(EVE$KT_TOPIC_SET_MESSAGE_FLAGS(HEVE$KT_TOPIC_EVE_DIALOG_BOXES(EEVE$KT_TOPIC_EVE_CONTROL_KEYS(UEVE$KT_TOPIC_EVE_NEW_FEATURES(EVE$KT_TOPIC_GET_INFO_PROCESS$`EVE$KT_TOPIC_EVE_TYPING_KEYS$]EVE$KT_TOPIC_EVE_SCROLL_BARS$EVE$KT_TOPIC_SET_INPUT_FOCUS$\EVE$KT_TOPIC_EVE_RULER_KEYS$AEVE$KT_TOPIC_EVE_ATTRIBUTES$LEVE$KT_TOPIC_EVE_GOLD_KEYS$EVE$KT_TOPIC_SET_TAB_STOPS$EVE$KT_TOPIC_SET_MAX_LINES$9EVE$SET_SECTION_ATTRIBUTES$GEVE$KT_TOPIC_EVE_DEFAULTS cEVE$KT_TOPIC_EVE_WINDOWS EVE$KT_TOPIC_SET_SUCCESS EVE$KT_TOPIC_SET_MARGINS fEVE$$KT_ILLEGAL_COMMANDS QEVE$KT_TOPIC_EVE_MENUS <EVE$X_BUF_STR_DEFAULTS 2EVE$$PRE_INIT_MODULES 3EVE$$RESTORE_SETTINGS EVE$$X_WILD_PATTERNS8EVE$$INIT_SETTINGS1EVE$$INIT_MODULES(X EVE$KT_TOPIC_EVE_POSITION_CURSOR(CEVE$KT_TOPIC_EVE_CHOICES_BUFFER(REVE$KT_TOPIC_EVE_MESSAGE_BUFFER$yEVE$KT_TOPIC_GET_INFO_BUFFER$EVE$KT_TOPIC_SET_LINE_NUMBER$EVE$KT_TOPIC_SET_SCROLL_BAR$EVE$$TEST_FIND_TERMINATOR$VEVE$KT_TOPIC_EVE_NEW_USER$sEVE$KT_TOPIC_TPU_UNANCHOR$iEVE$KT_TOPIC_TPU_DEBUGGER EVE$$X_FOUND_POST_FILTER oEVE$KT_TOPIC_TPU_ANCHOR EVE$KT_TOPIC_SET_TIMER EVE$KT_TOPIC_TPU_ERROR>EVE$$X_SAVED_BUFFER,#EVE$KT_TOPIC_SET_KEYSTROKE_RECOVERY,"EVE$KT_TOPIC_SET_DEFAULT_DIRECTORY,}!EVE$KT_TOPIC_GET_INFO_DEFINED_KEY(EVE$GET_DIACRITICAL_SENSITIVITY(EVE$SET_DIACRITICAL_SENSITIVITY(EVE$KT_TOPIC_SET_UNDEFINED_KEY(EVE$KT_TOPIC_SET_DRM_HIERARCHY(eEVE$KT_TOPIC_EVE_OLD_GOLD_KEY( EVE$GET_FIND_CASE_SENSITIVITY(EVE$SET_FIND_CASE_SENSITIVITY$ZEVE$KT_TOPIC_EVE_QUICK_COPY$wEVE$KT_TOPIC_GET_INFO_ARRAY$EVE$KT_TOPIC_SET_SHIFT_KEYnEVE$KT_TOPIC_TPU_RECOVERY<,<EGlH$eLg$?7$? CZE EFPG G,H7s$H IxJ7PKL88L M,N7s$N O$P7 $P STPU U,V7{$V WxX7PYZ88Z [,\7{$\ ]$_7$_d7Pef88f gnQp p(q]r rtetw w0z"z&  {,"& &JZ7$ &^JZ( T P&$J*  H&J* i (] e 0"&  ,"& &yJZ( T P&,J*  H&J* i$     (-  5  0 - T OA  ,}p$ tJ ( T (}K$  };$ $} $ $} $  HQ   &  &  7O88 t(! T!O" 8"(# T#O$ 8$A$ %(&&J '  , Q. .1 1(2T3 344 5078  9: =(>T? ?p@9 AHD  EF  GH JK MN ST U V1 W1 zWW1 wWX X$Y}ڳ$Z Zj] m] ]] (`Ta ab d?h j jpreturnWILDCARD_FIND_DIALOGeve$$widget_find_ok (!UL)eve$$widget_find_ok (!UL, !UL)(WILDCARD_FIND_DIALOG.WILDCARD_FIND_LABEL)WILDCARD_FIND_DIALOG.WILDCARD_FIND_LABEL1'WILDCARD_FIND_DIALOG.WILDCARD_FIND_TEXT'WILDCARD_FIND_DIALOG.WILDCARD_FIND_TEXT FIND_DIALOGeve$$widget_find_ok (!UL)eve$$widget_find_ok (!UL, !UL)FIND_DIALOG.FIND_LABELFIND_DIALOG.FIND_TEXTFIND_DIALOG.FIND_TEXTfindeve$invalid_event(35914827)eve$invalid_event(35914818)return() pNRpY ( T8 J Y ( T8 J  3|=*3T  xY @?    pY @? "   (=  . @}z$}$= T  "  =Q  xY @?    pY @ ?  "    ( T (}$  }$ = pQ  ,7[$ $7c$"7P#$88$ %D- / /DQ4 4" 4& r 5@Q; ;";& r(=]> >@e@GE&HJZHIiL$L MPPR R S=T T[ [\-]]^_A` `a bc e(f6i1iRPj jXkkJmnnpp q r=ss xX|& r)eve$$widget_find_each_yes (!UL, !UL, !UL).eve$$widget_find_each_yes (!UL, !UL, !UL, !UL)FIND_EACH_DIALOG FIND_EACH_DIALOG.FIND_EACH_LABELreturndoeve$invalid_event(35914952)|E(UTU V(W ]X XY Y (` Ta apbb&mc& c&m\d de fg lkm m rs& t&mtuPv v$z    {          eve$$found_post_filterX|C(R ]^``bPc cd dg gOi$ ij j k(mnoos sOu$ uvv w$y yzz~~ B        $  ("d4p <lL, | Q ljj 0}$$  (T j     1 l    A l M 0 2 %  (T j     l Qqgof ! !("T# #$$j' ' ( (1o(P(() +  + , -0 0(1T2 233j6 6 78 8; ;(<T= =>>jA A B C0F F(GTH HIIjL L M Nd O  PQ< SU1UUV VWRWlXXlYYO[ [8\R\l]]Q_[_8_ `a  b jcc df h1hRhj1SM$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tr"exjjRjkRklllOn n8oRolpps( st( tv vDszozzR kzz {<soR k j  (T  $jj  l 1R 1xR (T j  p o tR T `R of1 R n R T  R T `R o1 R  n $}b$b$  Q K 1 1R 1xR (T j  pi of  1 1R  (T j  p o  $}$$ $}b$b$ X   1R 1xR (T j  pt or  R TG hR o 1 R no  R T $   R T  h R o _ 1 R  no6  $}b$b$ Q 1 1R  1x  R $ $(%T& &''j* * p+ o+ + ,-1. .|p/ / 3 3(4T5 566l9 9 :$;}$<$< ?$@}b$Ab$A DG G(HTI IJJjM M N OdR R(STT TUUjX X Yz Z] ](^T_ _``jc c d eh h(iTj jkkjn n o ps s(tTu uvvjy y zq {~ ~(T j   4 (T j    (T j  ` T (T j    (T j   t (T j  O  (T j   jj d}$$ 0}$$ | (T j   1 xR  Q    }$ poY (   ''+ remain+ remainmatchlmatch+ arb()+ eve$$x_ws_pat + line_begin + line_endanynotany-+ span('')any(span(arb(notany(scan(match+ span('') + (span('') | '') + (span('') | '')any((span( | '')arb(notany((scan( | '')match + (span('') | '')( | remain)+ any('1234567890')+ any('01234567')+ any('1234567890abcdefABCDEF')+ any(eve$$x_wild_a)+ any(eve$$x_wild_n)+ any(eve$$x_wild_s)+ any(EVE$$X_WILD_L)+ any(EVE$$X_WILD_U)+ any(eve$$x_wild_p)+ any(eve$$x_wild_f)+ any(eve$$x_wild_control)+ any(eve$$x_wild_bit_7) eve$$x_ws_pat''$h% :RT~ 8  l  1RQ  0Q  jl DQ $w  la' ''' '+eve$$x_ws_pat+'' eve$$x_ws_pat'@#@R,3|=*( T 8& S  & Q  4 =8 \ =3\ 8 Q   X3|\  8 D3|\ 8EP!4"=###$$8%%( & &'; 'u(E" (=))( * *+8..3.. /< 018 2 4 5 7: :; >=@@FPP7P     lT  (J"  J  T"    `  0J      `  0J" ({ T| |} ~    $O   (D^M^^etRdY(T8 JY(T8 J     J * J<4 5}$6 6:T`I ITJM M7$M|MM N\P PLQM T7$T`vTT\eve$set_find_case_sensitivity%eve$set_find_case_sensitivity (true);eve$set_find_case_sensitivity&eve$set_find_case_sensitivity (false);<< =}$> >Dm m(nN o  p0r r sN t =w w x ~(4Nt<_1$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T>"v3\ (   RP $Ja $Ja     =* P     P           3  \  P   6 1           &" !  ! Ja "  # $ $ Ja % &  ' * * 2  P P    XR( T  Jc   ,    H F  8R(         B L JS JS A   HR,        3|  &     ( # ll @ h   H     $ J#   ( ]  t(  Q }z   ( & 0 = 3    & 0 = 3    $ J#( T   ^           h =  Y   0X   8      =# 3|# ('  ]( ( ) )  . P/  / $2    3 D5 & 6 &m8   ;   =  ? ? E MARKEReve$$found_post_filter  (          8 8        , x   JQ J(T   (T    %%''& \( (0*+}$- -5&5663|6&86 7p8&58939:;3 ;<?3?OA AxC3CC\D DJLM M$N  O8Q3Q3RRSU V XX Y([ \ ^^ ``b c f0hi}$ j kn nt3t v v8wx y z&5& 5  & 3 &3 &5& 5 =  s x  4(  &(,J+ &(T8  =&(JT3P 8  H3v  X t 3v  83  = u:3 L  831 83 T8 3&& ==v 3P  3&5t xL" \183  =v3Y   P83 <1 8 3    3|\ l X b8 (3 #3#3$$l''+= u00:223|23 3636&5t668 : :x<3<<\= =(>]? ?@ LDD  EpG G\I3|IJa1JMJPJ K8O3|OO\P PdQQR3|R&5R8R S$T U8 X[\J_=`c d Qg ghhJkkr          (R      JS JS A   q B r }Ñ$u 7Ñ$u +u u z eve_set_pending_deleteeve_set_pending_delete;H8R(~        B    }ˑ$ 7ˑ$ +   eve_set_pending_deleteeve_set_nopending_delete;`HR, ! " & $ % & (( T)  ) *  + , 4  4 @6 6 6 6   6 7 8 < < @ ? @ A JcB ZD  D (E TF  F (H H H K 3K L =N $O 9P A$ Q R S $V W }Y 3Y SZ Z [ P] = ^ _ a b b e f f l D       \    3|  \ 8 3| &" (  &"  &  $   p &G 8 4 3| Ja    $    8 3 &  3 3   &G 8 4 3| Ja  8     }($  }0$    l( r ]  , }$      '$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T޾"  r     P   < & Y      D            I5 & , }:$    6 8  &     & " k    t(p q r r y 6 z { { { ~ # k ~ ~  L" $       &5  &F ( ^ ]  : ^   &P^ ( <  &       &5x) R( l &5x)  "   `= >3>?=uC; CvDE  D=F3FGG1GoGwGG8H3HJJ&FJLL M M$NN N O(PP&"PS=TU UV W(X&"vYY\\_% a=h8T33&W3(44Q6 68|7q7G7v77 8$; ;<<>(x>@ @luAARAB1lBBRB CDEG)GlHHH IsJxJJPP Q Q`RR vRxRRT T$V VW\\b <iikklmn nqrs sw w$x y y|} } ~P , F8  P    DJ DJ hH RHP&  &  &  &   TH }$3| &  =7[$ U   8}[$   )RLQY YZZJ\]cQ` `aaJcee&(effJg ghhJn$%&'y(L)W*+, - . / 0f 1 2 3 4* 5C 6I 7 8 9 : ; <{@"EVE$$INIT_MODULES0Y  z"EVE$$PRE_INIT_MODULESh  `bc`ea g d g g GOLD-KP7 EVE$EDT_KEYSPF4 EVE$NUMERIC_KEYSDO EVE$STANDARD_KEYSPF4 EVE$VT100_KEYSGOLD-[ EVE$WPS_KEYSEVE$$RESTORE_SETTINGS|D7 8 9 9 < 3< < S= = > :A 8B 3B C 8E E E G <H H &GI I J :M =uO 3O O P  R GR S S Y 0 0  6 U 0* + U P (   $    + *    87 .  K ) TT 8 2 / 1 3 9   JJqJABJrJJeve$x_repeat_count<t(;     ( T    , !"  5< 568< :m :;' <=A AB& C0F <  FC G$I <  ICK3|KLLYM MNS  U UZ  ZC b b c gj < jCmJcCnJCoJ(CpJCv@w&Cx$yJC+&(8 $ }= >  Y&V,8 D&*P  &   )  $DEFAULTS$ /dev/nullNL:|              |             #       8 8        hX 5 Y HZ PZ [ 8[ [ $\ ] ] a b c c g h : i j #j p k l m m n n o p p r Ds s t t u v v { {   5 H P  8 $         :  # p        D         4H   3S    (  ; uE" =(  8(  p3D  =38  !" "0$R $ %4&8''(8*8. 0 0,1 F 1 2856 F 6 : :,;8<= =@3@\A ATB( C C8DE EFG G KM M N P3PQ R8S3SU U,WW X$YY[M$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TC'"=\ ^ F ^ _3__\` `xab bdc8dTeV e,fg hi8n nt  d` R<P<L              &,   3|  =* T "  !  ! <#  # $ :( =u ) D+ (, - - . :1 =u 3 5 \6 =7 7 & 8 $9 =v: 8 < X= 3= = \> > (? @ @ A 8E =vH H N  T  (  J"   J       HR4Pk l m x p q q s s s }t u u x w x { { A| | @} A ~ ,         3|       &,    5  8 3  3 3   =E E  8 3 E   = 8 3 S H 8   8              |    &(T  8  $ l 8     l 8 3 3   8 0      d 8 3 3   8 E       `     3  S             8 3 y  8! 3! ! " $ G $ % % + 0d          7$Lh7$]j integerinteger#eve_set_tabs_spaces/movement/inserteve_set_tabs ('INSERT');eve_set_tabs_visibleeve_set_tabs ('INVISIBLE');$0\\V03-014$`` aa bb cc dd iee Pff :lateveryspacesmovementinsert invisiblevisiblev=*w3|wxxPy yzz}~ ~88 |   3| 83|8 (   83|8 3| x=*z{ {||(  \8(  8 8(  =* 8o; uE" =t(   uE" =(  8tkPhR4T =* E  18T28&5XTTTFA 8    \pRDQ   J   Q    J    &(  J &5t    X P   (  ( R(   x J 4D,4 x  ,L\(\<(EVE$KT_DETACHED_ACTION_ROUTINE(EVE_SET_NODEFAULT_SECTION_FILE(EVE_SET_NODEFAULT_COMMAND_FILE(EVE$LOCATE_EVE_GENERATED_CODE(EVE$$GET_DEFAULT_COMMAND_FILE$EVE_SET_DEFAULT_COMMAND_FILE$EVE_SET_DEFAULT_SECTION_FILE$EVE$$HELP_KEYPAD_TEMPLATE EVE_BOX_PASTE_OVERSTRIKE EVE$X_HELP_PROMPT_RANGE EVE$COMPRESS_WHITESPACE %EVE$$NOT_CHORDED_MOUSE EVE_BOX_CUT_OVERSTRIKE EVE$$X_GLOBAL_REPLACE tEVE_SAVE_EXTENDED_EVEEVE$CAPITALIZE_RANGEzEVE$$BUILD_ATTR_CODENEVE$$X_MB1_DOWN_FREE1EVE$$X_MB3_DOWN_FREE9EVE$$CHOOSE_BY_MOUSEEVE$KT_TOPIC_EVE_EVEEVE$EOL_NOPAD_DELETEEVE$MOVE_TO_VISIBLETEVE$$CLIENT_MESSAGE:EVE$$CURRENT_CHOICE)EVE$$NOT_USER_MOUSE EVE$$BOX_OVERSTRIKEEVE_SET_CURSOR_FREECEVE$POSITION_MOUSEEVE_GLOBAL_REPLACEEVE$KEYBOARD_TYPEDEVE$LEARNED_MOUSEBEVE$KEY_TO_IGNOREEVE_MOVE_BY_PAGEEVE$APPEND_LINE EVE$FILL_RANGEEVE$GET_CHOICEwEVE_EXTEND_EVEEVE_ERASE_LINE EVE$ARG1_LINE EVE$WHAT_LINE EVE_WHAT_LINE EVE_BOX_PASTEq EVE_UNDEFINE EVE_REVERSEl EVE_DEFINEEVE_LINEsEVE_SAVE(EVE$$X_SCRATCH_BUFFER_RESERVED$EVE$$X_SAVED_ATTRS_MODIFIED EVE_ERASE_PREVIOUS_WORD EVE$$OVERSTRIKE_LEGEND EVE$$IS_KEYPAD_DEFINED EVE$DELETE_START_WORD -EVE$$X_MB1_DOWN_BOUND 2EVE$$X_MB3_DOWN_BOUNDEVE_SET_CURSOR_BOUNDEVE$$IS_GOLD_KEYPADEVE$$CENTER_LEGENDEVE$$KT_ATTRS_ENDuEVE_SAVE_EXTENDEDEVE_SET_BOX_NOPADEVE$$KT_CODE_ENDEVE$DELETE_WORDEVE$DRAW_KEYPADEVE_SET_BOX_PAD EVE_FORWARDx EVE_EXTEND( EVE_SET_NOSECTION_FILE_PROMPTING(EVE_SET_SECTION_FILE_PROMPTING$IEVE$$NOT_SPECIAL_MOUSE_DRAG$6EVE$X_SECONDARY_SELECT_RNG JEVE$$DEFAULT_MOUSE_DRAG EVE$CAPITALIZE_STRING EVE$X_BOX_PAD_FLAG3 EVE$$M3DRAG$EVE$GET_HELP_LIBRARY_TOPICEVE$$X_KEYPAD_HELP_TOPIC YEVE$GLOBAL_SELECT_UNGRAB XEVE$GLOBAL_SELECT_GRAB \EVE$INPUT_FOCUS_UNGRABZEVE$INPUT_FOCUS_GRABEVE$$X_HELP_NULL_PROGRAM EVE$$REPLACE_SEARCH_FAILEVE$$X_REPLACE_ALLEEVE$UPSTROKE_NULL EVE_SHELL EVE_FILL`EVE_DCLEVE$$REPLACE_NO8 EVE_GO_TO(_ EVE_SET_SELECTION_GRAB_SELECTION(MEVE$$NOT_SPECIAL_MOUSE_CLICKN$'EVE$$POSITION_TO_MOUSE_DOWN$EVE$$DETACHED_CURSOR_ACTION$FEVE$$NOT_SPECIAL_MOUSE_DOWN$UEVE$SAVE_PRIMARY_SELECTION$EVE$ARG1_SET_RIGHT_MARGIN$OEVE$$DEFAULT_MOUSE_CLICKN EVE$ARG1_SET_LEFT_MARGIN EVE$$KT_DEF_PRIV_SECTION GEVE$$DEFAULT_MOUSE_DOWN {EVE$X_SECTION_VERSION ,EVE$$CANCEL_M1_ACTION EVE$$X_THIS_DIRECTIONEVE_SET_RIGHT_MARGIN#EVE$$X_MOUSE_COLUMNEVE$$REPLACEK`"$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T")%"7k`j:7_uZt ^|E̫x UP52N->Ik,iABWvH0!1edMz%yA;KL2,FQ[AKǥW[kA[)x\PLh 7PO8_@Svl  Tܸg UXw᦬ `rOL+QG)u&iC!fqaJ3.qόXu} L3(3h1\0&(qU[bQʓfРTYB5j)EfkM MUfN<(^ؠ-KkZ z1\Td Luf@+QoqLB\4 =<jgb y X̐/T>@CCZa laޜ$2zQ}Y7 ǍZWs_+RK[ wB&&P]zC= RW=zGEm4 *UWI:%?Ɨbg[ I6 CFPw8tսGMƴtlm:y w吁jRĹun=:NbB *"E %Σٸ2F70!@IGdlxm dǗ\B]&^@l}, @MsbG! 4gG=uȷN@oYtNy.*OlGWz=F65}SgJIKG\-)dm f#Wg"e؍Ɓ9;o= վ>+^kM6χ-G mĜ*{t&sr:$@)d<-~~u2$2A/2+dH;4<߾ӭ;Py9'OEDLT(!g9[.žKZ-LJ`%Wڎj6yOMQ׬DO7s:BGhqzO pN/mS]P1ILA?#hk  zC[XQFTt^ExfU'qh%ɀٽ d5 r2O6;L&JTߌMp]zDD j ,zxz [_VP-GMM'i\ c6@ >3)%)s|;tQ`zߔUs)'1(:1g`{E`h[=zČO4K3?%Q9}ltGI'tYC;A ZLhS;@Cjbsɨi!XkZod6ֹ~ߣgw`` \pž0#)^|K!P2ouY?:}!3e;1_h9{JʈYR F"R>F8m㮞 XUNKze``lZS ٴ9 4U PRv|(6u 9WfѼ^HDZ,N d 6dV"O)rnCWKM xSP3/7JKM6-SM$]ns@Q()dwJ|x%)i2:_*!8La6R9S$Pom~봏W /Mci'ECEhW:V{\NRy(*BM@6,Yg &Tjk(O =* a-il B']\Z tc40ZCU>}\ e'3츉̨آ7AHHF>g5sIwN޳FF(^co@iUvPHd.ΒW0D`A`24FHDǖvHfCUUxGfS6K MQ RzWoT\ kZTz0T9JkSj6 1l9 y /l(2 jNg;rWL[0!  OhdN^U-14C^^ LYNihn:X0 D]Mɳ OP2D7hv!UM&#"}nQܧ[jҀW4 #jXGv|ѭᗙJ_ٿhw]L\NzE v0cpXwYe.vFkos",eJZ`uY0 ک$x,z2pלڢC;doGOCKwVIV:96&1 .R!L%M,!ߏ71E0 i/>:XpgEsT!ɘ jW"^j~mrn(Vwqw@?xz IY2#S/V CrO]Gml+<(âx;x.Z$#q|E#{x59ddX#K#df2\ʶFnm_+nX+ E Uv`ۺ)V^*D\r9zPgz粯+?ac]z(JHxk>-yh69R)ܲH:*Už7){0'CH}w^=(:Cn6=ǟsixx˖"Lqw|/epYJ;Eڀ?7|2l6=ꙅw^%i H;r)jfe0#=MDTD--/k{Ⅳۈ lDiAZ̖6|Kw8n%ez{Iu0vL=)=C]V]Yrs C(M/jPLdܰ8Qݙڬsy\Ynw(Id$|]PJqd2t\]lrIQg n[h+r xձ:֚Ӈ^^1}ەMAcf ZjT%#=n9# mqJ/U,'2p]v>XoR612-\hCeR;?ٸ*0I IL䨕OHkgW ̓NHU]'GvWU7TMGT/J:f ߌ ]UDQ\‘ ;vp QɶeT}IQSbkd}_$/wibvvr/P'HMo^?2 Ju :BEM^RfB&3uNSOYn(A1ɟHE](0UFZ¹t߱nӭ@j_KBlTY`f Oz|Nprc^Ϲ}TnP] F%_`F3%\ڑ.lFTZ~J/Ӣ.aȧS!18)6Jts$lqvha])J:]kybA㄄6NZDKgkZX#' ^,l8nE1SiE2LJ(U WOMHN*J(+jj*<MH"n SW;ݗ5pt悯+65(HO/%h眕WY P_A/ 6?z=vQ _cU24vn]qTDjX%7]D!_vh(c+U#=07-5>:4R@aeP1vDXT|PW|rƑZ!MjQAI,j UƮV2i'(%.CesN`sPO: d,#8.@QJZL w+bxl ;L鷢-za% u걮R@ * kN&V"/&rS+\ߏsv=Ӛzؤv0v>aG𧷦3rSuT!AhsVQN#;S \15@s}Ɓ,?k:gW2w 'f 5pQ6YZ4A1d4efO ^i%疔SN] JJ FGҪT4<%qE_IIhBĭ]7)X|rs*Qkbq6]%rfm |]^%?J{Sm[Mch%/nj _|!K5G:!|S5ouZw{]zfo4&I dOQ0W47a.2> =S@/qʥAQ9 zL$fdiJuҤ7B0w!6nݕ_&eAz,B/~$Z!žtkHUN7ѺĚQwn\6oλG0|e^Jᱩ+QSsnh0M vgG>.DVʵUZoя}n: Q/kXR uN4C.HO᪘TT}L"sh[nctBS^Koq ٭^OBoF2S McZ(P2Q$QEp7X3R@i%5&U0Āa/{RNWϨe )u] }X<]ՈaB&dcn/.9,&.BY#Y8Xnl\zIG\<[d^RŒM Q˵}y+_5W\&z=,E&? \wc{  O0}]]~1lȂw}]Zzܔ8X.`?H{bcI.HsoH~g ޡ5JP?a\xDVR ^S&J-u^Ñ:4Y.eXOkH:, #3q\7Sv dݯ)bϪ`)m_W<󀇯uEFA'p@;*\hjh]|k`Et/mFcLs nآ|ntRG9ֿ,Qoy^BOY$Kƒ\ZM]WXWЉK}N]}S2gԚ]F) l<7$c29ch X=H) JO%.BO/:O.af$q\C/i?#\ͭEFHM ܧꅸdtәja,;i\>-0jN)6Y8x+onhA8W%8 3)H&Ȝň)x4 9Epm"dWb`JP-$l\h -Tq0[L9|nZzh-k>0T c }ގ\ |XXx t1~MIp4v{gׅzl~d$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TzT"_ACTIONEVE$$KT_ATTRS_BEGINEVE_SET_LEFT_MARGINEVE$$KT_CODE_BEGIN!EVE$$SHIFT_M1DOWN8 EVE$$M2DOWN/ EVE$$M3DOWNP EVE_SPAWN$bEVE$X_NO_SELECT_POPUP_WIDTH cEVE$X_SELECT_POPUP_WIDTH ?EVE$$INDICATOR_DISPATCH EVE_ATTACH(  EVE$PATTERN_SKIP_PARAGRAPH_BREAK(EVE_SET_NOEXIT_ATTRIBUTE_CHECK$EVE_SET_EXIT_ATTRIBUTE_CHECK$EVE$PATTERN_PARAGRAPH_BREAK EVE$ATTR_SAVE_NOCHECK EVE$PATTERN_TAG_BREAKEVE$PARAGRAPH_BREAK+EVE$$X_PRE_MB1_MARKEVE_MARK yEVE_SAVE_EXTENDED_TPUEVE$KT_TOPIC_EVE_TPUvEVE_EXTEND_TPUPEVE_TPU$dEVE$X_NO_SELECT_POPUP_HEIGHT$&EVE$$SAVE_MOUSE_DOWN_CONTEXT$EVE$ADVANCED_MODULE_IDENT$eEVE$X_SELECT_POPUP_HEIGHT EVE$ADVANCED_MODULE_INIT EVE$HELP_MODULE_PRE_INIT EVE_SET_PARAGRAPH_INDENT gEVE$EXTEND_MODULE_IDENT WEVE$WRITE_GLOBAL_SELECT fEVE$EXTEND_MODULE_INIT EVE$MOUSE_MODULE_IDENT EVE$X_HELP_LEGEND_BOT `EVE$$REMOVE_COPYRIGHT EVE$HELP_MODULE_IDENT EVE$MOUSE_MODULE_INIT EVE$EDIT_MODULE_IDENT ]EVE$SET_POSITION_LOSTEVE$HELP_MODULE_INITSEVE$$X_POSITION_LOSTEVE$EDIT_MODULE_INITEVE_SET_BOX_NOSELECTEVE_BOX_PASTE_INSERTEVE_SET_BOX_SELECTEVE_BOX_CUT_INSERTEVE$$REPLACE_INITEVE$ARG1_REPEATEVE$$BOX_INSERTEVE$ERASE_TEXTEVE_BOX_SELECT EVE_BOX_CUT EVE$REPEAT EVE_REPEAT PEVE$$X_MOUSE_DOWN_WINDOW QEVE$$X_MOUSE_DOWN_ROW *EVE$$X_PRE_MB1_WINDOW"EVE$$X_MOUSE_WINDOW$EVE$$X_MOUSE_ROW EVE$SET_KEYPAD_VT100_1 EVE$$REPLACE1$[EVE$$X_CTX_SENSITIVE_HELP$KEVE$$NOT_SPECIAL_MOUSE_UP EVE$X_HELP_LEGEND_TOP LEVE$$DEFAULT_MOUSE_UP EVE$$REPLACE_CLEAN_UPEVE$$REPLACE_LOOPEVE$$LETTER_WRAPEVE$$WORD_WRAPEVE_SET_NOWRAP EVE_SET_WRAP5 EVE$$M3UP(EVE$$LOCATE_EVE_GENERATED_ATTRS(EVE$RESTORE_ACCUMULATED_ATTRS$^EVE_SET_SELECTION_GRAB_FOCUS$EVE$CLEAR_ACCUMULATED_ATTRS$EVE$X_FACILITY_FOR_CAPTIONS$EVE$$X_HELP_IGNORABLE_KEYS$HEVE$$NOT_MOUSE_IN_PROGRESS$<EVE$$X_INDICATOR_COMMENTS EVE$X_RUNOFF_CHARACTERS aEVE$X_MOTIF_MOUSE_KEYS (EVE$X_MB1_IN_PROGRESS 0EVE$X_MB3_IN_PROGRESS EVE$$ACCUMULATE_ATTRS EVE$$CENTER_2_LEGENDSEVE$X_SAVE_FILL_TAGSEVE$$X_KEYPAD_RANGESEVE$$KEYPAD_CAPTIONSEVE$$X_KEY_CLUSTERSEVE$SET_PARA_BREAKSkEVE_SAVE_ATTRIBUTESEVE_SET_FILL_NOTAGSEVE$FORMAT_CHOICESEVE$X_DCL_PROCESS;EVE$$X_INDICATORSEVE_SET_FILL_TAGSEVE$NUMERIC_KEYSEVE$CONVERT_TABSEVE_CONVERT_TABSEVE$X_FILL_TAGS EVE$LIST_KEYS EVE_SET_TABS(iEVE$$EXT_COMM_QUITEXIT_HANDLER$EVE$$REPLACE_ERROR_HANDLER EVE$DECLARE_EDIT_HANDLER 4EVE$$X_MOUSE_DOWN_BUFFER jEVE$$EXTEND_QUIT_HANDLER hEVE$$EXTEND_EXIT_HANDLER EVE$$X_HELP_THIS_BUFFER >EVE$UNDEFINE_INDICATOR EVE$DEFINE_KEY_CLUSTER EVE$$DRAW_KEY_CLUSTER @EVE$CURRENT_INDICATOR=EVE$LOOKUP_INDICATORAEVE$$TEST_INDICATOREVE_ERASE_CHARACTER7EVE$QUICK_TRANSFEREVE$BOUND_CURSOREVE$FREE_CURSORo EVE$$REMEMBERn EVE_REMEMBER$EVE$$X_KEYPAD_HELP_LIBRARY$EVE$$X_POST_FACILITY_ARRAY$EVE$$X_PRE_FACILITY_ARRAY EVE$$X_ACCUM_ATTRS_ARRAY EVE$$ACCUM_DISPLAY_ARRAY EVE$DECLARE_HELP_LIBRARY VEVE$$X_SAVE_SELECT_ARRAY .EVE$UNDEFINED_MOUSE_KEY EVE$SET_ACTION_FACILITY EVE$$ACCUM_ATTRS_ARRAY REVE$HELP_UNDEFINED_KEYEVE$$X_REPLACE_ARRAY~EVE_SET_NOSHIFT_KEYEVE_SET_NOGOLD_KEY|EVE_SET_SHIFT_KEYrEVE_UNDEFINE_KEY}EVE_SET_GOLD_KEYpEVE$DEFINE_KEYmEVE_DEFINE_KEY EVE$$DRAW_KEY EVE_SHOW_KEYL EVE_BOX_COPY8EVE$FILLED_BOX $`$$& (* + 2 844`8D:BDEEJXKM8OxOO `S!S%`W&LX'Y)Y,,[.p[/c3he5g7Xj8Tm9o:q=s>\t?u@uAwBxC@yDdyEyFp{Gd}H}Id~JЀKXLMOȈRTUW4XȰYܰZx\]^T_`fȳgh8i`jklxmn o@pLqrstupvwxyTz|}~H$lt 0@`xdD <  t$<&X. /X// 00445698<L>@?`@FFG0HIIKKL4NQRS8?3??@8 AB BFG GXHIIJJ=K8NNN8N O+QRR8R>S STT1TRTV WX[  \(^ ^d@1ROTR(  l lR , j$   sou nn souM ovvqvqn souvqevqWn 4: souUO nn sou nM ovvqvqn sou nvq~vqln <.    6abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!;<.<.  <.  `|X    E      R\AC CDJbF GHPJL LMJbO PR STU UXZ Z([T\ \__$`} $a acdd=f  i  j l&Flmm1n n(oJb p4qq1qJbs, t=uu vPzzz={ |}  ~ Jb 4 ,=X    E  =v833=B$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TX"3SA   H=v3SL83  |83 =&F  $  (&"  , v 0&"v37 l&5&"\ $}$ % =v8  3 =U ,}$  D@HQ J3&5&(J = 3 &5t  8  J      $  @l7Ƞ$7$  }$ &F   &"wj T&F}$ j 8}$ j  (}$ XJa& 3\ 18 l3S ,P8 P&"}s$  І7$7$ &"  t  T  &F }$     @}Ҳ$  \Jb&F}$ ! PR,ABCGEF}$GIK KlO7$N7$OPQR RVVWY Z3|Z[=*^V _d@ efg j klm p qrs v wxy |Y }~      &G :] ; D5 }$< = @j 7 $    ",8| 7$7$ HJ) 7;$ 7$7$ t }$ HJ)7C$ P 7$   7$   7$  * 7$ d*  7$  }r$= d}  8p,o0    set tabs ateveryspacesmovementinsert invisiblevisible#eve_set_tabs_spaces/movement/insert#eve_set_tabs_spaces/movement/insert#eve_set_tabs_spaces/movement/inserteve_set_tabs_visibleeve_set_tabs_visibleeve_set_tabs ('');`| &"j&F T&F}$   4 }$  OA 0  }c$ @ 7k$} "Enter Paragraph Indent:No paragraph indent set0Lz&-&&( ,z,$&G @puovD =hy@R,3|=3S8: =&G =3S\1  1: &#hluF u   duF u XuFw l   = P 3 S  08m 8   O @  P  !P$1t$$R($ l%%'8 (*0 t__&h_`3`c=vdd&5dee,sff8gP hj=ps__`ab be=*gggg  gi iTkkjjkk l(mTn noqqrrTuv&5v  lww xy y} }}0,r(T (T 3|=,4lqs 4FE  = 83|&53|h3|&5x) M8 =    <o  }$ <o  }$ xo |a   7c$ hp 7$ X\ 7S$ @@ 7$      (  N  -  +  *   0  1  2  6 /$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T1"   J#l J#d J#] J#T J#I J#@ S   "  $  # EVE$MOTIF_MOUSE_KEYSEVE$MOUSE_LISTeve_overstrike_modeoverstrike_modeeve_insert_mode insert_mode eve_reversereverse eve_forwardforwardeve$write_global_selecteve$global_select_ungrabeve$global_select_grabeve$input_focus_grabeve$input_focus_ungrabeve$$client_message$kjjV03-021kvw" # $ x`y-y% z{ {$ # 8X" #8X" 8X" 8  -& %'  ( =*-)       & \ ,* + ,  33& 11 ,-   8- 3 - & ,-   8- 3 -   * + , $-.  DOWNg: ;=]=5>0 >@5 A AF( p(ITJ JXKL\M M4P R* + S, T TZ Z`fi jm3|m+ nn* oppq" P r&" r4 s$ Q t tv v|l f=K3|N =*3- =N eDF GhHHJ2 K KL LZRB RSTU UZ [\' ]^=KacdAe e4f ( hi=* km0 n ( q q r$t}8$u ux x~@d ( + * c'+" # $ ,- -0$ 0# 80 12 27 8$9:l ;8< =$>?= @A B$CD EF GH&*HI%JX%JL%J@%J4%J(&M<'M0i M$KL JO(wP P$QR^ STU(8V VW+ XY(Z Z[ \d](^ ^_ `0a(b bc"s  sv% wx x|%}& F  ' )  G  (H    I  )  J  xH  ,% ,% K ,% ) ,% ZBZB8 }($L %  M   &" P 4  =N )  Z BZ!B8! "#}0$&O &''* *0DOWNDRAGUPM1CLICKM2CLICKM3CLICKM4CLICKM5CLICKM1CLICKM5CLICKCLICKCLICK,CLICKCLICK2CLICK2CLICK3CLICK3CLICK4CLICK4CLICK5CLICK5\(\ * + " # $ -%  $ # 8X" 8X" 8 ` -&  % ' -)    0 -TB-T BA    !=K"3|"1 #=*$3$2 ** + + + .$0-0. 002 2<DOWNTYIK" # $ L LM MR$ R# 8RXS" 8SXT" 8T UVWX X[=Kd0 (e-e. f fk-k) Llm mr=Ks3|sx& Yy4 y$z* + { {=*32 +&,8 =* +   $-.  DRAGpW5 0" # $ X" X" 8 0 .    =K) P 0 + * % 6 $7  45 % T=" =2 =1 + * 5 % 5 .   UPUPCLICKT+? ? 8? @ $A }R$B B E F @G 5 I J %L L U V $ V # 8V W X 3|X Y & PZ 4 Z l\ =*] 3] 2 +^ _ &,_ 8_ ` a = e f 3|f g g & Sh h li =*j 3j +k k &,k 8k l m =t J#v &# w Xy W y (| T| (} T} A~ ~  T     %    \QHR0* + * + " # $ ! !" "'-'% () ).# .$ A/ /0 0 1,4-4& 6%7' ;-;) <,>%? ?(D]E E FIJAJK AL LN OQS* + U%V V X$Z-Z. ZZ\ \fDOWNX|OHR0nopsrs(u Tv v(w Tx xy3|yzz{= |3|Jc} ~  ~ == }($ }0$ NHR03|=Ku# IouR6 @==  =uu831x83 == DL($ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T+"  8uR % 4%.D& T'.H <;  0<      :J  6;  8}8$  4 ;  <  J"@ "$ $% %(=  (* *@+=,/=* 0 0 102}8$3 3:@IH$ I$ I# 8IAJ JKKM" N# P&SoPxPRU UV VX(2XZ Z[ [] ^xu__R_`1`a6bbe1veldeRejffsgg hj jo||,HGr; rrrx$G%BL%BT%B\%Bd&Bl'B` TB PB <B (B  7 $S   E=K|E=K(Q Q A  LEQB LB7 $S QB LB7 $S QB LB7 $S XQB DB7 $S  C $ # \@ " #  <0J" #   $O" # l' : #  8,J" # $   O"    |O"  h=" 3|S =*  '   ( A,   =N  (  S  xHA(T DS  =( 0 , h@(  #  $$ $%Q O'P " 8' (\*@ " # + +<002J" # 7 7 8pO<" # <|O>P # >P?: #  @8D,FJ" # $ K K LOP"  PQ Q ROV"  VXYP  YZ Z]^_, ` `b=Kc=*d3d - e ej jp`>(  ,  (- ]  &" P4 $P 4  Q  =K3|=*3 - +&,8 = <~(   #  $ DQ  OP "  ?   O" # LOP # $(]  9   tO"  0XP   (T , 3P- +8  D=K=*3 - 8,=K=*   4O" O4  A   , <:( ,  (- ]  &" P4 $P 4  =K3|(T ,  =*3P- + 8    $ 3  - +&,8 =  =*,  !L8O4  `&*( '    $ # A   O" # OP #  &* (  x : #  `& Y  =  =R  C  (O "  ! !& &,CLICK2CLICK2(h6(8- ]9 9: :=>?, @ @FG=*I3|IMHN&*NO(4OQ Q R=S SVRVX%Y4%[D%`%r|u rZ Z Yd\=u]3]^=v_3_  [aE " ac c dd e fffiE   ik k ll m nnnq  `s t!x=y yCLICKCLICK2CLICK3CLICK4CLICK5 <38R(vv] 2 8 l  t8U [ 8-TB   [   X      A           l   R     8   8  0  U    w  8   v  %  % '  ( ) }`$ * h+ ,   8, - 8. /  0 U1 1 4 6 6 7 17 RP8 8 9  : D; 1; R P< < = B B 8B C D  E  :6F  I & I  K K L vM M O P  Q  S S T  U V 5  X pO[  [ \  ] H_ B _ b b c  d e i  i j  k n    q  q dr s s ,v 7$v  w $z 7 $z      l  m P + 8   @l  m P +  8    0      `   &                  8p  o p  o  (      d     v     Ll  m P  $    @l  m P       8     /$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"         A     A 5  A   v   p  o  q o  (   = ! ( " " # 3# # \$ $ % : & 0( $) ) ) = , x- 3- - \. . / : 0 02 $3 3 3 =7 37 7 S8 8 9  : ; ; = => @    B C  F @G  H I }`$ J K T & U U V vW W Y YZ  Z 4[ Y\ # \ ] v_ _ a &Ga b 3b Sb Ac c ,d d =e =vh  i Um o o =p 3p \q q Pr :s Yt t u :v  x y { { =   = =   deletereturndeletereturndeleteevehelp  eve      next_screenprevious_screenmove_up move_down    $$R` Q     J   %  Q!  ! " " J$ % * D,  , -  . $/ &#/ "3 p 3 7 3|7 9  9 ,: & : = ; @=  = 0> > & > =F       F (G G QH QI AJ J @K I L M }B$ N O R =S UT T U Y 3|Y Z A [ ]  ] H^ & ^ =_ ` = a Pc  c @d d & d =e j Um &o  o p  q t t ,u } $v w w y z J{ =}  =     J   D( T   #     [  J  U     STRINGSTRINGpp@R,       3|  A ( V ]  $  V  43V ( T   &  =  4V   !V   V  3| V  I V   V  V  ( V  = , V   = 3| _V    U typestartendcurrent select_alltypeendboxboxstart0> ? @ A F G G J 3|J L  L 4M & M N = O `Q  Q @R R & R S = T U U X 3|X Y =*[ ^  ^ ` a  f Dh h i i j j t  k ,l &#l o %p 3 L%p . @% ' % % D % ' 8 % '  q r Hs t v w w y z ~ # ,             + 8  Q  p    D &#     $  L &#     ( T  ( Q'   ( T  l I @ }:$      @ } $      J       &G  ( Q   Q      6  &  6   Q6 7  `  & " r 6  }s$  r  5          ` 3    = 3|   6  =   6  = 3  \   8 3 &      & (( T)  ) 0+ + t, } $- / 1  1 02 =3 4  5 = 7 7 9 : J>   @ B C  D `G &GH  H (J Q1J  K L QL P HV W &Y " r Z }$] 5 _ ` b Ud f  f 0g =h i  j = m n n o p t v  v 0w =x y  z = Q~ 5    p ( #  h &   < &:      #  \       T  $    r         ( T  x  &x    &v    ( T     &x   &!  &v    \ 3 &x            STRINGSTRINGTEXT FILE_NAME COLUMN_NUMBER LINE_NUMBERTARGETS    SPAN LINE_NUMBER record_number offset_columnh T p &# ( T  Q   U        [    v S 0 = >  U S     ! 0 ) < + S / / = 0 0 > 6 `  8  }Ò$   } `x  8  }˒$   }   h    &# JZ #Tpu.Tpu$MainWindow.ApplicationTitleDh kV l{ q7$qv7$v{7+${7У$m  eve_set_default_command_fileeve_set_nodefault_command_file;eve_set_default_section_fileeve_set_nodefault_section_file;eve_set_section_file_promptingeve_set_section_file_prompting;eve_set_exit_attribute_checkeve_set_exit_attribute_check;sys$login:eve$sectioneve_section.tpu_section$ kkV03-011$vi vv|4 \7s$ $k , }$ $@~i ~~\ Lpl$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TY"7{$ t  , t 7$    (T P  \     z 7$    L}3$&xV 4!&L"V$  % %' '- $LOCAL$INI$ $LOCAL$INI$,m t DP<}8$  RT t 1xR (nqh  lNm 78$     7$     l!1x!!R!!# #$% %, -. / 01 "4 $ 4<7 67}$ 9(:} ;< <? ?K= = doMo QxXPp`a}x$bd dif}J$giik-ko7 ptrCr0 st}P$ uv}X$xy y|0|}7$  Q C ,}$  O }p$  h"$ <}$ ( } d}Ӑ$ rememberj    (Dr h xRT 01R 87$    &QP 4}$  (T    %!B4%#B<%%BD%'BL) 'L"B !8$B #$&B %(B.2OY/ /40}j$12 2 344 5`78,9}ұ$:; ; =8>?;@A}ɀ$F FL=do(Pt PPURT`xJJ@}$ JJ@Ds =3|4  J=  z =    }$   }$   7$7$ &(  &(U  0 { 1 V $ JJ@JJ@AJJ@  ,     2procedure eve$set_section_attributes; endprocedure%procedure eve$set_section_attributes; endprocedure;(Yt YY^(bw bbi0 hR4`}$J 7$7S$  ,Ds =3|&(  Q\ t};$J J})$ }C$=soM nuopM nmE =3|E =8E  E    X=3   1R   ,O , L  ==v8  &G#< }²$ };$J  J}1$   87:$ :=* procedure procedure extend tpu T4c c dhdd efw ffl(t HR0Ds =3|=& (T   P:3:& 3(],  P 3  0  8}$} %T. . // 0017$114 456 699:};) <$>>> ?@A AH4PL}$N NNT,[[[at$pJqstu uz7$y7$z {|&( }~ JJP    `p4%     A   @ }$ P> >F&$F(GTH HI&:I (J ]K K M&M (O ]P PQ ST [( \ \L^( nx^^R ^^ _` `k $LOCAL$INI$ TPU$COMMAND TPU$COMMAND;;lHR0Ds =3|  +x$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tf" =pu E (T x=pu E (T =:3=3P 883 4}$  =P8  P  =u33T568 8: :=7$>>@ @AB BE EF GH JK N} $ S7 $ pQ4 oQGS<SSXeve_set_default_command_file(''); eve_set_default_command_fileZ [}$^7$^1^^deve_set_default_command_fileeve_set_nodefault_command_file;lmo oq s st x7$yy{ {|} }    }$ 7$ p4 oG;eve_set_default_section_file('');eve_set_default_section_filed }$7$1eve_set_default_section_fileeve_set_nodefault_section_file;  }+$7+$3eve_set_section_file_promptingeve_set_section_file_prompting;  }#$7#$3eve_set_section_file_prompting!eve_set_nosection_file_prompting;L  }У$7У$1eve_set_exit_attribute_checkeve_set_exit_attribute_check;  }أ$7أ$1eve_set_exit_attribute_checkeve_set_noexit_attribute_check;  HHR02347679Ds 9=:3|:;;=&p=(>]? ?$A3 LADD=pEu FE F(GTH H$KK=pLu ME M(NTO OPP=Q:R3RSS=T8U3U V4W}$XY Y [|^^=_  `Pa  b=uc3cd3dfgggn $LOCAL$INI$ $LOCAL$INI$! EVE-generated code begin! EVE-generated code end! EVE attributes begin! EVE attributes endX               D     !p*  (+ T, ,P-& -//$00 13 4 449l  ` 7$ DH7$ 8@7$ 4<J# 7#$    7$7$integereve_next_screenEVE next screeneve_previous_screenEVE previous screeneve_previous_screenEVE previous screeneve_set_cursor_freeeve_set_cursor_free;eve_set_box_selecteve_set_box_noselect;eve_set_box_padeve_set_box_pad;$\V03-0264RthDJ%UP  T  \=3Y }2$ T=3Y }:$DJ%U 3|=*Dd =3P tT  8 8Dd = & !    D&J&K&L &b&dwsJ%UJ% l@R,   3|&`&&A=* !,"=*#3|#&3&&S' '(:+, ,-  ./ 2323223  5 E5 77&(T7 8 :;> >D l R0g h i { k Tk  l Tl hAm m +n n 3o o \o 8o p q 8v 3u Dv v w x z { } } ~ 3|~ O E T( E]  < m  m  3 m  EO F T( F]  < n  On  3 n  FO G T( G]  < o  o  3 o  GO H T( H]  < p  p  3 p  H  ` P B  P   1P 8   4( T      P  P A  P   1P 8   L P          &    &  4    T+ 5    (+ 5   "  4 H  4 = 3    =   = 8  3   h  = 8 3    =    Jc      P p    8   3 \ 8   8 3   O" E " $  $ (% T&  & p' & ' &(T(  ( ,) ) =* 8, / =0 (3 D]4  4 <6 l 6 7 l : 3 l : D< =D> D= D: &$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T`" > ? Jc@ DC  C D 9 E F P+I I 3I I \I 8I J K 8N 3M DN N P =V $RESTORE$CHAR$$RESTORE$WORD$$RESTORE$LINE$$RESTORE$SENT$ $RESTORE$@R,OPQTSTVWX X[3|[]]&^`__&``&A`ab=* d,e=*f3|fi3ij=vk3kkm G m n nuPyyJ z  {| |PJ""  DRP3|Y 3|Y  3|7P$7s$ 6:=&c 1RP T c & O(&c 3 L= = (Y t ,}$ Qw PS  = =Y 0}S$ &G @72$ \ @}$  go to  R8< ''#}$$%& &')*+ +07@$/7$0123 37 788}$9: :==&G=@ @,A}h$BC CF3|FGGH=*JK,6:N NP P`QQQ=R}$ST T U V=W W YZ}C$[]so]]M n]]^uo^^M n^m__aaa=dE deeff=g3|gkE kk=l8mE  m qE  qs st uu=v8w3|w x1 xR x y  ,O{  {,|} ~@  =v8 (&G#d H}²$  & mx=3| @}Р$ = =u hQqo7:$  3|  procedure procedureline   X(}8$ (}$P(R 3|&&G $}h$ P&A  Ho  p7$7$   6: &c  LO  c &c 3 3|c }{$  l,x  y{  ||}  ~~<`RPX}+$   g ^  7P88 ,(] e7K$&JZ7$&\JZi$ x7$7K$g  ^  ^  D  (    ^ ^  h7$^  ^ ! !"# #( -7P-5- .0&m01 13Z34&45Z5 687  8  88 9 : ::@ 8A  B  BB C D DDKREPLACE_DIALOG REPLACE_DIALOG.REPLACE_OLD_LABEL REPLACE_DIALOG.REPLACE_NEW_LABELREPLACE_DIALOG.REPLACE_ALL|&W 'Q ()c)= ++b+J ,,d,J -J$17P12882 345((6T7 78BpQ  S3|Sc T=*VVl WQ  ]l]& (]d _l_J `f  b3|bZ ddb eb Tf  fgY" hiY  pg pi qi )qTr r$sis  ve x x8yi zg Sz {~e ^ ` `  i g S` ^ S8 ,V g j j )T $j  ,g h h )T h ^ a a  ,^ _ _ V g  S  T   0R   [ R  4+A  e ] ]  `   O$ ]     O$   t  H 0R     . Q c= lbJ ldJ J$}z$X}$ }$ !3|!U %3|%&Z&= (l'Y(J )) -e. .] 0] 0 16=73|7Z 8f  ;; AeB B[ C[ C D.|$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"1E EIQ JdM3|Mk NcN= OJ$PPUR[ RS] STf 8TATU] UVS 8VWT 8WAX X_7P_5_ `paY Tb  b,c7;$c d$e7C$e ghiY Tj  j,k7#$k l$m7+$m sx7Px5x ypzY T{  {,|7;$| }$~7C$~ hY T  ,7$ $7$7P88 t] [ 8 [ ] Q $c= U= (] ep&SJZ(T i $ L $  Q 4J$k=  -O>A [ ] f 8A] S 8T 8A     U= 1RP  ] [ 8 [ ] ]= Y T  Y" Y   REPLACE_GO_EACH_DIALOG,REPLACE_GO_EACH_DIALOG.REPLACE_GO_EACH_LABELREPLACE_GO_EACH_DIALOGdoreturnXP0R  Q c= lbJ ldJ  J$ X }$ 7P88 4((T  0R  T  S  T  Q T+]+ &]& - -W 0]0 0=131Z S2 23R  5Q 677U:Q ;8;+< 8< =@>7P?@88@ A<EGi J$J KP7c$RR\ S\ T T$U VW W[-\\ ]^\K a\a   b`d f\ g<j jk\ lm\ q\q1 qr\ sRSsu\ vR SvAwx\ yR SyAz{A| |}W ]1 V P $^  i P $`  j P $a  Xh P $_  `  R |3|k ^1 283|Z k= T" ,^1 28X oX Q U\ R S8 pQ  g}$ 3|c J$  p\ RS\ RK SA   \ RK S\ R SA8    REPLACE_EACH_DIALOGexitؐ0R  W T  8] =8UH$F}$G H=*I INt؏P S7$SYeve_set_cursor_freeeve_set_cursor_bound;8`]}#$^ _ _ct$e h7#$hneve_set_cursor_freeeve_set_cursor_free;  d3\ $  $    488(  8r    F      3 83=  F   (,Y8 3\ 8T 3|&5&Pn&h  8     3     P A     P P 8   8       ;  v E   =    =u $  8        D  (  ; uE" =(  8(  $D  4b 3b b Sc c d :g h i i l 8m 3m n 8p p r  r s 8v 3v v w  x F x } ~ ~ ( ,  Y 8  3  \  8 T   3| &5  &Pn   &h    8    @R,           3|      & `  &  &A   =* , =* 3|  3   P  :  $  8 0      3     F      1  =   xR4T         3|&@& =u: =u 3  S   :  l33=  (=3 !(3 ]4 4$5 5 6 6 : :$;\ <[ =l> ? ?,@ @ A A C C\ D D[ H u"$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T+"BHN(q ]r r$s s t t wy y{  @        H~&#4P  &H&V ,&3  D   @ &  (C]  7s$J JaI&hvJJbJh:  C Jc!J"C $ $&C & (C * *,C , 0&,050 1 2J8~:}$;4CPD DFFGIKK(LTLL(MTN N|O&H P`Q=R3|R&S&T T U WlZZ [,4cPd dgS |h}$ii=j3|j&kk&l l m p4uPu4vvAv4wPwAx x{\ |,4}P~ ~  Z \  (# <<< (Z  \ Z \ Z \ (4P   MAIN0x}$PxPR4 & && &&wPR4y z&{|~ && &&wPR4 & &I ,}:$ & &% &vPR4         TtuR`  Q J  Q J&(J     JtPR4i j&klpn o&pr&s &t& tu&vv}tshR@ &   && &   & & rRl & Q J & Q J&(J& &   & & Jpl&Q( ())J,-J/1312&5233&(344J8&(,889J;<<==@3|@@S@@AAB=C D12DD8F FG3GJ=K:M3MM\N NOTPT PQ3QQ3|R RhS3S3ST U=V:Z3Z[=\:l]] ^`=aaJcdJg gn TmppAq q,r}*$st tw &x y}$|7$|'||eve_set_box_selecteve_set_box_select;plA ,}*$  & }$7$'eve_set_box_selecteve_set_box_noselect;k  }$7$$eve_set_box_padeve_set_box_pad;j  } $7 $$eve_set_box_padeve_set_box_nopad;eve$$detached_cursor_action0@jI M Ointeger$ j??V03-0118iD(<G}z$HI IKKP@Q7$Q}$R RWm WDY Y4Z}$X[ [^` `a bcf fkATTACHhRhm ,7J$ $7$o } Xt =m L7$7$ D7#$7$ (t ] ds 4m s s 3 s  t ( T A lm 0}$t  0}$t  Ot  w `Ut |t  8O t t =P UH t =UXt = SHELLDCL $ set noonc0H( }$    7$7C$  4}$  # # $% &(& !(* *+ ,l--u// ]/ u00 080 10u22 I22 348 89}$:U; ;< =,>}$?@ @B C$D}+$F G$HI I JKL LR`PR bche}ʲ$fg ghk k,l}$mn nw w x& !  lu ] u 8 Lu I u  8 B & !  l      2 8.$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"S h  8  x  pt B & !  l     4}$  d2 )T     l}ʲ$      |      x        doZDh<}$ #@$7$$}$% %)+ +,O -.O1 17(ZA AAIdY          (            PAQARASA wAxAyAmA tAuAvAlA rqArAsA NMA <pApAnA BBBB BBB B B!B"B! BBB" wBBB# RAA$ =DABACA( BADACA1 2 3 5 7 [ 9) :(<]= =?} ?@} C3 } CD&#jE E4F&#jFJ GHJKJQL&QMJ&(O ]P PQ Q T return doPF1KP7KP4KP1ENTERKP0F11F15F17E1E4UPLEFTDOWNvt100EVEvt100_templatelk201EVElk201_template lk201 wideEVElk201_wide_templateEVE EVE$HELP_KEYSEVE$HELP_MAP_LIST $HELP$PROMPT$eve$null$tTaaV03-009@LTe&(Teemjml7$l \Xo7 $o ?; p|r7$r u7 $u x y |&| ~&~ EVE/usr/lib/tpu/eve_help.hlbuTPU/usr/lib/tpu/tpu_help.hlbuEVEeve$helpTPUtpuhelpGET_INFOtpuhelpSETtpuhelpevetpuR( # ]  T  #   $   %   &   '   :6 # $ ( ]  ( # \\H ,   7   @ :6, %  % ( ]  ( # \\H ,   7    &  & '    @ @O  07$ . &QP 0}c$2  0}$ 2OR( 1R(E8 0uR d(T ,7$ $7 $X8 }k$ EVE$_KEYS K}$   =uuu& Q7$17$ tM 7$ Pt"N ,&Y @7$  (7$ Ju P 3  : 3 &N  7 $Y87$Y8 TS &#C0000 =:287$  3  !\Q#0D #\%2. % & )&N3 )+2. Y+ ,),0DA,-)-9DA- .\2&N= 2u3 3 4 4 5 6\l8 8 Q: :,<7$< = ?A=B:CD DLE3Eu\F F$G:H8KtKK"K M7$M N3NQ&N3 Q RTuT=U[ !#*  _!#*  0EpRz z{JQ} ~Ju8 $  T JQ Ju8 $  T}$&(  &u(JJu&Q,&Y7$02 2. &O2 0&O3   8&O  P u=  MT qN oH E  =1 L  =:L   $  BZ,A @7$   D7$ 7$ =1 t 8  =:1 t 8  u=Mqo E  L1 =L  =7$  1 t    8    8 so  E   Tl" u=MyqsomE  4  1  !$3$&%& w%%&='1M''  (+ +$, / 2u4'^$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tj"d2=6M5q6lo6f7E  7889=:Q:;1M;; <==1x==R=> ,? ?A AG QIR IJ=K:L*Q R=S:TY Z=[: \a b=c: Hdd8eFj k=l: mr s= v0xux=y; yE"y=z8{u{3{{|u|=Q~ Ju8 $  TJX~~  doG~~ reverseF~~ >abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789~~ PF1KP7KP4KP1ENTERKP04L7<&N<??A)TBME BC CF)FFG)GF8G HI IL)LAEM)MCE8M NO OR)RlES)SnE8S TU UX)XpEY)YyE8Y Z[ [^)^PE_)_SE8_ `a ad)dFe)e"F8e fg gj&N3j kp5 ' uu=m|4(LTM MN3|NOO=QQQ$R8S TUU=V3VSW WX XZ8\\\] ^__=a3abvobvbE  bd d<eee=f8 gh=j3jk%l8m3mmSmmn8 op&Gq qrr=uss:tuotutE"t=u8w3vvxxy  z{| ~= =  - 03| ({ ] <z z 3 z { l|'{ { =={  $CAPTION$[EOB]keypad_captions/|~~lP ,ljl  8.( T P     }$  P @!  "#*# $%%-vt100 lk201 widelk201 -xRHQ JuQ Ju&u(Ju 7$P Q    0Q R,RkS:61   p" # $ %4&:' (:Q- ./Ju6 help keypadHELP help keysKeyDefs _("');p*1t8 t8X8*I1I J$KL M~NNO PQT(TU VHuWWRWlXXR'XZ[(*[] ]$^_ `uaaRalbbRcbc(ce ef ghlhhRchuiiRij"m  n\o1p plqqsRst ,uRovHmvwRnww xy1z zl{{}R}~ ,Rm~RnR ,j~Rn l1 l~ RRnRn ,Rom tR ,Rm~RnR ,j~RnR ,j~Rn RR        h"))\5u :u,& 3u83"8:  8p!Y%  B   B  !B  O    P&OP  &N\)pA)yA8)lA)nA8A)PA)SA8A)B)"B8A l7$Y  , 8  !" "&&N3& ') )/   t u ,w &x x @y '\y z (Dz { ~ '~  (  eveeve(4 C ,D\@H h , XD( EVE$$X_HELP_TEARDOWN_WHEN_DONE OEVE$X_RESTORE_SENTENCE EVE$$BUFED_FORMAT_LINE EVE$X_USER_WIDGET_BASE 4EVE$$EDT_APPEND_PASTEEVE$$X_KEYBOARD_TYPEEVE$$RULER_SET_SPACEEVE$HELP_STATUS_LINEEVE$$X_CS_HELP_TYPEEVE$RECT_OVERSTRIKEcEVE$WPS_INSERT_HEREqEVE$WPS_RIGHT_ANGLE2EVE$EDT_DELETE_LINEEVE$$X_BUFED_RANGEEVE$$RULER_ADVANCEEVE$$EAT_WILD_CODEYEVE$WPS_UPPER_CASEXEVE$WPS_LOWER_CASE=EVE$EDT_SUBSTITUTEEVE$$RULER_CTRL_EdEVE$WPS_DATEhK$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"u_TIME1EVE$EDT_BACKSPACE<EVE$EDT_OPEN_LINEEVE$$X_HELP_MODEEVE$$RULER_MOUSEEVE$$RULER_SCALEnEVE$$X_PAGE_SIZEWEVE$$CASE_CHANGEmEVE$WPS_PAGINATEiEVE$WPS_SENTENCE:EVE$EDT_CHNGCASEEVE$$RULER_LINETEVE$WPS_ADVANCEaEVE$WPS_REPLACE9EVE$EDT_REPLACE EVE$HELP_PARSE`EVE$WPS_REMOVE EVE$WILD_CODEk EVE$WPS_PAGEh EVE$WPS_LINE8 EVE$EDT_LINE EVE$SET_MODE$(EVE$X_HELP_DO_GOLD_LEGEND$ EVE$$X_HELP_TO_BE_IGNORED$0EVE$EDT_DELETE_START_WORD EVE$$IS_ENTRY_DEFINED/EVE$SET_NOEDT_KEYPADNEVE$SET_NOWPS_KEYPADEVE$DEFINE_KEYBOARD5EVE$EDT_DELETE_WORDEVE$$DUMP_WILDCARDKEVE$SET_WPS_KEYPAD,EVE$SET_EDT_KEYPADEVE$$GET_COMMANDEVE$SET_KEYBOARDEVE$$RULER_WORD!EVE$HELP_KEYPADP3EVE$EDT_APPEND$EVE$$X_HELP_CMD_WINDOW_FLAG EVE$X_BUFED_HIGHLIGHTINGEVE$X_WIDGET_TAGFEVE$X_SPELL_FLAG EVE$$X_WILD_F EVE$$X_WILD_A$ EVE$$X_HELP_AMBIGUOUS_TOPIC EVE$$X_HELP_THIS_TOPICP EVE$HELP_DISPLAY_TOPIC0EVE$$RULER_TAB0(EVE$INTERNATIONALIZATION_DECLARE_SYNONYM EVE$$GET_SELECTED_ITEM\EVE$WPS_BOTTOM(EVE$$WIDGET_NEEDFILENAME_CANCEL EVE$$X_HELP_WIDGET_SHELLEVE$$X_WILD_CONTROL[EVE$WPS_BACK_SCROLLZEVE$WPS_ADV_SCROLLEVE$$HELP_SCROLL EVE$$X_WILD_L6 EVE$EDT_EOLG EVE$$SPELLE EVE_SPELLEVE$$SHOW_BUFFER_INFO$EVE$$RULER_SET_RIGHT_MARGIN$EVE$$RULER_PREVIOUS_SCREEN$EVE$$RULER_SET_LEFT_MARGIN$zEVE$$X_RULER_RIGHT_MARGIN yEVE$$X_RULER_LEFT_MARGIN pEVE$WPS_PREVIOUS_SCREEN EVE$$RULER_NEXT_SCREEN UEVE$WPS_SET_DIRECTIONEVE$X_WIDGET_REASONEVE$$GET_WILD_TOKENEVE$$DO_SUB_PATTERNoEVE$WPS_NEXT_SCREEN@EVE$EDT_SECTION EVE$$X_WILD_NP EVE$WPS_DOWN(EVE$X_BUFED_BUFFER_NAME_LENGTH EVE$$RULER_SET_PARAGRAPH fEVE$WPS_CONTINUE_SEARCH EVE$CALLBACK_DISPATCH<EVE$$RULER_CTRL_H(EVE$$WIDGET_WRITEFILEPROMPT_OK(EVE$$WIDGET_NOFILESPECEXIT_OK$EVE$$WIDGET_NEEDFILENAME_OK EVE$$X_HELP_SAVED_MARKEVE$$X_HELP_TERM_MASKl EVE$$X_WILD_U0(EVE$INTERNATIONALIZATION_MODULE_PRE_INIT0%EVE$INTERNATIONALIZATION_MODULE_IDENT0%EVE$INTERNATIONALIZATION_SYNONYM_INIT,$EVE$INTERNATIONALIZATION_MODULE_INIT(gEVE$WPS_CONTINUE_SEARCH_SELECT$EVE$$UPDATE_SEPARATOR_COUNT$EVE$WILDCARD_MODULE_IDENT$eEVE$WPS_DELETE_START_SENT EVE$DYNAMIC_MODULE_IDENT EVE$WILDCARD_MODULE_INIT EVE$FORMAT_SYNONYM_INIT DEVE$EXTRAS_MODULE_IDENT CEVE$EXTRAS_MODULE_INIT EVE$$GET_PARENT_WIDGET EVE$MENUS_MODULE_IDENT EVE$FILE_SYNONYM_INIT EVE$HELP_ENTER_PROMPT EVE$MENUS_MODULE_INIT EVE$SHOW_MODULE_IDENTAEVE$X_SCROLL_PERCENTEVE$HELP_NEXT_PROMPTEVE$SHOW_MODULE_INITJEVE$WPS_MODULE_IDENT+EVE$EDT_MODULE_IDENT-EVE_SET_KEYPAD_NOEDTIEVE$WPS_MODULE_INIT*EVE$EDT_MODULE_INITEVE$INVALID_EVENTwEVE$$X_RULER_LISTEVE$HELP_WIDGET_EVE$WPS_SELECTBEVE$EDT_REPEAT>EVE$EDT_FNDNXT EVE$HELP_TEXTS EVE$WPS_RIGHT EVE$X_WIDGETR EVE$WPS_LEFT EVE$WPS_HALT? EVE$EDT_SECT EVE$$EDIT EVE$$X_HELP_SAVED_WINDOWuEVE$$X_RULED_WINDOWEVE$$X_WILD_BIT_7EVE$BUFED_SHOW(EVE_SHOW MEVE$SET_KEYPAD_NOWPS1.EVE$SET_KEYPAD_NOEDT1 EVE$$RULER_SET_WORD_WRAP EVE$$RULER_SET_TAB_STOPEVE$$X_HELP_VT100EVE$$RULER_BACKUPEVE$DYNAMIC_HELPEVE$SET_CS_HELPEVE$HELP_SETUPVEVE$WPS_BACKUP EVE$$X_WILD_Pr EVE$WPS_SWAP] EVE$WPS_TOPQ EVE$WPS_UP$EVE$$BUILD_DECLARE_SYNONYMS$EVE$$BUILD_MODULE_PRE_INITS$ EVE$$INSERT_INVOKE_STRINGS$EVE_SAVE_SYSTEM_ATTRIBUTES$EVE$$WIDGET_FIND_EACH_YES$jEVE$X_WPS_PATTERN_SYMBOLS$EVE$$X_WILD_SUB_FUNCTIONS EVE$$X_HELP_SHOWING_KEYS EVE$$BUILD_EXIT_HANDLERS EVE$$BUILD_MODULE_IDENTS EVE$$BUILD_QUIT_HANDLERS EVE$$BUILD_SYNONYM_INITS EVE$$BUILD_STATUS_FIELDS EVE$$BUFFER_LIST_STATUS EVE$$BUILD_MODULE_INITS EVE$$BUILD_PARSER_FLAGS EVE$KT_PUSHBUTTON_CLASS "EVE$$TEST_BUFFER_BOUNDS EVE$$X_SHOWING_COMMANDS EVE$SET_KEYPAD_CAPTIONS EVE_SHOW_SYSTEM_BUFFERS EVE$$UNDEFINED_KEY_WPS {EVE$$X_RULER_TAB_STOPS EVE$KT_SEPARATOR_CLASS EVE$$X_ALL_CHARACTERS EVE$$HELP_SCROLL_BARS EVE$$RENUM_SEPARATORS EVE$$X_WILD_FUNCTIONSHEVE$$X_SPELL_PROCESSEVE$INIT_MENU_ARRAYSLEVE_SET_KEYPAD_NOWPSEVE$X_SHELL_CLASSEVE$$RULED_STATUSEVE$$RULER_STATUSEVE$$X_RULER_KEYS)EVE$X_HELP_KEYSEVE$WPS_TAB_POS;EVE$EDT_SPECINS EVE$$X_WILD_S ^EVE$$CHOOSE_PASTE_BUFFER EVE_SHOW_DEFAULTS_BUFFER EVE$$HELP_POST_FILTERvEVE$$CONSTRUCT_RULEREVE$$ACCUM_ALL_ATTRtEVE$$X_RULED_BUFFERlEVE$WPS_PAGE_MARKERsEVE$$DISPLAY_RULEREVE$$X_CS_HANDLEREVE$DELETE_BUFFEREVE_DELETE_BUFFEREVE$DEFINE_RULERxEVE$$SAVE_RULEREVE$$GET_RULERd7 EVE$EDT_CHAR(}EVE$$X_RULER_RIGHT_MARGIN_ARRAY(|EVE$$X_RULER_LEFT_MARGIN_ARRAY$EVE$$DELETE_MENU_ARRAY_ENTRY$~EVE$$X_RULER_TAB_STOPS_ARRAY$EVE$$X_RULER_PARAGRAPH_ARRAY$EVE$$X_RULER_WORD_WRAP_ARRAY$%EVE$$X_HELP_FAC_TOPIC_ARRAY$EVE$$X_ACCUM_DISPLAY_ARRAY$#EVE$$X_HELP_FACILITY_ARRAY$'EVE$$X_HELP_ARG_LIST_ARRAY$EVE$DEFINE_USER_MENU_ENTRY$$EVE$$X_HELP_LIBRARY_ARRAY EVE$$X_BUFFER_ATTR_ARRAY EVE$$UNDEFINED_RULER_KEY &EVE$$X_HELP_INVOKE_ARRAY EVE$$X_HELP_THE_FACILITY EVE$$X_WIDGET_HELP_ARRAY EVE$UNDEFINE_MENU_ENTRY EVE_UNDEFINE_MENU_ENTRY EVE$DEFINE_MENU_ENTRY EVE_DEFINE_MENU_ENTRYEVE$$BUFED_GET_ENTRYEVE$IS_HELP_FACILITYEVE$$ADD_MENU_ARRAYEVE$$GET_MENU_ARRAYEVE_SHOW_SUMMARYb EVE$WPS_COPY EVE$$FIND_COMMAND_INDEXEVE$$GET_MENU_INDEXEVE$$SET_LIST_BOXh#$X%%'T(( + 79\ABPDDEGI PK!xM"U* W+X,,X-TX.|X/Z0[1[2\3_4Hc5e6e7h8Pj9l:8n;q<q=(r>tt?t@\vB{CXDxEGLITJdKL̓MNPQdRST<UtVWXPYHZ@[\]^X_`hahbhcd|e$f g|hiHklHmo$pxq̽r@svxHLXdhl x48(\XP  \p !$%&'h)$****8x:?@BTCDExFXGHIJ KLMNOOUZ`]L^_haaTdlHmnho|ooop4qrsHuxyy\|}}8~~( ]   ( ]     , j <    ( ](]A   & l O    & $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ts"3    h35  6(7 8 8 9: :Ad   :6 :6 (L   u  R  1 R  1 R    & x &vY  &cY 8 ,        get_infoset|4J3  =JL&(J8R(vv         5 :  | &=  $  8  ~u=A \ 3| !!& ! " %  '' (!( )$*  ,", . 6:0  O2  23  6u8 ;&l; ?JQC D&QEJ&G GMeve HR0dvefgkijvko   pq  t w :6x y |s# 1RP&x Y 8  T     &      1R P& Y 8 (    &X k oL  ,::Q QA X  &P  & ,& P $  &)Y D&P 8 ( @1lR P(WvxlR (f   g    ( huR  5,8 h&;P &(P A     1lR R (  l  1R  ( " "u## &R &( && u' ' ()R )j- o-n-. ,//1 1@4131o34R4758p: :< <Dl=m>> @ @lC zC H<JJL LM T5 UWWXvY Y[\3|\]=^ ` ` a1a c=d  h hjl  olTlm ,nnp pTs1r1orsRs t  u$v5 wx  {1{ = ; 8}$< v  @3|= =S7 $  U tpuevetpueve_eve$kt_topic_eve_list_of_topics??keypadevetpueve(((get_infoset)_()_ _t8R(vv 50 O  <        (}$ U     0    <Q h a      5   _at_file@ p\ u 7 $  U   =    ! " '" # (# j' j( o( m( S( ) O+  + (, }$- U . H/ 0 SRL1 }$3 U4 l9 m9 9 : ; 6= 'u? u? =@ A ,B M|qB umB B E B C xE uF 7 $F G PH PI L  M N 6:S T RYT 8T U V  W X  Y \ 1l[ \ R\ ( \ ] ] l^ ^ _ e mf mqf If nf f :g 3g ug g k 3k uSk k ,l :o  qo up E p q q r s RYs 8s t u =v 3v w :x my mqy Iy ny y :z 3z z  |   u =  q   Du" = 8 7{$  Dv  = P PO   2l *m    :   u = ;  E" = 8 u 3   u =   =  U   _  ~I~~I~  ~I~ @ O > @7$  87$  =  D7$  <7{$    H     $Q             "  |  ( }$       X  ( }$         U   &uG &cx  & w     U ,#='  '((J u )4*7$*J u1<8R(;v<=@?v@B DDAE E(FGG=J& K KLO=PP=Q RS1ST8V3UWW X=vZ Z[\6] $4w$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T#"^3^_ _=`8a3aa b=ve el0du uv vx 5x xz 5z z=|>|>| }~&#  # L&uG&cx  =&cx =   1 =   next_screenprevious_screenmove_up move_downT0 Q Y   3|     =  8 3    = 3  S  8 = 8    t  8 $: u: =? M ? q? u@ n@ @ E @ B  B C  D dE =F F G H PI :J ">oJ 7J L M :6N &# N P P Q &Q XS  S XT )T V  V 0jW W X PY \ &# 3\  ] P_  ` g o !#* o            " " "( 8 ( <)  *  + ,  - 0  ? U=A  A HB 7$B BB  C @D 7{$E BE H  H I I K M  M N `O 1O RPP  P Q  R \S 1S R PT  T U  V W W [ -[ O]  ] ^  _ tb B b d  d (f  g h j %j n o Ao p q Aq 5q Aq r &uGs &cxs s 8s t u v 5v Aw w x  y Pz \{ X5{ A| | }        d  , 7$  $ 7 $    p l ]m P + 8   @l m P +  8    " t  ( }$      X  ( }$ (       d   &           helpreturn next_screenprevious_screenmove_up move_down next_screen move_downprevious_screenmove_uphelp  eve@R,       3|  =*  &   &d   &b s  : 3  =  P     =*s  : 3  = =*  P      %  (A T KA  m4 YX$ , NM$ EVE$EDT_KEYSKEYPAD/usr/lib/tpu/eve_keyhelp.hlbuKEYPAD eve$keyhelp$$UUV03-004$_ PAe$g. ggk}}A~ ~ Q   O p 8/  }3$  R( 1R(8 0uR}b$ EVE$_KEYS0R(/ A  Q   X @    $ \ &=u 8 :=u  @R, !" "%3|%' '( (++&,`--&..&A./0=* 2,3=*43|47377S8 89:= => A4BC C D E EI3IJJ1JwJJ8LM8P3PPQ  +TT GT V VWX XZ1 [ [\=_ _eR `w}0$xyz{ {}}$~  3|   ((T& 6 \$} $ ==H= =  8 ,}р$  4  4 = hHR,3(Tk =3k \ 83&Lk 3 8H(9}I$   t  =k  3=k }I$3k S  P= #$t- --3(L@R, 3|=*P3\8 81P  T  3\ < 8=v : p3S  =:=u8 D @R, 3|&H& ,=*  & Tlچ$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"=*T" 8  & T=*T  8  =*T  8 8 ز@R, ! !$3|$%=*'P( () ).T/  /,0=v18 234 458 6P7P78P888 9$:=u;8>=uEPF FG8J JP hR@]^&_`afcd&efhij jm3|mn&o=*tttt  tv v(wTx x||$}} $~ ~=   & &  &  (=     (T |4 l    3P HT  (=  d P33 T  ,8  tY ,8  (= (OPQ QU U VX& !XZ Z([ [\ __ a ag\`qrs svPw8x x~H 3|=*Q " d3\ ,83 \3\ ,83=9 UQ " ` (=8 $= X (=8 $=>   t~ D 6    l<P   3|P D& & @  4==u= =uX̦@R,(T+8 =u 3  S  4 &5x   L &53|&5wX +(T+8 =u3S 4 &5x   !L"&5#3|$&5w$$X( ()+--.3|.O1 125 3`Q5  5(666 7 888 :;== >?B3|BC&5CD=uF&cG&SGwGGFJA JdJM MNQR] R,S&^rGSSQW" W1XX[&[] ] ^&d^a:de3eeSf f$ugg h<j3|j&5tjjXo opr rxpRTH&  &  }$ &   =Q lU  }`$ @ H~  u (|H )nA ,}$ @ T^ $ J  delete 0123456789specinsНH $::V03-012FPG G,H}b$IJ JMNO ORRRR  RT TUU^^&)+^m8^ _aF a$b c  dfF g kxnn&*m7$n"n op  qr v@ww% xy y~}[$G  lm}9$ 0&x *}y$     ܚ R`h &J@ J$7°$oJ@   &J@ 3|& J@ ,} $   mt$  H}$J@  (T  (T @  &  t(T 4 &  ,}ʳ$ mp&T&*}[$ (v ] @u  u  3 u   v (H TH A pm v H Hv H HH HH &H 2Qoq!m l#V# $p%A%,--../&40 081=2=u3335&46 687=8=v939;;>?x C \E &I" x  J &KKK L0NNO=x P U=VVx XmTpZfoZjmZoZ\mZ[HH \? ]_Hpe oemeoemefHH g<phnohimhoh[mhhOk?n=p&Gq qLsm(t}r$ux vw}Z$ y{m}}Ox  w Lx |x E>w$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" 8O x x =x  =Xx =   Hx x    8&G   P lY H838 = 8 8=   m8pomHH (p{oyHH J@    LNGSPLCORSYS$SYSTEM:.EXESPELLset noondelete:==deletecreate:==create.tmp.1 sys$scratch:/usr/bin/spell   > CREATE/TERMINAL=DECTERM/WAIT/WINDOW_ATTRIBUTES=(ROWS=24,columns=80,Initial_state=window,title="DECSpell",Icon_name="DECSpell") SPELL  /output=spell  /output=/bin/rm  $ delete ;* ԍ    w   q  j ( ]   H &#cx    6n  y  z  {    |    }    ~        " " | # # } $ $ ~ % % | & & } ' ' ~ ( ( | ) ) } * * ~ + + | , , } - - ~ . . | / / } 0 0 ~ 1 1 | 2 2 } 3 3 ~ 4 4 | 5 5 } 6 6 ~ 7 7 | 8 8 } 9 9 ~ : : | ; ; } < < ~ = = | > > } ? ? ~ A O C EVE$WPS_KEYSEVE$RULER_KEYSEVE$RULER_LIST$ĉV03-007< PA$\M 4A  Q  O p 8N  }$  R( 1R(8 0uR}J$ EVE$_KEYS(0R(N A  Q  X @      D TL UK V VV\Dą^L _K ` ``fD|hL iK j jjpD4rL sK t ttz4|U  }S }}4Rh  JS  JT\  "   JS ! JT!" Q% " % t' Y'  ' T( ) ) JS* * JT , l. Y.  . T/ 0 0 JS1 2 JTe5 5 ; eve$undefined_key (last_key)eve$undefined_key (last_key)eve$$undefined_key_wpseve$undefined_key (last_key)4|U "R hDLKA 3P  ,K 3 d83 8 <3  ؀ U     (T l4 l    3\ P33 8K L  ~ U     (T l4 ,l   , 3\ P 3 3   , 8 L K  |P    "#$ $'U  )) *L +K - -14|7P8 89 9;<= =@U "BB CL DK F FLT{U3|UVVWW XX\T({e3|effgW hhnz| | }& ! k  ] k    k  $}$ "p&  3 PASTE_BUFFER_!ULl0y ]     xP D     ^  <&"  w$& &   @^   (T $} $  &=     \  4 #   &  &}$ u#$% %(^ (* * +" ++./ /54u=>? ?B^ BD DE# EEHI IOtUUVWX X[\] ]`"(`b bh!20%D t@R,wxy|{|~ 3|&`&&A=* ,=*3|3S 8=}$ 8383 E"M E" 4=3 4=3 8 p=uM E  (=38 @= E" =u E  8=8=M$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T̕"3 x=B E  (=38  =8B E  =3 p=8 E" x=uM E  (=3 =3Y 8B E  =3   H  O  Xm (  " "(plRd1Y1(2T282 344J67>9Y9(:T:8: ;<<J>@AB BEEG H IIJ JLDM MN N O PST TV WXX=YF YZZ=[3[[\[ \]8`` aaJc ciT8j3|8 W i@R, 3|E  L=T" 3\ t8E " = $=Ej   = $=W   T" ,   = < T   $=}j$ T8g3| W @f   $    P , G8 "P    e R``Pd $Ja $Ja L K U   <q6quovqE"  @=:n (=ln :=usodE  83=83  q uo v    E (T `=83   tX T=:=v3 =" $\&='8)3))\* *,--&"-..Ja/P0812833Ja 4$5=v68:3:< <B       P`F FGL HK IIMP_Q QRL SK TTZp\_xRHeg gh jkrmo op rtuv vy3|y{=*} ~ T" D3\ 8    L3\ 8 \T" D3\ 8 (=   >\0 J &&G & =* 0&   8J J8 <[8R(t(] P&#cx ,&   t u L  JT JQ( ] <  3  L&u b&u n   &u b ) +&bt++,.&u h.3 3 5 5t 78u < =J j>M>`> @v BJQw DH H H=jIxII8J JPeve$$ruler_mouse_listEVE$$RULER_MOUSEEVE$$RULER_MOUSE_LISTEVE$$RULER_MOUSEEVE$$RULER_MOUSE_LISTeve$$ruler_mouseEVE$$RULER_MOUSE_LIST $WPS$Ruler$[End of ruler]return eve$$ruler_statusreturn eve$$ruled_status  V@R,       3|  &t "  &t F  &t W  &u P  &hm     = J  "  &Pt  ( T   =u m   p m   P 8   $  8 x @  0 (    1o  u  R )   1l  R   8  < =uu  8   =uu  8 G   < =uu  8  t      P!  ! <" =uu# # 8% * t  * ,  , P.  . </ =uu0 0 83 !8 => !#* T TLRPWQ]_Qa ac7$cccd(|e e,f}j$gh hj)jlm An n,o}j$pq qt&t "ty u&t Fuz v&t Wv{ xy | yz } z{ ~ ~t  ~ t   }Ð$  0123456789O A ,}j$ | y } z ~ {  t   t  Qy Qz A $}ڲ$Jt y z &t WY{ J)t { v H }$ $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TQ "  Mo&t "&t F&t W&u P&hm ,} $  ,}$ (T jXD (l4Qn 1xRl (s R  ) P \u R 1 Rn   H ) ) 8 tu RQno1R n l u 1R ( n (Qk  $ 1 RT! !8"1x""R"&{ 'J)t { (v )}$* *0      H9;o;;=&t F=Jt ??QCQC~AD DEt  QHXQHNAI IJt  Mv NH O OUWwPpG^`o``b&t "bJt ddQgQg~Ah hit  QlXQlNAm mnt  rv sH t tzWwPpFot  QQA t  QxQnAQ`AQRA t  v H  PpLlrREot  QQA t  QxQnAQ`AQRA t  v H  WwLlrRDt  oS t  t  oS t  v H  tDJ  1 8 tCJ" &P 8  dC & T          `Bb d =ve f f g 8i i m 8LBo q =ur r x B  &  Q     8  (  ! 8% ; % E% ' ' ( = ) @Q+   + , 8 - . 81 1 7 @@ B & B QD   D E 8 F G 8J EJ L L M = N @QP   P Q 8 R S 8V V \ T? -   1 X -  h  Q   -   ," *. 8 }$  }ء$   help ruler keys|>(C u TD  D @E &u PF t F M u M M U V V \ =(a u Tb  b tc &u Pd t d Ph Pi u i k k k k l l l u v v | <(R        = J  J   &u P  &u h j o  M   J  =u  j    Q  1o   R  1 1o  R  1o t  w  8  8 l    p   R  J'u L   qvvvnvvvqn1:   @  &u m -  8 -T B  -  eve$mouse_keys@X9 :    @9 :    8   A , }j$    |  }  ~     8E E JSF F JT@H PI  I J U  M -M S eve$undefined_key (last_key)h7@R,` a b e d e g h i i l 3|l n =*p Tq " q s 3s s St t $u =v h v v y 3y y Sz z { 8 | } T~ P ~ T 8 T *  A    8 T       8 T   A $ 8   3  =u 3  = E"   @  1   h     4 = 8 W  8  1   h    3  S $ = h    T  , 8   8  < T \  8   T & $ 8   3  =v 3  = E      d h D T R $ 8        8 @  = 8 W  x  d h D T h $ 8                  0 o  40o p q s$L0JJV03-015H$0RJc 8& &*t   3|& ( ] ~ ~ &~   @3 ~   h = Jc  &&V&*R]8 O &3 XP&&V&*RT8 O &3 X &d&V O &P$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"3 =E  T=P7$  |=7k$P  ( T $ = D=:8Jc    BUFFER LISTreturn eve$$buffer_list_status$$ T)X  YZ Z [\] ]d4)nop pv7±$u7+$vwxy y|&|~ ~4    }$  H(|R8d  }(]  &< ,} 7C$ 7;$ 3|&*&)&G8 $7$&V P lH 7$k6 <6:  18 d7P88 (] e& i"  q: & Y"J  qn & Z$ `7$  " "# #'6:(1(*-++,A,-RK P-A. .,/}±$01 14R P4446R P66 8>P> ?@  A4B&%C CDHH =J JPK&K M M\N& V,NXO 8OO,P&3P QS ST VmW  ,Y&*YZ Z([ \\ ]Da7"$aoef fXk  lnR Pn oq qr s t&:tu&u8u vw7Pxz88z {(~] eG7$& JZ i"& _& Y& Z$ 7$A 4}±$  % L7$o  & PY 8 $& *(T  }$& _ \P( ]   = =v8T \=uJc Jc  =uJc Jc &   REALLYDELBUF_DIALOG7eve$delete_buffer (eve$find_buffer ('!AS'), !UL, '!AS')/eve$unmanage_widget(eve$x_reallydelbuf_dialog);7eve$delete_buffer (eve$find_buffer ('!AS'), !UL, '!AS')/eve$unmanage_widget(eve$x_reallydelbuf_dialog);exitWRITEDELPROMPT_DIALOG*WRITEDELPROMPT_DIALOG.WRITEDELPROMPT_LABEL1eve$$widget_writedelprompt_ok ('!AS', !UL, '!AS')eve$invalid_event(35914927)eve$invalid_event(35914928)eve$invalid_event(35914933)- , &* !&G! "&) #,$7$$ %&(&/ ),*7$* +,.&V /,07$0 124&< 5,67$6 78:& ;< =$>7$>CPC C$D7$DG1H HL Q7s$  Q R@ Z7{$ Z\8]P^ cd3de=uf8g3gh1i ij=v kPmE m=n]of op=vs8t3u u v=~   $%'Y( ()}$ *<+=u,so,0,E - -.}$ /182T3 34=u 56888939:8;:<8=T>E >?8 @(lA BwBB8D3DDE1EREF8G&GI I J}$LzLL8OOOU --LphRPXb bcefgjijltn3|nooqK>ss=xEL x{ {l|=}=u~6  =E  (==u==  Timer Messagecalls to LIB$GET_VM,P HR0&  8}$U =*3|&!dX&V8  = O U73$(  H&  = &=  U7k$&  = do $OC =Jq P&*7$ (  P!P#7$# & l(&(* *+7$+-7 $- ..(. /P2&:233&/A4 4$57$577$7 88(8 9P<& =(>&> ?@7$@B7k$B CC(C DPF&) G$H7$H J7#$ J  K,L7#$ L PK$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Th"&"P7s$P QPS&(TT TU VW Z7$ Z7#$Z \&F\7$\ ]P_ _ a a`d7$d7s$d7#$d  epj&"tj jQj7s$j7#$j m m o oLq7$q7{$q  r8sQ s7{$s uPw&/ xDz7K$z7#$z  {<}7k$}7#$} & (7[$   7$ P&T    7+$ 7#$   @&h7$ P&G73$ P&&Q ,7$ (7$7#$  l \&P ,7$ P&W ( T 47C$   P7;$  (  P==X p 47K$  (7S$ P p&C 7s$Y 47$  P&  07$ P(^ ]  :^ &  H7$7$ X ^ H7#$7$ @7$7$   P =P:&c l&c P  P&c 3  &G  H=7c$  \ =7[$ P   P=$ x.& / /80}$1U23 36=*73|7889C:;<>? CAUC7k$CCCEF& G GH=J JP<VVVWXX&hX1oXwXXZ7$Z[1t[[] ]^b bcLf$kfmfffo Km0L M N! O(P+ Q# R5 G      "  R  R  n R  ULTRIX\\.\^$[]+*\\\\\\\\\\\\\\\\\\^\\\\\\\\\\\\\\\\\\\\\\\\\\\\\VMS\*%\\\\]\\\\\\\\\\\\\\\\\\\\~\\\w<>[\:.doxanslupf^+\\\\\\\oabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ8abcdefghijklmnopqrstuvwxyz7ABCDEFGHIJKLMNOPQRSTUVWXYZA !"#$%&'()*+,-./0123456789:;<=>?@[\]^_`{|}~   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~$4DDV03-008 \R \^ ^X_R P` `,aR kaaeR fR ngPg ghkkq  1      R Z` 4 (  lR (  T(   ! # % %&l++,,3't8} } Q 8lomo 8lmomo < }`$`$ D 4lJmo>matchl+ (unanchor+'')+ ('')+ ''@ @A1AC CD DFRPG G0jHHI I JK KRp8 8: :0;" ; <PE !9 !AS $pV03-020H (] e &Z &# 8  JZ  ZZ &l & \JZJZP&  ZZ 5  & l    &  \JZJZP&  ZZ!S fg!$&$ '0 01Z12Z245&5 l667&7: \;;JZ<<J ZP@&@ H HI IKZKKM&!MMN&NNQR:,STOUU0V&3VV W|[ [\Z\]Z]bfgbe&e fiZiij&jjn noZopZpu;fgux&x y} }~Z~Zfg&  ZZIfg&  ZZfg&  ZZ[fg&  ZZfg&"$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"  Z&&3&3&3&3&3&3&3 EXTEND_MENU_DIALOG"EXTEND_MENU_DIALOG.EXTEND_SUBFORM22.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPS"EXTEND_MENU_DIALOG.EXTEND_SUBFORM36.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTSEXTEND_MENU_NOSEL_DUMMY"EXTEND_MENU_DIALOG.EXTEND_SUBFORM16.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDSEXTEND_MENU_SEP_DUMMYEXTEND_MENU_FILE_DUMMYEXTEND_MENU_EDIT_DUMMYEXTEND_MENU_FORMAT_DUMMYEXTEND_MENU_SEARCH_DUMMYEXTEND_MENU_DISPLAY_DUMMYEXTEND_MENU_CUSTOM_DUMMYx,66A  ( ]   (#, " dd<< <     <     0 HR0#7$%('7(+, ,/71& 15 5 6 6 7 7 9j[P9 X: 8: ;(< ]= => ?<6A A A C CD (G #H00@, HI JK&aKMMNaNO O Q Q,T  U(W&a3W Xp"Z < Z[\ _& Y`` a b7$b c [ ddf'fh*hk l m [ o q`r&`rtt4u`uv vx x~&~6T$6 6SA (S JZ  ,[ v (&`3 7|( ]       && Z8Z8Zx8(& T& D P(& 3 (] 8fg  $JJZY shellclassrecDwtMenuSText PopupMenu HELP_DIALOG firstTopic librarySpecI&aIKKLaLMN N@PP}P$ Q QS&a3S ThV}H$W WeEVE$INVALID_EVENT.n5&6&X6 : :: :A; ;h?Qq?o??& AA7@$ AoBEE GH" I J P%NEEDFILENAME_DIALOG.NEEDFILENAME_TEXTthe_filethe_filethe_fileeve$$widget_nofilespecexit_ok()the_buffer_namestate0UnXQqXPoXgX& ZQZ7@$ Zo_eve$$widget_nofilespecexit_ok()the_buffer_name|dnph& `jjz l8m&3mP n" o r y)eve$unmanage_widget(eve$x_message_dialog)state the_buffern&t&X }$&% +WRITEFILEPROMPT_DIALOG.WRITEFILEPROMPT_TEXTRdY(T8 JY(T8 Jn (  J     J"  J8  , ( T & \ )] 4            8 k  &    Z  & " Z" " $ &% % @& && & ' ' ( ) ) 0 > Z> > @ &!@ A &A C D :G G H :I (I OK uL L RPL AL L TON  O P P Q R &3R U $W X X Z Z `  d"g 0H`x g h h i j j k l l m tn n o \p p q Dr r s ,t t u v v } XN N Q  Q DR R S T ZU  V W ZW Z ZZ ^ &_ Je | &   O  P A D  $     &3 ` (    |(R (] $   8}$        8}ȣ$   , l  P(] ,}$  g (  ]  \h   :61RP p ( ]  "]" %  %&1 1 Z 137R7_;  =}$ C CD EFQFI IJ K pLoLyLO (pP_oPWP QRA [7$ pXoX-mY oY!mYmY oY mZoZmZoZVQV1zVVRWQnWqW[l]]_ _eXmCreatePushButtonXmCreateSeparatorGadget''',''',eve$define_user_menu_entry('','',',,);0000eve$menu_entry \4R(,YZ]]](a]b b$d de ei  j8k}$lm mp pq quvwx|&|~  [$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T ?":, t 8&Z  h O    lQ kP 4  < l  l  $}$  @ ,    }$7$pomoQ1zRQnqxl  }$eve$undefine_menu_entry ('','');0000eve$menu_entry ")0H`@x )|** +d,, -L/&(// 02&22 36&66 7:&:: ;l>&>> ?4B&BBI&EVE_MENU_BAR.popup_FILE_MENU.FILE_MENU&EVE_MENU_BAR.popup_FILE_MENU.EDIT_MENU(EVE_MENU_BAR.popup_FILE_MENU.FORMAT_MENU(EVE_MENU_BAR.popup_FILE_MENU.SEARCH_MENU)EVE_MENU_BAR.popup_FILE_MENU.DISPLAY_MENU+EVE_MENU_BAR.popup_FILE_MENU.CUSTOMIZE_MENUȿ:,(  (p D1xR ... ->ܾTZTTVW Y&!YZ&Z[ ]]_ _` Oc c d e g<Ohh(i&3i jXm0n}$o or rxTZ&! &    t  QkS ll lQkS 8Qkll h# ,x $oT,(R 4} 7$7[$ 7$7C$    7k$ <    0    Ը(R (] $   8}$    S 4.   8 }ȣ$  (] ,}$ Q&! ! !" " #  O% %|& & ':( ( ):+ +,- - /(1&=1 24 4T5:6 6 7:9 9:5 ;p<7P> >0?7 $ ? @AC5  D(E7*$ EG7PI IKo L$N NO}!RS S(Y ]Z Z ]\] bd def:6g1gRPh hpi(j ]k k n]Wn r rs~ ~ Z ~R _  }$  (p`oX B7$ po.m o"m momomoQ1zRQnql  _dwt$push_button_createdwt$separator_create',''',eve$define_user_menu_entry('','',',,'');0000eve$menu_entry ( uv:xZxxz&!z{&{~~:O  O(&3 x Z&!oP  Qkl`$(R 4} 7$7[$ 7$7$  j$DDV03-003(KPREnglishX] ^ _ ` a b ~c vd me bf Wjprevious_screen next_screen move_right move_downremembermove_upreturnhelpexitdo0L  041213.155703!EVE$DYNAMIC_MODULE_IDENTUUVVWWXXYYZZ[[\\]]cwritewritenowritenowrite read-only read-only read_only read_only noread-only noread-only noread_only noread_only modifiable modifiable unmodifiable unmodifiable nomodifiable nomodifiableleefzfxgrgqhlhmijiijdjfkdkdqatateveryeveryspacesspacesmovementmovementinsertinsert invisible invisiblevisiblevisiblehssttuuvvwwxxyyzz{{||previous_screenprevious_screen next_screen next_screen move_right move_right move_down move_downrememberremembermove_upmove_upreturnreturnhelphelpexitexitdodo8 EVE$BUILD_MODULE_IDENT EVE$OPTIONS_MODULE_IDENT EVE$CONSTANTS_MODULE_IDENT EVE$TERMINALS_MODULE_IDENT EVE$SYNONYMS_MODULE_IDENT EVE$DECWINDOWS_MODULE_IDENT EVE$WINDOWS_MODULE_IDENT EVE$FILE_MODULE_IDENT EVE$PARSER_MODULE_IDENT EVE$CORE_MODULE_IDENT EVE$FORMAT_MODULE_IDENT EVE$MOUSE_MODULE_IDENT EVE$EXTEND_MODULE_IDENT EVE$EDIT_MODULE_IDENT EVE$ADVANCED_MODULE_IDENT EVE$HELP_MODULE_IDENT EVE$EDT_MODULE_IDENT EVE$EXTRAS_MODULE_IDENT EVE$WPS_MODULE_IDENT EVE$SHOW_MODULE_IDENT EVE$WILDCARD_MODULE_IDENT EVE$MENUS_MODULE_IDENT EVE$INTERNATIONALIZATION_MODULE_IDENT EVE$DYNAMIC_MODULE_IDENT NOTES$OPTIONS_MODULE_IDENT NOTES$MSGS_MODULE_IDENT NOTES$CONS_MODULE_IDENT NOTES$INIT_MODULE_IDENT NOTES$COMMAND_MODULE_IDENT NOTES$EVE_MODULE_IDENT NOTES$TPU_MODULE_IDENT EVE$DYNAMIC_MODULE_IDENT !EVE$$BUILD_MODULE_IDENTS< EVE$X_ENABLE_PARSER_NOTES EVE$$BUILD_PARSER_FLAGS  $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"0wEVE$DECWINDOWS_MODULE_PRE_INIT EVE$HELP_MODULE_PRE_INIT EVE$INTERNATIONALIZATION_MODULE_PRE_INIT NOTES_MODULE_PRE_INIT $EVE$$BUILD_MODULE_PRE_INITSp` JEVE$BUILD_MODULE_INIT EVE$OPTIONS_MODULE_INIT EVE$CONSTANTS_MODULE_INIT EVE$TERMINALS_MODULE_INIT EVE$SYNONYMS_MODULE_INIT EVE$DECWINDOWS_MODULE_INIT EVE$WINDOWS_MODULE_INIT EVE$FILE_MODULE_INIT EVE$PARSER_MODULE_INIT EVE$CORE_MODULE_INIT EVE$FORMAT_MODULE_INIT EVE$MOUSE_MODULE_INIT EVE$EXTEND_MODULE_INIT EVE$EDIT_MODULE_INIT EVE$ADVANCED_MODULE_INIT EVE$HELP_MODULE_INIT EVE$EDT_MODULE_INIT EVE$EXTRAS_MODULE_INIT EVE$WPS_MODULE_INIT EVE$SHOW_MODULE_INIT EVE$WILDCARD_MODULE_INIT EVE$MENUS_MODULE_INIT EVE$INTERNATIONALIZATION_MODULE_INIT NOTES$OPTIONS_MODULE_INIT NOTES_MODULE_INIT EVE$$BUILD_MODULE_INITS̠ ]EVE$FILE_DECLARE_SYNONYM EVE$FORMAT_DECLARE_SYNONYM EVE$INTERNATIONALIZATION_DECLARE_SYNONYM $EVE$$BUILD_DECLARE_SYNONYMSx$ TEVE$FILE_SYNONYM_INIT EVE$FORMAT_SYNONYM_INIT EVE$INTERNATIONALIZATION_SYNONYM_INIT !EVE$$BUILD_SYNONYM_INITSl JEVE$DIRECTION_STATUS_FIELD EVE$MODE_STATUS_FIELD EVE$NOWRITE_STATUS_FIELD !EVE$$BUILD_STATUS_FIELDSP  ,EVE$$EXTEND_EXIT_HANDLER NOTES_EXIT_HANDLER !EVE$$BUILD_EXIT_HANDLERSPx   ,EVE$$EXTEND_QUIT_HANDLER NOTES_QUIT_HANDLER ! EVE$$BUILD_QUIT_HANDLERS %4  Pd8P$ t$<Dd4 NOTES$_SHOW_USER_JOIN2NOTES$_BEING_WRITTENzNOTES$_PRESS_CTRLZ_N}NOTES$_PRESS_RETURNEVE$X_OPTION_TRACENOTES$_INVITMLENNOTES$_EDISPAWN- NOTES$_HIDDEN NOTES$_N_OF_Nh> NOTES$_UNSEEN NOTES$_SHOW_PROF_AUTOrNOTES$_ENTERINTRONOTES$_ANSWER_NONOTES$_ASK_YESNO&NOTES$_MORE_INFO NOTES$_SENDTO NOTES$_ANDTO NOTES$_SHOW_USER_FULL NOTES$_SHOW_MODU_FULLNOTES$_CTRLZ_CANCELNOTES$_SENDING_MAIL)NOTES$_NOTES_WRFILNOTES$_SENT_TO_ALLNOTES$_NOTENOTDELsNOTES$_CTRLZMAILNOTES$_EDICALL NOTES$_NORMAL NOTES$_SHOW_PROF_PERMJNOTES$_OLD_INVACCNAMNOTES$_FAILGETVMNOTES$_INVACCNAM NOTES$_MISREQITMNOTES$_SHOW_ENT_OBJFNOTES$_MAILSUBJnNOTES$_NONOTEBOOKNOTES$_SENDBOTHNOTES$_MODERATORS_OFNOTES$_SHOW_PROF_DEFNOTES$_SHOW_ENT_CONFQNOTES$_CREATE_CONF*NOTES$_NOTES_WRBUFNOTES$_READINGCONF/NOTES$_UPDATE_CONFNOTES$_MEMBERS_OFNOTES$_CREATEBUF.NOTES$_OPEN_CONFNOTES$_DIR_CONF+NOTES$_DIRTOBUFNOTES$_WRITEBUF4NOTES$_HELPBUF0 NOTES$_NMFNOTES$X_TRACE_DEBUGtNOTES$_NOTREADINGNOTES$_WORKING NOTES$_KEYWORD_MODIFIED NOTES$_KEYWORD_CREATED NOTES$_KEYWORD_DELETED NOTES$_MEMBER_MODIFIED %NOTES$_OBJECT_MODIFIED NOTES$_ENTRY_MODIFIED NOTES$_MEMBER_DELETED NOTES$_MARKER_DELETED NOTES$_NEVER_ACCESSED $NOTES$_OBJECT_DELETED 'NOTES$_SRV_NEWPROTUPD gNOTES$_SRV_OLDPROTUPDNOTES$_ENTRY_DELETED(NOTES$_ENTRY_ABORTEDNOTES$_NOTE_MODIFIEDNOTES$_SHOW_NOTE_HIDNOTES$_SHOW_CONF_MOD]NOTES$_CONFERENCEIDNOTES$_MEMBER_ADDEDNOTES$_MARKER_ADDEDNOTES$_NOTE_DELETED#NOTES$_OBJECT_ADDEDNOTES$_ENTRY_ADDEDHNOTES$_MODERATORID NOTES$_PROFILE_MODNOTES$_TEXT_APPEND_NOTES$_WRITELOCKIDNOTES$_WILLNOTSENDENOTES$_CONFCREUPDNOTES$_FILECREUPDKNOTES$_LOCATIONIDNOTES$_CANCELLEDNOTES$_ILLNOTEIDNOTES$_INVITMCOD\NOTES$_KEYWORDIDNOTES$_NOTESQADDeNOTES$_USEFILEID^NOTES$_ATTRIBIDZNOTES$_AUTHORIDNOTES$_DIR_HEAD`NOTES$_HIDDENIDDNOTES$_NOTICEIDNOTES$_SHOW_MODNOTES$_EXPIRED;NOTES$_ENTRYIDqNOTES$_MSGSEND[NOTES$_TOPICIDCNOTES$_TITLEIDG NOTES$_FILEID< NOTES$_NOTEID NOTES$_KEYWORD_ADDNOTE NOTES$_KEYWORD_DELNOTE NOTES$_OVERSTRIKE_MODE NOTES$_DIR_CONF_TITLE {NOTES$_SET_CONFERENCE NOTES$_SHOW_PROF_NAME NOTES$_SHOW_PROF_NONEYNOTES$_DELETING_NOTENOTES$_NOTE_COMPLETENOTES$_SHOW_MOD_NODENOTES$_SHOW_ENT_FILENOTES$_CANTCONTINUEUNOTES$_EXTRACT_NOTENOTES$_ENTER_CTITLETNOTES$_GETTING_NOTENOTES$_DELETE_NOTE|NOTES$_ENTER_TITLENOTES$_INSERT_MODE NOTES$_NOMODERATEVNOTES$_PRINT_NOTE,NOTES$_DIRTOFILENOTES$_ENTERNOTENOTES$_NOCURNOTENOTES$_SPELLDONENOTES$_TEXT_NOTE@NOTES$_DATELINE NOTES$_MODERATE| NOTES$_NO_NBNOTES$_TEXT_TOPICL NOTES$_CC INOTES$_OLD_ALREXISTS_ANOTES$_ALREXISTS_ANOTES$_CMDKEYENA NOTES$_NUMKEYENANOTES$_WRONGCTX~NOTES$_PRESS_ANY_KEYpNOTES$_NEEDNBMODIFYRNOTES$_UPDATE_ENTRYNOTES$_SENDANYWAYNOTES$_SHOW_ENTRYNOTES$_TEXT_REPLYNOTES$_ONE_REPLYNOTES$_FACILITYNOTES$_SPAWNKEYNOTES$_CALLKEYNOTES$_SHOW_USER_PRIVaNOTES$_GRAPHIC_VIEWbNOTES$_UNKNOWN_VIEWTNOTES$_ENDREQ_SHOW$NOTES$OPTIONS_MODULE_IDENT$NOTES$OPTIONS_MODULE_INIT NOTES$MSGS_MODULE_IDENT NOTES$_SHOW_PROF_PRINT NOTES$_SHOW_PROF_EDITNOTES$_CTRLZ_COM_RETNOTES$_NOTE_END_TEXTNOTES$_MAIL_SUBJECTlNOTES$_NO_MORE_TEXTNOTES$_DEF_SUBJECTcNOTES$_DDIF_FORMATNOTES$_ENDREQ_LISTNOTES$_MAILNOTSENTNOTES$_NOTE_NOTEXTXNOTES$_SEARCH_NEXTNOTES$_SPELLSELECTNOTES$_REALLYQUITNOTES$_SPELLSTARTfNOTES$_COPYRIGHTNOTES$_CLASS_SETNOTES$_MORE_TEXTdNOTES$_PS_FORMAT3NOTES$_USING_EDTwNOTES$_EOB_TEXToNOTES$_NOERRTXTNOTES$_NONESENT:NOTES$_HELPBOT6NOTES$_HELPNXT4NOTES$_SUBJECT NOTES$_NJU NOTES$_SHOW_CONF_RESA2 NOTES$_SHOW_CONF_RESK2 NOTES$_SHOW_CONF_RESW2 NOTES$_SHOW_NOTE_REP2 NOTES$_SHOW_CONF_RESR NOTES$_SHOW_PROF_ADIR NOTES$_SHOW_USER_MADRNOTES$_SHOW_MOD_USER"NOTES$_ENTRY_ADDED2NOTES$_PROFILE_USERONOTES$_REPLY_BANNERNNOTES$_TOPIC_BANNERLNOTES$_CONF_BANNERSNOTES$_GETTING_DIRPNOTES$_INFO_BANNERNOTES$_REPBUFINFO2MNOTES$_READ_BANNERNOTES$_SPELLBUFFERNOTES$_SHOW_MARK_2NOTES$_SHOW_KEYW_21NOTES$_OPEN_CONF2WNOTES$_SEARCH_FORNOTES$_STRCOPYERRNOTES$_ILLCTXADR0NOTES$_MARKSUPERxNOTES$_PRESS_PF28NOTES$_HELPASK2NOTES$_SEARCHF25NOTES$_HELPHDR jNOTES$_NO_MORE_KEYWORDS NOTES$_SHOW_PROF_DCLASS NOTES$$DEFINE_MESSAGES hNOTES$_NO_MORE_CLASSES iNOTES$_NO_MORE_ENTRIES NOTES$_NO_MORE_MARKERS uNOTES$_NO_MORE_REPLIES NOTES$_ENTRY_DELCLASS !NOTES$_SPACE_COMPRESS NOTES$_SHOW_PROF_AUNSkNOTES$_NO_MORE_NOTESmNOTES$_NO_MORE_USERSNOTES$_SHOW_NOTE_VISNOTES$_DIR_NB_CLASSNOTES$_MANY_REPLIESBNOTES$_MANYCLASSESNOTES$_SHOW_MARK_3vNOTES$_ANSWER_YESNOTES$_NMORELINESNOTES$_SHOW_CLASS?NOTES$_TOTALNOTESNOTES$_NOREPLIESNOTES$_WRONG_ANSNOTES$_MODPRIVSNOTES$_NUMNOTESNOTES$_N_TOPICSANOTES$_ONECLASS= NOTES$_TOPICSNOTES$_FINDING_HELP NOTES$_PROFILE_TEMPNOTES$_NOKEYHELP9NOTES$_HELPTOPTNOTES$_YOUR_SP NOTES$_SHOW_CONF_RESA1 NOTES$_SHOW_CONF_RESK1 NOTES$_SHOW_CONF_RESW1 NOTES$_SHOW_NOTE_REP1NOTES$_REPBUFINFO1NOTES$_SHOW_MARK_1NOTES$_SHOW_KEYW_1yNOTES$_NOTES_HDR17NOTES$_HELPASK14NOTES$_SEARCƈ$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T0L"AHF1#H$$$   ! ) 1 9AIQYaiqyɀ р!ـ"#$%&' ()*#++,3-;.C/K0S1[2c3k4s5{6789:;<=>Ð?ː@ӐAېBCDEFG HIJ#K+L3M;NCOKPSQ[RcSkTsU{VWXYZ[\]^Ñ_ˑ`ӑaۑbcdefghijk l(m0n8o@pHqPrXs`thupvxwxyz{|}~ȠРؠ (08@HPX`hpxȡСء (08@HPX`hpxȢТآ (08@HPX`hpxȣУأ (08@HPX`h "*2:BJ(z V02-001#NOTES$OPTIONS_MODULE_IDENT(y  "NOTES$OPTIONS_MODULE_INIT0hy V02-2004.12.13 NOTES$MSGS_MODULE_IDENTyNOTES$$DEFINE_MESSAGES'4 ` d< $| NOTES$CU_NOTE_ADD_BEGIN NOTES$CU_NOTEFILE_BEGIN NOTES$CU_OUTFILE_OPENKNOTES$_CAPTIVE_SPAWN NOTES$_NOPRIVWRITE_NjNOTES$_ALREXISTS_N3NOTES$_NOPRIVMOD_NNOTES$_NOPRIVDEL_N NOTES$_NOFILEOPENNOTES$_MUST_OPEN}NOTES$_CLOSEIN  NOTES$_OPENINNOTES$CU_GET_USER_INFO NOTES$KT_INFORMATIONALNOTES$_NOMORE_RECALL%NOTES$_CTRLC_CANCELNOTES$_FILNOTDELNOTES$_PARSEFAILmNOTES$_CONFQUALH  NOTES$_NOMAIL NOTES$KT_VISIBLE_BOTTOM8NOTES$_ALREXISTS_MNOTES$_SRV_INVITEMMNOTES$_NOHELPTERM(NOTES$_ERRADDMEM`NOTES$_INVKEYNAMONOTES$_INVCLANAMNNOTES$_INVENTNAMbNOTES$_INVMRKNAMDdNOTES$_INVUSRNAM,tNOTES$_NOSUCHOBJ<NOTES$_BASEWRITELOCK6NOTES$_ALREXISTS_K'NOTES$_ERRADDMARK+NOTES$_ERRDELMARKwNOTES$_NOTNETWRK$NOTES$CU_CLI_VERB_DISPATCHhNOTES$K_HARDCOPY_WIDTHH CLI$_NEGATED=NOTES$_NOWRITE_CONFnNOTES$_OPRNOTSUPCNFNOTES$K_SH_DIR_CONFFNOTES$_NOTE_NOCONFzNOTES$_WRONG_LMFNOTES$K_SH_CONFNOTES$_PREMEOF|# NOTES$_IFF(NOTES$CU_SETUP_COUNTER_STRINGNOTES$_ERROR_MAILING$hNOTES$_RANGE_TOO_BIG NOTES$_MUST_READ_FORWARD NOTES$_NONOTE_SPECIFIED NOTES$K_DATE_TIME_FIELD NOTES$_NO_SUCH_KEYWORD NOTES$CU_NOTE_ADD_END NOTES$CU_NOTEFILE_END NOTES$K_REPLIES_FIELD NOTES$K_KEYWORD_FIELD NOTES$_ALREXISTS_OLDBNOTES$_CLASSNOTFOUND/NOTES$_ERRMODKEYWORDNOTES$K_MEMBER_FIELDNOTES$K_NOTEID_FIELDNOTES$K_AUTHOR_FIELDNOTES$K_TOPICS_FIELDNOTES$K_MARKER_FIELDNOTES$KT_DO_COMMANDNOTES$K_NODES_FIELDNOTES$K_ENTRY_FIELDNOTES$K_DATE_FIELDNOTES$K_SH_KEYWORDNOTES$K_MAIL_FIELDkNOTES$_NONOTESMODNOTES$KT_MODIFIEDNOTES$KT_1_SECONDNOTES$KT_COMMAND_NOTES$_USRNOTADD]NOTES$_NOTINCMDNOTES$KT_NOTES${NOTES$_CREATED$NOTES$_MUST_COMPLETE_MESSAGE$NOTES$CU_NOTE_BACK_RESPONSE$NOTES$CU_NOTE_NEXT_RESPONSE NOTES$_NOT_ENTERING_NOTE lNOTES$_MEMBERNAME_NODE NOTES$_NOPREVIOUS_NOTE NOTES$CU_CLI_DCL_PARSE NOTES$CU_CLI_GET_VALUE NOTES$CU_OUTFILE_WRITE NOTES$CU_OUTFILE_CLOSE aNOTES$_INVKEYWORDNAME NOTES$_SRV_NOUSERNAME NOTES$KT_JOURNAL_FILE NOTES$K_LINE1WIN_LINE NOTES$K_RESERVED_TYPEcNOTES$_INVMARKERNAMEqNOTES$_INVOBJECTNAMEvNOTES$_NOLINKLICENSENOTES$KT_STATUS_LINENOTES$CU_DELETE_FILENOTES$K_UNKNOWN_TYPEDNOTES$_BAD_DIR_LINENOTES$_EDIT_OR_FILEANOTES$_INVCLASSNAMEPNOTES$_INVENTRYNAMENOTES$_NO_SUCH_NOTENOTES$K_CMDWIN_LINE5NOTES$_ALREXISTS_EeNOTES$_INVUSERNAMEJNOTES$_NO_NEW_NOTENOTES$K_ASCII_TYPENOTES$K_REPLY_NOTENOTES$K_SH_PROFILE-NOTES$_ERRMODNOTE!NOTES$_ERRORWRITEpNOTES$_INVOBJNAMENOTES$_NOSUCHNOTENOTES$KT_CONTINUENOTES$KT_NO_WRITENOTES$K_BASE_NOTENOTES$K_DDIF_TYPEUNOTES$_NOLICENSENOTES$_BADVALUENOTES$K_SH_NOTEoNOTES$_BADTIME1NOTES$_NOWRITENOTES$KT_SPACENOTES$KT_QUOTEV NOTES$_NOFILEY NOTES$_NOEVE NOTES$KT_EVENOTES$_CREPRIJOBrNOTES$_NOATTRIB NOTES$CU_NOTE_BACK_TOPIC NOTES$CU_NOTE_NEXT_TOPIC gNOTES$_RANGE_ONE_TOPIC4NOTES$_ALREXISTS_CfNOTES$_INVNOTESPEC"NOTES$_NOMAILPROCNOTES$_BADLOGIC iNOTES$_NO_TOPICNOTES$KT_NOTES_RMS$_EOF ^NOTES$_CONF_REPLY_ONLY NOTES$_MUST_READ_REPLY NOTES$KT_NOTES_LIBRARYNOTES$_NO_SUCH_ENTRYNOTES$KT_RETURN_KEY.NOTES$_ERRMODENTRY NOTES$_NOSUCHENTRYNOTES$CU_IDENTIFY&NOTES$_ERRCREKEYNOTES$KT_DISPLAYNOTES$K_SH_ENTRYNOTES$K_FACILITYNOTES$KT_DO_KEYhXNOTES$_NOENTRYP$ NOTES$_NOPRIV8\NOTES$_NO_RANGE_ALLOW$NOTES$KT_NOTES_KEY_MAP_LIST NOTES$CONS_MODULE_IDENT NOTES$CU_LIB_PUT_OUTPUT NOTES$CU_LIB_GET_INPUT NOTES$CU_NOTE_ADD_TEXT NOTES$CU_NOTE_GET_TEXT LNOTES$_NOTHING_TO_SET NOTES$KT_SHIFT_AMOUNTNOTES$_SRV_NOCONTEXT NOTES$_SRV_UNRECPROTNOTES$CU_CLI_PRESENTNOTES$K_SHIFT_AMOUNTNOTES$K_SH_DIR_ENT0NOTES$_ERRACCLISTNOTES$_SRV_NOINITNOTES$KT_DDIF_EXTNOTES$KT_TEMP_EXTNOTES$KT_LIST_EXTNOTES$KT_NOTE_EXTNOTES$KT_TEXT_EXTNOTES$CU_NOTE_GETxNOTES$_WRONG_ACCT)NOTES$_ERRADDENT*NOTES$_ERRDELENTENOTES$_NO_SELECT@NOTES$_SENDNOAUTNOTES$KT_INDENT4~NOTES$_CLOSEOUTsNOTES$_NOOBJECTNOTES$KT_KNEDITNOTES$_OPENOUT NOTES$KT_NEXTW NOTES$_NOEDT NOTES$KT_DOTt| NOTES$_TEXT7NOTES$_ALREXISTS_UD CLI$_SYNTAX NOTES$_ALREADY_IN_EDITOR 9NOTES$_NO_SUCH_MARKER NOTES$_UNREC_CALLUSER,NOTES$_ERRDELMEMBER2NOTES$_NOSUCHMARKERNOTES$_NO_SUCH_USERyNOTES$_SRV_INIT_ERRGNOTES$_UNREC_EDITOR>NOTES$_SPELLERRORNOTES$K_SH_MEMBERNOTES$K_SH_MARKER;NOTES$_NOTMEMBERINOTES$_NMTHISDIR?NOTES$_PNINVCHARNOTES$KT_INDENT2uNOTES$_LWKERRORNOTES$_SYSERRORZNOTES$_TPUERRORNOTES$_WRITEERR0NOTES$_READERR( NOTES$KT_SPECIAL_GRAPHICS_STATUS$RNOTES$_ALREXISTS_IN_CLASS [NOTES$_ENTALR_IN_CLASSES QNOTES$_NO_ENTRY_IN_CLASS NOTES$M_DATE_TIME_FIELDS NOTES$_ALREADY_IN_NOTES NOTE+$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"i TR HhOIbh0R@`?/!.KuO)/_A0Rí$ѯMJL34C :WXIJ(AH'6vB/.FD[%nHea҉O_ĘB(YA@tdsJ:]:'#vqFۥNNMd]817AATGQ]%n)BF#S\[ضF2wsB]/6(  iuĻ9W'h4/50QmyybEFw_ļfjR}h5:HQVi4x-ͮQEwc$aC=aUk gْHі(1t*1ud D1Ɨ ?#ih(|`GqSҗ59^w;:2605;vy W{ -l2&MpVG6Q:mΤ *ȷy ޵zE@cXb^m=El@$<ż%|]N?=L'+6"h*C~ǥb{ `M`  -22^r'0s$J̱UXRs'n=bWbɱ`V(d^}.c}]EpZDbhIթ75C!n, $+ꆑa1|h@%V}Al0.DL v;N$0MOx^pԒx5,$w>ϸ\6T %%rcPt0g0/o9DUDUVUŽ$&grY"cIXn_^5PWϬc"Mu_mmn:2U8W>|@k҅xK Ԙ:SvH# wVeڍ4)+ ]ڊ9 C>kˏ/ocOS"z@VeKQA+T:3)oW$]Uڀ#3yEey܂p=f|ɧ(:!)p}'S*8gM 3HWv ɥzq%/!y\}/AHnR;Rm6:D-!r)(|1J!H\dV@.qAXbB3>ƧLi~(ʼn0xOۊ͋0 ()'`!W0ezme(WgL|sءpҒ"~0BqA}Q^v4'j^t*\+y{ş% R@BQ4̹7U>ķms6V[ 0/XH+=,5q-9Z:y=u tHϨG%DLQ jU_1Qe)kJ#3l|"={!{I#C`j݇n zIW:휐U=q!u:O ҵں" P>3Qb 6q=G($(xӜ6qǹ?Dǖf9/_\YA%a&ף9~mג"Z=ԏ/ZF-!ksȊ!G17]$^.qZYmV./RߜWȧb`IqFPܴm^Êe@\ǖTj;( ]=C<~kPĩT!|ā#*l-4V 4jε-Ē33JɰXKL6o0lxB. $3-$G;8 ic qs?q@/INF ޲TqX$>j\s Ii #UMD$א>+ϗE #Z"Š؊b=ӎ*b$d\xGԿn;(dwa a EsaDXCIy%m֕$ 7@-"maZṯ4Ȼ(LzhUX p#7wLL@C-52\wa"mȞ[[ZOsRsqW |#~G{e˄ bZ"v^(9t喜eZZdms]Z}#i#WC~o,蝐DȵLVɨikdaQh [ nR.5hkeKI~]чK>=I+G XpXp}TeIt^ 읁B 9PM@,V4SDש8)a'EYn]7(MZnAb^{ʨxlMjpir(m:(ķ"*sU@# !;Mt(c^fG-H(RymON &!WyVmA.ono12uHosu񗀄AQXeNVi_yO4VZ!>= e=vH'b 3d3FzGTP ^NmoQЦgY퀧skڛC^RO rI%0Zq<4d{"է>I Mxj>`{.~^#H4@AT.wT-O9缕4^|U3ɄliFuxSh/AGVXͧ.MWt@_MRZga7 **Q {=u/i6L&f34;ڤgY9?*q]q'g Z!ER|Z+Cd) R_!F:;YR< Y^[R{Is_ 7 ׼RMzH ƥ,O 8 \zRo{SQګ85k8R+8LTX PQ!!}>5` S.`b͘-mKμ;f(!:TGѐf&KM Kea)b j9jDbaU*'bjZ173|ڨ >wcԀ棐&܋%XwYL.D*I`ze _TVr*Wdl[,i)2OUSZdh{{r?" { wD \Ҡ2wvQ| ԜҐS 0{ik{<WD*@P1;%UWxZc̾hB9`կr8g7Ogp AO|"(>x[e\ xtneEbs;)&ޯ +gZ4ta)rr!5:,Jq&[`<7x*<(}\-;yʂ@\I A؂;0L_2wSoo41ߝюy;Oib\ èEdBh/>$ Oj˦Pݽ{eP;q,Lh?nMlOZ?ir؋>tdrw~Vf2%:+S% `dO tDdW8thQr^l \ pY8 EvSпs+Tv_LH¨u7?u+TՄ/.XU^FQBAYNmshn錾2]Un w-[gg1}E[ Rf}Mt\nPJLeQI_k Ww++-᥿W[pXB HYM&i1pMS]JRS;6|%;EKgqGzo,n*bN6P'%zo4w^=C遣U/i_f ys<wf]k}i|7}@;L] #$/҆ csۏ;5Vj5: pQJ&Ũ {)"1} ulm  ]Uu &ݳ˳M,A*\a>>h/V@c_]2AWmi'C Xq pc'U-ȯuLRPK=1_w 1{U K ZSWlLXf`5s޾كl PXclRn6C$vtc-HZ=?ݭRƣ!GWI3@xc=0y3IyC 'XVb&JYTNVɲ:.K,.w&DO_0/aEȞTBo[E5+٬ٷ>![Ѝ5a;otn jv&8qAn&QE01eI^nJSOgZ2Fr>jGj3>?ɭX} j7VQAP{[ KRm {쾦/m%RE邢=\Lxݬ&+OAK c 4o&CTo RNq~FB VLo}oɃ,*+ɔRliQ#e[>r>l_;:9`c#R#O+4Xl(\Nݥ*9#b!{g.hyj:(R%8:;5Z.|Ol(Y S+|^#I^J DB-@tzO6!jlŚ!UQfӰO'?.9 ;@bc&,B?J@RAZBbCjDrEzFGHIJKLMNOPQRSTUVW XYZ"[*\2]:^B_J`RaZbbcjdrezfghijklmnopqrstuvwx yz{q|1}R~Z$Jz`$$    PH$% %%0%@%T%h%|%%%%%%%%%%&&&$&8&D&P&d&t&&&&&&&&&&''' '('4'@'T'h'|''''''     0T V02-2004.12.13 NOTES$CONS_MODULE_IDENT,T NOTES$$DEFINE_CONSTANTSNOTES$DO_COMMAND(NOTES_NOTES$NOTES$KEY_MAP_LIST NOTES$KEYSNOTES$EDIT_KEYSNOTES$HELP_KEYSNOTES$MOUSE_KEYSNOTES$NUMERIC_KEYS NOTES$SUBKEYSNOTES$USER_KEYSEVE /EDT/EVE/WPS/   .10" 0 00:00:01.00 0 00:00:03.00commanddisplay informational journal_filemodifiednextno_write shift_amountspecial_graphics_status status_linesuccessvisible_bottomCONTINUEdoreturn.LIS.TMP.TXT.NOTE.DDIFSYS$SCRATCH:.TMPNOTES$LIBRARY: NOTES$COMMAND.TPUNOTES$LIBRARY:.NOTENOTES$NOTEBOOKSYS$LOGIN:.NOTENOTES$USER_LOGSYS$LOGIN:.DAT74 R  TL xT@L$-NOTES$CU_NOTEFILE_LIST_BEGIN$NOTES$X_LAST_RECALL_POSITION$NOTES$X_OUTPUT_RIGHT_MARGIN$NOTES$X_OUTPUT_LEFT_MARGIN$NOTES$CU_NOTE_NEXT_UNSEEN$jNOTES$X_EDIT_RIGHT_MARGIN ONOTES$USER_CHECK_VERSION NOTES$X_READ_NOTE_HIDDEN iNOTES$X_EDIT_LEFT_MARGIN CNOTES$CU_MAILUSER_BEGIN NOTES$CU_PROFILE_BEGINJNOTES$CU_INFILE_OPEN7NOTES$CU_SEND_BEGIN NOTES$CU_NOTE_BEGINNOTES$X_NOTE_HIDDENVNOTES$X_AUTO_UNSEENNOTES$X_QUEUE_OPEN?NOTES$CU_SET_SEENNOTES$X_FILE_OPENQNOTES$X_VERSIONNNOTES$$VERSION$ NOTES$CU_NOTEFILE_GET_INFO NOTES$X_SAVE_NOTE_INFO NOTES$X_NOTEFILE_INFOlNOTES$X_NOTE_INFO$BNOTES$CU_TRANSLATE_LOGICAL$NOTES$X_LAST_ERROR_SIGNAL NOTES$X_PREPARING_MAILNOTES$X_QUAL_FULLNOTES$X_QUAL_ALLNOTES$CU_SIGNAL NOTES$X_MARK_ARROW_ITEM|NOTES$X_QUEUE_FORM$NOTES$X_SAVE_NOTE_INFO_BACK$NOTES$X_NOTEFILE_WRITELOCK NOTES$X_NOTE_WRITELOCK UNOTES$X_AUTO_NOTEBOOKNOTES$X_MAIN_MARKdNOTES$X_DIR_MARK(ZNOTES$X_COMMAND_PROMPT_LENGTH|NOTES$CU_NOTE_SEARCH NOTES$X_MAIL_COPY_SELFeNOTES$X_DIR_BOFFfNOTES$X_DIR_EOFFr NOTES$X_EOFF,!NOTES$X_MESSAGE_MORE_HIGHLIGHTING$NOTES$X_REVERSE_HIGHLIGHTING$NOTES$X_MESSAGE_HIGHLIGHTING$NOTES$X_LINE2_HIGHLIGHTING$SNOTES$X_ARROW_HIGHLIGHTING$tNOTES$X_ERROR_HIGHLIGHTING$NOTES$X_MAIL_SUBJECT_FLAG$NOTES$X_NOFN_HIGHLIGHTING kNOTES$X_EDIT_TITLE_FLAG^NOTES$X_CONFIRM_FLAGhNOTES$X_EDIT_FLAGNOTES$CU_GETMSGNOTES$X_LOGGINGaNOTES$X_DIRPROG4m NOTES$X_EMSG(NOTES$X_MAIL_PROF_COPYSELF_SEND(}NOTES$X_EVE_HELP_DO_GOLD_LEGEND(sNOTES$X_ERROR_ON_LAST_COMMAND(vNOTES$X_ERROR_EOB_HIGHLIGHTED$NOTES$X_NOTE_RANGE_DEFAULTED$NOTES$X_NOTEFILE_RESTRICTED$NOTES$X_LAST_ERROR_COMMAND$4NOTES$CU_NOTE_GET_KEYWORD NOTES$X_HARDCOPY_SHIFTED NOTES$X_NUMERIC_KEYPAD DNOTES$CU_MAILUSER_END NOTES$CU_PARSE_NOTEIDKNOTES$CU_INFILE_READ"NOTES$CU_KEYWORD_ADDFNOTES$CU_OBJECT_ADD&NOTES$CU_MEMBER_ADDNOTES$CU_MARKER_ADDNOTES$X_READ_NOTEIDNOTES$CU_CLASS_ADDNOTES$CU_ENTRY_ADD;NOTES$CU_SEND_ENDtNOTES$X_NOTEID$NOTES$X_READ_NOTE_CONFERENCE$NOTES$X_SAVE_DEFAULT_MESSAGE$>NOTES$CU_SEND_ADD_ATTRIBUTE$NOTES$X_MAIL_PROF_PERS_NAME$]NOTES$X_COMMAND_RECALL_MODE$NOTES$X_LAST_RECALL_CMDLINE$NOTES$CU_NOTE_GET_CONTINUE$NOTES$X_READ_NOTE_PEN_NAME$%NOTES$CU_KEYWORD_CONTINUE$+NOTES$CU_KEYWORD_GET_NOTE$NOTES$X_NOTEFILE_FILENAME$pNOTES$X_ENTRY_OBJECT_NAME )NOTES$CU_MEMBER_CONTINUE NOTES$CU_MARKER_CONTINUE NOTES$X_NOTE_BLINK_TITLE NOTES$X_MAIL_GET_PROFILE NOTES$CU_CLASS_CONTINUE 1NOTES$CU_FILENAME_PARSE NOTES$CU_SET_CONFERENCE NOTES$CU_ENTRY_CONTINUE !NOTES$CU_NOTE_BACK_NOTE NOTES$CU_NOTE_NEXT_NOTE #NOTES$CU_KEYWORD_DELETE `NOTES$X_DEFAULT_MESSAGE NOTES$X_READ_NOTE_TITLE NOTES$X_HARDCOPY_ACTIVE NOTES$X_NOTEFILE_UPDATE NOTES$X_NOTEFILE_NOTICE NOTES$X_NOTE_CONFERENCE NOTES$X_HAVE_SAVED_LINE NOTES$X_LAST_ERROR_NAME GNOTES$CU_OBJECT_DELETE 'NOTES$CU_MEMBER_DELETE NOTES$CU_MARKER_DELETE 6NOTES$CU_CTRLC_DISABLE NOTES$X_READ_NOTE_NOTE NOTES$X_NOTEFILE_TITLE NOTES$X_SAVE_LAST_MORE NOTES$X_MAIL_SEND_FILE NOTES$X_PREPARING_NOTE NOTES$X_PARSED_CMDLINE bNOTES$X_DIRTITLE_RANGE NOTES$CU_CLASS_DELETE LNOTES$CU_INFILE_CLOSE :NOTES$CU_SEND_MESSAGE 5NOTES$CU_CTRLC_ENABLE NOTES$CU_ENTRY_DELETE NOTES$X_NOTEFILE_NAME NOTES$X_NOTE_PEN_NAME NOTES$X_MESSAGE_RANGE@NOTES$CU_RENAME_FILEENOTES$CU_FORMAT_DATE NOTES$CU_NOTE_DELETENOTES$X_READING_NOTENOTES$X_NOTES_ACTIVENOTES$X_LOGGING_FILEcNOTES$X_DIRMSG_RANGEgNOTES$X_DISPLAY_MODE2NOTES$CU_FILE_PARSENOTES$X_LINE2_RANGETNOTES$X_ARROW_RANGEuNOTES$X_ERROR_RANGENOTES$X_OUTPUT_FILEXNOTES$X_BATCH_MODEnNOTES$X_ENTER_TYPENOTES$X_NOTE_TITLEӛ)$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T3"cNOTES$X_SAVED_LINENOTES$X_REPLY_NOTENOTES$X_NOFN_RANGEoNOTES$X_ENTRY_NAMElNOTES$X_EDIT_TITLENOTES$X_QUEUE_NAMENOTES$X_NOTE_TIMENOTES$X_NOTE_TYPENOTES$X_NOTE_NOTENOTES$X_LAST_MORENOTES$X_PREV_NOTEANOTES$CU_COMPARE$NOTES$CU_QUEUE_CREATE_JOB$NOTES$CU_QUEUE_MODIFY_JOBNOTES$CU_QUEUE_CLOSE_JOB$qNOTES$X_ENTRY_OBJECT_SPECNOTES$X_MAIL_PROF_CCNOTES$X_MAIL_CC _ NOTES$X_CTRLCNOTES$X_NOTEFILE_CTXNOTES$X_NOTEBOOK_CTXNOTES$X_AUX_NOTE_CTXNOTES$X_LOGGING_CTXNOTES$X_BCK_DIR_CTXNOTES$X_AUX_DIR_CTXNOTES$X_OUTPUT_CTXNOTES$X_NOTE_CTX,NOTES$X_DIR_CTX$NOTES$X_READ_NOTE_CAN_REPLY NOTES$CU_PROFILE_MODIFY 0NOTES$CU_KEYWORD_MODIFY NOTES$X_READ_NOTE_REPLY INOTES$CU_OBJECT_MODIFY *NOTES$CU_MEMBER_MODIFY 9NOTES$CU_SEND_ADD_BODY NOTES$X_NOTE_CAN_REPLY WNOTES$X_AUTO_DIRECTORY NOTES$CU_ENTRY_MODIFY,NOTES$CU_NOTE_MODIFYNOTES$X_QUEUE_NOTIFYNOTES$X_REPLY_REPLYNOTES$X_NOTE_REPLY`NOTES$X_PREV_REPLY(NOTES$X_MAIL_PROF_COPYSELF_FORW$|NOTES$X_EVE_COMMAND_WINDOW$NOTES$X_EVE_MESSAGE_WINDOWNOTES$X_MOUSE_WINDOWzNOTES$X_EVE_WINDOW$\NOTES$X_COMMAND_RECALL_RESET$wNOTES$X_ERROR_EOB_NO_CURRENT$NOTES$X_SAVE_NOTE_INFO_NEXT$NOTES$X_MAIL_PROF_TRANSPORT$NOTES$X_EVE_HELP_LEGEND_BOT$NOTES$CU_QUEUE_LAST_OUTPUT$NOTES$X_NOTE_RECORDS_LEFT$NOTES$X_BACKWARDS_DEFAULT$NOTES$X_MAIL_LAST_SUBJECT NOTES$X_LAST_ERROR_COUNT MNOTES$INIT_MODULE_IDENT NOTES$X_NOTEFILE_CREDAT .NOTES$CU_NOTEFILE_LIST YNOTES$X_COMMAND_PROMPT [NOTES$X_COMMAND_COUNT NOTES$X_PROMPT_OFFSET NOTES$CU_PROFILE_GET$NOTES$CU_KEYWORD_GETNOTES$X_MAIL_SUBJECTHNOTES$CU_OBJECT_GET(NOTES$CU_MEMBER_GET<NOTES$CU_SEND_ABORTNOTES$CU_MARKER_GETNOTES$X_MAIL_CCLISTNOTES$X_MAIL_TOLISTNOTES$CU_CLASS_GETNOTES$CU_ENTRY_GETNOTES$X_EVE_PROMPTNOTES$X_REPROMPT NOTES$CU_WAIT$NOTES$X_NOTEFILE_MODERATOR${NOTES$X_EVE_COMMAND_BUFFER NOTES$X_READ_NOTE_AUTHOR yNOTES$X_EVE_OTHER_BUFFER NOTES$X_MAIL_EVE_BUFFER NOTES$X_OUTPUT_BUFFERNOTES$X_NOTE_AUTHORxNOTES$X_EVE_BUFFERPNOTES$$CALL_USER/NOTES$CU_SIGNAL2NOTES$CU_EDITOR(NOTES$X_NOTEFILE_RESTRICT_KWDS$8NOTES$CU_SEND_ADD_ADDRESSEES$NOTES$X_READ_NOTE_NUMREPLIES$NOTES$X_EVE_WORD_SEPARATORS$NOTES$X_NOTEFILE_NUMNOTES$NOTES$X_LAST_ERROR_STATUS 3NOTES$CU_ENTRY_GET_CLASS NOTES$X_NOTE_NUMRECORDS NOTES$X_LOGGING_RETRIES NOTES$X_NUMEVE_WINDOWS NOTES$X_NOTES_COMMANDS RNOTES$$INIT_VARIABLES=NOTES$CU_FILE_EXISTSNOTES$X_MOUSE_X_POSNOTES$X_MOUSE_Y_POSNOTES$X_NUMREPLIES$~NOTES$X_EVE_HELP_LEGEND_TOPNOTES$X_OVERLAP !"#$ % & ' ( )*+,-./0123456789:; <!=">#?$@%A&B'C(D)E*F+G,H-I.J/K0L1M2N3O4P5Q6R7S8T9U:V;W<X=Y>Z?[@\A]B^C_D`EaFbGcHdIeJfKgLhMT"N"O`$PL&RH'(.] ]_V02-027 [NOTES$INIT_MODULE_IDENTT.ffg(@gi iljjRcjk(km m0unnRns7f st(htv v$wRwpy/oy.mzzz|  . All DEC Notes  - 0_NOTES$$VERSIONT1 V_VERSION V_COPYRIGHT,PZ 6QL6J    J>02.0-60 0:0:5'?'@ A'BCD'E F GH'I'J'KLM N"O'P'Q'R'S'T'U'V'W"X XY Z [\]^  _ ` a' b cde'f'g'h'ijk lm'no p qr s t'u' v'!w'"x #y'$z'%{ &| '} (~ ) * + ,&#cx-. / m 0qu1P'2%2"2m"243252463|2FD FD 2KD KD '7'7m7PE2248'7'77PE22499 l89:E $ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TB"t; ;p%l<l=l>l?l@lAlBlClDF EH GH IH JH KFv L L,F M M,NNotes> F[Current error text highlighted - press CTRL-W to erase error display][No current error text] 123456789 WPS finishWPS quit23 NOTES$LIBRARYSYS$SCRATCH:NOTES_ _DDIF.TMP _EDIT.TMP _EDIT1.TMP _JOURNAL.TJL _MAIL.DIS _MAIL.TMP _MAIL1.TMP _SPELL.TMP _PRINT.LIS'NOTES$$INIT_VARIABLESS1S2T1X4 ql x80(T XL(NOTES$$NEXT_ENTRY_WITH_UNSEEN$1NOTES$KT_PATTERN_NZUNSEEN NOTES$$NOTEFILE_NOT_OPEN NOTES$$NEXT_NOTE_SCREEN NOTES$$NEXT_FULL_SCREEN NOTES$PREVIOUS_SCREENNOTES$$OUTFILE_OPENjNOTES$X_WORKSTATIONNOTES$NEXT_SCREENNOTES$X_EDSPAWN EVE_EVE$NOTES$X_SHOWX_SAVE_NOTE_INFO EVE$SET_NO_EVE_KEYPADEVE$SET_EVE_KEYPADNOTES$X_SHOWX_INFOMNOTES$X_ANSWER_NO :NOTES$$TRANSLATE_LOGICAL NOTES$$COMMAND_RECALLNOTES$X_SENDING_MAILNOTES$$SEND_MAIL NOTES$$SIGNALS NOTES$NULLNOTES$$OPTIONAL_PARAM NOTES$X_PRE_EXECUTE_MARKNOTES$$OPEN_NOTEBOOKNOTES$X_M1DOWN_CLICK`NOTES$X_SHOWX_MARKNOTES$$CLI_DISPATCH(NOTES$$CENTER_WIDTHNOTES$X_SHOWX_EOFFNOTES$X_SHOWX_BUFc NOTES$X_CBUF$NOTES$X_SEARCH_HIGHLIGHTING$NOTES$$CLI_PRESENT_OR_NEG NOTES$X_SEARCH_STRING NOTES$X_SHOWX_DIRPROGFNOTES$$LGETMSGH NOTES$$GETMSG NOTES$$STRING(NOTES$$FINISH_SEND_OR_FORWARD$NOTES$ERASE_PREVIOUS_WORD NOTES$$MAP_IF_NOT_MAPPED NOTES$$SET_EDITOR_KEYPAD NOTES$$NOTE_RANGE_OR_ID NOTES$$UPDATE_IF_MAPPED 9NOTES$X_DATE_TIME_FIELD NOTES$$UNMAP_IF_MAPPED NOTES$PROCESS_COMMAND NOTES$EXECUTE_COMMAND NOTES$X_SEARCH_NOTEIDNOTES$$EXEC_COMMANDNOTES$TOGGLE_KEYPAD8NOTES$X_DATE_FIELD5NOTES$X_ALLIN1_CMDKNOTES$X_CANCELLEDNOTES$DO_COMMAND%NOTES$X_USER_PID(pNOTES$$SET_GRAPHICS_STATUS_LINE(NOTES$$POSITION_TO_BOTTOM_LINE(NOTES$X_SHOWX_NOTE_CONFERENCE$NOTES$$FINISH_OR_ABORT_NOTE$NOTES$$POSITION_TO_TOP_LINE$NOTES$$ERASE_MESSAGE_LINE$NOTES$ERASE_START_OF_LINE$QNOTES$USER_CLOSE_NOTEFILE$NOTES$X_SHOWX_ARROW_RANGE NOTES$$DEFINED_PROCEDURE NOTES$$HIGHLIGHT_MESSAGE NOTES$$OPEN_LOGGING_FILE ONOTES$USER_OPEN_NOTEFILE NOTES$X_SHOWX_VIEW_NOTE NOTES$$COMMAND_RESTORE NOTES$USER_POINT_MOUSE NOTES$X_SEARCHING_NOTE NOTES$$MOVE_DOWN_LINE NOTES$$SET_ERROR_NAME NOTES$$WRITE_LOG_LINE $NOTES$X_USER_PEN_NAME *NOTES$X_PRIV_MODERATE NOTES$X_SHOWMSG_RANGENOTES$$MARK_TOP_LINEPNOTES$USER_READ_NOTENOTES$X_M1DOWN_MOUSE NOTES$X_SHOWX_ACTIVENOTES$$CURRENT_LINENOTES$CLEAR_MESSAGENOTES$$MOVE_UP_LINENOTES$START_OF_LINEkNOTES$X_MENU_ACTIVE)NOTES$X_VIEW_NOFILENOTES$$HYPHEN_LINENOTES$$INDENT_LINENOTES$$CAPITALIZENOTES$SET_MESSAGENOTES$CHANGE_MODENOTES$END_OF_LINENOTES$POINT_MOUSE"NOTES$X_USER_NAME'NOTES$X_VIEW_FILE(NOTES$X_VIEW_NOTENOTES$$DCL_PARSENOTES$$READ_FILENOTES$$READ_LINE~NOTES$$UNMAP_EVENOTES$$WHAT_LINENOTES$$PAD_LINE6NOTES$X_CAPTIVENOTES$$MESSAGENOTES$$MAP_EVE NOTES$$TRACE(;NOTES$KT_DEFAULT_NOTEFILE_SPEC$@NOTES$KT_MAILDIS_FILESPEC CNOTES$KT_SPELL_FILESPEC BNOTES$KT_MAIL1_FILESPEC >NOTES$KT_EDIT1_FILESPEC DNOTES$KT_PRINT_FILESPEC ANOTES$KT_MAIL_FILESPEC <NOTES$KT_DDIF_FILESPEC =NOTES$KT_EDIT_FILESPEC ?NOTES$KT_JNL_FILESPEC7NOTES$$APPEND_ASCIC4 NOTES$$ASCIC EVE$X_THIS_WINDOW$EVE$X_ENABLE_PARSER_NOTES -NOTES$X_ERROR_LINES_MAX ERR_SEL_POS EVE_NOTES(NOTES$$HARDCOPY_BUFFER_DISPLAY NOTES$X_SHOWX_OPEN_ENTRY NOTES$$NOFILE_DISPLAY NOTES$X_SHOWX_DISPLAYNOTES$$INVALID_ENTRY.NOTES$X_WINDOW_ARRAY/NOTES$X_BUFFER_ARRAYNOTES$ENTER_KEY$NOTES$$ENTER_COMMAND_WINDOW$NOTES$$ADJUST_TITLE_WINDOW$NOTES$$EXIT_COMMAND_WINDOW$NOTES$$GOTO_COMMAND_WINDOW$NOTES$$UNSHIFT_MAIN_WINDOW$NOTES$$ADJUST_MAIN_WINDOW$NOTES$X_SHOWX_ENTRY_ARROW NOTES$$MOVE_SELECT_ARROW NOTES$UNMAP_ERROR_WINDOW NOTES$$SHIFT_MAIN_WINDOW rNOTES$X_SHOWTITLE_WINDOW nNOTES$X_COMMAND_WINDOW oNOTES$X_MESSAGE_WINDOWsNOTES$X_LINE2_WINDOWtNOTES$X_LINE3_WINDOWuNOTES$X_LINE5_WINDOWqNOTES$X_TITLE_WINDOWwNOTES$X_ERROR_WINDOWvNOTES$X_MAIN_WINDOWlNOTES$X_MENU_WINDOWNOTES$$CURRENT_ROWNOTES$RIGHT_ARROWNOTES$$MARK_ARROWNOTES$LEFT_ARROWNOTES$DOWN_ARROWNOTES$MOVE_ARROWNOTES$UP_ARROW$NOTES$COMMAND_MODULE_IDENT$NOTES$$POSITION_THIS_SPOT$ NOTES$X_SHOWX_SAVED_SHIFT NOTES$TPU_MODULE_IDENT NOTES$$SAVE_ERROR_TEXT NOTES$EVE_MODULE_IDENT NOTES$$MARK_THIS_SPOT zNOTES_MODULE_PRE_INIT INOTES$X_NOTE_END_TEXT NOTES$X_M1DOWN_TARGETfNOTES$X_ERROR_SELECTNOTES$$MESSAGE_TEXTJNOTES$X_ENDREQ_LISTNOTES$$CLI_PRESENT{NOTES_MODULE_INITGNOTES$X_MORE_TEXTRNOTES$LOCAL_INIT2NOTES$$EXT_NEXT NOTES$$PROMPT NOTES$$EXIT  NOTES_EXIT(NOTES$$POSITION_TO_EMPTY_BUFFER(NOTES$ERASE_PREVIOUS_CHARACTER$NOTES$$FIND_OR_CREATE_BUFFER$NOTES$$MESSAGE_FROM_ERROR NOTES$$SET_COMMAND_ERROR XNOTES$X_DIRECTORY_BUFFER _NOTES$X_MAIL_NOTE_BUFFER NOTES$X_SHOWTITLE_RANGE2 aNOTES$X_SHOWTITLE_BUFFER TNOTES$$INIT_EDIT_BUFFER NOTES$X_INTERNAL_EDITOR bNOTES$X_DIRTITLE_BUFFER NOTES$$START_NEW_ERROR dNOTES$X_SCRATCH_BUFFER VNOTES$X_COMMAND_BUFFER #NOTES$X_USER_MODERATOR NOTES$X_SHOWX_VIEW_DIR NOTES$X_SHOWX_CONFDIRNOTES$$COMMAND_ERRORNOTES$$DISPLAY_ERRORNOTES$EXECUTE_BUFFERYNOTES$X_LINE2_BUFFERZNOTES$X_LINE3_BUFFER[NOTES$X_LINE4_BUFFER\NOTES$X_LINE5_BUFFER`NOTES$X_TITLE_BUFFEReNOTES$X_ERROR_BUFFER NOTES$X_SHOWX_BUFFERNOTES$$TITLE_BUFFERgNOTES$X_LOAD_BUFFER^NOTES$X_MAIL_BUFFERWNOTES$X_MAIN_BUFFER!NOTES$X_USER_EDITORNOTES$X_USER_AUTHOR]NOTES$X_EDIT_BUFFERmNOTES$X_MENU_BUFFERNOTES$$MAIN_BUFFERNOTES_QUIT_HANDLERNOTES_EXIT_HANDLER&NOTES$X_VIEW_DIRP4NOTES$$INTEGER$+NOTES$X_PRIV_CREATE_KEYWORDS$NNOTES$USER_INIT_VARIABLES$,NOTES$X_PRIV_WRITE_BYPASS NOTES$$MESSAGE_WITH_ARGS 0NOTES$KT_WORD_SEPARATORS NOTES$X_SHOWX_OPEN_CLASS xNOTES$$DEFINE_EXIT_KEYS NOTES$$SIGNAL_WITH_ARGS hNOTES$$CREATE_WINDOWS UNOTES$$CREATE_BUFFERS NOTES$$UPDATE_ENTRIES NOTES$X_SEARCH_RANGESNOTES$$DOUBLE_QUOTESNOTES$NEXT_BACK_KEYSNOTES$$STRIP_QUOTES NOTES$X_SHOWX_CLASSyNOTES$$DEFINE_KEYSNOTES$$FILE_EXISTSNOTES$$UNMAP_NOTESiNOTES$X_MAIN_LINES NOTES$X_USER_CLASS|NOTES$X_USER_FLAGSENOTES$X_NMORELINESLNOTES$X_ANSWER_YESNOTES$$EVE_NOTESNOTES$$MAP_NOTES, NOTES$$YES NOTES$X_TEMP NOTES$X_SHOWTITLE_RANGE13NOTES$X_ALLIN1} MAIN_BUFFER2"4#78$:$FX%H%N&OT&P&Q&R&S('TP'U(h,pp2xD3y4z4{5~\=>AB*}*$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ts*"@DDHKLDN3 U'> @3 D'@YA3 4'AZB3 $'B[C3 'C\ETE]KTK^QH QR3 R_V3 'V`W3 'WaX3 'XbY3 'YcZ3 'Zd[3 '[e\g]Je-a3abeb=dFdfe=f3  'fgq NOTES$COMMAND NOTES$MAINNOTES$DIRECTORY NOTES$SHOW NOTES$LINE2 NOTES$LINE3 NOTES$LINE4 NOTES$LINE5 NOTES$EDITNOTES$MAIL_EDITNOTES$MAIL_NOTE_TEXT NOTES$TITLESNOTES$SHOW_TITLESNOTES$DIRECTORY_TITLESNOTES$LISTING_SCRATCH NOTES$SCRATCH NOTES$ERROR NOTES$LOAD'$NOTES$$CREATE_BUFFERSS1V_POSP<}:~S9,g\&#cxiJK j kR%54%,(%#%  j: 4 Pjsii kJK l3 $'mnlopolqpqlrJ'r'lsltptluJuJ?u"livJ%vlwJwJ?w"pw \i&(,QS8 @Bi XTT _:WTWVTPTW NOTES$MENU NOTES$MENUNLA0/qNOTES$$CREATE_WINDOWSS1T1T2TT_TERM<g<>&R?\@J''A",AJ'LM!#*q45NOTES$$SET_GRAPHICS_STATUS_LINE THIS_WINDOWJ CBO 0@-JQNOTES$$DEFINE_EXIT_KEYS PROC_PROGRAM PROC_COMMENT PROC_KEY_MAP V_KEY_MAPNOTES$$DEFINE_KEYSt DBED cfnNOTES NOTES$HELPKEYPAD.For help on NOTES, type NOTES and press RETURN NOTES_USERNOTES$HELP_USERKEYPAD}NOTES_MODULE_PRE_INIT,   JJAB |: H4|6|  JxR&gg8&#c  gUh(}] } }=}~X H $>  8'!Mn      g(UoUqUv RgpZt" 8J?wJ?wtJ  T C6 |    U= XA   UX   T  >  l   !X" " l## $,Q% %l&&) l*x* +<, ,,-l.Lm..0f 1  2Lp3m3m3 3>  ??CG Gf ONOTES$USER_FLAGS AUTOMATIC ENTRYCLASSCLASSUPDATE DIRECTORYUNSEEN NONOTEBOOKNOTEBOOKNOTE_ID /NOAUTOMATIC/AUTOMATIC=DIRECTORY/AUTOMATIC=UNSEEN /NONOTEBOOK/CLASS=0 0:0:5OPEN DIRECTORY/NOTEBOOKNOTES_MODULE_INITS1S2S3T1T2V_DCLV_ENTRYV_CLASS V_AUTOMATIC V_NOAUTOMATIC V_NONOTEBOOKV_NOTEIDV_COPYRIGHT_DISPLAYED ~  g4x.  x &NOTES$$UNMAP_EVE SAVE_WINDOWS H9  F:   0   \]`(W] $TW(X]  3 o'X( ]  3 K' (]] $T"](^] $T^g$v r qo  nV&ndJ!"kH(m]  3 'm lm H  6'KL$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"=P5' NOTES$MAINNOTES$DIRECTORY NOTES$SHOW NOTES$EDITNOTES$MAIL_EDIT NOTES$MENU1NOTES$$MAP_NOTESS1 V_TITLEBUF V_MAINBUF\PDO O 9NOTES$$CLI_PRESENT_OR_NEGENTITYS1 SUCCESS_FLAGT (P  6 6   ( 6,  9 Q \A  '6 ""RNOTES$$OPTIONAL_PARAMPARAMVALUE STRIP_QUOTESS1T1 V_SUCCESS V_OPTIONAL<P2NOTES$$CLI_PRESENTENTITYS1 SUCCESS_FLAGt'777'Q7P l Q7P2 4P '777777'7'77P SP  $242!!  !R!P  '!2 22$24W24V126 NOTES_EVEMAIN9ADD ENTRY NOTES$SAMPLE /NAME=SAMPLE_CONFERENCE/CLASS=MAIN NOTES_EVE3NOTES$$OPEN_NOTEBOOKS1S2S3V_NBV_FLAGSplS&S&T&U&DW&g(X&eY&\& \&_&2_&`&2`&a&2a&b&2b&c&2c&d&2d&e&2e&f&2f&g&2g&h&2h&i&2i&j&2j&4j&k&k&8k& l&m& mo&gp&3p&q&q&=r& es&wt&Uwu&=lv&[v&[w&P x&(y&ez&}&P }&~&_ && &&*FK&NOTES$$UPDATE_ENTRIES ENTRY_NAME CLASS_NAMES1S2S3S4V_POSp1RPRP8 0uR6*NOTES$$STRIP_QUOTES THE_STRINGT1x) )`Fy Hx  g<qpq=Wq =WU4 ,g `DIRECTORY/NOTEBOOK$NOTES$$NOFILE_DISPLAYV_POS'777P=242PNOTES$$FILE_EXISTS FILE_SPEC DEFAULT_SPEC RESULT_SPEC SIGNAL_FLAGS1S25&(56J7&(U78J@9(:T; ;(<g=g? ??g@&GA A\B BC CCODg DD EFHHJIIJ@JKKP8.NOTES$EXECUTE_BUFFER THIS_BUFFERS1T1T2V_BUF++(+A+,(x,A,,(^,A- -<. ..0 02 24*%/*NOTES$$INVALID_ENTRY ENTRY_NAMEERRMSG0( Rm1lR(<Rkm pjjm1NOTES$$DOUBLE_QUOTES THE_STRINGS1S2T18$NOTES$$MESSAGE MESSAGE_CODE4 %3%&' _( m*\]l+[+[, -'./60 00Q4 445(56 6 61o66u77R78 9p:y:?R]@O @<C1CRTD DpEYEF1xFFRmFFG6LLN OLQgRSY Z[\ s_=k0.0READ !-_6NOTES$EXECUTE_COMMANDCMDLINES1S2 V_CMDLINEhhkg`lPl llmn3nn\o op:qYrY r(s:t Y uvvv=w8xxx3xxy1y yy {| Y ~  V= Y6'Y-QC+8 T2     >  G]NOTES$$ENTER_COMMAND_WINDOWA_RANGEP1K1CURRENT_COMMAND_LINE(! !%V02-007#NOTES$COMMAND_MODULE_IDENTK0% NOTES$$TRACE ROUTINE_NAME ROUTINE_ENTERlNgNP ]QQ&(TR R4S TTJ U,V WWJY^KNOTES$CHANGE_MODET1X_g_a ]bb1bwbb8g^NOTES$END_OF_LINEljgjl ]mPnn noZqtqq8vgNOTES$START_OF_LINET1xygy{ ]|P}n }l~Z~  %vNOTES$ERASE_PREVIOUS_WORDT1g ]Pn lZ *NOTES$ERASE_PREVIOUS_CHARACTERT1l0g ]Pn Zt%NOTES$ERASE_START_OF_LINET1\Pn8 4  gYn8 : 3=Y  8pono6P 28P8 = P :P1Z,28 & (Du"= (Dv =YY ,3  3V=3Sp: $"6 h3S: ,"t6Y8z k$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TJY" X=>> LRC="", CL="">> "!AS" >> -"!AS"HNOTES$$COMMAND_RESTOREWHICH_DIRECTIONV_POS V_CMDLINEV_NOMORE0h u5g 3=3S 82831x83tu=;NOTES$$HIGHLIGHT_MESSAGE MESSAGE_CODEV_POSV_MARKHgY` 6`"NOTES$$ERASE_MESSAGE_LINE]h+g>  ] <YnZA  ]]#)NOTES$$COMMAND_RECALL SHIFT_MODEHȲ$%&()."#NOTES$UP_ARROW SHIFT_MODEXj5j kT5k&Al l,mnoprv4w wwx{ NEXT TOPIC BACK TOPIC+gNOTES$MOVE_ARROWLINE_DIRECTIONS1Ht/01349$.NOTES$DOWN_ARROW SHIFT_MODE<=>@BgBDPEn ElFZFHH HH8IN'9NOTES$LEFT_ARROW SHIFT_MODET145 8 ,4  NEXT REPLY BACK REPLY0NOTES$NEXT_BACK_KEYSWHICH_DIRECTIONS1TQRSUWgWYPZn Z0[[1x[[ \]]__ __8`g(NNOTES$RIGHT_ARROW SHIFT_MODET1`\8g8:&w ; ;$>?wAUM!1NOTES$UNMAP_ERROR_WINDOW0ԭg6`NOTES$CLEAR_MESSAGE04 g4 8 A8 : tO; O< A= O= A> > ? A B  C  D  E (F T G c H eK &v K L &vcL ~M xM M N &vdN O &vbO P 'Q 3Q R = T 2T T 8U V X  X dY  Y Z 3Y[  [ \ : ] ^  ` b b lc 3c d = e 2e e 8f 3f g = h i  i k :l 3Pl  l l o <s t 5t t 5t Au u v y { $| F|  } ,~ H~  e A    '+ + 8 8 =   I   + 8 H   = P :  T + 8 4 =   '  d   G   I   2  8 5 5   : 3  0   F T H 8       3     v  Uv = ` +  8 ( C    T =  NOTES$$MOVE_SELECT_ARROWLINE_DIRECTIONS1T1V_POSV_MARKV_SPOTV_FLAGV_LINESV_LENGTHV_TOPV_BOTTOMV_BUF V_ARROW_RANGEV_MESSAGE_RANGEV_EOFFV_BOFFTHIS_ROW THIS_NOTETHE_ENDEND_OK0    !NOTES$DO_COMMANDCMDLINE0|2||8}3}}S} }} }~: {NOTES$$MOVE_DOWN_LINE283S  : NOTES$$MOVE_UP_LINEܣ  =   2  8 3  \  8 3  \  D1"    I l D1    @  I  F   ' '   = G  2  8 Y  Y 8  @  3  F   _   I   < =v =  > M NOTES$$NEXT_ENTRY_WITH_UNSEENWHICH_DIRECTIONS1TARGET SUCCESS_FLAGXؠ| ~ ~  & X  W  z NOTES$$MAIN_BUFFERX`p r ar t &v bv x `x z n NOTES$$TITLE_BUFFERY8 (3=3S '  =1NOTES$$CURRENT_LINE THIS_BUFFERS1V_POSP؞g3L=:3 =3Pp1lR6:_ x=_NOTES$$HARDCOPY_BUFFER_DISPLAY THIS_BUFFER SHIFT_AMOUNT OMIT_LAST END_OF_BUF SAVED_POS$$ % & ' ]( )*`-gp.'/l0n12w3q4r5v68P6'ENOTES$$UNMAP_NOTESS1@``'NOTES$SET_MESSAGE MESSAGE_CODEdTgT(VTW W0X& Y YZh+MNOTES$$UNMAP_IF_MAPPED THIS_WINDOWN~ O Q TgV VW~. XhY[ [ \/]_/`/a~/ c(dewf=r3ENOTES$$MAP_EVE THIS_BUFFER OTHER_BUFFERT1Pu3uv swx=}#rNOTES$$COMMAND_ERRORV_POSl,8ge=Ffe=G+5m 3=eG= 3eS  4 ((A(A(rA(dA(VA(OA(GA :    :  == error opening error closing error writing error reading error parsingsystem service errorinvalid access name access nameBNOTES$$MESSAGE_FROM_ERROR HARD_ERRORS1V_POS ERROR_RANGEdP X  1}NOTES$$DCL_PARSECMDLINES1 SUCCESS_FLAG|''P'6NOTES$$CLI_DISPATCH COMMAND_VERB SUCCESS_FLAG<L &NOTES$PSh?$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"ROCESS_COMMANDCMDLINE.P(  D6Q88 \ 1NNOTES$$NOTE_RANGE_OR_ID NOTEID_INSTR NOTEID_FLAGOUT_STR SUCCESS_FLAGhԒ a'bcjk_l _ngo&#?oq q(lrtrr sjttv&#cw w$x&#cxX{ {0|J!" }~' -]B-]B8-]B8 1R]lA1xRkR] p _ $' \j_-TC-TBA  (J!"-__uVNOTES$$READ_LINE PROMPT_STRINGANSWER PROMPT_OFFSETT1T2S1S2V_PROMPT_STRINGV_PROMPT_OFFSET V_PROMPT_ROWd @u   "'71Q77P  - !%T !AS!ASFNOTES$$WRITE_LOG_LINECMDLINEWHICHS1S2V_WHAT SUCCESS_FLAG@g&v  4=v\ &d&c&G 4"P6ssm $s: ,smx:28Us ("[6 U>> !UL !UL !UL !UL !UL >> !UL !SLJNOTES$$POSITION_TO_BOTTOM_LINEV_LENV_LINEV_ROWV_TOP V_RECORDS8u vR]wt w\xPxz {P'{} }!4kNOTES$$EXEC_COMMANDCMDLINES1 SUCCESS_FLAGxLPX $3d 4PW 3NOTES$$MARK_TOP_LINE`g :'NOTES$$POSITION_TO_TOP_LINET1h$y&y{ { |&b|-vNOTES$$CURRENT_ROW THIS_WINDOWV_ROWM3MN2NN8O3OPP&GPlQQRRPS S4TUUU V,WXXXs^^^j___`=saa:b3c cd eHfg3gOh hh j(l=nnscANOTES$$WHAT_LINEV_POS THIS_POSITION THIS_LINE TOTAL_LINES HIGH_LINELOW_LINE LOW_POSITION3=f3fe=F '7777P e =!3Y! !"G"%'=(F(f*=+,,.?NOTES$$OPEN_LOGGING_FILES1V_POSV_MARK ERROR_SEL_POSt0P 22 =NOTES$$OUTFILE_OPEN OPEN_INFOOUTPUT_FILESPECCTXS1Hxh ip qstt&(UtuJ@v&(vwJy?{L||J@}}J=GaNOTES$$READ_FILE FILE_SPEC THIS_BUFFERQUIETLYT1V_SUCV_INFOX$SnVT=nUW=nXVX=]#PNOTES$$GOTO_COMMAND_WINDOW dehd NOTES_EXIT,g,Yn ]V=: RZPY 0lZRg=v> 8NOTES$$EXIT_COMMAND_WINDOWCURRENT_COMMAND_LINE~3 mX[  e==e =<NOTES$$SAVE_ERROR_TEXT LINE_TO_SAVEV_POS V_ERR_POS~&#HJ$3 mfgee=Ff[=J$.NOTES$$START_NEW_ERRORV_POSV_UPDATE(|BNOTES$$SET_ERROR_NAMESIGNAL_ERROR_NAMESIGNAL_ERROR_CODE$p| P$NOTES$$SET_COMMAND_ERRORS14$|'# NOTES$$SIGNAL MESSAGE_CODE{!"'#Q#7$7(%T& &0'7(P/ )*P--1HNOTES$$SIGNAL_WITH_ARGS MESSAGE_CODE SIGNAL_ARG1 SIGNAL_ARG2S1lzogo(qTr r8s& Yt tu9hNOTES$$MAP_IF_NOT_MAPPED THIS_WINDOW THIS_BUFFERdzg(T 0&  U,NOTES$$UPDATE_IF_MAPPED THIS_WINDOWlygT&vP 1v  &NOTES$$UNSHIFT_MAIN_WINDOWT1xgH&vP v  $NOTES$$SHIFT_MAIN_WINDOWT1twgOq  LOr a $Ow e =&GoOw l li li&ctOe =&Gx:1w8G1 $J ew J evDNOTES$$ADJUST_TITLE_WINDOW THIS_WINDOW THIS_BUFFERV_ADJUSTp@ug(T (&7 l(T  0!&Go!! "(("T# #$& &&l'i' 'l'i'))v+&vcl,iv,w,,v56NOTES$$ADJUST_MAIN_WINDOW ADJUSTMENTV_ADJUSTs|8YUeU=VFVfWeW=XGXY_&eG_ _ao b d3df=egGghgjw k leo oq=s3ssSss@ttRp$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" tu: vx=z{=}g ~/MNOTES$$DISPLAY_ERRORV_POS ERROR_RANGExpq(T  (7$>NOTES$$MESSAGE_TEXT MESSAGE_CODEFAO_ARG1FAO_ARG2S1|p    4  m6 FNOTES$$MESSAGE_WITH_ARGS MESSAGE_CODEFAO_ARG1FAO_ARG2S1T1o8: :h;R;< ,=Rk==@@G*3NOTES$$CAPITALIZE THIS_TEXTS1S2\oJJ JJKPV*EOF'G NOTES$$PROMPT PROMPT_STRINGS1`n kl2T6,1 (LOA   X(MOA  $  k NOTES$$YES THE_QUESTION NULL_DEFAULT PROMPT_OFFSETS1V_PROMPT_STRINGV_PROMPT_OFFSET SUCCESS_FLAG(l "V02-005NOTES$EVE_MODULE_IDENT xl$ $&"EVE$SET_NO_EVE_KEYPAD 4l( (,&EVE$SET_EVE_KEYPADk56 7l89xy:xDF;: <= J EVE_notes NOTES notesBUFFER,EVE_EVES1$kRS TX=VWAW WX Y$Z[hJ EVE_NOTESHjo~pq qqxr~2hNOTES$$EVE_NOTES THIS_BUFFER SAVE_WINDOWSj 4  `H M , U '~NOTES_QUIT_HANDLERS1V_STATUSh0de=gggiP5'4kh kl'o3oprpsu^\vxyyy{Hq {L,{{D   8 '77P9 P:' P;'24243 P ,    T  0    $lDP K ;*WYNOTES$$SEND_MAIL SEND_BUFFER ABORT_FLAGS1S2T1V_POSV_FILEV_DELETEV_ABORTeld@|dP4fhg f<hi  j lmp hq w;*5aNOTES$$FINISH_SEND_OR_FORWARD SEND_STATUSS1d @d 4Z! J$ *P5'4h '=d 3 n  Fkl |   Q (nA ]]S      &]G  d ] =  6  5   ^,  $ j!!L,!!$$%%% +h/0'172737$4'6n$7"797:P ;(<!=*>@D3DE]E=F)FG=I JK M'M NR( VHW&#HW X XJ$Z*_4a6'b &pc\ ceg0h hJ$i p!UL.!ULREAD |NOTES$$FINISH_OR_ABORT_NOTE ABORT_FLAGS1S2T1T2V_ABORTV_TITLESAVE_POSLAST_POS NOTE_REPLY NEW_NOTEIDV_UPDATE\\]lmnq$rtUuwyrzql{={Pl|>|Pl}A}Pl~B~Pl@hP6'J@>J@;*;*;*;*;*h NOTES$$EXITCMDS1l[= 42C   NOTES_EXIT_HANDLER(T[ /NOTES$$DEFINED_PROCEDURE THE_PROCEDURE Z NOTES$USER_POINT_MOUSEpZg=K(] 3Y 43l  6PqPAPv5(A # .@@@@@@@@@@@ ;PE"E "1xR( U 1RT3 81xRp   Pq LT{8 M |Pv d(A     P v Q  RT AJ8A   J8    5  P   ` T5 & !H"T$ $ %&R+- .0123456789...READ *SELECT more lines...more...end of SELECTSELECTgNOTES$POINT_MOUSEV_NOTEIDV_NONDIGIT_PATTERNV_TARGETV_TARGET_BEGIN V_TARGET_END V_THIS_LINES| g| ~    3      &d   &c   &G   s m  s     4s  "p 6   = := &      :  U  s x   (s  v  =     $ & T  >> !UL7 >8 e 8 19 9 9 9 ;  ; d< 5< y$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TU" = >  ? 0? T5? & @ A TD F H H H I I &dI J tJ sJ oJ nJ J N 3N P  P R J R S XS =U U V H V |W X 'Y IY [ 0\ P] :u^ ^ ` _ a \jd od Pe  e (f =1g g vi Uvj Tk r O& NOTES$PREVIOUS_SCREENS1T1V_TOPV_LENV_ROW V_RECORDSV_POSV_REMAINpM  g  ?  &G O! O" A# O# A$ O$ A$ 5$ A% % ' ( 3( ) 2) ) 8+  + , &vd, - 3- - S. . / &vb/ 1 v1 s2 2 x2 2 :4 &vP5 5 6 88 38 9 0 Z; S ; 8< < 1< w< x< < 8> 3> S> ? =OA OB AC OC AC 5C D 8D E F P >R NOTES$$MARK_ARROW ARROW_RANGE IN_MIDDLEV_POSV_MARKV_TOPV_BOTTOMV_ROW(\Jf fV02-031dNOTES$TPU_MODULE_IDENTJ gRP dRcqoG RP `Rcqo   ,QH   EVE$SET__KEYPAD EVE$SET_NO_KEYPADEVE$SET_EDT_KEYPADFNOTES$$SET_EDITOR_KEYPAD OLD_EDITOR NEW_EDITORS1S2V_STATUSG&(UJ@< @ 0 - J@"NOTES$TOGGLE_KEYPADT1T2FgXYn @-TB       Y Y-T CA-TBA = &    dr  !@# #$8 %&+)-P6 NEXT REPLY NEXT UNSEENNOTES$ENTER_KEYS1EP! !  !! f!J! !!!! !A! ! !r !!q !'!5! !! !!'!B!! !=l!!!!!!!!S!!"(""" "$" s""="" "5 " X "8 " " " " ""G ""5" ""_" $"F" "$"H""A" "  "!"J "" $"%"''" ("G(")"5)" *"+"C+","-"-"8-"O."/" /"8/"A0" 0"(1"2" 3"  6"7"I7"8"58" 9"XO;" ;"$<" ="  >"$O?" ?"@" E"uF"F"G" G" G"PI"gPuJ"J"L" L"(M"N"U O"UvS"_ T"0U"+U" 8U" V"dX" Y"F Z"0["H \"]"`"A`" c" c"pd"d"Pe" e",f"f"g"= g"h"= j"  k"l" o"gr" s" t"u"Tw"y"Dz"U {" {"=|" v }",~" ~"=":"Uv "4s"im"" "   " ""!NOTES$$NEXT_FULL_SCREENCONTINUE_SEARCHS1T1V_IV_I2V_FIRSTV_LINES V_SETLINESV_POSV_ITEMV_ARROWV_BUFV_EOFFV_WINDOW BACKUP_LINESH|=u vx xz z!sNOTES$$NOTEFILE_NOT_OPEN  =  r  ' B  W =    S   \  &G   s       $s    Z 45    Q 5  u   P T    \   I  2 4   (8  + X8  1l  R     u   1  Pu  R l   @    \    11RZZ8@1xR \  l  u  u     P_ =rP I X24  "E P!D# #$I % '"E'-g/1,222= 3466 8E 8 9 9t: :=l; ; >3= >>  ?h@ BDDEUqFWF=G v H,MWM=N:PUv Q8sRimRR S W Y     NOTES$$NEXT_NOTE_SCREEN INITIAL_FLAGS1S2T1V_MARKV_IV_JV_LINESV_FIRSTV_COUNT V_TEXT_TYPE BACKUP_LINESV_TARGETV_SELECT04:<==?6 NOTES$$ASCICWHAT44M4MQNNSL NOTES$$STRINGWHATL43S ( <838*NOTES$$MARK_THIS_SPOT MARKER_NAME3 d=YY8 8.NOTES$$POSITION_THIS_SPOT MARKER_NAME23 ,O  t L < Fw J =TNOTES$$FIND_OR_CREATE_BUFFERBUFFER_PARAMETER BUFFER_NAMEV_POS LOOP_BUFFER@p1(T =4NOTES$$POSITION_TO_EMPTY_BUFFER THIS_BUFFER<0p$"!#*4NOTES$$HYPHEN_LINE HYPHEN_COUNT HYPHEN_CHARh0 " !#* !AS1NOTES$$INDENT_LINE THE_COUNTTHE_LINET1|/1w "!AS!#* $NOTES$$PAD_LINETHE_LINET1P@/g(&#hNOTES$$CENTER_WIDTHl4Tp  @ <0DT ^_$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T8"EVE$KT_HELP_FACILITY_EVE NOTES$$NOTEBOOK_NOT_OPEN NOTES$$PAD_LEFT_MARGINNOTES_SHOW_VERSIONxNOTES$$INFILE_OPEN~NOTES$$MAIL_BEGINNOTES_SET_SEEN NOTES_SPAWNx NOTES_OPEN(NOTES$$GET_DECODE_NOTEFILE_INFO(<NOTES$$FORMAT_CONFERENCE_INFO$INOTES$$FORMAT_DIRECTORY_INFO$NOTES$$CENTER_REVERSE_VIDEO$%NOTES$$COPY_REPLY_NOTE_INFO$nNOTES$$GET_FIRST_SHOW_INFO$JNOTES$$GET_FIRST_DIR_INFO$FNOTES$$GET_NEXT_SHOW_INFO HNOTES$$GET_NEXT_DIR_INFO /NOTES$$DECODE_NOTE_INFO GNOTES$$FORMAT_SHOW_INFO 0NOTES$$FORMAT_NOTE_INFO2NOTES$$UNPACK_NOTE_INFO iNOTES$$GET_BUFFER_QUALNOTES$CLOSE_JOURNALNOTES$OPEN_JOURNALD NOTES_MAILMNOTES$$MISSING_PARAM THIS_WINDOW gNOTES_DIRECTORY_NOTEBOOK NOTES$$DISPLAY_NOTEBOOK+NOTES$$NEXT_BACKX NOTES_BACK NOTES_MARKNOTES$$FIELD_WIDTH NOTES_SEARCHW NOTES_ATTACH< THIS_BUFFER(A NOTES$$EOFF@NOTES$$CONTPROGNO_ALREADY_MSG$NOTES$$WRITE_EXTRACT_RECORD }NOTES$$WRITE_MAIL_RECORD NOTES$$FINISH_FORWARDaNOTES_DELETE_KEYWORDNOTES_MODIFY_KEYWORD_NOTES_CREATE_KEYWORD"NOTES$$SPAWN_COMMAND1NOTES$$SPLIT_NOTEIDNOTES$$FINISH_SENDNOTES_SHOW_KEYWORDQNOTES_ADD_KEYWORDKNOTES$$MAIL_ENDONOTES$$NOTE_ID NOTES_FORWARD NOTES_READD NOTES_SEND(=NOTES$$FORMAT_NOTE_KEYWORD_LINE$NOTES$$INVALID_PERSONAL_NAME$NOTES$$SHOW_CONFERENCE_TITLE$ NOTES$$CANCEL_READING_NOTE$9NOTES$$FORMAT_KEYWORD_LINE$mNOTES_DIRECTORY_CONFERENCE$NOTES$$READ_NOTE_TEXT_HERE$NOTES$$SHOW_NOTEBOOK_TITLE$lNOTES$$SHOW_DIR_CONF_TITLE$,NOTES$$BEGIN_READING_NOTE$.NOTES$$DEFAULT_NOTE_RANGE$tNOTES$$EXTRACT_NOTE_RANGE$7NOTES$$FORMAT_MARKER_LINE$;NOTES$$FORMAT_MEMBER_LINE$ NOTES$$NOT_READING_A_NOTE$>NOTES$$POSITION_IN_MIDDLE uNOTES$$EXTRACT_OPEN_FILE 8NOTES$$FORMAT_CLASS_LINE 6NOTES$$FORMAT_ENTRY_LINE NOTES$$STRING_FROM_RANGE NOTES$$FORMAT_DATE_TIME [NOTES_CREATE_CONFERENCE NOTES$$SET_MORE_MESSAGE :NOTES$$COPY_MULTI_LINE 5NOTES$$FORMAT_DIR_LINE NOTES$$SHOW_TITLE_LINE NOTES$$WRITE_DDIF_FILE NOTES$$CLOSE_NOTEFILE NOTES_SHOW_CONFERENCE NOTES$$READ_NOTE_HERE ^NOTES$$SET_CONFERENCENOTES$$DISPLAY_TITLENOTES_SET_CONFERENCE]NOTES$$OPEN_NOTEFILE!NOTES$PREVIOUS_NOTENOTES$$CENTER_LINENOTES_SHOW_PROFILEdNOTES_DELETE_NOTENOTES_SET_PROFILENOTES$$FILE_PARSENOTES$$WRITE_FILENOTES_SHOW_NOTENOTES$$COMPARENOTES_SET_NOTEZNOTES_CONTINUE NOTES_UPDATEY NOTES_CLOSE NOTES_WRITEXp NOTES_EVEDrNOTES$$CLOSE_QUEUE_JOB$NOTES$$SHOW_CTRL_Z$EVE$PACKAGE_PRE_INIT_NOTES EVE$PACKAGE_INIT_NOTES NOTES$$CTX$ NOTES$$HARDCOPY_LINE_DISPLAY$DNOTES$$SELECT_FROM_DIRECTORY$(NOTES$$ENTER_TOPIC_OR_REPLY$NOTES$X_NOTEFILE_REPLY_ONLY NOTES$$GET_FIRST_ENTRYNOTES$$ENTRY_MODIFY`NOTES_DELETE_ENTRYNOTES_MODIFY_ENTRYNOTES_SHOW_ENTRYPNOTES_ADD_ENTRY|fNOTES_DIRECTORY ENOTES$$SELECT_FROM_SHOW NOTES$$RESTORE_PRESHOWNOTES$$SAVE_PRESHOWNOTES$$CANCEL_SHOWoNOTES$$COMMON_SHOW?NOTES$$ERASE_ARROW({NOTES$$GET_MEMBER_MAILING_LIST wNOTES$$EXTRACT_NOTE_TEXT NOTES$$GET_CLASS_DEFAULT CNOTES$$ITEM_FROM_CURRENT NNOTES$$GET_CLASSES_LIST |NOTES$$GET_MAIL_SUBJECT yNOTES$$ADD_MAIL_TOLIST zNOTES$$GET_MAIL_TOLISTeNOTES_DELETE_OBJECTNOTES_SHOW_OBJECTUNOTES_ADD_OBJECTNOTES_SET_OBJECTNOTES$$HELP_TEXT NOTES$$SELECTs NOTES_EXTRACT NOTES_SELECT NOTES_PRINT NOTES_NEXT NOTES_TPU$-NOTES$$DEFAULT_TOPIC_NUMBER$$NOTES$$EXTERNAL_EDIT_BUFFER$NOTES$$MAIL_EXTERNAL_EDITOR$kNOTES$$DIR_NOTEBOOK_HEADER$vNOTES$$EXTRACT_NOTE_HEADER$'NOTES$$HARDCOPY_EDT_EDITOR$)NOTES$$PASS_BUFFER_TO_USER$4NOTES$$FORMAT_NOTE_HEADER #NOTES$$EXTERNAL_EDITOR LNOTES$$KNOW_THE_EDITORjNOTES$$DIR_TO_BUFFER3NOTES$$FORMAT_AUTHORNOTES_SHOW_MODERATORcNOTES_DELETE_MEMBERbNOTES_DELETE_MARKERNOTES_SET_MODERATORNOTES_MODIFY_MEMBERNOTES_SHOW_MEMBERNOTES_SHOW_MARKERNOTES$$OPEN_ERRORRNOTES_ADD_MARKERSNOTES_ADD_MEMBERNOTES_SHOW_ERRORV NOTES_ANSWER(qNOTES$$HANDLE_MODIFIED_BUFFERS$TNOTES$$GET_MEMBER_PRIVILEGES$hNOTES$$PARSE_EXTRACT_QUALS$\NOTES$$PARSE_RESTRICTIONS NOTES$$TRANSLATE_TABSNOTES$$CLASS_EXISTSNOTES$$SHOW_MEMBERSNOTES_SHOW_CLASSESBNOTES$$MAIN_LINESNOTES_SET_CLASS$&NOTES$$HARDCOPY_WRITE_LOOP *NOTES$$ENDWRITE_CLEANUP NOTES$$HELP NOTES_HELP0 NOTESHELPx$   " # # @% % <& &T'T+@,.$005`679;<>@ABtB C!TE"$F#F$H%lI&J'K(8M)@R*S+T,U-X.Z/0[0[1]2^3`4c5o6<?h@<ÅB<C؋DČEF`GHHԔIJKL<MNlO؝P\QRSTDU,VlWرXLYZ@[\]^_|`a4bcdefgh<ijk@lmn8op\qdrps0tHuhvwxy4z{L|P}(~T D4 ##$)*H1$2h3D8h<?@BtBCdHHIJMNHS@ZZ\[[^`dbc4f,npno|qdv~~؀ȁX܃0(S h&"x ('1 "NOTES$$PAD_LEFT_MARGINT1,X     NOTES$$FIELD_WIDTH     !1t!o!!!" ""#"$$*!#* !AS1NOTES$$CENTER_LINETHE_LINE THE_WIDTHT1( 001w0x0001 112"2 34124x448516 67 89;3;;;@ !#* !AS F*NOTES$$CENTER_REVERSE_VIDEOTHE_LINET1V_MARKV_HIGHLIGHTINGDF&(G GH&(UHIJ@J*KKJ@lL?LPR;*@NOTES$CLOSE_JOURNALS1VXY&(YZJ[+?\\JaRNOTES$OPEN_JOURNALS1  &(UJ@&(JVJ@JFNOTES$$WRITE_FILE THIS_BUFFERWRITE_FILE_NAMET1V_SUCV_INFO '77P222k2k2k2k#$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T&"7NOTES$$FILE_PARSE FILE_NAME DEFAULT_SPECS1S20 S   )NOTES$$TRANSLATE_TABS THE_STRINGPP  g  3   =31:O3P1lR6:l_ P=!lNOTES$$HARDCOPY_LINE_DISPLAY THIS_BUFFER SHIFT_AMOUNT BACKUP_AMOUNT DISPLAY_INCREND_MARK SAVED_POS@ <1<R==A3;NOTES$$STRING_FROM_RANGERANGE_IN_QUESTIONX 0   'NOTES$$NOT_READING_A_NOTEEMSG\ 0   &NOTES$$NOTEBOOK_NOT_OPENEMSGX +r5(  r r 1NOTES$$CANCEL_READING_NOTE STRING_TO_SET|!!!A!! ! !0!&!c !! !3 !!!!!=$! $!%!=&!2&!&!8'!3P'! '!'!(!(!3(!(!)!,!(-!T.! .!4/! /!/! 0!H0!3! 3!`4!RY5! 5! j6!m6!6!9!g(:!&vP:! ;!D!Do>!:>!@!A!B!12B!B!8D!8E!3F!F! G!0H!3I!I!M! $N!O! P!TQ!&$R!cS!c T!(U!V!W!Y!=^![]V !NOTES$$SET_MORE_MESSAGE STRING_TO_SETS1T1V_POSV_MARKV_BUFV_RANGEV_EOFF|Oa+5 +f5&A8 l   4 f e'''1NOTES$$CANCEL_SHOWDIRPROG STRING_TO_SET" ""'"""  ""T""&"&'"("a""g"r"t"q"="q"="  "" " ""Uq"Uv"2C " ",#TC#TB ##=#,"NOTES$$RESTORE_PRESHOW MAP_PREVIOUS  &#H   J$ 5 +8 ' 8  $O   (  !"=v###=$$&c2$$:''J$/5NOTES$$DISPLAY_NOTEBOOKWHATV_ITEMV_UPDATEhK'L7M7NPA~OPP`$HNOTES$$COMPARESTRASTRBS1|89 9:1z: o:::; ;;<"<==p> 9K>t>x> >>B@?F B"99BD D0pEoEEEG+G8G H$IIK  LL MLN& OOb P$QRRTU W W XY  Z[ [ \P^^^=`bgcqe eLfJ'qgJ'q" hipqkk=lq mdnn=oop pp6q6't ' uvvwxxy{ {|~ ~~ !#* !AS!#* -<  >--_/NOTES$$DISPLAY_TITLE OTHER_BUFFER EXTRACT_FLAGHEADERRESIZES1S2S3T1T_WIDTHV_POS<p'q7rQr7sPEt2tR9uuw9lNOTES$$FORMAT_DATE_TIME DATE_TIME FORMAT_FLAGS1p '71Q77P  L3= = =NOTES$$WRITE_EXTRACT_RECORDSTRING_TO_WRITES1V_POS$+ P \2P12224222424242422q@NOTES$$GET_DECODE_NOTEFILE_INFOGET_NOTEFILE_INFOS1T14 K'777Q7P '777Q7P  *gNOTES$$GET_FIRST_ENTRY ENTRY_NAME CLASS_NAME NOTEFILE_NAME GET_CLASSES ENTRY_INFOS1 V_DEFAULT<5 7 7|89X:5: Z; 8; <=  >? A ZEL E,FA FF FI IKCLASS**<4NOTES$$GET_CLASS_DEFAULT CLASS_NAMECLASS_DEFAULTED K'Q777777PjNOTES$$ENTRY_MODIFY MODIFY_FLAGS ENTRY_NAMEENTRY_NEW_NAMEENTRY_FILESPECENTRY_OBJECT_NAMES1T1| QP \q lo''''''''  W rXT c  f  e 'o   '''''  # & ' (  *! +" ,%e& m,$NOTES$$CLOSE_NOTEFILES1T1<-. ./4,NOTES$$OPEN_ERROR777 79':7;7<7=P== => ?@@B(4NOTES$$READ_NOTE_HERENOTEIDS1PD DD DEP GGLB NOTES$$CTXCTX$\I0J KL M@NP NO2O4OR R\ST < U0V WP Y,[ \P]_ ^` `bEBNOTES$$READ_NOTE_TEXT_HERENOTE_CTX TEXT_TYPES1 V_TEXT_TYPE,'77777  TP 824N`$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TL" _ P @NOTES$$WRITE_DDIF_FILEFILESPECNOTE_CTXS1 V_TEXT_TYPE|e efhk kDm mnoqrsu"u READ !UL.!ULbNOTES$PREVIOUS_NOTEx Djmmm"":NOTES$$SPAWN_COMMANDCMDLINEINP_FILEOUT_FILES1t<J$ ("! !'Q7777&#HJ$PJ$CNOTES$$EXTERNAL_EDITORINP_FILEOUT_FILES1S2T1V_UPDATE8llP , #;*ENOTES$$EXTERNAL_EDIT_BUFFER EDIT_BUFFERINP_FILEOUT_FILES1d   H"qo  @pJoB PP<<<  >>>-<  >-'NOTES$$COPY_REPLY_NOTE_INFOT14g  <  t6' ' P  ?NOTES$$HARDCOPY_WRITE_LOOP EDIT_FILE EDIT_BUFFERS1T18g ! '77Q77!7'7'7'P  $H3 6  HW 6 6'EDT3&NOTES$$HARDCOPY_EDT_EDITORS1 HV6""##h$$^%' 'H=(h)*,--] .d/02+3h>4 4(5]68>5>h>A\BdC%D EEEFdF=K kL{lMeAN N4PQ PP'lQ kT UnV]V=XhY[+]g5] ^ _'cgklldm]nxqo o oqz rw$x]y= z@{|5| }~d=$>H g &],>],LASTEDITCONFIRMFILESPECEXTRACTTITLENOTITLENOTITLEnotes$$finish_or_abort_note(0) NOTES finishVNOTES$$ENTER_TOPIC_OR_REPLY ENTRY_TYPES1T1 EXTRACT_FLAG LAST_FLAG EDIT_FILEL=3O&"x "tP :_  !#* !ASCNOTES$$PASS_BUFFER_TO_USERCUINTS1S2T1V_MARK V_END_POS=gP4h (~Un   h 3NOTES$$ENDWRITE_CLEANUPLAST_EDIT_POSITION8x xxz'{7|7}7~Pp KOo8 4o'''  ,*pNOTES$$NEXT_BACK CALLUSER_CODES1&   /W ra & ' (0'P P$ r 24  =W&WG @PHa  P I ;NOTES$$BEGIN_READING_NOTE NOTE_INFOS1 V_TEXT_TYPEP<Q O  QkRP (Qm 1RP  lM 8(/ Q0.00TOPIC.NOTES$$DEFAULT_TOPIC_NUMBERNOTEIDS1( uRlRc--l*m ---2NOTES$$DEFAULT_NOTE_RANGENOTEIDS1S2T1@G GH1J2N*DNOTES$$DECODE_NOTE_INFO NOTE_INFO0X  X $lY hY Y [ [ \ 5\ g ] ^ a a ,b  b c e 4'g g 4h h i  j k m g<n qo pqp =Wq q r 8s =Wt `u 6'y y } (notes$x_temp)=-KR NOTES$$FORMAT_NOTE_INFO OUTPUT_PROC OUTPUT_WIDTH V_OUTPROCT_WIDTH<(  1ouR4lRc4; NOTES$$SPLIT_NOTEIDNOTEID NOTE_NOTE NOTE_REPLYT18 !2!4!"2"$1%%8% &'*2*4*+2+,2,-2-.2./2/4/020121412224232343424O7>7#,757 8@9':';'<'='D-NOTES$$UNPACK_NOTE_INFO NOTE_INFOS1S'TV(VWWduXXRXlYYRY Zx\ \_(_a a|b(lbwblbbRbuccRce1zeef ffg"/gjjl::@. !#* !AS::!AS1NNOTES$$FORMAT_AUTHORAUTHORS1T1V_NODE( 24 2 1  8  2422222422424242O>#,5 @''''''Q7Q7Q77        H  P  H  $ $$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T^"   jO 8  jm<  ldjO    1t 1wx1  1 ~ 1wlw 1t vlw1w $jR " 40ra (q `   O     12 o  8 8 3   0 3   2  1n m  8 3 l  8 1        8 3    0 3   ! $j" " #  ) ( F@ ) "9) * 1o* * 1n* * s+ x+ + , 1,  , , 1, .  . ,/ "{/  0 1 '3 1t3 v3 3 4  4 4 5 " 5 7 7 8 9  : ; <  O> ? 8? @ tpA oA A  A C C D E  F G H  R *!AS!#* !AS !#* "!#AS"!AS !AS!#* !AS-<  >-swNOTES$$FORMAT_NOTE_HEADER NOTE_INFOOUTPUT_PROCEDURE OUTPUT_WIDTHS1S2S3S4T1T2T3T4 V_SHOW_NOTE V_OUTPROCT_WIDTH V_NOTE_TYPEV_NOTEIDV_TITLE V_NOTE_NOTE V_NOTE_REPLY V_NUMREPLIES V_NOTE_TIME V_NOTE_AUTHOR V_NOTE_TITLEV_NOTE_PEN_NAMEV_NOTE_NUMRECORDSV_NOTE_BLINK_TITLEV_NOTE_WRITELOCK V_NOTE_HIDDENV_NOTE_CAN_REPLY V_NOTE_CONFV_WINDOWV_HIGHLIGHTINGX, 2     3  (   6 | $   ' u  R  1z       "8  y       "a8   *&!#* !AS!AS !# !# !#UL !AS'!#* !AS !# !# !#* !AS !AS;} NOTES$$FORMAT_DIR_LINE NOTE_INFOS1S2S3S4T1T2L  2  2  2  2  2  2  2  2  2 4  2 4  2 4  2 4   ' <   '  H 6 |@ $   '    "49   $ !# !#UL !# !#UL !AS~ NOTES$$FORMAT_ENTRY_LINE ENTRY_INFORET_ENTRY_NAMERET_UNSEEN_ESTIMATES1S2T1 V_LASTREV V_TOPIC_NOTES V_LAST_STATUSĹ  2  2  2   "$    !# !# !ASU NOTES$$FORMAT_MARKER_LINE MARKER_INFORET_MARKER_NAMES1T1V_NOTEIDV_ENTRY  2     @   "   * !AS!ASA NOTES$$FORMAT_CLASS_LINE CLASS_INFORET_CLASS_NAMES1S2ܷ 3  c  2   "H       P+'   2   1n o   , P o  'l k  _  D   = :   !# , a NOTES$$FORMAT_KEYWORD_LINE KEYWORD_INFORET_KEYWORD_NAMERET_FULLS1S2T1V_POST_WIDTH!3!!c!=!3!!S! !!' !!!!8!&cG! !!8 !!'!=!!!CBUF(!NOTES$$COPY_MULTI_LINES1V_POS  t 3  c  2  2  2 ! 2! " 2" 4" L# q# # R# $ "$ % 9&  & & ' 9( 1o( )  ) l* p* + - (J- u. . R. l/ / R/ 0 1k0 o0 1  1 ,2 P3 '4 l6 6 7 1k7 o7 7 8 8 9 : ; c; =< Dv < = = (> "> @ @ 1z@ &@ A  A A B "B C =E :E E G ( [M] [K] [MK] [W] [MW] [KW] [MKW] !# ,,, !# !#* !# !ASu NOTES$$FORMAT_MEMBER_LINE MEMBER_INFORET_MEMBER_NAMES1S2T1T2V_NODESV_ACCESS V_MAIL_ADDRV_PRIVSV_POS  دU 3U V cW X X Z  Z $[ 2[ \ P1] 2] ^ 2^ _ 2_ 4_ ` 2` 4` a 2a b 2b c 2c d f  f 8g h C h k  k 8l m D m p p 8q r H r t y w v FE y "y z P { | 1| R| } 2}     P1 >  t  P 2   8       P   j      ' =  :   G NOTES$$FORMAT_CONFERENCE_INFO CONF_INFO RET_CONF_NAMES1T1V_NAMEV_CREDAT V_LASTREV V_NUMNOTESV_TOPICSV_TITLEV_NOTICE V_MODERATORV_POSL0 3  c    1o m    P j o   1k o   P4'    _ <  = :   ,L NOTES$$FORMAT_NOTE_KEYWORD_LINE KEYWORD_NAMES1T1T2T_WIDTHV_POS g  3  =  U     &d   &b   &c   &Gx       = :O  0 =    v s   =  =s ~  ,s     : 3    = : 3P      = h NOTES$$POSITION_IN_MIDDLE THIS_MARKV_TOPV_BOTTOMV_ROW V_RECORDSV_LINEV_LENGTHV_POSV_MARKh g  t 3  =  &t$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T?"/G   0   = - NOTES$$ERASE_ARROW ARROW_RANGEV_POS`S %T |%U .%V 6%W :%X @%Y D%Z J%Z P&\ '\ P] \ T  T U  U xV  V dW  W PX % X <Y ) Y ([  Z \ 6` ` b ?? Internal error ??)P NOTES$$CONTPROGDIRPROGCONTPROGXd f f h &j fj l rl n b NOTES$$EOFF|  = g@ =v  &cx    i   NOTES$$MAIN_LINES  R  D 1 (o  R  8   0 NOTES$$ITEM_FROM_CURRENT SECOND_ITEMS1  3  =T C  =   D p   READ . NOTES$$SELECT_FROM_DIRECTORYS1V_POS4  3  =      C   ="  xx88X P  p 0m m   p    o k o  Rc  8 p o m   Pp u  0p b   E OPEN/CLASS= SET CLASS READ/MARKER  /ENTRY= ADD KEYWORD ADD ENTRY / NOTES$$SELECT_FROM_SHOWS1S2T1V_POSp+  8  $ @a P'   8   J    G   * NOTES$$GET_NEXT_SHOW_INFODISPLAY<!!'!Q! !!:! !"!a#. Dd !0!6!! !! ! !!8! !!7! !!9! !!;! !h!<!! !<!=! ! !'!6! !! !! !!!2!!8!! !h!3!!2!!8!Qm!m!!0 !=! !!CBUF?? Internal error ??K~!NOTES$$FORMAT_SHOW_INFO SHOW_INFOS1S2S3V_POSV_UNSEEN_ESTIMATE  l  ,  '   f     ,  '   e   J        P `  0 f  J  e   5   G   6 NOTES$$GET_NEXT_DIR_INFO DIRECTIONDISPLAYS1r!5r!s! s!s! s!u!2u!u!8v!w!3w!x!2x!x!8y!0 z!=|! |!~!7n!NOTES$$FORMAT_DIRECTORY_INFODIR_INFOS1V_POS   ,  '     H P  e   '  & " NOTES$$GET_FIRST_DIR_INFO\l@@PP<'P;';*NOTES$$MAIL_ENDS1(p !o9,( tlRc(pxRk!R!P  ///%NOTES$$KNOW_THE_EDITORS1T1@ P !9"Q"<A# # $ & &( (*"",NOTES$$MISSING_PARAMPARAMVALUES1dQR'S TXUV WHYYZ [<\] ]]]^Qa< abcKg'h7iPk2k7lP' lm_ n otrA rrrs ss7tP: t uxxCLASSESCLASSES*CLASSESKKNOTES$$GET_CLASSES_LIST DEFAULT_CLASS CLASS_LISTCLI_TYPES1S2S3@6 $u   T(     8   NOTE_ID>NOTES$$NOTE_ID PARAM_NAMENOTEID NOTEID_FLAGS1T1T2t n M K{ f O   '7 7P H 2      '   4P1    P " " 8" "" $ $$' %'&7 '7 ()7'*7 +,N , ,,2P3 5 589Q= =x>?A2ABB lCC DJ JJMN'OQ2QRRST7UPV8WQWAW WW[ _P` `l``jaalbb d f fg[ hDi j jj" k oADD_P2OBJECTFILENAME*NOFILE,ZNOTES_ADD_ENTRYS1S2S3S4S5S6S7T1T2V_FILEV_ENTRYV_NAMEV_CLASSV_OBJECTv vvwOwwxM xxz{$K}'~77P"(O$  ADD_P3ADD_P2,oNOTES_ADD_KEYWORDS1S2S4V_NOTEID`Ј n  OM o XK'777PX0  ADD_P3ADD_P23NOTES_ADD_MARKERS1S2S4V_NOTEIDV_ENTRYL 8 M (K'( k uR 9,lR  M' '7 P Spj9,X8 X lj  07'P p9, < lYj x78 m8 lP$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tg"@A 0 ' 0  lbm 7 5  * l   l lQ7P&O! " ! #T% )ADD_P2::NODES :,ACCESS,MAILNOMAILNOMAIL:: NOPRIVILEGESMODERATECREATE_KEYWORDSWRITE_REGARDLESS\NOTES_ADD_MEMBERS1S2S3T1 FIRST_NODEV_NODESV_ACCESS V_MAIL_ADDRV_FLAGSV_USERp& *& +& ,&'&7"&P(&&& &&2&&2&&2&&2&&2&4&6&& && ,6&& && +6&& && *& &&s&NOTES$$GET_MEMBER_PRIVILEGESINP_STROUT_STR MEMBER_NAME MEMBER_NODES MEMBER_ACCESSMEMBER_MAIL_ADDRPRIVS 3M 335'6789A: :(;s ;;'=7?PF@CE# IADD_P2FILENOFILENOFILE/)NOTES_ADD_OBJECTS1S3V_FILEV_OBJECTLd~N NNO  OOPPPUUV'W7XQX7Y7Z7\P\\]2+^+^,8^ _`1bdeg(mEXTRACTI NOTES_ANSWERS1S2X|p4 qr s txPROCESSm NOTES_ATTACHS1|{d |} ~<~> ! +TOPICNOTEx NOTES_BACKT14{  NOTES_CLOSE{= &  r P NEXT REPLYNOTES_CONTINUES1zM \]''H  'Q777'^'r P CREATE_P2WRITE6NOTES_CREATE_CONFERENCES1S2V_TITLEV_FLAGSxwPwy yz{% |}  l@ PpIk (pKk` (yKkRESTRICTMEMBERSKEYWORDSWRITE REPLY_ONLY2rNOTES$$PARSE_RESTRICTIONS SET_FLAGST1T2w  K'77xP2222222 ' ' 7 (  7 7;7'Q7777Px2  ) o!p"a##'(O)T * +78e9 m==B*::jNOTES$$OPEN_NOTEFILENOTEFILE ENTRY_NAME CREATE_FLAGSEEN_MAPS1S2V_OBJECTOPEN_NOTEFILE_STATUS0sP,NOTES$$SET_CONFERENCE SET_STRINGS1TsR RRSM SSU+W#5W+X+8X YZ$\^$K`'a7bP"cfg k CREATE_P2&LNOTES_CREATE_KEYWORDS1S2S4T0rs n sstM ttZv v wP wwy'zzz|K~'77PQL $    DELETE_P2**;kNOTES_DELETE_ENTRYS2S4V_ENTRYV_CLASS V_DEFAULTp MD $K'7P+#5++8 $ <O7P# D$    DELETE_P2ALL DELETE_P32NOTES_DELETE_KEYWORDS1S2S4T1V_NOTEIDn n  MT o XK'77P+RY8 `'77P  DELETE_P2-NOTES_DELETE_MARKERS1S2T1V_ENTRYl M (K'7P'O"  T  DELETE_P2,NOTES_DELETE_MEMBERS1S2S3T1MBRk   O L M "'#7$7%P %%O)5) *+ K-(.10 0l1W23 4'5 (6' 7p8>8< ? DELETE_P2CONFIRMREAD ,NOTES_DELETE_NOTES1S2T1V_NOTEIDiEMh EEI'J7KPGLOQ$ U DELETE_P2+?NOTES_DELETE_OBJECTS1S3V_OBJECTh+^^|A_ _0a abg c dgko*q qrrusissu uw`sxxy yyz"z {ts||u}ik}l}w}}  st (uito @ "  0 '7hP KiA  j( ' f e4g @ ,2  etu $u"S ,u"+'7hXTc & (a 8CLASSDIR_P1ALL!UL.!UL-LAST.LAST!UL-LASTOUTPUT !UL.!UL-1.0!UL-1-UNOTES_DIRECTORYS1S2T1T2T3V_ALLb  n o5 4o'''Dl3''͡4$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"QiA D  j   9oDIR_P1*OUTPUTnotes$$dir_notebook_header(0,0)BNOTES_DIRECTORY_NOTEBOOKS1V_ENTRYV_CLASS V_SHOWX_CLASS$` 7Q7!'"# #(#D#Q#$7&''X) )*  **+7-(-..u//R/l00Rc01 23 Q42484 5(p6o66 70Q7787 89<7 => ?$@ A BC'E7HIXI8I J|KLlLLMO'MM MNN  O0PPP P4T TUV Y7jZZ] ]uSEEN"AUTHOR/BEFORE/KEYWORD/SINCE/TITLE/ALL/TITLE**AUTHORUNSEEN1-LASTNOTES$$PARSE_EXTRACT_QUALS INP_NOTEID MARK_SEEN READ_FLAGZAP_IF_SELECTION OUT_STRINGS1S2S3T1V_NOTEIDOUT2 SELECTIONSTRY_WHOLE_FILE[ d  C  BUFFERAPPEND"NOTES$$GET_BUFFER_QUALS1Z3 |'7777 L&"  JaK@O H 8 L'O k l    = $'  P $O <5 ' O D6 ' HQ! !":" #$<$& &&'_ (. .0/P0, 4 4X6 67Ja:&*:+ ==ACBUFFNOTES$$DIR_TO_BUFFERDIRPROGS1S2S3T1V_POSDIRCTXDIRCONTV+8 a  PXo           9  -QNOTES$$DIR_NOTEBOOK_HEADER OTHER_BUFFER EXTRACT_FLAGS1S2T_WIDTHV_POSHT3+8 Xa  P   =-NNOTES$$SHOW_DIR_CONF_TITLE OTHER_BUFFER EXTRACT_FLAGS2T_WIDTHV_POS0 SMN NN;O'P7Q7_RP2S2ST2TU2UV2VWQX8XQY8YOZ8Z [T\(\\(\8\ ]l^^a(wab b b(Mbc deg(ghh`liijjjlkkRk l|m n(o(o p(q(`kqqw wHx(.xyRy  z${R{ } :,   '77t(^ 7 7;P-n''.iA  j.o P.DIR_P1 _Z$Z_:[_Z$Z_]_Z$Z_:[_Z$Z_]*%::]>::::@*::ALLOUTPUTnotes$$show_dir_conf_title(0,0)LANOTES_DIRECTORY_CONFERENCES1S2S3T1T2V_NODEV_DEVV_DIRV_NAME M]#'Z_#_#8_# `#La#b# b#b#c# d#e#h#7i# i#i#7k#Pk#l#l#Kp#p#r#**CW#NOTES$$GET_FIRST_SHOW_INFOP1 CALLU_INPUTDIRPROGS1S2T1DLs# n s#s#w#y# y#pz#a{#%}#|%~#&%#(%#.%#6%#:%#@%#D%#J%#P# #}# }#~# ~## ## #t# #`# #L# #8# #$# ###  ##'# #### #=## ## #X# #g$#Ur#Uv # # #Gr#NOTES$$COMMON_SHOW SHIFT_FLAG TITLE_STRING HEADER_PROCDIRPROGtIgY3V=3V\  8!:""RZ"#6,$(% %''1l&Z&'R'(6* *L+B+=j,, -B-=1=238EVE" NOTES_EVEV_POS V_CMDLINElGBBC&)D&/,D8D E<F+ F, GVHJK&KMMN&)O&/,O8O PQ&*RR# RS SL T(U+ U, VVXJZ&3Z [dD8NOTES$$HANDLE_MODIFIED_BUFFERS EXIT_BUFFEREXIT_BUFFER_NAME`EX 'P6  /NOTES$$CLOSE_QUEUE_JOBS1 SUCCESS_FLAGD MP !  L  ('h'' L&"  Jat  5 )  T Ja&** FILESPECOUTPUTHEADERAPPENDBUFFERj NOTES_EXTRACT EXTRACT_FILE RESULT_SPEC NOTE_ITEMS NOTE_COUNT HEADER_FLAGP1_PARAMV_APPENDSTATUS0 AP 4Z ' 222. P $Q  P `2'Pb~$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T,3"b24+58  Du   vwl_(P  8u   P 0uNOTES$$EXTRACT_NOTE_RANGE NOTE_ITEMS HEADER_FLAG FILE_SPEC TEMP_FLAG APPEND_FLAG RESULT_SPEC NOTE_COUNTTEMPORARY_PRINT_FLAGS1T1 FILE_TYPE SINGLE_NOTEOUTPUT_FILE_OPENEXTRACT_HEADERS PREV_TOPIC V_TEXT_TYPE HAVE_LINERSLTSPCPh='  '7O 7 7Q7Q7Q7     ZNOTES$$EXTRACT_OPEN_FILE FILE_SPEC TEMP_FLAG APPEND_FLAG FILE_TYPE RESULT_SPECS1H;! !p"o"##$& &p'o'(( *4+X+8+ ,-^20P35 57; ;N<<<  >>>-<  >- notes$$write_extract_record7NOTES$$EXTRACT_NOTE_HEADERNOTE_NBR PREV_TOPICP4:YOY8Y Z[\]^ < _``abc'd7e7'f'g'hxikPK k@l l,lmmn_ oq qHr'sHa sPst'vPLwP zt{} }TP 824_  NNOTES$$EXTRACT_NOTE_TEXT FILE_TYPE TEXT_TYPE FIRST_LINES1T1 INPUT_FILEFAB_PTR HAVE_LINESAVE_OUTPUT_FILESAVE_OUTPUT_CTX V_TEXT_TYPEtP7 PJ     2  2  ;NOTES$$INFILE_OPEN OPEN_INFOINPUT_FILESPECCTXS1<63p@l  "("u##R#l$$R$O& &0'3'(@d )+3++S++,,-'/ /07 127475P856:7_ 809d;= <t='? ?@7 AB7D7EP8EGGH_ IKKN'P PQ7 RS7U7VP8VX2X4XY2Y4Y+ZZA[ []gH^3^_w`Uwa= b(cedfffh hhh hhhk@,,CNOTES$$ADD_MAIL_TOLIST TO_CC_FLAGTOLISTS1S2S3T1V_POS42z{'|'} \  0{sA 0{  6 PP (lm  hH T  6(V 0uRj  1R],F   \H l'T  6( 0uRj1R]R,F   D (lm" " '77P> y  y8   mA T ^0H Mw AUTHORMEMBERS MODERATORSTOLISTTOLIST, !, !,,[kNOTES$$GET_MAIL_TOLISTTOLISTS1S2S3T1V_PROMPT_OFFSETV_PROMPT_STRINGV_TOLIST+(K'7hV   7P(  :" "&''7@(7')7*7+++ +-2-.2./2/0203 3l4'57616Q67778P:P)' :;_ < =P?@  AB DDpE-@EG GN* MODERATORS@P NOTES$$GET_MEMBER_MAILING_LISTTOLISTS1S2V_MEMBER V_MODERATORSV_CTX( L8A D& '   8  H  0Q      SUBJECT NOSUBJECT NOSUBJECTCNOTES$$GET_MAIL_SUBJECTDEFAULT_SUBJECTT1V_PROMPT_OFFSET4& _ =   *NOTES$$WRITE_MAIL_RECORDA_RECORDxD&a abPC' cde2e4ef2f4fg2g4gh2hi2ikPD'stAu u0v vv' w y yz $  (x  ` d $  ,   (  A T '   D$ $    A3P;''777P7   TRANSPORT NOTRANSPORT NOTRANSPORT CC_PROMPT NOCC_PROMPTSELFNOSELF PERSONAL_NAMENOPERSONAL_NAMENOPERSONAL_NAMEJNNOTES$$MAIL_BEGINCMD_FLAG FILE_TO_SENDS1 V_PEN_NAME V_TRANSPORTx|!    R  (  ( A ( ?     (   x  !   Rl  Rn   d  ! 0123456789 7 NOTES$$INVALID_PERSONAL_NAMEPEN_NAMES1T1T2$$^(g    ENOTES$$MAIL_EXTERNAL_EDITOR EDIT_BUFFERINP_FILEOUT_FILES1,0   A9A0A T  ( @  *$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"sh^~'z'@   F  | _9^  p o   }p!o!y!!}"0Q# $&'_'=)+_+=-^/h02+4g54 5 6':; <x@A_^BxvFGGHIH IIJJ'KJ'"L^Os PPU_ABV WYZ_[aLASTMEMBERS MODERATORSAUTHORAUTHORLASTEDITCONFIRMHEADER<<<  >>>-<  >-notes$$write_mail_recordnotes$$finish_forward NOTES finish& NOTES_FORWARDS1T1 LAST_FLAGz^'{^{=|_|_\} }H~^~^\  P __^!wNOTES$$FINISH_FORWARDS1T$HELPKEYS NOTES_HELPS1 ,3F4  g Q0 P =u=Vu=u 6'U=J'"WJ u' OA XQQA D-2 U 6'&m-2.7SHG7 Q    Q8 O hQ QQA    tQJ <Q5Q5A     -TC-TBAQQA <-2 UU&#c u J!"H7  " "|#-#2.#$7%-T%C%-T%BA%% '( *d,-./0 1t46'67 =Q>A?O?A@ @$A6'B C E EFJLXOO O0PH7 P Q(RH8 RT-TTCT-TTBATT(UVV WY=\keypad Buffer HELP next_screenprevious_screenkeypadNOTESreturnreturncommand?commands next_screenprevious_screen?commands next_screenprevious_screen next_screenprevious_screen? NOTES$$HELP FIRST_TOPICS1 THIS_TOPICLOWERCASE_TOPIC LAST_KEY_NAME THIS_POSITIONHELPBUFSHOWING_COMMANDSTHIS_KEY_MAP_LISTRET SCREEN_LENGTHd(_u]` ` a3 'aueg@f& g gxhiBj&djJ!"kulunF5 knnoJ'pJ'+qJ'"rUsUu6' vwuy Qzm {|bQ~YQ~RA~Q~EA~~A~Q~2A~ T     T   ,'yug uHelpkeyskeypadfinddocommandsshow keyEVE UNDEFINED_KEYEVE NOTES$HELP4\NOTES$$HELP_TEXTTOPIC PROMPTINGHELPBUFS14   NOTES_MAIL R NOTES_MARK    n M P r 4P l  # A <l   ' A <l   '  g,8 L  N'   '777'7P'P3' 427_ 2 l77'77 P 42 \ $   2 L77P 42 | D  # MODIFY_P2NAMEFILENOFILENOFILEOBJECTNOOBJECTNOOBJECTCLASSES*YNOTES_MODIFY_ENTRYS1S2S3S4T1V_ENTRYV_CLASSV_NAMEV_FILEV_FLAGSV_OBJECT<P* **+M ++0 0l003 34L68$K:';Q;7<7=7>P0?BC H MODIFY_P2NAME.#NOTES_MODIFY_KEYWORDS1S2S3V_FLAGS o oopMP ppr'tP* tuS v9,x x<y ylyyjzz |\} }l} } 'P^ p9, < lj x l  8 m'   l  'D-A <l   ' 0l o o T  l o  l  I  l o@  l    l o  l   L(K'Q 77 7 777P*O " 8 X 8  "T  MODIFY_P2NODES :,ACCESS,NAMEMAILNOMAILNOMAIL NOPRIVILEGESMODERATECREATE_KEYWORDSWRITE_REGARDLESSc`NOTES_MODIFY_MEMBERS1S2S3S4T1T2V_NODESV_ACCESS V_MAIL_ADDRV_FLAGSV_MBR V_NEW_MBR  hj   <C  +TOPICNOTEUNSEEN NOTES_NEXTT1M A ( ''77]$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T@"PI%  MODIFY_P2FILENOFILENOFILE/NOTES_SET_OBJECTS1S3V_FILEV_OBJECT hM   @qMn  0'' ' !" n ""l$A$%'&'&&'2'(2() )Q)A* * +1  ,-. / m03P45]68:o;<= > A AXB C pD DFG H6M M6N N6O O5OWAP P4Q+R&R  Sd6S S>TV TDU VXY Z6_@`'aqbve5e e eiFILESPECNOTE_ID AUTOMATIC DIRECTORYUNSEENNOTEBOOK**READ DIRECTORY NEXT UNSEENQ NOTES_OPENS1S2S3S4T1T2V_ENTRYV_FILEV_CLASS V_AUTOMATICV_NOTEID xzz| ||}}}  'h''8A (r P  '7p77P  <OX8 Pt D    '7P 8P'rQUEUE SYS$PRINTFORMHEADERWAITNOTIFYCOPIESvi NOTES_PRINTS1S2T1 NOTE_ITEMS QUEUE_NAME FORM_NAMEN_COPIES MESSAGE_COUNT WAIT_FLAG HEADER_FLAG RESULT_SPEChM   n K'7C o7Ph'77'P 2   P222o <p mm 8 ' 7!h"P# $% K &' (,,READ_P1MARKERENTRYOPEN/NOAUTOMATIC/CLASS=* * NOTES_READS1S2V_ENTRYV_NOTEID< 446 6684 9:=? ?<A AB CE F G GG'J'KM' KKLLLO'P7Q7R7S7TPUtOW WL[ [$\  ]^ a K btdde f,ghX0ij'k_ lo SEARCH_STRINGNOTES*.*, NOTES_SEARCHS1S2S3pso NOTES_SELECT\vvx5x  yzE|}T5}& ~DO5 >( |   0p8 FE ADD ENTRY s NOTES$$SELECTS1 AA T  ( @  yfhS^C H=h^ d+h> (^h'~z'0'| ^=h8^+g5  ' x^x  s $^A B ^ MEMBERS MODERATORSAUTHORAUTHORLASTEDITCONFIRMFILESPEC'notes$$finish_send(notes$x_mail_buffer) NOTES finish0 NOTES_SENDS1S2T1 LAST_FLAG SEND_FILE8l* NOTES$$FINISH_SEND SEND_BUFFERS1 n M   OA (p#CLASSDIRECTORY/NOTEBOOK/CLASS= NOTES_SET_CLASSV_CLASS&A && &(K*'+7,P--1*#NOTES$$CLASS_EXISTS CLASS_NAMES1(D; ;;E G$lHHI LMuAN NHlOOQN QQ'R U\X XYL[]'^Q^7_7`7a^aac{ Oe ef{ gTh=i5i' j(k'rTITLENOTICENONOTICENONOTICESHOW CONFERENCEO1NOTES_SET_CONFERENCES1T1V_TITLEV_NOTICEV_TITLE1 V_NOTICE1V_FLAGS  $    'Q7^O # MODERATOR*NOTES_SET_MODERATORS1T1V_FLAGS       0l@    A `  l  l 'I3A `  l    ' h     l o     l   F   h     l o     l      L  O'   " '# 7$ Q$ 7% 7& 7' 7( 7* P,+ . 0  O3  3 L4 4 5 5 6 6 O:  : p; h; @ NEW_NOTE_ID CONFERENCE NOCONFERENCE NOCONFERENCETITLENOTITLENOTITLEHIDDENWRITE SHOW NOTE pNOTES_SET_NOTES1S3T1T2V_FLAGSV_NOTEIDV_CONFV_TITLEV_NEWIDV_CONF1V_TITLE1V_NEWID1 V_NO_RANGE X X ] $^ p ^ ^ _ `  c 'd Q d 7h V i lj j k !l !m  n o p q  r s F s (t t u  v Pv F v (w w LH$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T$"(x y  {  L+ Q !$8 + 8 ( !    !   ,  !   Q 7 7! T  <    l    7   A <l     ' 7  vA `l   V  '    $ 7   A l o @  W V  <   W  V QW 7 QV 7  L  ' Q  7j   P        O    TEMPORARYEDITOREDITORTPUCLASSPRINTNOPRINTNOPRINT PERSONAL_NAMENOPERSONAL_NAMENOPERSONAL_NAME NOAUTOMATIC AUTOMATIC NOAUTOMATIC DIRECTORY SHOW PROFILEt@ NOTES_SET_PROFILES1S2S3T1T2T3V_ABORT V_EDSPAWN V_OLD_EDITORV_INTERNAL_EDITORV_FLAGSV_CLASSV_TEMP\! !!!$!P? !BEFORE!NOTES_SET_SEENS1pa!ab!Fy b!b!c!d!Hx d!d! i!)^!NOTES$$SHOW_NOTEBOOK_TITLEV_POSDtj!k!'n!%i!NOTES$$SHOW_CONFERENCE_TITLE""g"""-T"C>" "-T"BA" "+"5"U"8""-T"C"-T"BA"8" "" "8" " "" "" """"&\"""" &" '" ("a "X"T ""D"" &" '" ("a"""q""="q"&|"=d"" 8""J'q"J'q" "$"=""pq"Uq"Uv""EXITSELECT DIRECTORY"NOTES$$SHOW_CTRL_ZS1 #c# #T#&#(#a##gd##3##&v # #x !#"#"#&#'#'# (#)#)#+# +# ,#'-#T.#/#0# &1# (2# '3# 4#  7#notes$$show_ctrl_z NOTES exit-#NOTES$$SAVE_PRESHOW SHIFT_FLAGS1T1`(<#T=# =#># ?#P@# @#4A#A#A# B#C#'F#gG#rH#J'rJ# J#$K#J'r"M#= N#r O#TP#= Q#aR# R#R#6S#6'W#27#NOTES$$SHOW_TITLE_LINE TITLE_STRINGS1T1l# n ###nD'####o  #*notes$$show_notebook_title#NOTES_SHOW_CLASSES# #### #o #8#P# o## #8#P# ##p #8#P# p## #8#P# ##P#P#,#H # #$#H ##P#,#H # #$#H ##P#,#H # #X#,#H # #$#H ###o #notes$$show_conference_title#NOTES_SHOW_CONFERENCEL$$ n $$ $o5 $ $l $ $$q$ $l$$$o''$t $,l$_$$' $<$ $$X$$ $"$'"$"$$$2$$%$2%$&$2&$'$2'$($2($)$2)$ *$2*$ +$2+$ ,$2,$4,$ -$2-$4-$ .$2.$4.$/$a0$= 0$1$1$2$1t2$2$3$4$24$4$85$; 5$6$6$0 7$27$7$88$> 8$0 9$? 9$:$;$ <$2<$<$8=$1M=$t=$x=$=$R=$>$>$?$2?$?$8@$0 A$'B$D$P3' D$\E$2E$lF$F$jG$oG$G$H$_ I$J$1xJ$J$RJ$L$ L$,M$A M$ N$$O$B O$Q$1tQ$Q$R$1oR$R$ R$ R$1oR$R$S$T$U$2U$U$8V$G V$0 X$ X$<Y$pZ$<oZ$4Z$Z$ `$ `$0a$b$ b$ e$ e$0f$g$H g$ i$nj$ k$l$' m$(n$n$ n$p$q$o't$ ENTRY_NAME*, -<  >-*#NOTES_SHOW_ENTRYS1S2S4T1V_ENTRYV_CLASSV_FILEV_TITLEV_NOTICE V_MODERATORV_OBJECT V_LASTREV V_TOPIC_NOTES V_NOTE_TOTALV_UNSEEN_ESTIMATEV_POST_WIDTH$u$v$ my$t$NOTES_SHOW_ERROR$`~$ ~$~$$$$$Q$n$$4Q$$A$ $$T$$ $$ $$o$$FULL KEYWORD_NAME*notes$$show_conference_title!y$NOTES_SHOW_KEYWORDS1T1$ n $$$$'$ $ ,$5$ $8$$o$ $$$$n$4Q$$A$ $$S$$$$$$o$notes$$show_notebook_titleALLnotes$$show_conference_title MARKER_NAME*&$NOTES_SHOW_MARKERS1S2S3T1(T$ $$$O'$$$$$$$Z$$$'$7$7$7$7$7'$7'$7'$7'$7'$7'$7'$Q$7$P$$$$2$4$$$$4$2$4$ $2$4$ $2$4$$2$$ $$P$ $@$$G $$P$ $ $ $$H$$ $ $ $$H$$P$ $0$$$  $\$ $4$n''%(%% %%%%%o' %KEYWORDS$NOTES_SHOW_NOTES1S2T1T2T_WIDTHV_KEYWV_NOKEYW V_NOTE_TYPEV_NOTEID V_NOTE_AUTHOR V_NOTE_TITLEV_NOTE_BLINK_TITLEV_NOTE_WRITELOCK V_NOTE_HIDDENV_NOTE_CAN_REPLY V_NOTE_CONFl% n %%%'%P %% %!% "%H,+#$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TY" k"%"% #%F #% $%2$%4$%%%2%%&%2&%'%2'%(%2(%)%2)%4)% *%2*%4*% .%P/%H /%0%  1%2%RP3% 3%44%  5%Rc5%7% 7%7%8% :% H<%$=%F =%  >%?%F ?% E%2E%4E%F%2F%XG%XG%AH% H%I%  J%K%  L%RPM% M%4N%  O%RcO%Q% Q%Q%R% T% HV%$W%F W%  X%Y%F Y% `%a%H a%b% b%b% c% g%2g%Xi% i%Hj%k%  m% m%n%  o%p% v%w%H w%y% y%$z%F z%  {%|% %2%X% %T%%  % %$%F %  %% %%H %% %$%F %  %$j%m%% %2%X% %h%%  % %$%F %  %$j%m%% %2%4%%2%4%%%H %% %% % % % %% %% %F% X% %0%%  %F% %% "%%%%o'%\ %NOTES_SHOW_PROFILES1S2S3S4S5S6S7S8S9S10S11T1 V_PERM_TEXTV_DEFAULT_TEXT ,%%%NOTES_SHOW_MEMBER|% %%%%>% %<%%% % %% %'%n(%4Q%%A% %%:%%F%"%%%o"(% MEMBER_NAME MODERATOR**notes$$show_conference_title/%NOTES$$SHOW_MEMBERS MODERATORS1S2T1 <%%%NOTES_SHOW_MODERATOR%M %%%'%7%PH% %t%%"$%% OBJECT_NAME !AS = "!AS")%NOTES_SHOW_OBJECTS1S3V_OBJECT%Q&%NOTES_SHOW_VERSION0̬ &6 &K&& &&gH&&#H&&&J$&O&gd&P'&H} &P& &&J$ & !&O'&COMMAND & NOTES_SPAWNS1V_UPDATEhx*&D +&0-&g.& /&0&5&COMMAND'& NOTES_TPUS1 :& n :&:&<&=&>& ?&h@&A&wC& C&DD&E&pF&8mF&mF&F&K& NOTEFILE_SPECCLASSDIRECTORY/NOTEBOOK/CLASS=%5& NOTES_UPDATEV_ENTRYV_CLASS& &&&+&#5&+&,8& &&=&+&#5&+&,8& &&^&&&&(&& NOTES_WRITE&z&#&EVE$PACKAGE_PRE_INIT_NOTES&{&&EVE$PACKAGE_INIT_NOTES8TH ,4P\dNOTES$MOUSE_KEYSNOTES point_mouse`S unknown0S unknownS unknownЦS unknown80T HlF6H <lt   (L\d$0$8TX*`|.4 P`h D\d   D T \    0 @ H d |     , H P l     0 D L p     ( , 4 P T \   *HX0`|24(80`p:xNOTES$KEYS+NOTES insert_overstrike (Insert/Overstrike) ,NOTES command_recall  move_left end_of_line x move_right< start_of_lineNOTES erase_previous_wordSreturnhS@NOTES erase_start_of_line  refresh(ğEXIT NOTES exit, HELP keypad NOTES help8 delete NOTES command_recall ĞNOTES command_recall NOTES command_recall <NOTES command_recall  move_right  move_right  move_left D move_left NOTES enterԜS shift key, HELP keypad NOTES helpXNOTES toggle_numeric, NEXT UNSEENNOTES next_unseen̛!NOTES last_note_readNOTES previous_screenPNOTES next_screen NOTES back_reply ԚNOTES next_topic NOTES next_reply TNOTES back_topicNOTES toggle_display(ؙSELECT NOTES selectSlS(DSELECT NOTES selectNOTES previous_screenNOTES next_screen(EXIT NOTES exit@ start_of_lineNOTES erase_previous_wordė+NOTES insert_overstrike (Insert/Overstrike),p HELP keypad NOTES help(doT8T01FؾH 0H  <HPl   :(DLNOTES$HELP_KEYS !H$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"SreturnܕSreturn previous_screent  next_screen@ previous_screen  next_screenԔSdo8 T0HDlx ,4\hp$LX`NOTES$NUMERIC_KEYS$d . typing$( 0 typing$ 1 typing$ 2 typing$t 3 typing$8 4 typing$ 5 typing$ 6 typing$ 7 typing$H 8 typing$  9 typingd8TTNOTES$EDIT_KEYSd8T TNOTES$SUBKEYSd8TTNOTES$USER_KEYS`8T TTPU$KEY_MAP8T\8&88&t( 0L T"\x t$| D&Lh p(x * , .$ ,04P X2`| @DN $@LTpx  0@ Hdt8|:EVE$KEY_LANGUAGE=ENGLISHЌCTRL/HTABtCTRL/JDRETURN1.1 SINGLE_QUOTE QUOTE DOUBLE_QUOTE SPACE SPACE_KEY FIND E1 INSERT_HERE E2 REMOVE E3 SELECT E4 PREV_SCREEN PREVIOUS_SCREEN E5 NEXT_SCREEN E6 HELP HELP DO DO CTRL/H BS BS_KEY TAB TAB_KEY CTRL/J LF LF_KEY RETURN RET_KEY DELETE DEL_KEY Ȋ GOLD SHIFT_KEY FUNCTION FUNCTION KEYPAD KEYPAD SHIFT SHIFTED SHIFT_MODIFIED CTRL CONTROL CTRL_MODIFIED HELP HELP_MODIFIED ALT COMPOSE_CHARACTER ALT_MODIFIED GOLD̉FUNCTIONKEYPADlSHIFT<CTRLHELPALTSPACE DOUBLE_QUOTET SINGLE_QUOTE DELETEFINDć INSERT_HEREREMOVE`SELECT0 PREV_SCREEN NEXT_SCREENȆHELPDO 8T`&&&LX`8$,|pL X`$8@  dpx H`h 4 <    $ ,  EVE$MOTIF_FUNCTION_KEYSLt(R selectL(R ! select_allL(R resetLD(R KEYPAD shift_deleteTԂ(R KEYPAD prev_paragraphTX(R KEYPAD next_paragraphL܁(R  end_of_lineLt(R bottomT(R KEYPAD next_wordL(R  start_of_lineL0(R topT(R KEYPAD prev_wordL\(R restoreT~(R KEYPAD primary_copyT~(R KEYPAD primary_cutL~(R  store_textL}(R KEYPAD Del_EOLL4}(R  KEYPAD primary_selection_restoreT|(R KEYPAD page_leftTD|(R KEYPAD page_rightd8T TEVE$USER_KEYSD8TX`& dpxH`h 08`px0@H dpx,<EVE$VT100_KEYSLy(R   change_modeT\y(R * find\x(R keypad help (help keypad)Lpx(R   change_directionTx(R   doLw(R   erase_wordL0w(R   move_by_lineLv(R   previous_screenLXv(R   next_screenLu(R   move_leftLu(R   move_downL u(R   move_rightLt(R   move_upLTt(R  sel_a$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T*"ectLs(R %  removeLs(R &  insert_here 8TXФ&LT\(4<xXdl8DL$,EVE$NUMERIC_KEYSLq(R   returnT0q(R   doXp(R  , typingXXp(R  - typingXo(R  . typingXxo(R  0 typingXo(R  1 typingXn(R  2 typingX(n(R  3 typingXm(R  4 typingXHm(R  5 typingXl(R  6 typingXhl(R  7 typingXk(R  8 typingXk(R  9 typingx83TP&&8&d0< Dhpx0HP$*l,.@ L 4T     l x    4 @ H    ` p x   0 < D   dt|4DLlL`h ,4P\ d , 4  Xh*p.$L0T2 3(x48p9:hpEVE$STANDARD_KEYSLf(R   change_mode (Insert Overstrike)L8f(R   recallLe(R  end_of_lineLle(R  start_of_lineLe(R '  tabLd(R   erase_wordL8d(R *  insert_page_breakLc(R   returnLdc(R n  rememberLb(R   erase_start_of_lineLb(R -  quoteL(b(R  refreshLa(R  exitL`a(R   deleteL`(R   move_upL`(R   move_upL4`(R   move_upL_(R  topLp_(R   move_downL_(R   move_downL^(R   move_downL8^(R  bottomL](R   move_rightLl](R   move_rightL](R   move_rightL\(R  end_of_lineL4\(R   move_leftL[(R   move_leftLd[(R   move_leftLZ(R  start_of_lineTZ(R * findT$Z(R . wildcard_findLY(R &  insert_hereLHY(R  restoreLX(R %  removeLX(R  store_textLX(R  selectLW(R  resetLPW(R   previous_screenLV(R previous_windowLxV(R   next_screenLV(R  next_windowLU(R  exitLDU(R  # change_direction (Forward Reverse)LT(R   move_by_lineLXT(R   erase_wordLS(R % restore_wordLS(R   change_mode (Insert Overstrike)\S(R keypad help (help keypad)\R(R keys help (help keys)T@W1$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TV&"R(R   dop8TTEVE$STANDARD_FUNCTION_KEYSX8 Th&DX`4HP$8@(0 |l D X `    0 8    l    \ p x  4 H P    (x  h|Xlt <PEVE$MOTIF_MOUSE_KEYSXHN(R -. Mouse_button_1XM(R -. Mouse_button_1XXM(R -. Mouse_button_1XL(R -. Mouse_button_1XhL(R -. Mouse_button_1XK(R -. Mouse_button_1XxK(R -. Mouse_button_1XK(R -5 Mouse_button_2XJ(R -5 Mouse_button_2XJ(R -5 Mouse_button_2XI(R -5 Mouse_button_2X I(R -5 Mouse_button_2LH(R 3 Mouse_button_2L  KEYPAD FndNxtT|2(R *FindL2(R 2 KEYPAD delete_line (Del_L)L1(R ' restore_lineL01(R KEYPAD delete_character (Del_C)L0(R ( restore_charLH0(R 5 l$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T˿"KEYPAD delete_word (Del_W)L/(R % restore_wordLd/(R SelectL/(R resetL.(R 8 KEYPAD EDT_LineL0.(R < KEYPAD Open_LineL-(R move_by_word (Word)LT-(R : KEYPAD ChngCaseL,(R 6  KEYPAD EOLL,(R KEYPAD Del_EOLL,(R 7 KEYPAD Character (Char)L+(R ; KEYPAD SpecInsL4+(R  forwardL*(R BottomLl*(R  reverseL*(R TopL)(R % removeLD)(R &  insert_hereL((R   move_by_pageTt((R  doL ((R ?  KEYPAD sectL'(R  fillLD'(R 3  KEYPAD appendL&(R 9 KEYPAD EDT_replaceTh&(R @ "keypad previous_screenT%(R @  keypad next_screenLt%(R 1  KEYPAD BACKSPACE (start_of_line)L$(R 0 KEYPAD delete_previous_word/8\T g&nhk&1Hm&X|E8 P IX O  , Y4 ] _ d a  c t e g \ p ix k DXm`o,@qHs(u0w}ht|`lt,4< $,|Ldl$08`hpHX`8DL$t<LT $tDT\$,|L`h4 D L  !!!h!!!!!!<"X"`""""#(#0#####$$X$l$t$$$$(%4%<%%%%% &(&x&&&& ''d'x'''''<(T(\((((),)4)))))**X*`*h****$+8+@++++,,,h,|,,,,,@-L- T--- -. .2(.x..3../EVE$WPS_KEYSL(R 0 KEYPAD delete_previous_wordLx(R e  KEYPAD delete_beginning_sentenceL(R jlearnL(R a KEYPAD WPS_replaceT((R  spawnL(R a KEYPAD WPS_replaceTL(R *findL(R f KEYPAD continue_search_keyLl(R g 6KEYPAD continue_search_select (continue search/select)T(R B  KEYPAD repeatTd(R B  KEYPAD repeatT(R B  KEYPAD repeatT|(R B  KEYPAD repeatT(R B  KEYPAD repeatT(R B  KEYPAD repeatT (R B  KEYPAD repeatT(R B  KEYPAD repeatT8(R B  KEYPAD repeatT(R B   KEYPAD repeat\P(R replace\(R replaceLh(R jlearnL(R g 6KEYPAD continue_search_select (continue search/select)Lp(R \ bottomL (R > center_lineL(R exitTD(R   include_file\(R keypadhelp (help keypad)LT(R quitL(R * insert_page_breakL(R l KEYPAD page_markerL(R s  KEYPAD rulerL(R E spellLH(R ] /$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" 9C[Vv]_SByǁh\Hli%jbC:I^)XMhKDAS 5Nkt>7[f DAh?olwRM ^sn#c?i-@HFD\ {= NbB]. )x;c}^N!3Kzw&b܍ m yIl\Rَ.Ah.N;H8@w0OlP)+ oms) w`t!ЍLu\B%RGuj0MK󺡤n"g\FW ["wk^بaB]{n>4M%zD̅rdTF'),|rk$vυ>64i9^ ӷz u{(%~5DAZ@&Ϧ=K.u^̀W2- I0,B^ro\A>*t  @OhBq_h ҍE~+T*'d m0.'*w#h[IXQ{Z21s^hv'w7I!Ȥƨ(~gkP5FbtƧdG({BGVK{큄vtbۥFͨfHb)v"y zI4@ EIV- uސlxːA| l$SN=>,unZEۋHTrݣ&Pߒ  X%L3)k5&^\&|$Fo Jp:;km]t3P8Pտ6+OФ}أk'} F:C PXb)rrV$XŎ`0Ib|Og`v΃Ewr(}~S AZr+*'P4jSOZUx 'QEZe*Xx$q|RC 8%ArTwh; a\?Um+%ק蹭(xI`˧><:zz6l*/NhĂ(;3;>}!P~zb='L)z__-l=]K-vצG!RWAM%Xm(>Twm o8 KsQsMA3im6Bgk6rn Ҵ &q 4Sd,Bݩ6K)Ium4>+DwvPEeNTnBӚ@ݰߚa;ŕ~&'6*FQB0b%_n"F}kSs)#Ju/~wr׊LHPqcU; 9! Aߞ c('~O,/O<^o:x8nPK`XH+nWoo>Gnp%-p@ J#M_!xE$ 10l¤ϓ>WaY3%h:V+0S&Emc8%RcZ`.ibeLXIEѓpPnG&~btRNxAireQ  yKdžLkB<{V/[_voW` q\?ξ}@MߏAP'jW|Ss 4jSmM*I +zO 3d:*pW >+]pS\[aePu`C!-;Ӹ+'?N[#S |~L&0AMb_%OaI ctFmAz8[F&ʢma>Q1@~ukBu,3%Vs~\ 4 ;QD$Z`P(7Vg;\E$*;Eۜ_ۂ{sQo\S괃 ĭfs8DbcoP&qEZ]cN};DYr5?={~S4}*Ù9zzN3r_T#H`.O 9K ^9aVFd\QN_TP coe]DweƮ Eg7@lOEw RdA`Ih`aȿ%p|;q/U/ LK(K{}T8D 8UKq_;!0r!}z$7R>`Sudop8-z +.H]_<k8KΎa Y"+Bokn!O}HLt1ߌX| -2_ u^Hܢ.ǚGS=W9,Ac)MzuYV56w:|Mrb)=oZX|܋av>j'w c%a^by(?F#MI Wi ;e>YJpɂ^F3cLE&BbN.0[R9z KcBRWOٙS>/ (.;V[C&ӟ=.eНIu jwYXw]j#?InJMSB̥-EVeOPW.#5_tShi;u<AN_6F,c_$ѳdFxeVF]">Y4d LB`VE_{Fm%p_~6Ig"X w[R~9REarlh}MS""Eq)V u.\9D^(ܺH "+K!~9 *.`ERN9hhs w`lhM%6%(@RBeu0yKHRP !`dʡM%4] ;3v*^]gtO.N4}\,7Q5AKBZ0Oupnx5:W0<*$ >X/PG{z2/D=hDG-+{}H &/?&>AY8E+[3Z~i\VEM2G9I (x@#f*EQ˵>jE L=2la/2 & YRp.E? '9Bn5"Fr ;}ו`mx ]Sk^)=vd"A-1ŖL, #qRey^4bt9 >PZ6،w{-Mȱ:΂ۀǶ/w]9MVcQ({|Qq"]u!]Dk)kIf`uE sI1d\#9q %w+OQ尢0*D3jhzB$4l4Vˣ%dv$ pHnV϶$/\& *@kӾNLE,$)_6 +:.I3* Xνyw`,9X?n}Z87Fz 56h6| bAja Ab;*?ITj(?jҸC'2}ֶ BTWr.N*N:( RK.uY4a:FHc% !F89 鹕yr*\ӏ,7#% jq8$3\3K`L@f~/ԛr$I c:YI;|ydx~/n(RM+zFQ2n6J>E6x.lrGK[Q?] 0gSZ=锫DK^+;_8h$ْ|[˱x oDkcb˚xo ^cM"Ar#oEE?d4ǘ>)6@~T'O0WK./ r֓1^r;)0ޏQML6nh o+yQzȎγygm~WCo]*X{!.ݐT3r VqCN`ÓFn`*ۜu^{]%N*K:KH%H N-#13j7Ȟ4|3|i&HP mm VM^hJd_W^a&݌x){ Ɖ\7 }o3Y1 <]iEKH?wxHs񈮏/+Ԕ`0+"^U-6ăNO1h^mR{j߿;FGn=T]yWf`&RFS qW}MfQ޳SWr;GEg,o84}!,WXapn#Sz dYm*>͂'VoY/= Ca!3,t|)%u<Z#˟<~^ P\Yy|I@x΍VyXdӟ))]*9$ 2b23L"I7KH ѭMSuH ?w'auf0?ӓ#L9W{gΪa>O;jHIf.̳Rޭ蜺 `HH V]E2C6Ci$P;8ErtCtn NJ!hVj)ܝtR_7,Ţvbt'!.y5؜; Mn[OVms^֭5eI1BnZ'(w%$h Z*V^\/F{A5^=^X(׼@\]> .rdtOMZ`P&ߚx3-t?4+(2$޻X2y]Vyw-KH$0>[pqJo4kΚ(e"֢.-^8΀MŽnQOBب D jZ!]9QIvM+i-A'v.-~B',+;3 VP_O* QFײ_MJj ^QZ;F1|6({FG yMf#fKrOS(-WNDYt8p_eb jBיHEh5"G뚕%W&jnk:c r'b2e_Πy.[yO.sHB:L@LfkX ,PNf:yQ}۪a 9@2zQ}AO+4du0G)bNyT' ߘlfZ6,)L(R r  KEYPAD swapL4(R k  move_by_pageL(R m paginateLh(R 5 KEYPAD delete_wordL(R  restoreL(R KEYPAD delete_characterL (R  restoreL(R c KEYPAD WPS_pasteLP(R c KEYPAD WPS_pasteL(R ` KEYPAD WPS_cutLx(R b KEYPAD WPS_copyL (R _ selectL(R resetLD(R T KEYPAD advanceL(R Z "KEYPAD adv_scroll (scroll_advance)LX(R V  KEYPAD backupL(R [ "KEYPAD back_scroll (scroll_backup)Ll(R h KEYPAD WPS_lineL(R h KEYPAD WPS_lineL(R Y KEYPAD upper_caseL$(R X KEYPAD lower_caseL(R  move_by_wordLL(R  move_by_wordL(R KEYPAD paragraphLx(R  fillL(R i KEYPAD sentenceL(R i KEYPAD sentenceL@(R  KEYPAD tab_positionT(R *findLh(R c KEYPAD WPS_pasteL(R ` KEYPAD WPS_cutL(R _ selectL,(R p previous_screenL(R o  next_screenLX(R 0 KEYPAD delete_previous_wordL(R e  KEYPAD delete_beginning_sentence83TP W&bh[& /]& `|,8@\h@pBF(H0TlJtLP 8R@d|T`b,@dHlfh j , @ lH l n p r , @ H l     ( D L h     ( @ H d |    < D ` x    8@\t|8LTp  (80`l9tEVE$RULER_KEYS KEYPAD ctrl_e_key KEYPAD ctrl_h_key KEYPAD tab_keyTreturn$return KEYPAD set_space x KEYPAD save_ruler xx KEYPAD save_ruler 4x KEYPAD save_ruler x KEYPAD save_ruler x KEYPAD save_ruler hx  KEYPAD save_ruler $x KEYPAD save_ruler x KEYPAD save_ruler  KEYPAD get_ruler \ KEYPAD get_ruler  KEYPAD get_ruler  KEYPAD get_ruler  KEYPAD get_ruler \ KEYPAD get_ruler  S$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" KEYPAD get_ruler  KEYPAD get_ruler  KEYPAD get_ruler \  KEYPAD get_ruler x KEYPAD save_ruler, ruler_keys help KEYPAD set_paragraphX KEYPAD set_left_margin KEYPAD set_paragraph KEYPAD set_right_margin x KEYPAD save_rulerX KEYPAD set_tab_stop KEYPAD set_word_wrap x KEYPAD save_ruler KEYPAD set_paragraph` KEYPAD set_left_margin  KEYPAD set_paragraph KEYPAD set_right_margin x KEYPAD save_ruler` KEYPAD set_tab_stop$ KEYPAD set_word_wrap  move_right  move_left KEYPAD advanceH  KEYPAD backup KEYPAD WPS_line KEYPAD WPS_word  previous_screenh  next_screen,4 ruler_keys help, ruler_keys help]8@TT&&^l 8@ Hdl t08T\d$@H Plx"$&( <L*Tp,.0 2$@P4Xt|68:<$,>4PX@`BDF  ( H0 L X J` | L N P !!R$!@!L!TT!p!|!V!!!X!!!Z!" "\"0"<"^D"`"l"`t"""b"""d"""f# #,#h4#P#\#jd###l###n###p#$$r $<$L$tT$p$$v$$$x$$$z$%0%|8%\%d%~l%%%%%%%%%% &&&L&T&\&x&&&&&&&''$'8'@'\'p'x'''''''(( (P(d(l(((((((())4)D)L)h)x))))))))***8*H*P*l*|********+ +(+D+\+d++++++++,,4,L,T,p,,,,,,,,,-(-0-L-`-h--------..$.4.<.X.h.p......../ /(/8/@/\/l/t///////0,040P0`0h0000000001 10181T1d1l1111111122,2H2P2l222222223 383@3\3t3|33333334(404L4d4l444 444 4455$545<5X5h5p555555566$6@6X6`6|66666667  7(787"@7\7p7$x777&777(7 8$8*,8H8`8,h888.88808892989P94X9t9969998999:9:(:<0:L:\:>d:::@:::B:::D:;0;F8;T;d;Hl;;;J;;;L;;;N<4<@<PH<|<<R<<<T<<=V =8=D=XL=x==Z===\===^=> >`(>D>T>b\>|>>d>>>f>>>h? ?4?j$U@UTU@\UxUUBUUUDUUUFVV4VH center_line? fill_rangeܶ@fill_paragraphA set_widthp set_width< set_width set_widthԵB set_widthC set_widthlD set_width8E show_buffersF delete_window8̴iSPLIT_WINDOW_DIALOG split_windowx split_windowD split_window split_windowܳG split_windowH split_windowtI split_window@{ one_window J two_windowsزKset_find_whitespaceLset_find_nowhitespace\Mbuffer_attributes buffer_attributesbuffer_attributesbuffer_attributeslbuffer_attributes0buffer_attributesbuffer_attributesbuffer_attributes|buffer_attributes@N word_wrap O modifiableدP read_only tab_stopsp tab_stops<buffer_attributesRbuffer_attributesĮSbuffer_attributesTglobal_attributesLglobal_attributesglobal_attributesԭU tabs_visible tab_modeslVfind_case_exact4W clipboardXglobal_pending_deletenglobal_attributes[global_attributesDglobal_attributesglobal_attributes̫global_attributesglobal_attributesT`set_cursor_freeaset_cursor_boundb tab_modesc tab_modes|d tab_modesH set_keypad set_interfaceܩe@fsave_extended_evetg extend_all@h extend_this i extend_eveبjlearn,new usernew_user0dlist_of_topicscommands(B$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T7f".keypadkeypad(ܧkeyskeys(menusmenus(`aboutabout  reallydelbuf reallydelbuf reallydelbuf reallydelbufPn reallydelbufwritedelpromptwritedelpromptwritedelpromptpowritedelprompt8nwritedelpromptpquitФwritefilepromptwritefileprompt`writefileprompt(writefilepromptqwritefilepromptexitexit`exit4exitexitܢexitexitrexitXsexit,findfindԡfindnfindx extend_eveD extend_eve extend_eveܠt extend_eveu extend_evetv extend_eve@save_extended_evesave_extended_eveȟsave_extended_evewsave_extended_evePxsave_extended_eveysave_extended_eve؞@@@Tz@({@|@НmarkmarkxmarkL}mark, n}$markgo_togo_togo_toP~go_to, n}P$go_toܛ message_box message_boxt message_box@np message_boxno_select_popupКselectgo_topmarkD select_popupresetshow_buffers_active delete_bufferlwrite_then_delete0 write_buffer visit_bufferȘ extend_menul extend_menu8available_menusavailable_menusȗavailable_entriesavailable_entriesPavailable_entriesavailable_entriesؖavailable_entriesavailable_entries`available_entries$available_entries entries_menus entries_menusx entries_menus@available_entriesavailable_entriesȔ entries_menus entries_menusXn extend_menu ksave_attributesmsave_system_attributeskattributes_boxpattributes_box8attributes_boxattributes_boxȒattributes_box lattributes_box Plattributes_boxQbuffer_attributesԑavailable_menusavailable_menusd file_menu0 edit_menu format_menuȐ search_menu display_menu`customize_menu( help_menurestore_submenu change_caseset_whitespaceP set_wildcard extend_menusearch_attributesYset_box_select_menupZset_box_pad_menu8n help_mode(helphelp$ȍ@@4save_extended_evesave_extended_eve,8 extend_eve extend_eve8set_paragraph_indentset_paragraph_indent, set_width set_width0Lattributes_boxattributes_box, extend_menu extend_menu0 split_window split_window,h set_margins set_margins0  wildcard_find wildcard_find(Њfindfind(replacereplace(Texitexit0writefilepromptwritefileprompt0ȉ save_file_as save_file_as(|openopen$@newnew4global_attributesglobal_attributes4buffer_attributesbuffer_attributesX\ set_scroll_on ]set_scroll_off^set_scroll_smooth_set_scroll_jump t$ widget base 8F widget countUpPA  NOTES$KEY_MAP_LISTNOTES$USER_KEYSNOTES$SUBKEYSNOTES$MOUSE_KEYSNOTES$KEYSEVE$STANDARD_KEYS=*$ NOTES026.A"b *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T ?UpPE TPU$KEY_MAP_LIST$d-EVE$USER_KEYSEVE$STANDARD_FUNCTION_KEYSEVE$NUMERIC_KEYSEVE$STANDARD_KEYSUpPA  EVE$KEYPAD_LISTEVE$VT100_KEYSEVE$NUMERIC_KEYSEVE$EDT_KEYSEVE$WPS_KEYSUpPAEVE$FUNCTION_LISTEVE$STANDARD_FUNCTION_KEYSEVE$MOTIF_FUNCTION_KEYSHUpPA $4EVE$COMMAND_MAP_LIST$-pEVE$USER_KEYSEVE$STANDARD_FUNCTION_KEYSEVE$NUMERIC_KEYSEVE$STANDARD_KEYSUpxPAEVE$MOUSE_LIST$-. EVE$MOTIF_MOUSE_KEYSUpxPE EVE$HELP_MAP_LIST$-R EVE$HELP_KEYSUpxPAEVE$RULER_LIST EVE$RULER_KEYSUpxPAEVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_548 II NOTES$SECTIONT2.613-DEC-2004 15:5713-DEC-2004 15:57##DECTPU V3.1 1992-10-14 04:07 T .$$ABS$$.@ <Li4TPU$$K_SECTION_BASE !*[NOTES.TEMPKIT]NOTES$SERVER.EXE;1+,0b./J 4 - 0123 KPWO 56`شģ7ģ89GJHJELF 2(HH8@00XX3~F!00B0B@ ,`b@1B0 B`Y !PB1B 3 D!00B 0B @@XU `!@B x&A<0(`` !a###0`RNش#5`RNشģM`K` /`1`3`=`?`A`@ `%`#`I`P``E`pNOTES$SHARE p0@o fIPF/VMSNOTES$SERVER jIPF/VMSNOTES$SERVER gIPF/VMSNOTES V2.5eIPF/VMSRNشģhIPF/VMSLinker T02-17kIPF/VMSRNشģlIPF/VMSRNشģ.shstrtab.strtab.note.dynstr!   P@ '*[NOTES.TEMPKIT]NOTES$SERVER_LOGIN.COM;1+,1b./J 4V- 0123KPWO56s(7ōģ89GJHJ?$ ! N O T E S $ S E R V E R _ L O G I N . C O M$ !O$ ! Copyright Digital Equipment Corporation. 1985, 1993. All Rights Reserved.$ !$ !$ S1 = F$MODE())$ IF S1 .NES. "NETWORK" THEN LOGOUT/BRIEF$ S1 = F$TRNLNM("SYS$NET")$ SHOW SYMBOL S1$ SHOW LOGICAL SYS$NODE=$ IF S1 .EQS. "" THEN LOGOUT/BRIEF !Must not be a Network job$ S0 = F$EXTRACT(0,3,S1)$ IF S0 .EQS. "_BG"$ THEN$ ! TCP/IP connect$ S0 = F$LOCATE(":",S1)*$ S00 = F$LENGTH(S1)-1 %$ IF S0 .NE. S00 THEN LOGOUT/BRIEF)$ DEFINE/EXEC NOTES$SERVER_TRANSPORT 1$ ELSE$ ! DECnet connect?P$ S1 = F$EXTRACT(F$LOCATE("/",S1)+20,19,S1) !Skip local link id, connect-data@$ IF S1 .EQS. "" THEN LOGOUT/BRIEF !Must not be a Network job?$ T1 = F$CVUI(0,8,S1) !Get the destination descriptor type%$ IF (T1 .NE. 0) THEN LOGOUT/BRIEF>$ T2 = F$CVUI(8,8,S1) !If t1=0 then this is object numberV$ IF (T2 .NE. 33) .AND. (T2 .NE. F$TRNLNM("NOTES$SERVER_OBJECT")) THE~CE$ NOTES026.A1b '[NOTES.TEMPKIT]NOTES$SERVER_LOGIN.COM;1V$ IF F$TRNLNM("NOTES$SERVER_MAX_SERVERS") .EQS. "" THEN EXIT 1 $ S1 = ""$P_LOOP:$ PID = F$PID(S1)#$ IF PID .EQS. "" THEN GOTO NO_MOREA$ IF F$GETJPI(PID,"USERNAME") .EQS. "NOTES$SERVER" THEN T1 = T1+1 $ GOTO P_LOOP $NO_MORE:C$ IF T1 .GT. F$TRNLNM("NOTES$SERVER_MAX_SERVERS") THEN LOGOUT/BRIEF$ EXIT 1$ !J$ ! Login command procedure for NOTES$SERVER account. Ensures that processJ$ ! is network, and that it was started to access the NOTES object (33) or*$ ! the NOTES TCP/IP (UCX) service (3333).$ ! *[NOTES.TEMPKIT]NOTES$SHARE.EXE;1+, b. /J 4 - 0123 KPWO 56Դģ7cɍģ89GJHJELF 207HH8 @p"p" ,ZZ4 4 PP((<<77NOTES$ConferenceNOTES$Filenamedns$remve_first_set_value` d ( , $ $ H+ s$ $  ! 3~F`(!(b(@b(a0@1B `X $0@! 0B D@Y D!  a @ `w f8! @`$ A!   ,D00B0B @Y A@!  0@!0Y$:( J! 1B D@Y D! #b @YBB@`B0Y 8!8Y$:( J!B@X U0 `!@B  (`(@`00B H0@4 ! D0BX! !0 0 H! ! D0B8! !0 0 (! ! 0B! !0 0 (! !! , D B`_ B ! 12~F !(d0,,`,, @0 @c ,, LH1B$@02B1B L H$ #d @Y @! #`. 0  0 )P @! B ,@@, !\t( F!B !0 0 ,`@ p q| @!  ,A@ @@R  C H!$ $,@d P@PX P@!`( d "DB@( $ HB H,`d &0MBBc (X !PT PT,a,p0B.1B0A1B2@"%B H Y (L!(Y0$pDB8Y @$!@Y H&! HYP(!TB !D8( F!B@X ,`d @2B HHP P!( (, d " X !PDBX !H  ,@0,,` &`X !@P (!X(# \,Ur\n)\,p]^) \,QX#d 0X !d d, 022B 4hB`( 6lBl,d 8qBXX !x <!0B>0B@1B@1B@"aB H Y (L!(Y0$phB8Y @6!@Y H8! HY P!;! ,`, !7( F!B@X ,`d @2B HHP P!( (, d " X !PDBhX !H  ,h@ !0L 0L,`B &`X !@P  (!@PB@, ,0L0 ` !0@ F!B`- 0 p Cw f$,BlPF!B@XZ !0 0 ,`@ `Rp C H!$ $,@d P@PX P@!`( d "DB@Bc $@X !0L 0L,a(P0B*`1B,pA1B.@"%B H Y (L!(Y0$pDB8Y @!@Y H! HYP$!LB !9( F!B@X ,`d @2B HHP P!( (, d " X !PDBHX !H  ,H@0,,` &`X !@P (!X(# \,Ur\n)\,p]^) \,QX#d 0X !d d, 022B 4hB`XX !p 8!Ё0B:0B<1B>B1B@@"aB H Y (L!(Y0$phB8Y @!@Y H! HY P!7! ,`, !8( F!B@X ,`d @2B HHP P!( (, d " X !PDBX !H  ,@ !0L 0L,`™&@A2BL(PA2B *  P !`X `X,d .X ,!P\B(X !`  ,(@@$U `!@B % 3~F@ !(a(@a00B `X !0  0 )P$ A!` `, a B†B00$pB8Y@A$!HX H!B@X~ a! ,? !@ # b BPH !0  w fH 80! P!( (,P$,BePH!B@XF A!` `,`a 0B b H HX(L!` Hp,H$,BxePH!B@X" ,,` C! # XX,,@T P(B L(,, Œ @"@X $ #U `!@B   3~F`(!(b(@b(a0@1B `X !0 w f8 @! @`$|  &0 (M$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 <" B $Rp C  & 0 D00B0L 0 B  @ `X @P! # a B! Y 0B!0Y$1( J!@$ U0 `!@B `M1~F`h! 2B(c 0He 1B@1B,`e0L 0 Be 00B`0 ,a @1B@01B 1B @Y @! )PL @!0 0 , 0B H$B`a$0B @@X $!#`a 0 B a 0B @@X P$P #`a 0 B a 0B @@X0B @ B`a0BH0B@ ,@ P!@( #`XX ! H$@ 0 B$,,bx@1B @@Y ! XX H0!$ $, HXp \!,a,@X XT!BP!D0( XT!BB @ P!@Y A!@ #`c `Xp!, P!@ # d HRHP ! ,D @q  @! ,`c 0 BEB p\pY x!xY$,B_PZ!B H! , EIHR2B@2B @P@P 0,,` 0 Ba 0B H HX P$H(@ a ("$ H|, 2B$$02B &Lk< @!@P @P,P* `0B T,@P dP.2B 0ckW  !d @d4 0B 6`X $p@a p:l ) 8 !x # !| @h|Tx! p! ,$,BHPX@!1B HR HY @a &0  @P!@YpR!BxY$( P!@ #d @P$ p! ,5$,BPXR!4$ @! ,@d PT@PYpP!BX`U `@!@B ) 1zF@ !(e(@d`` @! # A! #f@!00B@2B @p s` !! H By! @!0 0 ,`@ ` Rp 0C @!@X A! , D B`@O B2B @@X H!$ +/(0L  #e @B (@!(Y$w( w f$,-( H! ,x@ A! , 0!0Y$-( H!2B @Y @!0 0 ' B@2B @p s @$ H!$B$,@e$2B X`XX $,#`e &`X$PLBP*`2B ,X !p\Bp\,B\,2B 0X @!dBd,d02B 4ahB`eh62B 8X82B :!tBet< L >| b|J L >|B |L X 8! #+ @P bR L @PB`  `X ! # c B! Y @! B , b H! HX P!(B(,P,@`,Hp,, P, Sʕ H!p ( H88! A &0 @0BB L @B`  `X HP!$ # P@!(B(,`a X!`XX (!(Y 0!0Y$<+( H!p ( H8@! A &0 B0B@ L @B`  `X HP!$ #? P`!(B(,`( X,B,, e " X (!(Y 0!0Y 8!8Y@"!B HY$*( H! ,@X a!@ #e @P$ ` &0 0  !`X H`!$ $,P,`,H $|*( H! ,(@@$U `@!@B  ! 3~F`(!(b(@b(a0@1B `X $0@ a B Y B! @a D w f8@! @`$ A!   ,D0B@0B B Y B! ")P @$l A! ,@D D _D1B @@X @! #b @YB @`B0Y 8!8Y$l)( J!H U0 `!@B 5 0~F@ ! 3B(e (e0Hg @B2BBB2B ,`g0 L 0 Bg @Hd0,,`"2B @2B@B2B B02B `X !0  0 )P$ A!` `,e @"B00$pB8Y@A$!H XN H!B@Xr a &0 @02B `X ! # e H HX H!$ P$)HP8 P$2B(" ,,@$0!2BH&@,, (_X(p,,û0,, 2 X 2!l+ 6l+62B 8X 8!p # `!t t,C :tq7 `!x x,C <RxC `!| |, e B Y AB!p e (JB( 0L`B,e @P0B Ed HR HX P! (,`aV0BX1B" A1B$P"}B (J(Y 0N!0Y8$ B@Y H@! HY P!@PYX!(B ! '( H!B@X ,f @03B P H`!$ $,@f P@PX(!`(B(X @!`D `,@e $ JB`f &`X(L!` Hp,$,BHMPH!B@X^ a! ,`e `X @!p  e H$B@- P(B(, Bd " X ! H  H,`a&@0B(P1B*`A1B,P"B (J(Y 0N!0Y8$$B@Y H! HY P!@PYX"!HB !&( H!B@X ,f @03B P8 H`!$ $,@f P@PX(!`(BX @!`D `,@e $ JB`f &`X(L!` Hp,$,B8KPH!B@X a! ,D @Y `!0  !P BP,@ 0 `H !0@ H!B- @ p PCw f$,BhJPH!B@X a! ,D @Rp `C `!0 0 , e H HX H@!p$ @e P(B Bd " X ! H  H,`a&@0B(P1B*`A1B,P" B (J(Y 0N!0Y8$(B@Y H! HY P!@PYX"!HB !&( H!B@X ,f @03B P H`!$ $,@f P@PX(!`(B(X @!`D `,@e $ JB`f &`X(L!` Hp,$,BHPH!B@X a! ,`e `X @!p  e H$B@Ad P@PX !D D,@a$00B&@1B(PA1B*P"B (J(Y 0N!0Y8$$B@Y H! HY P!@PYX!DB !%( H!B@X ,f @03B P8 H`!$ $,@f P@PX(!`(BX @!`D `,@e $ JB`f &`X(L!` Hp,$,BEPH!B@XJ a! ,D~$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 [" @03B3B HHP8 P`!( (, f " X(!`DBX @!`H `,`e &0NBf (X(L!` Hp,$,BDPH!B@X a! ,d@01B,, K H $J@@c P`H(aP!1B(" ,,`XX &!0L c (0P@“L*`,,³,p!H`  `!` `, e 2 X @2!pd @e 4hB`Cd6,, 8p@d:,, <x @a>0BBP1BJ`B1BLP"aB (J(Y 0N!0Y8$hB@Y H! HY P!@PY X6!`XY `:!`Y0$,BF PH!B@X , f B03B PH H`!$ $, AIH3B$3B "  P7d `! H  H,@b$01BH&@,,£ (@!PJ@c *TaC(!`1BT,p,,XX 0!` c 2d@@û`4$ `!l l,f 8X(6!`pBHX @!`t `,e <zBf >X(L!` Hp,$,B@PH!B@X a! ,`f `X(B!` BxX H@!`$ `,@e P*B f " X(L!` HPp,$,B@PH!B@X ,,`c1B H0$ @@  ,, ‹" ,,@ $@X $`Ha `!0L 0L,e (X @(!pP e *PTBXX 0-!`X XX .!p\ X. ,, 0X0,, 2d @@a40B61B8A1B:P"MB (J(Y 0N!0Y8$TB@Y H! HY P!@PY X,!`XY `0!`Y0$,BA PH!B@X , f B03B P8 H`!$ $, AIH3B$3B "  P7T `! H  H,@b$01BH&@,,XX *!PT c ,PX@£T.$ `!` `, f 2 X(0!`dBX @!`h `,`e 6nBf 8X(L!` Hp,$,BX<PH!B@X a! ,`f `X(B!` BX H@!`$ `,@e P*B f " X(L!` HPp,$,B;PH!B@X a! , D B03B3B HHP8 P`!( (, f " X(!`DBX @!`H `,`e &0NBf (X(L!` Hp,$,B:PH!B@X6  &0  B $Rp C !0 B0 , e H HX HX!$ P,H`, #!LU( H!B@$U `!@B 3~F@(a(@a0B @Y A! ,(B!, !@ # b BPT !0  w fH 8! P`!( (,@AP P@aPR((@C `!D D,*? a! , D B`O B0B @@X H!$ (' ( !D  ,(@ `! H  H,@B $@RpH `C0,,a (X X(!@P )?#0!NBP&, P,,XX ,!`X -?#P!VBX*p,,XX 01!` @0!p^B .HU `!@B PQ1~F X!(d02B `X,, @ @  B  B,, H@ HX HX!$ c $  ,AA@01B 1B HHP @0 B `!`Y$,BhPX@!H@0,,`  P  ,, K H $J@@c PH(aQ!A2B(" ,,`XX &!0L d (0P@“L*`,,³,p!H a(W @X @ X @2!d  @hB`- 6lBl,d 8X,,:,, <x@XX >!| E > Ђ0BZ0B^1B`C1Bb"aB `X`Y h\!hYp$hBxY 6!Y8! tB@Y >!`Y0$,BH3PV!B@X ,`e 2B HHP( P@!( (, `@`Yh!, @!D D,$,B2PV!B@X @$, 0,,` `XH, ,,@T P@PX P(s ,,@" $`OL$@,,c*`A2B ,PX @£T.L Eqg$,B1PV!B@X 0,, XX H!$ @c PH(@ $" ,,@“$0,,` &`X &`La @X @X @*!T  @`XB- .p\Bp\,d 0X,, 2,,@ 4h@`XX 7!l l,6,,`[ X, @a80B:1B<A1B>"QB `X`Y h\!hYp$XBxY .!Y0! dB@Y !`Y0$( V! ,@X @!!@ #`d P0 H !$ $, `@`Yh!, P !( (,P$( V! ,X@ @B `@!`Y$^( @$PU `@!@B 2~F (c00B`0 ,a 0B @Y H|$H#`a 0 Ba 0B H HX P$P$#`a 0 Ba 0B H HX P$P$#`a 0 Ba 0B H HX P$P$#`a 0 Ba 0B H HX,,@R PP$ #a @"B`a0B@0B H$,H P!@( #a @!@X !@ #c @ Y H!$B$,`  $P$B(Y $|( !@ #`c P  H!$  ,(@@$U `!@B 3~F (a0,,` `X0B @@X  &0 0  !`X!@ B Y? a!@ #`a P  H`!$  ,h@ P@!( (, ) "DBD,`P "! Y? a!@ #`a P  H`!$  ,@,,  P!( #@XX0,,`œ &0LB@L$@,,¤ (X $P#a .X.!, @$U `@!@B PE2~F X!(d(@d(c00B`0 ,a @2B Bp k A!   ,`d # a B B`a A! ,@@0B B B`a2B @p k A!   ,`d #a @ B`al A! ,@d D X@`  #a @ B@a D00B `X ! ,R0B @ B@a D !0 0 ,H0 A! ,c @@X @@#`a 0 Ba @ @!  ,@H0 A!   ,` D0B @ B a B00B `X ! , @ #a @ B a/U$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "1 Bd @!0 0 ,$0B @ B a B00B `X ! , @ #a @ B a B @!0 a @!Y @ B1B D,,AD@B1B B`@i !! ,?  ,, bhBB1B @Y ! XX @!  ,@X,a,X XP!B@!( XP!B,@D0,,XX @! b H@$ @`@ 1B P@PXPA1B(" 1B $@X $! H `cH& !@P 8(! P,,B *Tq !`X `X,? @! XX C!  0BBb@ ,,`bh1B @@Y H!$ @c ppY,,  "XD,hY, X XB!B!( XB!BB,@D01B1B @0 @ c @1BP1B "PD @@b($0,,XX )!@P b *@T @`BP&$ @$PU `!@B 3~F (a0,, !@ #XX,, L H$B$@0,,` `X0B H HX!, A! ,`. 0 B0 ,` ! Y? a!@ #`a P  H`!$  ,@ P@!( (, ) "DBD,`P "! Y? a!@ #`a P  H`!$  ,(@@$U `@!@B  ! 1~F`(!(d(@d(c0,,`@ p k< ,, @Y @P  @!@X !! ,6? A!@ #e @P  A!  ,@0,,`0B 2B P@PX @!D D,@D$ 00B H&D |", @2BD(P2B *Tk< @!`X `X,X. 0B \0`X eX22B 4kkW  @!l l8 Ё0B :X $x@a x>t )`8 0A!ؘ # 8A!p p,8Y 0B D@Y $@ a B e02BH1H0 @! H  H,`H& 0B L"H eD(L @!PT "xT.8! @!` `,0`0B ,`XB aX2`,X @!h # @!p p,X !x #a>,, :t @`bt6`,,@XX P!( b 8NP @D4(L,,@aDBB2B @@X@H @$t !0 0 ,$,BPJ!B !  8D8! ,,D @q, 0,,` `X `(PWp @ !  ,@? A!@ #@e DP` ! `XX !0  @42B a ,,@TP0B(" 1B $@X `!0LB0L, 8&!8Y$,BXPJ!B@bD0B @ @`b,, XX H!$ @a PH( @AD$,,@XX %! H `a & L@ H"$ @!@X @!P  ,(@@$ U0 `@!@B 12~F !(c01B `X !0  0@ )P8 ! , @@B@,  F!1B @Y @@! #c @@X @H!   ! Y$< ( F!< ! ,0@01B 0 BaH HX P`!H(0#`bA1B"@B Y (L!(Y0$p B8Y @!@Y H! HY P!@PY X!`XY0$ ( F! ,@X !@ #`c `X @!`  c H$B@a0B1B" A1B$@B Y (L!(Y0$p$B8Y @!@Y H! HY P!@PY X!`XY0$ ( F! ,@X !@ #`c `X @!0   ! Y$$ ( F! ! ,`U `!@B 5 1~F@ ! 2B(d (d0He @1BB1B ,`e0L 0 Be @B2BB01BL @ #`d `X ! # . B )P ! ,$,BPH!B !! ,D @p q  !0 0 ,`8@2B @ B ( H$B$,@d P)B d " X @!H0#`a&@1B(PA1B*PB(Y 0N!0Y8$ B@Y H! HY P!@PY X!`XY`"!aH XR H!B@X ,c @0@2B `X !0 0 , d H%B (!(Y !D0  0$,B`H!B- @ p Cw f$,BxPH!B@X~ !! ,8@0@2B 0 B d H HX P@!(0# a" 1B$0A1B&PB(Y 0N!0Y8$ B@Y H! HY P!@PY X!`XY`!aH X H!B@X ,c @ !0 p PC H !$ $, AIH1B$ !D D(0C !H  ,(@@$U `@!@B 5 1|F@ ! 3B(e (e0Hf @1BB1B ,`f0L 0 Bf @ H`2BH01B$L @ #e @@X @! # dB01BH4c$@pH $c B01B1B H$,c @!Y @! B ,HP,`,@p, 3!$!( H!Bd ! # H!@$#@ !PD #@a P!@PX !PH #`" @!P#"a*`1B,p0BX.0B0AH@gd4 Hgl80B`l,gl:!H`x>"H$`JB0B ,D`Lp2B 8N8Y 8AN!p e @PB@b PT!PY XA!0#`a03B`0 ,`X !0#bPB(Y 0N!0Y8$B@Y H! HY P!@PY XX!`XY `!`Y0$,Bx PH!B@X ,d @0@2B P H`!$ $, AIH@2B$ !D D(0C !H  ,X @ `!0L 0L,`8&@2B (@PBb *!XPT,aT,p0B.1B0A1B2PB(Y 0N!0Y8$PB@Y H! HY P!@PY X!`XY `!`Y0$,B PH!B@X ,d @0@2B P H`!$ $, AIH@2B$ !D D(0C !H  ,x@$@3BL(P!HfT,p Hf\0qH@fd43B d,`fd6!Hfp: H3fx>rH$fJ2B ,DfLp2B 8N8Y 8AN!p e @PB@f PT!PY Xa! `W!2B`,`Y H@!`%0# f H! HX$,@a$1B" A1B$PB(Y 0N!0Y8$B@Y H! HY P!@PYuX$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 4B"B X@!`XY `!`Y0$,B PH!B@X ,d @0@2B P H`!$ $, AIH@2B$ !D D(pC ! H `@XH&! 0$PA2BP* !X  ,h@@$A2B\0p1Bp\, d\2H`ch62B 8ùS @!t t,Rp: 1Bp<2B>1B|BP2BJ`2B 0L0Y 0L!` hLx8! 8a!p p,98N2B @PB ( HRB,@e PTB`d !`X0 , a 0B1B" A1B$PB(Y 0N!0Y8$B@Y HX! HY P@!@PY X!`XY `!`Y0$,BxPH!B@X ,d @02B `X !0 0 , e H%B (!(Y !D0  0$,B`H!B- @ p Cw f$,BPH!B@X a! ,8@02B 0 B d H! HX$,@a$0B" 1B$0A1B&PB(Y 0N!0Y8$ B@Y H! HY P!@PY X!`XY `!`Y0$,BH PH!B@X ,d @  !0 p PC H`!$ $, AIH@2B$ !D D(0C !H  ,(@@$U `!@B PE2|F X!(b(@b01B `X !0 0 ,A$0B0B@ P!@ # b B Y AB! 8B! @$ !0 0 ,`@ `Rp `C  &0 B0BL @ B`   `X ! #` @!@X@$1B BH@c$0@1B 0 B b BB@,cp! BxY B!Y$,B PV!B`a 0B HHP  P`!(  ,h@ @ &D0  "! X ! HB H,,, #!( V!B@P  $@0B  P` &(0 P1B("L P(B@ P($ @PX !PL #c (!X @!PTBPT,a ,!X !p\ p\,,,,$,B PV!B`  B p@pY`!BhY xB!xY!( X@!B!( X@!Bd@!, ,`c0Bh0B  Y P@!( Ba p"pY !H ,`c &Y,xY@!t( XP!B@!|( XP!B ,`c1B@2B H$,H P!@( #d @!@X !@D #@b $@X !0LB0L, h&!hY? @a!@ # a BP  ! ,@!, XP!0BBw f8@0! `!0 0 ,$,B PV!B@X a!  ,x@  &0 B00B0L 0 B    `X P!( # ` "! X ! H @$!DB`Y h$!hY p!pY x!xY$,B PV!B@X ,a @0B BP  `!  ,8@ H &$0  H! HX P@!(B(,H,P, #@! ( V!B@P  $0BB @!0  a @1B P@PX @!D D,Ph"!, @a!@ #a @P8 ! ,@!l, XP!0B@ w f8B0! `!0 0 ,$,B PV!B@X a!  ,(@@$PU `!@B  - 2~F`(!(c(@b(b01B `X !0 a @1B B Y C! @aDL BB C?# Y @! #) @ 8@! A!   ,@D00B0BBL @B, @!0 ?# 0B D0B @Y @! )P A! ,`a `X a!p a 0@0Y aC! ` @@YP$( J!`@pK !  0D(! A! ,D @R(pC ! PB% @!0 0 ,`@ `R K @!D D,@a $@X $! H $!`2DBHLpB1B 8N8Y @A! N,,@ HS!P #XX ,,@ D BD,, @@@X $!# $ 2BD$0B D,d 8"!8Y$ ,BPJ!Bc @1B BP$ !0 0 , sf 8!8Y@!H@XZ| J!B@XR A!  @!`B`, !( J!B@c D1B @P@ $2B 00B`0 ,d 8!8Y$,B8PJ!B@) D B ,c @Y 0D!0Y 8!8Y@@!H X| J!B@X A!   ,xD0B H HXP$$B(" 0B $@X$@1HBL(P0B *X &`X0 ,PUBX*p,, /!\ # XX,,@ 4hB h2,,` 6`X $l#c< @!| |, a B Y 0A!` `,a 8N8Y @! 8H1 `t @@@Y0T ,qB0,`, B $ @@D HH P$0(@ H`2H&@qH"P* "BD`1B ,` XBcX.1B 0p ` k @!d `3!0B@h,`,p, #!D( J!B, @` `,@a D BBp, !t( XB!Bb @Y A!  @H U0 `!@B 2~F !(b01B `X0B 0B @p q !0 0 ,0B @@X A! ,d @~F``@0B H HX H!$ 8! @!0   !X$( F!0B$@p  CH9 @!0 0 ,? ! # @!0 b@@H 8 H1 `t @0 @ !@ B@, z F!B1B @ B`b@1B @p k H@!$  H!@$B@, z F!B1B @0@1B P8 H$1B$0B H$,c (!(Y$( F! L @B,`b `X @! Y (!(Y0!Hh PF!< $01B00B`0 ,c (!(Y$<( F!U `!@B  9 0|F`(!(b(@b(a0@1B `X $0@! B1B D@Y $@`b `X !0 p  C@$ ! B ,``0B @@X H|$H #`` 0 B@` D0Btx{$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "S @@X H$H #`` 0 B@` D0B @@X H$H #`` 0 B@` D0B @@X H$H #`` 0 B@` D0B@@3B H$,H P!@( #f @!@X !@ #@D H!% # ($ H$B$,@Ag$0@1B `X !0  0@ )P  @ & 0  @!@X,@`,@p, $ ,B PJ!B@ @ &0 0  !`X,`,@p, $ ,BX PJ!B @!0 B0 ,` 0B H HX P|$P$#@` $ HB``H&@0B (X $P#` .p \B`\00B 2 X $d#` 8 pB` p: 0p<0! !| |, B}#` 8Np B`P HBHR%7( X! ,V00B 0 B` 0B H HX PBP$#@` $ HB``H&T !@P @P,"T(p0B .p \B`\00B 2 X Bd#` :tB`t8 !x e >!Xx> 3BxD2Bx,Df xL exN!B<2BxP1B 8R8Y PA!B,88$B@Y HT! HY$ ,BHWPJ!B@P @!0 0 , Y0!p$B8Y$ ,B(LPJ!B@ !0 B0 ,g 3B H HX P$P$#@g $@X$@HBL(P3B *X !`XB`X,BX*p3B .X !`B`,`.3B 2adB@gd43B 6`X63B 8!pBgp:A3Bx,`,p,, ,@,`,, s!( J!B` @ ! #H$`B2B*$@P( J! B H !$B$,H PB`c(&@1B (Pq !PT d ,!XT, pA0BT. !` c`2A2B`,@Cc`4,c 8!X 06!0Y 88!8Y$ ,BX PJ!B !0 B0 ,` 0B H HX P|$P$#@` $ HB``H&@0B (X $P#` .p \B`\00B 2 X $d#` 8 pB` p: 0p<0! !| |, @}#` 8Np B`P H@HR%7( X! ,V00B 0 B` 0B H HX P@P$#@` $ HB``H&T !@P @P,"T(p0B .p \B`\00B 2 X @d#` :tB`t8 !x c >!Xx> B2BxD1Bx,d xL dxN!B<"2BxP1Bx, `xR0B PT@PY X}$X#` hZ B``0B @@X H$H # ` " DB@`D$00B &`X $L#` ,` XB`X.0B 0X $`#`` 6 lB`l80B:1B|, ! #b :!X 0! #D 8! #-$ @B,bP, g HR!`HY P!B,`f XV! XY `a!B,d hZ! hY ! HB H,`c &!`X !@PB@P,X @!T0#`,p,@, H,@P,`,,, !$( J!Bb 8@8Y,88$B@Y? !@ #c @P  !  ,x@ !0 0 , . H$B$, 8!8Y? !@ #c @P  !  ,@ !0 0 , ) H$B$, 8!8Y^? !@ #c @P  !  ,@ !0 0 , a H HX0!p$B #:  ,, E! # XX0,,` 0 B   B,,D @@X H$H # b @"@X !0H 0O/L$H U0 `!@B XI0\F@`!(d(@d0@2B `X @$0 @!1BBH`b 00B`0 , a B0B  !0 0 , c B! Y, pB!pY x!xY? A!@ #`e P H!$ Hy@! X88! hy0! x(! 8 ! H9(! P@!( (,PA1B("d$ X`(! @! H  H,$01BH&<$  $HPqd !T ,b,!p!Hb`X,pp $BxY ,!Y$,B(GPX!B@P !0 0 , Yh!$BpY$,Bw PX!BxH0,d @@X h!hY p!pYx!H X" X!B`e 2B HHP4D P$H(q ,,@B $@X$aEBH"<$ $HLqw h9! @P2BP*@!B(`2BP, `!p\ x.% @!` g`22B 4@X $l@e l8h |4, 3Bh:3B <px k< @!| |, }B Ђ2B Z| g|\3B x^k  ! b 02B `X @$ @@e 0 0)`8 !D # ! H  H,@X !L # e H HX $PIT@e T($ g$,p3B. H`q(W @!d d,`d6 2B l8d @gd4L !t #ht<88! A! ,BЂ2B hZBe>, Y p! # x! ,xY !x #e@2BP3B `P @@  0@3B 0@ @ e " 3B$0 H!8  !@P 8(! !PT PT, e H HXHPWB$* @$Xq7T @$\qwL @$А`q  ؠ!l x6x! !p p, e 2 X2!sBd8T @$ph q  !t H:90! !x x,e >X>A{B|< hA! f Bj@e\<$ x $HqW $2B`0B P(q( @! B ,`.$ 0 B0 ,@,, #!( X!B`` @ !  , a H! HX,@ p!pY x!xY"? a!@ #`e Px H`!$ @y! P@(sW @!D @`D$0 ! @!0L '?#@2BL( `!PT xT,! $p\ q $`q @!d d, @d #`a 6`X @!p  8!!lBp6Ё2B:!H 8t1 `t0Bt, hA! :2B p\ Be ^ \!#B x`xY A! ,a hhYh!Z!BpY B!YH!t( XR!BH!|( XR!B Y B BB,`aT$ @@! A<*$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 1"d 8 H1 `t@0B@P ,@ @!D D, " #@e $ HB`eH&$ @!@P )?#P0BP*`!0B ,PD !p\Bp\,.$ 0`B`,,, #H!( X!B`PD$ A!  ,X @ @!  ,8 @H$2B$ B Hp$ q @!D D," 2BD$ !0L H&xH! !@PB@P,.$ *PTBPT,,, #H!\( X!B @A!  ,@ a!  ,@ `!0 B0 , e 1B Pp( k @!D D,@c $D#e (@ PBeP* @!`X `X,\,2B 2 dB@ed41B 6ok7 @!p p,c :p#e > |B e|Rl hA! ,c p\X@ p^ p# e b BeP2B B Y @!  ,@R B2B H$B@e$@ H@,w @!0L 0L, @L#e ,` XBeX. @H4ҷ( @!h h,`l4Ё2B : tBet<2B >X H@H}#e hZ Be\T A! ,%`02B 0 Be 2B B Y H@H# e "DB@eD$ @!0L e (!XL( P1BL*02B`0L,BbL,p,b 0!X,,,, 3H!( X!BY @! ,,,@ $,BhIPX!B f R3B @P  @!  ,@ ! , b H! HX P!(B B P(" @PXh\!"HH,P, C!$( X!B@P H! ,b @ # @! ,`b !`X H!$B@A H$  HXh\!H,H, C!( X!B@P ! , c HRH # @! HPxH! !0 B0 , .$ H$B$,,H, #!d( X!B@$XU `!@B ) 2~F !@,BP x= #`d `X @$0 @d @Y @$!@ d H HX !$H@@a P!@PX A!P #`a X`XX |$,#@a P(Ba(@0B X`XX $,#@a P(Ba(@0B X`XX $,#@a P(Ba (@  `0(0! @!D D, D#@a P(B`a(  H( A! ,@(@0B " DB@aD$0B P@PX XX(# a " DB@aD$T P@!( (,`!,0B " DB@aD$0B P@PX XX(# a "DB@aD$ P@!( `a X!`XXP( 1B(@0B@P(, Bc(" 0B$1BH0B @Y P|$P#`a X,B@a,$0B P@PX $(#`a X,B@a,$0B P@PX $(#`a X,B@a ,$$ @0,0! @!D D, E#@a P(B`a(  H( A! ,@(@0B " DB@aD$0B P@PX XX(# a " DB@aD$T P@!( (,`!,0B " DB@aD$0B P@PX XX(# a "DB@aD$ P@!( `c XP, @b(@1B" a1BD$0 ,`c X!`XX ,@b P!@PX$,P,X`,@p,P, H, SNm F!H` U `!@B 0,,`@0B 0B@0B P`PX @$0 @ PX H!$ /$ @  0$`! (,@!V Pp( k  &0 0  !`X @! # 8  ! H &$0  H! HX !H # @!  ,(51~F0!(e(@d(d(@c00B`0 ,a @,,@ C! #`XX0,,` 0 B` F,, @Y $#`e 0B 8!8Y$0,BȲ PL!Bd @Y A! C!pB, , 3!-( L!B`e F0BB 8F!8Y$,BH PL!B6? ! ,@e D BB`(( F0B0, @D!@Y H! HY P!@PY XF!`XY `!`Y$,BZPL!B e B Y8B!t, A!   ,`D0B B B`a0B @@X H$H # a " DB@aD$00B &`X $L#a ,` XBaX.0B 0X $`#`a 6 lBal8Ё0B :X,, <t #a >!|Ba|N0B@P0B H,J P!@ #a @P!@Y X!@ #e `X±Bb @!Y A!  D!pB8Y @@!@Y HD! HY $0,BX PL!B e B Y !! ,@e D ‰B@@!B HYb? A!0 0, . BB, @B!@YV? a!@ #@e DP  a!  ,(@ A! ,`) 0 B0 , @!@Y? a!@ #@e DP  a!  ,x@ A! ,`c `X8B! BX !@ #@c @D@X(U@ `@!@B P=3~F X!0,,` p qT $0B @.Ba h!hY$,BذPV!B`a 0B HHP$ P@!( (, sf h!hYp!HXk V!B@X 0,, XX H !$ H!0`B$@$PU `@!@B 011~F8!(e(@d(d(@c(c H bB 1BD0,,`F@0BH0B @p q %vf$,BȪ PN!B@X A!   ,@D D@$Rp (pCB? a!@ #e H P  a!  ,@,, D B 0BD02B  s  H$1B$L `!D X"8! `! H  H,@” $Hq  $@1BL( !PT T C @!`X `X,B ,"RpX (C @!p\ p\, .\q7( @!` `, e 2 X !h h,`d 6`X@0!dB@X6!, !@ # A!@ @,D  H$ Rp @C a &0  @!Y ! # A!  HD9(! ! B,`X? XF!@,,$ Hp q $3BB B.Bf HD! HY$0,BPN!B !  , 0UP `!@B @!@X ! @!@X !  - 2zF`(!(c9$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "u(@c(b01B `X $0@ $H @$< P @`$$ ! , D B YB 1BDB1B @Y !@! ,@0B1B B Y B! @aD0B @p q A! 0 @! A! @By! ! #@eD! 2B 0 ) @B,0\ ! , B@2B B2B D@YD02BB2B @Y@@2B @@X @! ,e 8@!8Y H@! HYh J!Bh J!1B B Y ! B , B !  @!`B`,X ! ,@c D@Y D ~FB1B @Y  &0 0  !`X0@!p B8Y$ ( J!1B B Y !   , D BB@`$ U0 `!@B 093|F8! 0B(g (f(f (e(e H bB B2BD B2B@ ,`DbF@2BH@2B @,b@BL @B aB 2B D@Y $ @cHB2B,@3BB02BF, !@ #g @P  !  ,@ !0 @ F9H! !0 P8! ,, AMH3B$3B " X "!D @bD$0,,b(0AMBP&P,, +!T #XX,, 0`B`.,, 2 X $d#b 8rB @8!@Y$@,Bx PN!Bf @Y ! C!B ,@, 3!#( N!B@b DB` H! Y @R!@YHq$B@PY XH!`XY$,B8PN!B@P ! ,`g F`Y F!0 B  a!@ @,`b !`X H@!$ " @P@Y H! HY P!@PYv? !@ # g BP  !  ,8@@,,`b@BB H1B H HX H!$ $(C P@!( XH! !D D,@B $`b_L$@1B (X (!`T `X@' X* @!p\ h.9H! !` `, C 2@Nh21B 6`X 6!p Сw/ t8 !x x,e >X@<!|BX a!@ # a BPH a!0 aH01B `X !0  0@ )  P7L H!$ $,@b P@PX !D D,@B $`NL$@1B (X (!`T `[/ X*@ @P, DX .!p\ /?#QB\0&B H'~F U$24 Ѐ!h h,`b 6`X !p p,b :X !x x,C @>eG_>1B HR HY PR! @' T , L HR HY `D`Y `X! , b h &0 hZB@n) @0 0, D@Y D!   D!@BHjB 4@X `7!l l,@  &0 0  hB $0 n)L$rB 8pBp* !`X `X,e (X@,!PBxX a!@ # a BP8 a!   ,$0,B8PN!B,( H@B,a @Y @R!@YH$ B@PYX@!!H Xbe N!B@XF !   ,`f F`Y !@ @,HF!BX !@ # g BP  !  ,h@ !0 0,` Fq !@ @,`@ I! #,,@b P@PX P!( K(,,@b $@X %! H BH"01B &0NB @&!@Y$,Bؓ PN!B f B Y !  E!B ,@, 3!( N!Bb H! Y ! # g B Y a!   ,@D D#g @@XH$ B$3B " X `! H  H,@’$!DBH"03B &`X &!L #g (@aPBgP*`3B ,X,p3B .p!\Bg\0A1B d,@b 4jB, ,@, 3!( N!B !  !A!B,  !( N!B? ! ,@b D BB`(( F0B0, HD! HY P!@PY X!`XY `F!`Y h!hY$,B88PN!Bb H Y@H!4, !@ #@g DP  !  ,x@ ! ,g H Y !0 !B   P!@PY6? !@ #@g DP  !  ,@ ! ,. H@B@, HH! HY? !@ #@g DP  !  ,@ ! ,) H@B@, HH! HY? !@ #@g DP  !  ,X@ ! ,f H Y@@!BX !@ #@g DP  !  ,@ ! H@9H! !@ @, ? !@ #@g DP  !  ,(@@$0UP `!@B 010~F8!(f(@f(e(@e(d,,@B1BB0B,@aD0,,` F`sP @,," H`sD ! , D B $Rp (pC:? !@ #@g DP  !  , @ !@ @B4! X8H! T$ i x\H! 8tH! H$ %i XH! P$ )i xH! 8HH! !D D,@f $@X !0L 0L,e (X@"!HB@X(!, !@ #@XX$ "BD,,XX 1I!@  H!BB0,,` `X H$H # a " X |$D#a (@ PBaP*`0B ,X $X# a 2 dB@ad40B 6`X $l#a < xBax>0B @P@Y H$H#`a XV Ba0B @Y ,,@ D #`a F0"B aB@0B H00B`0 ,`@ H!$ #`a !`X P!( # b H" HY ! HB H,HHM$HB@PY?  8LHX! ! ,HH $H@X> N!B@P ! # c B! Y ! #b HH HY !B,HH $B@PY? !   , . BB, HB! HY? !@ #g H P  !  ,(@ !   , ) BB, HB! HYN? !@ #gt$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 F" H P  !  ,x@ !   , e B Y@D!BX ,(@ ! ,c H! Y !B@D D Y@R!H@ ,`, C! ( N!B@P0 ! ,@c D!@Y !@BD @ Y@R!"H@,`, C!( N!B@P ! ,c H! Y@R!"H@ ,OX ! ,c @!Y@R!H@,OX ,@8 HP! ! ,`e F`Y@B!BHX !@ #d @P !  ,x@ ! ,`f F`Y !0 0 , e H HX@B!B@X!, !@ # ! 0\@! !@ @XH9! ! P8B! !0 `F9! !0 p! H!$ 0! P!( ,HH$H@X N!B@P, ! ,f H Y ! ,`e F`Y@@!B@XF!, !@ # ! ,e H Y@@!BXX !@ # !0 8F(! !B,X? X@! !  ,H@%vf$,B~ PN!B@X0UP `!@B `@?#e@c x &<0   8  UXA3B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P ~FDd, X?#Ȍ0#b H0@~Fc @ X?#0 @DD ~F20~FF0~FBH`0 X?#0# c2p 0C 2Ȍ #? AY?# D P1 (t %~F`-( 0 BY  @ 0 0 ,@X X?#e #`) F0 8F8! A &@0  H! Y ! &0 BBL @ ) 2e # ,`X pD!pY x!xY$0,BPZ!B@XXU `X!@B  (`00BL @ # ! ` &0 0  @@X ! $L @ # ! 3~F !(a00B `X @$@ # ^ F!U `@!@B PA0~F X!(d0,,    Bd2B@ ,`@d @2B H HX !0 B0 ,H h!hY$,By PV!B` @@! #,,@e P@PXX!9(x)@qP H" D P$<HP  @!0L 0L,.,*@9Lx)`r T( @P @P<  P7 `!X #e .8_sW `!3B`2!H`fh6 h.yP! x/H! 8.0! ,,8A3Bp:,,C<3Bx> @$2BX 0,e @Z@X p!B,gx^! !H@ H,,@ p"!pY x$!xY$,BPV!B@P !0  f 3BP3B(" $02BH& `!@P P C !T # `!`XB`X,aX.2B 0`kw @!d d,@e4H@8h2Ё0B : tBat< @!| |,>Ђ0B hZ Ba\2B x^k @@!  ,`e  #@a P(B a("l @! H  H,`e &0OX@ L( H#a ,` XBaX.0B 0X @!l l,`Rl00B 4 hBah8 !t pt<0! @!| |,f @P@}#a hZ Ba\ x! `0X! @@!  , $0B " DBaD( 0B $@X !0L L$`0B ,` XBaX.\ @!` `, #d00B 4 hBah8Ё0B :X !x x:0B @PBaX hA! a p\!pYh\ 02B00B`0 ,Ed ^@3B@1B 3BP1B("@A2B (X ! H  H,`d &!`X !PTBPT,h$!LBpY x*!xY$,Bq PV!B`g 3B HHP P@!( P!2B(" 2B $Kc !L  ,(@@$PU `!@B PE1~F X!(d0,,    B dH0B$00B hhY P!(B(,hh $BpY x!xY$,BHPV!B@P !0 0 ,B?  ,@ @A! ,%@@P01B1B Hp$ qL P !( # c "8Gs `!02BH&@!HeP* X"P! h#yH! x"0! `,,,p2BX.,,C02B`2 $A2Bh6 ,c :X !xBx,f>!"Ha|,, p<!pY x>!xY$,BPV!B@P !0  e  3BP2B(" $0A2BH& !@P P C `!T # `!`X a .X .XiW @!` `,02B`2 `!h `ex62B p8pY @!t t,C `:`Y,xY@!( XP!B@! ( XP!B`a `X  !0 80! @@!  ,@ @@X H`!$ $ `!D @a $@X $Hi70 @!0L 0L,&@2B (КP @a *X *!PT PT,e ,X pU, BhYp!,Bj PXP!B @!0 0!0B L$ @$PU `!@B  ) 1~F`(! 2B(c (c(b 0He @0BB0B ,@eDL BB`eB`XX ! , @p q  pf q$0@2B00B`0 ,d 8!8Y$,BXpPJ!Bd @ 2B DP$ !0 0 , sf 8!8Y@!H X"Z J!B@X A!  X@!`XX ,,` x D,,  !H#`XX !@P `P&P,, @+!T #c .X,.AL 0` d`22B 4ph cL ,,XX,,XX !| |, (0 BB > | `|,1p|,`9|,A|,8H4 @0pH ! !lB6 2B D ~F@d2B "Dc7 ! H  H,`., &0LBL, 8P!8Y@ $HPJ!1B B Y A &0  @!Y0B!pB8Y@$HPJ! 1B 8D8Y !B,88q$B@Y H@! HY$,BPJ!B@b D@Y DB,,$( J!1B,@0B BB,,@XX !0 @D>3?$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 =" D,, b H HX H!$ AF$,, b " X "!D @SD ,,`b &`X &!0L @BL$@,,¦(P2BP*`,,b .X 0.!p\ ¶\,1B 0X 00!X` # b 2 X Ƞ2!d 828! !h h,`b 6`X0$phB $, J! ,@!1B B Y 0@!0Y 8B!p p, #!( J!Bb @Y0@!, ,,`] @@X U0 `@!@B  % 1~F`(! 3B(d (c(c 0Hf @0BB0B ,@fDL BB`f2B @Y X@`XX80! !   ,@$ Dp q @$ 0 $ HqPJ!,, AC! #@a,D01B `X @ & 0  @!@X0!pB8Y@ $H8PJ!1B @Y a &0  B!Y0@!pB8Y@$HPJ! ,,@D0BB,,D@01B1B @p q0 H!$ $, J H$q7  P!( (, c " X0$p(B $, J!0B B ! & 0 DB2B@0@2B p c4 H !$ $,@(0 P(B H( $  H, `$B`, !$( J!Bd @~F@dD0@2B p c @!` B`, !( J!Bb @B@eD @!0 0 ,`@2B @2B HpH, q  P !( e("$ @! H  H,`d &`X '!0L @–L$@A2B (X )!P #d *X*`,, ,X,p,,¼ .\q7 $2B`2a.Be 84!8Y$,B8fPJ!B,,`AXX2B,@0B`X,,e 8!8Y$( J! 0B @D@X U0 `!@B PQd)bb``!B@fdBP  #P x= #P ` #P x@= # P   #  !Ȁ # eB2B ,@fDL BB`fF@0B H0B2*H @8 !!   0p !! ,B01BF Ȁ!d # a!@ @, Hp s ! @@y! @!@Xr A!# $ M!# I!Ȑ#De@@1B @@X @!~F@e DB1B B Y B! 1C!02BF2B d,b H Y !B,f@! "H ,,  @!Y ! Y$,B8PV!B@P  A!0B0,@f D!@Y pF!pY xD!xY$@,BW PV!B Q! dB02BF 2B D @`` @ ! ` H`@$i P !( (,PA2B "PD@@` $(i7  `!0L 0L,&@0B (X !PT PT,*`A2B ,` XBXX /!@ @,`0 ,p, A H HX @&!@XV V! ,@X !@h #`c 6`a8 !@ HH8@! a! A/"0BB B2B D@YD@2B P)@`d(@1B qW $ P,,) (  )R@C H !$ $,H3B$" A2B $ HB`BfH&@2B (X !PTBPT,E p\pY x*!xY$@,BlPV!B5udx$ BY $,BS PV!B  !0# !@ @,@  P@2B @1B Hp@ s( ! #c @ s7H H !$ $, AH H$qw8 P!( (,@AP P(q( !D D, B" 2B $@X $! H  D$ a`x"0@‡ (SLBcT, !p\ 0.! !` `, 0`q78 !d d, 2dqw( !h h,42B 6`X 6l @`h0~F a B :!pBcx> ! x! p!! , p\`s8 x!! ,Ex x^s7( !! , d b Y b #@d d@Y !0 0,`Ff #Bd ! P8 BE ,c (!0  q8x! !!@ @, H0@2B 0 @b @0 @ d $ P !( @`($ &D0  "! X p"!pY$,BxN PV!B@X ! d  X  1B D@ @  P0B @0B H0@2B 0 @ d H HXH@2B P@PX$, H !D D, !H ,, ! Y!( X@!B!( X@!B !!0 @De D  @ gB@2B P3B @ H`g0B@3B 0B P@PXPA3B(" 0B $@X $! H `fH&@0B(PA2B *@T @fP,pA2B.!3B\00B 2P Р!h #`f63Bl8 @!tBt,g <!X !|B|,f p\!pY xA! PC ! P`! !! b!$ ! & 0  d!@Yd! !0B,,,, ,@ ,`0, c!D( V!Bb ! X (!  #c H Y A! H1B B Y !0 ! 1B H HX PP!( AH(1B " X "!D #@c $ aHB`cH&@1B (X(P1B *P!TBcT,pA1Bp\,b 0Y p.!pYx`!cH 3!( V!Be ! X p!pY$,BH PV!Ba @ @X(Z!@BHf ! `Md)`bP2!(` (g(g (f(f (e(e (d00BF@0B H Y ( &P0  (J!(Y aH!( #g 0Lp q 8!p p, C8 2_20B B Y B!0 0Ž/D@0B H Y (!P P, xJ!H(KPZ!`0B L0B @Y 8@! 'N 0B D@Y D!@ @'FP0B (J(P !0 0 ,$`,B[PZ!B@X ! ,pA\!BE PZ! B b 8B?W  ^)@$S 8N 80# a!0 8Fx! !@ @,e (J(YpH!B #N Z!`0B L0B @P ! ,$ ,BXZPZ!B@X* 8a!p 8N!  $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " 1$Pa7 P8 !@  XpWd (!P P,` 0L`B` @YpJ!BxY @! , 3!̡( Z!B@g D@Y 8!!p p,`f F`Y A!@ @,xN!B  $ , (a!@ #0L! @8 !  Hxp  ! ,@d D@Y 8! ,xD!B $, !0 0,g H Y HPBJ`0B 0L0Y ! ,D@`BBLp0B 8N8YpN! HdPZ! ! 8B! -$Pa7 P8 !0  XpWl !@ @,g (J(YpH!B #* Z!0B @`0B 0L0P 8!p p,8$,BUPZ!B@X !   ,`` F0B` H YpD!BxY H! , 3(!ܟ( Z!Ba@`RH2 @8 8a!p  Hxp H! a!  !   ,`f F`Y A!@ @,`a `XpD!B ! B@Y$, @ P0B J`bH2 @8 8!p  HxpD )$Paw `8 a!   hxp @! a!  !@ @,`f `X H!$ , x!B  P!@Y$, ! ,g (J(Y(J`BLp0B 8N8Y ! , DBpBBN 0B D@YpD! HH_PZ! a!  , `U `!@B  =P0Bf0b J!0#P J?A #P pJ?9 #P J?A #` !J! # /B—~F ,@(DL BB`(~F @Y X@`XX8 $ H(JPL! ,,  AE! #/,@0~F `X @ & 0  @! @X8!B@YH $HxPL!B~F B Y  & 0  D! Y8B!B@YH$HPL!,, @p q J?#   , + B Y8}$B  $, L! ,(@,,@D,, B0~F@~F @@Y PK?#(B(, ."! !H D,@@$(B HY P"!@PY$,BPL!B@P $rf$ ,B8 PL!B@XB K?# 8B(! tf$,B8 PL!B@X* 8!8Y@$H$PL! B~F @D@Y K?#B,/@!0 H`0 ,@@$B HY P!@PY$ ,BPL!B+ @Y K?#B,`X8@!B@YH $"H`, S:- L!p (C !!pBp, !( L!B* @Y!!0L 0 B0 , @D!@Y H! HY P!@PY$,B8PL!B+ @Y8@! HPL! B~F D/B `J?# # )pB8Y@aJ?#~F 3!4( L!B_!!pB8Y @B!@Y$ ,BX6 PL!BXX A! ,B0~F `X @ K?#  ~F H HXP$!$B(" ~F$@!~F H( HYP,,B P*@PY K?#`X `X,K># H# `& cXD ` `B80!LBX5 PL!p*XB  P&!@PY@$ ,BX5 PXD!B !( XD!B+ @Y,, B0B~F @@X,, AOH@!B$~F P@PX ! D  J/H"0~F &`X &@P0  (!X `&!L #. J?#PT PT,$l( L! B~F DB~F @P< J?# ,$ ,BGPL!B@X K?# 8@@! K?#B, $wf@$B HY $ ,BX3 PL!B@X~ K?# 8@8! J?# , B0~F~F H HXH~F$~F " X K?# HBH,`Y8"!B@YH $:H`, S+ L!p (PC$r f$ ,B82 PL!B@X* J?# ,@~FB0~F `X@~F ,, +4 "DBD,@UD ~F $@X!@~F (X K?#PTBT,. ,X K?#p\B\,`, a`2pHB,  PV!@PYXU$XBp,e$$, p (C K?# B , $vf@$B HY $,BX0 PL!B@X J?# ,$ ,B80 PL!BXX qA! # + B Y `K?#0 0 ,@!H4PL! B~F DB~F @P J?# ,$ ,BBPL!B@X^ J?# ,$ @~F (B0~F `X !0 0!`~F ,, + " X "!D D,"(BD A,B`( &!`X 8$!8Y @&!@Y$ ,Bh. PL!B+ @Y8@!4, ,,`] @@X U0 `J!@B b@1$ H. PD! ,`>#e@f x &<0   8  UXE1B@h! ~F00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P ³|FDd, X?#Ȍ0#` H0@~F` @ Y>#0 @DD |F20³|FF0@~FBH`0 !X?#0# `2p 0C 2Ȍ #? $±~F@0~F0~F`0 ,@c D0L 0 B c 20B~FF@*H" @8 Y?#  0p Y?# ,B B~FD @X?# # # MX?#Ȍ# IX?# # DaB ~F@ ,`e !`X ȀY?#d d,,, $0,Bx* PZ!Be@@°~FH~FB ~FD `X?#0 ?#~F ~F H`Ha PY?#( (, b " X $ H@`b H&D gD(P|F *( #f ,X X?#p\ B\,A~F 0`q7 Y?#d d,@b4|F 6l@ Ch2 Y>#p b :t@gp<~F>0|F F@b|\°~Fx^|F `z @a@@, e B Y pH!pYxB!H@X~ Z!BH AX?#0B0,, !( Z!BP` ! PQd)gb`@2!(a (`(` (g(g (f(f (e1B2BH @8 a!  0p  a!  `cF@,,& HP2BJ`2B 0L0Y 8! ,0h\!Hu$lP( V!p (0C ! #" A! ,  R$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 N"B B2BD0B2B F`YF@2BHP,,+4 8NpBp,-J`2B 0L0Y!2B H HX P!( , f " X !0H 0,`a&@0B(P1B*`1B ,X !\0#0 h!hYp!Bf"! B`V0$, ,, @P8 A! ,@d D@Y`B!B #  V!p C ! ,g H Y`Z!вHvdxH!!HuPV! (A!P P,($p,B# PV!BHa !  9 3|F`(! 0B(` (g(g 0Ha @1BB1B ,@aDL BB`a0B @Y X@`XX0 $ H-PJ! ,,  AE! #b,@03B `X @ & 0  @!@X0!pB8Y@ $HPJ!3B B Y A & 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , g B Y0$pB $, J! ,@,,@D,, B03B3B H HX P!( (, c "! X0!p(BH, %P$:H c  J!B2B @ B2B DPx ,,  B RpC !0 P! H!p$ @c PPXH$L@P( J! B @  0 B˘!pLs$ !pP c *XH$L@Pd( J! B @ * ` B˰!pXs, tf$,B PJ!B@X~ q f$ ,B PJ!B@Xn 0!0Y8$HPJ!3B B Y B! f@ B3B D@YD02BH e 3B 88Y !DBD,@b$!0!H@" H,88$DB@Y H$! HY$,BPJ!B@P ! HBx! !p `b 00YH$BL@PRH PJ!`@p C H@!$ #@f P@PX !0LBL,P 8P!8Y@ $:H C% J!p (PC$r f$,Bh PJ!B@X ! , B B3BD0@3B `X1B ,, +4 "DBD,@UD 3B $@X!@2B (X !PTBT,c ,X !p\B\,a0`HBp, HT! HYPU$XBh,e$$, p (C !B, uf8$B@Y $,B PJ!B@XN  ,,@ DP ! ,`d `X0@!p B #V J!B0B B B0B DP ! ,$,Bx*PJ!B@X  !   ,@$ D ~F`@03B `X !0 0!`0B ,, f " X "!D D,"(BD A,B`` &!`X 0$!0Y 8&!8Y$,B PJ!BX! /B8`,T @@!@Y HD! HY$,ByPJ!BXX A! 8@! $02B @!  ,@$,B PJ!BXX qA! #@f D@Y !0 0 ,8!HPJ!B0B BB0B @P !   ,$,B'PJ!B@XR ! ,$ @~F@`D03B `X !0 0!`0B ,, f " X "!D D,"(BD A,B`` &!`X 0$!0Y 8&!8Y$,B PJ!Bg @Y0@!, A!  p C,,+4 @B, BpB,B`_@!`B0Y8U$ B@Y H! HY$ ,BvPJ!BXX A! 8@! ! &0  B! Y0,,XX H !$B$,@d P@PX !DBD,`, 8N8Y @! , H,@,`P `"!`Y$, !   ,d @Y0D!pB # J!B0B B B0B DP ! ,$,B#PJ!B@XV !   ,. @B,@D03B `X0! HxPJ!B0B BB0B @P !   ,$,B"PJ!B@X ,,@,,`] @@X U0 `@!@B  ) 1~F`(! 2B(c (c(b 0He @0BB0B ,@eDL BB`e1B @Y X@`XX0 $ HPJ! ,,  AE! #a,@0@1B `X @ & 0  @!@X0!pB8Y@ $HPJ!1B B Y A & 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , b B Y0$pB $L, J! ,H@,,@ 1BD,,  B Rp C0,,`   P $sf$,B PJ!B@Xb !   ,@d D@Rp (0CqeJ ,,`,, H H HR$(C P!p( p, d "! X ! HB`B H& @X0N!p"H, , C!|( J!B@P $rf$ ,B PJ!B@X A!2B,`@d `X 0B!0Y 8@!8Y@!H@XNC J!B b B Y@A!`B@p,% $;( J! ! ,Y0@!pB8Y@ $"H Cv J!p (C ,,@ D@R( It!  pe q f$,B( PJ!B @ @B!@X !   ,@$ D ~F`d1B H HX H!$ H0! 2B$,,@b $@X $! H  H,$DBH"0A,Bd (!X 0&!0Y 8(!8Y$,B PJ!B XX C!0 0/ D,, F P@W_(pB,B _!`B0Y8U$DB@Y H$! HY$,BjPJ!B b B Y0B!t, ,,`] @@X U0 `@!@B  =P0Bg0b J!0#P J?A #P pJ?9 #P K?A #` !J! # /B—~F ,@(DL BB`(~F @Y X@`XX8 $ HPL! ,,  AE! #/,@0~F `X @ & 0  @! @X8!B@YH $HhPL!•~F B Y a & 0  D! Y8B!B@YH$HPL!,, @p q J?#   , , B Y8$B  $, L! ,x@,,@D,, B0@~F~F H HX P K?#( (, / "!@X8!(B P,@%X$:H c6 L!~F @ ~F DPx $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 ",,  B RpC K?#0 P! HK?#$ @A/ PPXP$LHR$( L! B @  0 B˘!pLs$ K?#P B/ *XP$LHR( L! B @ * ` B˰!pXs, tf$,B PL!B@X q f$ ,B PL!B@X 8!8Y@$H8PL!,,+4 @B, B B~F D@Y8D! HX.  L!B , B Y B! B?# B~FD0@~F `X !0 0!`~F ,,@, P@PX P!( (,P$B(A,B@* $!@X 8"!8Y @$!@Y$,B PL!B + B Y!!0L 0 B0 , @D!@Y H! HY P!@PY$,BPL!B XX )B! R)P J?# ,`- !`X @`K?# B A @  @X8P!*H ,@@, C!,( L!B - B`s aK?# `-  Bp$,@ Ha &0 @ L! B @  BP!p(s `K?#L - (XP$LHR ( L! B @ ( P B˨!pTs @J?#`XB`X,(X.A~F 0X `K?#d d0A~F 6`X$lBp:A~F <X pK?#| C|<B~F @Y !@! # ( BbB@(D@~F H HX@~F P (B`((&0~F`0 , X & H0  $!@X 8!8Y @"!@Y H! HY P$!@PY$,BȜPL!B , B Y B! @-D0~F `X@~F @~F H HX P`K?#(B(,H @R!@YH $"H Cv L!p @C !K?# ,@~FB B~FD0~F `X  q7  H`K?#$B$, $wf@$$B HY $,B PL!B@X !K?# ,$ ,B8-PL!B@!!/B _ 8P!8Y@U$B HY PB!@PY$ ,B\PL!BXX A! 8@! ! &0  B! Y0,,XX H J?#$B$,@. P@PX K?#DBD,@- $!@X 8B!8Y @! , G HR HY P!@PY X!`XY`!DBhY p$!pY $, !K?#   ,. @Y8D!B #* L!B~F B B~F DPL !K?# ,$,B PL!B@XB tf$ ,B PL!B@X2 @!!–~F, -B!0 H`0 ,@p,E H@! HY P!@PY$ ,BYPL!B!bH`(@~F @@X 8B!8Y@J?#B!B HR HY $ ,B PL!B_!!pB8Y @B!@Y$ ,B PL!BXX A! -B0~F `X@$ B ~FP~F H" HY ,,@B P$@PY @K?#0L 0L,K># H" T PWXD T TB8*!(B PL!p*LB  P!@PY@$ ,B PXD!B !}( XD!B, @Y,, B0B@~F @@X H@K?#$ B$@~F P@PX8! HPL! ,,@D|F, @Y @! @?#B~FB0@~F `X !0 0!`~F ,,@, P@PX P!( (,P$B(A,B@* $!@X 8"!8Y @$!@Y$ ,Bh PL!B, @Y8@!, ,,`] @@X U0 `J!@B  % 2~F`(! 2B(c (c(b 0Hd @0BB0B ,@dDL BB`d1B @Y X@`XX0 $ H8PJ! ,,  AE! #a,@0@1B `X @ & 0  @!@X0!pB8Y@ $HjPJ!1B B Y  & 0  D!Y0B!pB8Y@$H(jPJ!,, @p q !   , b B Y0$pB $, J! ,@,, @DRp (PC$sf$ ,Bx PJ!B@X ,,  B`s ,,`XX !0 0 , H  B $0 b " 1B$0,,XXP,, *PW~FT(0OB &Hi7D `,,b.XB\0,,@XX 5!h Ch2,,XX 9!p b :t@`p6,,XX ?!| @b D @|<`B1B 8L8Y0N!, ,,   @B@X& ,,@D0,,  P@P@O(,, @qe @#!D #`XX X@!,  ,  U0 `!@B PA0~F X!(d0,,    Bd2B@ ,`@d @2B H HX !0 B0 ,H h!hY$,B8 PV!B` @@! #,,@e P@PXX!9(x)@qP H" D P$<HPt @!0L 0L,+8*@9Lx)`r T( @P @P<  P7\ `!X #e .`_sW !3B`2!H`fh6 h.y ! x.! $`pa H.1! $taW h.1! $xa 8.! H.y! X/! hl/y! x/! 8.0! ,,>B3B|P,,E``X3BZ Hh/98! $( @!@ #b @!@X !@ # A P!H( #n 8.0! ,, " A3BD$0,,`B&@3BL( $`2BT, , e 2 X !hBh,`g6!!H`l,, p4!pY x6!xY$,BhKPV!B@P !0  f 3BP3B(" $02BH& `!@P P C !T # `!`XB`X,aX.2B 0`kw @!d d,@e4H@8h2Ё0B : tBat< @!| |,>Ђ0B hZ Ba\2B x^k @@!  ,`e  #@a P(B a("l @! H  H,`e &0OX@ L( H#a ,` XBaX.0B 0X @!l l,`Rl00B 4 hBah8 !t pt<0! @!| |,f @P@}#a hZ Ba\ x! `0X! @@!  , $0B " DBaD( 0B $@X !0L L$`0B ,` XBaX.\ @!` `, #d00B 4 hBah8Ё0B :X !x x:0B @PBaX hA! a p\!pYh\ 02B00B`0 ,Ed ^@3B@1B 3BP1B("@A2B (X ! H  H,`d &!`X !PTBPT,h$!LBpY x*!xY$,Bh PV!B`g 3B HHP P@!( P!2B $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 '1"(" 2B $Kch !L  ,(@@$PU `!@B PE1~F X!(d0,,    B dH0B$00B hhY P!(B(,hh $BpY x!xY$,BKPV!B@P !0 0 ,?  ,H@ @A! ,%@@P01B1B Hp$ q P !( # c "`Gs !02BH&@!HeP* X" ! h"y! $Xa 8"! $\a X"! $`a x"! 8"! H#y! Xl#! h#y! x"0! ,, 22Bd4,,`C62Bl8 8h#8! $< ( @a!@ #a @!@X @!@ # A P`!H( #n 8"0!  ,,@$02BH&@,,B(P2BP* $pA2BX. , c 2 X Ѐ!hBh,`f6!!H`l,, p4!pY x6!xY$,B?PV!B@P !0  e  3BP2B(" $0A2BH& !@P P C `!T # `!`X a .X .XiW @!` `,02B`2 `!h `ex62B p8pY @!t t,C `:`Y,xY@!p( XP!B@!p( XP!B`a `X  !0 80! @@!  ,@ @@X H`!$ $ `!D @a $@X $Hi70 @!0L 0L,&@2B (КP @a *X *!PT PT,e ,X pU, BhYp!,B PXP!B @!0 0!0B |$ @$PU `!@B  ) 1~F`(! 2B(c (c(b 0He @0BB0B ,@eDL BB`eB`XX ! , @p q  pf $0@2B00B`0 ,d 8!8Y$,BhPJ!Bd @ 2B DP$ !0 0 , sf 8!8Y@!H Xr7 J!B@X A!  X@!`XX ,,`0x D,,  !H#`XX !@P `P&P,, @+!T #c .X,.L 0` d`22B 4ph cL ,,XX,,XX !| |, ,8 BB > | `|,1p|,`9|,A|,8H4 @0pH ! !lB6 2B D ~F@d2B "Dc7 ! H  H,`+8 &0LBL, 8P!8Y@ $HMPJ!1B B Y ! &0  @!Y0B!pB8Y@$HMPJ! 1B 8D8Y !B,88q$B@Y H@! HY$,B>PJ!B@b D@Y DB,,$o( J!1B,@0B BB,,@XX !0 @D D,, b H HX H!$ AF$,, b " X "!D @SD ,,`b &`X &!0L @BL$@,,¦(P2BP*`,,b .X @.!p\ ¶\,1B 0X @0!X` # b 2 X Ƞ2!d 828! !h h,`b 6`X0$phB $,, J! ,@!1B B Y 0@!0Y 8B!p p, #!4( J!Bb @Y0@!, ,,`] @@X U0 `@!@B  % 0~F`(! 3B(d (c(c 0Hg @0BB0B ,@gDL BB`g2B @Y X@`XX80! !   ,@$ Dp q @$$ 0 $ HPJ!,, AC! #@a,D01B `X @ & 0  @!@X0!pB8Y@ $HHHPJ!1B @Y a &0  B!Y0@!pB8Y@$HGPJ! ,,@D0BB,,D@01B1B @p q0 H!$ $, J H$q7  P!( (, c " X0$p(B $$, J!0B B ,,@ Dp q !!0@2B2B`B0Y8!!2B 3!$, XB!  & 0 D2B@02B p c4 @`!  , ,8 H$B @$  @, ` B`, !|i( J!Be @~F@eD02B p c @!` B`, !( J!Bb @"B@fD !0 0 ,`2B 2B HpH, q  P`!( f("$ ! H  H,`e &`X '!0L @–L$@2B (X )!P #d *X*`,, ,X,p,,¼ .\q7 $A2B`2a.Bd 84!8Y$,BPJ!B,,`AXXB2B,@0B`X,,d 8!8Y$$g( J! 0B @D@X U0 `!@B % 3~F@ !(b(@a01B `X a! , aB! HB ,0@!pB8Y @!@Y$( H!p (0C @!@X Q! , @B@XU `!@B PA3~F X!,Bh,@!L, XP!00B ,Bh,5@!,, XP!01B ,B b H! HX P!(B B P(" @PX `Z!`Yh$$BpY x!xY$,B)PV!B`b !`X @!  , a H HX `!`Yh!$B 3ʛ V! ,Hb ! !1~F !(d01B1B@0@2B ((Y @! B ,d@!0 H`0 ,((Y$` B0Y 8!8Y$,Bx0PF!B@P  $2B 01B`0 ,@Ad  !PD P,@c $!@X !0LBB L( `X J!PJH`,p, C!ė( F!B@P  $1B 01B`0 ,@c ! !2B $@X !0L 0L,@,0&!HH PF!0B,`e2B @@X,, O HH # e " X$0DBH&@2B (XP,,B*@!PBT(`2B ,X ,!X #e .pa\Be\02B 2 X22B 4!hB`eh60Bp,Y @ &x0  <!X 8! Y (:!(Y 0!0Y 8<!8Y$,BhbPF!B e !  =P0Bf0b J!0#P `J?A #P pJ?9 #P J?A #` !J! # /B—~F ,@(DL BB`(”~F @Y X@`XX8 $ HHPL! ,,  AE! #/,@0@~F `X @ & 0  @! @X8!B@YH $H9PL!~F B Y$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " a & 0  D! Y8B!B@YH$H89PL!,, @p q J?#   , * B Y8$B  $ , L! ,(@,,@D,, B0~F~F @@Y PK?#(B(, /"! !H D,@@$(B HY P"!@PY$,B)PL!B@P $rf$ ,BX PL!B@X K?# 0B! K?# `@/  Bp$,@ H &0 >1 L! B @  BP!p(s K?#L B/ (XP$BLHRTb( L! B @ ( P B˨!pTs 8!8Y@$HPL! ~F @D@Y K?#B,.@!0 H`0 ,@@$B HY P!@PY$ ,Bh'PL!B@PT K?# D. BYP$LHRa( L! B @ B BH!p$s$ PK?#( `B. &XP$BLHRa( L! B @ & @ Bˠ!pPs, tf$ ,B PL!B@X2 J?# , / B! Y!pBH, 5P$ B`XY$t( L!p (C a!pBp, !4a( L!B* @Ya!0L 0 B0 , @D!@Y H! HY P!@PY$,B8ZPL!BXX !@! b)P  ,,@d D@$R@C J?#0 0 ,? J?# ,$( L!B~F @ /B  @J?# # (pB8Y@AJ?#B~F 3!l`( L!B _a!pB8Y @D!@Y$,B PL!B XX C! @+D0~F `X @ K?#  ~F H HXP $!$B(" ~F$@~F H( HYP,,B P*@PY J?#`X `X,K># H# `& cXD ` `B80!LBȿ PL!p*XB  P&!@PY@$,Bȿ PX@!B !_( X@!B + B Y ,,@D0B~F @@X,, AOH@!B$~F P@PX ! D  J/H"0~F &`X &@P0  (!X `&!L #. J?#PT PT,$( L!~F @~F BP< J?#   ,$,BPL!B@X K?# 8B@! K?# B , wf@$B HY $,BȽ PL!B@X K?# 8B8! J?#   ,@D0~F~F H HXH@~F$~F " X K?# HBH,`Z8"!B@YH $"H`, Sr  L!p (PCq f$,B PL!B@X: J?# , B •~FD0~F `X~F ,, +4 "DBD,@UD ~F $@X!@~F (X K?#PTBT,. ,X K?#p\B\,`, a`2pHB,  PV!@PYXU$XBp,e$$|, L!p (C K?#B, $vf@$B HY $,BȺ PL!B@X J?#   ,$,B PL!B XX qC! #@+ D@Y K?#0 0 ,@!HHPL!~F @~F BP J?#   ,$,BPL!B@Xn J?# , $  B~F@(D0~F `X !0 0! ~F ,, + " X "!D D,"*BD ,B`( &!`X 8$!8Y @&!@Y$,Bظ PL!B * B Y8B!, ,,`] @@X $tf$D\( L! ,  U0 `J!@B PAd)cb`@2!(d (c(c (b,, 21Bd@1B B Y B! @aD02B Fp ql `!d d,22B @pȀ q  ! ,@d D@Y`B!B # V!p ( C !0 0,`$ F0~Fe@1B B Y B! 1C! 2BD02B`0 , c H HX P !(B(, d"! !H D,,H p!pY x"!xY$,BhPV!B@P @8 !!0  HxpL ! ,@d D@Y`B!B # V!B2B @0B2B FP ! ,$ ,B8PV!B@ ! ,`. F0B0,@1B B Y`B! HPV! B2B DB2B @P !0 0,$,BHPV!B@  $`@a @8 !  Hxp ! ,`b `X`Z! H $,B PV!BPU `@!@B PQd)gb`@2!(a (`(` (g(g (f(f (e1B2BH @8 a!  0p  a!  `cF@,,& HP2BJ`2B 0L0Y 8! ,0h\!HE$( V!p (0C ! #" A! , B B2BD0B2B F`YF@2BHP,,+4 8NpBp,-J`2B 0L0Y!2B H HX P!( , f " X !0H 0,`a&@0B(P1B*`1B ,X !\0#0 h!hYp!BV"! B`f0$, V!,, @P ! ,hhU$HXX A!   ,$0,BȮ PV!BHa ! PQd)fb`@2!(b (a(a (`(` (g(g (fA2B2b2B@BH@dDB2B  ! #cHPBH* @8 0!`  0p  8!p c2,,@ 3BD3B B Y !! ,h\!"H$<( V!p (@Cr f$@,B PV!B(@ (!P P,*(J`2BLp2B 8N8Y8N2B@ ,,`+4 F0B0,@D3B B Y!2B @@X H !$ ,@g P@PX !0D 0,@a$ 2B@ H,@X `!L0#b(P1B *X !X0# h!hYp!BF! B`v0$ĩ, V!@3B H Y`H! HX* V!BPU `!@B 851~F@!(d(@d(c(@c(b(@b0B@0BB 1B D@Y D! #`XX !@ @,dP:x)t (J  "<Pd !! ,@b D@Y !0 0,c (JP"B +Ȅ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 B"PD!B(, C !( P!B@PT ,, b B Y@! :x) t D   < !P\ (!!P P,`b `X H`!$B$, (P!B`XY `!`Y$@,BPP!B@P  %rf$ ,Bا PP!B@X !0 0,`D Fp q, ! ,c @Y (!P P,b H YHB!B`(`H!!H8PP! 0B DT a!0 8F@! ! ,a @Y HB! , # P!P2B J@2B H P  A!  ,@ !0 0,` F`Y F!0 c Bq7  @!@XZ ! ,$ @~F`e2B H HX H!$ H0!2B$2B D,@b $@X !0L 0L,c (@!PB ,@X&!PB`Y$P,BXPP!B@X ,a H A!  , 8U` `@!@B  9 3|F`(! 0B(g (g(f 0Ha @1BB1B ,@aDL BB`a3B @Y X@`XX0 $ HxPJ! ,,  AE! #b,@0@3B `X @ & 0  @!@X0!pB8Y@ $HPJ!3B B Y  & 0  D!Y0B!pB8Y@$HhPJ!,, @p q !   , f B Y0$pB $, J! ,x@,,@D,, B03B3B H HX P!( (, b "! X0!p(BH, 5P$bHHX !!@ #@d DPx ,,  B RpC !0 P! H!p$ @b PPXH$L@P4P( J! B @  0 B˘!pLs$ !pP b *XH$BL@P P( J! B @ * ` B˰!pXs, $tf$,B PJ!B@X $r f$ ,B؟ PJ!B@X 0!0Y8$H|PJ!3B B Y B! e@ 2B D@YD01BH e 3B 88Y !DBD,@c$!0!H@" H,88$DB@Y H$! HY$,BPJ!B@P ! HBx! !p `c 00YH$L@PRHH PJ!`@p C H@!$ #@f P@PX !0LBL,P 8P!8Y@ $"H C J!p (PCq f$,B PJ!B@XR ! , B 2BD02B `X2B ,, +4 "DBD,@UD 3B $@X!@2B (X !PTBT,c ,X !p\B\,a0`HBp, HT! HYPU$XBh,e$$, J!p (C !B, uf8$B@Y $,B PJ!B@X  ,,@ DP !p p,88U$HX,,   BP !   ,c @Y0D!pB # J!0B B 0B DP ! ,$,BPJ!B@Xv !   ,@$ D ~F`@03B `X !0 0! 0B ,, f " X "!D D,"*BD ,B`` &!`X 0$!0Y 8&!8Y$,Bx PJ!BY! /B8`,d @@!@Y HD! HY$,BxPJ!BXX A! 8@! $02B @!  ,@$,BȘ PJ!BXX qA! #@f D@Y !0 0 ,8!HhPJ!0B B0B @P !   ,$,BPJ!B@X ! ,$ @~F@`D03B `X !0 0! 0B ,, f " X "!D D,"*BD ,B`` &!`X 0$!0Y 8&!8Y$,B PJ!Bf @Y0@!, A!  p pC,,+4 @B, Bp,B`_@!`B0Y8Y$ B@Y H! HY$ ,B(PJ!BY!!b,B8`,t @@!@Y HB! HY$ ,BPJ!BXX A! 8@!  &0  B! Y0,,XX H!$B$,@c P@PX !DBD,`, 8N8Y @! , H,@,`P `"!`Y$t, J! ,,@ Dp qH  &0  @!Y,,`XX @! B , c H HX P!(B(,`, 8N8Y @1! , @,@,`H `!`Y$ԫ, J! !   ,c @Y0D!pB # J!0B B 0B DP ! ,$,BxPJ!B@XV !   ,. @B,@D03B `X0! HH|PJ!0B B0B @P !   ,$,BxPJ!B@X ,,@,,`] @@X U0 `@!@B  3~FP x@= #P   #`` `X ` s, !! , ` B Y B! ,` B 0 ` 0BP@0B @@X !! , ` B Y B~F  8 ! @!0 0 , ` HH #a @Y !! , DB"B@@0B @@X P !( (,@APP00B 0P @A@ @0B H HX !! ,@0B B @ HH@ P@!( (,B@X`@!@B `M1~F`h! 2B(c (c(b 0He @0BB0B ,@eDL BB`e1B @Y X@`XXp $ HPZ! ,,  AE! #a,@0@1B `X @ & 0  @!@Xp!BxY $HPZ!1B B Y ! & 0  D!YpB!BxY$HPZ!,, @p q !   , b B Yp$B $|, Z! ,X@,,@ 1BD,,  B Rp C0,,`   P %sf$,BX PZ!B@Xf  ,,@ D`s ! , d B R(0CqeB 0,, ,,@P P@PR(( C !D ,@d $!@X !0LBB L( `Xp^!:H, , C!s( Z!B@P %rf$ ,Bȉ PZ!B@X ! 8B(! 3$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 N"%tf$,B PZ!B@X !2B ,,,Fd `Y $,BH PZ!B@Z pD!pY$,BH PZ!B[ p@!pY$ ,BH PZ!B c xBxY !B,`d! H`0@0 ,xx$BY ! Y$ ,BPZ!B@P ! HBx! ! `dx 2B ppY$L` SHX PZ!`@p Cr P!02B`0L,P,,Fd `Y $ ,B PZ!B XX B! XX @! ,  &0 ! Z! B @ @ BH!p$s( ,,@Rx0,,`š &X$CL`C( Z! B @ & @ Bˠ!pPs P,,x*`,,B ,X$L`C( Z! B @ , p B˸!p\s ,,x0,, C 2X$CL`\C( Z! B @ 2  B!phs ؀!l l,Zp6!BxY $#H CR Z!p (PCq f$ ,B( PZ!B@X ! , $  B~Fd@01B `X !0 0!`2B @2B@P(, d "! X ! HB`B H& @X p^!pYxU$DBY $! Y$ ,BPZ!Ba @0B BP  !0 @y(! H$2B$2B H$, Bd$"!02B`0L,,,Fd `Y $ ,B8 PZ!BXX,,  BB@0,,XX @! ` ,, K Hp$ q P!( (,Zp!BxY $HPZ!0,,` p q @!  ,Zp!BxY $;H C Z!  B@ !0 B0 , [ p!pY x!xY?  ( C! !DBD,@Z p"!pY x$!xY$,BxPZ!B`a 0B HHP P!( (, d "!Xp!BxY $;H C  Z!p K @$BB!@!C H! , %J HR~F`d1B H HX H!$ H0!`2B$,,@b $@X $! H  H,$FBH"0,Bd (!X p&!pY x(!xY$,B8 PZ!B`XX !0  80! xa!/B _ p^!pYxY$ BY ! Y$,BPZ!B`a  H !$B$,@_ p!pY x!xY?  C !DBD,@Z p"!pY x$!xY$,B(PZ!B`a 0B HHP H! H?#C? ,,@P P@PR((` SY!  qe %r f$,B~ PZ!B @ @"!@X^ ,,`N H O_$,,@V $`_L$,B_!BpYxY$PBY *! Y$,BXPZ!BXX A!   ‹/B,BXH1!BpYx]$BY R! Y$,BPZ!Bb @Yp@!, ,,`] @@X`U `@!@B  =P0Bg0b J!0#P J?A #P pJ?9 #P K?A #` !J! # /B—~F ,@(DL BB`(~F @Y X@`XX8 $ HvPL! ,,  AE! #/,@0~F `X @ & 0  @! @X8!B@YH $HHPL!•~F B Y A & 0  D! Y8B!B@YH$HPL!,, @p q J?#   , , B Y8$B  $dr, L! ,@,,@D,, B0@~F~F H HX P K?#( (, / "!@X8!(B P,@5X$bHX K?#@ #@. DPx ,,  B RpC K?#0 P! HK?#$ @A/ PPXP$LHRd<( L! B @  0 B˘!pLs$ K?#P B/ *XP$BLHR<<( L! B @ * ` B˰!pXs, $tf$,BHx PL!B@X $r f$ ,B8x PL!B@X 8!8Y@$H8PPL!,,+4 @B, B B~F D@Y8D! HXn L!B , B Y B! B?# B~FD0@~F `X !0 0!`~F ,,@, P@PX P!( (,P&B(,B@* $!@X 8"!8Y @$!@Y$,Bv PL!B + B Ya!0L 0 B0 , @D!@Y H! HY P!@PY$,BPL!B XX !B! b)P  ,,@d D@$R@C J?#0 0 ,? ,, @P J?# ,@- D!@Y `K?#0 BA   `X8P!BH ,@, C!dg( L!B - B`sP aK?# `-  Bp$,@ H &0  L! B @  BP!p(s, `K?#L - (XP$BLHR:( L! B @ ( P B˨!pTs  @J?#`XB`X,(X.A~F 0X `K?#d d0A~F 6`X$lBp:A~F <X pK?#| C|<B~F @Y !@! # ( BbB@(D@~F H HX@~F P (B`((&0~F`0 , Y & H0  $!@X 8!8Y @"!@Y H! HY P$!@PY$,B8PL!B , B Y B! @-D0~F `X@~F @~F H HX P`K?#(B(,H @R!@YH $:H C L!p @C !K?# ,@~FB B~FD0~F `X  q7  H`K?#$B$, wf@$$B HY $,Bp PL!B@Xf !K?# ,$ ,BPL!B@a!/B _ 8P!8Y@Y$B HY PB!@PY$ ,BXPL!BY!!b,B@p,u H@! HY PB!@PY$ ,BPL!BXX A! 8@!  &0  B! Y0,,XX H J?#$B$,@. P@PX K?#DBD,@- $!@X 8B!8Y @! , G HR HY P!@PY X!`XY`!DBhY p$!pY $, L! ,,@ Dp qP  &0  @!Y,,`XX @ J?# B , . H HX PK?#(B(, - "! X 8@!8Y @!B! ,  HR HY P!@PY X!`XY`!(BhY p"!pY $L, L! !K?#   ,. @Y8D!B # L!B~F B B~F DPL !K?# ,$,BhlPL!B@XB $tf$ ,Bk PL!B@X$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 U"2 @a!–~F, -B!0 H`0 ,@p,u H@! HY P!@PY$ ,BPL!B!bH`(@~F @@X 8B!8Y@J?#B!B HR HY $ ,Bj PL!B_a!pB8Y @B!@Y$ ,Bj PL!BXX A! -B0~F `X@ $ B ~FP~F H" HY ,,@B P$@PY @K?#0L 0L,K># H" T PWXD T TB8*!(Bj PL!p*LB  P!@PY@$ ,Bj PXD!B !5( XD!B, @Y,, B0B@~F @@X H@K?#$ B$@~F P@PX8! HHvPL! ,,@D|F, @Y @! @?#B~FB0@~F `X !0 0!`~F ,,@, P@PX P!( (,P&B(,B@* $!@X 8"!8Y @$!@Y$ ,Bh PL!B, @Y8@!, ,,`] @@X U0 `J!@B  % 2~F`(! 2B(c (c(b 0Hd @0BB0B ,@dDL BB`d1B @Y X@`XX0 $ H_PJ! ,,  AE! #a,@0@1B `X @` & 0  @!@X0!pB8Y@ $H(PJ!1B B Y  & 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , b B Y0$pB $f, J! ,@,, @DRp (PC$sf$ ,Be PJ!B@X ,,  B`s ,,`XX !0 0 , H  B $0 b " 1B$0,,XXP,, *PW~FT(0OB &Hi7D `,,b.XB\0,,@XX 5!h Ch2,,XX 9!p b :t@`p6,,XX ?!| @b D @|<`B1B 8L8Y0N!, ,,   @B@X& ,,@D0,,  P@P@O(,, @pe @#!D #`XX X@!,  ,  U0 `!@B P=2~F X! 2B(c (c(b 0Hd @0BB0B ,@dDL BB`d1B @Y X@`XX` $ HxZPV! ,,  AE! #a,@0@1B `X @ & 0  @!@X`!BhYp $HPV!1B B Y  & 0  D!Y`B!BhYp$HhPV!,, @p q !   , b B Y`$B $$d, V! ,X@,, @dRp (PC%sf$ ,Bh` PV!B@Xz A!/B,,X C,,  "Dqw @!0-B,, #! H!B@XU `!@B  - 0bF`(! 0B(b (a(a 0H`< @0BB0B ,@`<DL BB``<1B @Y X@`XX0 $ HhRPJ! ,,  AE! #a,@00B `X @ & 0  @!@X0!pB8Y@ $HPJ!0B B Y ! & 0  D!Y0B!pB8Y@$HXPJ!/B`, !,( J!B a B Y!0@L 0 B0 , 8@!8Y @!@Y H! HY$ ,BPJ!B XX )B! b)P8 A!`B`, !4,( J!B a B YA!0 L 0 B0 , 8@!8Y @!@Y H! HY$ ,BPJ!B !B,b@0@1B `X,,G @@ #@b P@PX $ (BD$0A1B &`X@,,B(0!LBP&PA1B *X *!T #b ,`aXBbX.A1B 0X0A1B 2!dB@bd4`2B@! ,BV PXD!BD ! # !0 8 @1 `t2B H0 ,`0 ,@c 1B " X ! H `" PH1 (t$@ L (@PB@X P$ H "H*`1B ,X $X# c 2 X Р!h ` hh1 4t03Bh,@h, Ch2Ё1B :X !x x:A1B >~Fb|LpB1B 8N`8a @! ,@` PT!@PY ! B ,H 8T!8Y @D!@Y!, X@!B1B B B1B DP  !  ,@ H!`$B`, !)( J!B dB! H ,`_ 0B!0Y 8!8Y @!@Y $,BPJ!B@]!`B0Y 8B!8Y @!@Y $,BPJ!B@` D!@Y ! #`b `X,,G @@ #@b P@PX $ (BD$0A1B &`X@,,B(0!LBP&PA1B *X *!T #b ,`aXBbX.A1B 0X0A1B 2!dB@bd4`3B@!,BQ PX@!Bg @!Y ! #@*@ D ~FD01B1B @#~F b @1B P`Pa !D @ 8D1 `t03B`D, 2D,cD(P1B *X !`X B PX1 (t$ L 0`BX `, `X X*1B 4@X ؠ!l # hl1 4t0H m1 Bt <lB*@ <xB`X x6 l #l>`1B 0L0Y 8!p D0L1B@P1B HR HY HRB@@cT1B @Y @@c ! ,`cBB B !  E?#@1B@1B HHawP P!( @g($00B&2B"@!2B @(@Y !`\ `,p, ,Xr X@!B!&( X@!B cB 3B@  $0 @0 ,0 @ & 0  @!@X 0!0Y$,BxM PJ!B@X  ,,@ Dp q| !B,`d2B H HX P$P$#@den$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 ="0 $@Xp$@HBL(P2B *XP!P!TBX*p2B .X .!\ #d 0a`B d`22B 4@X42B 6!lBdl8A.Bb <!X !| #`,p,d!, X@! 1B D1B BP  !  ,@,, AL H$q7  P!A2B" 2B$`(B0Y8!!2B 3!4( J!B@XX E! #8!B1B ,`b! H`0@0 ,8`, @B!@Y H! HY$,BxPJ!B@g D!@Y !B, td8 $B@Y HB! HY$,BI PJ!B@XX$ bBD00B`0 ,g@!`HH ,`,@p,hX a!@ # XX C! 8B@! !0@2B2B`B0Y8!!2B 3!$( J!B XX C! # a!  p ( C !0 Bp ,b @!@X H!$B@A H$  HX 0N!0Y8$ B@Y H! HY$,B8PJ!B@P ! HB1 ! 9$0@1B0@ L 0 B b ,,  P(" (B@b $!@X !0LB0L,Y 0$!0Y 8&!8Y @(!@Y $,B(x PJ!B@P a! B ,`c1B H HX P@P$#@c $@X$@HBL(P1B *X @!`X BX*p1B .X .!\ #c 0a`B c`21B 4@X41B 6!lBcl82Bt,_ 0:!0Y 8<!8Y @!@Y $,BPJ!B@` D!@Y ! #c @@X,, O HH # c " X $0DBH&@1B (XP,,B*@!PBT(`1B ,X ,!X #c .pa\Bc\01B 2 X21B 4!hB`ch63Bp,Ytd8 $pB@Y H:! HY$,BC PJ!B@XX$ bB D0B@ , gH!`H P$,@`,Hp,XX a!@ #@XX E!  8D@! !@2B2B` B0Y8!!2B 3!( J!B@XX E! # `!0 p C @`!p p, b H! HX P!(B B P(" @PX0N!p:HH, P, C!L( J!B@e D!@Y ! #c @@X H!$ $1B " X$0DBH&@1B (X !PT BT(`1B ,X ,!X #c .pa\Bc\01B 2 X @d#c 8X$pBt<1B >X @! C>1B B Y !B! #c 0L`bBcN1B @P@YP1B HR"B@cT0@.B@e D!@Y @ ! #`,p,d!<, X@! !B@$ D  Y !0 8 @1 `t 0 @0!3B H P$H(@$,0H &D0  "! X 0"!0Y$,B? PJ!B@X ! B cB0`H 81 `t `X H@!$1B" aH PD1 (t$03B`D, 2 $D# g"!`1B,paH hX1 4t 0XD, a.B B`"0B 2P !hBh,`ch6 !pBc:aH u1 Bt <atBt,$pB|@`1B0LpbH @:1  Ht 0`bBg@P!`,2 H! L`3B0 @! 0!p 1 PNt @` B ,aB !  A@01B`H H J1 Tt3B@P0 ,`0 ,@c $X !01B &`X @!@P @P,X`,@(!, a!@ # a @B@X U0 `!@B 3~FP x@= #P   #P x= #`a `X !! ,D@B0B B Y !   BHa ! ! 1~F@ ! 3B(c (cB3B@B L @B fB0@1B ! , bB0 H 81 `t `X  0 8H! ! ,b@0 H P1 (t $`X  0 0 ,X ! #c @@X H!$ D h$1 4t H0 $B$,H@0B B aH`0@0 , Da B1B H HX A!B,d @!@X(!`B0Y 8!8Y $( H!1B B1B@02B2B HHP P`!( (,`d XX( # b "DB@bD$$ @!L  ,(@@$U `!@B %2|F !(d01B1B@0@1B1B@00B0B@0@0B0B@H`g  L @ `.@  #`.@ 0 B   `X &0  @ L @ `f 0 L 0 B  @ `X @! #f @!Y  &0 0  !`X @! Y (!(Y$( F!1B,`d@2B @@X H $H #`d X`XX$ ,BD$0A2B &`X &@P0  (!X &!L #d *X *!T #d ,`aXBdX.A2B 0X $`#`d 6`X $lBp:A2B <X &|0  >!X <!x #d H Y !H! #d (JPbBdLpB2B 8N8YNB2B @P"B`d0B,d@2B H HX P $P$# d " X$0DBH&@A2B (X &PT0  *!X (!P #d ,X ,!X #d .pa\Bd\0A2B 2 X $d#d 8X $pBt<A2B >X ! &@0  H! Y >! } #d (J(Y (!J! #d 0L`bBdN0@2B `X @A &0  @P@ #d @YH$B$@2B X`XX @ &D0 "! H D,`AXD0A2B &`X &!L #d (@aPBdP*`A2B ,X,pA2B .p!\Bd\01B 2pd q @$d ` &h0 4"L 6l #@)D 4hB h8 @X &t0 h:"L <xBx,c >!X &@0  H!` Y (!PB,@,P,`,@p, C  F!p (C  &0 @0"L  #`,D 0 B    `X P &(0  "L X,B,, c "! X & H0  $!@X !0LB0L,f (!X ! Y ("!(Y 0$!0Y 8&!8Y @(!@Y$( F!1B @01B P H!$ $@C P!(  `rdP(! !D DC & H0 $0"L &L #@,D $ HB H( @X &PT0 H*`"L ,`XB`X,c .!X &`0  0!X !dB~$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 l"Ad,@,P,`,p, C  F!0B @00B P H`!$  @Ard@$x! X &,0  X!`XX @!DBD,@.@ $ HB H,`g &!`X ! Y ("!(Y 0$!0Y 8&!8Y$|( F!0B @00B Pl H!$  @Ard@$8! X &,0  X!`XXqg($`,B0Y $4( F! a &0 @0"L  #`)D 0 B   `X H &$0  "L P(B(,`c X!`XX &D0  "! X ! Y (!(Y 0"!0Y $( F!$ $0"L  # @` & 0 @"L H@$ #-D @ B@ @  @X X &,0  "L "DBD,@c $!@X &0L0  &!`X !@PB@P,@,P,`,p, C  F!B1B @0@1B P H &$0  P@W_( X &,0 X"L "XD #`.D X,B@ X,$ `XX &0L0 ,&@"L (@PB@P,c *!X &`X0  ,!X !p\Bp\,@,P,`,p, C  F!1B @01B P H &$0  P@W_( X &,0 X"L "XD #`/D X,B@ X,$ `XX &0L0 ,&@"L (@PB@P,c *!X &`X0  ,!X !p\Bp\,@,P,`,p, CZ  F!0B @00B P H &$0  P@PO(D X &,0 X"L "XD #`/D X,B@ X,$ `XX &0L0 ,&@"L (@PB@P,c *!X &`X0  ,!X !p\Bp\,@,P,`,p, C F!B0B @0@0B P H &$0  P@PO(t X!,  rdH,"8@! & H0 $0"L &L #@,D $ HB H( @X &PT0 H* !`X  rdXX.@! &`0 0"L 2d #.D 0`B@ `4 X ؠ &l0 `64 !p  Árdhp:8@! &x0 <"L >| #/D <xB xH X ( &P0 xJ 0!`  DrdxN@! @a &0 @P"L @@! #-D @ B @ @ @X  &0 0   H@!$  @Ard8$@! X &,0 X"L "XD #`/D X,B` X,& `XX &@P0 ,(D ` & H0 $P"L *T #@)D $ HB H, @X &p\0 H. Ȁ &d0  2! X !hBh,.@ 0`B`,@,P,`, 3 F!T ! p C !0  `C @! B ,@@,  F! A &0 @0$L 0   p qT @`! B ,@@,  F!2B@0$L 0 0 @@! @p! )H H$ @ x ! P`!( `)H X,  P,% 1xrp`p C we$( F!$$( @$U `!@B b`+H 0 B0 ,+H @ B ,@ ,`@0, #  &0 0  !`X @ & 0  @!@X !@Y !`Y$ ( U  ! `?#e@d x &<0   8  UXE0B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0@~Fd, X?#Ȁ0# cB0@~F c 2 X?#0 `@ A~F 2@~F@±~F@0@H` X?#d0# cHp! 0C HH #? &0  @dRp (C  &0 0  ``Rp (C,-H @ B ,,@, #ƚ Z! ,8@ AY?# , BBb@0~F`0 , a H! HX p!pY x!xY$ ( Z!~F @~F BP  $ ( Z!~F @Ysf x!xY@!HX PZ! aX?# , ԲnB0~F 0 Ba ~F H HX P@Y?#( (, PP$ #`a X ,B a," ~F $@X `X?#0L L$@~F(P~F *X *@T@aP,p~F .X @Y?#` `, 0\ # a 2!dB@ad4~F 6`XӲnp6~F :!tBat<HXU `X!@B `@?#e@c x &<0   8  UXM3B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0@~Fd, X?#Ȁ0# cB0@~F c 2 X?#0 `@ A~F 2@~F@±~F@0@H` X?#d0# cHp! 0C HH #? ,`*L 0 B0 ,,, #f Z!~F B~F @P  X?#  ,@ H@Y?#$ $,x~F P@PX Yp`!, Z!HXU `X!@B XId)dbH2!(c (b(b H @8 !  0p @! !  A!@ # c 2 X2B1B @Y @ɀ@02! $ 0BD &0  @dR`(C &d0  2 cR`dC ! ,@b D@YhB!B # X!0B @$ !0 0 ,2B 1B P@PX P(B`c(2B "G~F@dD$02B&@A2BL(PA2B *X*`A2B ,`!XBdX.Ӳn8T0! $L !d d,2A2B 4!hB`dh61B 8X 8pq!( C$ !t c <X <x@dt>B2B hZhYhZB2B p\"Bd^1B `Y `hq $< !! ,b@2B @ B`d  Ѳn8 F(  !`(C$( X!0&L 0 B0 ,,  X! ! d xxYh^!, X!01B`0 ,d @!@X h!hY p!pY$( X!00B  H!$ $,@a PP$ #`a @@XXU `!@B 3~F !(ap, qPC$pf$,Bh PF!B@X* |;$ NOTES026.A3b -[NOTES.TEMPKIT]NOTES$SHPPI3T:^,-QL r~N;1V,GkaNJG_[\i7l:[9֣![H`j끙B+pq^y, aj8Tj+hj]0%;JȰ jt^op9T?{o05%J#E9U%dZS u:5ȝ'(R@L;%\*k kk_t/9 }/qS&P0* 奲5`Kul kë $zZ_gg"gX_8>NW3lVla?%Ķqʉ܇ySH`=~v(g56Bq5 4}FtDBt&7s+W[a gn<Ĥ"]0G狤M,se<:18K~F'~;y4y@@QPΎ;?Gh;t{2H% h?|[i̒+ oRڣ2&t eCF7J *3XB#[rcy])'W3꛿Qcw Tu78OL@&f>:5%!1=Jq4#cSǼQ3՝ ҧtsG2s9Q,. A,hN}M;&eb;KN?fÂ;KGB):T<&w -oˆXk9ߝ0$+P_5Dj/-Ss&)١R>l,}b5wc_-~Yы3ح oXzC ()mHs2)W(O(8%ϗgoۊS_%S6ZM$wM&|#,8׉YpR ;TPG0=[W% Yi1.MUl@BFĩDfW8x#9w4Mi^D#tsDgB8}jǏ$)l YPJ2zb)Hc ]42V}q_>2|*7kܑ.&gT-!l5@F477__ rW1Kz7yNKzP&i BF2oqdi6pAsAy5X?0+RlHW%Pv&{)`b}*"lR0;䕢*fW1am(8F5%+;c^mH+ѓx,cz\qʓ{`; 2P**%Ueپ U{,*fK!i~)IMa*K*ͥ]RYQ s7+G>볼w祄* И|!cR/<z$ {@w74G2d}#>UB̖a.rfx)x_E(d/MB<+Ԝdl\]8>B 0\TN+O N!p2n @bc,rǹ3jK#JcpR1#M 6!{awFD2f<#eZR0GRRhEv 67+ XK=H5΋r\ ?JV=Qq1A&,',tV"] jA^OOFHݽѾ0L-yˮ"Y^`JhGf}B2'A.}Z j*2sCS|cƒ@!kj`㸥<rib(Ǵ2!. AS$~\šzGf>$lyп9s0q"klr.#$aH?Dj#n ;nSyC|VAP51S`BC|!/ETE8C$9:V\D4SGgL2a#(<C;ZjX) Eb}k R JHPZ8AfyM !!K`BqP,-)=8hV}To־3#Bu"4 QYZlpXGX}62+e)aLi/0= fP ˆ#(ʽx iڈoNl CT7xr]I 5wK/y\%(i bKc[ܽ@d:a͞TK~(Ÿ8biu~wHR%CάGp#[#nyI07:`=#CJKjD?r{y'OQLv6JtWwGVlqtC)tTR:\U5A?@|Z*IPwaI4 lj k"\,|0Tø$Ht;']o*k\ǪkBM9+qokMC'|p%v_ oHDiq;RhtL^rjITm3g3TD<e ȿ8'1ਹ2C*" +:~=9'JI:Dy[3` RK0+)ıAy'[ 9.ģDMt_:0 ^iz7hG_n./5ETJyG#Tp߄=˨.?e8O^xg X%mNژ;?K_#q._! OHrٻ- 02}9|Ho;M,34@㚒bAnJA? r[d]\ׯ>.È dUs/pQP'u3/u?Rz2@E-m!NYK c zWm2FySs/SuGqn@xƘL # = m;I]Y=ܬyV& 6o : (ڳ _FyoBLʐ)Pu9`seR(P Il](PeqQ 8hl ic8Vޡ;{`%iOl kya@cKWiEp{]?d$cF}CK0OljGRsh_J#.1 NMϭ~tql+ocWOc7c8[;0]2b^Hc tln)JL_Ap jBv+i_[A:u8i[%sZy$VHY}5 4͜oN{5c9?CIcXG(Qc}PR2W%7(%!:[a"~#U.o}ޅ$cx}pnɼ[7h]&+-$Ogɵa٣^PD)(:4MlFgDWcy8<ȷ@m se~̂ 'tVipV(JNB, `̵l_TgYciPO# ݉sSq 1v@AT/]J&,<wL 8=d;)|TB=itT) pd$Y$z]8}f9Z'XtD[#5p!jRzE*&a)Tƃ|v B&4.i$6ά{Cjb\x ,3)`:;uo> ;Ÿ|Rmklsh$ ~8;=̱p>䤔AާW6;$nB X` ȚRvN\Mef* "R iuDJ7! C$M} `6=27GcGx3TllfDR,2-D\(:bW0b+[k-Z:`7_t@k8N,J}=& ljg9Du~LxtVg<a'=_A eQ+Ղ(AFpo)S+Mk;oǸnS{i- 3W$ y$c+N-CDzm0?}A3H:dHTJT/@p]Lۦ 8ȵ]CRV{_sw+_6cQǏV|F/4EtG&] {6 }'0gO` {;C&ܵEү`BdqSTtU t˵2MR?Z!*d?eD놱 j YGsҤv|UtQ4?r}aWe:v B4sSO34Ũ9[eOTRZ;ӗ}Df:!mC^-$꧍o`4}')n!. (T2 .NE. F$TRNLNM("NOTES$SERVER_OBJECT")) THE >$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "R0,,0B Hp$ q pf$,B PF!B@X  @$U `@!@B % 2~F@ !(b(@a0&L 0 8x! ! &0 @0BBB&L @B`  `X Q! #,L @B,` ! #`a !`X (@!(Y0!p B8Y $d( H! ! ,a @Y  &0 0  !`X@$@1B PB 8!8Y@!!HX PH!p ( C ! ,a @Y$@1B PB 8!8Y@!!H PH!1B B1B @P !0 0 , tf 0!0Y8!H PH! ,(@@$U `!@B  (`00B `X !0 0 ,X8@! @ ! /L @@#@ H!0$ /L @ #Z @,! /L H@$#@ 0!0 /L @ #B H!$ $, AKH&L @H #`` `X !0 /L @ #" @!  ,AC@&L H@$#`` `X !0 /L @ # @ & 0 @!@B %3~F !(a00B `X  !0 '8 ! A! , @`s  @!0  @@!  ,C @0 B ! Y6? A!P P,`a `X H@!$ $,) H Y($` B0Y 8!!p p,H @P@Y$( F! A! , @@@XU `@!@B ) 3~F@ !(b(@a08Ha 0(L 0 BDa @0B B Y @0$@ #`a `X a! !@!0 B0B@ , a B Y `!0 0 ,$b@1BHP B(Y0B!p B, H, S H!0B @B@XU `!@B % 3~F@ !(b(@a0Ha 0@(L 0 BDa @0B B Y @0$@ #`a `X a! !@!0 B0B@ , a B Y `!0 0 ,b @Y (!(Y0B!p B$T( H!0B @B@XU `!@B ) 1zF@ !(e(@d`` @! # A! #f@!00B1B@ , e B02B `X A! 2B B YH$B$02B `X @P! `@ 2B @Y H@!$B$,$@2B P`(B e(B02B `X2B @ B e (L @ @b(L P(B  P(B @PX !P #e @@X H@!$ $, @0B @ H $,`a$@1B@P(,b @!@X a!B, c B! Y (!(Y 0!0Y 8@!8Y @!@Y HB! HY$( H! ,@X !@ # d BP$ @!0 0 , d H HX(!`0B 0L0Y8!H PH!2B @ !  ,0e ! XId)abH2!(f (e(e H @8 A!  0p @! A!  !@ # ` !Ȁ #  A! # gB!0B21B,@fDA3B 2 X A! 2 B3B D@Y$B A3B 2 X Q! C2B3B B Y @!0 B0 ,  B@3B @` B@f DA3B 2 X2B3B @"B`f2B BP  @ & 0 @ 1B D@(L @ B  @ 2 @X !@ # A &0 @1BB(L @B@ D Y Ȑ!e # !0 0 ,f @@X0B B H , a 2B1B,`b !`X a!B,@d D!P 08bh @$ $dB !@ #c @!@X h@!hY p!pY xB!xY! B Y$( X! ,@X !!@ #d @P( A!B,`e `X hB!hY pQ! , $( X! B2B D !!  ,Pg ! 1 1~F@ !(e(@d1B@1B ! #`d `X @$@ #,P @B, e 8B8Y (@!(Y0N!p H 3R? p  C: ! &0  B! Y A!p p,P,88$HXp  C !B, eB02B `X H@$H #`e X`XXd!$ ,BD$02B &`X !@PB@P,`BP&P2B *X !`XB`X,X*p2B .pa\Be\02B 2 X22B 4!hB`eh61Bp,P,`,p,, ,@,`, s H! ,@X A!@ # a BP $1B H`c(A2B " X" ! H `aH&@0B (X !PTBT( `HX(0B 0 `B c2!`, $`#a 8pBcp:1Bx,e >X (<!(Y 0!` `, $$( H!0B @0B BP$ ` &0 0  !`X H@!$ $,P,`,H $( H!U `@!@B  9 0zF`(!(`(@`(g03B `X0B @Y  &0 B0B` ( Ձ n) !^) @ # .P H$B$,`` `X 0!0Y8!B@Y $|, p ( C $3BB rH` f@0B H HX H!$ @Af$@0B X`XXX3B," H`eH&@qHeP*`0B,p2BX.!H e`2(L 4hBh,`d 6!`X 04!0Y 86!8Y @!@Y H! HY$( J! ,@X !@ # c BP $03BH@f$pH f,"3B`X,,@f,$0!HfL(PA2B@*`2B`X,f .!X !`B`, e 2! Xd,@ad42B d, X `!l0#b8A1B:`B0Y 8P!8Y@$XB HY P!@PY X!`XY `.!`Y h0!hY0$( J! ,@X !@ # c BP  !  `c1B H H P7 P!( (,`, !D  0"!0Y$T( J! U0 `!@B (-2~F0!(d(@c(c(@bB1B @Y@1BB 2B D@Y D`s8 !0  -W:$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 dW"c0, F`s( ! @@u(! ! @d D@Y D!  0D ! !0 d @Y @! d B Y B@H@4! !  8D(! ! , DB1B@| !0 0,F 2B D@Y D!  D 1B @ @ b 8B8Y !0 c @YP@ 1B D@Y D! , PL! B @ F  B!1B@ 1B Dq, !0 0 , d " X "!D @d $@X $H@Dp1B 8N8YNB@Xv @! c HR HY HRB@@bT01BF2B @Y@2B B Y B!  B q7 !   ,@b $ #`c `XH@ !D D,"p2B 8N8Y 8N!p DN 1B HR @@b 8T8Y ! c @YP@01B F`Y F! , PL! B @ B  B!0B@00B Fq !0 0 ,`@2B " X "0D@@a $ 8A!p b @Pp: @ aR Pa! PTup! ! ,B0B0B @Hs  A!  pDy0! !0 F!1B"00B 0~F@a $$ @a! 0Pp! 8!p p, a HR HY 8R p~F8N0BT0B @H s  A! PBy ! a! A?# 0BD$ !D D,`b FE #`c `X `! H H1B@P2B HR HYHRp2B 8N8Y 8N!p  8N @ikA!@X P! ,TB@X(U@ `!@B PEd)bb``!B(f (e(e 1B20B@3B B Y B! @dDA2B23B @Y @ɀ@ ddB !!  d @`i !d cdB1B @ B@cD1B21BdB3B @Y a & 0  D!@Y !dBd, xD!xY 2!Y $( V!1B B1B @p q !   , D B`c H!$ @c PH(@`b$A1B" 0BD$0A2B&@0BL(P2B *X `!`XB`X, x,!xY$*( V!0B B0B @P  ! #F ! (, d X`XX `!D D," 2B $@X &0L0  &!`X &! X $!0 0 ,p, X@!( V! ,@X Ѐ!@h # ؀!l 86@! ! HBx ! !! @b D@`d$ P$00B( !@ d ( (aW  H!$ d$" $@Ia p8 @!0L  xLp @!@P @P,d *P # @!X  ,h X!PU `!@B ) 2~F@ !(c(@c01B `X ! , a B! Y(!`Bp, 3B? A!@ # a BP  @!@X6 !0 0 ,`@`1B 0BP`1B XP, @ b(" A1B $a7 !L # `!@P BbP*`1B ,X ,!`X c .X .`\@Cb 0`` @ bX21B 4aw ؀!l # !p `8yP! !t p:@! !x x,c >X(<!`|B # H!0B @\ ! 8Bh! !0 0 , c H HX P` &(0  P!@PX X!,B,,0!p(B8Y @!@Y$( H!0B @ ! 8Bh! !0 0 , b H! HX P` &(0  P!@PX X!, ,, 0!0Y 8!8Y@!!H PH!0B @| ! ,`b !`X H!$ $,@)T P(B(,`b X!`XX(B!` B0Y8!(B@Y H! HY$( H!0B @ A!  , U `!@B % 2~F@ !(c(@c01B `X ! , a B! Y(!`Bp, 3? A!@ # a BP  @!@X !0 0 ,`@`1B 0BP`1B XP,@ b(" A1B $a7 !L # `!@P c *X *@T@BbP,p1B .X .!p\ c 0X 0p`@ Cb 2pd @@b\41B 6aw !p # !t h:8@! !x x,b >!X(<!`|B0Y$|( H!0B @ ! 8B@! !0 0 , b H! HX(!`$B0Y$L( H!0B @t ! ,`b !`X H` &$0  H! HX P!(B(, 0!0Y 8!8Y @!@Y$( H!0B @@$U `!@B (%1~F0!pB((e(@d(d(@c0B@2B B Y B! @cD01BF2B @Y @@ bB !  `b F`i ! ,@1BB 1BD01B F @d @@ b Bp ih !0 @c D Bd @Y@2B B Y  &0 0  !`X ! X B!0 0 ,p, $, ,H0PL! ,@X a!@ #a @p c$ a!  HDx(! !0 `b 0 @d 0@c $ H$0B$" ! H  H,`c &H #a @(@X(P!@BP e ! () 2~F(d(@c(c(@b2B @Y ! ,@c D@Y !0B0,8B!B ,X A!@ # a BP  @!@X& !   ,D00BF0@1B `X H!$ a "HD@ H(U@ `!@B (51~F0!(f(@e(e(@d3B @Y a! ,@e D@Y a!0B0,@B!B@,X A!@ # f B Y B! @DdD00BF0 2B 0 @ d 0B" 1BD$00B &P$ `!@P @P,(P1BP*`0B,p1B .`\@e 0``@ cX2 !p p,C83B :X :t@c <x @cp>p HbP2BHRb1B @$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "tT2BXV1BX@2B@"1B @3B B Y ! B ,`b F!`Y @!0 0 , b H! HX !DBD, @D!@Y HF! HYP!$B`XY `"!`Y$D( L!0B @0B @B@X(U@ `!@B  ) 2~F`(!(d(@d(cB2B @Y ! ,@c D@Y `!0 B0 ,8B!B ,X A!@ # a BP  @!@Xz !!   ,@DD01B0BH1B "HD @@c$$00B &`X&@1BL(P0B*`1B ,PX@d .P\@bT0A2B 2 X 2!d d 8X 8p@b :t @bd<A2B >X 0!`B,b 8N!8Y0>!pB8Y @@!@Y $( J!0B BH U0 `!@B (-1~F0!(e(@d(d(@c2B @Y@1BB 1B@D02B F`Y F!0 a@0B BY !!   ,DB1B@0B1BPF0@2B `X ! ,( PL! B @ B  B! 0BD00B Fq  @!@XR !0 0 , a"0 BD 2B $@X 8A!p d @P@Y @P!  8P 8I # c HR HY PA! b BR@ EHR1B @Y !  `a F @c @@X @!  @ @ #(U@ `@!@B  % 3~F`(b(@a(a1B @Y  &0  B! Y a!   ,`a `X(@!`B0Y8D! B C? !@ # b BP  !  ,@ @!0 0 , +T H$B$,@a P@PX X@!, ,, 0!0Y8!,B C? p (`K@$ U0 `!@B `;#e@d x &<0   8  UXI0 B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0~Fd, aX?#Ȁ0# aB0@~F b 2 AX?#0 `@ ~F 2~F@~F@0@H` ȀX?#d0# bHp! 0C HH #? X?# `cHcdvF@ HX?#@$ # e B`q  @Y?#0   &0  @!Y@! ,2@~Fd0 B b H < X?#B,c @!@X X?#dBd,`  `X p@!pY x!xY 2!Y ! Y$|( Z!±~F ,c@ X?#0 0 ,$d( Z!XU `X!@B  1 3~F`(b(@a(a0@L 0  0 )P< a &0  @Y ! ,@b D "B`a `X @@!  ,P,`, 8N8Y@B!B HYP! B s?  U0 `!@B PEd)fb`@2!(e (d(d  Hbd@H@bD1B2"1B@BH@aD*L BB a2H@aD3B P!e # e Bp q  A!   ,D1B22B @Y @! DbB $`@ei  $J1B@B2BB1B2H  !  Cb2 a!B,a @!Y @!dBd,@b D@Y !0 B0 ,,,, !Y$<( V!0B B Y !B B Y ! # !0 8! @!  , H  1B $ `c 1B " X ! H  H,@R<$, 02BH&@2B (HPc7  `!PT *! `!`X  ,!PXBPT,T"1B 0 `B c`21B 4@X !l <6, 2Bl82B :Htcw  `!x <! `!|  >!|Bx,x41B hZ Bc\0B x^Ba`0B BЀs0 A!B,,  V! @a ! #d @! #a @@X H!$B @$ @X P!@( # X!, X?#1B,"\$ @! HB H,,  V!PU `!@B hQ3~Fp!0*L 0 0 , @0$@!@H!0H`P!HBX!B!4( \!0H RH@H$`` R!XD #@ XR!L#2 \R!T#" xR!\## |R!d#@XY ؠR!l #@.T 4hB h8 @X R!t #@/T 4hB h< @X R!| #.T x^ FK`*L b @VKd0 H`L @1CO B!( \!0H VH@X$H "X," H@ H,`BXH&@HXP*`H`X,`XXVBF!d( \! HT H P H`AP(,@SD$0,, " \! ,@X XA!@ #`a P4 H@!$ @A#4H$8X! X$B,"B @"_H0)B &OP&,H,  \! ,@X XA!@ # HA! p ( C. ,P,  \! ,@X XA!@ # a HRHP P1P!0 0/  ThU `@!@B P53~F X!(a0*L 0 0 , @p$!@@!00B `XB 0B H HX H!$ `B$,@,  V!0@B 0~F 0@B p c ,@, z V!RH@PU `@!@B `;#e@d x &<0   8  UXI0 B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0~Fd, X?#Ȁ0# bB0@~F b 2 aX?#0 `@ ~F 2~F@B~F@0@H` ȠX?#d0# bHp! 0C HH #? a &0  @Y X?# # Cc2H c vF@ X?#@ #`* 0  0 )P 9@! ") !P1xrp! @Y?#d d, e H HX2~Fd H $,`@c$~F,c @!@X X?#dBd, B  Y p@!pY x!xY 2!Y B! Y$( Z!±~F,,XXU `X!@B b@ ` &0 0  X0 , @  0p B `@Rp PC ,`@0, Z D!U  ! P=b`0,,`,,B ,, AJ0,,!  $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 /" P!@(# ^!-BH,,@, 3@!D( XP!HXN_ V!B`XX@$0@B ,,@a_ H!P$ #XX$ #BD$HHXId)cbH2!(e (e(d (dA2B2B1Bd@2BB 1BD0B ,`aF2B 2pd k A! ,@e D#`a F0 B a2 A! , @0B 2 dB`adF2B @p k A! ,@e D#`a F0 Ba@l @!d d, e BX@@ D e#`a F0 B@aD0B 2 X a! ,R2 0B D B`aF $`Hea @8 !  0p @! ! `(`C A!   ,`D0B @ B aB @!d @@dD0! A!0 0,e @# a 2 dB@adD A! 8BX! A!0 0, dF0B @ B aB0B 2 X A!  20B @ B aB\ @!d d,@$20B @ B aB0B 2 X A!  20B @B aB @!d @a D!@YdD 01BdF,,@0BB ,,@D1B 2e i 0,,D@\, ,, B 0BD,,`cpF01B  Y @! a hhY P@! (  ,pYxa!,`XR XF!B!( XF!B $ ,@0,,XX @! c H@$ @`  P!( 8! ,, "Dq   ,,`B&, !0 @XX E!   0D!Bc@,,`cp1B `Y H!$ @b xxY,, Ž "XD,pY,@X XD!B!( XD!B, B0@1B1B @0 @ b 1BP1B "PD @@b($0,,XX )!@P c *@T @`P&$ @$XU `@!@B %3~F !(a0Hb @0B @@X !P B #? F!1B @01B P  H!$  ,@ P`!( (,P0B(0B 0"0Y L!PH F!0B @Y (%# a H HXP $$B(1B" @! H  H,`a &`X @!@P @P,a *X !`X 8X1 `t XP0 X,RX,@"`X,`2 $0l@P8 HR $ x@*@H4J`rH$N@!PB(1B @P B`b1B @p k A! ,HU `!@B 3~F !(a00B 0 B@ ,  F!0B$@p  CH9 `!0 0 ,` ` R `C P`!( (,@Q X`XXhx! $m( a! , @p q  X`!, X!00B 0 BX@,P, #? F! ! # `!0 b@@H 8 H1 `t @0 @ !@ B@, r F!1B @ B`b1B @p k H`!$ $, H H$q7 P`!(  P0!PX$( F!0B$@p  CH9 $@1B 00B`0 ,b (!(Y$, F!H b ! XA2~F@`!0,,` `X@! @@Q!  `@D, ? 0$p1  XD08 88 @$ (a  A @$A X$A @(A P4P(0B(B@ 0B $00B 0~F b 1B "`a8 P@!( (,b@ !H h 1 4t @0@X @( 8x! !0 ?#1B 1B "`a @Q! H H$8! P$@)@(, !@ #  !HD #P,bx!H Xr X!B`  `X @$@!@ ,,@, #H!( X!BHsf p!pYvf $,Bh PX!B`  `X @@$@!@ ,  H  HX h!hY p!pY x!xY $,B PX!B`EH 1E pH "E(" B$0H`0L, ( X h&!hY p(!pY$,B PX!BhH @!0 0 ,b@ H 8 H1 `t @@X   #@b P(B ,Pc !  3~FP x@= #P   #`XX p!0 0 ,D, `B @!  ,AA@0B @0BB , H8p! @! @?#0B @0B H HX H!$ a B`Hq @! 8 % !! , ` @@ #  @!@X`@!@B P53~F 0,,` X0 ,E H@X08~F# 0(pH1  XD08 88 @$ (a  A @$A X$A @(A P4(0BH0B00B &0B H'~F@b$A1B "`a @@!  ,@b$0 H hH1 4t 0`X   0 8! !0L &!1B H$,`,H,X pC P!( 8((! !D D,`@!, XP! @!0 0 ,b@ H 8 H1 `t @@X  ~F( !D #?# A1BD$0A1B &`a PU `!@B 3~F@(a(@a00B X`XX a! ,@0B B Y $PB(Y 0B!` `, 3? @!@XU `@!@B  ) 1~F`(!(e(@e(d02B `X $0@ !  H8@! @`$  !0 0 ,`@ X`XX0! ,, @B,,X  ,,@D0B`Hp,, $, a! ,D @Rp @C a!   , D ~F`b2B @ B c  P!( (,P1B(" 1B $@X0$p"H $D, ! A?# B1BD01B 0 Bc @1B H`$s P!( () a(" 0B $Hs @!0L P& ! !@P @P,D8$PB 3? ! A?# B1BD01B `X1B 1B T2 $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 [" H $B@c$1B "G~F@fD$03B &`a\ !@P @P, (X(P1B *X *X0$pPB8Y @*! , 3? ! @! 1BD0@1B 0~Fb 3B H'~F@f$3B "`a$ 0! #D8$B3B 3R? ! 8@ %@ a!   ,`e `X 0~F D(H d @,L @ B ,@Ad 2B " X & H0  $!@X !0LB0L, 8$!8Y @&!@Y H! HY$,B PJ!B@e D@Y `!0 0 , 0 B D 0!0Y 8!8Y @!@Y $, A! ,D@ 2B D@YXB B,DB X`X,R @!X #a@HH @$ @`$ @`$ U0 `!@B hQ3~Fp!0,,`H` H!$ #@A_ @!P #`] H!$B$,,H, #@!l( \!B`XX@$0@B ,,@a_ H!P$ # XX$0GBH&@A-B%$PB Y $, ? ,,`XX `!0     BB P,, XX H`!$ H!,,@U  Y,,XXx_!BY R!@YX!( XV!B X!( XV!B HY HR B,FP0,,XX,, K H'~FC$0 B0B ,,@XX0,,`B &0LB@“L$EB"@0BD(P0B *p T k @!`X `X,X. 0B \0`X |,, A1BX2A1B 4hk< @!l l,l8 Ё0B p:l bl<A1B >kW  x! x` 0B b Y $ @`a f )9 X!x # P! hT9! @A! , HR 0B  b 0@1BH1P8 @! H  H,`H& 0B L"H bD(L !PT "8T.8! @!` `,0`0B ,`XB aX2`,X Р!h # !p p,X `!t #`XX,,<0B >| @a` ,,@Ɠ d @x` mBx60,, ab0B XV@`ƛf@$$ %rf$,BȆ P\!B@XhU `!@B ! 2~F@ !(c(@c0,,    B cB@1B01B p q  ,,C @p k( ,, D  B Y BP $vf$,B PH!B@X ? ,, B00B1B @@X H@!$ $,@P$ 0B ("$ H|, 2B$$02B &pL k< @!@P @P,P* `0B T,@P dP.2B 0ck  !d @d4 0B 6`X $p@a p:l ) 8 !x # !| |,X|P0B (J(Y 0$`*@a NP `d2BBH`R(W @!D D, HD 0B $$D `d$&L !PT "hT,88! @!@P @P,(p0B .p\Ba\0@P,X !h # !p p,X !t #`a6,, 2d @ad<,,XX >!| a 0L @C|p,,`apB N,PP, !( H!B !0 8p! @! XX H!$ H$4! ,,@SP1B(" 0B$0!1BH&@,b *!X ((!(Y 0*!0Y$,B PH!B`b1B @0 @ b ,,@AS P@PX PPP\L, ! `XX !0  01Bb ,, KH 1B$,,@XX $! H `b & L @ H"@,,XX *!PT b ,PX@£T(pA1B.1B 0p` @ b\2,`Y !pBp,P,`,p, 3!( H!BhH$vf$,Bx PH!B@X  @$U `!@B `M2tF`h!(f0Hc B1B@01B,,@ @ 0,,` `X!H J H@!$ $)HP %vf$,Bx~ PZ!B@X @! '/$0 B2B 0B "  @d $ !0L 8&p! `!@P eP*`2B ,X $p\@e \0`X |,, A3BX2A3B 4hk< `!l l,l8 2B p:l fl<A3B >kW  p! p^ 2B `Y $@@e d )9 H!p% # !0 0 ,`X P!( # e " X @$ @@e $D `f &@A3B(P HA0 `!p\ p\,\0 `2B `,`\ fX2L Р!h #xh88! `!t t,:2B 6lBel<t,X !| # x! ,xY !x #@dd2B`2B H% @H B2B$\01B@2B P`(iP!1B(" A2B$1B @ @`d &@2B(P HA` !p\ P.y! `!` `,0`B`,`B ,Xs  #rf Ѐ!h #* hA!p p8u ! `3pe !x # hA!t cxt>! pd !x # a!   ˀ/ `4 H@$$q  p! P\x!@  @$ qwH P!( pH! `!D D)Pl ! H aH02B&P0BL*p!Hp\,a 0!X p.!pY x0!xY$,Bhw PZ!B`a @G_ | H@$p$ q4 P!( H9! `!D D," BD$B " R @!PL PT`'T&`0B ,ࢿ_\, `!` c 2d@@e`4$ qf$,B8v PZ!B`c l qf$,B(v PZ!B`c L qf$,Bv PZ!B`c , qf$,Bv PZ!B`c  H!$ p$ C P`!( (C `!D D)`(Pw `! H  !H)0P &0L0  &8P ` &@P0  (X@(!PHcT,P2B !\ # @!d #C0H0!A1Bh6A1Bx8A1B:AB <Yp!, YH!4( XR!BH!<( XR!B`b1B 1B H$,@c P!@PX p!pY x!xY$,B(t PZ!B`f !`X @! # c H HX P $P$#@c $@X$@HBL(P1B *X ` &`X0  ,!X *!T #c .X .!\ #c 0a`B c`21B 4@X $h#c :X $tBx>1B HR HY p &0 h$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " p\!pY HR!p #c x^xY x!^! #c `cB cb 1B d@Y !0  d1B H HXP$$B(" 1B $@X !0LB0L,@BL$@1B (X (!P #c *PaTBcT,p1B .X.1B 0!`B c`2 H`bh6A1B 8Ph @!t Qt)  P70 P!x =?#0Bx>!B<0BxR0Bp, %p#fx$BY $,Bxp PZ!B c R, Q!0  a 0 B0B  `!DBD, %p#fx$DBY $,Bo PZ!Bc P !0 p ` C HhA!$ @!H$t! ` &D0  " X ! HB H,`eH&@2B (X |$P#e .p \Be\02B 2 X $d#e 8 pBep:2B <X $x#e p\ Be^2B `Y $#e @ Be P02B `X H &$0  HH #@e P (B@e($02B &`X |$L#e ,` XBeX.2B 0X $`#`e 6 lBel82B :X $t# e HR Be\"B HR HRC x"! c`1Bb H5ҷ @`!  ,c @P@!# e H$B@e$ ! H `pH&X! `!@P @P,T(p2B .p \Be\02B 2 X !h h22B 8 pBep:\ `!x x,#|<2B HR Be^2B `Y ! `02B 0 Be  @! c H HY P!( @B $Y `!L ,e @(@Y, YP!d( XT!BP!l( XT!BJ,`et @#!  c 1BP H `!0L 0L,c (L#e ,` XBeX. !` @`2tX! `!h h,`l42B : tBet<2B >X p! >2B ` B eb\ a!   ,@%d02B 0 Be P2B @@X H!$ $ 2B $ HB`eH& !P c H* HY !X B "Y `!\ ,e P0@PY, Y@!,( XP!B@!4( XP!B J,`e @`!  , $2B " DB@eD$02B &`X $L#e ,` XBeX.2B 0X $`#`e 6 lBel82B :X $t#e p\ Be^2B `Y &0  b #@e d #BeP2B PT@PY |$#e @ B e 2B P@PX $(#`e &0 LBeL(P2B *X $T#e 0 `B e`22B 4@X $h#e : tBet<2B >X p$p} #e x^"Be`2BbB3B@,C ! B , xP!xY d!Y $,, H! p C P! HTx! @!B,% xP!xY$,BPXZ!B@@ @!B,e xP!xY$,BhPXZ!Bb xPxYp^!HP, @, CH!( Z!Bc P, %rf$,Bd PZ!B c R,`c `X H &$0  H! HX pP!pYx!$BYP!, XT!1B H,x$BY $ , @! p @C P@! ⧀/ T !  , `U `!@B hU3|Fp!(g0,,` `X!,,  @   B`XX H $0$@H!,,  @   B@Y `!0 B0 , eH! H@ ,, ! Y !@Y$,BP\!B`PY x!xY$,Ba P\!B`PY @`! B , e H HX x!xY !Y!H`XV \!B`g p s @! # g,@g P!@PX !DB@B D$  X x`!xY$(B Y "!@Y$,B(P\!B@P  &0 0 @.L H$0 $^) IX>1B XV"Bb^0B,@PY !0B,,, ,@ ,`0,@@, cX!4( \!BH@,`f !`X x`!xYq$B Y !@Y$,BxP\!B@P0 !0 0 , A H HX P!( (,P!H 8(1 `t P+~F(, P HH #,@e $!@X @!0LBB L( `X x`!xY $HB Y &!@Y$,B(P\!Bc @P!@Y !@ #g @@X H$H # g " X ! H 0 $! $ %0PB "!T#g ,Xp,,¹.`!XB\,3B 0X 0!` # g 2adB@gd43B 6`X Tl#g <X $xB|V3B x^xY T! Ex^3B b Y !b! #@g d cB`gf@3B hYh03B 0 Bg P0B@ , g 3B P@PX@3B (X $0PBD&P3B *X`,BX*p3B .X .!\ #g 0a`B g`23B 4@X @!l l43B :X $tBx>3B XV`XY xQ! `EXV3B `Y !`! # g bcB@gd03B f`Yf@3B h@#B`g3B@P H 8@1 `t @#~F -\ H$B@X @$  ,@AP ,,@$!H PH1 (t $PD@P?#01B`0L,a (!X x!xY &!Y (! Y !X0  @ $,B`\!Bf P03B P H!HF ! Y $, X! p `C @! @PPy ! 0@!0 !`B  H!$ $0C PR(q !D x "! @! H  QH)P( @$0M@0L,-T (@P (!P,,, , 3X!( \!B@@ $03B0.L 0 Bg H J$,@-T P( P!3B D,@PY x!xY !Y "! Y T!@Y$,BT P\!B@R@H@, FH b Y $<, !  ,`b ! `I3xF`h!(b0,,` `X P!0 0 ,XX @! A 8@1 `t @#~F ,`0@!,,`XX H$0$@@@! ,,  H$" $BX @! B ,@gP!!H@(,x+$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 (", !Y ! Y$,BPZ!B`g !X p^!pYx$H@Xb Z!B`` , g H! HX P!(B B P(" @PX p^!pYx $$BY ! Y$,BPZ!B` @P@P\ @!0 B0 ,b @1B H HX P$P$#@b $@X$@HBL(PA1B *X !`XB`X,BX*pA1B .X @!`B`,`.A1B 2adB@bd4A1B 6`X6A1B 8!pBbp: @!xBx,bx>B1B PT@PY p! TC1B `Y $BP0@1B `X @! `@ @1B H HX H !$ #@b P`(B b(" A1B $@X$0A1B &0!LBbL(P1BPT,bT,pA1B .X.A1B 2 X $dBh6A1B 8X,Ct8A1B <X <!x #b >a|B@b|TB1B p\pY x! \C1B `Y $0B@1B @@X H!$ A@$@1B P@PX P !( # b "aDB@bD$0A1B &`X&@A1B (@!PBbP*`1B`X,bX.A1B 0X0A1B 4@Xؘ$hBl8A1B :X :!t #b <X <!x #b >a|B@b|TB1B @P@YPB1B p\"Bb^02B`0 ,` `,` @@X H!$B$,,@ !Y $,BXZ!Ba P00B P HR@HH,FH `Y $, Pa!B,x$BY $d, @!B,@`T00B Pl @ !  pK,@b P!@PX @!DBD,H,P,, 3@!4, Z!B@a T00B P H@!$ @c P!@PXp$$BxY !Y $, @a! p (K Pa!B,x$BY $t, >? @$`U `!@B `I2lF`h!(b0,,` `X P!0 0 ,XX @! A 8@1 `t @#~F ,`0@!,, @$  B`XX H $0$@H!,g @!@X H!$B`@ $ `X p^!pYx $ BY ! Y$,BxPZ!B`g !X p^!pYx$H@X_ Z!B`a 3B H$,x,$,B~PZ!B`` 0B HHP P !( (PC5qf$,BXF PZ!B@X6 ,`g !`X H!$B@A H$  HX p^!pYx $ BY ! Y$,B}PZ!Ba @P@P\ @!0 B0 ,c 1B H HX P$P$#@c $@X$@HBL(P1B *X !`XB`X,BX*p1B .X `!`B`,`.1B 2adB@cd41B 6`X61B 8!pBcp: !x xpC @!|B|,@c|T1B p\pY x$x# c b Y@$0B1B @@X H!$B$,A@$1B P@PX `!DBD,@PD 1B $ aHB`cH&@1B (X(P1B *P!TBcT, @!p\Bp\,c\01B 2 X !h h21B 8X $pBt<1B >X P! C>1B p\pY p!\! #c x^bBc`01B `X1B @P"B cb1B@ , c 1B P@PX 1B $@X $@HBL(P1B *X`,BX*p1B .X .!\ #c 0a`B c`21B 4@X !l l4Ё1B :X $tBx>1B PT@PY p! @EPT1B x^xY x!^! #c `cB`c1B @P@YP1B b#Bc1B H$,@c$1B " X"01B &`X$PLBP*`1B ,X ,!X #c .X .!\ #c 0a`B c`21B 4@X41B 6!lBcl8Ё2Bt,`t<,@` PT@PY p!B0,,P !Y $,BȑXZ!B@b T01B P HR@HH,FH `Y $, @!B,x$BY $|, P!B,`P01B P @@!  C,@b P!@PX @!DBD,H,P,, 3@!], Z!B@b T01B P H`!$ @c P!@PXp$$BxY !Y $, @! p (K P!B,x$BY $, >? @!! p K,`b !`X @@! B ,P,,@, 3@!_, Z!B@b T01B P H`!$ @c P!@PXp$$BxY !Y $, @! p (K P!B,x$BY $, ? @$`U ` !@B `I0~F`h!(`0,,` `X P!0 0 ,XX @! A 8@1 `t @#~F ,`0@!,,`XX H$0$@@@! ,,  H$" $BX @! B ,@fP!!H@(,x, !Y ! Y$,BoPZ!B@Y !0 B0 ,f@! HH ,x,% !Y ! Y$,BXoPZ!Bd @P!@Y  !@ #` @@X H!$ $A0B " X $0DBH&@A0B (X !PT BT(`A0B ,X ,!X #` .pa\B`\0A0B 2 X2A0B 4!hB``h61Bp,`p:A0B <X<B0B PT@PYp $B^C0B `Y,F`0@0B `X  ! #` @PbB`@0B H HX P!( ( A0B $@X $@HBL(PA0B *X !`X BX*pA0B .X .!\ #` 0a`B ``2A0B 4@X4A0B 6!lB`l8Ё0Bt,`t<A0B >X>B0B p\pYx$B`C0B b Y b! #`` `X  ! #` @` B` P@0B H HX@0B P (B `(" 2B@ H,`gH&@,g *X !`XB`X,, ,!Y $,B PZ!Bg P03B P HR@HH,FH `Y $, P!B,x$BY $Լ, @A!B,@gT03B P @$`U `!@B hQ3jFp!(a0,,`CSP$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 w" X0 ,@ 0B `X,, JH H 8$@1 `t @#~F ,`0@@!,,XX $0@ @@H% ,,  @ "  B c@1 B H$,@b$ , a "! X @`! B A @  @X x`!xY $DB Y !@Y$,BgP\!B`a !X x`!xY$H`XY \!B`d 0B H$,,6$,BgP\!B`e , b H! HX P!(B B P(" @PX x`!xY $$B Y !@Y$,BxfP\!B e HRHP@ iA! `04B H!@$ #@a P!@PX !PD #@b $@X $H#b *X8$pTBX.1B 0X Ƞ!dBd,Cd01B 4@X !lBl,@l41B 8apBbp:1B <X $x#b x^xY ! (@ 3Q! a$ %B ^!# b HR HY !0 B0 , EH R1B @Y !@! #b @` B b 1B P@PX $(#`b &`X !@P P( sa4! $ %PXB &!\#b 0X Ƞ!dBd,Cd01B 4@X ؀!lBl,@l41B 8apBbp:1B <X $x#b `Y !!  ( q! x$ %B `!x#`b `X H!B,`@1B @Y @`! B , @1B H`$B@b$1B " X" 1B $ !HBbH( !`XB`X,`bX&P1B *X `!p\ \*1B 2 X $dBh61B 8X p!t Ct81B <X <!x #b >a|B`b|V 1B d@Yd1B b#Bb^2B,`bf01B `X1B @@X $ B1B P@PX,@APD 1B $@X $!H #b (@aPB`bP&`1B ,X !PT T,1B 0X $`Bd41B 6`X !p `Cp61B :X :!t #b <axBbx>1B XV`XYV 1B d #Bb^C2B ,b`01B f`Yf1B HR HY@$B 1B @Y @! #@b P@PX P !( # b "aDB@bD$01B &`X&@1B (@!PBbP*`3B`X,cX., c 2 X `!hBh,, 4! Y $,BvP\!B a R0B @P T@H, FP b Y $, XA!B,$B Y $Ե, H!!B,c@0B XVXPD @!0  pK, d H! HX P@!(B(,@,H, P, 3!( \!B a R0B XVXP  !0   C H!$B$,@b$A1B " X 8$D#b (@ PBbP*`A0B,pH@a,w !` `, ` 2`#`b 6 lBbl8 !t `tC1B ` B bb C1B d@Y !!0 dB1B HR B`bV\ !0 0 , !$A1B " DB@bD$0A1B &`X !@P P&`A1B ,`XBbX. !` 0!A1B x2xY Р!h ,, f @!@YX!( XV!B X!( XV!BY @ Y ! #b @@X H|$H # b " DB@bD$0A1B &`X $L#b ,` XBbX.3B0H Р!h h,`f 6h#b : tBbt< !| @|^tX! ! , `0C1B f0 B`bVB1B HR HY !0   R@1B @ B b \ P!( (, "D0A1B &0 LBbL(PA1B *X !`X X*A1B 0`B b`2 Ѐ!h X4!A1B x6xY !p ,X, b V!@YH!( XR!B H!( XR!B`XY V Y ! #b @@X H|$H # b " DB@bD$0A1B &`X $L#b ,` XBbX.2B0H Р!h h,`e 6h#b : tBbt< `!| @|^tX! ! , `0C1B f0 B bRB1B XV`XY `!0   V@1B @ B b \ P!( (, "D0A1B &0 LBbL(PA1B *X `!`X X*A1B 0`B b`2 `!h H4!A1B x6xY !p ,H, b R!@YX!4( XV!B X!<( XV!B HY R Y ! #b @@X H`$H # b " DB@bD$0A1B &`X $L#b ,` XBbX.A1B 0X !d d0A1B 4!hB`bh6A1B8A1 Bt, !xBx,% 8!Y <! Y $, XA!B,$B Y $į, 2 H! p PC !B,$B Y $, X!! f HR! HYx9$BY R! Y $d, A! p (K XA!B,$B Y $4, f? @$hU ` !@B hM1lFp!(e0,,` `X!HB @PA!  ,`XX !0 A 8 H1 `t 0~F0 ,`@!,, @$  B`XX H $0$@P!H a ,`` !`X @! B A @  @X x`!xY $ B Y !@Y$,BLP\!B`` !X x`!xYI$H`X"S \!B`c 0B H$,,&$,B8LP\!B`c 1B HHP P!( (PC5qf$,B P\!B@X ,`` !`X H !$B@A H$  HX x`!xY $ B Y !@Y$,BKP\!B c HRHP hA!0  1 4B$ P!H( # ` "!X x`!xYQ$H`XR \!B b R00B`0 , e 2B P@PX $(#`e &`X$PLBP*`2B ,X !p\Bp\,B\,2B 0X !dBd,d02B 4ahB`eh62B 8X $p#e >X X!  (8! x$ %B >!x#@e d@Y @`! B ,@F d2B HR HY H!R! #`e 0` B e 2B P@PX2B "!DB@eD$ !0L LpC @!@PB@P,eP*`2B ,X $X# e 2 XЬ$dBh62B 8X !tBt,Cc$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 h"t82B <X X!B,<2B `cBe>2B x^xY^2B b#Be ! B , eR02B `X H!$ $2B " X $0DBH&@2B (X !PT BT(`2B ,X ,!X #e .pa\Be\02B 2 X22B 4!hB`eh62Bp,ep:2B <X<2B >X $|B^2B @@X,A@2B HR HY H!R! #@e d cB`e2B H HX P !( ( 2B $@X $@HBL(P2B *X 0!`X BX*p2B .X .!\ #e 0a`B e`22B 4@X42B 6!lBel8Ё1Bt,et<2B XV`XYV2B x^xY$B2B b Y b! # e HR HY H!R! #`e 0` B@e d2B H HX2B P (B e(" 3B@ H,`aH&@,a *X !`XB`X,, ,! Y $,BxP\!B d R0@2B P HT@HH, FP b Y $, X!!B,$B Y $d, H!B,`aV0@2B P @!  C,@c P!@PX @!DBD,H,P, , 3H!.( \!B`d V0@2B P0 H!$ $PC P`!(B(,E$(B Y $, H! `f XV!`XYx $BY V! Y $t, H!! p (K X!!B,$B Y $D, H@! HR!"BV0@1B P ,,F@/B H 7 ,, BW"T, ? H! p K,`c !`X @@! B ,X,, @, 3H!4/( \!B`d V0@2B P H!$ @f P!@PXx$$BY ! Y $T, H!! p (K X!!B,$B Y $$, ? @$hU `@ !@B `E1~F`h!(e0,,    B XX Hp!$ $,H @PQ!  ,`XX !0 A 8 H1 `t 0~F0 ,`H!Hc$ !0 B0 ,,,hwXp C$@2B 2B P(s @!DBD,@eD$02B &`X @L#e ,X$XB\02B 2 X @!h Ch22B 6`X 6!l #e 8apBep:2B <X $x#e x^xY$B02B `X H!$B$,`@$2B P@PX P !( # e "aDB@eD$02B &`X&P2B *X$pTBX.2B 0X 0!` # e 2 X 2!d #@e 4ahB`eh62B 8X82B :!tBet<,a p\!pY x! #,@,f $,B88PZ!B`d L H!$ 8(! P@!( (,P1B(" ! H H $y ! !0L L(K @!@PB@P,eP*`2B ,X,2B 0X $`Bd42B 6`X 6!l #e 8X 8!p #e :atBet<2B >X>2B p\pYx$B`02B `X ! #e @@X @ ! # e H`$B@e$2B " X" 2B $ !HB`eH&,a @!Y !P #H,,f $,BH5PZ!B d RB2B @P  P!0 !BB P H !$B$,x$$BY $, @$`U `!@B hM1~Fp!0,,` `X P!0 0 ,XX @! A 8 H1 `t @#~F ,`0@@!,,XX $0@ @@H% ,,  @ "  BX H!$B$,@bP!!H@(,, ! Y !@Y$,B2P\!BHY `!0 B0 ,a@! HH ,,& ! Y !@Y$,B1P\!B d HR! HY `!H #e @@X H!$ $2B " X $0DBH&@2B (X !PT BT(`2B ,X ,!X #e .pa\Be\02B 2 X22B 4!hB`eh6A1Bp,ep:2B <X<2B XV`XYx $B`2B b Y , Fb02B `X  ! # e HRbBe2B H HX P`!( ( 2B $@X $@HBL(P2B *X p!`X BX*p2B .X .!\ #e 0a`B e`22B 4@X42B 6!lBel8,d <!X !|B|,,, , 3X!"( \!B e R02B P  H`!$  ,8@P!HF ! Y $Ԟ, x$3BV HF!Hx=X ? H!!B,`eV02B `X @$@ #@e P@PX$ (BD$02B &`X@,,¡(0!LBP&P2B *X *!T #e ,`aXBeX.2B 0X02B 2!dB@ed4,d 8!X !tBt,,, , 3H!d,( \!B`a V00B se8 P! PT@HP, FP b Y $, HA!B,$B Y $t, ? XA!  , hU `!@B `?#e@d x &<0   8  U`I0B`p!00B  @$pH1 @  `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0~F ,B ȠZ?#@d0#j@0@~Fk  ȀZ?#d0 `@d ~F ~FH~F20@H` @Z?# 0#@kPp% 0C PP$ #? ,, 2 X 2!0 B ` Rp (PC%vf$,B P\!B@X ,,IX PT!@ #`m p8 s $, PZ?#@ # 0, /\ H$B$,,H, #P!( \!B`k ~F HHP` P@[?#( P?#0L "DB@PX PD ( @B 8(1 `t P+~F`-\ &0LB@PX PL ( (,D@@,,(P!H PP1 (t $@Q@)?#`~F,p~F.PBxYaZ?#~F P 2(0 `P 3P!0@ \!B Z?#B,$B Y $Ě, r? @$`U `Z!@B `>#e@e x &<0   8  q$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 N"U`MЂ0B`p!00B  @$pH1 @  `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0@~F ,B @Z?#@d0#i@0@~Fi  Z?#d0 `@d @~F @~FH~F20@H` @`Z?# 0#@iPp% 0C PP$ #? ,,`d ,,A @@X ! B H !HRp$ (PC%vf$,B P\!B@X  , k H! HX x`!xY $B Y !@Y$,B"P\!B@P vf$,B8 P\!B@X Z?#0 0 , k H! HX xxY !Y?  C PZ?#( (, 2 !H#`-T &0L 0L,`š x&xY Z?#@P  0(!X$,BH PXT!B Z?#0 0 , 0~F  H@X08~F# 0HpP1  XD08 88 @$ (a  A @$A X$A @(A P4 (pLi pf$,B8 P\!B@XR QA! ,`k `X H 8 H1 `t 0~F0 ,`@~F A~F "`Gw Z?# H @$9! 0,,k (X(0AMBP&P~F *UsW  `,*` .p\Bp\,,, #P!D( \!BH@8*@! ,`,` 0 B0 ,,, #P!( \!B@84*@! ,`.` 0 B0 ,,, #P!đ( \!BH@8T*@! ,`(d 0 B0 ,,, #P!( \!B@8L*@! ,`*d 0 B0 ,,, #P!D( \!BH@8t*@! ,`,d 0 B0 ,,, #P!( \!B@,`/\ 0 B0 ,,, #P!̐( \!Bj @0~F`0 ,$ B Y $l, ? @$$ pf$,B( P\!B@X`U `Z!@B !2~F !(c0,,  ,, @Y @! )P $vf$,B PF!B@X P , a H! HX J! Y( $`B0Y 8!8Y$,BhPF!B@P vf$,B PF!B@X `!0 0 ,1B 1B P@PX @!DBD,P ("!(Y?  C @! H  H,@B$0A1BH&@0B (XP,,B*@QBT(`,,b.`YB\,0B 0X 0!` b`20B 4@X,,`6iBl4,,b:qBt8,,<0B >X $ |B*L "D D, Š " Y @!0  0!X$,B PX@!B $vf$,B PF!B@XU `!@B hI0~Fp! 0B0H` 2B2B H$,``$02L 0 B` ,, I H HX@!,B`HY @$0 @@X,@$ 02B,,, H!@$ #`XXP!0`B(,,  !HD#`XX !0 !,@S ,,C @#~F PY H!@$ # XX "!D D)P  0,`,@S Pp( k ,C@0B 0B " X $0 @@a 0D |, 3B 3B Hp$ k< P@!( (, (" 00B D0( g 3B Hp' k  P!( P(" 00B `X @$ @ a 0 0)`8 !D # @!  ,@X H!@$ #@a P@PX $0P @ a "0( g 3BHHP @!D D,`D 0B 0D g L P!( !8(8! @!D D,"00B 0 B a D, X @! # P!( (,@PX !P # d Hp$ st @! XX "!D `a,,@AS P0( @ D ` a\ H@!$ $,@P$ 0B ("$ H|, 03B$3B @p k< P@!( (, (" 00B D0( g 3B @p# k  P!( P(" 00B `X H$$@a $0 0)`8 !D # @!  ,@X H!@$ #@a P@PX $0P @ a "0( g 3BHHP @!D D,`D 0B 0D g L P!( !8(8! @!D D,"00B 0 B a D, X @! # P!( (,@PX !P # bHH@ !D 0" ! @!0 0 , 0~F@E H X08~F# 0$p@1  XD08 88 @$ (a  A @$A X$A @(A P4 (pHi PPQ!( (,a @@X@ H h H1 4t @0#~F ,@@0B "00B `w `! H @$9! ,,@a P@PXP@%B( @! B ,@,,hGX !0 8! @! Hup! H!$ @A 8$P1 `t H'~F .d "DB HX HD $ $,@f $@Xx$!@A$B ($0 `H X!0@ \!BH5qf$,B( P\!BxHpf$,B( P\!B@pf$,B( P\!Bh@,, NHR/BR, ,,` @W! # XX, J,,@AR,A/B@B_!DBxY $!Y &! Y $,BX>PXR!L ,,`5 @T!X#`-T 0 0 ,` xxY @0!@X$,B PXR!BhU `!@B P93~F   &0 0  !`X X!`XY `!`Y h!hY@!, XP!`XX 0!0 X8 ! ,,@ !PD#@Z @!L #a (X |$P#a .p \Ba\00B 2 X $d#a 8 pBap:0B <X $x#`a XV BaXЂ0B hZhYZ0B @ B a ,, a")BD ,,`a &0, @$P& HBL$P,,,*`,,B,p,BZ!\B`XY `0!`Y h2!hY $,B(;PXP!PU `@!@B %2~F!0*L 0 0 , H@!@$ #a@!0B 2L H$ c$2L @ B@ @  @X H!@$ #@c P!@PX @@! B , a H! HX X &,0 Xq B " "RD (8! & H0 $! @ &D0  "! DB H,`P0,@@,HP,X`, 8N8Y @$!@Y$g( X)$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "D!00B`0 ,`0, γ D!U `!@B ! 3~F@ !(a(@a0B @"B a B Y (@!(Y0B!H PH!1B @1B BP  !0 0 , $tf 0!0Y8!Hh PH!tf  @$U `!@B  (`0-B`  ! ,@00B0B@-BH( !0 ?#0B @0B @@X @h!  ` Hp@$ q !  ,(@ @!@X ! b@ ` &0 0  `X @@! 88! H0!$ */(0B`Y ! Y$4f( D!@$U  ! !1zF!0*L 0 0 , ` H!@$ # @` s P8!( ((C H8!$ $)HP `Y?  ,h@$0B 02B`0 ,@Aa 1B`X,, e," 2B $@X $H#e *X$pTBX.2B 0X `!dBd,Cd02B 4@X @!lBl,@l42B 8apBep:2B <X<2B >!|B`e|F@4L H@ bJ@4L H@B L  Y 8! #,h @ b 4L @ B`   `X P!( #`c X!`XX !DBD,@b $!@X !0LB0L,`X0,@,P,`,p, S D!p ( H88!  &0 0 0B 0@4L 0 B@   `X XP!, # @!DBD,@a $!@X "!`Y $! Y$c( D!p ( H8@!  &0 0 0B 0@4L 0 B@   `X XP!, #? $@B Y$c( D!00B`0 ,.h @ B` ,`0,@,0P, 8!8Y$tc( D! ,@X @!@ # e HHP$ P` &(0  P!@PX X@!, ,,`P0,@,X $4c( D! @! #g HP!@$ #@a P!@PX !`Y$c( D!@$U `@!@B PQ2~F X!0*L 0 0 ,@$1B 1B@ !@ #`@ ``Rp  C@$ HX$01B$6L @ `cH! BHP(ա(n)()^)(P$#`. X, ,) X P7 !0 B0 ,, ? PP!   @ @X H!$B$,@a0B1B" A1B$B`Y h\!hYp$ BxY !Y ! Y !@Y !`Y0$a( V! ,@X !@ # d HHP  PQ!( `d( !D D`C` $BhY$a( V!0pB @@N \ H!$ 8H! P` &(0  P!@PX X!, ,,P,,X $Ta( V! @!  , PU `!@B PQ0~F X!0*L 0 0 ,@$@2B pB @a@Rp  C@$t  &0 0  !`X H!$B$,,p, $S, V!p PC !0 H9! H@ &$0  H! HX P8$@)@(,H,P,,, C2 V! ,@X  !@ # ` HHP P$3B(3B" H`"gH&@H2gP*`qBp,pHp\,g 0!X @!d0#@a41B6A1B8B`Y h\!hYp$\BxY !Y ! Y 0!@Y !`Y0$_( V! ,@X  !@ # ` HHP  P@Q!( ``( !D D(pC 8Q!H ` & `X @!P0#a*`1B,pA1B.B`Y h\!hYp$LBxY !Y ! Y !@Y !`Y0$4_( V! ,@X !@ # D! H$B,  V! ,@X @!@ #`` @@X ,H,   !@ # H` &$0 H3B$6L H$B` H$  HX !HD #@g $!@X 0$0AM@0L,,,,, CF V! ,@X  !@ # ` HHP  P !(  ,@X$A3B," H`fH&@HfP*@2B@P,BfP,pHe\06L 2d )@*l 4h h,@Rd4 2Bd6AB22Bd82B:AHcx> HcZ2B`,c\"Hd`#H@&ddC2B ,`Fdf0`BpH J$,@f P!@PX @@! 0#`a1B`X,,`XX !XD0#@b$B`Y h\!hYp$$BxY !Y ! Y !@Y !`Y0$<]( V! ,@X  !@ # ` HHP  P@Q!( ``( !D DC 0Q!H ` & `X !@PB@P,X @!T0#*l ,`X `X,aX.1B0A1B2B`Y h\!hYp$LBxY !Y ! Y !@Y !`Y0$\( V! ,@X  !@ # ` HHP  P@Q!( ``( !D D`C` $BhY$T\( V!0pB @@@N  H0Q!$ @ P @PX X@!,0# a" 1B$0A1B&B`Y h\!hYp$(BxY !Y ! Y !@Y !`Y0$[( V! ,@X !@ #D! @PB,  V! ,@X @!@ #`` p s$ H` &$0  H! HX P !( (,H,,P $[( V! @!!  , PU `!@B PE3~F X!0*L 0 0 ,` $BhY$\[( V!0B P| @8P!  (C H8P!$ $)`H(Pwh @AP! @*l P( h4! X &,0 X0B,"6L X,B@ X,$ `XX p!XL #a (!X @!PTBPT,,, #^ V!0B@,`-l 0 B ,,@,x,% !Y$Z( V!PU `@!@B P-3~F  ` &0 0  `X @!B @@P@ 8P!0  (C @8P!   )@P, @P!0 *l @ H 4@!Xp (0C"?  8P!  '  @$ @$PU `@!@B P93~F X!0*L 0 0 , @`Q! p @C~? @!@ #  H@!$ # P@!( p( (C X@P!, H88! 0P! D  J/H"B`YܚJ)$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "  h!hY$4Y( V!Hx@?  8P!  '  @$PU `@!@B 3~F!06L 0 B0 ,`0,@,P, 3b D! ,@X @!@ # a HHP, P` &(0  P!@PX X@!, ,,`P0,@,X $X( D!0 L  B  @$U `@!@B P=2~F X!0,,` H X08~F# 0$p@1  XD08 88 @$ (a  A @$A X$A @(A P4P(0@1B( ,,@B$1BH@1B H'~F c$"01B `a P!( (,c@ !H h 1 4t @0@X @( 8! H!$ $, (p "DBD,X,H p"!pY@!k, XP!01B `X @! A 8 H1 `t @@X   0 @a 0B " X "!D @aD$00B &pL q @!@P @P,B *·_X* !p\ c0!H P`1 (t $p`@@c42B6\B`Yh!2B 3@!$( V!B !0 ?#1B 1B H`HaH PU `!@B `A3~F`h!0,, @` & 0  @@XH!0H`0 ,, P!U( Z!B`@  `X p!pY$,Bث PZ!B`a @`! 8 H1 `t @@X@ HP ,@, P!U( Z!B`a 0 Ba 0B Hp$ k P P!( a(" 0B$0,`HH&x8! @!@P )?#P0BP*`0B ,Xp,!,B8XXT!$ 0,,` 1B @1B,1Bb$,ByXZ!B* @P B)@P @ &0 0  !`X p!pY x!xY$,BXXT! @AR! @Q?#0B0B P4 @8R!   ) @ P7( H8R!$ 0$)`H(PW P@R!( *l "D `("t ! pRpYP!, XT! HAR! 8R ! @a &0  P`O P@$`U `!@B XU2~F@`!0*L 0 0 ,,,A@ @@Rp C0,,`x,B a0H`X P`!(0# b"@1BBhY p^!pYx$ BY ! Y !@Y !`Y !Y0$,B PX!B@X ,`c ,, Ix,B a" 0B$01B&@A1B(BhY p^!pYx$(BY ! Y !@Y !`Y !Y0$,B8 PX!B@X ,`c ,, I H$B, H!R( X!B`Y , H!R( XR!B`XX p!H #@ H9 P &(0  P@PR(pC &D0  "! X h"!hY p!pY$,BXXR!? H &0  HR! HY h!hY p!pY xR!xYH!4f, XR!0pB `@Rp C @ & 0  @!@XH!`/B XX ,,`XX@,,XX *!PT PT,aT,p,, .X `!`0# XX 02!d d,@bd4,B`X !p0#@,H,P,, F b Y %!   ,`Ɵ f`Y (!@ @, H!l, XR!  &0 0  `@Rp `C @9P! ") @!P  H!Li, XR!:? @! , XP!HPc ! P=b`0,,`@ P8  &0 0  !`X `!`Y h!hY p!pY@!d, XP!`XX @! '/$B`Y h!hY$,BH PV!BPU  ! P=3~F X!(a00B `X @`!  ,D @ @  B X`XX,,AB@00B 0B HHPl 0,,`@ `Rp C @@!  , ,p H$B$,X,@ p!pY@!c, XP!, X!`XX: @A! ,`,p 0 B0 ,X,@ p!pY@!Dc, XP!d, @A! `8! $,B`PXP! X!`XX @p q8 @@@XH $ B$*L "D D, Š `"`Y @bB,  V!B`Y h!hY$O( V!@$PU `@!@B  9 1~F`(!(e(@e(d02B `X !0 e @0 @ d B 2BD1B@02B1B BB2B @Y@ 1BD01B `X !0 p  C@$ ! ,c @Y @! @d D@ B01B `X @!  ,G @ B`  L D   )P !B,`, ? ! , D B Rp C !   ,@@D1B @"B`.p 0 B0 ,d @@X H!$ $,@c P@PX X@!,0# a" 1B$0A1B&`B0Y 8P!8Y@$B HY P!@PYX!$BP0$,M( J! ,@X !@ #@f DP ! ,$ M( J! ,H@ ! ,@dD~F`HD!` ($Ց$n)$%^)$H #@c P@PX P`!( `c X -B .p "DBD,@d $@X !0L '?#@1B (@!PBa*`0B,p1B.A1B0`B0Y 8P!8Y@$,B HY P"!@PYX$!LB`Y h(!hY0$LL( J! ,@X !@ # f BP !   ,$,L( J! ,(@@$ U0 `!@B 12~F !(c01B `X `X ! p  C@$ ! R)Pt @`!`   @ Y @ & 0  @!@X H!$ $,@ P  `PX X@!,0# a"01B@1B@B Y (L!(Y0$pB8Y @!@YH!B@PYX$aH PF! ,@X !@ #`c P H` &$0  H! HX P!( (,H@,P,P $ K( F! ,8@ ! '/$@ B B B0" H@2 H,`*t &0LB0L,c (X $0T@ ,a,p0B.1B0A1B2@B Y (L!(Y0$pHB8Y @&!@YH(!B@PYX$aH PF! ,@X !@ #`c P$ H` &$0  H! HX P!( (,H@,P,P $4J( F! ,(@@$='F$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "U `!@B %2~F !(c0,,`1B 1B@0B0@-Ba ,, AH H HRp$ C,,D @Rp 0C ! # ,,A@1B ,,`XX !0 b @0 @ @,,XX @! @!'B 0L 0  0 )P  a!B,b @@X @! Y(!HXJ? X@!0,,`1B 1B HHPl ,,@AP P@PR(CV? ! ,`+t 0 B0 ,X@, 0!0Y!L[, X@!H @2? ! ,`+t 0 B0 ,X@, 0!0Y![, X@!01B`H0@  $,BxPPX@!@$\ !0 8! @$D H!$ H5! x@!< #r P!2B(" 2B $@X $0L@d L( H |$, PA2BH*`A2B ,XkW< !p\ p\,\0 2B `2p\ @d\4A2B 6ok  !p p: 2B <X $|@d |@x )8 !! # (!!P tpL8pBp,aP @!0 ` (C @ & 0  @!@X ! Y (!(Y 0!0Y!Y, X@!02B@,B d  P !( (,PA2B(" A2B$0A,B   !@P (!P2BP*`A2B ,X$[~F 0 sɀOd0$ !h H480!XX !B,@,X? X@!02B 2B HHP  P!(  ,H@ !D D, ‰," A,B`b &0LBXPL, !E( X@!B`b !`X H!$ H!@ B Y (!(Y$,BxNXF!B`d 2B HHP$ P!( (, sf (!(Y0!HX F!B@X !0 0 , bH0 B$@1B P@PX$@+BD A1B $@X !0L '! aKBL$@A1B (X$`SBT,p1B(.1B80`,, b 2 X 2!@d @,(Y0L!p,XV X@!B!D( X@!B`b `X@$ B *L P( (,@R  Y !D  0"!X$,B PX@!B ! Y (!(Y$,B PF!B`XX !X #XX @! # [ ! Y!\, X@!HU `!@B 3~F (a00B `X X`XX A! ,`D F`Y? @$U `@!@B PQ2~F X!(c0*L 0 0 , @! ,,`XX p!0  c 1B HHP !0 0 ,,t @ B ,X, p!pY!U, X@!`XX !0  0` )P ,,Ap,B@aH X `!H0#`b&@A1B(B`Y h\!hYp$$BxY !Y ! Y !@Y !`Y0$,B PV!B@X ,`c ,, Ip,B a" 0B$01B&@A1B(B`Y h\!hYp$(BxY !Y ! Y !@Y !`Y0$,B PV!B@X ,`c ,, I H$B, !\B( V!B? @$ @ &0 0  !`X `!`Y h!hY p!pY@! T, XP!0B ``Y @@!@X$,B PXP!B`* 0  0@ )P H` &$0  H! HX `!`Y h!hY$,BHXXP!0,,`@ `Rp C @! @@!H J$,@,H, #@!d( V!B@$2B 0:L 0 B Ad 1B P(B  "  X `!`Y h"!hY$,B(PV!B`c 0 Bd @!@X `!`Y h!hY$,B PV!B @@!0 *l @ 0 X! H`A!$ $pC PP@!(  `!`Y$,B PV!B` @AE_  H`A!$ $)HPt P0A!(  `!`Y$,BX PV!B`!pHB , a0B1B" A1B$B`Y h\!hYp$ BxY !Y ! Y !@Y !`Y0$,B PV!B@X ,`c `B H$B, @!<@( V!B@X ,`c 0`B H !M_$ P0@!( F/ D@!l, XP!XX @!X #`XX ! #`[ `!`Y? @$PU `!@B h]3zFp!0*L 0 0 , H!HY $0@ @P! H, #X!?( \!B HY H S! , J HR! HY !H #g @@X@1B 0B@ ,@c 1B" 1B$03B & Yxa!,  ,`X XV!B X!$?( XV!B@.t PT dRB:L HRB`  `X @! # d H! HX P!(B(,H,P, ,@ , CX!>( \!B@X ,@` T0B HRHP( ` &0 0  !`X H!$ $,,, H $,B} P\!B@X Pa!B, `R00B `X H$H # ` " X0$0DBH&@0B (X @!PTBPT,BT(`0B ,X ,!X #` .pa\B`\00B 2 X20B 4!hB``h6A3B82Bt,,, ,@ ,`0,@,P,`, X!=( \!B@X , ` R0B PTPP( ` &0 0  !`X H!$ $,,, H $,Bz P\!B@X H $B0BTB2B H,` R!Y$,B?X\!B@` T0B HRHP$ !0 0 , sf !Y!H`Xn \!B@X P &0  PT@PRp C H &0  HR! HY  !0 0 ,H,$,BXXXV! P!! , xT@2B @@XH $ B$A2B " X ! H `H&@A2B (X (!`T `[/X*pA2B .X .!` d 'd0A2B 4@X @!l l8A2B :X$wBx:A2B >X X!! X!V!A|B>B2B x^xY !! !`!bB^C2B bcB xb!xY$,Bw P\!B@Y XP!`XX P!! ,`dl1$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 X H!! ,d x^xY ! 81 `t @YHd 0,@,, $@Hl HB H$$@PH 2H("rH` "BR 0B $ HB``H&0B @p k !P @xa!CX ! !@!a|B>@1B HPbB J! Y$,B] PF!B`b `X @!  , b H HX P!( (, B" H`rFH&@qHbNP*@+B`1B ,X !p\ p\,b 0X Ȁ!d d,@4H3l8qH#t<dB21B> ! ,b H Y (!P P,b 0L0Y 8!p 8@1 `t 8 8Y(R ,dR,Zp,D: $0 @ " HaB $ I@H2$(PqH@!T!DB"`1B ,` XB@cX4p1B .p\ k @$0Bl83B`l,C`l0A3B`,``:,, 0<1B 2dBa>0B|,X @a!0# bRB1BT@B Y (L!(Y0$pdB8Y @!@Y H! HY P!@PY X!`XY0$,B(Y PF!B@X ,`b @1B HHP P!( (,@QPA1B(" ! H H`C `!L #" `!T #$6$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "@ L!\# H!d#e 0!X P!h #`C @!p#`g6!!H`l,dl<@L >|B|,c @!Y !@B,d (J(YJ`2B 0L0Y 0L! d 8N8Y 8 N! d @P@Y @ P! @,P,X`,p,@, H,@P, s!\+( F!B@X ,`b H@d$qH@dD$A2B D,`dD&@HdP*`,, 0,p1B .p\Be 0!X !dBd,@f 4!@Xh,`ah6A2B@h,@X `!p0#b:A1B<@B Y (L!(Y0$p\B8Y @!@Y H! HY P0!@PY X2!`XY0$,B8U PF!B@X ,`b @1B HHP P!( (,@QPA1B(" ! H H C !0L dL(Pa2B *X !`X `X,R &p\0 .TB\2\n)h2A2B 6lBdl81B :!wBd <!X :! Y (<!(Y$,BخPF!B@ !0 0 ,c @@X  @L H$ $" $n)H"01B &0LBcL(P1B *P!WBc ,!X *! Y (,!(Y$,BPF!B !0 0 ,XX @8!   ,, b " X P@!( @‰($01B &`X ` &@P0  (!X &!PB(Y 0(!0Y!t7, X@!`XX,,A @ B` ,, I Hp$ c P` &(0   _D ! H  H,!, X@!0@1B ,, H H HRp$ ( C? @$U `!@B 11~F !(d02B `X `X y! c B@1B 1B PPP$ ! , X@`XX @!  ,D@ H Y? @$ ! r)P H`!$ H% 1B PH(aQ!A2B(" BP A2B $PH@`(& BP@!H (W `!`T  , X &p\0  .!X !` `,  2 X 2 !H d,`6!H` @!t0#a<1B>@B1BH@B Y (L!(Y0$pXB8Y @.!@YH0!dB@PY X!`XY0$,BhM PF!B@X ,`e 2B HHP( P` &(0  P!@PX @!D D,P@,P, $,BL PF!B@X @$ H!$ @ 0(H! !D @"98! !0H 0L'L$@1B(PA2B *@T @P,D Dqg$,BL PF!B@X H`!$ @c PH(@ $" `! H `B &`La `!`P  * X &`X0  ,!X !p\ p\, 0X 0 AH`,@C40 B 0 @`a60B81B:A1B<@B Y (L!(Y0$pTB8Y @,!@YH.!`B@PY X!`XY0$,BxJ PF!B@X ,`d @2B HHPD P` &(0  P!@PX !D D,P@,P, $,BI PF!B@X& !0 0 ,  B,, d H HX !@ @,X@$U `@!@B PQ2~F X!0*L 0 0 , @0Q!   `!`Y$t$( V!0`BpHB , a0B1BA1B"B`Y h\!hYp$ BxY !Y ! Y !@Y !`Y0$$( V! ,@X !@ # D! H$B,  V! ,@X !@ #`@ H !M_$0pB `Rp @C P0P!( ./ , 8P!D D)  P7( 0P!0H 0N/L$ H, #Α V!B`Y h!hY$#( V!PU `!@B PM2|F X!0@2BH b @1B@ !@ # a00B2B@ , b 01B `X P$P #b @@XH$  B$$01B `X P &(0  P!@PX !P # b " X "!D #b @` B b  1B $@X $H# b " X@$DB 01B `X P@!(B(,`@( 1B $@X $!H #b @` B b 1B " X $D#@b $@X@$HB 01B `X P!(B(,`@(1B " X @ ! B ,  "1B H`$B@b$$01B `X1B P (Bb(0B D,, @!!( V!B@P `! # H`!$ $,@e P!@PX @!DBD,H h!hY p!pY x!xY "!Y ! Y !@Y$,BB PV!B`a p s Eqg$,BB PV!BAqgV `!0 80! H`!$B$,H, @!4!( V!B  &0 0  !`X @ & 0  @!@X `!`Y h!hY$,BXV!B@P  @$@6L H$ #P$0B(" ,,@ $  P7 &0L0  &!`X &@P0  (!X `&!`Y h(!hY$,BXV!B@P  &0 0  !`X H &$0   P &(0 P6L "PD #@(l $ H `@H&t! &@P0  (`(PWL H!PT PQT)0P Epg$,B? PV!BApg  &0 0 h@2Bx@L`XB1B V!`@p C ,,`P &_P& &PT0 *`0BT,PA:L *PTB T. X !` # ` 2! X$A1Bh6Hcp:,BcY `2!`Yh!1B,, S@!L( V!B`b 1B HHP( P` &(0  P!@PX !D D,P,, $,B> PV!B@X @!, XP!00B H$@0B$,, " "RpD @C & H0  $!@X &0L0  &!`X `$!`Y h&!hY$,BxXV!B@P @ &0 0  !`X H &$0   P &(0 P6L "PD #X? XP!0@0B ,, H H HRp$ 0C,,@P P@PR(C,, "`(Pw @! H `bH&@1B (0P0 !T  ,8@ !`X bX.1B 08P Ȁ!d  ,@,,` 6Op6 &t0  :CRpt 0C@!l., XP!@!$, XP!,B? XP!HPU `!@B PA3~F |$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 }"QX!00B,,,E @@P, 0,,` ` Rp  Cv? $,B9 PV!B`a pX q< @ & 0  @!@R C H &$0  H! HX P`!( (,H,,X,P$,BxNXXP! `!0  X!`XX$4( V!0B @PB,,, @!<( V!B`XX !0 a  H@!$ @[8$! @!D #?# 0BD$00B &`X &!0L LC @!@P @P,¢ (Psw( @!PT  X*!`XX @!`X `X,,p0BX., @a!  XP!`XX? @!0 0 ,`0B D$ `$ HX V!B`XX 8!0 p (0C@!, XP!4$ PU `@!@B P=3~F X! H "t? V!01B 1B HHP  P!(  ,8 @ X !&,0  X X P7 wf$( V! ,@  &0 0  H O_$H`b(*L P(B(,b h!hY$~, V!01B 1B HHP P!( (, sf h!hYp!H4 PV! ,@ ` &0 0  X`XX,,@x( ,,` $!P#XX($PAVBX*p,,XX,,@XX `.!l## l0!t# h2!|#@4,,XX,,XX X! # ! PZ!H(# \!H#AB0,,XXP,,XX '!\#`# )!`# +!t#B ,,, <,B@] `>!`Y h4!hY$,BXV!B`XX `!0 p C @ !& 0  @!@Xp! B`Y h\!hYp$HXJ? V!B@ `! B, @!4( V!B`Z `!`Y$,Bh2 PV!B `! #\ H !0B@P(,@,H,P, 3@! , V!B`a P ,, E P@W_(, !DB, @!( V!B0,,` p q4 Apg H@!@$ #X? XP!0Hb 0*L 0 B0 ,b h!hY$,BXV!B`a @@X ,,@Z H!P$ # XX!aEBH"0,,[ &!L #XX!PUBX*p,,ø 0 _d0,,` 6C_p6,, <#_|<,,@ hXem_X, @A!@ #`XX H8!$ (`'(0B "P, @!D-, XP!`XX `!0 p C @`! B, @!|( V!B`Z `!`Y$,B. PV!B0,,` ` Rp PC X!,B,  V!@e$0@1B0*L 0 B0 ,b h!hY$~, V!0B @P@XPU `!@B PA0~F X!(d0,,    Bd2B@ ,`@d @2B H HX !0 B0 ,H h!hY$,Bx- PV!B` @@! #,,@e P@PXX!9(x)@qP H" D P$<HPp @!0L 0L,-*@9Lx)`r T( @P @P<  P7X `!X #e .X]sw h/y0! x.0! ,,0A3B`2,,@C43Bh6 88.! *&p0  8!X !t #XX p<!x H! ,@, #@!~, V!B`g  H!$ $,H@3B$3B " X "!D @fD$ 8/ ! !@3BL(P!HfT, H`.9 ! `!3B`2!H`fh6 $2Bp: ,e >X @!B,g`X!"Hj0,, pP!pY x!xY$,B8FPV!B@P !0  f 3BP3B(" $02BH& `!@P P C !T # `!`XB`X,aX.2B 0`kw @!d d,@e4H@8h2Ё0B : tBat< @!| |,>Ђ0B hZ Ba\2B x^k @@!  ,`e  #@a P(B a("l @! H  H,`e &0OX@ L( H#a ,` XBaX.0B 0X @!l l,`Rl00B 4 hBah8 !t pt<0! @!| |,f @P@}#a hZ Ba\ x! `0X! @@!  , $0B " DBaD( 0B $@X !0L L$`0B ,` XBaX.\ @!` `, #d00B 4 hBah8Ё0B :X !x x:0B @PBaX hA! a p\!pYh\ 02B00B`0 ,Ed ^@3B@1B 3BP1B("@A2B (X ! H  H,`d &!`X !PTBPT,h$!LBpY x*!xY$,B# PV!B`g 3B HHP P@!( P!2B(" 2B $Kcl !L  ,(@@$PU `!@B PE1~F X!(d0,,    B dH0B$00B hhY P!(B(,hh $BpY x!xY$,BFPV!B@P !0 0 ,?  ,8@ @A! ,%@@P01B1B Hp$ q P !( # c "XEs7 X#0! h"90!  ,,@$02BH&@,,B(P2BP* x8"! *&`X0  ,!X !\ #XX p0!` 80H! ,,@a 4!@X `q2! ,, #@!~, V!B`f  H!$ $,H2B$3B " X "!D @eD$ 8# ! !@2BL(P!HeT, H`"9 ! `!2B\0!H@ed4 $A2Bl8 ,c <X !|B|,f@P!"Hb,, p>!pY xP!xY$,B:PV!B@P !0  e  3BP2B(" $0A2BH& !@P P C `!T # `!`X a .X .XiW @!` `,02B`2 `!h `ex62B p8pY @!t t,C `:`Y,xY@!T( XP!B@!\( XP!B`a `X  !0 80! @@!  ,@ @@X H`!$ $ `!D @a $@X $Hi70 @!0L 0L,&@2B (КP @a *X *!PT PT,e ,X pU, BhYp!,Bx PXP!B @!0 0!0B $ @$PU 6,$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "b`!@B  ) 1~F`(! 2B(c (c(b 0He @0BB0B ,@eDL BB`eB`XX ! , @p q  pf $0@2B00B`0 ,d 8!8Y$,BHXJ!Bd @ 2B DP$ !0 0 , sf 8!8Y@!H XJ J!B@X A!  X@!`XX ,,`@x D,,  !H#`XX !@P `P&P,, @+!T #c .X,.TL 0` d`22B 4ph cL ,,XX,,XX !| |, / BB > | `|,1p|,`9|,A|,8H4 @0pH ! !lB6 2B D ~F@d2B "Dc7 ! H  H,`/ &0LBL, 8P!8Y@ $HHPJ!1B B Y  +&0  @!Y0B!pB8Y@$HxHPJ! 1B 8D8Y !B,88q$B@Y H@! HY$,B9PJ!B@b D@Y DB,,$~, J!1B,@0B BB,,@XX !0 @D D,, b H HX H!$ AF$,, b " X "!D @SD ,,`b &`X &!0L @BL$@,,¦(P2BP*`,,b .X P.!p\ ¶\,1B 0X P0!X` # b 2 X Ƞ2!d 828! !h h,`b 6`X0%$phB $#~, J! ,@!1B B Y 0@!0Y 8B!p p, #!Q( J!Bb @Y0@!, ,,`] @@X U0 `@!@B  % 1~F`(! 3B(d (c(c 0Hf @0BB0B ,@fDL BB`f2B @Y X@`XX80! !   ,@$ Dp q @$ 0$ HXJ!,, AC! #@a,D01B `X @ *& 0  @!@X0!pB8Y@ $H(CPJ!1B @Y a &0  B!Y0@!pB8Y@$HBPJ! ,,@D0BB,,D@01B1B @p q0 H!$ $, J H$q7  P!( (, c " X0)$p(B $!~, J!0B B  *& 0 DB2B@0@2B p c4 H !$ $,@/ P(B H( $  H, `$B`, !t( J!Bd @~F@dD0@2B p c @!` B`, !G( J!Bb @BB@eD @!0 0 ,`@2B @2B HpH, q  P !( e("$ @! H  H,`d &`X '!0L @–L$@A2B (X )!P #d *X*`,, ,X,p,,¼ .\q7 $2B`2a.Be 84!8Y$,B(XJ!B,,`AXX2B,@0B`X,,e 8!8Y$~, J! 0B @D@X U0 `!@B  - 1~F`(!(c(@b(b01B P ,, +4 BB,@ ,,@ DP !p p,a@!"H ,88a$B@Y H@! HY$ ,Bh.PJ!B b BP$ ! ,`a `X 0@!p p, #0 J! 0B DL ! ,a @Y 0B!p p, #1 J! 0B D A! p (@C$s f$,Bh PJ!B@X  ,,@d D@Rp C !p p,`a !`X H`!$B@A H$  HX0N!prH, H, C! ( J!B@a D!@Y A!B,`d !`X @! B ,`,p,, ,@@, S!T( J!B@e D2B BP `!0 0 ,$,Bx PJ!B@X A!  d Bp q tf$,B8 PJ!B@Xn ! p C !   ,`e `X0D!p B #1 J!0B @D ! ,@e D@Y0B!pB #^2 J!0B @ A! p (PC$s f$ ,B PJ!B@X @$$ $rf$,B PJ!B@X U0 `@!@B  =P0Bd0b J!0#P J?A #P p@J?9 #P `J?A #` !J! # /B—~F ,@(DL BB`(B~F@ B~F D@Y XD`XX8$ HXL!,, AC! #@/,D0~F `X @ *& 0  @! @X8!B@YH $HH5PL!~F @Y ! +&0  B! Y8@!B@YH$H4PL! ,,@ Dp q AJ?# ,) @Y8-$B  $~, L! ,@ ,, B,,@0~F~F @@Y PK?#(B(, ."! !H D,@@$(B HY P"!@PY$,BX%PL!B@P $rf$ ,Bx PL!B@X6 8!8Y@$HȢPL!,, @Rp C AJ?# ,@/ D!@Y K?#0 BA   `X8P!:H ,@, C! ( L!B@P K?# # ,,@ D !P78 @J?# , +H! H P$,@@a$B HY P!@PY$,BH#PL!B@P J?# ,B ~FD K?# #,, aH H IR$ C P@J?#( , + "! X J?# HB`B H& @X8P!rH ,@, C! ( L!B@P\ J?#B,@,D!0 H` 0 , / H! HX PJ?#(B(,p,, ,@H,`P, S!D( L!B@/ D|F BP K>#0 0 ,$,BH PL!B@X K?# # K?# `, 0 @ A, H0$@8! P$A~F(" J?# H  H,`. &! X!pHBH, EP$PB`XY$( L!p (C K?# H@x ! 8!8Y@$HXPL!$ 8!8Y@ $H(PL! !pBp, !\( L!B) @Y!0VL 0 B0 , @D!@Y H! HY P!@PY$,BSPL!B* @Y8@! HH4PL! ~F D/B K># # .pB8Y@K>#|F 3!( L!B_!pB8Y @B!@Y$ ,B PL!BXX A! *B0@~F `X @J?#  @~Fdr $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "s H HXP$!$B(" ~F$@!~F H( HYP,,B P*@PY J?#`X `X,K># H# `& cXD ` `B80!LB PL!p*XB  P&!@PY@$ ,B PXD!B !d( XD!B* @Y,, B0B~F @@X,, AOH@!B$~F P@PX ! D  J/H"0~F &`X &@P0  (!X `&!L #, J?#PT PT,+ ,`XB`X, @,!@Y$ ,BhPL!B@X ,( @~F BP0  &0 0 @!  H K?#$ $(C PK?#(B(, $pf@$(B HY $ ,B PL!B@Xb !K?# p C J?# , B0@~F@~F H HXH~F$~F "Dq7 J?# H  H,`/ &! X!pHBH, 5P$PB`XY$( L!p (PC$r f$ ,Bh PL!B@X J?# ,@B~FB0@~F `X@~F @H +("~F@P(,@+($0,,+4 (@PB@P,`P&P~F *X!p~F .X K?#`B`, . 2 X K?#hBh,`l,al8~F`l,`X `!t0# @,!@YH.!B@PYXQ$dBp,u($\/~, L! K?#  8D! J?# , ) B Y8@!B ,8X J?#@ #( @P  J?#  ,h@ J?#0 0 ,`@~F @~F P@PXP~F("< K?# H @``@H&4x! K?#@P hXP*`!  $p~FX.`~F`X,+X0,,@+4 4hBh, h2~F 6`X!~F :X K?#xBx,, >X 8K># #, aR•~F@,@Y Pa!@0# @8!@YH:!B@PYXQ$|B.pM$QH[XL!HV L! J?#   ,$,B8 PL!B XX qC! #@* D@Y `K?#0 0 ,@!HXPL!~F @~F BP( J?#   ,$,BXL!B@Xz $s f$,BX PL!B@Xj J?#   ,@$ D ~F/@0~F `X !0 0!|F ~F P@PX P!( ((" ,,`* &`X &!0L 0L,& IBL$@-B/ *!X 8(!8Y @*!@Y$,B( PL!B) @Y8@!t, ,,`] @@X U0 `J!@B PQd)gb`@2!(a (`(` (g(g (f(f (e3B 2 X 2!d d,c@BH  @8 a!   0p  a!0 cHP,,.(J`2BLp3B 8N8Y 8N`q A! , g pBpY`@!B5x$!HXPV!p (@C%r f$ ,B PV!Bh@ A!0 0,`F@B2BHPB2B (J(Y(J`2BLp,, +4 BB,=N2B @Y!@3B @@X H!$ ,@d P@PX !0D 0,@a$03B &`X `!P0#c *X !X0# h!hYp!BF! B`v,$<*~, V!  ,,`+4 F0B0,@D@2B H Y(!`B3B 0L0Y ! , 2 X 8a! #a@03B `X @`! 0# c H HX P!H(0#  hJ!hYpL!BF2! 0B`6,$)~, V! A!   ,$0,B PV!BPU `@!@B  9 2|F`(! 1B(` (`(g 0Hc @1BB1B ,@cDL BB`cB1B@ B0B D@Y XD`XX0$ HȩXJ!,, AC! #@b,D03B `X @ *& 0  @!@X0!pB8Y@ $HPJ!0B @Y  +&0  B!Y0@!pB8Y@$HPJ! ,,@ Dp q ! ,g @Y01$pB $ ~, J! ,@ ,, B,,@03B0B H HX P!( (, d "! X0!p(BH, EP$rH c"?? J!2B B 2B DPx ,, @dRpC  !0 P! H !p$ @d PPXH$VL@PD( J! B @  0 B˘!pLs$ !pP d *XH$BVL@P( J! B @ * ` B˰!pXs, $uf$,B PJ!B@X r f$ ,B PJ!B@X 0!0Y8$HPJ!3B @Y @! fB B3B D@YD02B,, +4 H$B$,E$3B P@PX0! HX3 J!B XX )B! r)P0 !p p,`c !`X @! B A @  @X0N!p:H, @, C!( J!B@P ! # ,,@ D !P78 !p p, fH! H P$,88a$B@Y H! HY$,BPJ!B@P ! ,B 1BD ! #,, aH H IR$ C P!p( p, f "! X ! HB`B H& @X0N!prH, , C!( J!B@P\ !B,@cD!0 H` 0 , a H! HX P@!(B(,`,p,, H,@P, S!( J!B@b D1B BP !0 0 ,$,B PJ!B@X ! # ! `c 0 @ Ac H0$@8! P$A1B(" ! H HC !0L X&P! !@P @P,c *!X0(!pB8Y@ $:H CC J!p (PC$r f$,B PJ!B@Xf !   ,@DB3BB0@3B `X2B ,, +4 "DBD,@UD AH`fH& 1B@ H,BfH(P3B *X!p2B .X !`B`, d 2 X !hBh,`a63B`l,`X `!p0# 8,!8Y@.!B HYPQ$dBh,u($"~, J! ! 8@! ! ,@` D@Y0B!pB,X A!@ # a BP  A!  , @ !0 0 ,`@3B @3B P@PXP1B("< ! H @``@H&40! $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 4" !@P hXP*! `,,+4 .p\Bp\,µ\,AH f`21B`,@Cf`43B 6`X!Ё2B :X !xBx,c >X 0! #aNp3B8p,8Y @a!80# 88!8Y@:!B HYPQ$|BbhM$QHBXJ!HzP J! ! ,$,B PJ!B@XX qE! #g @Y @!0 0 ,8!HPJ!0B B 0B DP ! ,$,BhXJ!B@X !   ,@$ D ~Fa@03B `X !0 0!0B 3B P@PX P!( a(" ,,`g &`X &!0L 0L,& IBL$@-Ba *!X 0(!0Y 8*!8Y$,B PJ!Bg @Y0@!, z $s f$ ,Bx PJ!B@Xr 0!0Y8 $HxtPJ!3B B Y B! B?#0B@ 3B D@Y D!  1E!00B3B @@X @! a ,, g " X "!D D,")BD -B`a &!`X 0$!0Y 8&!8Y$,B PJ!B g B Y0B!, 8! /B_ 0N!0Y8Q$B@Y H@! HY$,BPJ!B@XX E!  8D0! !$03B01B`0 ,Af @VL H$B$,@XX,,@a $!@X !0LB0L,e (X !PTBPT,H`,W 8N8Y @#! , ,@,` `*!`Y$,~, J!HN J!3B B Y A!   ,8D!HPJ!0B @0B BP !   ,$,B8XJ!B@XV ! ,@. D B , B03B `X0! H~PJ!0B @0B BP !   ,$,B8XJ!B@X ,, B,,`] @@X U0 `!@B  (`0,,` ` s$ ,,`XX !0 0 ,@  B 0  !0B 0B@,,XX0,,` 0~F @0'B p i\ P !( (, ` H'~F$B0B @Y0,,`"B @,, XX H!$ @` PH(@G$0,,XX A! @` P) @`(,, XX H!$ $, OH B$,,`XX !0 0 ,`@B @HH@ P !( (,B@X !  ) 1~F`(! 2B(c (c(b 0He @0BB0B ,@eDL BB`e1B @Y X@`XX0$ HXJ! ,,  AE! #a,@0@1B `X @ *& 0  @!@X0!pB8Y@ $HPJ!1B B Y  +& 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , b B Y05$pB $}, J! ,x @,,@ 1BD,,  B Rp C0,,`   P $sf$,B8 PJ!B@X. !   ,@d D@Rp (0Cqe ,,`,, H H HR$(`C P!p( p, d "! X ! HB`B H& @X0N!pZH, , C!( J!B@P $rf$ ,B PJ!B@X !2B,`@d `X 0B!0Y 8@!8Y@!H@Xr J!B Z 0B!0Y$,Bx PJ!B@XX )D!   r)PP !p p,`d !`X @! B A @  @X0N!p:H, @, C!( J!B@P$ !2B ,`@d `X 0D!0Y 8B!8Y@!HXr J!B !   ,[0D!pB8Y@$HPJ! ! ,[0B!pB8Y@$ZH C; J!p C ! ,$ @~F@dD1B B Y B! 1C!0`2B1B H HX H!$ @d$,,@b $@X $! H  H,$EBH"0-Bd (!X 0&!0Y 8(!8Y$,Bx PJ!B@XX D!  8D! 8!0/B_ 0N!0Y8Q$ B@Y H! HY$,BPJ!B ! B ,`,X C !DBD,@Z 0"!0Y 8$!8Y$,BX PJ!B@P ! ?#(K2  ,,@ D@R(` SY! `qe r f$,B PJ!B`@ @!@X> ,,@ HD O_$D,, V "@_H"p-B`_!`B0Y8Q$LB@Y H(! HY$,BPJ!B b B Y0B!, ,,`] @@X U0 `@!@B  =P0Bf0b J!0#P J?A #P pJ?9 #P K?A #` !J! # /B—~F ,@(DL BB`(~F @Y X@`XX8$ HȁXL! ,,  AE! #/,@0~F `X @ *& 0  @! @X8!B@YH $HPL!•~F B Y  +& 0  D! Y8B!B@YH$HPL!,, @p q J?#   , , B Y8=$B  $}, L! ,H@,,@D,, B0@~F~F H HX P K?#( (, / "!@X8!(B P,@EX$rH c"5? L!~F @ ~F DPx ,,  B d RpC K?#0 P! HK?#$ @A/ PPXP$VLHR( L! B @  0 B˘!pLs$ K?#P B/ *XP$BVLHR( L! B @ * ` B˰!pXs, $uf$,B8 PL!B@X r f$ ,B( PL!B@X 8!8Y@ $HZPL!,,+4 @B, B B~F D@Y8D! HX) L!B , B Y B! @-D0~F `X@~F @~F H HX H!$ H?#~F$A~F " X "!D 0#! !~FD$0A~F &`X &!0L *L(P,,, ,X ,!`X `X,,PUBX*p-B* 0!X 8.!8Y @0!@Y$,B PL!B + B Y!0XL 0 B0 , @D!@Y H! HY P!@PY$,BPL!B XX )B! „)P J?# ,`- !`X @`K?# B A @  @X8P!bH ,@@, C!( L!B ) B! Y !J?# #`( `X#]$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " @`K?#  @~F P@PX$ (BD$0A~F &`X pK?#@P `BP&PA~F *X *!T #( ,`aXB(X.A~F 0X0A~F 2!dB@(d4~F`l,Z @ +&t0  :!X 86!8Y @8!@Y H! HY P:!@PY$,B( PL!B , B Y B! @-D0~F `X@~F @~F H HX P`K?#(B(,H @R!@YH$ZH C9 L!p @C !K?# ,@~FB B~FD0~F `X  q7  H`K?#$B$, $pf@$$B HY $,BX PL!B@X !K?# ,$ ,BPL!B@!/B _ 8P!8Y@Q$B HY PB!@PY$ ,BHPL!BXX A! 8@! K># #`/@H ( |F@ ,@( AVL "DBD,@XX0,,( (!X J?#PTBPT,. ,X K?#p\Bp\,- 0!X 8"!8Y @%! , ş HR HY P(!@PY X*!`XY`,!\BhY p0!pY $~, L!HF L! !K?#   ,. @Y8D!B # L!B~F B B~F DP< !K?# ,$,ByXL!B@X> @! –~F@ ,-@!0 H`0 ,@p, HD! HY P!@PY$,BPL!B! bH`/@~F @@X 8@!8Y@K>#B!B HR HY $,B PL!B@_!pB8Y @@!@Y$,B PL!B@XX E!  -@0~F `X@$ B ~FP~F H" HY ,,@B P$@PY @K?#0L 0L,K># H" T PWXD T TB8*!(B8 PL!p*LB  P!@PY@$,B8 PXB!B !( XB!B, @Y ,,@D0B@~F @@X H@K?#$ B$@~F P@PX8! HPL!,, B|F, @Y @! @?# ~FD0@~F `X !0 0! ~F @~F H HX H!$ @*$,,@, $@X $! H  H,$EBH"0-B* (!X 8&!8Y @(!@Y$,Bx PL!B, @Y8@!4, ,,`] @@X U0 `J!@B P=2~F X! 2B(c (c(b 0Hd @0BB0B ,@dDL BB`d1B @Y X@`XX`$ HmXV! ,,  AE! #a,@0@1B `X @` *& 0  @!@X`!BhYp $HhPV!1B B Y  & 0  D!Y`B!BhYp$HPV!,, @p q !   , b B Y`9$B $t}, V! ,H@,, @DRp (PC%sf$ ,B PV!B@Xv A!B,X C,, @qw @! A-B,, #!( V!B@P @! @! @?#C,, @`@O @,, @re H@!P$ # XX @#!D  ,h@ ! H  H,n? ,,`] @@XPU `!@B !0~F !(e0,,`1B B2B@B2B,`d2B @@X  !0 B0 ,@ (!(Y$,B PF!B` @`! #,,@e P@PXX!9(x)@qP H" D P$<HP `!0L 0L,(*@9Lx)`r T( @P @P<  P7 !X #e .p]sW !` 1!A3B`2AH`gh6 h.9(! !p 9!A3Bp:AHgx> x.0! A ,&0  @!Y ! #D 0!( # 8.(! 8!p 8O!0@3B H g "| H.9(! ! H @%!@3BH Hg$*T X.(! !0L p'!@A3BL(`!HgX0, h.9(! !d Ȑ3!A3Bd4!Hgl8 x.0! ,,:3Bt<,,>B3B|@ 8.0! @,,% HP3BJ`,,60L0@3B H.90! p,,D=8N3B,, "@3BDt X.0!  ,,@”$3BHP,,*0A3BT&D h/90! @,,¦(`3BP,,,0A3B`2 x/0! ,,@C43Bh6,,8A3Bp: 8/0! $1Bx>1Bx,fx@@"HgJ H(/9H! !0 0 ,`@ ` R 0! #`b !`X @! # P!8) # X /H! !D D, B " BR H!$ # b H! HX !HH #` !T # h.9H! !@P @P,B (R !X #b (!X !` #  !h #n xl.H! !l l,`C 6`cR !p #`b 6!`X !t # !x #J 8/H! ! ,D @R ! #b @!Y (! # !0 #& H.90! ,,AF@3B p,,>8NA3B" H$ 3B$$ !0L L C !T # `!`XB`X,aX(2B 0`k @!d d,@e4H@8h2Ё0B : tBat< @!| |,>P0B (JP B`a`2B 0Lk @!p\ p\,e @@\# a " DBaDNl H@!$ $,@e $ KX@` H& $#a (@ PBaP,0B 0X `!p p,Rp00B 4 hB`ah6 !t 0t<0! @!| |,g @}#`a 0 Ba J 0!` @tX! P@!( (,\p0B 8Np B`a&0B H HX ! H H@0B (@ PBaP,\ @!` `, #d00B 4 hB`ah6Ё0B :X !x x:0B @BaH @!0 a (J!(Y J @2B 00B`0 ,d L3BP2B("pA3B.0!2B\&p2B HN HX @! H  H,d *!X !@PB@P,H($!`TB0Y 8(!8Y$,B PF!B`g 3B HHP P`!( P!2B(" 2B $KcD !L  ,(@@$U `!@B %1~F !(d0@2B0B 0B (@(Y H!$B$,(( $`B0Y 8!8Y$,BPF!B@P !0 0 ,?  , @,,@00B H@!$ $, !HH2B_$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "$2B "pD q @!H #`d &pMs `!@P )!P2BP*`AHfX. X&(! `!` 1!2B`2AH`fh6 h&90! ` ,&p0  8!X `!t #C !| # x&(! a!@  I!P2BJ`"HfN| 8&(! @a! @AQ!2B0 Hf @T H&9(! H`!$ Hp!2B$!H@fD$, X&(! `!@P )!P2BP*`!HfX. h&90! ,,03B`2,,@42Bh6 x&0! ,,83Bp:,,<2Bx> 8&0! @,,D% HP3BJ`,,50Lp2BNt H&90! ,,D@3B P0,,`2B @D X'0! ,, NH3B$,, " 2BD$ h'90! @,,B(P3BP*`,,,p2BX. x'0! $1B`21B`,@e`4!Hfl8 8('H! `!t t,C :#R !x #b :!X `!| # (! # H '9H! 0a!` `,D5 0LD0R 8!0 #b 0L!0Y @`!0! # !@ # X&H! a! ,D @R H!% # b H! HX P`!H( #  !H #n hl&9H! `!@P @P,B (bR !T #b (!X `!X # Ȁ!d #J x'H! `!` `,C 0R Ѐ!h #b 0!X `!l # !x #& 8&0! ,,C:3Bt>@,,& HP2BJ 8$2B 0A!`  C ! # @! a @Y @iW H@!$ $,H3B$ !PD @f8$P2B 0*0Y @!@P @P,B ( YP,8Y!( X@!B!( X@!B`a `X  !0 80! @@!  ,@ @@X H!$ $ !D @a $@X $Hi70 @!0L 0L,&@3B (PP @a *X *!PT PT,f ,X 0U, @B(Y0!,B PX@!B @!0 0!0B 4$ @$U `!@B  51~F`(!`B((d(@d(cB2B @Y !B,@a D!@Y@@!B HY PD!@PY $~, J!2B @2B BP  A!  ,h@ !0 0 ,P1B X`XX `!D D,@a $@X &0L0  &!`X &! X$!DB AX H HX @!@X: J!p 0C @!@X !h h,H42B 6`X 6!l l,bX@"1B PB@PYc J! B @ 6  B!0B0B P(q  @!@X !@ @, P@1B 2B H HX H!$ `b$& !@P P(! @!T #b ,!X ,&p\0  .!X !`B`, e 2! X @,!@Y H.! HY P0!@PY X2!`XY$,~, J!B1BH@b1B @B@Y ! @b P@PY`$( J!`@p C (@!P b2BP`1B(<$ @$ @!@X(N!@B@e ! % 3~F@ !(b(@a01B `X a! , a B! Y @@! B A @  @X(!`Bp,@, C: H!p (0C @!@X Q! , @@@XU `!@B (92|F0!pB( !0#P A #P p9 #P A #P p9 #4 ! #@bD 1B@ ,`DcF0B@0B, cB 0BD 0B@ ,`cF L D Bb@B0B B Y ! , PV!:H$$Y( L!p (0C @!@XF !! ,@D D`_DB0B B Y B! $`'$@0B P@PX$ (BD$0A0B &`XH&! HX  L!B@a D00B FP  A!  ,@  !0 0 , a P@P@O(A0B " X @"!D0 D^)@f $`⟼W@D^)BS P& H0#` *X *!PT PT,*`1BT,p1B.H 3b`2qH`#bh6!1B80B:Hax>rH aR0BT0BVH5aZ rH`$aF0BB1B@ ,`` 0 B ` H HX H! HY P!@PY X! , 3!<( L!B@b D ~F`eF"1B BbB`e2B@ , c H! HX P!(B B P(" @PX HT! HYP$$B`XY `!`Y$,BxPL!B@P| !!   ,`D F d _F0@0B `XH$ B$A0B " X ! H0  H^)` &⧼WPH^)RS T( L0#` ,XH,! HX.a L!B b B! Y HB! HY$ ,B PL!B`a F!`Y HF! HY$,B PL!B a B! Y HB! HY$ ,B PL!B ,@ a!0B,d @!Y !B`@  `X HT! HYP9$B`XY `!`Y$ ,BPL!B@P| !!0 0, D Bd_B0@0B `XH$ B$A0B " X ! H0  H^)` &⧼WPH^)RS T( L0#` ,XH,! H@X` L!Bb @!Y H@! HY$,B؂ PL!B`a F!`Y HF! HY$ ,BȂ PL!Ba @!Y H@! HY$,B PL!B ,H @ ! # ! B ,* @B,`c !`X H!$B@A H$  HX HD! HY P@!@PY X!`XY `!`Y$,B8[XL!B@P| !0 0,@Dc D@Y ! ,@00B H HX,,@V  X !0 0 ,p, @F!( L! ,@X Р!@h #`b 6pl q ,,  B DR(K P!( (,`0B @Y @! ,@ H ,&0 ` L!`@p`K~ !!   ,`D F`%_FP@0B ( (XH$0B$&@A0B (X !PT0 PT^) ,⿼WT^)S `. X0# ` 2 XH2! H X_ L!Bb @!Y H@! HY$ ,B PL!Ba ! X H! HY$0,B PL!Ba ( !(X H ! HY$,B~ PL!B ,@ !! ?$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 ", @Y Y@!  !@, p q ! # !@B@,`* F0B0,c ( !(X !0 B A   `X H! HY PF!@PY X !`XY `!`Y$,B(VXL!B@P| ! H@x% !!   ,c ! X !0 0,c ( !(XHD!B@PYXF!B`Y$$( A!B,c @!Y  ,& 0  D!@Y !@ @, ,@,`, $0,BX| PL!Ba ( !(X A!B, (,@, #!<~, L!BXH !! B ,a00B F`Y (`!P F00B `X@$ B 0B P@PX p!D @APD 0B $@X $!H #`a &0aLBaL(P0B *X*`0B ,`!XBaX.A2B`, b 2!`X H0! HY PV!@PYX1$HXz L!B`  X !P P/DB0B B Y $0B@0B @@X H!$0 $^)@A  ⏼W $^)@"S H" (0#`` &`X !@P "P*`A0B ,X !p\ \,A0B 0XH0! HXF L!B`  XH! H(CPL! (!PBP, (, !<( L!B a B! Y HB! HY$0,Bhx PL!Ba @!Y H@! HY$ ,BXx PL!Bg  X (!  H(P!@BP c ! PI1~F X!B( `! # (@!  #, @B`@aP`/B`c !`X !@B@,(,, , 3@!~, V!Be @2B  P  `!  ,( @H!1B@P(,H,P, #@!L( V!B@_ !@B@,(, , #@!4( V!BXX ( !P d0@2B `X @! B , b H! HX P!(B(, x!xY !Y ! Y$T( @A!@ #e  P< P,,( ( @(R(C  !0 0 , a H! HX P!(B(, b "! Xp!$BxY !Y "! Y$( @A!@ # @!@ p (C ( !P P,`c !`X H!$B$,@b P!@PXp ! BxY !Y ! Y.? @A!@ # @!@ p C ( !P P,`b `Xp ! B #V V!2B P @!@ p PCP,,`@) H O_$H a(" A2B $@X $! H $?#02BH&@A2B (X (!@P 0)!P!2BP*`2BX,c .!X !`B C `2 X p^!pYx$\BY 0! Y$,BPV!B@X (!PBP, ,(, #@!̸( V!Bd ! X (!PBP,`c! H`0@0 ,x,  !Y ! Y$,B~PV!BX (!PBP, ,(, #@!d( V!Bd ! X p^!pYx)$,BXXP!p `CP,,@) `_ ,,@AI  _DL ! HBH,x,@!, XP!p @C@,,@!  `_  H!$B$,x,e@!L, XP!p @C@,,@!  `_ ,, AI H !HR$(C,,@VP,,@XX p%! H `XX &@P0  (!X (! X '!0 0 ,p,  H HX @!@X V!p qC,,`C @6G_6,,`@Q '_P,, A)  _D H`aH&5s#e$,Bm PV!B `!  , (Z!@BHe ! `?#e@b x &<0   8  U`=bP2!0,,`@0B 20B @Y Q@! B)P sf$,Bl PZ!B@ @!0 0 ,`@ P, HT1! @`!P! # aHH@P,WL @!D D,@a$0AH 8H1 `t@A1B@X P$ H  H,BP9Hx)@r X* T D<0P `!p\ /?#0B\00B2H< H! H?#p  C2 HTq! P8 !l  XlpW %w f  !p  pP!pY$,BXj PZ!B`U `!@B `?#e@b x &<0   8  U`=bH2!0,,`@0B 20B@00BH0L A! ,`aAH 8 1 `t@1B`X   0 0 , A9 x)`p $2 d $<HP @`! @?#0B 20B@0H P! P?#p ( C2 8R! @8 H!$  0$p %w f  @!  pP!pY$,Bg PZ!B`U `!@B PE3~F X!0,,`@1B 1B Hp$ q !X #,,F@0B 00B `X !0  0 ! H`!$ $, !Jx00B `X ! ,a @@X @! ,xYh$,B8f PXP!B@!$( XP!B`a `X @`!  ,AB@0@ B 0B H HXP$%B(" `! H  H,@$00BH&@0B (X )!@P a *X p+!PT 8T(! @!`X `X,,h@X.4H! @!` `, a 2 X 3!d d, R@hd4 cBd0$ @!l l,`6 !p p,C :Nx:1B >X >!| |,c >cR|C `A! ,Ee `Xe`RC h! ,Ei hZh9P p! ,Eq p\pRp PC x! ,Fy @`eG_`PU `!@B !2~F !(c0,,`B1B @@1B @p q !,,@,D (J(Y$,BPF!BxH !0 0 , (!(Y$( F!1B @01B P H!$ $,H$,BXF!B@X F? !0@1B 0 Bb @@X @! Y (!(Y 0!` `, 3!D( F!B`c Ph ,, - H$B$,AF$,,@RP1B(" 1B $@X @%! H H $9(! 0,,+T (@PB@P,`B֣$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 Fq"P&l !PT PT, *Tsw$ &`X0  ,!X8a!@B Y($`B0Yv f$,B_ PF!B@Xr !P P,((A$H PF!p (`C ! ,$,BXF!B@XN !@1B H%B@b P@PX ! Y (!(Y 0!` `, 3! ( F!B`XX !0  ?#0B ,, K H`&B@a$0B PD,@a $!@X @!0LBB L( `X J! Y($`HB0Y 8&!8Y$,BhhPF!B@P p!0B H$,@,HP, #!|( F!B `!0 BP ,a @!@X H@!$B@A H$  HX J! Y($` B0Y 8!8Y$,BXgPF!B@P P!0B H$,@,HP, #! ( F!B `!0 BP ,a @!@X H@!$B@A H$  HX J! Y($` B0Y 8!8Y$,BHfPF!B@P 0!0B H$,@,HP, #!( F!B `!0 BP ,a @!@X H@!$B@A H$  HX J! Y($` B0Y 8!8Y$,B8ePF!B@P !0B H$,@,HP, #!,( F!B@$U `!@B 5 0~F@ !P,BP x= #P ` #`b 88Y A!B,88$B@Y H@! HY$( H!p pC A! ,a @Y0B!pB #6? H! !#d @!Y ! #g @@X H$H #`g X`XX$ ,BD$03B &`X `!@PB@P,`BP&P3B *X !`XB`X,X*p3B .pa\Bg\03B 2 X23B 4!hB`gh62Bp,`,p,, ,@,`,, sU H! ,@X !@ #g @P$ ` &0 0  !`X H!$ $,`,p,H $d( H! !#a @Y !0 B0 , 8!8Y$t~, H!1B BP, ! `e02B`0 ,Ae 0B H HX P@!(B(,H 8!8Y$( H! !#a @Y !0 B0 ,c @!@X0@!p B8Y @!@Y $đ~, H!1BB2B@2B,`@e0B @@X @!  , a H HX H HX@  XL P( @(" (n)H"00B &`X `!@P @P, (@PBP&`0B ,X @!p\Bp\, 8.!8Y$( H! a! ,a @Y0B!pB #T H!0B B Y Bp q$ a! ,`0 @! #`/ 0 B0 ,8! B@Y $( H! @!@XXJ!U `!@B (-2~F0!(d(@c(c(@b2B @Y ! ,@R!BH@$|9( L!p (0C @!@X !   ,@$ D ~F`bF2B B Y B! 1C!"1B@01B` , a H! HX P`!(B B P(" @PX 8P!8Y@$$B HY P!@PY$ ,BhZPL!B@P  @!@XF a!0B,c @Y A!B,@p,EH@!B@PY$ ,B(BXL!B@P  @!@X !0 0,a @Y @@@ #(U@ `!@B (5`0Be@b M?#0#P M>A #P pL?9 #P L?A #P p@L?9 #$ L! #@6D ~F@ ,`D0Fš~F@š~F, 0BL @B@7D0~FF›|F B Y B! ,0 @Y @`s` !L?#   , D`sP M?##$ M?##` M?# #D6@ š~FD0H`5 FrH@5D0~F0›|F F`Y L?# ,HT!BH`$6( N!p PC M>#   ,@ D@YD~F@0›|F F`Y M?#0 0 ,H!HHPN!›|F @Y A@!0 ^)@6 D`W0^)`0S  F 0# H@M?#@$ #@5 P!@PX M>#D "! |F $@X @!@Y H"! HY P$! , 3!ܥ( N!B@7 D@Y D!  D?#0~FF0|F `X !0 0! ~F ~F H$,@3 P!@PX L?#DB@B D$  X @R!@YH$(B@PY X"!`XY$,BSPN!B@P  M?# B ,`3 F!`Y @D!@Y HF! HY$,BXJ PN!B M?# B,`0 F`Y L?#0 BA   `X @R!@YH$B`, C!~, N!B@P L?#   ,D0B~FF0|F `X H M?#$ $,H!HPN!p C M># ,@6 D@R A@!00 0+ RH)`8 F|F P@PX@! H X&R N!B6 @!Y @@!@Y$ ,BH PN!B`5 F!`Y @F!@Y$,BxH PN!B4@ ~F D@Y D`q@!@X M?#0B,`0 `X @R!@YH$ B 3!D~, N!B@7 D@Y D!0 0/ F|F @@X HM?#$ $,@H!HPN!›|F @Y @!0 0' D, M>#0 0 ,$6( N!~F @ š~F@ ,` M># # 6B@YHM>#B|F 3!4( N!B`5F ˜~FD0~F `X @M?#  ~F H HXP $!$B(" ~F $@X$@~F (X (!P ,XX +!T ,1 ,X$|F@ 0 L @ 1," @`0!`BH&!( N!*XB@ X&!`XYH$,B8E PX@!B@!( X@!B5 L?# B ,`6F0|F `X @L?#  , @@ #@6 P@PX$ (BD$0|F &`X L?#@P @P,B(0!LBP&P|F *X *!T #6 ,`aXB6X.|F 0X0|F 2!dB@6d4A~F`l,5 8!@X @6!@Y HT! HYP1$HX" N!B M?# B,`0 F`Y @L?#0 0 ,H, EPF! B C!d~, N!B@2 D!@Y M># #`6 `X @M?#   |F P@PX$ (BD$0|F &`X M?#@P `BP&P|F *X *!T #6 ,`aXB6X.|F 0X0|F 2!dB@6d4A~F`l,5  Y$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " 8!@X @6!@Y HT! HYP1$HX N!B@7 D@Y aM?#0 ` |F @@X HpM?#$ B$|F P@PX ! D  J/H"0|F &`X &@P0  (!X `&!L #5 *P M>#`X `X,$( N!l M># ,@ y@!#`7 `X @! # 7 H HXP$%B(" ~F $ #`7 &`X@&! HPN! M?#B,, !( N!B`5 F!`Y @F!@Y$,B? PN!B  @!@X(U@ `L!@B  ) 0~F`(! 3B(f (e(e 0H` @0BB0B ,@D`D00B00B`0 ,` @0L 0 B g B 3B D@Y a! ,8P!BH $ .( J!p (0C @!@X ! ,  B YBB2B@ 3B D@Y  !0 0 ,8!HXPJ!0B@H@aD0pHa 0B0BH@2aD$0qH"aL(P0B*`0B`X,f .p]Bf 0X 0,!0Y 8.!8Y @0! , 3!( J!B f B Y B! B?# 1BD03B `X !0 0!1B 1B Hp$,@b P!@PX !DB@B D$  X 0N!0Y8$(B@Y H"! HY$,BAPJ!B a B! Y ! B ,`,p, #!D( J!B a B!Y A!   ,8`,D@D!HXK? J!B a Bp q !   ,$t( J!l !B, fB B3B D@Y `!0   D@3B H HXP$$B(" A3B $@X p!0L @BL$@A3B (X (!P #f *PaTBfT,pA3B .X.A3B 0!`B f`2A1B@h,`a 6!X 04!0Y 8P!8Y@1$HX J!B f B Y B!0 0/ D3B @@X H@!$ @!B$3B " X P! H H"03B &`X &@P0  (!X `&!L #f *X0*! H8PJ! a!B,`, !l( J!B@a D!@Y 0D!0Y$,B6 PJ!B U0 `!@B `Q0B`b(k0,,A    B XX @$H @@!0,,` `XH!`/Bl @!@X @[?#0 B0 ,H,@, , 3P!d~, \!B`j @~F HHP  PZ?#(  , @! A~F@ H,,, #P!( \!B`@_ @@[?# B ,,@, #P!t( \!B`@X @ [?# B , , H$B$,@m P!@PX x!xY !Y ! Y !@Y$,Bh4 P\!B`XX @P! '/$,, BQ "@—_H"0,,B (_T(`,,B ._`.~F 2P @$ `[?#hBh,`jh6A~F 8X @[?#t t8A~F >XP-$|B^C~F `Y Q[?# F` C~F d@Y !d! #`j f0cB`j@~F H HX P [?#( ( A~F $@X8$@HBL(PA~F *X 0[?#`X BX*pA~F .X .!\ #j 0a`B j`2@~F @@X $ #j 8X($pBt<A~F >X P ,&0  PT!@PY >!P} #j x^xY x!^! #j `cB jb C~F d@Yd0@~F 0 B`j f,H, P!d( \!B`m !`X,,@, , 3P!̹( \!B`HY x!xY$*( \!~F T0,  PZ?#H( # i" BxYZ?#ô~F 3P!( \!B`@Y,,, #P!( \!BD@@0~F~F @@X H[?#$ $~F P@PX$ !(BD$0~F&@~F ( YP,,B *@Y Z?#`X `X,Z?# H# `& cXD ` `Bx0!LB. P\!*XB  &!@Y$,B. PXT!B P!t( XT!BPPB@"B@0@B0 B @aE_ 0 L 0 B0 , I ~F HY P +&(0  P!@PX xR!xY !Y$,BP\!B@X ,@j TB~F @P  H &0 @R! @$`U `Z!@B  - 2|F`(! 1B(g (f(f 0Hc @0BB0B ,@cDL BB`cB3B@ 2BD03B2B BB`XX ! , @p q  pf~ $00B00B`0 ,` 8!8Y$,BXJ!Bg @ 3B DP$ !0 0 , sf 8!8Y@!H XJ J!B@X: A!  X@!`XX ,,`x D,,  !H#`XX !@P `P&P,, @+!T #g .X,.ZL 0` g`23B 4ph cL ,,XX,,XX !| |, ( BB > | `|,1p|,`9|,A|,8H1rH` !lB63B H'~F@g$D3B P(c7 !D D,@( $ HBH, 8P!8Y@ $HCPJ!B3B B Y ! -&0  @!Y0B!pB8Y@$HHCPJ! 2BDH 4eB0pH!e 2B@2BH@dD$0qHdL(Pa2B*`1B,pHc\0qH@cd41B6,,# 8CRpp C !t #b<A3B 8>8Y 0!`B,b@P!"HJ ,88$B@Y HD! HY$,Bx3PJ!B b Bp q 9$0@0B0ZL 0 B` ,,@A H$ $B b "! X ! HB H,`Y 0"!0Y 8$!8Y @&!@Y $,Bx PJ!B@P A! B ,`b1B H HX P@P$#@b $@X$@HBL(P1B *X @! B*`1B ,X ,!X #b .pa\Bb\01B 2 X21B 4!hB`bh62Bp, !x #a :!X 08!0Y8!tB@Y $,BX$ PJ!B@f D@Y A!B,`) 0 B0 , 8@!8Y @!@YH$ B@PY$,BH{PJ!B@DeD2B@0,, H O_$H g(" ,,@" $@bRpH C !0L 0L,c (!X0&!pPB8Y$ ( ! d@ !  !n$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "p (C `!0 0 ,d @!@X H -&$0  H! HX0!p B8Y @!@YH$$B@PY$,ByPJ!B dB 2BD0,,` ` Rp (PC$rf$,B! PJ!B@X ,, D B B3B D@Y!`Bp,(X a! , d B Y  -& 0  D!@Y0@!pB, 3 J!0B @2B ,`, !\( J!Bd @!Y 0@!0Y$,B PJ!B@c D!@Y 0D!0Y$,B PJ!B a BPH  ,,@ Dq< 0$, !@ # g BP  !  ,@0,,`1B ,, BQ "@@OH"01B &`X P'!0L 0L)  P7 @,, (BRP( CP,,B ,B_\,| !&`0  00P0 !d d,@`4A1B6`dB`@!HX X@!0BBwf$ ,BX PJ!B@X ! ,D @P ,,`@  H O_$ P!( (,@AU P@APR(@C,,@B $`_L$@,, (RP C !pT p,b ,!X !p\BC \0 X0N!p:H, , C!( J!B@P !B1B ,`,p, #!,( J!B,,D @Rp @C 0!0Y?  ,, D  B $Rp 0C0$,  Z?  ,,@D D@DRp (C  &0  @!YHa!`B0Y8$B@Y rf$,B( PJ!B@X  ,,@D D@$Rp C !p p,`b !`X H!$B@A H$  HX0N!pH, H, C!( J!B@P  ,,b @Y@0B H JO$T P!( (,@AU P@!PR(`C,,@B $`B_L$@,,B *_X*p,,C 0 _d0,,@43Bh63B 8X,,C:qBt<3B >X,, BA}B> , !`B`, !|( J!B f B Y0B!\, ,,`] @@X a!  ,  U0 `!@B  % 0~F`(! 3B(d (c(c 0Hg @0BB0B ,@gDL BB`g1B@ 2B D@Y XD`XX80! !0 0 ,`  p q @$ 0$ HXJ!,, AC! #@a,D01B `X @ ,& 0  @!@X0!pB8Y@ $H8/PJ!1B @Y  -&0  B!Y0@!pB8Y@$H.PJ! ,,@ Dp qp ! e@0@2BH d pH d(" a2B$0,,`" &`bRLC !@P @P,d *!X0(!pTB8Y$( 1!  e@ ! ,`e `X0$pB $d}, J!0B @ B2B@ ,`, !( J!B ! #0,,` p q0 ,,@@2B ZL @ B ,@+ P(B(,e 8!8Y @!@Y $,B8KXJ!B8H,, @p q0  ,,@ D02B0ZL 0 B0 ,+ @ B ,e 8!8Y @!@Y $,BHXJ!B8H,,D @p q0  ,,@D D02B0ZL 0 B0 ,+ @ B ,e 8!8Y @!@Y $,BXJ!B8H,, @p q0  ,,@ D02B0ZL 0 B0 ,+ @ B ,e 8!8Y @!@Y $,BPJ!B8H,, @p q0  ,,@ D02B0ZL 0 B0 ,+ @ B ,e 8!8Y @!@Y $,BTPJ!B8H,, @p q0  ,,@ D02B0ZL 0 B0 ,+ @ B ,e 8!8Y @!@Y $,BPJ!B8H,, @p q, !0ZL 0 B0 ,+ @ B ,`,p,@, 3!, XB!,,@ 1B DP` 0,,`@@2B @2B H$q7@ P !( (,@!P P(qw0 !D D, " "Dq  0!0YN? A!@ #e @P  A!  ,@ !0 0 ,? $D ( J!0B BZL @ @dD0@2B p c4 H !$ $,@( P(B H( $  H, `$B`, !( J!Bd @~F@dD0@2B p c ,,AB @ q7 H8$2B$!-Be 8"!8Y$,BXJ!B ! ,@ ,,@ D@YD00B,,A@@2B 3B,`2Bf$4W~, J!0B @B@X U0 `!@B ) 2~F@ !(b(@b0,,A  0B, cB1B @@X HH #c @Y$B"1B @@X !0 A@ 1B H HX H !$ #@c P`(B c("1B @Y@1B B"B`c0B@ , b H HX P -&(0  P!@PX (!(Y0!pB8Y @!@Y H! HY$,BcPH!B b B Y !0 0 ,) @ B ,0!pB8Y@$ B HY$,B\PH!BU `!@B  % 1~F`(! 2B(c (b(b 0He @0BB0B ,@eDL BB`e1B @Y X@`XX0$ H(XJ! ,,  AE! #a,@0,,`@ p q pf$,B PJ!B@X !   ,( @B, 8P!8Y@ $HPJ!B1B B Y -&0  @!Y0B!pB8Y@$HPJ! ,,@ Dp qt ! dB01BH c pH c(" 1B$0,,`" &`bRLC !@P @P,c *!X0(!pTB8Y? !  d@ ! ,`d `X0$pB $̎}, J!0B @ 1B@ ,`, !( J!Ba @@@XB 0!0Y? !@ # c BP"j$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 '"y>aL܄D h40`{u`&%|!]< ks9p2З`,VmܝՎ?|~5= @b@jp lH.yt~CacXf,6E#$a˿9^D)]c .&+ ،k"Tx@y&00SWP#]ȫh7 6;oQiEVpbE`iXaZBoS# ϼbõwutPx&$ 0x f]gM>/2E$ETV@3O v+3L0?E dg@&༡~׼5>n@6ى4#xCt k2>!r)!@8h7͡%ߑ$sEDEPՎi6 5l/M{P2o\JEbP^{-@*(A1!yygI Xax8]X 0l!3OL} F0i,?#.kC[xn[`AE1"?V)^3 +0Q`Zb9%!{\<hYz&2p| Mg m]ɇTSg1 @0`2|0(4 %[c?82B#`*>ǏvɀIr"$̝q8 'o>PQF}w%6$ :`)8X|tc/)nr0Y,3KRej3ͦpEp?:p9R|wy~3%Hs Ip];99%aX}㼻4f`u\tثbeat ]X Ũf cFU8xYp@y2' v_g`63W?;cT\75#Z "3Hh#n@1#sڋxapEC@(R݁^ZϘ9rQ00r|ݦ'Z SicrgӪkF8D85`G^n Nch(5PU%O7|'QO)C.L7dj[,d8Ԑ:5Dv4h)? v=yiK1 Y};#\/0w@WF]`+ PD x#@( `wQ % қ.R`"I 1m$1\I ƅ&ng*emUaR2FǶV#^=x^ 5h19<1Sj79ӵ#7^~`q^1_mAZ Z63`|8SzXwR% #`x&/}3``V6TL9c!k@|P%Ë@YO񔽗s1UE;՘{cF~ o (]Ϲ1!ԆWL_" ^IPx5 b\1@ҧ`3!g!@G1#P [D΃:O 嫦WZK@Uj!Pgr,&`lw j!!DTts6[7^`4:~&P(l, p<3vћki#5Ä;t@*Kh]ZJq@HNxe!BhK168n3`_x;I&0rM>< BiT1;u^ DK; @TZ&p .s0Y RW }pz`"^E%9t~dtc \-/sW^#oN4ORw5~2w(yc2Qpa$R`D(+5 J*l-+3QUʣsLHBI004  5 CT@P!|pr{xY_pž/p_ljNQ c3 AX$W?&d">^[$Nf93h0/x?<5R:Y x($$r,`OVhz-wR xztOoIf V ]?%Rc:3)\@OZ  ? q| @S0 td 0 gP&};2 Цj.Rbp!^P~vLK'1in02vM`21+Mmb*`~@AP@^‡ .-AVie"l`Z0_v@C I]ypQ" O,#P kQUqL`h<<@ ;' ŴA~'W+cDRmqν5`ำˁO'pQvJ`PP9 dnYib< e1`-kۑP B >CD  [ Ͱ%=!67C}]!j$S!‹Y]<< #|@M[@poXTCPq K\4+ ?6pIe`Al]rPqP&2[$^>P^J їfZQ_@)Vcx|u0Nrȱ `!Ћmt  3$37~)䤂;M$0U]:y%!p8ru&uK=@2E* PtD !!iK+ =qf pwn#T繾6cN#>0$ۑ#L{I>NU~G&^|!w蟤ajNm@W]{&/J YRi02"]Xli!F1}~"f6a&|`t4mj 8\FgCq,#3|BXC'<¸?ĕm`"DrfDP< ЗPd%?] M@| Pz>DG`ހAƒYWX 8YXTzE3?0VR*!|4ASPТ<6Pf.xO X }3ClBhEP5PKt4bnxJ!qǼ=F i wTX"0{@J}(0'0oD#NS5 (\>nYi;Q0yঙ/pu9! lC @YXgqUF@1gZ , ׿X9u5 WT@ܡ7{q@dNxԩn7}IRC` ?XhHUuc ;ӀPQ$X|EAq ނypD-/ CJ1ZHqlDt `Ǭ pNJR&F!M@W7VsLN@(R!:! 7 @BM18 ~a Q\t`@5PpzZX8o".bT6pzgP<p= 7prM0v +FY\ʌ92zkWw*Bv_DT8a;|))t`\6x{j St>k T"1Hfs+F x5076"Ι\"x10D`ٰ!(8,0M#|p M-vAt)%RicXH2É\3y8^зe@TQU C /8E!>mAS\o`3Kv@ уoj`kA63<H+dLFֱ I6@]H& %0?;@<3age[*!PH#6pK3ppqmU)^a%ypD. `4z???UQ7+n :ʙ M|$MuR`[2-WCK@gqQCflԀN wPxY,ң!'<' PX_H _Sco8;#"dg% $b-8HAbZ௯Й0`Nh8 zP z l7qh;I ;jLl/JⲲqWXcp\S-I7Lqc`RQ(#aQɬplyt|Pcz%fQVR2 cLnuX䃷\/jVF 3ԣh(PEp%cj Мyx=L#($3s DX VYPF?c]YPT_8Q /0 ٥>2M)/aSC,@ٕ`yO xq3@0+P>PVAG!d!OE@jpؿ>^9p9 ,QhGzm^+AT&&zw+ >>yO?N큸TzJՠqS;Z83 (x(Qe"YI@V9B=X쏳AyW^;Y~[*"|n_1YF|bpcXiW_l0f#X.!]3B.R`ޖ788Bۣ_θWa(}\Mْ(`9,@2bCmsGGY [h7@B'QLP0`&Gh6yd"p0L#f8@c9mxU9*6$a l<7b*{|%;f"@519%BQm l`: /WDj-fHu9`T ~'pxM@Z=Q!`>[&1J"r>nYS9X$ ~ ?@,MYKAiDuh٩b`# ^J cK]1BY 0>4 /@Rȩ7r,e@Y\^#1"c-wوm6ax6(SHS$D]A>\ m `N!5' }I0x8O(@DU02 凮䔕c0i=!0g'Y2y*C7sLU *XQqAEq@ReTPq#C#'"_I@e 1o r`7P#}2B,X[IX%=ha> Qz# @W#tKddV>!_f0: `IF:ѧj.YH̚B t<wv|""]4`Ģx߀e T7 yp% 0\V5"~ŧ/{\R6E[s!ߘzaHmB ӳY V1xUOx"lųc.a`KzRkuJI@@&k[9`K 3jR`SI[$ã|y@F=c*?` pW8 @o-w5 3@ ;`p L TE#pWL=@ރ2x l #!a?&-M Z},_u0p%0A #%`PBG@iJ}2vS{SϨq AɜM C9eg5X+L;R<ka;`R^u\]r)46%5*.B(V;0m11l",bO 'ʋ>X8'Q Ƿ`W" @A@f+DG(5\Q@+o@j.l)0QE?uQIQd2`T+71pm3#!(%r Un*$f1q .s':*B |,X@<4Pd*A:i.a@羷xݠ4u.Mzq'P/@5@TP9຅XǠ`0F Z6n?%@4?X71`g!g A@181{4PJk 199V](A (,!)-dN[5[ @V-9A 0lCxԵD7aj2ң^X9h1G("xiXR7K۰nF6B;/gXD!4@*KDh`$ \('|# @8ax 51 %E$viXL9U:~a)P:@a4$#6$$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "  !  ,@ !` B`, !,( J!B b B Y0B! , ,,`] @@X U0 `@!@B  ) 0~F`(! 0B(f (e(e 0H` @0BB0B ,@`DL BB``1B@ B1BD03B `X X`XX0$ HȫXJ!,, AC! #@a,D0,,`@ p q pf$,B PJ!B@X A! ,@( D B, 8P!8Y@ $HPJ!2B @Y ! -& 0  D!Y0@!pB8Y@$HHPJ!,,  Bp q a!   ,e @Y0$pB $}, J! ,(@,,   BP ! #f@0,,`@2B @2B P(q ! ,,`,D 8N8Y$,BtPJ!BxH ,,@d D@$Rp ( C: a!p p,`d !`X @! B A @  @X0N!pJH, @, C!܃( J!B@P  !  g@0,,` `R ( C: H`!p$ p,@d P!@PX !DB@B D$  X0N!pHP, , C!T( J!B@P  ! @fD!@3B H HX P!( (,`,H@!HWPJ!b/B`,  J!< ,,D @R ! # XX QB! )P\ `!p p,d @!@X H!$B@A H$  HX0N!pH@, H, C!l( J!B@P0 !   , D !P7  $01B,,@Ad P@PXP$B "@OH" !0L L(C@,,B (RP(PC$w f$,BPJ!B@XJ  ,,@DB2BB0@2B p q H!,,H`,DP 8N8Y$,BoPJ!BxH,,@+4 D B , B0,,` `@Rp ( CN @`!p p, d H! HX P!(B B P(" @PX0N!pHH, P, C!( J!B@P  !   /B0 2B `X@1B P@1PO(,, " BRD( CN `!pH p,`d &!`X !@PBB P* X0N!pRH, , C!<( J!B@P  !   ⋀/B0 2B `X@1B P@1PO(,, "  P `!pH p,`d &!`X !@PBB P* X0N!pBH, , C!( J!B@P  !   ҋ/B0 2B `X@1B P@1P@O(,, B " bRD( CN `!pH p,`d &!`X !@PBB P* X0N!pH, , C!~( J!B@P  !   /B0 2B `X@1B P@1PN(,, " bRD( CN `!pH p,`d &!`X !@PBB P* X0N!pH, , C!4~( J!B@P  !   ‹/B0 2B `X@1B P@1PO( !D H"x!  ,,@B $@X X$! H  1H)`(PW sf$,BhPJ!B@X6 !! , 8!8Y$( J! 3B D3B @P !! ,$ ,BXXJ!B@X ? !B2B BB@d D@Y 0@!0Y 8B!8Y @D! , 3! x( J!B XX B! @fD0@3B `X @!  ,AE@1B H'^D@  0B @3B P@PX !D D, B" A1B $H@@AUD0A2B &`X@,,B(PMBP*`A2B ,Xp,,.`AYB\,A2B 0X00! HxPJ! !! , XX B! @$D0@2B `X,,B@0@ B , a!B, fB B3B D@Y0,,` # f H HXP$$B(" A3B $@X0,,`& !HBL$@A3B (X (!P #f *PaTBfT,pA3B .X.A3B 0!`B f`2A2B 848Y0N!pH # J!p (`C !! ,$,BXJ!B@X !B2B @B`d `X 0D!0Y 8@!8Y @! , 3!u( J!B@e D@Y@!BZL @B, 8P!8Y@1$B HY$,B(*PJ!B@a D!@Y@!BZL @B,`,@p, H@! HY$,B)PJ!B@d D@Y,,@0B@2B @@X,, KH@!B$@2B P@PX0! HȧPJ! 0!0YB? !@ #f @P  !  ,@0,,`/BH`, !( J!Be @Y0@!, ,,`] @@X U0 `!@B p] 3tFx! 1 B(g (g(f 0Hb @0BB0B ,@bDL BB`bH@cDH`c B`XX ! , Bp q  pf: $ B0BD0B,` @! Y$,BHX^!B@` D0B @P$ !0 0 , sf ! Y!H X9 ^!B@X A!   XD!`XX,,`x @,,  !H#`XX !@P `P&P,, @+!T #g .X,.ZL 0` ``20B 4ph cL ,,XX,,XX !| |, ( BB > | |,|,` |,Ñ|,8@H6j`sH!!lB6 0B D ~F``0B H$c7 ! ,@( P(B (, d! Y $HP^!3B B Y ! -& 0  D!@YB!B Y$HxP^!,, @$Rp (PC&rf$ ,BP^!B@X* 9$B0B@0 -B` ! Y$ ,B8}X^!B` @0B BP$ !0 0 , sf ! Y!H@X8 ^!B@X ,,D @2BB02B 0B d @2B P+B d(" 2B $@Y @!L $Z$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 R" ,e ( Y @! T  ,e @,@Y @!\ ,e P0@PYd!H@X!p( XV!B`0 PH@$H@bD$ZL "DBD,@DD0HQL(PA2B*BBTR`A2B X,`XY !\ ,d 0 Y !d ,@d 4@Y ! l  ,d P8@PY !t ,$ BX"8 XX!B`  DH@$H@"D$02B &0OBE@LP@AHXP*`HHX.2B 0bB@P`T2B 2 X !h h,`d 6`X !p p,4! lB`$( ^!2B `X`Y `X! @e D@Y !B, b B! Y @!B,`b XV!`XY H!B,`,  b Y @!@Y B!`Y P!Y V!Y R!Y$,BP^!Ba X 0B Dp q  a! H@y0! A! ,$,BX^!B@Xz Xa! 0V(! Ha! @R9! v fb Pa! PTP! `! `Xy@! A!   ,@TD1B@2B B Y B! `b$ H!$B$,@b$ @!D D,@c$0EBH&@2B (X !PT ¢T(`A2B ,X !p\Bp\,\,A2B 0X !d @d41B 6lqx !p 08! !t @tX @!! ,C @P@Y|P ZL ` @d0n)d@C2B hY !!P P, jPBl X! , f HR HY @@!  ,@b PT@PY$B@H!@B Sj> ^! ,@ `!! ,` @@O@2B B YB! HXJ6 ^!B@X ,`a V0B HRHP PA! ,P$,BX^!B@X2  !& 0  DP, `! , `B0BPB `a!,BXXV!0BRwf$,BP^!B@X A! ,D @p qD A!   ,@DD0BB2B @P@Y @P! E`Xb/B ` HR! HY V!Y R! Y$,B(P^!Be @Y,, BbB@ A!   ,@T Dp qD @A! ,UC@P0BX2B XV`XY XV! E`R0/B` @!@X !Y ! Y$,BP^!Be @Y,, BB@ !   ,@$ Dp qD @! ,%@@P0BX2B HR HY HR! `E`V0/B` @!@X !Y ! Y$,BP^!Bd @Y,, B"B@,,`] @@XpU `!@B  ! 2~F`(b(@a(a00B `X !0 80! A! @!B1BB 1BDPB(Y0!p1BX@`$ U0 `!@B  - 3|F`(! 0B(f (f(e 0Ha @0BB0B ,@aDL BB`aB3B @Y X@`XX0$ HzXJ! ,,  AE! #a,@02B `X @ ,& 0  @!@X0!pB8Y@ $HPJ!3B B Y  -& 0  D!Y0B!pB8Y@$HPJ!,,D @p q pf$ ,BPJ!B@X ,,  Bp q ! ,`e `X0!$pB $t}, J! ,8@ ,,@D D1BB1B @B`a1B H HX0! H X&4 J!B@X ,@e D2B @P( @!0 $H 8! seJ P!( (,P$,B}XJ!B@X6 !p p,d @!Y0N!pH, , C!Dk( J!B@e DB1B,`g3B H HX P`!( (,@1P PP$#@g $@X$@HBL(P3B *X `!`X `X,B,P!TBX*p3B .X .!\ #g 0a`B g`23B 4@X $h#g :X @!x x (8! $ %B 0 :!#g 8N8Y @!! D8N3B HR HY H!R! #@g PTbBg 3B D@YD03B 0 Bg @@1B H$,@e P@PX -&D0  "! X 0!0Y8!B@Y H"! HY P!@PY$,B$PJ!B@ !#`XX @ .& 0  @!@X p!@ # Z P!(B(, e " X 0!0Y 8!8Y@"!,BX XB!XX qA! #@Z ! #``B0Y8!0B X? XB!`XX X@!,  ,  U0 `@!@B 3~F`H(a (`(` 0B H HX !! ,D@B0B B Y H!$   BHa ! `=#e@e x &<0   8  UPQb` !0#$A2B 20B@0B, dBL @B`d1B2BH`gH g2B`Y$!~, V!1B B1B @P  !  ,@H($1B$0B H$,c h!hY$3~, V!1B B1B @P !0 0 , sf h!hYp!HPV! ,@ a! a@00B X`XX,,@qx( ,,`T $!P#c*`,,XX,, XX !h ` 8h1 `t Xd8 h,bh,rh, @$|@dX ЂHbi pA$p@,H 6b sH`&f!dB21B @ Bc @1B Bp8 k 0,, XX,, XX !H#`" !P# !l# ",,XX,,@XX 9!|#% h;!`# =!pY#@4,,XX,, XX ^!`#@& .!# @`! # b,, XX0,,@XX HA!$#`" C!P#@ !PT#@$,, XX,,XX 07!t#% h=#!`# 89!x#>,,@XX,,XX P]!\#@& ]5!# X1!@d#} ^,, * bB, `HJ$7 P8 !  XpW 0,,f(0aLBP&hPq! p8 !  xpD !0 0 , p q4 P!( (,+ *PTBPT,P h*!hY$,B?PV!B c B01B P  H!$  ,h@%$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 d" P .&(0 P2B("\L P(B@ P($ @PX p!PL #d (!X !T #c ,X $X# c 2 X$dBh61B 8X !tBt,Ct81B <X <!x #c >a|Bc|@1B `X`YXЂ1B hZ"Bc\2Bx,d `!@Y A!0B0,,,,,, ,@ ,`0, !_( V!B, @ `e0\L 0 B   `X Hp!$ #@d P!@PX !PD #@c $@X $H#c *X$pTBX.1B 0X !dBd,Cd01B 4@X 4!h #`c 6alBcl8Ё1B :X:1B <!xBcx>2B ,d `X! `Y hA!B ,,,,,, ,@ ,`0, !^( V!B g Bp0 s  .&0 0  !`X@@! B`Y h!hY p!pY $,BhtXV!B@P A .&0 B03B0\L 0 B    `X P!( # f "! X `"!`Y$,B5PV!B b B0@1B P0 H` .&$0 H3B$\L H$B  H$"  HX !HH #`f &!`X `&!`Y$,B84PV!B b B !0 p  C H .&$0 H3B$\L H$B  H$"  HX !HH #`f &!`X `&!`Y$,Bh3PV!B b B0@1B@\L H$B$,0HL P$3B(" ! H `. &0LB0L, !   $P3BP*\ !`X / .p\Bp\,`a(w !` `19! !d @pd4! $3Bl8 !t 8;! .&x0 <A3Bx>\L <xB x@ X `! #( hZ f\^L hZB h^ hY !h # Y ! B ,`f f!`Y @ ! B ,,,,@, Cn V!1B B1B @P  !  ,x@ H !$ $, H "$0 `H !0@ V!Bb @ @$1B `/Bc h!hY$,BHNXV!Bc @01B P8 H($1B$0B H$,c h!hY$,BVXV!Bc @Ysf h!hYp@!H X- V!B@X. @$01B/Bc h!hY$,BLXV!Bc @01B PH H@$1B$a/Bc h"!hY$,BUXV!BT ! #`a !`X`! BhY$,B8UXV!Bc @Ysf h!hYp@!H X2- V!B@X $lX( V!B1B @H`c`/Bc h!hY$,BXTXV!B  ! #A_`! BhY$,BTXV!B ! # !0 8 @1 `t 0X @ @! B, !Y( V!B c B B`c1B @p8 k H!$B, !Y( V!B ^ `B!`Y$,BXPV!B [ `B!`Y$,BXPV!B D\ `B!`Y$,BXPV!B \ `B!`Y$,BXPV!B`A] `!`Y$Y( V!R*Hc@0B,c h@!hY$(~, V!B1B @B@XPU `@!@B 0,,`@0B 0B H`%B``$ @ !  ,F@0@0B @0B Hp$ q  !0 0 , H O_$$  ! 0,,`0B 0B Hp$ q !0 0 ,!,, O0,,`@@B !3~F !(b01B `X !0  ?#0B @1B @@X @! @0!00B 0BP,`a! H`0@0 ,(@,$ 0!0Y 8!8Y$,BPF!B@P  P!  ,(@ @!@XU `!@B !2~F !(a00B p q ,,D@0,,` ,,D@00BL`0@00 ! ,,G @p q 0,,`B1B @,, aH0L`0 @! #XX A! # b H HX H!$ `0$!@ @!  ,B @@X @ ! XX A! 8 @!x@ !0 0 ,` `X@ `  @`0 `! ! , XX @!P'B (J(Y$( F!1B @01B P  H!$  ,x@,, b " X "!D D,"+BD A1B $@X $! H $?#01BH&@A1B (X (!@P 0)!P!1BP*`,,,p1BP\,a0!!H`,(@,$ 0!0Y 80!8Y$,B(PF!B@P 0,, a H HXH0B$ P!(BP(, a "! X `! HB`B H& @X J! Y(]$`DB0Y 8$!8Y$,B8PF!B@P `! #H!0B@P(, a " X ! Y (!(Y0"!HXv* F!B`b !X @`! B , aH! H P$,(@,d 0!0Y 8!8Y$,BPF!B@P `! #H!0B@P(, a " X ! Y (!(Y0"!HX2* F!B`XX @! $'$1B@PP(, a"! !H D,(@, 0!0Y 8"!8Y$,BPF!B@P 0,, a H HXH B  OD@$U `!@B PA0~F X!(d0,,    Bd2B@ ,`@d @2B H HX !0 B0 ,H h!hY$,BPV!B` @@! #,,@e P@PXX!9(x)@qP H" D P$<HP @!0L 0L,(*@9Lx)`r T( @P @P<  P @!`X `X,)0p9Xx)r `. p\ p\<`(Pw `!d #@e 4hs ,,`6A3Bl8,,:3Bt<D x4 ! !3B|P"HfZ$ 840! ,,up\B3B^0,,`@3B  H849x! ,,@b $!@X `a"! ,, #@!(~, V!B`g 3B H HXH@3B$3B " X "!D @fD$| 8(4! ` /&0L0  &!`X !P #XX +!PT H*xH! `,,b .!X `-! ,, #@!$(~, V!B`g&ic$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 k".  H!$ $,H@3B$3B " X "!D @fD$ 85p! 0,,` &Lq $P1BP*@1B@P,fP,p!Hf\0 $1Bd61B d,fd8!Hft<d X`4 ! P!3B|P"HfZD h,49h! ,,q p\q ,, x^`s 0,, `X`Y"? @!03B H f  8<5! ,,@Q P(q !DB, @! P( V!Bx@0,,` p q ,,A `X`Y? ,,E@@P0@3B,,@@3B D 84! H04y! XD4! hL4y! x\4! 8h4! H4yx! X44! , e " X ! HB H,`g&!@!H`20L,P, p$!pY x&!xY$,BhPV!B@P  !0 0 ,1B 01B`0 ,@f  H@fD$l $@2BL(\ H59P! P,,B*`3BT,p3B .X /!p\ f\03B 2 X 3!d `fd6  Xp5! !p #XX P;!t gt<3B >X P>!| A|)0P @! ,EA @P@9P  `$3BZ< ,,q p\p qL ,,Az H HO$b,B``! H`0P0 ,h, p!pY x!xY$,BxPV!B@P 0,, ` H HXH B  OD !H #& 0,,` &Lq @,, `X`Y? @!00B,,AB @!@Rp PC H!$ $,H$( p 0C@$03B H!$ @b$1B H$, f$" H`fH&D H49P! @,,B(P3BP*`3B ,X ,!`X gX.3B 0cB f`2AHfl8 X4P! ,,C:3Bt<3B >X >!| g|XЂ3B hZBf\"Hf h49P! 0,,`@3B P3B P@PX P!( g(3B "FB@fD$0!HfL(T x4P! P,,B*`3BT,p3B .X .!p\ g\03B 2!gB`fd6!Hfp: 8l40! ,, <xqX ,e @X@X h!B0,gp\!"Hz,,@ p!pY xP!xY$,B(PV!B@P  !0 0 ,1B 01B`0 ,@f  H@fD$L $@2BL(< P,, *Tq `,, `X`Y.? ,,EB @P%@R !@ #`b !`X @! #  P!H( # 8H4(! ,,  "DqH  ,`e &`X !@PB@P,g*!`!HRPT,, p(!pY x*!xY$,BȏPV!B@P !0 f  H f("< $02BH&, @,, (Pq P,, `X`Y? ,,G@P0,,` `@ i ,, XX H`!$ G$P!3B(" !H`fH& $P2BP* `,e .X !`B`, g2!!H d,, p0!pY x2!xY$,BPV!B@P !0  f 3BP3B(" $02BH& `!@P P C !T # `!`XB`X,aX.2B 0`kw @!d d,@e4H@8h2Ё0B : tBat< @!| |,>Ђ0B hZ Ba\2B x^k @@!  ,`e  #@a P(B a("l @! H  H,`e &0OX@ L( H#a ,` XBaX.0B 0X @!l l,`Rl00B 4 hBah8 !t pt<0! @!| |,f @P@}#a hZ Ba\ x! `0X! @@!  , $0B " DBaD( 0B $@X !0L L$`0B ,` XBaX.\ @!` `, #d00B 4 hBah8Ё0B :X !x x:0B @PBaX hA! a p\!pYh\ 02B00B`0 ,Ed ^@3B@1B 3BP1B("@A2B (X ! H  H,`d &!`X !PTBPT,h$!LBpY x*!xY$,BPV!B`g 3B HHP P@!( P!2B(" 2B $Kc !L  ,(@@$PU `!@B PE0~F X!(d0,,    B dH0B$00B hhY P!(B(,hh $BpY x!xY$,B(PV!B@P !0 0 ,v?  ,x@ @A! ,%@@P01B1B Hp$ q P !( # c "Ds  ,,@$02BH&@,,¢(P2BP*D X" ! !p2BX.!H e`2$ h"90! ,,@42Bh6,,C8Ё2Bp: x8"x! ,,a >!X `a<! ,, #@!l~, V!B`f 3B H HXH2B$3B " X "!D @eD$| 8("! /&0L0  &!`X !P #XX +!PT H*xH! `,,a .!X `-! ,, #@!~, V!B`f  H!$ $,H2B$3B " X "!D @eD$ 8#p! 0,,` &Lq $P0BP*@0B@P,eP,p!He\0 $0Bd40B d,`ed6!Hep:d X`" ! P!2Bx>"HeXD h,"9h! ,,i hZq ,,w p\`s ,,y `X`Y? @!02B H e  8<#! ,,@Q P(q !HB, @!A( V!Bx@0,,` p q ,,A `X`Y? ,,E@@P02B,,@@2B D 8"! H0"y! XD"! hL"y! x\"! 8h"! H"yx! X4"! ,@c $@X !0LB0L,f(!P!HB@P,P, p&!pY x(!xY$,B}PV!B@P  !0 0 ,0B 00B`0 ,@e  H@eD$l 'Ģ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "?$@A2BL(\ H#9P! P,,B*`3BT,p3B .X /!p\ e\03B 2 X 3!d @ed4  Xp#! ؠ!l #XX P9!p fp:3B <X P<!x Ax)0P !| |,C >8P  @$B3BX< ,,i hZp qL ,,Er ^O^b,Bg@! HH ,h, p!pY x!xY$,BzPV!B@P 0,, g H HXH B  OD !H #& 0,,` &Lq @,, `X`Y^? @!03B,,AB @!@Rp PC H!$ $,H$d( p 0C@$0@3B H!$ @a$0B H$, e$" H`eH&D H"9P! @,,B(PA3BP*`A3B ,X ,!`X fX.3B 0cB e`2AH`eh6 X"P! ,,C8A3Bp:A3B <X <!x fx>3B `XBeZ"He^ h"9P! ,,F`@3B0@3B `X !0 f P3B P*B e( !H`eH&T x"P! @,,B(PA3BP*`A3B ,X ,!`X fX.3B 0!cB e`2!H`eh6 8l"0! ,, 8pqX ,c <X !|B|,f`X!"Hj,, p>!pY x!xY$,BxuPV!B@P  !0 0 ,0B 00B`0 ,@e  H@eD$L $@A2BL(< P,, *Tq `,, `X`Y? ,,EB @P%@R `!@ #`a !`X @@! #  P`!H( # 8H"(!  ,,@ $HqH 0,c (X !PTBPT,f,!p!Hb`X,, p*!pY x,!xY$,BsPV!B@P !0 e  H e("< $0A2BH&, @,, (Pq P,, `X`Yz? ,,G@P0,,` `@ i ,, XX H`!$ G$P!2B(" !H`eH& $PA2BP* `,c .X !`B`, f2!!H d,, p0!pY x2!xY$,BpPV!B@P !0  e  3BP2B(" $0A2BH& !@P P C `!T # `!`X a .X .XiW @!` `,02B`2 `!h `ex62B p8pY @!t t,C `:`Y,xY@!9( XP!B@!9( XP!B`a `X  !0 80! @@!  ,@ @@X H`!$ $ `!D @a $@X $Hi70 @!0L 0L,&@2B (КP @a *X *!PT PT,e ,X pU, BhYp!,BhrPXP!B @!0 0!0B $ @$PU `!@B  ) 1~F`(! 2B(c (b(b 0He @0BB0B ,@eDL BB`eB`XX ! , @p q  pf $02B00B`0 ,d 8!8Y$,Bh XJ!Bc @ 1B DP$ !0 0 , sf 8!8Y@!H X J!B@X A!  X@!`XX ,,`Px D,, B !H#`XX !@P `P&P,, @+!T #c .X,.A^L 0` c`21B 4ph cT ,,XX,,XX !| $ 8|1 `t`B^L 0L`BX > | p|,9|,`A|,I|,8H`0pH@$$D!lB61B P+~F c(" 1B $Hc7 !0L 0L,( (@PBP, 8P!8Y@ $H~PJ!B1B B Y /&0  @!Y0B!pB8Y@$Hx~PJ! B1B 8D8Y a!B,88q$B@Y H@! HY$,BoPJ!B@a D@Y DB,,$~, J!0B,@0B BB,,@XX `!0 @D D,, a H HX H!$ AF$,, a " X "!D @SD ,,`a &`X &!0L @BL$@,,¦(P1BP*`,,a .X `.!p\ ¶\,0B 0X `0!X` # a 2 X Ƞ2!d 828! Р!h h,`b 6`X0A$phB $>}, J! ,@!0B B Y 0@!0Y 8B!p p, #!l( J!B( @ p C ! ,`d@2B`Bd@!!H@X6 XD!0B@wf$,BxiPJ!B@X !   ,R? ,,`] @@X U0 `@!@B  % 1~F`(! 3B(d (c(c 0Hf @0BB0B ,@fDL BB`f2B @Y X@`XX80! !   ,@$ Dp q @$ 0$ H XJ!,, AC! #@a,D01B `X @ /& 0  @!@X0!pB8Y@ $HHxPJ!1B @Y a &0  B!Y0@!pB8Y@$HwPJ! ,,@D0BB,,D@01B1B @p q0 H!$ $, J H$q7  P!( (, c " X0E$p(B $$<}, J!0B B  /& 0 DB2B@0@2B p c< H !$ @! 8$P1 `tHA^L "DB HX HD $  H, `$B`, !t2( J!Bd @~F@dD0@2B p c @!` B`, !Tb( J!Bb @bB@eD @!0 0 ,`@2B @2B HpH, q  P !( e("$ @! H  H,`d &`X '!0L @–L$@A2B (X )!P #d *X*`,, ,X,p,,¼ .\q7 $2B`2a.Be 84!8Y$,B(XJ!B,,`AXX2B,@0B`X,,e 8!8Y$\}, J! 0B @D@X U0 `!@B XEd)dbH2!(d (d0,,`@1B 2H aB^L @B`a,,  dB dBH @8  !0  0 p  !! ,B1B20@2B `X !0 Cc 2| p1!1B (@zT$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 Ǘ"P,`c!!H`00 ,p,e xB!xY !Y$,BZPX!B`a 0B HHP P!( @9! !D D, B "DqW, ! HB H,`c &0OBc (@SB,,, 3![, X!B@X !0 B0 , b H! HX P!(B(,,H,P, 3!&~, X!B@P0 0, b H! HX P`!(B(, b "! X h!hY p!pY x!xY "!Y$,B]PX!Bx@0,c @!@X h!hY p!pY$,Bx]PX!B !0 !,,, #!~, X!B@X. $`Ha @8 !0  H xp  H!$   @! @P!@XXU `!@B PE2~F X!0,,`0B 0B H HXP$$B("00B `X @!   J/H0B H HX P &(0  P!@PX H`!P$ # a " X `!0 0 ,`@0B  0B$AEBH"0B ``Yp$BpY V! ,G\ P@!( (, AT `O 0B " X +& H0  $!@X`"!HBhY$,BPV!B@X ,`b 1B HHP P`!( (,  !H#`a &`X @!@P @P, (@ PBP&d 0$`2BT,p0B.!2B\0!H@cd4^L 2dB`cd60B 8X 8!p 8?#Ё1Bp:0B <azBCcx>.Bd `X!`Y h!B0,c p\!pY `P!`Y h`!hY p!pY x!xY$,B(XPV!B`XX !0 a ,,@+4 P(B(, M(0B " X`"!BhY$tw( V!B2B P0@2B P H`!$ $,H$,BXV!B$n, V!0B @P@Y @P! `b0B @@X H!$ $,@b P@PX !D D,  " DB MD*B H S@hH$$ `"B$0,,`B&@A2BL(PA2B *P!UBa ,`YBa .X `*!`Y h,!hY p.! , 3@!*( V!B`a `X`! H PV!,,EP00B `X,,D@ B 0B P@PX P!( P8#A1B(" A1B $pH c `!0L 0L, &!T#  !X # `!p\ p\,a0pA]B`.0B 2 X 3!h o/l40B 8X +&t0  :!X`8!tBhY$,BPV!B@X ,`d @2B HHP$ P@!( (, BT "@OH"00B &`X @!@P @P,¤ (L #a p*pY `!`X `X,B `,`Yh1$,BRPXP!B`bh@1Bx0B ppY P`!( (,@AR ``Y`1Y!,p!,X XP!B@!)( XP!B`a `X @`!  ,AB@0@ B 0B H HX P!( P0!%B("PU `!@B  - 1~F`(!(d(@d(c0,,`1B @1B B Y B! @bD0@1B 0 Ba @1B B Y B! @b D @`b0B@ 1B D @`00!X ! , $ B B1B D @b@  !0 8x8! @!  , dHH P8$ 1B $ HB`bH& !@P @P,T(p1B .p \Bb\0A2B 2gk7 Ѐ!h h,`d 6h#b : tBbt<l !| |,d 0L`X@ 0N 0}# b HR B@bT 1B D@Y !! ,RD01B 0 B@b  @! P 0! !D D,@d $D#b (@ PBbP* !`X `X.tX! !` `, d01B 6 lBbl81B :X !x x:1B > |Bb|L\ @! , %P1B @ B bB 1B D@Y !0  D1B @ B b  !D x"! `! H `b & L @eH(P2B*`2B ,`Xi` @!p\ e 0Y @!d @c @4@Y ؀!`l `,b 8 Yp, HY!%( XD!B!%( XD!B,`b1B @@X H!$ @b PH( @ "B$", !   ,@$DB1B B@b@ !0 e 2B82B @Y @!D @c @$@Y !`L `,b (Yp, HY! %( XB!B!%( XB!B,`b @! e H@$@@c 2B" 2B $H @`dD&d$ !@P @P,b*`A1B ,PX @"T. U0 `@!@B  - 0|F`(! 3B(e (d(d 0Hg @0BB0B ,@gDL BB`g0B@ 2B D@Y XD`XX0$ H(XJ!,, AC! #@a,D02B `X @ /& 0  @!@X0!pB8Y@ $HxVPJ!B2B @Y a /&0  B!Y0@!pB8Y@$HVPJ! ,,@ Dp q !! ,d @Y0I$pB $|+}, J! ,H&@ ,,@ D@Rp  C? ,,@`B0Y8$HXJ! ,,+4 @B,@D,, B01B1B @@X0!pB8Y$m( J!2B @ 2B DP ! ,$,BXJ!B@X.  $ e, J! 1B D@Y D!  cB,,`c `X @!  , c H HX Hp!$ H!0B$0"BB @,, XX P"!D ) @hD$ (BD0,,`&@,,B(P,,b *bRpT (C`,,b ,BRX(Cp,,B.2B\01B 2 X P3!d Ad)`(Pw4 `!h h,@C 40P$ `!l l,`C 6`Rl(PC$tf$,BBPJ!B@Xz  ,,@ 01B `X !0 !3B 3BPKQ $qf$,B(BPJ!B@XJ ! ,`f"B @3BHH 8$P1 `tH ˆB$D,, "  ,,` %!H # !@P @P,c *X)Wұ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 Z"a +!PT *!@SBT(`A1B`X,`, !t ( J!Bc @Y !   ,`b`1B@B 0B ,,@AUP2B(" 2B $ !IB`c &0MBc (X 0$!0Y 8&!8Y @(! , 3!( J!Bc @Y0@! HPJ! ,,@ DP ! ,D @`_ @1B @@X H!$ */(1B " X & H0  $!@X `"!D #`XX &!0L 0L)  P7 !pP p,b*!`!HRPT,88-$B@Y H*! HY$ ,B=PJ!Bc @Y ! , 8B8Y$ti( J! 3B D3B @P ! ,$ ,BXJ!B@X ! , @Y@@ `B @``0@! H!$ $,H$ ,BXXJ!B@X !!p p,b @!Y !0 B A   `X0N!pRH, , C!( J!B b B! Y,,`` !`X @! B , g H! HX 0B!0Y 8a@!p p,, @,@H, S!$( J!B a B0B @P @!0 0 ,$ ,B:PJ!B@XV !! ` @p q tf$ ,B:PJ!B@X: !! B 0L H!$ $, ANHP0B$ !D#@c $@X !0L 0L,8&!HXPJ! 0B D0B BP0 !! ,`f !`X0@!p B8Y$ ,BXJ!Bqf8$ B@Y $,B(9PJ!B@X ! ,@d D`@O D1B H HX P!( D'D 1B $@X $! H $?#03BH&@1B (X (!@P 0)!P!3BP*`3BpX,b.!!Hrp\,8`, @!@Y H.! HY$,B.PJ!B@PD ! , @ !P74 1!03B`0 ,`,p, #!( J!B V? p (PCuf 8!8Y@$HHXJ! ! ,? a!@ # e Bp qH ,,` 2B H HX H$B@f$3B" K !  $qf$ ,B5PJ!B@X a! ,`f  # f H HX$,$@ ,,  P!( #@c $@X $! H `8L$ ! 0!0Y$ ,B(5PJ!B ! , $ B1B @Y @! @ 03B3B @@X HH$H # f " DB@fD$03B &`X $L#f ,` XBfX.3B 0X,, 2` #@f 4!hB`fh61B 8X !t c <X <!x t< qBt> ,,@D`0BLp1B 8N8Y 8N!p cP,,@c PT@PY P!U! IR,,  Bp q tf$,B2PJ!B ,, aB0B,,A 0L0Y? J? ! ,$|r( J!! bHa@01B`B0Y8a!1B 3!( J!B@XX E!  cB01B `X,,AA @@ # c H HX,,@QP@&B(,, B" 2BD$0A1B`0L,fL(P3B *X `!`X `X,¶ ,T#f 0X$`Bd43B 6`X `!p p,8!lBp63B :X :!t #f <axBfx>3B @Y 0$0#f @P@YHI$BT3B B Y  /& 0  D!@Y B! #`f `X  ! #f @` B f 3B P@PX $(#`f &`X0$PLBP*`3B ,X !p\Bp\,B\,3B 0X 0!` # f 2adB@fd43B 6`X63B 8!pBfp:3Bx,fx>3B @Y 0a!` `,6 0L0#f @P@YH$BT3B B Y a!   ,@D"BB03B `X  ! #f @` B f 3B P@PX $(#`f &`X0$PLBP*`3B ,X !p\Bp\,B\,3B 0X 0!` # f 2adB@fd43B 6`X63B 8!pBfp:,, <px q( !|B|,\ ! /&0  @!Y 0>!0Y 8P!8Y@1$B HY$,B(_PJ!B@ ! B ,\ ! /&0  @!Y 0D!0Y 8P!8Y@1$B HY$,B^PJ!B !!   ,\ /&0  @!Y0D!pB8Y@1$B HY$,B^PJ!B@c D@Y,,@0B1B @@X,, ALH@!B$1B P@PX ! D  J/H"01B &`X &@P0  (!X `&!L #c *X0*! HPJ!2B B2B @P !   ,$,BXJ!B@Xz ,, @p q !   ,$,Bx(PJ!B,,@ 1B D@Y D!  D?#03B1B @@X @! @0! 3B 1B P@PX P!( e(" a,B`f &!`X 0$!0Y 8&!8Y$,B'PJ!BXX a!   ,DB@0,,e @@X @ ! ` ,, I Hp$ q ,,@AW,, "T  ,,@B$0,,`&@L`20HH&x0! P,,XX `,!`X X. PWBX*,,0,,  2`(Pw@ ,,@C42Bh62B 8asBXX,,XX,,`,D 8N8Y @Q<! ,  HR HY PaB! , SZQ J! ! ,D@ 1BD1B B Y0$B 1B H HX P!( J(1B " X ,,@‘ $D #`c &`X@,,(0ANBP&P1B @*@Y0P!pH!( X@!B@XX D! # XX C! #/ 2B H HX0!4, ,,`] @@X U0 `!@B ) 2~F@ !(c(@b0@1B P ,, +4 BB,@0,,`1B @,,  BP !` `,a@!"H ,00a$pB8Y @@!@Y$,BPH!Bb @P$ !0 0 ,a @@X* ~$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "r (!` `, # H!0B BL ! ,`a `X (@!` `, #ҭ H!0B B A! p (PC$s f$,B PH!B@X ! , @Y@@`` @ `0 @! $s f$,B8 PH!B@X ,,d @Rp  C !` `, a H! HX P`!(B B P(" @PX(L!`rHHp,P, C!T( H!Ba @!Y0,,d @!@XH !`.BP, 0L0Y 8!8Y @!@Y H! HY$,BXqPH!Bd @0@2B P H !$ $,H$,BhPH!B@X" ! `XX  !0 8(! tf$,B(PH!B@X ! `  p q ,,@XX P0!( P@. `&B(,,@ #!D #`b &`X !@P @P,0(!Hh=P A!@ #XX !0   @0B HHP0 P!( (C !D D,@b $@X $! H  H, 0$0Y$TW( H!0B B ! `b `X !0 0 ,`  p qT $s f$,BPH!B@Xn ! p C !0 0 , d H HX(!`$B # H!0B BD ! ,`d `X(@!` B # H!0B B A! p (PC$s f$,BPH!B@X @$$ $rf$,BPH!B@XU `!@B P=d)cb`@2!(d (dH @8 !  0p ! # !d bd@,,`+4 0 B0 ,  B,, 2B1Bd@0@1B `X ! "/ B1B 2PH ! ,`@ @G_ B1B B Y !d d,`d B$lX( V!0B @0BB01B@1B H HX P!( D' D ! H  H,`B &_P&PA1B *X !`X `X,X. TB$W( V!0B @0BB01B@1B H HX P!( D'D A1B `$`Yp$B V! B`a &⧼WP ^)RS T( L0# !`X `X,b .O`.0B 2Pl !A1B 6mBb 8X `4!`Y h6!hY p8! , 3! ( V!B dB0,,d@LH0  !@ #@XX,, Œ" ^L $ HB H, 8 P0!( #`XX@,,¤ (@P\@`œP&PA1B *X !`X `X,X. TB$( A!@ # A! p C !0 0 ,`2B ,, e " X #!D @WD A1B $@X0,,`&@IBL(PA1B *X`,,B,PAUBX*pA1B .X`.!, !@ # c Bp q !0 0 ,,, O H$q7 P!( (, XX #!D D A1B $@X &0L0  &!`X `$!H #b (X !PT PT,T, PB$,U( V!0B @B1B B Y0,,`B @1B P@PX,, B"@)BD A1B $@X &0L0  &!`X `$!H #XX `a(! ,XX A! p `CR? ! ,$`( V! ! p ( C ! C !0 0 ,b @@X H`!$0 @aP B$"0 B( A1B $@X &0L0  &!`X `$!H #b (X`(! HX V!B,, B00B P @!  ,@$,BXV!BPU `@!@B P=d)cb`@2!(d (dH @8 !  0p ! # !d bd@,,`+4 0 B0 ,  B,, 21Bd@01B `X ! "/ B1B 2P@ ! ,`@ @G_ 1B B Y`B!BhY$O( V!0B @0BB01B1B H HX P!( D' D ! H  H,`B &_P&P1B *X`*!BhY$N( V!0B @0BB01B1B H HX P!( D'D 1B `$`Yp$B V! B`a &⧼WP ^)RS T( L0# !`X `X,b .O`.0B 2Pt $|E, V!.B c BB`c `X `@!`Y hB!hY p! , 3!L( V!B c B Y B! `b,, b H HX H!$ C$,,@SPH 8(1 `tP A2B($0,, '!L #XX 0+!T #c ,X !p\ p\,h.!H(P A!@ # A! p PC !0 0 ,`2B 2B P@PX P !( d "PDq7  ,,`e &`X ('!0L @“L$@1B (X`(!BhY$L( V!0B @0B BP !0 0 , XX H!$ @!$1B " X ,,@B$AEBH"01B &`X &@P0  (!X `&!L #c *X *!PT bT,pA1B .X,,0p!_B`.,, C22Bd42B 6!mBc 8qBc :X `6!`Y h8!hY p:! , 3!<( V!B c B Y`B! HصPV! ! p ( C ! C !0 0 ,c @@X H`!$0 @aP B$"0 B( 1B $@X &0L0  &!`X `$!H #c (X`(! HXR V!B,, B00B P @!  ,@$,BXV!BPU `@!@B (=1~F0!(f(@e(e(@d,,@2BB 2B D@Y !! ,@R!"H@$( L!p (0C ! #" ! , B01BF 1B D@YD01B,, IH`1B$,, B" A1BD$0,,+4 (@PB@P,`P&PAHcT,PA1BPT,BcT.2B 0X!1B 4@X !l ,b+.$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 c}" 8X !t #a<1Bx,X `!|0# @2!@YH4!B`E`8!B3B5($"}, L!1B @p q r f$,BxPL!BX@ !0 0,$ ,BhPL!B(U@ `!@B 2~F !(b0,,`0B 0B @Y H &$0  H! HX a@!H #`b@`  @ `0 !(@ ! ) h@ 00B  H!$ #a @Y @!0 0 ,(!HPF!p pC a! ,@01B1B H HX H HXx$p) @hH$ 1B "HDq ! H  H,@B $`(Pw` @!0L cL(P0B *X *!PT PT,*`0BT,p0B.h`\048! @!d d, R@h d4 @dB@, 2? a! ,`c `X @!P B #f F!p 0C A! #" @!0  0 )  7 H@!$ H!0B$ @!D # `! H  H,`+ &0LB0L, (&!(Y$,BvPF!B`a p q U `!@B  ) 3|F`(! 0B(e (d(d 0Ha @0BB0B ,@aDL BB`a0B@ 2B D@Y XD`XX0$ HhXJ!,, AC! #@a,D02B `X @ /& 0  @!@X0!pB8Y@ $HPJ!B2B @Y  /&0  B!Y0@!pB8Y@$HXPJ! ,,@ Dp q !! ,d @Y0Q$pB $}, J! ,X@ ,,@ D@Rp  Cf? ,,@,,@VP1B(" A2B $@X0$!pB8Y? a!@ #e @P  a!  ,X@ !` `,0AL!pBPJ! B b P@WW0 ^)`2S PL P$0#c (X (!@P (?#P3BP*`1B ,X ,!`X 0-!p!3BX.1B 0X 0!` e`2a,B`f 6!`X 04!0Y 86!8Y$ ,BPJ!BXX a! ,BB@0,,e @@X @ ! ` ,, I Hp$ q ,,@AW,, "T  ,,@B$0,,`&@L`20HH&x0! P,,XX `,!`X X. PWBX*,,0 0!0Y8$H8rXJ!H? p (PC$qf 8!8Y$8, J! ,,+4 @B,@Dpb,B \0!`B0Y8M$B@Y H! HY$,BPJ!B@P4 a 0& 0  D!@Y,,`XX H`!$B$,`,  8N8Y @1! , H, CJ> J!,,@DD,,D  0L0Y? ,,@ 1BD,, B0,,`@,,A1B H HXP$$B(" 1B $@X $!@L @P`'P&P1B *X !`X `X,b.a1B0TB\2PXB`*1B 4@X04! HXښ J!B@e D2B BP !0 0 ,$,BXJ!B@X !  8Dh! ! ,$D<( J!2B @ 2B DP ! ,$,BXJ!B@X !   ,b? !@ #` @`s, !   , Ds74 !0 0 ,$;( J!B0B BB0B @P8 !   ,$,BXXJ!B@X $ 0BD02B`0 , ` @0B P@PX A0B $@X$@HBL(PA0B *X *!T #` ,X ,!X #` .pa\B`\0A0B 2 X2A0B 6`XL$lBp:A0B <X <!x #` >X >!| # ` BbB`LpB0B 8N8Y @$@#` @@XE$  BD0@0B `X H 0&$0  H! HX !H #@` P@PX P !( # ` "aDB@`D$0A0B &`X&@A0B (@!PB`P*`.Bc .p]Bc 0X 0,!0Y 8.!8Y @0! , 3!( J!Be @!Y@! B^L D B ,`,@p, HD! HY$,BPJ!Bc @Y ,,@D0B1B @@X,, ALH@!B$4, P!( (,P$M( J! ! , 8!8Y$t=( J!2B @ 2B DP ! ,$,BXJ!B@X6 $4, J! 1B D@Y D!  cB0B @P !0 0 ,c @@X @! @?#0B 1BH1B P@PX P!(  8(1 `t PH(q0 ! H  H,@B $ K~F`eH&@2B (aw `!T # !`X `X,e.`![B\, !` `,0,, C 2di !h h,`XX P6!l @l4 !p  9!`pB`, !,( J!B@XX QE!  e@02B 0 Bc @!B c H HX 0!0Y 8!8Y @! , 3!( J!Bc @Y0@! HPJ! 1B Dp q ! ,$$,  a! p (@C !   ,$, ,, B2B @Y0@!̨, ,,`] @@X U0 `@!@B  ) 3~F`(!(b(@b(aB1B @Y ! ,@a D!@Y @!0 BA   `X0@!pB, , C!( J!B@P( a! ,@a D!@Y P!0 0 , 8D!8Y@!HXB J!Bx@,,@bD0B@Y8x)@q H  $ (<4  U0 `!@B P5b`0,,` `R (8! re* 0,,` 0 X@0 ! we$,BPV!BH@%s f$,BPV!B ,H 2~F@ !(b(@b01B0B  a! XX !C! 0B! h!0  XX @! 8 ! ! , 0!0Y$T:( H!1B B1B @P\ $0, H!B1B B Y B! c@0,,c @@X @! `,L$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 q" 0BH,,@S PpP$ i ,, ‹" 0BD$0KaL($$ `!PT H*8X! !`X `X,",paH@a,wl !` `, 0X 1!` a 2dq< Р!h h,@ 4@X4@``h6 @`ph8! !t t,a <X(:!`xB #V H!0B @0B BP `!0    0B 0B "Dq7 `! H `XX '!0L PH&p! !@P @P,"(PaHA4ҷl !`X `X, ,X -!`X a .\q< !` `, 0X0@ ``2 @@`0`4P! ؠ!l l,a 8X(6!`pB #ҝ H!0B @0B BP 0,,`^L H$B$,`0H0Hx! P`!( (,  P(" P(B~? ,, @p q0 a! `XX !0  0B $ ,, LH^L P(B(, P0H8! `!D#F? `! H  H,:? p (@C a!# a B~F`aT$ H`!$ @XX P!( H(4 ! ,, " 0BD$ `!0L XX )!@P PL(! !PT PT,"*`aHQ4ҷl !p\ p\, .X /!p\ a 0`q< Ƞ!d d, 2 X2@@`d4 @``0d6 ! !p p,a :X(8!`tB #Ҝ H!0B @0B BPp `!0  Hx ! H`!$ H?#0B$$ ,, Œ "DX@X"! `! H %?#00BH&$ !@P @P,$,BxXH!B@XB @$| @$t @!@X2 @!@X* @$L @$D @!@X @$, @$$ @!@X  @!@XU `!@B %2~F !(a`,,XX aI!`2B!( X@!B`XX !0  0P )P ,, XX H0!$ @/ P(B(, P8 @0!H #,,  " ˆRDPC `!PH P,`a &!`X @!@PBB P* X J!P2H`,p, C!( F!B@P 0,,  P@P@N(  $ 1BD$A`L "DBD,`BbD&@0B((P0B *X8$``L0L( F! B @ * ` B˰!Xq !\ #!1B d,@a 4!@X 0! Y (2!(Y 04!0Y $,BPF!B0,,` ` Rp PC @`!P P, _ J!PJHH`,X,, @Rp C `!P P,a @!@X H@!$B@A H$  HX J!PH@`,Hp, C!4( F!B@P 0,,  P@PN(T @!D H"8!  ,,`XX @'!0L @L$@,,XX P+!PT ¤T(`,, ,XqW $sf$,BPF!B@0,,XX @ ! ` ,,@XX P0!( AM( @! 0B@ H,`Ba &`X "! Y ($!(Y0&!HX F!B`]@$@1B 1B@ B Y(!`1B 3!( F!B`Y,,@,E (J(Y$,B PF!B`XX,,D@0B ,,@XX P0!( AM(,,  " ˆRpD PC `!PH P,`Z J!PH`,X,, @Rp PC `!P P,Z J!PH@`,X,, @$Rp PC `!P P,[ J!PH@`,(X,, @DRp PC `!P P,[ J!PH@`,X,, @dRp PC `!P P,X J!PZH@`,HXU `!@B PE1~F `!f`XX `!0  0 )P 0,,` `Rp pCp1!00B`0 ,a@! HH ,p, x!xY !Y$,B(PX!B@P 0,,` ` R @C HP!$ $, HX$,@XX %! H 0H,X H, AHH !HB $$iW P!( `B &PLq  "@P  xD( QxpQ1rp C  @!@X P,, *¨RT@C`,,B ,XX,X P!d d,`Xd,B,!dB 2Xi .!p\ @C 4hq  0l  Pl0 qxp1sp C  @!@Xz ,, 8Rp( CR p1!Ё0Bt,a<!!Hx,p,e x:!xY <!Y$,BPX!B`p C @@! B , ^ h!hY p!pY$,B( PX!B@P  @!@X 0,,` `R ( CR p1!0B H$,@aP!!H@(,p,u x!xY !Y$,BPX!B`p C @@! B , Z h!hY p!pY$,B PX!B@P  @!@X 0,,` ` R  C,, AMH0B$,, B " X "`P `! H %!0,,XX h$!hY pQ&! , x^xY $lw( X!p ($kHHpC B! @!@Xr ,,E @PeAR Cp1!0@.B \ h\!hYpM$ BxY !Y$,BPX!B`@PW  0,,` H`!$ #,,@T P`(s ,,@XX 0%! H  H,`H& @aFB L(H bD*`1B,p,,XX,,  2g~Fd0pA^B .Xi7L ,,`b6jBl8,,XX 0=!x Cx:,,XX @1Q! b hZB@>,,XX x!_! b `z @t\.B`X h!hY p!pY$,B PX!B`@Pw $0B  ,, U" `! H pH (0C @!@X 0,,` &`RL@Cp1!@0B@P,a*!`!HRPT,p, x(!xY *!Y$,B8PX!B`@Pwd P!0 0 , PT ,, AMH2B$2B " X P"!D D(C$, 0 (C,,`c !`X haP! ,, #@!}, X!Bsdp$ BxY $,BPX!B ,8@0,,`1B 1B hhYx$ЂBf X! B`b-P%$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 (" &⧼WP ^)RS T( L0#XX ,!\#XX,, C 2 S@hd4 `Bd00B6$`( 0 C@A!0,, Z hP!hY pq! ,H, 3@!<( X!B`@w $0B  P`!( p( (0C @!@X !D D,@" x"!L#c (X (!`T `Z/X*p1B .X !` `, b2a1B4\Bd6p`Bh.1B 8Xh8! HXK X!B`@PQ0pp0C @!@X6 !0 0 ,`1B 1B P@PX P!( (PC !D D,$,B(PX!B@$YHe !  - 1~F`(! 3B(d (d(c 0Hf @0BB0B ,@fDL BB`fB2B @Y X@`XX0$ HTXJ! ,,  AE! #a,@01B `X @ /& 0  @!@X0!pB8Y@ $H(PJ!2B B Y  0& 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , c B Y0U$pB $T|, J! , @,,@ 1BD,,  B Rp C0,,`   P $sf$,BغPJ!B@X  ,,@ D@Rp  CҾ? ,,@,, " 1BD$0,,` &`˜RL@C@,, *b_X* p,, .`(Pwt ,, 2@C_h22B 868Y !pBC p: X0N!pH, , C!L( J!B@c D@Y ! , 8B8Y$|$( J!2B @ 2B DP,  ,x@ ! ,  B YB@`@ @@`0D!X ,@ !p p,b @!Y ! B`@  `X0N!prH, , C!t( J!B@P  $B1B@`L @B,`b H!$ HxP! P!(B(, XX ! HB H,`\0!`(B0Y 8a"!p p,, ,@, S!( J!B@e D2B @P `!0 0 ,$,BPJ!B@X  ,,@d D@Rp pC,, @0^L 0 B0 ,`0H8! ,,@XX P0!( / "DBD,@8 H0!P$ #@b$0,,` &Hiw @,, )!X# %1B\0, ,, 2,,`b6AjBl4,, 8#RpC,,C:2Bt<,, 0BD7_Bp,,d8 8N9RC @! 8P! ,, I HRq7h P! XX @`! X`! a!  E!,,`XX 0D!0Y 8Q@!p p, @P@Y $l( J!p @C ! B! 1BD a! A!01B `X H!$ $,@H$ `B0Y 8!8Y @!@YH!$B S2 J! a!  C!`B`, 6 J!p (0C?  ,(@ !  8D! $1BB 0,,`` `R (C,, qH H`H(PW ,,@aP P@QR((@C,, "8P  ,,@$02BH&@,, )!P #c ,X !p\ p\,8.!$, a!@ #XX a!  @0,,`@`L H$B$,`0H08P! P`!( ((C !D D,@b $@X0"!pHB # J! 0B D a! p (0C?  ,h@ ! , B 2BD,, @0@`L 0 B0 ,`088! H@!$ $, LH,,@T PP$i,  ,@ A! , B ,,@ D`i\,  ,(@ ! 8@(! rf$,B8PJ!B@Xr  ,, @`@_ @,, L,,@qP PPP ,, "  P7  ,,`XX 0'!0L / (@PB@P,`28 0%!H #P,,b *RT(C`,,b ,RX(PCp,,XX 01!` @0. pa^B`.,, c 2 Rd(C,,@s 4P, ,,` 6lX@H6x(! ,,b:K8 9!p #J ,,  ?!} #> `,,XX 81O!p , @PB,tB9 01M!8 # XX H1S!  HAR, qw ,,b@0L`0 P!U! # ,,@ !A! #,,@N  b_D !@P h(8!X ,@ ! ,? ,, @P  ,, XX 1C! B. bBD !`XP$0)`0P P, 0(@08 x)`0(< T@8 HHp  QH<H$ (C@,, ("RP CP,,¬*`A`L ,`XB`X,R0p*x! p,,¼.^L 0`B`,r00. ! Ȁ!d 2!1Bd4, ؀!l  6!Hp: 1Bp< !| XX 0!M!` @>x!@p,,< 8N^L @PB,tB1PN ! H! HS?#1BT$ !  B L1 ! # H!$ @XX P !( X$! ,, Œ" A`L $ HB H, 0p"8! !0L 0L,b @@X0&!p BX a!@ #" !   ,b @Y0D!pB #& J!0B B a!  p  C,, @0@`L 0 B0 ,`0H88! H!$ $, J H HX H !$ @XX P !( X(8!@ !D D, " X #!D @XX %! H `D$4! !0L 0L,`" &0M~FeL(P1B *X *!PT 0+!`2BT,p1B .X .!p\ e\0a,B@e 4!@X 02!0Y 84!8Y$,BPJ!B@XX A! ,@ BD0,,e @@X @ ! ` ,, I Hp$ q ,,@AW,, "T  ,,@B$0,,`&@L`20HH&x0! P,,XX `,!`X X. PWBX*,,0,, 21Bd4|, p @K6 ~?  ,h@v?  ,H@n?  ,(@f?  ,@^?  ,@V?  ,@.$$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 ",, BX@8B! ,,D@ 2BD02B 0`B XX,, XX ,,`,DI 8N8Y @Q! ,  HR HY Pa$! , S&. J!,,  B Rp (@C,,@ D`_ D,, F P@W_(pb,B b "! X ! HB`B H& @X 0N!0Y85$DB@Y H$! HY$,BPJ!B@P ! , @ !P, 81! B1B@ ,`b! H`0H0 ,8`, @D!@Y H! HY$,B(PJ!B@P ,,@ D` _ D,,@AK,,@XX P$! H  ) `hH& DBH"@,, *_X*pb,B\0!`B0Y8M$\B@Y H0! HY$,BPJ!B@P  ,,@ !   ,? ,,`] @@X U0 `!@B PA0~F X!(b0,,    B XX H!$ a$0,,@+4 P(B(,`(0B @@X H!0$ 0 ' 0B P@PX`!BhY$\( V!0@1B @1B HHP P`!( (,P$,B7XV!B$ , V!0B @P@Y @P! `a,, a H HX P@!( (, a " X p#!D "!&BD*BH#B$ 0B $@X @!0L 0L,` &0 LB@L$@0B (@SB `(!`Y$,BȘPV!B`XX P!0 b @1B H %B@a P)B a " X `!`Y h!hY p"! , 3@!$( V!B`a `X`! HBPV!,` @! # cB`Yh!1B 3@!( V!B`@0B 0B H HX,,@W PP$ # a " X ,,@B$AFBH"02B`0L,bL(PA1B *X $T#b 0XD$`Bd4A1B 6`X @ 0&p0  8!X 6!l #b :X :!t #b <axBbx>B1B @P@Y `$`#b p\pYxI$0B@1B @@XH! B$@1B P@PX P !( # b "aDB@bD$0A1B &`X&PA1B *X$pTBX.A1B 0X 0!` # b 2 X 2!d #@b 4ahB`bh6A1B 8X8A1B <XL$xB|PB1B `X`Y `X! #b hZhY h!Z! #`b 0` Bb \B1B x^xY^@1B H HXP\$$B(" A1B $@X $!H #`b &`X &!L #b (@aPBbP*`A1B ,X $X# b 2 X0$dBh6A1B 8X !t Ct8A1B <X <!x #b >a|Bb|PB1B `X`YXB1B hZ"B`b2Bp,Y x! /&0  x^! xY `\!`Y h!hYp1$$BxY$,BPV!B`a `X @! &/$0B P@PX ! D  H`'H"00B &`X$PLBP*`0B ,X @!p\ \,0B 0X@aB20B 4@X`4! HX~@ V!B@XPU `!@B PE0~F X!(f(@f(e00B` $0@0 , a B ,,@ 03B2B Bp q @$  ,,@D02B,,+4 @ B ,  B02B `X !  ' D2B B Y ! ,h\!"H$LJ( V! 3B D3B BP @!0 0 ,$ ,B+XV!B A! ,` @xB! # e H HX P!( D`'D 2B $@X`$! H@X V!B g B03B P H@!$ $,H$ ,B*XV!B A! , $  B~F`d2B @@X @! @0!`2B @2B@P(, d "! X ! HB`B H& @X `Z!`YhQ$DBpY x$!xY$ ,BzPV!B g B03B P H@!$ $,H$ ,BPV!B ,@ ! `c2BH 2B PH(@ c$" ! H `c &`Li4 !@P @P,R +,"Xp ,P!X RO@d< #,Pr]J y#`2 3B 4hqw !l $6!1Bl8$ !t c <xi @!| |,$ ,BxPV!B ,H@ a!#`a `X H!$ $,@H ,"`PDpˠ"A!D COAP< "!IJc2 yL( #a *X `!`X BX*p,d 0!X `.!`Y h0!hY$ ,BPV!B cB0 2B 0 @! 2B ppY H@!$ $,HX hD!hY xD!xY@!( XP!B@!( XP!B@Y D  Y ! #c@1B H@$ @@?#1B ppY !D ,@,p x!xY@!L( XP!B@!T( XP!BE@P 1BD "BD2B B@C?#01B @! c H`@$i4 P!( (, RP #,"Hp $PR!H dO@RT< #$P2MJB y#P* `2B ,Xiw !p\ $.!1B\0$ !d @C 4h @@2!"B p@pY !l  l,X hP!hY xP!xY!t( XB!B!|( XB!B@Y P @Y ! #`b ``Y @! ,ah%$,BPXP!B @ Y ! #`c1B @0 @ c ppY P!( ,,,X XP!B@!$( XP!B e B Y`B! H.PV!HPU `!@B % 2~F@ !(d(@d0,,    B dB2B @p! q @$| 0,,`1B B,, +4 H$B$,E$01B `X !  ' B1B H HX P!0( 0 `'   @!  ,@$,BPH!B@P@p C7P !0 0 ,`1B 1B P@PX P !( d "PDqW0 ! H  H,`d& AJBL$@1B (X((! H X= H!B`c `X @x! #? `, b H! HX P!(B B P(" @PX (L!(Y0M$p$B8Y @!@Y$,BxnPH!Bb@01B@1B@`1B H@$@@a  !D @a $`HiX !0L 0L,L( P1B P*0L aL,p1B.0B 0p`@ a 2\i74 Ѐ!h `ah61B80B/p($ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " :t@bp<0B|, d B Y (! ,P,8P!, ? @$U `!@B  ! 1~F`(!(d(@d(c0@2BL`01 ! @ D p q  @!@XN ! @d D`i  !0 a B2B@B2B @ 0BD02B,, B1B1B @Y @! `b 1B D@Y @D! '01B `X ! '/$@1B @@X ! ,@8B!HPJ! 2B D2B @P @$ ! ,  B Y !C! `a0BHL P0 !D @ D$ HDq7 !0L P& P0BL*$ @!`X c .`\ @aX0 !d @d 4h @2!1Bd61B80B :piw @$ !x #b >X 0!!` > 8!p p,8$ ,B8PJ!B@P@p C7< ! , @Y !A! aB00B2B HH iw P!( (, a " DBD 1B $ HB`bH&l$ !@P a *PiA!@X U0 `@!@B %1zF ! @2B(b 0He 1B@1B,`@e@1B@1B@ ,`e 1B@1B,`e0L 0 Bd ,,D@01B2B0@2B2B@0B0@0B2B@@2B02B1B@,,F@00B ,, +4 H$B$,$@01B `X P!0  0 )e 2BH1B @Y Q@! r) 9 @!H #b ((Y !!B,``! H`0H0 ,(($`B0Y 8!8Y$,BxkPF!B@P $rf$,BHwPF!B@X  !0 8(! $rf$,BwPF!B@X  !0 B0 , f H! HX P`!(B(, \ ! Y (!(Y 0!0Y 8!8Y @"!@Y$,BhPF!B@P   !0 B0 , $pf($` B0Y $,BvPF!B@XF 0,,`^L H$B$,`0H08! P$A2B(" ! H `H& @3BH(PA1B (*(Y !`XB`X,`.!!Hrp\,((9$`XB0Y 8.!8Y$,BXhPF!B@P $rf$,BtPF!B@X  !0 8(! $rf$,BtPF!B@X  !0 B0 , b H! HX P!(B(, \ ! Y (!(Y 0!0Y 8!8Y @"!@Y$,BHPF!B@P   !0 B0 , $pf($` B0Y $,BxsPF!B@X~ !0   1BPL@08 (! pf$,B(sPF!B@X^ 0,, bH0@B$,,@TPA`L "DBD,@08! $0A2BH&@,,¤(P^L *PTBPT,B0H(x! $p2BX. !` `2 0B`41B6H3cp:qH#cx>1B@@B1BHPHbLprHbP`1B01BH 2b$"pH@"b($0!1B&P0B *X *!`P `X`'X(p0B .X .!d b/`20B 4@X 4!PB(Y$D( F!0B @00B  Y0$@B F! B c P@WW0 ^)`2S PL P$0#c (!X `!PT *!`0B ,X (! Y (*!(Y 0,!` `, 3!Է( F!B y? F!1B@00B,, ` H HX H!$ C$H c(" 0B $@X P%! H  1H)Pl @!0L L(C `!@P @P,b *@OX*p0B .X .! HX F!B`c !`X ! Y$,BhnPF!B`b !`X ! Y$,BXnPF!B`b !`X ! Y$,BHnPF!Buf$,BHnPF!B@X `!0 f H`$i< P`!( (, a " X !PDB #~ F!p (C a! ,`` H H@O$0B P@PX ! HXV F!B`c !`X ! Y$,BHmPF!B`b !`X ! Y$,B8mPF!B`b !`X ! Y$,B(mPF!B`a `X @` 0& 0  @!@X !P B(Y$,BXF!Bqf($` B0Y $,BlPF!B@X2 `!@ @, AH!PBlPF! B g P@WW0 ^)`2S PL P$0#b (!X `!PT *!`0B ,X (! Y (*!(Y 0,!` `, 3!( F!B`a `X @!  ,(!HPF!p (0C$02BD H`!@$ @, AH!PBxkPF! B@e `⟼W@ ^)BS P& (0#b *!X `!`X ,!p0B .X *! Y (,!(Y 0.!` `, 3!l( F!Bx @ !0 a @` i@ H`!$ $,@f P@PX !P(B #} F!p (0C$02B H`!@$ @, AH!PBjPF! B@e `⟼W@ ^)BS P& (0#b *!X `!`X ,!p0B .X *! Y (,!(Y 0.!` `, 3!( F!B `!0 0 ,a @@X !P B #.} F!p (C a! ,`` H H@O$0B P@PX ! HX2 F!B`c !`X ! Y$,BhPF!B`b !`X ! Y$,BhPF!B`b !`X ! Y$,BhPF!B`a `X @` 0& 0  @!@X !P B(Y$,BXF!Bqf($` B0Y $,B(hPF!B@X `!@ @, AH!PBhPF! B g P@WW0 ^)`2S PL P$0#b (!X `!PT *!`0B ,X (! Y (*!(Y 0,!` `, 3!( F!BX@ `!0 0 ,a @@X !P B #V| F!p (C a! ,`` H H@O$0B P@PX ! HX F!B`c !`X ! Y$,BfPF!B`b !`X ! Y$,BfPF!B`b !`X ! Y$,BfPF!B`a `X @` 0& 0  @!@X !P B(Y$,BXF!Bqf($` B0Y $,BfPF!B@X0PB$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 B" `!@ @, AH!PBePF! B g P@WW0 ^)`2S PL P$0#b (!X `!PT *!`0B ,X (! Y (*!(Y 0,!` `, 3!( F!B`a  Y0$@BR F! B e P@WW0 ^)`2S PL P$0#b (!X !PTBPT,@,P, #!l( F!B !0  ?#0B `1B H`&B@Aa$0B PD,@` $!@X !0LBB L( `X J! Y(1$`HB0Y 8&!8Y$,BXHPF!B`` `X H,"$p ԡCyС*J#Q yD$ 03BH&@0BPP,` *!X !`XBB X. X J! Y($`TB0Y 8,!8Y$,BhGPF!B`` p q  @$0B  P@!(BP(, ` "! X ! HB`B H& @X J! Y(I$`DB0Y 8$!8Y$,BFPF!B@P 8qh 0!0 0 ,  ! H !$ #@XX !D @WD ,,`b &`X& KBL$@,,b *X +!PT BT(`2B ,  P7 !p\ X.! `!` `, c 2@@Oh20B 6`X 6! HX* F!B`c !`X ! Y$,B`PF!B`b !`X ! Y$,B`PF!B`b !`X ! Y$,Bx`PF!B`f `X @` 0& 0  @!@X !P B(Y$,BXF!Bqf($` B0Y $,B`PF!B@X  !0  XX H!$ 8$(! ,, (" 0B $@X %! H $!01BH&@1B(PK Q  $qf$,BH_PF!B@X  !0 0 , cH0 B$1B " XD,@SD ,,@“$0H 8H1 `t@3BH(P0B *PWB *! Y$,Bh^PF!B`a `X @! '/$0B P@PX ! D  H`'H"00B &`X$PLBP*`0B ,X `!p\ p\,c01B2XB`4`\Bd,0B 6`X 6! HX2 F!B@X ,`a 0B H HX P!( D'D 0B $@X !0L @L$@0B (X !PT "T,p0B .X .! HX1 F!B@X ,`a  H!$ @f$2B"< ! H $?#00BH&@!1B (@aRBBaP*`0BPX,` .!X !`B C `2 X J! Y(I$`\B0Y 80!8Y$,B=PF!B@P 8qh 0!0 0 ,  ! H`!$ #@X @!DBD,P@,P, #!( F!B`a !X @ ! B , `H! H P$,(@, 0!0Y 8!8Y$,Bx<PF!B@P 0!0 0 ,   P7t H@!$ $(C$o, p (C a! ,`` H H@O$0B P@PX ! HX. F!B`c !`X ! Y$,BXPF!B`b !`X ! Y$,BXPF!B`b !`X ! Y$,BXPF!Buf$,BXPF!B@X  `!0 0 , A P@W_( !D pD @C ! H `b &Li !@P b *Piw !`X f .\qt `!` `, f 2 X 0!PdB #Nx F!p pC !! (C !0  @C H!$ H!@1B$l !D  "! H`H& @A1BH(L !PT T@C !`X -?#pA1BX.$ !`  `2 L0 ؠ!l # !p 8!A3Bp:$ `!x x,C > O>PB3B(J`3B 0L(q| 8!p p,D= 8N8Rp C @A! (C @`!  ,d@ @`@O @0B H HX ! HX* F!B`c !`X ! Y$,BTPF!B`b !`X ! Y$,BTPF!B`b !`X ! Y$,BxTPF!B$tf$,BxTPF!B@XB  !0  e H$B8$ ! P!( e "PD@@f($ `!0L 0L,B (_T(`0B ,X !p\ p\,(.!HPF!p PC !! C `!0 0 , a P@P@O(0B " X "! HX F!B`c !`X ! Y$,BRPF!B`b !`X ! Y$,BRPF!B`b !`X ! Y$,BRPF!B`f `X @` 0& 0  @!@X !P B(Y$,BXF!B$rf($` B0Y $,BhRPF!B@X  !0 e H0$@@f  `!D D,@B $`OL$@A1B (X !PT PT,f ,X (!PTB $, p (C a! ,`` H H@O$0B P@PX ! HXJ F!B`c !`X ! Y$,BQPF!B`b !`X ! Y$,BQPF!B`b !`X ! Y$,BPPF!B$qf$,BPPF!B@X  !0 p @C H!$ @b PH(i !D @b $Diw@ !0L a (Pqd @!PT TpC !`X f .p\ qP !` `(C !d d@C Р!h 4!A1Bh6l !p  8!Ht< A1Bt>L ! @C !@  I?#PB1BJ$ 0!`  0N LdB1 @!0! # `!0 0 , A P@U_(A2B "8Pp ! H pH `C0,,XX 0)!@P , *PTBPT,B8 0'!L # !`X X`Cp,,XX 01!` / 2dBd,8 0/!\ # `!h h,`b 6`X 4!PlBWX a! ,`` @@N 0B H HX ! HXl F!B`a D H`!$ $,@b P@PX !P(B #u F!0B @ @!0 p C H`!$ $, J H HX H !$ @b$A2B "  P7 ! H `b &LiW  !@P b *ШPi `!@X @, AH!PB8KPF! B` .ǼW ^) S d0 \0#@a 4@X Ј4!h 4?#0Bh60B 8X 8!p 09!С0Bp:a,Ba >!X <! Y (>!(Y$,BhJP16&1$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 p"F!B ? p (C a! (C !0 a H$qw< P`!( (,P$,BIPF!B@ !0 0 ,f @@X !P BHX A!@ #`a P H!$ H!1B$ !D @a $Hq !0L X&! !@PB@P,@,X a!@ @, AH!PBHPF! B g P@WW0 ^)`2S PL P$0#b (!X `!PT *!`0B ,X (! Y (*!(Y 0,!` `, 3! ( F!B` @@! # ,,@c P@PX !@ @,P$, ,,`XX !0 !B @ @`!  , a H HX P!(0 B`" B($$BD00B &`X &! HX F!B`b@0B @p q ,, AOH@0B$,, " a0BD$0A1B (&(Y J!P H #^? ,,``B @,, `H#B$,,@WPA0B(" 0B $Pp !0L @&y! `!@P f *Tqw\ `!`X `X,B ._`.0B 2 X 2!h l`'l40B 8X$pBt<0B >X a!@ @,g(J`3B0Lp|BNB>0B @P@Y P! HX+ F!B@X ,`a 0B H HX P!( D'D 0B $@X $! HXB* F!B`a `X @`!  , gH3BP B$"0 B( 0B $@X $! HX F!B`a `X @! $'$,, c " X !@ @,$, ,,`XX !0 !B @1B @@Px H`!$ $,@AH  _D 0B $@X $!@L @P`'P&P0B *X$pTBX.0B 0X `!d d,@c41B6`Bh8dBl00B :X :! HX' F!B@X ,`a 0B H HX P!( D'D 1B@ H,`a &0MBa (X $! Y (&!(Y 0(!` `, 3!( F!B`@c0B ,, OH0B P@PX Pp!( 8$! !D D,@` $@X p%! H %?#FBH"00B &0OB &! Y$,B?PF!B`a `X @! '/$0B P@PX ! D  H`'H"00B &`X$PLBP*`0B ,X `!p\ p\,c01B2XB`4`\Bd,0B 6`X 6! HXN) F!B@X ,`a 0B H HX P!( D'D 0B $@X !0L @L$@0B (X !PT "T,p0B .X .! HX' F!B@X ,`a  H!$ @f PpH( qX `!D D,@b $`NL$@0B (X (!`T `Z/X*p0B .X !` `,(0!H8PF!0B @00B  Y0$@B F! B e P@WW0 ^)`2S PL P$0#b (!X `!PT *!`0B ,X (! Y (*!(Y 0,!` `, 3!d( F!B`f !`X @! # c H HX P$P$#@c $@XH$@HBL(P1B *X `!`XB`X,BX*p1B .X .!\ #c 0a`B c`21B 4@X41B 6!lBcl83Bt,b <!X :! Y (L!(Y01$HXT F!B`a `X @!  ! 0B P@PX !D @RD 0B $@X $! HPF!2B@0@1B0B @p q\ H!$ @a PH(q7P `!D D,@a $@X !0L0 Bc(PDBL*HBP"`0B ,X ,! HX F!B`cD @!  e HpH i P!( e(" 3B@ H,`cH&@1B (X $P#c .XH$\B`21B 4@X `!lBl,@Cl41B 8X 8!p #c :atBct<1B >X>1B @"BcHP3B(`,b 8N!8Y L! Y (N!(Y01$HXT F!B`a `X @! '/$0B P@PX ! D  H`'H"00B &`X$PLBP*`0B ,X `!p\ p\,e02B2XB`4`\Bd,0B 6`X 6! HX& F!B@X ,`a 0B H HX P!( D'D 0B $@X !0L @L$@0B (X !PT "T,p0B .X .! HXZ% F!B@X ,`a  H!$ H!@3B$ !D pD (C ! H H@C !0L &!@A1BL($ !PT  *!`HX. A1BX0$ !d d@C Р!h 5?#A1Bh6t$ !p  p: L0 !| #? ! `@y`! !@ C`,,c 8J8Y L!@ @,8$, ,,`XX !0 !B @ @`!  , a@ P@P@O(0B " X "! HX& F!B`c !`X ! Y$,B0PF!B`b !`X ! Y$,Bx0PF!B`b !`X ! Y$,Bh0PF!B`c @@XU `@!@B  ) 1~F`(! 3B(d (d(c 0Hf @0BB0B ,@fDL BB`fB2B @Y X@`XX0$ HسXJ! ,,  AE! #a,@01B `X @ /& 0  @!@X0!pB8Y@ $H(!PJ!2B B Y  0& 0  D!Y0B!pB8Y@$H PJ!,, @p q !   , c B Y0a$pB $Ԑ|, J! ,X @,, @Rp  C–?  ,, B,, +4 "DBD,@UD ,,@b $@RH(0C0,,`˜ &`"RL(C@,, (RP(CP,, *bRT(C`,, ,bRpX (pCp,, ."R\(@C,, 0CR`C,, 21Bd42B 868Y0N!p HX A!@ # e BP  A!  ,@ !0 0 ,`  0 ~F e 1B P@PX2/PAM$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 1" P!( P0!2B(" 1B $@X $! H `eH&@a,Be *!X 0(!0Y 8*!8Y$,B*PJ!B XX A!   ,DBB0,,e @@X @ ! ` ,, I Hp$ q ,,@AW,, "T  ,,@B$0,,`&@L`20HH&x0! P,,XX `,!`X X. PWBX*,,0,,  2dqw@ !ph p,`b 6!`X !pBC p: X0N!pH, , C!<( J!B@P $sf$,Bh(PJ!B@X 0!0Y8$HXJ!HΩ? p (PCvf 8!8Y$~, J!!1B @B c B Y 0D!0Y 8@!8Y @B! , 3!( J!Bd @Y@!B^L BB, 8P!8Y@1$B HY$ ,B?PJ!Bc @Y,,  B0B1B @@X,, ALH@!B$$), P!( (,P$ ( J! ,,@D D@$Rp C,,D @Y @! ) !7  ,,`XX!tf @!@ #  0L0Y$ ,Bx%PJ!B@XJ ! ,? 8@! ,,@XXrf AE! #  0L0Y$,B$PJ!B@X  ,,@D1B B Y0B!<, ,,`] @@X U0 `!@B  ) 0~F`(! 3B(c (b(b 0Hg @0BB0B ,@gDL BB`g1B @Y X@`XX0$ HXJ! ,,  AE! #a,@01B `X @@ /& 0  @!@X0!pB8Y@ $HhPJ!B1B B Y  0& 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , b B Y0M$pB $t|, J! , @,, @$Rp (PC$sf$ ,B!PJ!B@X ,, d B DRp C !p p,`a !`X H`!$B@A H$  HX0N!pH, H, C!( J!B@P  $1B@0,,`` `R  C H!p$ p,@dP!!H@(,88$B@Y H! HY$ ,B8PJ!B@P$ ! , @s7 ! ,B01B H!$ $,@a P@PX p!D D,H8!DBX ,,XX @! @! BD,, d B dRp  C0 $pB8Y @!@Y? ,,@ 1BD1B B Y B! 80C!X,,@ D OD02B`0 ,f 3B H HX P$P$#@f $@XD$@HBL(P3B *X!P!TBX*p3B .X .!\ #f 0a`B f`23B 4@X43B 6!lBfl8,,+4 <xBx,x:1B >X,, 8QP!p p, #.e J!3B @3B BP !   ,$,BإXJ!B@X" ! 1B D B`c `X 0B!0Y 8D!8Y @! , 3!( J!B d B! Y@!`B0Y 8P!8Y@1$H@XL J!Bc @Y,,  B0B1B @@X,, ALH@!B$1B P@PX P!( P?#A3B(" 1B $@X $! H 0%!0a3BH&@1B (X (!@P fP*`a,Bf .!X 0,!0Y 8.!8Y$ ,BPJ!BXX ! ,BB@0,,f @@X @ ! ` ,, I Hp$ q ,,@AW,, "T  ,,@B$0,,`&@L`20HH&x0! P,,XX `,!`X X. PWBX*,,0֐? !d d,$( J! ,,@D ! ,? ,,`] @@X U0 `!@B 3~F!0,,`0B 0B H HX0,,`H q!@ @, #d D!p (0C @!@X `!0 0 ,` `H1H$7  @!@Xz P`!( (,@RP0B(" 0B $@X %! H HC0,,a (X (!@P @P,(0LBP&P,,©*h`T,t! @!@X6 p,,XX p0!` 0!p\B`.,,@a 4@X Р4!h 05!eBh2,,`a 6`X ؈6!l 6?#!Bl8HU `@!@B `M1~F`h!0@/B`XP$0)`0P P, 0(@08 x)`0(< T@4 HH p  QH<H$ (@C0,,`@2B @sd @!PD #X ! HB H,`c&! H1A ,x, $!Y ! Y$,BPZ!B@P  `0vd H@!$ #,, c "! X pa! ,, #@!O}, Z!B`a xxYp^! H@, 3@!,( Z!B`e `X P!0 p (PC$G, p (0CreZ ,,F@P0@1B,, AK H$q, p (K,,`0 @P! # ,, KH1B$,,@D$ 01B &`X $@P@b P*0L |&, `1BL,p1B .\k< !` `, `2 1B d4` `c`61B 8skW  !t t< 1B >X p$@b ^| )8 ! # ! , Y "!E #@XX @$!@`b `X @$@ b 0 @c  1B$@ H!0 !PT PT,`T& `1B L,0T cL.L !d @#xd48! !` `,01B 6lBbl8`,X !x # p! ,^,,b:a}Bt>1B`,,  "E @ aDb0B@,, AK HpH i ,,`0 @P! # ,,@XX $! H a ( P @BSH*`,,`XX &!0L a .0\@L,,, C2,,@ 4hi( ,,XX 8!p XX 0!` p0 mB`<,,XX x^! @XX d!  xd ¹B\ !.B,, #@! ( Z!B`XX,, XX H!$ `$0`!B2B ,, " 1BD$ !0L 8&0! @,,B (Pq , p (K~ ,,C@P01B,, AKH1B3Lw$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 I"  PH(iQ!1B(" 1Bx$01B @&@Y !P b *Y !X ,d H. HY, YP!,( XT!BP!4( XT!BB,`d,, XX H!$ @c PH( @ BC$" ,,`XX &!0L c (0P@@L$P1B*`1B ,PX @cT.$ ,, 3 0!` #,,@ 4ph s ,,`B6re  @$`U `@!@B  % 2~F`(! 2B(c (b(b 0Hd @0BB0B ,@dDL BB`d1B @Y X@`XX0$ HhXJ! ,,  AE! #a,@01B `X @@ /& 0  @!@X0!pB8Y@ $HPJ!B1B B Y  & 0  D!Y0B!pB8Y@$HXPJ!,, @p q !   , b B Y0]$pB $||, J! ,h@,, @DRp (PC$sf$ ,BxPJ!B@X> :? a!@ #a @P  ,,` H H@O$,, a"*BD ! H  H,"? ,,`] @@X U0 `!@B  % 2~F`(! 2B(c (b(b 0Hd @0BB0B ,@dDL BB`d1B @Y X@`XX0$ HXJ! ,,  AE! #a,@01B `X @ 1& 0  @!@X0!pB8Y@ $HPJ!B1B B Y  & 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , b B Y0Y$pB $4z|, J! ,@,, @dRp (PC$sf$ ,BPJ!B@X ,,  B`s ,,`XX 0!0 0 , H  `B $0 a " 0B$0,,XXP,, *PW~FT(0ANB &Hi7D `,,a.ZB\0,,@XX 05!h Ch2,,XX 09!p a :t@`p6,,XX ?!| @a D @|<`1B 8L8Y0N!), ,,   @B@X& ,,@D0,,  P@PO(,, @qe @#!D #`XX X@!,  ,  U0 `!@B PA0~F X!(d0,,` `R (8! ! ! B,`d02B`0 ,Ad @2B H HX !0 B0 ,H h!hY$,BHPV!B` @@! #,,@e P@PXX!9(x)@qP H" D P$<HPX @!0L 0L,(Ę*@9Lx)`r T( @P @P<  P7@ `!X #e. H@q,W h/1(! $da 8/! H/9! ,`e 6`X !pBp,g:!!Ht,, p8!pY x:!xY$,BPV!B@P !0  f 3BP3B(" $02BH& $Pa X/! h /9! P,e ,X !`B`, g2!!H d,, p0!pY x2!xY$,B8PV!B@P  !0 0 ,1B 01B`0 ,@f  H@fD$, $@2BL( $`2BT, `!p\ \ C !` # `!dBd,@ad42B 6lkw @!p p,e:H8t80B @P BaX hA! ,Z0B @ B a 02B k P@!( (, e "(#`a &0 LBaL(l @!PT PT,e ,`[X@ X. T# a 2 dB@ad40B 6`X @!x x,Rx6Ё0B : tBat> @! pX0! hA! ,f p\p#a @ B a  !0 @0 X! @!D D,@H"@0B (@ PBaP.P0B *X !`X X*0B 2 dB@ad4\ @!l l,#p6Ё0B : tBat>0B @P@Y `! P0B p\Ba^ @@! a H! HX@  02B 00B`0 ,@Ad A3B" 1BD$03B&@1BL(pA2B .X !PT PT,d ,!X !`B`,h*!XBpY x0!xY$,BPV!B`g 3B HHP P@!( P!2B(" 2B $Kc !L  ,(@@$PU `!@B PE1~F X!(d0,,` `R (8! ! ! B,`d0B 0B hhY P!(B(,hh $BpY x!xY$,B(PV!B@P !0 0 ,?  ,@ @A! ,%@@P01B1B Hp$ q P !( # c" H$ X#(! $La x#! 8#! @,c *X !`XB`X,f.!!Hrp\,, p,!pY x.!xY$,B8PV!B@P !0  e  3BP2B(" $0A2BH& $Pa X#! h #9! P,c ,X !p\Bp\,f0!!H`,, p.!pY x0!xY$,BPV!B@P  !0 0 ,0B 00B`0 ,@e  H@eD$, $@A2BL( $`A2BT, !p\ \ C `!` # `!d @a 4@X 4diW @!l l,62Bl8 `!t ex<2B p>pY @A! ,E@ `P`Y,xY@!tw( XP!B@!|w( XP!B`a `X  !0 80! @@!  ,@ @@X H`!$ $ `!D @a $@X $Hi70 @!0L 0L,&@2B (КP @a *X *!PT PT,e ,X pU, BhYp!,BPXP!B @!0 0!0B $ @$PU `!@B  ) 1~F`(! 2B(c (c(b 0He @0BB0B ,@eDL BB`eB`XX ! , @p q  pf 1$0@2B00B`0 ,d 8!8Y$,BcXJ!Bd @ 2B DP$ !0 0 , sf 8!8Y@!H Xں J!B@Xv A!  X@!`XX ,,``x D,,  !H#`XX !@P `P&P,, @+!T #c4,$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " .X,.bL 0` d`22B 4ph cL ,,XX,,XX !| |, )Ę BB > | `|,1p|,`9|,A|,8H4 @0pH ! !lB6 2B D ~F@d2B "Dc7 ! H  H,`(Ę &0LBL, 8P!8Y@ $HPJ!1B B Y a 1&0  @!Y0B!pB8Y@$H8PJ! 1B 8D8Y !B,88q$B@Y H@! HY$,BPJ!B@b D@Y DB,,$T4}, J!1B,@0B BB,,@XX !0 @D D,, b H HX H!$ AF$,, b " X "!D @SD ,,`b &`X &!0L @BL$@,,¦(P2BP*`,,b .X p.!p\ ¶\,1B 0X p0!X` # b 2 X Ƞ2!d 828! !h h,`b 6`X0$phB $j|, J! ,h@ ! ,? ,,`] @@X U0 `@!@B  % 1~F`(! 3B(d (c(c 0Hf @0BB0B ,@fDL BB`f2B @Y X@`XX80! !   ,@$ Dp q @$ 0$ HdXJ!,, AC! #@a,D01B `X @ 1& 0  @!@X0!pB8Y@ $HHPJ!1B @Y a &0  B!Y0@!pB8Y@$HPJ! ,,@D0BB,,D@01B1B @p q0 H!$ $, J H$q7  P!( (, c " X0$p(B $$i|, J!0B B A 1& 0 DB2B@0@2B p c4 H !$ $,@)Ę P(B H( $  H, `$B`, !p( J!Bd @~F@dD0@2B p c @!` B`, !d( J!Bb @B@eD @!0 0 ,`@2B @2B HpH, q  P !( e("$ @! H  H,`d &`X '!0L @–L$@A2B (X )!P #d *X*`,, ,X,p,,¼ .\q7 $2B`2a.Be 84!8Y$,BHYXJ!B,,`AXX2B,@0B`X,,e 8!8Y$l,}, J! 0B @D@X U0 `!@B P93~F X!0,,`0B 0B Hp$ q( 0,,`@0B /B`a `X `!`Y h! , #@!( V!B8H @! ,hh$HhVPV!p PC @A! ,%B @P~F`b0B H HX H!$ H0! 1B$0B " X "!D @aD$0,Bb (!X `&!`Y h(!hY$,BPV!B`_@! B`Y h!hY$,BPV!B0,,  !@ #Hb !  % 2~F`(! 2B(c (b(b 0Hd @0BB0B ,@dDL BB`d1B @Y X@`XX0$ H[XJ! ,,  AE! #a,@01B `X @ 1& 0  @!@X0!pB8Y@ $HPJ!B1B B Y  1& 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , b B Y0$pB $d|, J! ,@,, @Pd, !`B`, !l( J!Bb @Y0@!, ,,`] @@X U0 `!@B  ) 0~F`(! 3B(c (b(b 0Hg @0BB0B ,@gDL BB`g1B @Y X@`XX0$ HhXXJ! ,,  AE! #a,@01B `X @ 1& 0  @!@X0!pB8Y@ $HPJ!B1B B Y  1& 0  D!Y0B!pB8Y@$HXPJ!,, @p q !   , b B Y0$pB $c|, J! ,@,, @P, !   , _ 1&0  @!Y0D!pB8Y @!@Y H@! HY$ ,BHPJ!B XX 9B! b)P 0!0Y8$Hh3XJ!,,@ B2BDB2B Bp q( 0,,`@2B /B@e P@PX 0!0Y 8!p p, #!\( J!B8H ,, +4 BB,@D0@2B 88Y0N!pH #ZR J!1B @1B BPD !!   ,@$ D ~F`e@2B H HX H!$ H0!2B$A2B " X "!D @eD$0,Be (!X 0&!0Y 8(!8Y$,B8PJ!B ! ,@X  1&0 0  !`X0B!pB8Y @!@Y H! HY$,BPJ!B _1$03B@3B`B0Y8!B3B 3!X @!B,g`X!"Hj0,, pP!pY x!xY$,BXPV!B@P  !0 0 ,1B 01B`0 ,@f  H@fD$ $@2BL( P,e ,X !p\Bp\,g0!!H`,, p.!pY x0!xY$,BPV!B@P !0  f 3BP3B(" $02BH& `!@P P C !T # `!`XB`X,aX.2B5c/$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 ="- 0`kw @!d d,@e4H@8h2Ё0B : tBat< @!| |,>Ђ0B hZ Ba\2B x^k @@!  ,`e  #@a P(B a("l @! H  H,`e &0OX@ L( H#a ,` XBaX.0B 0X @!l l,`Rl00B 4 hBah8 !t pt<0! @!| |,f @P@}#a hZ Ba\ x! `0X! @@!  , $0B " DBaD( 0B $@X !0L L$`0B ,` XBaX.\ @!` `, #d00B 4 hBah8Ё0B :X !x x:0B @PBaX hA! a p\!pYh\ 02B00B`0 ,Ed ^@3B@1B 3BP1B("@A2B (X ! H  H,`d &!`X !PTBPT,h$!LBpY x*!xY$,BHPV!B`g 3B HHP P@!( P!2B(" 2B $Kc| !L  ,(@@$PU `!@B PE1~F X!(d0,,    B dH0B$00B hhY P!(B(,hh $BpY x!xY$,BPV!B@P !0 0 ,?  ,@ @A! ,%@@P01B1B Hp$ q P !( # c "Gs @!02BH&@!HeP* X$#! h,#y! x8#! 8#! H#y! X #(! h(#y ! x#! $pA2BX.D , c 2 X Ѐ!hBh,`f6!!H`l,, p4!pY x6!xY$,B(PV!B@P  !0 0 ,0B 00B`0 ,@e  H@eD$ $@A2BL( P,c ,X !p\Bp\,f0!!H`,, p.!pY x0!xY$,BؖPV!B@P !0  e  3BP2B(" $0A2BH& !@P P C `!T # `!`X a .X .XiW @!` `,02B`2 `!h `ex62B p8pY @!t t,C `:`Y,xY@!<_( XP!B@!D_( XP!B`a `X  !0 80! @@!  ,@ @@X H`!$ $ `!D @a $@X $Hi70 @!0L 0L,&@2B (КP @a *X *!PT PT,e ,X pU, BhYp!,BHPXP!B @!0 0!0B $ @$PU `!@B  ) 1~F`(! 3B(c (c(b 0Hf @0BB0B ,@fDL BB`fB`XX ! , @p q  pf  Q$0@2B00B`0 ,d 8!8Y$,BX0XJ!Bd @ 2B DP$ !0 0 , sf 8!8Y@!H X J!B@X A!  X@!`XX ,,`px D,, B !H#`XX !@P `P&P,, @+!T #c .X,.bL 0` d`22B 4ph cL ,,XX,,XX !| |, ,Ę BB > | `|,1p|,`9|,A|,8H4 @0pH ! !lB6 2B D ~F@d2B "Dc7 ! H  H,`+Ę &0LBL, 8P!8Y@ $HPJ!1B B Y ! 1&0  @!Y0B!pB8Y@$HPJ! 1B 8D8Y !B,88q$B@Y H@! HY$,BؕPJ!B@b D@Y DB,,$}, J!1B,@0B BB,,@XX !0 @D D,, b H HX H!$ AF$,, b " X "!D @SD ,,`b &`X &!0L @BL$@,,¦(P2BP*`,,b .X .!p\ ¶\,1B 0X 0!X` # b 2 X Ƞ2!d 828! !h h,`b 6`X0e$phB $Q|, J! ,@!1B B Y 0@!0Y 8B!p p, #!( J!B( @ p C ! ,`d2B`Bd@A!H@X6 XD!0B@wf$,BxPJ!B@X !   ,? ,,`] @@X U0 `!@B  % 1~F`(! 3B(d (c(c 0Hf @0BB0B ,@fDL BB`f2B @Y X@`XX80! !   ,@$ Dp q @$ 0$ H1XJ!,, AC! #@a,D01B `X @ 1& 0  @!@X0!pB8Y@ $HXPJ!1B @Y a &0  B!Y0@!pB8Y@$HPJ! ,,@D0BB,,D@01B1B @p q0 H!$ $, J H$q7  P!( (, c " X0i$p(B $,O|, J!0B B  1& 0 DB2B@0@2B p c4 H !$ $,@,Ę P(B H( $  H, `$B`, !X( J!Bd @~F@dD0@2B p c @!` B`, !lu( J!Bb @B@eD @!0 0 ,`@2B @2B HpH, q  P !( e("$ @! H  H,`d &`X '!0L @–L$@A2B (X )!P #d *X*`,, ,X,p,,¼ .\q7 $2B`2a.Be 84!8Y$,BX%XJ!B,,`AXX2B,@0B`X,,e 8!8Y$t}, J! 0B @D@X U0 `!@B  5P0Bb0b J!0#P @K>A #P p`K>9 #P K>A #` !J! # /B—~F ,@(DL BB`(|F @Y X@`XX8$ Hh*XL! ,,  AE! #/,@0|F `X @ 1& 0  @! @X8!B@YH $HPL!–|F B Y A 1& 0  D! Y8B!B@YH$HXPL!,, @p q aK>#   , . B Y8m$B  $L|, L! ,@,,@DHXXL!,, BB|F@ ,,@DD0|F,B * /B *(" A|F $ IB`+H&@A~F (X8(! HX L!B - @B@Y AK?# B ,`-! H`0@0 ,@@-$B HY6Kd$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "> P!@PY$,BPL!B / B ~F DP @K?#0 @9 ! HK>#$ $,@- P! PX8!B@YH$ZH Cje L!p C AK?#B, pf@$B HY $,BPL!B@X aK># ,, @!Y  K?#0 B A   `X8P!rH ,@, C!B( L!B@- @D@Y aK?#B,`-! H`0@0 ,@@$B HY P!@PY$,BPL!B@. D@Y8D! HPL!~F @,, D  B Rp C !K?#  HDx ! sf$,BȦPL!B !K?# #  ,,`   B, @p q  HK>#$ $,@/ P@PX H!$ ,$"(BH a~F$$0,p, !R( L!B@+D  K?#0 B0 ,-Ę @ B , + H! HX PJ?#(B B P(" @PX 8!8Y @!@Y H! HY P!@PY$,B(DXL!B@PX  ,`Y H@$s7  PJ?#(  ` 1&D0  "! XP"! J?# HB H,`.Ę &0LB0L,- (!X 8D!8Y @!@Y H! HY P$!@PY X&!`XY `(!`Y$,BأPL!BH@0~F0 B~F  HJ?#$ # P`K?#(B(, -Ę "DBD,@+ $!@X J?#0LBB L( `X 8!8Y @"!@Y H$! HY P&!@PY$,BAXL!B@P J?#B,@.Ę D B ,`. !`X HK?#$B$,p,, ,@H, C!4}, L!B/ @ ~F DPp K?#0 @9! HK?#$ P! PK>#( (, . "! X K?# HB H,`, &!`X8!DB@Y H$! HY P&!@PY$L~, L!p pC J?# ,+ @!Y8B!B@Y$ ,BOXL!BH J?#B, v#e@$B HY $,B(PL!BH J?# B , v#e@$B HY $,BPL!B(H J?# ,@  K># #,pB,HK>#H X L!B@- D@Y J?# ,`.Ę 0 B0 ,@R!bH@, C!tX( L!B( @!Y J># #`+ `X @J?#  , @@ #@+ P@PX$ (BD$0|F &`X J?#@P @P,B(0!LBP&P|F *X *!T #+ ,`aXB+X.|F 0X K?#d d0|F 6`X K?#p 08! ! 8$xB 6!|# + B Y 81K?#p DB•|F @P@Y @!P! # + HRbB@+T•|F XV`XYV•|F `X"B+@ ~F@ ,`* H HY 8D!8Y@R!bH 3!W( L!B* @Y @! @/D0|F `X @K?#  |F H HXP$!$B(" ~F$@~F H( HYP,,B P*@PY K>#`X `X,J># H# `& cXD ` `B80!LBXPL!p*XB  P&!@PY@$,BXPXB!B !M( XB!B. @Y @!0 0/ D@|F @@XH$ B$A|F " X "!H#`. &`X$PMBP*`~F,p~FX.A|F 0X ȀJ?#d d,2aBd4A|F 6`X J?#p p,C8AmBp6A|F :X &x0  <!X `:!t #* K>#| |,+ 8NpB, @R!@Y$,BPL!B@X ,+ @ •|F DP   &0 0 @! HK>#$ $, !J H%~F@+$A|F " X "!D 0#! |FD$0A|F &`X &!0L +L(P,,. ,X ,!`X `X,,PTBX*p,B+ 0!X 8.!8Y @0!@Y$,BPL!B. @Y8@!, ,,`] @@X $rf$K( L! ,  U0 `J!@B  1 0~F`(! 0B(f (f(e 0H` @0BB0B ,@`DL BB``B3B @Y X@`XX0$ HXJ! ,,  AE! #a,@02B `X @ 1& 0  @!@X0!pB8Y@ $HhPJ!3B B Y  1& 0  D!Y0B!pB8Y@$HPJ!,, @p q !   , e B Y0q$pB $?|, J! ,x @,,@DHXJ!,, B2B@ ,,`+4 0 B0 ,@ D3B @@X H@!$ $,@b P! PX0!p$BH, uP-$H c&Y> J!0B @0B BPx  ,,@ D@dRpC !0 P! H!p$ @Ab PPXH$bL@PI( J! B @  0 B˘!pLs$ !pP Bb *XH$dL@PtI( J! B @ * ` B˰!pXs, $wf$,BPJ!B@X s f$,BPJ!B@X A!   ,@ D@YDB2B@02B `X H !$ $,8!HPJ!2B B Y B! B?#3B@ 2B D@Y D!  1E!03B2B @@X @! g ,, e " X "!D D,"(BD ,B`g &!`X 0$!0Y 8&!8Y$,BؐPJ!B e B Y0B!, !1B@p,B d B! Y !0 BA   `X 0N!0Y8$B@Y H! HY$,BxbPJ!B@c D@Y !B, 8B!8Y$,BPJ!B@e D@Y0D! H8PJ!0B B2B @Y0@! H@X J!B DdB ! ,`-Ę 0 B0 ,d @!@X H!$B@A H$  HX0@!p B8Y @!@Y H! HY$ ,B*XJ!B@PX !B,.Ę @B,`c !`X H!$B$,`,p,, H, C!(}, J!B e B Y !B,`b !`X0B!pB8Y @!@Y $Č~, J!$ ,,`] 0B DP A! ,$}, J! ,(@@$ U0 `!@B  ) 0~F`(! 3B(d (c(c 0Hg @0BB0B ,@gDL BB`g2B @Y X@`XX0$ H8XJ! ,,  AE! #a,@01B `X @ 1& 0  @!@X0!pB8Y@ $HsPJ!1B7^$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 ;N"O B Y ! 2& 0  D!Y0B!pB8Y@$H(sPJ!,, @p q !   , c B Y0u$pB $:|, J! , @,,@ B1BD,, D B01B,, H H HRp$ C,,@V P P P $sf$,BPJ!B@X2 !   ,@d D@Rp (0Cse ,,` H HO$,,@P P@PR((C !pD p,@d $!@X !0LBB L( `X0N!pZH, , C!1( J!B@P$ !   ,@ Dq $rf$,BPJ!B@X !! 8@@! !   ,@D0@2B1B H HX H@!$ @d$ ! A2B@ H,`d &`X 0"!0Y 8$!8Y@&!H Xơ J!Bb @Y@!!`B@p,u $( J! ,,  BOB01B 88Y @ ! B A @  @X0N!pRH, @, C!/( J!B@P$ ,,@ C! %'$,, d " X" A+B $`OL$ !@P @P,X0(!pB8Y@$ZH CY J!p C ! ,$ @~F fB B1B D@Y D!  1E!0 3B@1B H HX H!$ @e$,,@b $@X $! H  H,$DBH"0,Bf (!X 0&!0Y 8(!8Y$,BPJ!B XX C! )P A! #X  !0 BA   `X 0N!0Y8)$B@Y H! HY$,BTPJ!B@P 1! ,B 2BD @!0  ( XX H!$ $)H$PP80C 7 P0W(l$ ,,@P P@PR((0Cse2 s f$,B8PJ!B@X" ,,@ D`_ D1B H HX0!, ,,`] @@X U0 `!@B  5P0Ba0b J!0#P J>A #P pK>9 #P K>A #` !J! # /B—~F ,@(DL BB`(~F@ •|F D@Y XD`XX8$ HXL!,, AC! #@/,D0@|F `X @ 1& 0  @! @X8!B@YH $HhgPL!|F @Y A 2&0  B! Y8@!B@YH$HgPL! ,,@ Dp q K># ,, @Y8y$B  $3|, L! ,#@ ,, BHXL!,,@|FB ,,`+4 0 B0 ,@ D,B ( /B ((" A,B`)H&@A~F (X8(! HX L!B , B Y AK>#   ,`, !@X8B!B P,@uX-$H c S> L!B~F @B~F BPx  ,,@ D@dRpC K?#0 P! HK?#$ @A, PPXP$bLHR>( L! B @  0 B˘!pLs$ K?#P B, *XP$dLHRt>( L! B @ * ` B˰!pXs, $wf$,B|PL!B@X* s f$,B|PL!B@X AK>#   ,D @`_ @|F H HX8! H X G L!B- @Y @!0 0 ' D~F @@X H@K>#$ H!|F P@PX8!$B@Y H! , 3!=( L!B- @Y @! @,D0@~F `X~F |F 88YH$pBž L! B@/ `⟼W@ ^)BS P& (0#XX 8*!PT PT)P K>#X ,- .!X `K?#`B C `2 X8P!bH ,@, C!(( L!B- @!Y J># #`+ `X @`K?#  |F P@PX,$ (BD$0|F &`X pK?#@P `BP&P|F *X *!T #+ ,`aXB+X.|F 0X0|F 2!dB@+d4|F`l,( H8 HY 1&t0  :!X 86!8Y@R!bH@, C!B( L!B- @Y aK?# B, @R!@YH$ZH CW L!B~F B B~F DP AK># ,@0@~F~FH@~F P@PX PH(q7d @K>#D D,@B $`b_L$@|F (X$`PBT,p|F .X @K>#` `, /2|F4\Bd6p`Bh.|F 8X88! H X L!B@- D!@Ypf@$B HY $,BvPL!B@XF J?# , DB B~FD0~FH~F H HY,, B P"@PY K?#0H 0L,@J># H" T PWXD T TB8*!$BHuPL!p*LB  P!@PY@$,BHuPX@!B !:( X@!B`@J>#|F @B@Y J?# B ,`+! H`0@0 ,@@9$B HY P!@PY$,BKPL!B , @B@Y aJ?# B ,`)! H`0@0 ,@@$B HY P!@PY$,BKPL!B XX QB! R)P  J?#  HDx ! sf$,BsPL!B J?# #  ,,@ D@Rp C0,,    B,Hp, !9( L!B@-D J?#0 B0 ,-Ę @ B , - H! HX P`K?#(B B P(" @PX 8!8Y @!@Y H! HY P!@PY$,B XL!B@PX  ,`Y H@$s7  P J?#(  ` 1&D0  "! XP"! `K?# HB H,`.Ę &0LB0L,, (!X 8D!8Y @!@Y H! HY P$!@PY X&!`XY `(!`Y$,BHqPL!BH@0~F0 B~F ,, AI H HRp$ (@C,,@P P@QR( C J?#D D, "E~F@-D$0~F &`X &!0L 0'!@~FL(P~FT,- ,!X `K?#p\BC \0 X 8P!8Y@$XB HY P.!@PY$,B=PL!B( @Y aK?# B , @D!@Y$,BhoPL!B) @Y aK?# B , @D!@Y$,B8oPL!B*@ H`0*pH !*  ~F~F" `J?# HB H,`-Ę &0LB0L,- (!X `K?#PTBB T, X 8$!8Y @&!@Y H(! HY P*!@PY$,BXL!B@P aK?#B,@.Ę D B ,`* !`X HJ?#$B$,p,, ,@H, C8q$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "`!L}, L!B. @ B~F DP J?#0 @9@! HJ?#$ P0! P@J?#( (, - "! X8!DB@Y$,BXL!B@P` AK># ,@* D!@Y J?#0 B0 , . H! HX8@!B@Y H! HY P!@PY$Lp~, L!p (pC aK?#B, v#e@$B HY $,BxkPL!BxH !J?#   , - B! Y8D!B@Y$,B(XL!B@* D!@Y aK?#B,p,, #!\ }, L!BH aK?# B , v#e@$B HY $,BxjPL!B K?# #? K?#0 p (0C @@J?# + $ PJ?#(B(, +(" pK?#H # J>#0L 0L,-Ę (@PB@P,- *!X `K?#`XBB X. X8&!PB@Y H*! HY P,!@PY$,BXL!B@Pp aK?#B,@.Ę D B ,`* !`X HJ?#$B$,p,, ,@H, C!}, L!B- @Y J?# B ,`+ !`X8@!B@Y H! HY $w~, L!B~F B Y aK?#B, @@!@Y$ ,BXL!BH K?# p C K?#B, $uf@$B HY $ ,BgPL!B@X K># ,( H@ HY ` 2&0 0  !`X8B!B  P!@PY$ ,B8qPL!BXX Q@! R)P ,,  B RC `K>#0 B0 ,+ |F H HX P J?#( (, PP$#@+ $@X$@HBL(P|F *X J?#`X `X,B,P!TBX*p|F .X .!\ #+ 0a`B +`2|F 4@X J?#l l4Ё|F :X8$tBx> |F D@Y 8J?#p @DD|F @P@Y @!P! # + HRbB@+T|F XV`XYV|F `X"B+@–|F ,`( H HY @ 1& 0  @!@X 8B!8Y@R!bH@@, C!7( L!B AK># , D B``_ B|F @@XH$ B$|F " X @K># H  H,`/&@|F(PDBL*HBP"`|F ,X J?#p\ p\,.YB\0|F 2 X J?#h h,@C4AeBh2|F 6`X86! H@X: L!B- @Y8@! HPL!|F B Y8B! H@XN L!B- @Y @! @?#B|FB0|F `X !0 0!`|F |F H HX H!$ @+$,,@- $@X $! H  H,$DBH"0,B* (!X 8&!8Y @(!@Y$ ,B`PL!B, @Y8@!, ,, B ~F D@Y8D! HX L!B`XX X@!,  ,  U0 `J!@B  % 2~F`(!(b(@b(a0@1B `X $0@ a B Y B! @aD0B @p q A! ,B 0BD A! 8@ !  2&0  B! Y A! #$HBX A! , B 1BD1B @p q< A! ,@01B `X ! ,@b D@Y @@!  ,8D! B  B0 0 ` 3  J! ,@@`$  !   )8@! ! , D B1B H HXP%B (  $)`*Ș X,B HX H, $ c$" 0B $@X @%! H  H)`*Ș &0LB@X L$ H c (Pa7 @!PT PT, PVB * !`X X ,X! h,yH! @!p\ p\,b ."R\( C`$ $dB @0!@Xn @`$ @!h h,@c 4@#Rph (C ؠ!l l, 6lk !p p,b :X :w~Ft8 !x x,.$ >|B|, 8>!8Y$,( J! 0!0Y 8!8Y$,( J!@`$ U0 `!@B 3~FP x@= #P   #P x= #`a `X $0@  ! )@8D8! !! ,D@B0B B Y@B BH(@@`$`@!@B   2~F`(!(b(@a(a01B `X !0 H8 @! $0@1B0B @Y@0@1B p aT A!   ,b@0 H 81 `t `X  0 c @ 1B D@Y  D!  8D(! !0 0 ,$,+( J! ! @! B1BD0@1B p a @`$ U0 `!@B B  D!P #O ! #@D` B( B(@*H@D D  @ BH B` PP #D@" BB@ BH@ B$b B@b BB BH B$ B@ BB BH B$ B@ BB@B  B@H P@PX X !, ,,@X @@!P #I@`$BH@H $B X`XX Y X,@ ,BAH @p@, a  @!@X P0!( (, P@PP8! Hy! X! @ $ A! , @`Ёr8 X@!, ,,@ P, $  ,@@!"$B @!a7 X@!, ,,`X X-rw  @$@$B H@ A! , X`XX X ,B@AH PpP, ap @@!  , @!r70 A! ,@ P $ ,,@XP! $B @@(aw A! , @`Ёr4 X@!, ,, X-r7$ @@!  , @"rw P@!( (,P(@ $B($ @@!  ,H @Y@ @ @$B  H(@@$ !   0b`B!BA @p( s  $!PHBX Q@!@ # Q$! 8LB! @!@X H"x! 1$!  `@$ U0  ! b "!0DBX P$!@H #U  !  B !   B  X!H (, H"0X! r$ $,@ @?# 80! $Y $@ $H (, O? Hq! X$ $"PH #9d$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 W"q @!@X !  bB!@"H 0*!0YJ? !pP q  ,!, @(!@XU  !  bB!@"H 0*!0Y"? !pP q  ,!, @(!@XU  !  bB!@B(,!`TB0Y? !pP q  ,!\, @(!@XU  !  bB!@H 0*!0Y? !pP q  ,! , @(!@XU  !  bB!@H 0*!0Y? !pP q  ,!, @(!@XU  !  bB!@B Y(,!`TB0Y? !pP q  ,!l, @(!@XU  !  0B x0 <0 x b B!pBa(2!, ! 2!P`B(Yn? hx0!  2!PB(Y? hx!  A!PdBX.!$ @.!  2!P0BXH.0 ,0b !  0B x0 <0 x b B!@0B? ! 2!PB(Y? hx0!  2!P`B(Y? hx!  A!PdBX!  2!P0BX 2!PB(Y? hxh!  2!PB(Y? hxP!  2!PB(Y ? hx8!  2!P`B(Y? hx !  A!PdBX!.!L$ @.!  2!P0BxXH.0 ,0b ! 8) 0B x0 <0 x`b B! H`8H! $@A!BX@J!B HYR? xp! @J!B HY? hxX! H!B , #? 88! @J!B HY? hx ! xFp! $”B@d @J!0BX@J!B HY? x ! 8F8! $Bh6, @J!0BHX@J!B HYR? hxp! H!B , #r? 8P! @J!B HY6? hx8! @J!B HYz? x ! 8F!  $”BB @J!0B8X@J!B HY? hx8! @J!B HY$d, 8 ! @J!B HY? h8P! @J!0BX@J!B HY6? x ! 8F(!  $”BB !B a? HD8! @J!, @D!@X8U` `!@B 8) 0B x0 <0 x`b B! H`8H! $@A!BXX@J!B HY6? xp! @J!B HY? hxX! H!B , #? 88! @J!B HYn? hx ! xF! $”B@ @J!0BHX@J!B HY? x8! @J!B HY? hx ! xFp! $Bh6d @J!0BX@J!B HY*? hxp! H!B , #f? 8P! @J!B HY? hx8! @J!B HYR? x ! 8F!  $”BB @J!0BX@J!B HY? hx8! @J!B HY$L, 8 ! @J!B HY? h8! @J!0BX@J!B HYF? x8! @J!B HY? x ! 8FH!  $”BB< @J!0BXX@J!B HY? h8! !B a? xD! @J!, @D!@X8U` `!@B    0B x0 <0 x0b@!P0B? (D!`B0Y? 8 ! (D!`B0Yv? h8X! (D!`0BX(D!`B0Yn? 8(! (D!`B0YZ? hx! $ $PBaZ? xB! (D!D, @B!@X U0 `!@B Y& 0B x0 <0 xb@x@!B`F!B@(HL!Ba0B00Ba? @!qWp `!0L 0L,a (X&!@PBd? h8! @ $ !, @!2B @ #@ HP9! Rqw hDy! xD! !0 cHP2B (J(Y 0!` `,T2 !( # e H HX P$H(@`b$2B " X ! H  H,  p!0L 0L,  !P #b @ $ !PT bT,p2B .X !` `,r Ȁ!d #@e 4@X $l@ch82B :X !x x, p!| |,` |f | @cth< ! #b0B@1BB 0BD01BF !@ 8H(! !@1B(X 8!qw @N! 0!`  (V(a @ $ !0L  LV0 x&(! !PT PT,`P*!HX5Pd! T ! 8B(! !@1BX 8!qw @N!l !   Za @$L !@  Z@ xH(! 0!` `,``L!Hh4Pd! X @P!@XU `@!@B ( d)d2!(d (c(c (b(b 2B 2 X 2!d `d@2B B YB B0B D @`aF !!@ a 2` ei !! @`DB0B B Y $0 @ ` 2 |2, @B2BdHB2B @p k< !!   , B 0B0B F d2@B2B Hp k  !! @D 0B0B F`Y $e@ ` dB ) 8 !!Ȑ # !!  c Bp ql !!0 0,@ A0B 2 ddHB2BB H !! ,`F A0B 2 ddHL !! @$8D8! !! ,@0B0B F0B `2,Y !! # !! , Y a! # `200B FɌ@`d@T$ H! H?#p$ @C !! # aB 0BD !!0 0, Ȍ2 B0B d@ ddHB2BB H !! ,`F A0B 2 ddHL !! @$8D8! !! ,@0B0B F0B `2,Y !! # !! , Y a! # $`da @8 !0  0p ! ,a H # $p a @8 !   0p Ƞ!d d,`` Fe # $p a @8 !@  0p ! ,@` D # !d 28 ,d ! () d)c@b@(e (e(d (ddL 2d0 -Ș @ cdB 1BD02BF1B2 ! :r$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 3", $ Bp q ! ,$@ 2B Dp q Ȁ!d d, #20 @H4 ! , $B@H$ !   ,@$DK \ !0 0,`D F0~Fb@ ! ,BA1B2 1B D@Y D!  b@0B1B`0, e 2 X A!B,a@! "H,`, @B!@Y H@! HY$L,  PC !  1D!01BF$ X!, A!B,b@B(@X?#p, @C !0 B0 , b  $Pda7 P8 0!!`  0pW 8!!p p,b @P@Y @P@ # H$pPa H8 @!  0 p7 !   ,`b F`Y F!0 D ! c B! YB8B ,P e ! X9d)bbH2!(f (e(e (d2B22Bd@"H  @8 !!   0p @! !!  !@e #f @Y @! cB 3B D@YD01B F @ b2 ! b Bp i !0 0, Ȍ2 1B dD |2, B3Bd@B3B B`k< !   ,`F 1B 2 fd@B3B B`k  !  `F 1B 2 X $ʀ@ c Bd ) #8 !Ȍ # ! ,Y ! #@c D@Y $e@`c dF fd@B3BB H! !0 0, Ȍ2 1B d@ fdBL !  $0@8! !0 0,F1B 2dB cdB0,`Y ! # !   ,@Y `!e # bB0B@00B F`Џk `!d d,@a D@Y:x)@t e@  e<P 5qf$0,B PX!BH@ ! )PL A! @$ 81 `t0dL 0 B Y  B 0  0 *f @3B H$q7$ P!( P ! `!D @f $ЈHqT$ `!0L f (@P @pP&! !PT PT,a ,X9Xx)@s T2 d `h<8`2D !p 8p:0! !x #Hx>x ! 5qf$0,BPX!B ! @a D@ cB$ qf$0,BPX!B@X  @$XU `!@B XId)cbH2!(d (d(c H @8 !  0p @! !  !@ # b 2 #R`d(0CY!1BB !1B2 ! `(`C ! ,xpA$B@X: XD!B !! bB !0 0 ,` 0B 0B Hp$ qh P`!( a(" 0B$0 @H ! L !@P @P,(P2BP*`A1B ,X ,!`X BeX.2B`, d 2 X !h h,`b 6`X h0!hYp2!hB$4, a!@ #e @P a! ` Hx! H@!$ X`! P!( (, a " X 9Dx) r ($ H (<P0P 5qf$ ,BXPX!B@ ! ,@2BB00BH 8 @1 `tdL H$B`X $ 0  0 *@e 2B "pD q4 @! H @$q ! `!0L e (PqW|D `!PT e ,`X @`X*4pB !` `)Ǽ \0 4P` !d d,@a 4@X9hx)sа d: t x<8p:d a!  0Z(! p! ,Ep p\ࢻ~Fb^4 a! @b8 ! 5qf$,BPX!B ! 1B! B1BDD$ `!  ,h@qf$,BxPX!B@X  @$XU `@!@B XId)bbH2!(c (b(b (a!H @8 a!  0p @! a!  A!@ #`bF1B2 ! ,$ @`q$ ! , $B K0 !d d, #20K ! 1@!1BB$ !   ,@DD1B2t$ A! #c @Y @! b B@ f2 1B D@YD0B1B F  @ f B@ e2 ! `e F i !   , Ȉ2 3B dB |2, B3Bd@0B3B F`k< ! ,@D 3B 2 fd@0B3B F`k  ! @D 3B 2 X $ʀ@`f Fd ) 8 !Ȉ # ! ,Y !! # f B Y $ e@@f dD fd@0B3BF H0  !   , Ȉ2 3B d@ fdBL !0 $0@88! !   ,D3B 2dB fdB ,@Y ! # !0 0,`Y !e # c B Y  B! d @`q !  d 2e@`fdFD$ ! eB A!  0D!h@ @!d d)Pl ! #`(C ! @c D@Y D`i !d d,202BdF ! dB 2B xDxY !d d, C h2hY,Yփ X!Bڃ X!01B F`Y !F!0 8F0! ! , @Y ! @ !0 c @@X @ i70 H!$ $,H2B PJ( @`c X`XX X!, ,, d " X x-" BpYx!( X! !0 1F!1B@$ @$XU `!@B XId)cbH2!(e (d(d (c(c (b)H @8 !  0p @! !  !@ #`D8F!  $$ (!P @8B$ 2!@, Y a! # d0B! $$ !0 @8PBJ! ,@Y @!e #d @Y@@2B H`a  !! ,`d F!`Y (a! # pF!pYxa!Hh PX! A!   ,@D; $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 $"DB3B@@2B H Y HPB3B (J@"@ fB !0 `f ` i| @! # b@3BP0B(0B " X $ H@`a H&D |", @2BD(P2B *Tk< `!`X `X,X. 0B \0`X dX22B 4kkW  !l l8 0B :X $x@a x>t )`8 h!ش # p! ,pY x!!p #a `Y $@a @ @dDP2B(J HQ 1 a!@ @,` 00B F0 d L H!$ @!x$8! X`!, ,,X 0B $ HB`aH&,,`XX !XD # !@P @P,X @!T #a .PD !` `,` ,X9Xx)r `2 d `<  P7 !p p,C82B <x@dp>A2B :X:2B 6l @d hZٴ@dl\ x!! d `xiw !! g@ B2B D@Y $@d J }B, 02BF@2B Hk<  !0 0 ,@  @2B 0 @e  2B $Kk  @!0L `XL A2B " X $@P@d P*D )`8 @!X\ # @!d d, X !h #d ,X $`@d `<`X eX82B> H h!! ,`ش6 B2B l\ el^L A! $H@88! !! ,b B2B D BdJ, Y A! # A!0 0,`Y ! #`@1B H@$qw  !0 @b P0(@@d $D$ !0L cL( !PT T0C !D # X@!, `,. Ȁ!dBd,@gd40B 08PD !x x,` ,X9Xx)r x8 p p<P !| Hx>u8! h! ,`p\H`8lZ3B @ Bg` !   ,D3B b B`gF@B0B Hkw @!  , ` HH #`g 0 B@g $l !0L 0L,` (@SX@ P* L#`g X,Bg,.3B 2 X !h h,@Rh2Ё3B : tBgt< !`X `X8t0! !| |,` p\p}#g hZ Bg^ ! p`X! ! ,@B03B F0 B gb@3B H Y @!  H3B P(B`g(d ! H  H,"T$03B &0 LBgL(3B X`XX !p\ \3B 2dB@gd4 !t # !x 8<! !`XB`X,dX83B61B|,` p!!ظ #ahZ"2B^0B@2B`B2B B Y !!   ,d (J!(Y !0B0,pD!BxY F!Y$D( X! !@ ` @p q( ! @`DP0B xJxY ! ,pY,PX!B  X!T !! ,D@@2BH3BB 2B D @eJ1B ,`DeF03B1B@ ,`0@ H@!$ #@aP`2B(0B" A2BD$01B&@A1B (0P@BdL*`A2B ,X,p2B .`\@Cd 0`` @ dX22B 4`a !l # !p p,e :!X @!xBx,d >!X h!B, p:!pY x<!xY >!Y @! Y$( X! a!@ @a D "@fJ$ @$XU `@!@B XMd)dbH2!(e (d(d (c(c (b)H @8 !  0p @! !  !@ #`D8F!  $$ (!P @8B$ 2!@, Y a! # d0B! $$ !0 @8PBJ! ,@Y @!e #d @Y@@2B H`a  !! ,`d F!`Y (a! # pF!pYxa!HPX! A!  f@ !@ @,$  Hp q (!P P,$((JKQ %0 !0 0,`$F0K`1(W @! @0!3B $ P!( (,@APP3B(t$ !D #@a$03B &`X &!0L `L(P0B*` @HQ0 !p\ p\,.A1B\03B 2 X 2!d @bd4A1B`l,d 8X !t t,a <8P xh ! h! Z! p! ,a x^xP 8qh ! ! `! h6!hYp8!tB,  D!@Y$D,  a!@ p  C" ! ,` (J(Y0:x)t( F  *< !P7 !!   ,@DD02B 0 @c @2B H HXH2B PH( @`c XH,@ b$" ! H `b &Liw !@P gP*`1B ,X $p\@c \0`X |,, 1BX21B 4hk< !l l,l8 Ё1B p:l cl<1B >k  h! h\ 1B x^xY ${@ c b z)z9 !h # !@ @, Y a! #`c F`Y ($P@c @ @cD01BH0@ P!( (,`X( 1B ,( c$"L ! H `"HH&88! !@P @P,(P1B *PTBcT.@P,X !` # !`X `X,X @!d #@`40B 8pqw !t `a 6l@cl<D$ !| b|\ ! 0C ! # x! ,x^3BZ !! B , fB@0B H 9PD !0 0,` (J(Y:x)t( @  *<P !0 Hxu8! @!  ,@`PH@X8(A3B " DB@fD$ !0L 0L,T&@A3B (@ PBfP0`0B ,[kw Ƞ!d d,@` 4d#f : tB`ft6l !x x,` >X@ |\ x# f b BfZB3B x^xY ! , R^@B3B H@ B@fD !0 `Jt0! ! ,`g #f @ B f  P!( p("X! ! H  H,`L$pA3B .p \Bf\(A3B 0X<Ź9+$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 g"ې{T#C{ncu}5\ZZ]P3 \ út@D@`C ApMD-D|G=249@&$pZ.?r6_ T^.:a"6p\HcN%oTY*5  (NPߒZ` qf `]{Y$ @Uc"` H iL!y3:\3G?4PNV㱢,>à0KCp @UdQQ3 U`^4 ulA'a񡑄Ya+^w`A! gG`E/c 50}~&4(J,B05ՠH'd3d `~8UTqO@&&@O`6>NĠK?gN#֠R1 wḲ/$ X`W˸/OxM@SNEtmІYg#V~39*)CY8O؅]$0'#H r($t`4N#X rh0H;M%P  31RlÓ24B^>ڰYӨ@tovh[Lj=~I! ŒV|oTaG)EQd]w3@[rxv7A 2E[rCqS98N0݃ ba/pO`4`<HK)@]q`Jl9as#gSq*  JX ]Hx˙r3uQ9BaSM(JZ췧O6\] "S0`h>npR1iͺkhz3=O x$x0P ^ev}cȃF\q6g) 8&@YdPfx"+ : w¾(HqGeO&p,Aa(| hWD>~@==  !Üu9&9`U ˥'S$0o.O`\0˄?}$xj?p, / Ri:}@Em"4 9m\@5{XD)#751t8 0W;  \C ISvx@]  `٭$H'`5BjO#Q$ Qj8`*(80w;@>SxA! 2Ki(m'B`@/ p@#6=(p, Hq2o"Ab~ov 4PSAñ~Q0P'B@y~d @ Ahqt`=^2>#?#bBb#W Mh3w0s0knL=`E@H5@z *Td*U|э)fңYcנ"C `NWH ј/]2Pn"PURQ6R7@ԇnXb7 `\[g[(CDPzxC<r y!23qh2uAHT)ʓ dSűJ]%@h;(@V"ȼ>3ɧk HސAHN_UP+Wt=R+9X!Sov S``l' h38~'QY#Q!&1" ؽ`?a:KM3[&0W@RA {22t8@jB3Aiqƣ 88E#poe?ND0_JTˠ|PxzZnpGQWӓPe(CY%2V?Q@x v4ӠL՘M#T{6t0ŲtEyh>FRBK@]I7۳}D`5A}U72  EwC t h]"Br@%A'L`9/-I+@CjC307]M:O ^Xs%bsDA\cڪa!Z@%M@3Dza1*c=>cnPӃH3pHjq 7xXtgܞtJE6T'0Fh@z8C4` yF5p,ˌ30 *  -k*5@i~AAOݑBI (15`l,c yY43# %%iQ0`UW8"GI /Z6Gl|d?=;J 4{*f](@$7Pva Bq0g8C,k9)R@Vcd&X4$Pm>\hw 3rq9| ڧP'w[MB/@dW]bЂヘn Op/3Q`8(N󔲖A@8yIP!ZW`΢Q'12|;Ya g}P(LJ:YmdIxqw#W@%Y=@ Sj` qh[P@B9[ I@qD " ,X?_p6 CХMZ`bT5'?$$ E@T `&t\AJrN`ܸH鸭&t٦YI}eH+%Pmxmul.jaX4a]1q4s}AAM!"%Cm(sÊmf_O7ز{-@#$}Kemu@B0@ (LX`0V00O|l -ÂFj`,>k m$XE=T}v24Lg @4`.-}$PِM@P V+@"^3|ty*l?r9j\5ѭ)3:@o2ɺ0D7PMx@jRPqSp11^%g:GG'G1)˓t`fAE(02n~ ¿>KP w/ 0CL|C¾_ YC U -!B02b ;b"0&_kΈaXH)ǰύ@ 遲ېPGW30@bC͐.S_ &~ 7$\i0V1'vF]m'| "l` 0w^2b*K`a$QZ!80X( 8ho̱M4>iI xxI/ОR$  =H#w"_`P:zC\@43fC@{4;ax$ 7C*ѯHPcCqGZf![ 3@ٓ ]Qw5 ~0r9eTEWA=7\i2Q>=W1 YR&eĤlT}ը@'NT4@4%ǰGI0\j$CmXg:Clx&$3X d_3Io&C(CY CS0b|=IvXN\tD`u" 7`'.!HMeua=!:Z-60{% )EsYLd 8Mc@UIr% M9zK22`̮0 ) qr\J g'ikUt?YbϧN.ݑJ@M/ =lwE\-SodGQ6[ACZg]:`-0-1Ysؓ6b#tFWadfT##dr`^3ݐ:ڠ|>5D AAw`} ,?@iNUX4=A6:JP=c8 JlL_P!3 @CZJQ) *^c!W.#(J@ B5XL~$ H%5 ?;"`A ٷΕ`I-pЋO@`0Z,$y?(E*Cr)x7%pVl]e0ZC`wcH%HP7P_t$yofFn^ٕȾ(XZ n KZ+hjexV:ïӟ{?X':宱(&@M `cY):QT.B6JC$iYǯE)Q$5qixlK]9Yѓ"cGC7@ {ik7`` YeE\W'h #@B2sZRb6|`6\3Ux@ *bK(1`%A+`HPYA; e(:Rص$ CCmGp 5DZ}qiBP&Irţ0@dyKrXfoCEHY.p$%l z QqO"qc4h El23yQSII0u&зO'P_VdrI0TAC# X5`,Y/20%X/ϟ;Pg@$@9|. 1z}/#`o;A%p`{LNpC` а^$l`llxU6 ` YF0V<kĹfV䴂o")d 7IWPAK0;`g9doi` T?_0y_Qqnd* _թڮpmp 있``@@_}Z7l$Z( #0 3NVmv(Y"cǃy)`>SLUZ1XpJB'H@i$! pS;3@i0fXTli e_!mcptS%W- %yyu 8`# ʨ5pc"Z n=K)sEJKuH_0g([9m`T i&@@p4C]QmI5*.$檬$ | px\C[j+Jp$7㋤11`ԙ4pwIyi00P^&YA]4-q<`+h+Z5иc;8߰&Vs~pǓt`T#IS50pCEx]_+!!Tys(jA{%`]/!,@3uYȁO0.YC4` QP ؘ44,znoBC(VJfu |G:";{1>q㹭Z}ZxxJXI Y Lpx@ܫQ > mH0~ra*D8)2@4`EMr¢\ .XW5eZÕh;0G`|(ӣ>]@4j UYBYtd@1ʳ zn 2&o'ti=;y Yw7@UF1^.uLgl `_;G`@W(I3Ko .)+&q2_tre%p v t )|Y=0o8η2XfI01HEgdsKImh@!uI).c!T1@[`#%`%|D G18PsFc?08Vp`P$\*Da3IS /%xZձ;,󓶅!EB /zSEe SuH3@]}qjGh 8? F0I C];Y|L?nxg0@4R4hfHP M#x^# O@[!@+ॽ]Q"♈:G#YWADS*+I(.O@PI\1?5/H<96srsz*+JEoAe%PZDBɣ@ `*4qR0 |w"^M)?EZ/r_ p,Zu /#HSqՒ, PAOSh@Lq b'h20jr:D(贈k̈?ߺL7#n"GM Y,F*#?tXꢐ5{Cԋ!Hs>0oՑ)I n1nP4@qs>h">[r (^4 P=20@ (d=jꊗ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " !`X X0A3B 4 hBfh8d ؠ!l l,#t6A3B < xBfx>C3B `Y h! `B3B BBf^ ! # !  8D! !!@B@,`DcFPB3B(J0@0B`0 ,`P X!, #f @Y @! b3BH@1B$A2B " X ! H  H,`c &!`X !PTBPT,p$!LBxY *!Y$( X! A! @g Dp q0 ! gHP3B (J(Y (J! ,b h@hY,Yy X!By X!\ !! , DB "2BD03BF@"2B H0 @dJ0B0B`0,c@0@3B@0B@ ,`0@ H!$ #@f P@PX P!( `Ac(3B" 1BD$01B&@0B (0P@bL*`A2B ,X,p!2B .`\@b 0`` @ bX2A1B 4`a ؠ!l # !p p,d :!X !xBx,c >!X h!B , p:!pY x<!xY >!Y d! Y$( X! ! 1B! 3BD$ @$XU `!@B X=d)abH2!(e (e(d (d(c 1B2"H bB1B ! #`D0F! @8 !@  0p @! !d  !@ #48@! $$ !!0 @8@BH! ,@Y `!e # T0B! $$ !0 @8@BH!,Y @!e #@eD3BB !0 0,`$ Fp q !@ @,$  HKA0 ! ,$@K  !  1D!03BF$ Ȁ!d d, C2@3BdHt$ ! ,$@3BB 0B D!PD !!0 0, g 2 X@:dx) sȰ H  ʀ<PT A! `( C" !   ,`g F`Y@:x)`t H  e<P, 1$B3BB 3BD@b3BH02B F`Y Ƞ!dBd, p2!pY$( X! ! 1@!3BBT$ !  p pC A!@ @,`b F!`YhH!BpY$( X!@$XU `!@B hUd)dbX2!(d (d(c (c(b !H @8 !  0p P! !  !P #`aF@H 3a2rH $aB 0BD0H @8 !d  0dp H! ! R!*H  @8 !   0p @! !  !d d,a H! Y ! , H!Y ! Y @!@YB!@BY$, ! ,`a F!`Yx`!@H ,@ , C?  (C A!@B@,a @Y ! , , ! Y !@YB!)HX& A! B ,`d F`Y !@ @,,, H!!HX A!B,, v \!H`d !   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNQRSTUWXYZ[\]abcdefABCDEFGHIJKLMNQRSTUWXYZ[\]ghijklmnopqrstuvwxyz{|}~AAAAA`^CEEEEIIIIOQQQQQP_XXXX\VAAAAA`^CEEEEIIIIOQQQQQP_XXXX\a&2~F!(b0Hc 01B`0 ,`c !Y$|, d!1B @Y@01B1B @@X H 3&$0  HH #@bPfL XP, # b "DB@aD$00B &Y `!P ,a H* HY `!X ,a X.`XY `!` , a 2Y `!h ,`a p6pY `!p ,`A$PB8Pd!0H ZH@`$xH bY," H`rQH& L $ HB H, IHR@HAP*`HX.H c{`21H`sh60B 8X `!t t,b <{Bx8AuB80Bp>00B hfhY A! ,a Xj`XY A! ,a nY @! ,a @@Y H@!$ ,`$PBhPd!HR0HP H@!X$1B X.BE`,XAH@hD$0HL(P1B *PVB@TP`1B ,X !p\ p\,¸ .p \B°\,A1B 0X `!d d0U `!@B 1~F !(d02B `X1B 2B @Y @p qt !0 ?#1B 1B @Y @! 8@(! !0 0 ,$$( F! ! ,@0@1B@1B @#~F b 1B P (B`e( @!D D," A2BD$0A2B&@1B (pP q  !PT eT,$ @!p\ p\,d 0X 0\ # d 2 X21B 4@X4A2Bh61B 8X !t t, :p #b <X !| |<@2B H YHU `@!@B 1~F !(c01B `X1B 1B @Y @p qD !0 ?#@1B 1B @Y@0@1B `X @!  ,@ @#~F` B1B @Y 1@! 8@! !0 0 ,`1B 1B @p q !0   !@ B@, s F!1B @Y @! 8@! !0 0 , H HO$1B P@PX X 3&,0  X!`XX Pp!X( # b "!DB "! Y$( F! ,@X !@ #`d P H!$ $,H$L|, F! ! ,``H d @1B P@(B`b X`XX !!P(B(Y 00Y $l|, F!$ ! ,D@01B `X @ 3& 0  @!@X `!@ # c H HX H!$ 8`! P!( (,P$( F! ,@X !@ #`d P H!$ $,H$T|, F! ! ,` fL @ B , e  P@!( (,>)%$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 A["P2B(2B" A1B $pH q  !0L eL($ @!PT PT,d ,X ,T #d .X.H d`2A1B42Bh6@B2Be$|, F!U `@!@B %2~F !(d02B `X1B 1B @~F`c1B @@X ! H F!0B @01B1B Hp$ q< P@!( (,(0B X`XX X!@, @, a8" 0B 0$0Y@$l( F!`@pPC !0L 0L,`" &pL q  !@P bP*$ !`X cX.1B 0X !d d, 2 dBd02B 4@X 4!, ! ,`c 0 B @U `!@B ]$2~F!(c(@c01B 0~Fb @B1B B Y !B! `b1B @p q4 !0 0 ,`2B BB1B @Y @!  ,@BB @01B `X ! < @@ $B2B @1B@ ,@d !`Y$d|, b! ! ,B2B@01B `X @!  ,A@ @@ # b H HX P!( AH(1B X`XX !D "! 0BD$00B &, #a (X (!@P 8(!@ `!T ,a , Y `!\ ,a H0 HY `!d ,@a X4`XY `!@l @,a `8`Y `!t ,a p<pYh!0#Hjp b!0H X H@X$0H@EP,TL X,B,, I,R H@AD$0H L(P1B *PTBDT@`1B ,`ZBsX\p1B.B\Z1B 0X Ȁ!d d,@b 4@X ؀!l l,8Ht<qH@|danB600B f`Yf! H(Pb! ,@X `A!@ #`aXVbKR  H! ,LP0B B YB! HȿPb! ,@X A!@ # pA! p (PC ha! ,@h$ |, b!U `!@B 0~F !(e02B `X @$0 @!2B H HX H!$ e$02B `X !0 d 2B H HX Hx!$ `d$2B @@X @! `c 2B H HX H!$ `c$2B @@X @@! 0  ^)`b H OW ^)@S H( H 0#`Y0$3B 2B H HX ! Y(!`B%B 0L0Y $( F!0 B `X @! $'$2B P@PXX$)B," 2B $@X $!L#e (X$`PBT,p2B .X .!` d 'd02B 4@X 4!l p@'p62B :X !xBx,x: `!| |,# >}~Fg|HP2B (J(Y (J!P (1K!`3BL02B `X !0 f @3B H HX H!$ p$ `C P!( P?#3B(3B "!DB@BgD$0,g (!X &! Y ((!(Y$,( F!0@3B `X !0 p C @!  ,D@1B 2B P@PX ! HPF! ,@X @!@ # a HHP8 P@!(  P!@PXX$P)@X X, P,@8(x)`0,< T@8 HHp  YH<H$ (K !@P aP*t$ `!`X `X,e.YB\02B 2 X !h `Sh62B 8X !t t<2B >X !@ C>P2B (J(Y 0!` +J02B `X H!$0 $^)@ X`_W$^) S XD X(0#@e $@X $! HPF! ,@X @!@ # a HHP ! Y$|( F! @!0 p C @`!  , b H HR @@! 0  ^) @ 7H P`!( (,`b X`XR @! D0  K+`XR0)@28H"@2B (X$`PBT,p2B .X .! HPF! ,@X @!@ # e H HX P!( `I( `!D D, B " X `! H H"02B &`X@PMBP*`2B ,X @!  ,H g ! 3~F !(a00B `X ! HPF! ,@X A!@ #`a P( H`!$ $, J H HX H!$ $PC P`!( (,P? A!@ # @!  , a ! `M3|F`h!(a00B `X !0 0 ,D @@@O @0B H HX H!$ ` 8 x! @@!  ,@$,BXPZ!B@X ,`a 0B HHP P@!( (,P$,B%XZ!B@X @$ ! # a H HX H!$ H?#@1B$0B " X "!D 0#! 1BD$00B &`X &!0L aL(P0B *X *!PT gT,p0B .X .!p\ g\00B 2 X x2!d @fd40B 6`X 6!l fl8Ё0B :X :!t et<0B >X >!| d|@0B p\pY p\! d^0B `Y `! , a pbpYx1$,BhPX@!B !0 8X! @`!  , AD P@PO(0B "aFB@`D$0A1B&@A0BL(PA0B*`H a  `!p\ p\,.0B\0H@`d40B 6!lB`l80B :Y @!x x,$H( 1A!@ #`c P H`!$ ,x1$BXjk X@!Bh@ ! ,a ppYx1$,BPX@!B `!0 0 ,a @@ # a H HX P!( G/ D @!H ,``x&@A0B @(@Y !T b ,Y !\ ,` H0 HY, YP!D( XT!BP!L( XT!BB `!0 0 ,` @@! # a H HX P`!( J(0B " Xp"! H@XƼ Z!B@X , a R0B @P@P !B`) @,  @:x)@ < P@PT 8 D@PDp D<H$ (C @!0L 0L,` &`R?6$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " @!PP0 PW+R`)b8T(p0B .Yp`!bHP!L( XT!B Ha! ,a @P@Y @1Q! R1B@0@0B 0 @b @1BH@0B PH( @ b$"$ @! H  H,$,BXZ!B@Xv @A! , gHRB@00B `X H!$ @Q$0B " X ! H `H&@0B (X !PT BT(`0B ,X `!p\ \,0B 0X !d @#d40B 6`X !p `p6Ё0B :X @!x0 x^) P>@WWx^)S PT P}0#`U `@!@B  1~F !@,BP x@= #`a `X !0 0 ,`@ P A! ,$dy( F! ,X@ A! ,@00B0B H HX H!$ @e$0B X`XX X!, d," 0B $@X x$! H `dH&@0B (X (!@P cP*`0B ,X ,!`X cX.0B 0X$aBd40B 6`X 6!p#a :X$tBx>P0B (J(Y @J!0 0 ' 0B @Y H@!$ (@'(0B X`XX ! D  H`'H"00B &`X !@PB@P,`P&P0B *X *!PT PT,*`A1BT, @!p\ p\,$w( F! ,@X a!@ #`e PX H!$ Hx! P@!( (,P$s( F! ,@X a!@ #`e PD H@!$ $, JH0B$0B X`XX X0!, b," 0B $@X %! H H(pK !L #? @!@P @P,$|, F! ,X@ A! ,$d|, F! ,@ A! ,`eB 0B P@PX X !, RS," 0B $@X !0L L(P0B *X !`X BX*p0B .X !` `.HXH!U `@!@B   3~F`(!(b(@b(a0@1B `X !0 H8 @! a! , B 0BD00B p q@ A! , d B@AOB00B `X @! '0B B Y  & 0  D!@Y aB! #`a `X0! HPJ!@`$ U0 `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 ,b @ # b B Y@$B 0@1B `X !#b @@XH$ B$B0@1B `X !  ' @@1B H HX !0 0 @' B@1B @@X !0 0 `' @@1B H HX a &0  B! Y H`!% #`b `X0! HPH! ,@X A!@ # a BP  @!  ,@ H!$ $, JH0B$0B X`XX X!, ,PC !D D,? A!@ # A!  , XJ!U `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 ,b @ # b B Y@$B 0@1B `X !#b @@XH$ B$B0@1B `X !  ' @@1B H HX !0 0 @' B@1B @@X ! */(@0@1B `X H` &$0  H! HX `!H # b B Y0B! HPH! ,@X A!@ # a BP  @!  ,@ H!$ $, JH0B$0B X`XX X!, ,PC !D D,? A!@ # A!  , XJ!U `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 ,b @ # b B Y@$B 0@1B `X$ B@1B @@XH$ B$B0@1B `X P!(  '@1B @@X H!$ @'0@1B `X P!( `'@1B @@X H` &$0  H! HX @`!H # b B Y0B! HPH! ,@X A!@ # a BP  @!  ,H@ H!$ $, JH0B$0B X`XXX@ `X," @@`@,$4! @%\ `!0L 0L,`B &`(Pw !@P @P,? A!@ # A!  , XJ!U `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 ,b @ # b B Y@$B 0@1B `X$ B@1B @@XH$ B$B0@1B `X P!(  '@1B @@X H!$ @'0@1B `X P!( /@1B @@X H` &$0  H! HX @`!H # b B Y0B! H(PH! ,@X A!@ # a BP  @!  ,H@ H!$ $, JH0B$0B X`XXX@ `X," @@`@,$4! @%\ `!0L 0L,`B &`(Pw !@P @P,? A!@ # A!  , XJ!U `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 , ! @0@1B `XH$ B$@1B @@X$!B0@1B `XH$ B$@1B @@X X!,  '0@1B `X H!$ */(@1B @@X X!, `'0@1B `X H` &$0  H! HX `!H # P!( (,P$i( H! ,@X A!@ #`a PX H!$ $, JH0B$0B X`XXX@ `X," @@`@,$4! `!0L 0L,` &Lqw `!@P @P, (@ PBP@T$ `!`X `X, , XB $ #? @!d  ,@ `!h h,@C 40P ؠ!l l,? A!@ # A!  , XJ!U `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 , ! @0@1B `XH$ B$@1B @@X$!B0@1B `XH$ B$@1B @@X X!,  '0@1B `X H!$ */(@1B @@X X!, /0@1B `X H` &$0  H! HX `!H # P!( @%$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "(,P$f( H! ,@X A!@ #`a PX H!$ $, JH0B$0B X`XXX@ `X," @@`@,$4! `!0L 0L,` &Lqw `!@P @P, (@ PBP@T$ `!`X `X, , XB $ #? @!d  ,@ `!h h,@C 40P ؠ!l l,? A!@ # A!  , XJ!U `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 ,b @ # b B Y@$B 0@1B `X !#b @@XH$ B$B0@1B `X !  ' @@1B H HX ! */(B0@1B `X @! `'@1B H HX P` &(0  P!@PX H`!P$ # b B Y0B! HPH! ,@X A!@ # a BP  @!  ,@ H!$ $, JH0B$0B X`XX X!, ,PC !D D,? A!@ # A!  , XJ!U `!@B  3~F@ !P,BP x= #P  #`b `X !0 0 ,b @ # b B Y@$B 0@1B `X !#b @@XH$ B$B0@1B `X !  ' @@1B H HX ! */(B0@1B `X @! /@1B H HX P` &(0  P!@PX H`!P$ # b B Y0B! HhPH! ,@X A!@ # a BP  @!  ,@ H!$ $, JH0B$0B X`XX X!, ,PC !D D,? A!@ # A!  , XJ!U `!@B PE0~F X!(c0,,`0B 0B@1B H HX $0H @!1B @@X H!$ */(01B `X &D0  "! X `! #c @@X @! b 1B P@PX P!( p( `C !0 0 ,`@ `X0B " @!  ,!B@HHD P!( (,`@T  OD1B @@X`! HX V!B@X ,`c 1B HHP< P!( (,P$,BXV!B@ !0 0 ,h8 ! H!$ $, H$s , c "EB@c $@X `!`Y h"!hY p$! , 3@!( V!B`c `X @!0 0 0 ^)e H OW ^)@S H( H 0# c " X ! H  H, h$hY$.( @!@ #`c2B 0 8#@3B 0 B 0B f " ! H 8$! !0L gL(P1B*`A3B,pH q   !` `, b 2 X `0!d , # @!@ # !0 0 ,`@1B 1B ppY`\!bH@!Լ( XP!B`c p q@ @!  , f H`&B@!B$A3Bh" A3Bx$03B p&pY !P ,d,xY@!|( XP!B@!( XP!B`f @!  ,  P!H(# b " X #!0H 0O/L$@1B (X !PT ¤T(`3B p,pY !\ ,eh$,B8xPXP!B`f 0pFf 3B H%B@f$ !D D,@g $D #`c &`X !@P @P,B(0AMBP&P1B *X &`X0  ,!X `*!T #c .X`.! HX2 V!B@X ,`g 3B HHP P!( (,P$,BhXV!B8 @ !0 0 , H!@$#`@ ppY P!( ,@!( XP!BE pPpY ! ,ep1]!ЂHX~] XP!B`b `X @! '/$1B P@PX !D @TD 1B $@X `!0L0 0L^) (⯼W`L^)bS X* P0#c .X .!` d`'d01B 4@X$hBl8Ё1B :X$uBx>1B `X`Y h! ,EjhZBBX1B p\pY p\! b^,,+4 @PB,ƅ`01B `X`! HX V!B@X ,`g 3B HHP P!( (,P$,BXV!Bx@ !0 0 ,$,BPV!B@X ,`g 3B HHP P!( (,P$,BXV!B@0,,a@0B 1B H HX H!$ $,@d PP$ # c " X@0EBH&@1B (X @!PT T( @!`X 8,! !p\ p\,B .X.1B\01B 2 X Ƞ2!d @C 4hq7( ,c 8qBc :X `6!`Y h8!hY p:! , 3@!<( V!B0,,+4 @ B ,` 1B H HX P@!( (,Hh!, @!@ #`d P H!$ $,H$,BXV!B@ !0 0 ,? @!@ #`d P H!$ $,H$,BHXV!B@0,,a@0B 1B H HX H!$ $,@c PP$ # c " X@0EBH&@1B (X @! ($ `!`Y$,BnPV!BPU `!@B 3~F !(a00B `X@$ B 0B @Y P@!0( 0 `' 0B @@X H` &$0  H! HX @`!H #`a `X ! HHPF! ,@X a!@ #`a P H@!$ $,H$n|, F!U `@!@B   2~F`(!(b(@b(a0Ha @B1B B Y !  ` B1B @Y @`!  @0@1B `X$ BD@1B @@X ! &/$@0@1B `X  &0  B! Y `! #@bD@1B@1B H HX0!D, !@ # c BP !   ,$,BhXJ!B@X A!  ,  U0 `!@B (12~F0!(c(@b(b(@a,, @$Rp C a! ,@a D!@Y !0 F!pB HD! HY PF!@PYA鄊 $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "$,B(3XL!B c B Y A!  `D F0,,` `Rp C @`! , a H! HX P!( P!pB H! HY P!@PY$,B82XL!B c B Y A!  `T F0,,` ` Rp C @! , b  Y P!( ,H@$B@XY XD!B`$@H  0B @@Y @!DBD,@b $ !HB@@$DB HY P$!@PY$ ,B0XL!Bb @Y A!0 $B01B `X @@! 1 @1B P@PX !D @QD(U@ `!@B   3~F`(b(@a(a0B @B (@!(Y>? A!  B!PBP,HX@`$ U0 `!@B  5 1lF`(!(e(@d(d0Hb @H@bD0,,-̘ @B,`",B`,@X? XD!XX @! cB01B `X !0 c 1B H HX P!( (, e "! X @! H  H,H8!DB@YH$!, !   ,@DD1B @Y !B,`f !`X @! B , f H! HX P`!(B(,`, 8N8Y @B!@Y H! HY P!@PY X!`XY `!`Y$ ,BXJ!Ba @0B Bp q  !0 0 , bH B$1B " X ! HB H, ŠH"01B &`X !@PB@P,`P&P1B *X !`X X.A1B 0`q7x `!d P2! Р!h ``h6p! !p p, 8X !t t, :Xp: fL <x @xD`xn)Dp1B 8N8Y @! ,C @PB ;R PA! ,d `X`Y @!  ,a @Y0 $pB`H!B S6= J! ,$@ ! ,$ ,B_PJ!Bc @Y !@!0 0 ' B@0B0B0B1B" H``H&@H`P*@A3B@P,`P,pHa\0yH@ad4Hal8A3B:3B<3B> 0BD`HfNH fRB2B@,@fTHgX0Hg @HgH@g$A2B" 2B$02B&P3B*@HdP,pHd\0p0 Bp\, d\2H`eh6aHep:Hex> HeL`0 BD@!,B\PX@!B T !#`@ @! #`a !`X H!$ #@ !PD#@ $!L#B L!T#B !\#a8$BX W X@!B T a!#`@ @d! #`c !`X Hp!$ #@! !PD#@" !L#" !T#2 !\#C Ȭ!d#@ ؼ!l# !t#C !|#c 8$BXV X@!B T !#`@ @! # ! P!H(# " !H#`" !P#r !X#2d .H sd `2!H`d h6He p:1B <X !|B|,C|<`,,0 0L1Rp PC 8!p p,g @P!@Y 8N!@ #g8a$BXV X@!B 4 !#` @! #`` !`X H!$ #@ !PD#@e 8$8Y `!0LB0L,e(!P!HB@P,88)$LB@Y H(! HY$,Bx"XJ!B@P q! , B !P7  1%0@3BL H %@3B$BL "D DPCwf$,BXPJ!B@X> ! ,$ ,BxXPJ!B@X ,c @1B BP !0  H 8(! P!( (,P$ ,BXPJ!B ! A/"B3B B@`f3B @p q H!$ $,H$ ,BXJ!B f B! Y !B,@`,p,, 3! ( J!B@,,  @`O @1B @@X0! H@XU J!B@X ,c @1BB0 J, H!$ @#@$8H! !D D, B " bRDpC ! H `$`H&8! !@P "!pP*! !`X `X," X,!`# c 2 X 2!h qn/l41B 8X08! H@XRU J!B@X ,c @1B BP sf$ ,BUPJ!B,, b B $R @! !'   H@!p$ p,@c P!@PX0N!pH, P, C!$, J!B@P ,, B 02B1B H HX H!$ P$) H P7 , e "! X 0!0Y 8"!8Y$ ,BXJ!B c B Y0B! H@X/> J!B f B `  @3B H HX H`$iH!3B$3B8" 3BH$0A3B &`X &!L ,c (X (!@P @P, @X0Q* p, HY!( XD!B!( XD!B@"B @B@Y !0 0 ,`@ 00Y 8D!8Y HD! HY!( XB!B!( XB!B@c D@Y !0  @@0 @ 1  , g "! X `! HB H,P`,p,, 3!dj|, J!B@c D@Y0D! H X6/> J!B@f D `  @3B H HX H`$iH!3B$3B8" 3BH$0A3B &`X &!L ,c (X (!@P @P, @X 0Q* `B8Y, XS XB!B!( XB!B@c D@Y D!   , @`X @hL @  @  n) D  `B @&@Y !@P @P,B 0(0Y 8$!8Y H$! HY!( XB!B!( XB!B@c D@Y !0  @0@!B  H!$ $,H$,BعXJ!B@X ,@XX0,,@ 01( cyEJC" yH& `H H!@'XD @$( 8rP #(TRIRy#(PRUJb y+X. H @`D! #\1B 0`(PW !d d,$,BغXJ!B@X ! ,D@ 1B D@Y uD!  8D! L!0 H9! Hx!$ X! P!( h9! !D x #! ! H 8$! 8!0L H&9x! x!@P X)h! !`TB`, X? XB!XX @! @cD01B `X0! H X-> J!B@X ,@XX0,,@ 01( cyEJC" yH& `H H!@'XD @$( 8rP #(TRIRy#(PRUJb y+X. H @`D! #BnF$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "\/B c 2 X 00!0Y82!,B}X XB!XX A! @bD01B `X !0 c ,, H H IRp$ (0C P!( !0@("x8! ! H  H,@B$03BH&@,,B *·_X*p3B @.@Y0P!pH!( XB!Bf @Y@ 3B D@Y 0E! #f @@XH$p"B$3B " X $FBH"03B &`X$0NBP&P3B *X@` p+!T #XX 0.!p\ p\)P @!p` p, e 2! X `!hB`C h6 @X0N!pH, , C!, J!B@P ! ,@e D@YD0B H !JO$,,@P P@AQR(( CJ @!pD p,@e $!@X `!0LBB L( `X0N!pRH, , C!T, J!B@P ! ,@e D@YD0B H !JO$,,@P P P P @!pD p,@e $!@X `!0LBB L( `X0N!pBH, , C!, J!B@P ! ,@e D@YD0B H !J@O$,,@P P@aQR(( CJ @!pD p,@e $!@X `!0LBB L( `X0N!pH, , C! , J!B@P ! ,@e D@YD0B H !JO$,,@AQ P@aPR(( CJ @!pD p,@e $!@X `!0LBB L( `X0N!pH, , C!d, J!B@P ! ,@e D@YD0B H !JN$ P!(  P!`(B`, !( J!Bf @B 0@!0Y$ ,BAPJ!B b 8B8Y ! ,88$"B @P@Y6? A!   ,Z ! , 8P!8Y@1$B C!,, J!B@XX D!  fB03B @@Y0P!pbH!\( X@!B f B Y A$ #`b `X,,B@,, 8!8Y @! ,xX,,HX@ ! ,$ ,B@PJ!Bc @Y v f !@! #`c `X 0! #c @@X0! H@X*> J!BDX 0@!0Y!, XBv f v f$ ,B8?PJ!B@X U0 ` !@B 3~F@(a(@a0/B@,Xf? X@!",B B! Y!t, X@!H0a ! %2~F !(a00B `X@$ B 0B @Y P@!( ./,00B `X @` & 0  @!@X `!@ # a H HX ! H{PF! ,@X A!@ #`a P( H@!$ @!#H$x! X@!, 'X,"! `! H  H,$tT|, F!0B @ `!0 0 ,`1B 1B P@PX P!( p( C X`!, ,,`A[XA1B," 0B $@X $! H `cH&@1B 0(0Y `!PT PT, * Y0L!PHx;PF!0B @Y$B 0B H HXP$$B(0B " X "!0H 0L 'L$@0B (X (!`T `Z/X*p0B .X .!\, A!@ #`a P H`!$ $,H$S|, F!0B @ `!0 0 , 0B P@PX X!, BS," 0B $@X !0L @BL$ @!P  , c !  1P0Bc0b(,(@,(-0~F `X !0 - @–~F B Y AK?#  BB~F @Y@0@~F `X ! , XX C! ,@- D@Y$~F@  B  @ C," @`B!B@@!ܛ( L!p B  P@!@PY@$ ,B7PXD!B !( XD!B , B Y@BB~F @Y @! p,@ HA 4&0 M L! B @ @ BH!~F$0~F &Lq  `J?#@A~F (X(PA~F *X *!PT P* `~FP,`J?#pA~F .X@.A~F 0X 0!` p`,@ Ha 4&0 M L! B @ 0  B!A~Fd4A~F 6lq  K?#p p,8A~F :X :!t p: A~Fp< K?#| @. Di#>!B~F B Y B! B ~F@~F H HX PK?#( (,`bP &NT&@1$B (@NX(p~F.0@~F `X  aw$ K?#D D,@B 8$D=_$~F @Pc  H$~FT XK?# ,/ 0 `BA[`~F 2 X$dBh6 U0 `J!@B (51~F0!pB( !0#P A #P p9 #P A #P p`9 #c @YH@!,BXXB! 0B D00B FP  @!@Xz !  @!YT$) @,  @:x)@ < P@PT 4 D@PDp D<H$ (PC !0L 0L,B ("_T( !`X `X,. !` `,02B`22B 4@X 4!h `b 6lqw !p p,# 8q~Fep:1B <X <!x 0=!2Bx>2B , a R@Y P!!B0,`dXV!"H`b0, ,@ XF!`XY `!`Y$,BXL!B@P !! # !! B ,`b F`Y HD! HYPF!HX L!B@P ! , d B RC !   ,@D D ~F`d F0*B`c `X !0 H?#@1B P@PX,,@  X !0 0 ,Hp, $, ,PL!p C Ѐ 4&h0 4!A3Bh61B @YH@!,B(XXB!00B F B3BD@0B  PD @!@X @$4 @!@X @!@X  @!@X(P!@BP f ! `?#e@d x &<0   8  UXI0B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P ~FDd, X?#Ȍ0#b H0@~Fc @ X?#0 @DD ~F20~FF0~FBH`0C;o$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 )e"  X?#0# c2p 0C 2Ȍ #? AY?# ,e @Y Y?#0 x@! BY? AY?#   ,`e F`Y F! @'H2B @`@N @~F @@XH$!B$,@,И $ HB H,,, #!u( Z!B`c F@±~F H P  X?#  ,(@ $Ha7 P8 Y?#0  X pW HX?#$  ,@ P@Y?#( (,@!R P)~F a(" ~F $@X $! H 0%!0~FH&@~F@P,f *X `X?#`XB`X,a.!!Hrp\,, ,!Y .! Y$,BXZ!B@P Y?#0 0,a H! YpF!BxY$,B'PZ!Bx@ Y?#   , e B YpD!B #!l( Z!B aY?#@ @,g @Y @# e B Y Y?#0 0 ,`@"B BHXU `X!@B P9d)eb`@2!(c (b0,,`0B 2,, +4 BB,@01B `X`!BhY? !@ # c BP !0 0 ,$,BXV!B@X $}, V!1B B Y B! b@0Hl @! @ `H tP! P!( (, b " X ! H  H,@• $ HB@UHFBP00B(&T !@P @P,b *X !`X `X, ,` XBX(@VB(p0BP. !`  1!`B, !( V!B c B Y`B!t, ,, aBB@00B @@XPU `!@B  ) 2~F`(!(c(@c(b01B `X81B @Y @! `, b B I $ @ `d HdnH J! B @ @  B!1BB01B  q  !D  ,X@ ! H  H,$`1B 0L0Y 0L!` HL p0BHN1B @P@Y0P! H PJ!1B @Y @! DaB !  `@a 0 @!0B 1B H HX P@!(B(,H 8!8Y$( J!1B@0BB 1B D B`b0B@1B HpB$ @@b 00Y X!, b " H $H@D `dD& HdG J! B @  @ Bà!P1BP*`1B ,Xq `!p\ Ca 0p` @ a\21B 4@X @!lBl, 86!8Y$l( J!1B @@@X U0 `!@B 3~F!0hL 0 8!  4&0 0 0B H@1a$0pH!a 0hL 0 B    `X PP!( #-И @  , a H! HX !`Y P !(0  0$0@ D!U `@!@B % 2~F@ !(c(@c01B `X `X ! , DB H`0@!hL H$ 8! @!@X @P(  4&0 0  `X H!$ $,H !!0  0$0@ H!B@X 4&0 @0@1B0hL 0 B    `X P!( #`/И X, b,"hL X,B@ X,$ `XX !XL #Y !pT p,P,88$, A!@ #`a `X@1BH1B PH(@`A H, `$aH!0B$" 0B $@X $! H `aH&@,b *!X `!`XB`X,b .!X ((!(Y 0*!0Y 8,!8Y @.!@Y$Ԍ( H!hL @ , Y (B!(Y @ @! 0  @0$0@ H!B@XU `!@B  - 1vF`(!(f(@e(e03B `X $0@! 3B D@Y A! , @Y$0B 0@3B` Hp!$ # P@!@( #f@!00B 0 H8 ! @`$ PB!( ()Pl B!0  0 ) !0 ! @` 4& 0  @p q  P`!(B(,`a ! X 0B0Y 8!8Y @R!@YH $B@PY$t( J!00B 0~Fa 0B H$B@a$jL X, c,"jL X,B@ X,$ `XX !XL #c (!X @!PTBPT,a ,!X `!p\Bp\,`,p,, , PB@PY$܊( J!0H1a pH@!a$hL X, ,, a "! X 0"!0Y !L0  X$0@ J!0 0 , @B0B 3B H HXH2B $  H?#H#  D!H#`R !P #`)Ԙ &0LB0L,c L* b ,` BbX. ,+Ԙ 0`B`, c 2! X Ѐ!hBh,`,p,, , CD J!3B @Y !   @ `w f8!X a!   ,@DD2B @YBB @0 0 )A0 (! 0!0Y 8!8Y$l( J!$H8@@$ @`$ U0 `!@B 3~FP x@= #P   #P x= #`a `X !! ,D@B0B B Y !   BHa ! `@?#e@c x &<0   8  UXA3B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0@~Fd, X?#Ȁ0# cB0@~F c 2 X?#0 `@ A~F 2@~F@±~F@0@H` X?#d0# cHp! 0C HH #? AY?# ,` @!d  ' 2, -Ԙ BB,H,, #޳ Z!HP` ! ()1~F0! @2B(c (c(b (bH eB 0BD 0B@ ,`DeF0B@0B, eBjL @B@dD01BF0BB0B,@ 1B D@Y ! ,`b F`Y8D!B  $,B PL!B@X(U@ `@!@B ! 3~F@ !(a(@a0B @Y a! ,0B!HH PH!1B @1B BP !0 0 , $tf 0!0Y8!H PH! ,(@@$U `!@B `@?#e@c x &<0   8  UXA3B@h!00B  $pH1 @d `t "dB,@Dz$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 i" @  B @ @Q,"B @`P!B``P0@~Fd, X?#Ȁ0# cB0@~F c 2 X?#0 `@ A~F 2@~F@±~F@0@H` X?#d0# cHp! 0C HH #? ,`(ؘ 0 B0 ,,, # Z!~F B~F @P  X?#  ,(@@$XU `X!@B 3~F@(b(@a00B `X0BBH`0@0 ,Da @1B B Y @@! B , (!(Y?  ,0b ! 2~FP x= #P  #P x= #`b `X ! ,@0BB 1B D@Y D!  a@B0BB a! 0@! !!  b B`ih A! ,@0BB B0BD@H 8@1 `t @@X@  0B @! # `B BH P1 (t % Y B 0B @ B D B0B@ 0B D@a0BB 0B D @aB0B @ B@`D$ @ ! b B`@i8 !! @ h1 4t 1Y @ #`@BH ! 1 Bt @<@X @  B B0B D B`@$ `!@B ! 3~F@ !(a(@a0B @Y@0B B Y @!0 0 ,P,D 0L0Y8!HPH!1B @1B BP$ ` &0 0  !`X H!$ $,P,`,H $( H! ,(@@$U `!@B ! 3~F@ !(a(@a0B @Y@0B B Y @!0 0 ,P,D 0L0Y8!H8PH!1B @1B BP$ ` &0 0  !`X H!$ $,P,`,H $\( H! ,(@@$U `!@B ) 2~F@ !P,BP x= #P  #` @@! #`a!0B @lL B blL @ B`   `X ! # b B! Y @@! B ,`a !`X ! ,`,@p,, $( H!1B B1B @P$ ` &0 0  !`X H!$ $,`,p,H $d( H! ,@ ! ,a @!Y0B!pB8YZ? !@ #c @P  !  ,(@@$XJ!U `!@B 1 0|F@ !(f(@e02BH fBB3B ! #  @@!! #a@!00B 3B 0@0Y !B,00 $pB8YF? !B B Y @!0 B0 ,P,`, X? XB!B3B @0@3B P  H!$  ,@ P!(B  P(" @PX ! HB H,PP,`, X? XB!B3B @0@3B P  H!$  ,@ P`!( (, *ؘ "DBD,P 0"!0Y!, XB!B3B @0@3B P  H!$  ,8@ P !( (C !DBD,@e $!@X ("!(Y 0!0Y 8$!8Y $,B8PH!B ! 8 @h! !0 B0 ,b @@X H!$B$,@e P!@PX (!(Y0!pB8Y @!@Y H! HY$,BPH!B(@ ! #  6&0 0 2B 0@lL 0 B    `X Pp!( # e "! X @! HB H,`a &!`X !@P @) !T #f (!X$p3BX.2B 0X ("!(Y 0$!0Y 8&!8Y@!PB HYP!`B s!}( H!Bf @0@3B P  H!$  ,@ P`!( (, a "! X(!`DB0Y!, XB!B3B @0@3B P  H!$  ,(@@$U `!@B  (`00B `X ` s ! ,D @Y@PF`)b0! @ % @$ ! % 2~F@ !(b(@b0lL 0 0 ,    B -ؘ B alL @ B`  0B BhL @ a hL @ B`  0B B,a @!@X !0 0 , a B! Y (!(Y 0!0Y8!B@Y$\{( H!1B B01B P  H!$  ,@ P` 4&(0  P@PX,XP,@P $(0 `P   H!1B B01B P  H!$  ,(@,PP,hX X!@, # c "  P  !H  ,@ !0L 0L,Y(&!`B0YF? !@ #c @P  !  ,(@@$U `!@B  2~F@ !(b(@b0Ha 00B` Q! # b B Y(B! HX< H!B cB !0 a 1B H HX P@!(B(,H 0!0Y$,BPH!B c B B`c1B@H@ @$U `!@B )3~F@ !PB((b(@b0@1B @@Y A!B,@@ $B HY? A! ,Da @Y `!  ,a 8N8Y @ &0  @P!@Y P! XN! B @B!,`( H!H 8 1 `t @@X(L!@B0b ! 5 3rF@ !(f(@e0Hf @0@3B` ! # @@!! #b@!02B ,,@ 0@0B`0 ,f B3B B Y H$H#`f `X@d$ B "@3B H HX P!(B(, AH(B3B B Y !B! #`f 0` Bf A3B " X H$HD# f B Y4$B @3B H HX P!(B(, AH(A3B " X "!D #`f 0` Bf B3B B Y H$H# f " X$DB @3B H HX P!(B(, AH(B3B B Y !0 B0 ,  B@3B @` B f "@3B H HX@3B P (B`f(B0B ,P,`,p,, ,@,`, s!v( H!B`f !`X @! B , f H! HX (!(Y 0!0Y 8!8Y $,BPH!B`f @3B HHP  P!(  ,h@ @!D#@Y @!0LB0L,Ed?$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 b",P,`, #!0|, H!B`e PP @@! # Y P !(B(, e "! X (!(Y 0!0Y 8"!8Y $,BfXH!B`e P$ @@!  , H@ HX@  lL P( @@($0(n) L$@  (!# !`X H,8H! $2B\0AlL 2d @ed4AlL 2dB` d6  X p!p #"  $2Bt<lL >| e|BlL >|B |J X 0q! # 8a!pB, e HR!@HY XA!B,`d `0S!3B 1B @@X P!( P)@P !PD #@f P!@PX @@"S$!00BH&,Y @!Q0# !X #` `!`0#@XX 04!h 48Bel, bl2 Hap:0B bxBP,,( (J(Y !(}0# 8a!0 # a X!H0#`c ``R0 , d PB(Y 0T!0Y 8X!8Y@! B@g X!`XY`!yHX9 H!B f B0@3B P  H!$  ,@ P`!( (, e "! X(!`DB0Y!,, X@!B3B B0@3B P  H!$  ,(@@$U `@!@B  3~F@ !(a(@a0B @Y  6&0  B! Y(@!`B0Y!, X@!1B B01B P  H!$  ,X@ P`!( (,P$,BPH!BU `!@B ! 3~F@ !(b(@b0@1B 00Y A!B,00 $pB8YB? A!B,a@!0@H`0 ,P,`, #!Dr( H!B@XU `!@B  3~F@ ! 1B(a (aB1B@nL @B bB00B `X(! HX H!B@XU `!@B  2~F@ ! 1B(a (a1B@nL @B cB00B `X 6&0  @!Y(!`B0Y!, XB!1B @01B P  H!$  ,x@ P`!( (, a " X(!`DB #! ( H!B@XU `!@B ! 3~F@ !(a(@a0lL X #a @Y,,`-ܘ 0 B0 , 0B!` `,p, 3! ( H!B b B01B P\ H!$ @-ܘ P(B(,P$7< @!PDBP,X !@H #`b &`(PW  !@P * ` 7&PT0  *!X +,"PT\@ (*!(Y$,BPH!B@ ! B! @(!@X !0B H HX (!(Y0!,BXX@!HU `!@B % 3~F@ !(b(@a00B `X(! HX7 H!B XX `!0 D  BP,B(Y$,BXPH!B b B0@1B P  H!$  ,@ P 7&(0 P0B("nL P(B@ P($ @PX P!PL #Y 7&PT0  *!X ((!(Y 0*!0Y!, X@!,B`Y @`!  , a H! HX (B!(Y 0!0Y8!$B@Y$,B8PH!B XX$†B BhL @  , Y (!(Y !D0  @$,B`H!B XX QC! #`XX `!  , U `!@B 3~F@(a(@a0B @Ya!@BP,X? X@!1B B01B P  H!$  ,(@@$U `!@B  3~F@ !(a(@a00B `X(! HX6 H!B@XU `@!@B  3~F@ !(a(@a00B `X a! ,0@!H X6 H!B@XU `@!@B 3~F@(a(@a0,Ba @Y ! Y(@!,BXXB! ,0a ! 3~F@(b(@a0pL 0 a @0pL 0 B   B `X Q! # a B Y @!0 B0 , (!(Y!\, X@! ,0b !  (`(@`H! 3~F !@,BP x@= #`a `X !0 8@0! A! , @p s @$< ` &0 0  !`X (!(Y 0!0Y81 %HPF! , XH!U `@!@B P=2~F X!$BP A #P p9 #P A # c H HX $H@! B1B D@Y D!   ,b @Y !@! , b H HX$0B 0 @Aa 0`$B0B 1B @Y H!$ $,@a P!@PX`@!$BP,(X !@ # @Dp qX B  PP HB!$ $)@P$! XD`XX ! D  K/ H" , B5 V!H`d ,d hD!hY$|, V!1B @Y @! #@c D@YB BD@$PU `!@B q*3hF@! @0B(f (e0Ha, @2BB2B ,`@a,2B@2B,`a,B2BBB2B ,`a,0pL 0 B`, @Hb0B@ !@ #g@H`gHf @H`f$ Hd2B@0@2B,2BH2B$3B BY !B, $pBY>? H $3B$B2B H$,g !Y$,BhXh!B f B0@3B P$ H!$ $, sf !Y!HX^4 h!B@X A! `a0B H&B@a$0B "!FB@`D$00B &Y `!P ,a @*@Y `!X ,a P.@PY `!` , a `2`Y `!h ,`a 6Y `!p ,a x:xY `!x ,A$pB X3 Xb!B`0 \H@h$H@baD$0yHrYL(0ZL &0LB0L,@QLTPHIT,pA0B.BB\P1B0bB`B1B2Bd@1B4Bh61B8ЩBp:A0B < Y !| ,` hjhY !!p p,` `p`Y !! ,@` Pt@PYn!`HH!g( XR!B%XHh`H` p@0B @#B F bH@P$A0B "GB`XDV 0B $@X$! H Xf3 h!B@X , ` B0B @P@P `! f@3BFOhP$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "=Z3B`1B \Y!`,Yx!f( X^!Bx!f( X^!B !! p C P! @T9(! X! PV@! H! hRx0! ! ,g @P!@Y !B,g `X!`Y h!B,g `!Y pA!B, P!Y @!Y X!Y Z! Y `!@Y \!`Y$,BxxXh!B d b3B PTp q  X!!#? H! @Bph! @A! PP! A! `@yH! `! ,g hZ!j@* ` ``n)$3B P(B g(" !`H `g&@3B (X !PTBU( `,g,Xz2 X^!Bx!d( X^!B gb3B PT@`gV2B B`s H! @Ry% @! XP% ! fZ3BX3B\P3BY!,XJ2 X`!B!d( X`!B !x #@ X!P #? ! 8BH! H! HRy8! @a!B,@P, !$|, h!B@XR h!B,eX0B p\pY ! Es^0B b Y Pa! ƊbB0B XV`XY !B,`\VB0B HR HY @! `K0B H HX! HX1 h!B@X ,` X h! p  C pa! ,,( x^B,q\0B `Y`! H@X1 h!B@X , ` b0B BP XA! ,a @P@Y HA! ,a @Y `A! ,a hZhY pA! ,$pBXr1 X^!BX#H HBL BB,APH`Z@0B @"BEr \0BHB$Z0B P@PX +&D0  "! X!`DBY$,BPh!B@X ,@` T0B `X`Y a &0  `!Y `aX! # Ha! ,H$,B8#Xh!B@X @,"@pp!PBryXPJc!yp\ Ђ1BZpL x^ @bTpL PTB PX @PY !P # b HR! HY !0 B0 , b H! HX P!( P)@P !PD #@c P!@PX$03BH&@0B (X R!Y !Y !Y!(B Y!PB s!da( h!Bf @B3B BP( @a &0  @P!@Y X! ,@P,`,X $,BHPh!B@X~ pa! ,b x^!xY\!`BY`!<, XX!B3B TC3B `P  H!  ,H@ ! (C a! ,$ @qw0 a! ,*̘ @PB, B0B XV`XY h +&0  hZ!hYV!`BY$,BPh!B x!  , U `@ !@B  2~F@ !(c(@c1B @Y !B, 0B!0Y!d, X@!2B B02B P  H!$  ,@ P!( (,P? !@ # d BP  !  ,(@ H!$ H@!1B$1B " X +& H0  $!@X("!`HB0Y$,BPH!B@X , a B00B PL H!$ $, !JH0B$1B " X "!D @aD$01B &`X `!@PB@P, 0(!0Y!, X@!2B B02B P  H!$  ,8@ P@!(  , U `!@B  2~F@ !(c(@b1B @Y A!B, 0B!0Y!, X@!1B B01B P  H!$  ,@ P@!( (,P? !@ # c BP  !  ,@ H@!$ @b$1B "DB@aD$01B &`X &!0L H&x`! !@P @P,*̘ *PTBPT,T(`1B ,X +&p\0  .!X(,!`\B0Y$,BPH!B $02B00B`0 ,d 0!0Y$,B8 XH!BU `!@B ) 2~F@ !(c(@c1B @Y A!B, 0B!0Y! , X@!2B B02B P  H!$  ,@ P@!( (,P.? !@ # d BP  !  ,H@ H@!$ @b$A1B "DB@bD$0A1B &`X &!0L H&x8! !@P @P,, *PTBPT,T(`1B 8,8Y,,XX(J !pB![( XB!B5,`a1B ((Y H`!$ $,@a X8$P"B- H! B(!`B@![( XB!B d `B X `!d #@b (4(Y `!l l,(J!`B(PH! B(6!`B@![( X@!Bb 8X +&t0  :!X(8!`tB0Y$,BPH!B$0@2B00B`0 ,d 0!0Y$,BxXH!BU `!@B P=2~F X!$BP A #P p9 #P A # c H HX $H@! B1B D@Y D!   ,b @Y !@! , b H HX$0B 0 @Aa 0`$B0B 1B @Y H!$ $,@a P!@PX`@!$BP,XX !@ # @Dp qX B  PP HB!$ $)@P$! XD`XX ! D  K/ H" , - V!H`d ,d hD!hY$|, V!1B @Y @! #@c D@YB BD@$PU `!@B u,0zF`! 3B(e (d0H`  @1BB1B ,`@` 0B@0B,`` 0BB0B ,`` 0pL 0 Bg @Hf3B@ !@ #a,@B2BB00B2B Y !B,$BY? !B @ Y !0 B0 ,`,p, X? XB!2B @02B P  H`!$  ,@ P!(B  P(" @PX ! HB H,P`,p, X? XB!2B @02B P  H`!$  ,@ P!(B  P(" @PX ! HB H,P`,p, XN? XB!2B @02B P  H`!$ Gc$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 ["N ,@P$3B("1B@P(,f !Y$,BXj!Be @02B P$ H`!$ $, sf !Y!H X+ j!B@X ! `e2B H&B@d$A2B "!FB@dD$02B & Y @!P ,e @*@Y @!X ,e P.@PY @!` , e `2`Y @!h ,`e p6pY @!p ,e x:xY @!x ,e > Yp!pH!lV( Xd!B`0 ^H@p$HEhDZ H`baH& rL $ HB H,`YHV@HQP*`HIX.2B0BB`Pa3B2bBd@3B4BhBA3B6Bl8Ё3B:Bt<2B >X !` F ngOn1B rP A! ,`G v_v !   C @!0 0 ,2B x^xYH$B$2B p\pY$вBDZ02B &`X `! 9&0  `X!`Y &!`M #@) $ HB H,`eHV@2B (X $P#e ,X$XB\R2B 0X @a 9&0  @P!@Y 0!@a # e 2 X 2!d #e @bB@e42B B YB2B 6!lBel8 ! ,d :Y ! x  ,d >Y ! ,d hnhY ! ,$BX * XX!B`%^HPH $B02B 0B F bH p 2B P+Bh(Z2B " X +& H0  $!@X"!pHBY$,BxPj!B@X ,@d T2B XVXP( xA! ,x$,BXj!B@X ,"@p!dBydJ#!yစ` C3Bb p 8&0 p\2BZЂpL hZB `X `Y Pq!` #`e XV!`XY x!B,`f !`X H!$ H) H P!H( # f H! HX$ A3BD$02B &`X V!Y ^!Y !Yȁ!$B@Yء!LB s@!R( j!Be @2B BP( Ha &0  HR! HY a!   ,H`,p, $,BؤPj!B@XV !! ,f p\!pYb!pBYh!, XZ!2B T2B `X`P  Xa!  ,@ x! (0C @!  ,h@ !! , d BY H!! ,@d d@Y !! ,$B X( Xb!BR"HXrL @B,`2BXV Bd1B x^xP @!! , D@ B`_ B @!  C H !$ $,@* P(B(, L(ArL "DBD,@eD$02B &`X $L#e ,X$XB\02B 2 X ` 9&h0  4!@X 2!d #`e 6`X 6!l #e 8apBep:2B <X<2B >!|Be|l !! , + rB, r!Y$,BPj!B@X , e R2B hZhP  pa!  ,h@ P!! ,. `XB,@Q THU0 `!@B ! 1~F@ !(d(@d0@2B 00Y !B,00 $pB8Y? !B,a @!Y (B!(Y 0@!0Y!L, XB!2B @02B P  H@!$  ,X@ P!(B P(" @PX ! HB H,PP,`, X? XB!2B @02B P  H@!$  ,@ P`!( (,P? A!@ #e @P  @!  ,@ H`!$ H@!0B$0B " X ! H `"H&@0B (X !PT T(`0B ,X +&p\0  .!X(,!`\B0Y$,BhPH!B@XU `@!@B  3~FP x = #``0B ,,D@0,,XX @! #Y ! #XX0,,`z, BF0,,XX @! #X ! #XX0,,`r.BC0,,XX @! #X ! #`@00B 0B @Y H $H#`a `X@$ B "0B H HXP ! $B(0B @Y !@! #`a 0` Ba 0B " X H$HD#a @Y$B 0B H HXPp! $B(0B " X "!D #`a 0` Ba 0B @Y H$H# a " X$DB 0B H HXP! $B(0B @Y !@! #`a 0` Ba 0B " X H $HD#a @Y$B 0B H HXP@! $B(0B " X "!D #`a 0` Ba 0B @Y H$H# a " X$DB 0B H HXP`! $B(0B @Y !@! #`a 0` Ba 0B " X H$HD#a @Y$B 0B H HXP@! $B(0B " X!ADB "0B @` Ba @0B H HX P$P$# a " X@$DB @00B `XH<!0 B$0B P@PX@p!@(B 0B "aDBaD@00B `X H$H #@a P@PX$(BD@00B `X@8!0 B 0B H HXP!@$B(0B "aDBaD@00B `X @$@ #@a P@PX$(BD@00B `X@8!0 B 0B H HXP!@$B(0B "aDBaD@00B `X @$@ #@a P@PX$(BD@00B `X@8!0 B 0B H HXP!@$B(0B "aDBaD@00B `X @$@ #@a P@PX$(BD@00B `X@ !0 B 0B H HX H !$ #@a P`(B a("0B @Y $# a H HXP $$B("00B `X@0!0 B 0B @Y !@! # a H`$B@a$0B " X $D#a @YHl$B$00B `X@@!0 B 0B " X "!D # a H`$B@a$0B @Y $# a " XH$DB$00B `X@P!0 B 0B @Y !@! # a H`$B@a$0B " X @$D#a @YH$B$00B `X,,AG@0 B 0B " XH!ADB$"0B P`(Ba(@00B `X0B @ B a 0B12lF !(gH86$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 j"_0Hf 01B` ! # H!@$ #c@!0 3B rL @ grL H$B` $ `X @! #g @!Y H!$B$,`f !`X,,@ @S@!@0B ,B@@ @@! #@X$0BL 0BaH(PAHX @`! 0#`Y0L,@bL$@ HbPP1B@bT$0,,` &`X @! 0#XX (!@P @) !H #b @! 0#`BZ0L,@dL$@,,¢ (BS(!1BPP1B@dT$0a-B`X @@! 0#@,HP,`,` @"!@YHA!BH`P, !F( F!B`` 0B HHP, P` &(0  P!@PX !D D,P@,P, $,BPF!B`)  B2 H!$ @ H( A3B$" !3B$03B & L@fH(PrL *PT gT,PrL *PTB T. X !` # g 2! X Р!hBh,`f 6!`X$A0Bp:,, <X$0B|@@,,$ H ^@ 0a!( #XX 8AO!p p,aP H@bT01Ba ,,@AU P@PX H!P$0# XX "!D )  !L #@b !P0#B[`X,cX.P,,­ *RS*!1BT01Bcp:.BX !0#@,P,`,`@<!0B@X,`a<$,BȈPF!B`` 0B HHP, P` &(0  P!@PX !D D,P@,P, $,BHPF!B`)  BB H!$ @f PH(@ f$" 3B $@X !0LB0L, (&!(Y!, X@!00B 0B HHP  P!(  ,(@@$U ` !@B - 1hF@ !(`(@`0Ha 03B` Q! # ` 0B0Y @ ! B ,00$p B8Yr? !!B  B Y !0 B0 ,P,`, XF? XB!0B @00B P  H@!$  ,@ P!( () c(" 2B $@BR !L #c (  P7  !`1BT, !1B\0 Ȁ!d d, 2dqw  Ѐ!h h,`a61B8PhBa8!H X> H!B ! ,@0,BX H$@$@@X(,@D$ 0A3B &pL q @ ,(PA3BP*0 ,``a3B ,p,, Ȑ/!d# Р!h `PX 7!l #f8a3B 8:8Y(,@AW ((Y 08!0Y @8!@Y!tA( XB!B!|A( XB!Bb @!Y @! #a @@X H !$ $0B " X$0DBH&@0B (X 0!PT BT(`0B ,X ,!X #a .pa\Ba\00B 2 X @!h h20B 8X$pBt<0B >X (Q!P C>`0B 0L0Y 0!L! #a 8NpbBaP0B HR HY Pa! R00B `X$ B0B H HX Pp!( AH(0B " X "!D #@a $ aHB`aH&@0B (X(`0B ,X !p\ \ (8! $ %dB ,!h#`a 6`X 6!l #a 8X 8!p #a :atBat<0B >X ($(}#a 8N8Y @! ( It! $ H%B P N!#`a `X @! B ,`@ 0B @Y !@! # a H`$B@a$0B " X $D#a (X !PT T(` SY! ($ %pdB (!X#a 0X !hBh,Ch00B 6`X 6!l #a 8apBap:0B <X !| |<`0B 0L0Y@$BR0B B Y 8!p DB0B PT@PY P!T! #`a 0` Ba 0B @Y H!$ $@0B " X ! H `$8! $ %0TB "!d#a (X !`X BX(p0B .X .!\ #a 0a`B@a`40B 6`X60B 8!pBap:0Bx,P,X,, >|q a!0B@ 1B$PB(Y0a!p1B 3!|}, H!B ! ,`b !`X @@! B , 0!0Y 8!8Y $,BXH!B a B00B P( H!$ $,@a1B"P$Ba8!HX> H!B a @B@XB 0!3B H`$q  P !(B P("  6& H0  $!HB(,P,P`,X? X@!0B B00B P  H@!$  ,@ P!( (pC 9&D0  "!X!PB(Y0$pHB8Y $,BwPH!B ! ,? A!@ # a BP  @!  ,@ H 9&$0 H0B$@rL H$B  H$"  HX p!HH #`a &!`X @!@PB@P,a *!X$p0BX.1B 0X !d d,P,`,p,a H0 HYP2!1HX H!B a B00B P( H` &$0  H! HX P@!( (,HP,`,P $,BuPH!B@X6 ! ,`a !`X(B!` B0Y!T, X@!0B B00B P  H@!$  ,(@@$U `@ !@B ! 0|F@ !(b(@bB1B @Y a!B, 0B!0Y! , X@!1B B01B P  H!$  ,X@ P!(B(,PP,X `! HB H,`c&02B`0L,P,c 8&!8Y $,B(XH!B c B01B P  H!$  ,X@ P!( (,Pz?  , U `!@B ! 0|F@ !(b(@a1B @Y A!B, 0B!0Y!, X@!B1B B0@1B P  H!$  ,@ P!(B(,PP,xX @! HB H,`c&01B`0L,P,c 8&!8Y $,BXH!B a B Y(B!,  , U `!@B ! 3hF@ !(g(@f2B@B2BB3B 0@0Y @!0 B0 ,00 $p B8Y? ! ,*ؘ @B, 0@!0Y!d, XB!3B @03B P  H!$  , @ P@!(B(, g(" 3B $@X @!0L L$P3BI ẇ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "p *X$pTBX.3B 0X P!d Cd03B 4@X 4!h #`g 6alBgl83B :X `!x x:3B B Y($`BLp3B 8N8Y q! D8N03B `X  ! # g H`$Bg$3B P@PX !D D03B &`X$PLBP*`3B ,X !p\ B\,3B 0X 0!` # g 2adB@gd43B 6`X63B 8!pBgp:Hcx>1 Bx, DcxBPHdLP1B(P,Dd@pH`c01B`0 ,c H@b$1B H$, b$" 3B@ H,`gH&@3B (X $P#g .X$\B`23B 4@X !lBl,@Cl43B 8X !tBt,t83B >a|Bg|<3B B Y 0$0#g (J(Y8$0B3B @@X P !(B(,A@(3B H HX !DBD, HD 3B $ aHB`gH&@3B (X $P#g .X$\B`23B 4@X !lBl,@Cl43B 8X !tBt,t83B <axBgx>3B @Y $#`g `X($p BN3B @@X P!(B(,A@(3B H HX !DBD, HD 3B $ aHB`gH&@3B (X $P#g .X$\B`23B 4@X ؀!lBl,@Cl43B 8X 8!p #g :atBgt<3B >X !$}#g 0L0Y$PB Jp3B 8N8Y @`! B ,D8 N3B P@PX P !( # g H`$B g$" 3B $@X $H#g *X$pTBX.3B 0X @!dBd,Cd03B 4@X 4!h #`g 6alBgl83B :X $t#g @Y$0BP3B (J(Y 0!!`B`,D(J3B @@X @ ! #g 8NpbB@g3B H HX3B "!DB@gD$0.B`(PA0B*PLB(Y0!pB0B 3!z}, H!B ] @!0 B0 ,f @!@X (B!(Y 0!0Y 8!8Y $,B%XH!B g B03B P$ H`!0BA0B"P$B(Y0!pB0B 3!Dz}, H!B g @B@X  @$U ` !@B 3~F@(b(@b0Ha 00B` Q! # b B YB0B01B `X A!B, (@!(Y$, ! ,b @Y B!PB #? @!@XU `!@B  ) 3~F`(!(b(@b(a0@1B `X ! , a B Y B! ,`@ $H0 @`$ !0 0 , 0B D0  ?##@ H@!%#Y  9&0 0  !`X 0@!0Y 8!8Y @!@Y HB HY$/( J! B1B D@Y A!  DH U0 `!@B 5 3VF@ ! 0(B(g (f0HbP @3BB3B ,`@bP2B@2B,`bP0@tL 0 B aP BB2B@02BH`@0B 0! # fB03B2B,@0H a B00 B`0 ,a @H`b00B`0 ,b @H`b00B`0 ,Db @H`a00B`0 ,Da @2B ,`g3B @Y @$@#`g `X$ B3B @@X H@!$B$,A@$3B @Y `!0 B0 , @3B P`(B g(B3B @@X H$H #g @YP$B(B03B `X @@ ! B ,`@ 3B H HX P!(B(, H(3B @bB gB03B `X @$@ #@g P@PX$(BB03B `X @@! B ,`@ 3B H HX P!(B(, H(3B @bB gB03B `X @$@ #@g P@PX$(BB03B `X @@! B ,`@ 3B H HX P@!(B(, H(3B @bB gB03B `X @ $@ #@g P@PX$(BB03B `X @! B ,`@ 3B H HX H !$ #@g P`(Bg(@3B B Y  $# g H HXP$$B(@03B `X @! B ,`@ 3B B Y !B! # g H`$B@g$3B @Y $# g B YH$B$03B `X @ ! B ,`@ 3B @Y !@! # g H`$B@g$3B B Y $#g @YH$B$03B `X @! B ,`@ 3B B Y !B! # g H`$B@g$3B @Y@03B 0 Bg  H e.B`@2B,PP,` 8@!8Y $,B.XH!Bg @03B PL H!$ @e$3B" ZL $ HB H,   `!L # !@P seXP*H! `!p0B.A0B0PXB(Y0!pB0B 3!r}, H!Bg @@@X @!0 p pC H@ :&$0 H0B$tL H$B  H$"  HX !HH #`` &!`X !@PB@P,` *!X `!`X `) !\ #a ,!X$A0B`21B`,@@ @!l #a @!t0#x,ax>1Bx,X !0#@ 0a!( #a @!80# d HR HY P!H0#`@ `!X #b @!!0#`d `X P!(0# b " S"!@1BD A1BdH. A1B@ H,@X @!d0#@b 4@S4!1Bh61Bep:1Bp,X !|0#a <S<!1BxBP1BfLP0B(P,(Y 8!(0#P,`,p,` H,! HYP!!BH, S!<(( H!B g B03B P H` &$0  H! HX P!( (,HP,`,P $,BOPH!B ) BB ` :&0 0 0B 0tL 0 B@   `X !D #@` $!@X !0LB0L,` (!X$`0BT,p0B .rS.!A0B\0p0Bp\, f 2 X ($!(Y 0&!0Y 8(!8Y@!B0B@,`$,BNPH!B g B03B P, H` &$0  H! HX P!( (,HP,`,P $,BNPH!B ) BB6 !0 0 , ` H! HX(!`$B0YJ,$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 Sp"!, X@!3B B03B P  H!$  ,(@@$U `!@B ! 3|F@ !(`(@`0@0B 00Y !B,00$pB8Y~? !B,] (B!(Y 0@!0Y!, XB!0B @00B P  H@!$  ,@ P!(B(, a(" 0B $@X !0L L$P0B *X\$pTBX.0B 0X Ȱ!d Cd00B 4@X 4!h #`a 6alBal8Ё0B :X !x x:0B B Y (!P @J8! 0M$ 8%`B B!0#`a `X H!$ `@$0B @@X @ ! #@a P`(B a(" 0B $@X !0L L$P0B *X !`X P,! ($ %p`B *!d#@a 4@X !l @Cl40B 8X 8!p #a :atBat<0B >X>P0B (JP"BaN,, XX C! #X4 A!0 #`a !`X H@!$ #a @@X P$P #@a $@X8$@HBL(`0B ,X8 !`!XB`,P0B *X!PATB\*0B 2adB@ad40B 6`X60B 8!pBap:.Bb >!X (A!PB,P,`,p, 3!\}, H!B a B00B P  H@!$  ,h@ P!( (, ^(!`DB0Y!D, X@! , U `@!@B ! 2~F@ !(c(@c00B`0 ,d @2B B Y @!  , @@#d @YH$B$02B `X @!  ,A@@0 B 2B B Y !B! # d H`$B@d$2B @Y@2B @@X$ B2B P@PX P!( #`d `X  ! #d @bBd2B H HX2B B"B@d0.Ba @!@X !! #P,@`,d $,BhXH!B@XU `!@B ! 1~F@ !(d(@d0,,XX A! # X4 ! #b @!Y @! # e B YB02B `X $ B2B @@X @! # e B Y !B! #`e 0` B e 2B @Y@2B B Y$B 2B @@X @! #e @Y !@! #`e 0` B e 2B B YB2B @ Be @00B`0 , e 2B B Y @$@#`e `XH8$ B$2B @@X9 ! B2B B Y!BB B2B H`$B@e$2B @@X2B @"B`e.B b H! HX P`!( #P,H`,e $,BXH!B e B02B P  H@!$  ,h@ P!( (, ^(!`DB0Y!, X@! , U `@!@B 12xF !(g0Hf 02B` ! # H!@$ #d@!0 3B ,,  A!H #`XX !0 8! ,, ! @!H # :&0 @03B0tL 0 B   `X H!$ #g @!Y @! B ,`f !`XH$@0B$,,  " X,, N H SH!0B$ A/B`( H`!$ #@XX P!( (, a(0 HbL(1B@a$PAHX !L0#BZ@P, bP,,@AQ P@SP!0A1B(&PA1B cT@,BX P!(0#`XX &!0L 0)` H!$ #c P!(0#BX@P, dP0,,`B &`2S&!1BLP1B eT@!/BX P`!(0#@,@P,`,`@"!0B@,`aH$,B;PF!B`` 0B HHP( P` &(0  P!@PX !D D,P@,P, $,B:PF!B@XB !0 $ @3B !3B" 3B $H@`fD&@AtL (@P gP*@AtL (@PB P, X !\ #g 0!X Ƞ!dBd,@f 4!@X$A0Bl8,, :X,, <S<!0Bx>b,B (a! #XX0$@B`,9PF! ,@X H@!@$0#@ !PL #b `!X0#XX0$@B`,8PF! ,@X !@P0# ؠ!l #b !x0#XX0$@bB`,8PF! ,@X !@|0# XX Hp!$ H) H P!H( #`c !T0#Y`X,dX(@`B Y (2!(Y 04!0Y8!!tB a P@!@PYXa!yHX  F!B`` 0B HHP( P` &(0  P!@PX !D D,P@,P, $,Bx7PF!B@XB !0 f H0$@@f 3B " X ! HB H, ($!(Y!, X@!00B 0B HHP  P!(  ,(@@$U `!@B ()0~F0!(e(@e(d(@d1B@,, Bp q !  p C0,,XX A! A?#"BB ,,@D Dp ch A! q@!3BB03BF B3BDB3B @Y @$#@f D@Y$B0@3B `X,,D @0 BB3B B Y@!BB B B3B D bB`fF0@3B `XB3B @"Bf H@cD0,,` @G! #q!2B B Y A!   ,p,HD!H`X ? L!Bc @1B BP !  C ! X P$H(@ XX 0$H@`a &!`X !P #f *X "T#f 0XȜ$`Bd43B 6`X "!D `CD63B 8X 8!p #f :atBft<3B >X0 ,` F}#f @P@YH$B3B @Y0 ,`@"B @3B B Y !B! #@f D bB@f3B H HX 3B $ !HB`fH&@-Ba *!X !X #p,, g $0,BH XL!B8@,,  A!# !0  (8(! @ !  ,@?  !0 @F! ,P g !  3~FP x = #``0B ,,`XX ! #X4 A!@ #`XX,,A@r.B`,,`XX P! #\$ @`!! #`XX,,AFr,B`,,`XX 0! #X$ @@!! #`XX,,A,B`0B@00B 0B @Y H$H#`a `X@8$ B "0B H HXP8 ! $B(0B @Y!BB @0B @` B a "0B H HX P$P$#a @Y@,$B "00B `XKm_$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "H!0 B$0B P@PX P !( #a @` B a "0B @Y  $#@a P@PX@0$(B "00B `XH!0 B$0B @Y !@! #a @` B@a 0B " X $D#a @Y@$B 00B `XH8 !0 B$0B " X@P!ADB "0B P`(Ba(@00B `X H$H # a " XPL$DB(@00B `X@8 !0 B 0B H HXP!@$B(0B "aDBaD@00B `X @$@ #@a P@PXH$(BD@00B `X@!0 B 0B H HX H !$ #@a P`(B a("0B @Y $# a H HXPD$$B("00B `X@!0 B 0B @Y !@! # a H`$B@a$0B " X $D#a @YH<$B$00B `X@8 !0 B 0B " XH0!ADB$"0B P`(Ba(@00B `X @$@ # a " XP\$DB(@00B `X@8!0 B 0B H HXP!@$B(0B "aDBaD@00B `X @$@ #@a P@PX$(BD@00B `X@@!0 B 0B H HXPp!@$B(0B "aDBaD@00B `X @$@ #@a P@PXl$(BD@00B `X@!0 B 0B H HX H !$ #@a P`(B a("0B @Y $# a H HXPp$$B("00B `X@!0 B 0B @Y !@! # a H`$B@a$0B " X $D#a @YH4$B$00B `X@!0 B 0B " X "!D # a H`$B@a$0B @Y@00B 0 Ba 0B% 1xF@ !(c(@c01B 00Y !!B,001$pB8Y? !!B,] (B!(Y 0@!0Y!D, XB!2B @02B P  H!$  ,@ P!( Hxp! !DB@ D$  X `!0LB0L,P,`, #!{, H!Bd @02B P  H!$  ,@ P !( Hxp! !DB@ D$  X @!0LB0L,P,`, #!l{, H!Bd @02B P  H!$  ,@ P!(B(, d(" 2B $@X `!0L L$P2B *X8$pTBX.2B 0X p!d Cd02B 4@X 4!h #`d 6alBdl82B :X:2B >X A! ( C(%D 0Q!` `, 0L`0)PW 8% @I$pB(N! >!(#`d `X ! # d H HX H !$ #d @` B@d 2B " X ! H H"@2B (X !PT `*8! $ %`\B (!`# d 2 X !h Ch22B 6`X 6!l #d 8apBdp:2B <X A! <2B @P@Y 8A!p pN! \$ %B ( P!#`d `X HP!$ `@$2B @@X @ ! #@d P`(B d(" 2B $@X !0L L$p2B .X !@P 0(! $ %``B .!d#@d 4@X !l @Cl42B 8X 8!p #d :atBdt<2B B Y 0!$0#d @Y !| @>8! (%$ @%PB @!( # d H HX @`! B , AH 2B P@PX P !( # d "aDB@dD$02B &`X $L#d 0X !`X P,! X$ %pdB 0!h#`d 6`X @!pBp,`Cp62B :X :!t #d <axB dxB`2B 0L0YL2B >X @! ( C%D ! , @9P (% @$P BJ! H>!$#@d P@PX P!( # d " X "!D #@d $ aHB`dH&@2B (X $P# d 2 X `!p\ p\ ( C%D p!h h, 4  P % d$pB6! 2!t#d <X  :&0  B! Y <!y #d 0L0Y 0!L! #d 8NpbBdP2B @Y@P2B (J(Y !0  ( CH%D !| |, >0P P% @$DBH! J!HH#`d &`X &!L #d (X (!P #d *PaTBdT,p2B .X.2B 8X ؀!l l( C%D Ȑ!d d, 2P % $xB:!  8!#d 0L0Y 0L! #d 8N8Y 8!N! #d @PbBd2B @Y@02B 0 Bd >1B D,P,X @! H H( It ! P!0L 0L, & ! !P #b *`(Pw$ !`X X( it ! !p\ p\, . ! Ѐ!h #,, b21oBd<A1Bt,c 0!X !p p, b B Y (:!(Y 00!0Y88!BX , U `!@B !1zF@(e(@e02B ((Y !B,(()$`B0Yb? !B,] B! Y (@!(Y!T, XB!3B @03B P  H!$  ,X@ P@!(B(, f(" 3B $@X !0L L$P3B *X !`X @,8! 8$ %p`B *!d#@f 4@X !l @Cl43B 8X 8!p #f :atBft<3B >X>@3B H Y(I$`BLp3B 8N8Y 8N! #f @Y !@! #`f 0` B f 3B @@X3B " X ! H P$! @$ %0PB "!X#f 0X 0!` #f *X *!T #f .pa\B f\23B 4@X !l l43B :XP$tBx>3B B Y !@ DBP3B (J(Y (!J! #f 0L`bBfN3B @Y@3B H HX @!  ( CP%D ! H  H, $8P % @$@DBP(! !PL#f ,X ,!X #f 0X 0!` #f *PaTBfT.3B 2 X23B 4!hB`fh61Bp,@,X @!tBt,c <!X @!| |, g BP 8qh LO$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " ! , @ ! :! Y (<!(Y0>!pB8Y?  , U `!@B ! 2|F@ !(f(@e03B 00Y A!B,00$pB8Yz? A!B @ Y @!0 B0 ,P,`, XN? XB!B3B @0@3B P  H!$  ,@ P@!(B(, ] (!(Y 0"!0Y!{, XB!B3B @0@3B P  H!$  ,@ P@!( () d(" 2B $@bR%/"02BH&@3B@P,fP*`A3B ,X !p\ \,A3B 2 X8$dBh6A3B 8X !t Ct8A3B <X <!x #f >a|B f|BPB3B (J(Y 0!` JB3B @Y @!0  0@ ) P H8h7 H$ @% B P@!H(# f " X ! H BH"0A3B &`X &!L #f (@aPBfP*`A3B ,X $X# f 2 X @!h h(` SY! 4$ %pB 2!t#f <X !|B|,C|<B3B B Y !B! #f (JPbBfLpB3B 8N8Y $# f H HX P@!(  ()P0P h8h m$ %DB !I#`f &`X !@PB@P,`BP&PA3B *X *!T #f ,`aXBfX.A3B 0X !h h0A3B 2 X @!l Ql)8P xh \$ %xB 2!|# f B Y (!P DB`B3B 0L0Y 0!L! #`f 0` Bf pB3B 8N8Y P!( (N@3B H HX @! H  aH)P 8qh $ %LB !Q#f *X !`X BX*pA3B .X .!\ #f 0a`B@f`4A3B 8X8A3B 6!lBfl<.Bg :!X !| #P,`,g $,BȞXH!Bf @0@3B P  H!$  ,(@@$U `!@B !1|F@(b(@bB1B @Yq!@BP,XV? X@!1B B01B P  H!$  ,@ P@!(B(, c(" 1B $@X$@1B (X$`PBT,p1B .X .!\ #c 0X 0!` # c 2adB@cd41B 6`X61B 8!pBcp:1Bx,@,X @!|B|,c @!Y ! ,@XX %! H @,P, 8$!8Y?  , U `!@B ) 3|F@ !(g(@g0Hf @Hd2B@ 0!@ #a@0BB03B `X@p!P B@`,X? X@!0B B00B P  H!$  ,h@ P!(B(, `(" 0B $@X$@0B (X$`PBT,p0B .X .!\ #` 0X 0!` # ` 2adB@`d40B 6`X60B 8!pB`p:0Bx,`x>0B @Y ($(#` 8N8Y@ $BR0B B Y( !"B B0B H HX @@! B , H 0B P`(B `(" 0B $@X $H#` *X$pTBX.0B 0X Ƞ!dBd,Cd00B 4@X 4!h #`` 6alB`l80B :X:0B <!xB`x>.Bc (J!(Y 0a!`B,P,@`,Hp, 3!_~, H!B` @00B P< H!$ $,@*ؘ P(B(,H 0!0Y!tm, XB!B0B @0@0B P  H !$  ,@ P!(  ,@( ! 0BD$0tL &0L fL(0tL &0LB L* `X !X #f .!X !`B`, d 2! X$0Bh6P\B(Y 00!0Y 82!8Y@A!B3B HR HY$,BXPH!B` @00B P  H!$  ,(@ P!( (, d "! X(!`DB0Y!Ll, XB!0B @00B P  H!$  ,x@ P!( (, a "! X(!`DB0Y$,B8XXB! , U `@!@B ! 1~F@ !(d(@c0B@0BBB1B, dB0@2B `XB2B @Y$B0@2B `X ! #d @@X @ ! # d H`$Bd$@B2B B YB0@2B 0 Bd 0B H$,d$@B2B B Y $# d H HX$$B0@2B `X@( !0 B B2B B Y H@!$B$, $B@2B P`(Bd(@0@2B `X@2B @ B d .B@b P!@PX a!B,P,P`,p, 3!d^~, H!Bd @0@2B P< H!$ $,@*ؘ P(B(,H 0!0Y!i, XB!2B @02B P  H@!$  ,@ P !(  ,@( ! 0BD$01B &`X @!@PB@P, 0(!0Y!i, XB! , U `@!@B () 1zF(d(@c(c(@b1B 8@8Y A!B,88 $B@Yҵ? A! B ,`] 0D!0Y 8F!8Y!4n, X@!B2B B B2B DP  !!  ,@ @!0 B0 , d @2B P@PX `!D D0A2B &`X8$PLBP*`A2B ,X p!p\ B\,A2B 0X 0!` # d 2adB@dd4A2B 6`X6A2B :XH$tBx>B2B @Y @! #d 0L0Y 0!L! #d 8NpbBdPB2B HR HYR B2B D@Y !0 !0@2B `X ! # d H HX H !$ #@d P`(B d(" A2B $@X$@A2B (X !PT T( C%D !p\ p\, .`(PW % @$dB0! (!h#`d 6`X 6!l #d 8X 8!p #d :atBdt<A2B >X>`B2B 0L0Y 8!p `N8! @!   %B H L!@#d @@X @! #@d D@Y !D! #`d F0bB`d@2B H HXA2B " X ! H pD%! <$ ! "!T#d .X .!\ # d 2 X 2!d #d 0a`Bd`(`A2BMTǫ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 |" ,X,A2B 4!hB`dh61Bp,`,8X @!tBt,b <!X !| |,b @P 8qh ! , B ! 0:!0Y 8<!8Y@>!B HYV?  , (U@ `@!@B !3~F@(a(@a00B `X A! ,t (!(Y0!pB(X ,0a ! !3~F@(a(@a00B `X A! , (!(Y0!pBhX ,0a ! !3~F@(a(@a00B `X A! , (!(Y0!pBX ,0a ! !3~F@(a(@a00B `X A! , (!(Y0!pBX ,0a !  (`0@0B ! `` H 8 @1 `ttL H$B`X $ 0 80! @ ! @?#@0B 0@0B `aD !! A P@1 (t @$ B , H$B@X @$  ,8@ !  ,  ! 3~F@(a(@a00B P@PX @`!  ,D@ H Yz? P!@( #HU `@!@B !3~F@ !0#P `A #P p@9 #b@tL @B bB00B `X A! , (!(Y0!pBX ,0b ! !3~F@(a(@a00B `X A! ,(=$` B6?  ,0a ! !3~F@(a(@a00B `X A! ,($` B?  ,0a ! % 3~F@ !(b(@a01B0B 0B @P a! `a0B @@P @$D !00B `X$pf0$pB8Y@!!H X H!B@XU `!@B 1 1~F@ !(e(@d0B@R.Ba@0@1B`0 ,e @2B B Y @$@#`e `Xa$ B2B @@XH( ! B$2B B Y `!0 B0 ,  B2B P`(Be(@2B @@X2B H $B`e$B1B ,@a P!@PX (!(Y0%$pB8Y @B!@Y H! HY P!@PY X!`XY$,BPH!B@X , b B0,,  P@P@O(,, B" 1B $@X @!0L 0L,0&!, a!@ # e BP  `!  ,x@ H !$ $,@a P!@PX(!`(B0Y!^, X@! , U `@!@B 1 3|F@ !(`(@`0,,` `@Rp CA!,BP,`,X A!@ # a BP  @!  ,@ H !`$ `,@c P!@PX(L!`HPp,X !DBD,@b $!@X ("!(Y 0$!0Y!|b, X@!0B B00B P  H@!$  ,@ P!( H8H! :&D0 " 1BD$tL "DB` D&  X !P #b*!`0BT,$ !p\B\0 0B\2 @!h h,`[ (6!(Y04!,BXX@!0B B00B P  H`!$  ,@ P !(B(, a(" 0B $@X0,,`› &H#a *X$pTBX.0B 0X,, 2!`Bd00B 4@X 4!h #`a 6alBal8Ё0B :X $t#a @Y(}$`BLp0B 8N8Y@!p"BN0B HR HY H!R! #@a PTbB`aV0B B YB0B H HX @!  ( It! P$ $DB !PH#`a &`X &!L #a (X (!P #a *PaTBaT,p0B .X !` `.0B 4@X !l P6! $ ! 4!t#a <X !| C|<0B @Y !@! #a (JPbBaLp0B 8N8YN0B @P"B aRB2B@P,`a XV!`XY (!(Y0)$pB8Y @T!@Y HV! HY P!@PY X!`XY$,BXPH!B@X ,a @00B `X H`!$ $,0!\, A!@ #a @P  @!  ,H@,, @ P@U_(HU `@!@B 1 0~F@ !(f(@f0@3B 00Y !B,00$pB8YN? !B,b @!Y (B!(Y 0@!0Y!L^, XB!3B @03B P  H!$  ,h@ P!( H8! $ 1BD$ !0LB0L,gL(P3B *X p$T#g 0XȜ$`Bd43B 6`X !!lBp6Ё3B :X :!t #g <axBgx>3B B YB`3B 0L0Y8a$BP3B HR HY HR! #@g PT@PY P!T! #`g XVbBg@03B `X H$H #@g P@PX$ (BD$03B &`X !@PB@P,`BP&P3B *X *!T #g ,`aXBgX.3B 0X03B 2!dB@gd41B`l,a 8!X (!(Y0 $pB8Y @6!@Y H8! HY P!@PY X!`XY$,BPH!B@X ,a @00B `X H@!$ $,0!l, !@ #g @P  !  ,(@@$U `!@B 1 1~F@ !(f(@e03B 00Y A!B,00$pB8Yެ? A!B,b @!Y (B!(Y 0@!0Y!l[, XB!B3B @0@3B P  H!$  ,x@ P!(B(, f(" A3B $@X0,,`› &H#f *X$pTBX.A3B 0X,, 2!`Bd0A3B 4@X 4!h #`f 6alBfl8A3B :X $t# f B Y(y$`BLpB3B 8N8Y@!p"BNB3B HR HY H!R! #@f PTbB`fVB3B @Y@@3B H HX @!  ( It! P$ $DB !PH#`f &`X &!L #f (X (!P #f *PaTBfT,pA3B .X.A3B 0!`B f`2A1B@h,`a 6!`X (!(Y0 $pB8Y @4!@Y H6! HY P!@PY X!`XY$,BPNͰT$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 !"H!B@X ,a @00B `X H@!$ $,0!, !@ #f @P  !  ,(@@$U `!@B % 3~F@ !(b(@a1B @Y A!B, 0B!0Y$,BPH!B a B! Y (!(Y 0!0Y 8B!8Y @!@Y$,BxPH!B !D( H!BU `!@B ! 1|F@ !(f(@f0@3B 00Y !B,00 $pB8Y? ! ,*ؘ @B, 0@!0Y!lS, XB!3B @03B P  H!$  , @ P!(B(, e "! X (!(Y 0"!0Y!|W, XB!3B @03B P  H!$  ,8 @ P`!( H8! @$ !DBD,@cD$02B &`(Pw8 !@P @P, (!X#c .X !` `.1B 4@X 0!l @Cl41B 8X 8!p #c :atBct< `!| |)0P8 ! ,t 0 B!(#c 8N8Y A! N1B H HX PP!( AH(1B @@X @ ! # c "aDB@cD$ `!0L 0!L)8PD `!@P @1P)cP*`1B ,X$XB\01B 2 X $d#c 8X !tBt,Ct81B <X <!x #c >a|B c|B (a!P PB)(PD 0a!` `R)`b1B @Y8$B1B P@PX @$@(#@c $@X !0LB0L,@BL$@1B (X (!P #c *PaTBcT, `!p\ pa\)  P7D `!` q`) Ȁ!d #@c 4@X $hBl81B :X $t# c B Y (!PBP, DB01B `X  ! #c 0L`bB c e! C 8a!p p)? @`!8! #@c P@PXl$ (BD$01B &`X $L#c ,X `!p\Bp\,B\,1B 0X 0!` # c 2adB@cd4 `!l l)0PD `!p p)缈 @!t #c <X$xB|BP1B (J(Y $#c 0L0Y A!B,D0L1B @@X @ ! #c 8NpbB@c !D D,@"$0/B` (!X !T #P,`,g $,B_XH!Bg @03B P  H!$  ,(@@$U `@!@B ) 2zF@ !(b(@b0Ha 01B` q! # b B Y @@! B , 0!0Y!TR, X@!1B B01B P  H!$  ,x@ P@!( (, a "! X `! HBH,P 0"!0Y 8P!8Y@$B HY$,BPH!B b B Y `!0 B0 , 0!0Y!2B|BvL >|B |J X 0! #d 8N!8Y @!8 # A!` `,`c `X H!$ $,00 $p BH$,BPH!Bd @Y  6&0 0  !`X(@!` B0Y!I, XB!2B @02B P  H`!$  ,(@@$U `@!@B ! 2~F@ !(c(@c01B 00Y !B,00 $pB8Y? !B,] (B!(Y 0@!0Y!M, XB!2B @02B P  H!$  ,@ P@!(B(, d(" 2B $@X !0L L$P2B *X8$pTBX.2B 0X Ȱ!d Cd02B 4@X 4!h #`d 6alBdl82B :X:2B <!xBdx>.Ba (J!(Y 0!! #P,8`,d $,B(gXH!B@XU `!@B ! 2~F@ !(c(@b1B @Y A!B, 0B!0Y!TL, X@!1B B01B P  H!$  ,@ P`!(B(, c(" 1B $@X $H#c *Xp$pTBX.1B 0X @!dBd,Cd01B 4@X 4!h #`c 6alBcl81B :X:1B <!xBcx>,,@p.Ba (J! (Y 0! #8P,`,d $,BXH!B c B01B P  H!$  ,@,, b " X (q!P P,? !@ # c BP  !  ,(@@$U `!@B ! 2~F@ !(c(@b1B @Y A!B, 0B!0Y!tJ, X@!1B B01B P  H!$  ,(@ P`!(B(, c(" 1B $@X $H#c *Xp$pTBX.1B 0X @!dBd,Cd01B 4@X 4!h #`c 6alBcl81B :X:1B <!xBcx>,,D @p-Ba (J! (Y 0! #8P,`,d $,BXH!B c B01B P  H!$ O5$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 " ,(@@$U `!@B 5 1jF@ !(d(@c0Hb 03B` ! # aB@0B00BH gBp,B`g H gB0p.BAg H fB0p.Bf H fB0P.BAf B1B, dB0@2B `XB2B @Y$B0@2B `X ! #d @@X @ ! # d H`$Bd$@B2B B YB0@2B 0 Bd @0B H$,d$@B2B B Y !0  B@2B H HX $$B0@2B `X @! `@ B2B B Y H!$B$, $B@2B P`(Bd(@0@2B `X @$@ # d B YP $B(@0@2B `X @@! B ,`@ @2B H HX H !$ #@d P`(Bd(@B2B B Y $# d H HXP$$B(@0@2B `X @ ! B ,`@ B2B B Y !B! # d H`$B@d$B2B @Y $# d B YH$B$0@2B `X @! B ,`@ B2B @Y !@! # d H`$B@d$B2B B Y !0  BB2B @YH$B$0@2B `X @! `@ B2B B Y H!$B$, $B@2B P`(Bd(@0@2B `X @!  B2B B YP$B(@0@2B `X @! `@ @2B H HX P!(B(, H(B2B @bB dB0@2B `X @!  @2B P@PX$(BB0@2B `X @! `@ @2B H HX P!(B(, H(B2B @bB dB0@2B `X@2B @ B d -Bb @!Y !!B,PP,`,p, 3!H~, H!B d B0@2B P  H !$  , @ P` ;&(0 P0B("vL P(B@ P($ @PX p!PL #a (!X !PTBPT,b ,!X$2B\00B 2 X !h )@ `!l #@g 4!@X !p ) !t #f 8!Xp,ap<3B >S>!B3B|@PB3BaLP3B(P,(Y 8!(0#g @PS@P!3BR3B`bV3B@P,@PY `!P0#  ! # g @!H 0# ` " X !H0#@ !PL #` !`0#`` 6`X @!t0#P,`,p,eH2!2B`,fD$,BPH!B d B0@2B P( H` &$0  H! HX P !( (,HP,`,P $,BPH!B@Xz !02B0@0B`0 ,P,e 8!8Y $,B8XH!B d B0@2B P  H !$  ,(@ P!( b "PD@@Bb($01B&@H`B !T #a ,!X !p\Bp\,b 0!X$2Bd40B 6`X !p ) `!t #g 8!X !x ) !| #f <!Xx,ax@P3B (JTS(J!`B3BLpB3BaPp3B8p,8Y H!80#@g PT@SPT!3BV3B bB3B , Y ! 0#  @!H # g P!(0#@` $@X !P0#` !T # ` !h0#` :X @!|0#P,`,p,eH6!2B`,fD$,BXPH!B d B0@2B P( H` &$0  H! HX P !( (,HP,`,P $,BؕPH!B@XV ! `@b 0 @ b 03B`0 ,@Ab 1B" !1B $H @`bD&@1B (X !PTBPT, 0*!0Y!:, X@!B2B B0@2B P  H !$  ,(@@$U `@ !@B ! 0|F@ !(d(@dB1B@1BB0B@B2B 0B0Y !0 B0 ,00%$p B8Y6? !B, c B! Y (@!(Y 0B!0Y!>, X@!2B B02B P  H@!$  , @ P!(B P(" @PX ! HB H,PP,`,Xڞ? X@!2B B02B P  H@!$  , @ P!(B  P(" @PX `! HB H,PP,`,X? X@!2B B02B P  H@!$  ,8 @ P!(B  P(" @PX ! HB H,PP,`,Xr? X@!2B B02B P  H@!$  ,h @ P!(B  P(" @PX ! HB H,PP,`,X>? X@!2B B02B P  H@!$  , @ P!(B(, e(" 2B $@X$@2B (X !PT T(D H8h7  !`X XE `h $ %p`B (!d#@e 4@X 4!h #`e 6`X 6!l #e 8apBep:2B <X $x#e (J(Y 0!` `)05P 8!p xN!  $ % B HJ!%#e @@X P`!(B(,A@(2B " X "!D #@e $ aHB`eH&P2B *X !`X X*@2B (X !p\ p\)P !d H2x! $ %lB (!p#e :X !x Cx:2B >X >!| #e @bBeLp2B 8N8Y !0  N2B B Y (!P P")()P @! hx! P$ %DB B!PH#`e &`X !PT `BT&`2B ,X ,!X #e 0a`Be`.2B 2 X @!l l22B 4@X !p Ap)P xh $ %xB 4!|#e @Y 0Q!` D@02B `X  ! # e H`$Be$NP2B (J(Y @$@#@e P@PX ! H  QH)P @h $ %LB !U#e ,X !p\Bp\,B\,2B 0X 0!` #e (@aPB eP22B 6`X $l#@e 4@X !t at)$P Xxhw $ %B 0 4!#`e `X H!$B$,`@$p2B 8N8Y 8!N! #e @` B e "P2B (J(Y ! H HJ2B P@PX !PT P1T)(P `h $ %XB !]#e 0X 0!@P CP02B 2 X 2!d #`e 6alBel82B <X<Ё2B :!tBeP$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 @"t@-Bb >!X 0a! #P,`,e $,B|XH!Be @02B P  H@!$  ,(@@$U `!@B ) 2~F@ !(d(@c0Ha @ Ha0B@ P!@ #d @Y !B,`b !`X @! B , 0!0Y 8B!8Y @!@Y H! HY$,BPH!B d B0@2B P  H !$  ,(@ P!( b "PDq7  $00BH& !@P @P,a *!X((!`TB0Y!|1, X@!B2B B0@2B P  H !$  ,(@@$U `!@B % 1~F@ !(e(@e00B2B 0@0Y !B,00$pB8Y? !B, a B! Y (@!(Y 0B!0Y!$5, X@!3B B03B P  H!$  ,(@ P@!( (C ;&D0 " A1BD$vL "DB` D&  X !P #/И *PT bT,PhL *PTB T. X !` # Y Р!hBh,`c6!AH`l,b :!X (2!(Y 04!0Y 86!8Y @:!@Y$,BPH!B f B03B P  H!$  ,X@ P` 4&(0  P@PX @!PDBP,`P &(0 `P !0@ H!B f B03B P$ H!$  ,@ P ;&(0 PA1B("@vL P(B@ P($ @PX !PL #Y !PTB T, X !p\Bp\,P,`,p, 3!( H!B f B03B P  H!$  ,H@ P ;&(0 PA1B("vL P(B@ P($ @PX !PL #Z !PTB T, X !p\Bp\,P,`,p, 3!\( H!B f B03B P  H!$  ,@ P@!( (, Y!00B`0L,P 0"!0Y 8$!8Y @&!@Yj? !@ # f BP  !  ,8@ H`!$ $,@cP!H@(,@c$!0H@" H,PP,`,H *$0 `H #!0@ H!B f B03B P  H!$  ,(@@$U `!@B 1 0nF@ !(f(@f0Hd H cBH`c$Ha @0BB0@3B `X1B 1B01B@@B3B B Y B!p p,g`,@Y!( X@!B!( X@!B a! p C @!0 @9(! @@! Ph! H!$ hxX! P!( (, g "! X ! HB H,`g &!`X !@PB@P,g *!X !`XB`X,P 0"!0Y 8$!8Y @&!@Y H(! HY P*!@PY X,!`XY$,BhXH!B a B02B p q  H`!$#? P@!( @9(! @!D P"% ! H h$x% !0L cL(P1B0*`1B@,P3B0Y8!,X X@!B!d( X@!B  ! # H!@$ #>? P@!( 8`! @!D H"yP! @ -& H0  $!X !L ,0P,8Pv f$,BvPH!B@X ! `b03B`0 , b 0H "e(" 2B$0A1B`0L,e (!X (&!(Y 0(!0Y 8!8Y @!@Y H! HY$,B8uPH!B@X , g B03B P0 H@ -&$0  H!HX P!(B(, g " X (L!(Y0$p(B8Y@"!!HX" H!B@XF A! `d2BH`2B$3B " X ! HB H, 0$!0Y! ), X@!3B B03B P  H!$  ,(@@$U `!@B 5 1`F@ !(g(@f0 Hf 03B` ! # aBH`` H `BH`g$Hf @2BB03B 00Y H`!$B$,00 $p$B8Yf? (!`H!$( X@!B 4 ! # H!@$#@! !PD#@- P(B(,@d($0HdL(00B`0L,eL*`0B,p2BX.!1B03B`20B4!3Bh61B8)3Bp:P0B8!,BHqPX@!B $ ! # H!@$#@ !PD#@f, P!@PX !PH #` !P# (!X#f, *!X 0!\ #c 0!X (0!(Y$,BpPH!B@X , e B02B P H`!$ @g$3B0" 3B@$00B 8&8Y(!`,@Y! ( X@!B!( X@!B ! p C `!0 @9(! @`! P@! H!$ hx0! P!( (, f "! X ! HB H,`f &!`X !@PB@P,f *!X !`XB`X,P 0"!0Y 8$!8Y @&!@Y H(! HY P*!@PY X,!`XY$,BX XH!B e B0@0B p q  H!$#? P !( @("ph! ! H P$! !0L `&yH! !@P @P,f *!@P@, ,`X X0Xn)d0A0B 4hB``h6 !`p `@:0B <X  !|B(}< `,f,X> X@!B!( X@!B aB0@0B 0 @a 2B H`$s P`!( @y% !D X"% ! H `gH&@3B0(P3B@*P3B0Y8!,X X@!B!$( X@!B   ! # H!@$ #? P`!( 8H! `!D H"y8! ! HB H,P, !_{, H!B@X !B,`g0BH 3B$3B" 2BD$3B D,`d D&@0B(P1BP*`1B,p2BX.2B02B`21B@h,P, !<( H!B@X , e B, !0 e 2BP2B(" @! H pH (pC !0LB0L,P, ! ^{, H!B@XJ ! `d 2BH`2B$1B" 2BD$0A2B&@!2BL(P1B*`1BT,pa2B.1B\01B21Bd42B61Bl81B:A1Bt<2B>b1B|@PvL (JP eLPvL (JPB (N (Y @q!( # e HR!@HY X!B,f @!@X @!0 Qbk$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 O"0)` ! #`e !`X H !$ H) H P!H( # d H! HX !D )  !H # d "! XD,`aD&@1B (BS(!P0BP*`0BaX.`1B`X,X !`0# c 2 S2!0Bd40Bbl81B`l,`X !t0#b <S<!1Bx>1BcLB1B,Y 8!0#PP,``,@p,g H! HYP!$B`XY`!!yH X^ H!Bf @Y !0 B0 , 0!0Y! , XB!B1B @0@1B P  H!$  ,(@@$U `!@B  (`(@`,,`@ H aM_$H (`(@`,,@ @ N@H1 0bF@ !(a(@a0xHe 0@3B` Q! # dBH`d H cBH`c$Ha @0BB00B 00Y H!$B$,00 $p$B8Y ? !B  B Y H!$B$,P,H`, Xޑ? XB!1B @01B P  H!$  ,H@(!`H! ( XB!B4 ! # H!@$#@! 8!PD#@ <!L#@- $ HB H,eH(PHreT,PA0BPT,fT.!3B0!3B`2a3B4A3Bh63B8a3Bp:A3B<i3Bx>PB0B8!,BaPXB!B$  ! # H$!@$#@ (!PD#@f( P!@PX 0!PH #` H!P#`f( &!`X P!T #,( ,`XB`X,eX.1B`,P, !$( H!B@X ,` @0@0B P H!$ @c$1B0" 1B@$0!3B 8&8Y(!`,@Y!ܯ( XB!B!( XB!B a! p C @!0 @9(! @@! P@! H!$ hx0! P!( (, f "! X ! HB H,`f &!`X !@PB@P,f *!X !`XB`X,P 0"!0Y 8$!8Y @&!@Y H(! HY P*!@PY X,!`XY$,BXH!Ba @02B p q  H`!$#? P!( @("ph! ! H P$! !0L `&yH! !@P @P,f *!@P@- ,`X X0Xn)d02B 4hB`dh6 !`p d@:A2B <X !|B(}< `,f, X& XB!B!T( XB!Bd@02B 0 @d 0B H`$s P@!( @y% !D X"% ! H `cH&@1B0(P1B@*PB3B0Y8!, X XB!B!( XB!B ! # H!@$ #? P@!( 8H! @!D H"y8! ! HB H,P, !U{, H!B@X !B,`b1BH`3B$A1B" !3BD$A3B D,`dD&@A2B(P2BP*`1B`X,P, !,( H!B@X ,` @ !0 B0 ,P, ! T{, H!B@X ,"@ p ԑ@#yPБ&JCH y(" 0BD$0A0B &  P7 !@PB@P,P, !( H!B@X ,` @01B`0 ,P, !|S{, H!B@X ,"@ p ԑ@#yPБ&JCH y(" 0BD$0A0B&@J 1 $ $`y2BT,p1Bp\,P, !,( H!B@X ,` @  !0 p `C H!$B$,HP, !( H!B ;&0 @02B0vL 0 B   `X Hp!$ #@e P!@PX @!DBD,@e $!@X$@A1BL(PA0B *R !`X `) !\ #` ,!X (!(Y 0"!0Y 8$!8Y@!TB HYP!XB`XY$,BVPH!Bb @01B P, H` &$0  H! HX P!( (,HP,`,P $,B(VPH!B) @BZ @!0 0 , e H! HX(!`$B0Y!, XB!1B @01B P  H!$  ,@ P!( (C !D D(`C ! HB H,P, !R{, H!B@$U `!@B ! 1~F@ !(d(@d0@2B `X1B @B2B B Y B! `c1B@`a ! #c @p q4 !0 B0 , c B! Y (!(Y 0B!0Y$,BhXH!B e B02B P  H@!$  ,@ P@!(B(, e(" 2B $@X $H#e *X$$pTBX.2B 0X !dBd,Cd02B 4@X 4!h #`e 6alBel8Ё2B :X:2B >XA$P|BJ`2B 0L0Y 0L! #e 8N8Y 8!N! # e BbB`e2B H HX2B @ B@e /B@a $!@X `!L #P,`,e $,BXH!B e B02B P  H@!$  ,(@@$U `@!@B ! 1~F@ ! 2B(c (c2B@nL @B eB01B 00Y @@! B ,00 $p B8Yr? A!B B Y !0 B0 ,P,`, XF? XB!2B @02B P  H!$  ,h@ P!( (, *ؘ "DBD,P 0"!0Y!, XB!2B @02B P  H!$  ,@ P!( (, c " X ! H  H,DP (J(Y0"!pHB 3!$S{, H!B@XU `@!@B  ;&0 0  @@X ! 3~F (a0,,` p qd 9$01B0vL 0 BAb bH avL H$B`a$0B @@X !B,`a !`XH@!0 B@,P,H`,8#X !@ #`b P ,,@) P(B(, M(A1B @"@X  @$U `!@B `@>#e@g x &<0   8  UXA1B@h! @~F00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P |FDd, Y># 0#f@B~F@gD Y>#0 0 C 2 |F B |FD|F20@H` Y>#0#g@p 0C @@ #? $0~Fd³|FB³|F ,Ac ~FR\$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 y" D ~F@ ,c@jL @B`bxL 2d $,f@³|F B$B`XX X?#X #`e `X~F @~F 2 X 2!d d)0d! AX?# 0! AX?#  `@ P1 (t$BxL @B`X  0 ` A~F 2pd q, H X?#$ $, e B Y Y?#   ,xD!0@$B 0$0 ` #  Z! ,@ Y?# ,V?  ,`XX pD!pY xA! , #&; Z! , XU `X!@B  ! 2~F`(!(c(@c(b0HHa @00B` Q! #@cD0B@01B0B!`(@!n)@ ^)@#b 00B!`(@n)@^)@#@X (D!0XD 0 A(#DyAJ" yB R @ PB!@PX @@! `X (! (  ` M%$@ , ? 0p1  XD08 88 @$ (a  A @$A X$A @(A P4((JH h1 4t (00 @  0B D@0B @,`, p, #!hB@ J!B@ D!X  !0XD 0 Xԁ cXyHЁ!J#@ yX$ P,@ P!@PXl,@B %,"Lp &Pb!L "O@bX< #&PBQJR y#T, pl,  2d pp&b ,!@X U0 x01B - 3~F`(!(b(@a(a00B0B @p i 0!0Y 8!8Y @!@Y? i ~FPX`(,0 8B!8Y HB! HY!hB  PD!B`J!BP4! lBx@PP@!B`J!@(,b ( (#PX H`!$ `@! $BPH"!Hn)H" I^)H"D#`PX @!@P R*!pPB P \,r\n)\,p]^) \,X# U0 x01B`M3~F`h!0( @`p(,PX x!xY%`! B Y@!hB@ PP!B`PZ!BPH4!lBH?PPP!B`PZ!@l,`@ @,"` pˈ! #1OID< XБ%JcH y," QD @ P"!@PX l, (`P  T&@r @!\ #,,a $(B P6!<( Z!B@H T!X !XD 0  ԑ#yXБ%JcH y," QD@ P"!@PX l,`B ',"Pp (Pr!P 2O@r\< #(PRUJb y#X. l, 8p t&r .!@X`U x00B(% 3~F(b(@b(a(@a0B@0B Bp iL  (,`aF B F!`( B1 n) B0 ^) B#PX (@!P `P !BP@n)@^)@#@PXD0B1B F`Y !0 0 ,`,@!, B ! b Bp i0  (,`bF0B(F!(# URn)P^) Q(#PX H!$ `Q@! $B@,Pc H""Hn)H" I^) YH"D#(@? (U@ x01B b 5?#p( ip 0(,@(, `q` 0(,P ( ,"` pX б  AO@,< H Ё!J#@ yX$ (,@ %,"Lp &Pb!L "O@bX< #&PBQJR y+T, `[~F8,,`! 0(,PX (!XD @ 8" #T(Dy#P%J$I y#D$ @P B` $!`L(P&APn)P&@Q^) P&L#X? U x0@B  3~F$@0B l,X  !@XD 0  XԁcXyHЁ!J#@ yX$ l,` &PL P&` !@X0l, @  0H &L  l,`B ',"`PpX(б P 2O,< (QUJ# yXD ,B(, P 7, ?#B(, ($!B(,q8 0! (, H$sL, (@! #? @!0 p KU x00B092~F8!B ((c(@c(b(@b(a0B@1B B`X l,`D G,"`pH1 4O1 < HJ#!y @l, H @P$&@3 h,X @!0 ( DDM8@! Pl,A( H,"`@$p A $ COAP< С)Jc0P y  B(, P 7 ?#B(, %!B(,`t8! @(, Hs ! 8@@! !0 PX @ !#XD @  8"$ #TB@DDy# PBJ$" y+D B80!(H a!0 HFx% !@ PX @!PXD 0   ԁ #yH Ё!J#@ y%B i7 `!0 @PX D!@XD 0 HQ#QHy@QJ( yH  $i7 (,  C,"`p@HЁ O < (HAJP y@ @X !  E?#00B F0 B`PX H!@'XD @$ 8 # TRH$Ty#PRJ* y+ B  YP!B`XY `F!`YhB!@,BXXH! HP< ?#B(,H0(, F s( ! XB! !0 PX (!XD ` 8# T(FyP%J&I yD$ K~Fp $P! 0(,&@1B (X !PT PT,@,``*!@,BXXH! HP$ !  `PX F!0XD @ 8 #ATBA@y#)PBJP y+A #~FX% H!$ PX "!0KXD `H& 8cL &TCBy&PCQJR yT, ` XBxXP% p(,PX 0!gXD 0d8p 8y8uJ yx> @1B Hi!>! \B@XH!(C Tn)T^))TX#PX(,Th A," pk " (O"< )CJ@P y B 0B1B FiB!*BF! ( #n) ^)!#X? XH! HP|$ $ 0BD A!0 (`C !0 X8! !@ @,b ( (XP$B( !, XH!t ! B 2BD !0 `a p i !@ a (  q7| @!  @! B,  !hB> N!B@@!p PC !  `XX G!0 F @@2BP@2B( 01B ( i8 H!$ b "$iC! A2BP$00B &PMiaT!H`,,X? X@!,B? XB!@J(B@ (, !0  F! Hd@$ !0 0 ,d  XP $ B !, XB!@$PB@0UP `!@B 3~FP x@= #P   #P x= #`a `Xl, D C,"`pHDБ cO$< @D1 J yH  l,@P $@H L&@Ph,`X ! ( @` M8 ! l, B #,"`HpP$С H cO(< $1MJB yPP @PXHx! H?#$BS%Cc$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 <"(, @$! B(,t8! ! @aD0(,  s  !D @aD$ `!0L 8&% `!@P `PX H6!'XD @$ 8" #TJDy# PJ$!y+D pQ i `!0 PX "!0KXD @H& 8L #&Tdy#I&P!J$@ y+$6 pl i @$ @!@X`@!@B XQ2~F@`!B((c0,,`@@1B @` ! #c Bl,`X !@XD 0 HQ#QHy@QJ( yH  l,` &PL P& !@X0l, @  0!&  l,`B ',"`PpH(Б P 2O$< (QUJ# yHD $B(, P 7t ?#B(, ($!B(,q8 ! (, @s7 0(, p s (,@ %,"Lp I&P L "O@$< #&PBQJR y%IT @`8 ! @` @!( #" (,`P ,"Dp "PB!D D2O@BP< #"P"IJd2 y+L( @ PBbP* !@ 8X% H!$ @`@$ t! @` !@ # !D D,@b $@Xx"!HB #!hB v^? X!B@@R!@0B P@1B ( (X ( !P `a0B HHP `!D D,"@hHD$4P! `!0L 0L,a (X x6!xY &Y !)! ,P@4!lBXP@!B`H C !PT PT,a ,X `!p\ p\,a 0X x6!xY *!X ,@ d@Y !1!0 0,P@4!lB8XP@!B`Hn? `!@ @,$ p q (`!P P,`a `X x6!xY  Y  Y !@Y !`Y!hB ? P@!B`H.? !, X@!B1B @P@YxP!BY$lB^XX!Bd P2B ( (P ! ,$,B = X!B`H ,8@$lBIXX!Bb  X !@ c 1B @P@Y @Q! 8PX! H! ,`c `X x6!xYR!B b Y !@Y !`Y6! , @! @!@X> !@ a ( (X ( p  q( @! , a HR HY HR~F,@ R! Y !@Y !`YF? @$(\!@BPd ! 2~FP x= #P  #P x= #?`g a! # bB 0BD0@0B0B@@ `B @@`0DH! `!0 b B c!0@a @ 0BD h8B! @`` A! # ! l,@X D!XD 0 @ H@#Jy@@J!yH  l,@P $@H L&@Ph,`X ! ( @` M8! l, B #,"`HpP$С H cO(< $1MJB yPP @PXHx! H?#$B(, @$! B(,t8! (, B sd  (,` ,"`Dpˠ"A!D C2OAP< "!IJc2 yL( 0B 6Pi$ H !$ PX !XD 0B! B1C2yB1 J# yD$ HH@`a &HL@@`$D `!@P `PX 6!XD @  8 # T$ y#PEJ y+ B `Qi(! 0B$$ 0(, &LsP (,@TH E," p+! (!OAl< È!J@#A yD6 (, ),"pHp$R!H ($DOR U< $J@d2 !y L* PT @*!01BT1B@JH$ !D # !!  @c $ I @``H&l$ @(, ((PsT$ @$ A! a B i !l `a 0 @a *0T @ `  !D 8D0! $ A0B$ !0L H&x0! !@P @b PpPPi  Ѐ!h `h !!  , `!@B !1~F !(d0,,`1B 2B @Y PA,")p cyFJC" yH& Lp  @` !0 0 , (!(Y$T~, F!B2B @0@2B P H!$ $,H$,BX`XF!B@Xv $ܞ|, F!1B @Y @! `c1B @@X @p! a @@` !PD # `! H `b &`La< !@P a*`A1B ,X @"D, ?# 0`p1  XD08 88 @$ (a  A @$A X$A @(A P4 (@d@@bP41B 6`X !p p,(8!H(hXF!0B @01B `X !0 c 1B P@PXP h0("! @!H # @!0L L(@C !@P )?#P0BP*$ !`X `X," ,`Y~FdX.1B 0X 0!` 01!a2B`2A2B@Ph,`e 6!`X @!pBC p: X J! Y(1$`lB0Y 88!8Y$,BXXF!B`a 2B H@HX$, HX ! H  H,`d &`X !@P @P, AHH0!LB &`$i P!( B (PPq7  " H  XD$% 1xrp`p C !PT +?#`0BT,$ !p\ p\, .p \Bb\0$ Ƞ!d  , U `@!@B XI2~F@`!(a00B `Xl,`@ @,"` pˈ! #1OID< PБ%JCH y(" l, (`P  T&@h,`X H!$( `RM8! 0l,B ),"`TpP*С T BO(< *aYJ# yPD @PXHx! ?#HB(,P P!@PX H5?#pH( i (, @(s ! B,P@4!lBxXP@!B`H !@ # P h!hY!hB ? P@!B`H !@ # X ! GXD 0D$QH $12y$1MJB yP* `1BT,p1B .pQ\ @c\0(B Cc(21B 8p @cp:1B <xi !| # !B,c @P!@Y h6!hY p@!pY xP!xY $,B X!B` @! 8PX! !0 HxH! @!  , b H'~F,@ x!xY !Y ! YJ? @$XU `!@B P=d)db`@2!(d (c(c 0B21B@B1BB *H a2H @8 !  0p4 !d d,ϰ d@8@0('By@J@c0!y@  0B@H!((Tr$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 20"+# DUDn)DE^)DE^)DE^) DQ(#  $`@ a @8 !d  Hdxp4 ! ,@ D8@0(CPyHDЁ"J#@ yP$  1B`! ( ddn)de^)de^)de^) 9d #@@?#1BH!`(@n)@^)@^)@^) @# !   ,` P !( #`a !`X`D!B2B, 3!( V!BPU `!@B 050~F8!(g(@g(f(@f(e2B@H@4eD0rH$eH2B@2B ,@g D@Y @B!@YHD!HPN!0B P!|( N!0"HaH2B@0BB 2BD00B0B H O_$2B 2B3B" 1BD$03B&@1BL(P3B*`A2BT,pa2B.0B`, (@ 2dBd,@(@ 4hBh,, ,@, 3b N!00B F@0B H P A!B,, N Ntf A!B,, B N! 2B Dp q  !0 cH ! H@8! $01B @!  X! H$1B$ X!, c "Ј,i, 0! H $. 0a2BH&@!2B(PKA8  %p1BX. !` 8`2! !h# ؠ!l l,c 8l #f :X !x x:2B >X @1!  >H0UP `!@B  (`00B `X @!  ,` @Y H!$ $, KH`!B$`B@0@ B H (`00B `X @!  ,A@KB H%$ @!  ,A @ B !H#@` P@PX @! #`` `X H!$ $, J@0` B H (`00B `X @!  ,A@KB H%$ @!  ,A @ B !H#@` P@PX @!  ,B@0`)B 0B H HX ! , @\@ K H (`00B `X @!  ,B@0 B 0B @Y H!$ $,`` `X !0  @0%B p q @!  ,  @!H #@$@B  (`00B `X@$0@ B 0B @Y@&bB @H (`00B `X @!  ,` @YH&`!B$`B@0@ B H (`00B `X @! #` @@@X H!$# !  (`00B `X @! #` @YH%`B$00B `X @!  ,C @ \@` H (`00B `X@%@ B 0B @YP%`B(00B `X @!  ,C @ \@` HPA2~F X!,B` @ Q& 0    R&0 0  0@ B ,  V!01B$p @CHy! @ $ @! @ $( si8! P!( P?#0B(0B " X 0"!D #@a $@X p$! H `aH&@0B (X (!@P P(K @!PT ) ,X #a .X .!p\ 8.x! @!` `, 0cR`(C @!d  2!H h4!hY$( @!!@ #`d P H@!$ $,@H X`__, @!D D,@@' D D @cD$01B &`X @&!PP PW/T(`1B ,X ,!`X cX.1B 0X @!d d00B 4@X R&l0  6!`X  $@l40B 8X  $@8L 8pBp,bp:1B <X !| ,p^!,g $Ty( V!$ 8.@! @A! ,@@' @  `c1B @@Xh! HP? 8 .p% @A! ,@@' @  `c0B @@Xh! HXXV!B2B P4$  Q&0 0 @2B @@XXX!PU `!@B 3~F !(a00B `X ! HPF!0B @00B @@XU `@!@B 3~F !(a00B `X ! HPF!U `@!@B 3~F !(b01B `X !0 a 0B @Y@00B0B X`XX${, F!U `!@B 12~F !(c0@Hb 1B (@(Y !0 0 ,*L @ B ,*L @B, +L H$B$,-L @ B ,@X A!@0#(($` B@p, HT! HYP%$B`XY$$Lw( F!1B @01B @@XU `!@B  3~F@ !(b(@a01B `X a! ,0@!HPH!0B B0B @@@XU `!@B 3~F !(b01B `X  !0  a 1B @Y @! HXPF!0B @01B `X ! HHPF!0B @00B`0 , b H! HX ! Y (!(Y$v( F!0B @00B @@XU `!@B 3~F !(a00B `X ! HPF!0B @00B @@XU `@!@B 3~F !(b01B `X @! $'$1B @Y a@! `a0B @@XH$ B$0L 0 0 ,`  Y A!  1@!Y$u( F!Hֺ F!0B @H b ! `>#e@f x &<0   8  UXA1B@h!00B  $pH1 @d `t "dB,@ @  B @ @Q,"B @`P!B``P0|Fd, Y>#Ȁ0# gB0@~F ` 2 Y>#0 `@ |F 2|F@~F@0@H` X?#d0# `Hp! 0C HH #? ,`a~F 2 X 2!d ad~F H HX H!$ c$B0L 0 c @~F @` s ` T&d0  2 R02! HX?#$ $, DH B`_ B±~F @Y @X?#  @H`bd~FH"~F$BL H$B$,b$L @ B ,b @0~F`U&Ԣ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 e"<0 , e 2 X p!pYx2!H8P Z! !X?#@ #c @Y !@! ``~F H HXHHP| X X?#, ,(C @X?#D D," H`(wd @X?#0L 0L,`˜ &LqT @X?#@PB@P,a *X p(!pY x1*! , #! Z!l AX?# ,  Bp q$ AX?#B,`a `X p@!pY x!! , #! Z! !X?#  ,@ AX?# ,`e `Xp@! B #! Z!B~F BB~F @@@XXU `X!@B `?#e@d x &<0   8  UX=0B@!dBA 8@1 `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0~F ,B ȀX?#@d0#b@0@~Fb  `X?#d0 `@d ~F ~FHA~F20@H` @X?# 0#@bPp% 0C PP$ #? T&d0  2! X X?# #@Y HX?#$ $,@,H$\, X?#@ #`c @@XXU `X!@B `?#e@d x &<0   8  UX=0B@!dBA 8@1 `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0~F ,B ȀX?#@d0#b@0@~Fb  `X?#d0 `@d ~F ~FHA~F20@H` @X?# 0#@bPp% 0C PP$ #? T&d0  2! X X?# #@Y HX?#$ $,@,H$$, X?#@ #`c @@XXU `X!@B `?#e@d x &<0   8  UX=0B@!dBA 8@1 `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0~F ,B ȀX?#@d0#b@0@~Fb  `X?#d0 `@d ~F ~FHA~F20@H` @X?# 0#@bPp% 0C PP$ #? @ T&d0  2! X X?# #@Y HX?#$ $,@,H$, X?#@ #`c @@XXU `X!@B `?#e@d x &<0   8  UX=0B@!dBA 8@1 `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0~F ,B ȀX?#@d0#b@0@~Fb  `X?#d0 `@d ~F ~FHA~F20@H` @X?# 0#@bPp% 0C PP$ #? ` T&d0  2! X X?# #@Y HX?#$ $,@,H$, X?#@ #`c @@XXU `X!@B `?#e@d x &<0   8  UX=0B@!dBA 8@1 `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0~F ,B ȀX?#@d0#b@0@~Fb  `X?#d0 `@d ~F ~FHA~F20@H` @X?# 0#@bPp% 0C PP$ #? Ȁ T&d0  2! X X?# #@Y HX?#$ $,@,H$|, X?#@ #`c @@XXU `X!@B 2~F!0L 0 a 0B H HX  $H@H02B$2B @@X! HX  !@ # ʵ D!0@2B @2B @@XU `!@B 2~F !(d0@2B `X@$ B L @ , @ Y  !0  0!X$$k( F!H F!2B @02B @@XU `!@B `>#e@` x &<0   8  UXA2B@h!00B  @$pH1 @  `t @! Bd,@ @  Be @ @Q,"B @`P!B``P0|F ,B `Y>#@d0#e@0@~Ff  @Y>#d0 `@d |F |FH|F20@H` @Y># 0#@fPp% 0C PP$ #? ȠY>#d # .P 2dBd,`gdL @ b ,c(@0@~F p qT X?#d 82! @X?#  ,@(HH< PX?#( (,@AQ Pp( q  $0@|F\ X?#d d,(T @ B , C 2~F H HX PX?#( I( $B|F @ @X?# 0! ȠY>#d H28! H@ U&$0  H! HX PY>#H( #`c !`X Y># ,,$9( Z!±~F @0~F P  HX?#$  ,(@b? X?#@ #`c `X @!0 b ~F P@PXP~F(~F @"@X"  ,`g &`X p$!pYx&!HqPZ!±~F @0~F @@XXU `X!@B a$ 0B x0 <0 xb p@!B`PF!BhI ($`  1$p@1 @ `t0B ,  @!#` P1 (t%@0B 0,`D F! #` h1 4t00B 0 ,` bH 1 Bt=@0B  ,@D !D! #` @1  Ht0B 0, 8$B @@bH 0p"1 PNt  0B@@,@$" D!p #` H1 Tt00B`0,`0bH ` 1 Zt@0B , D  !B! #@ 1$B1  `t00B` ,@4$B @@bH 0#1 ft 0B @, " B!X #` `1 @lt00B`0,`0 bH 1 prt@0B  ,@D !D!P #@ 1$C1  xt00B`, 4 <$B @@bH #1 ~t  0B@@,@$" A!0B@DD0`H  1 t0B0 ,`@bH P$1 0t  0B@@,@$" !D! #@ 1$pD1 @ `t0B0, @! # P 1 (t%@0B , D  B! #@ h1 4t100B` ,@4DbH 1 @t=@0B ,D !@! #@ ,`a!PB`,p, c. b!p B8 S,"Hp FP" DO@< #!FP"JD!y+@ pB @N!@XU `!@B a$ 0B x0 <0 xb p@!B`PF!BhI ($`  1$p@1 @ `t0B ,  @!#` P1 (t%@0B 0,`D F! #` h1 4t00B 0 ,` bH 1 Bt=@0B  ,@D !D! #` @1  Ht0B 0, 8$BV$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "|8Fr#ڦ5/p 3#| l>8c 1n"±&aF3q)f`ӇŠ%p`%i=nQ.#(wnLY-N Ƀ\cشurkɨI5ņl!(t^L0` xm# #8 5|_I v ^ު\]v ?#?@aĥyWlP1B'<+ dKYr rmvڇh:c}UT3"43 a>i `uMP ﮷*S9 lI D0h'c]z=y{dW0h0k9<!Gg]4ax_8aT]pA(B$FE .x!C& 85m~G~EA Ql=`qfPu%=|d=(0-xd00OXmySVi aSYT$3}9l,G g(@Гy/'$\AȻvJW3 Yޡ`%>a9M P9' Xύm 1iΫƘA$MpY|;Lf)eH呦6cم0T^z`%no3\n4a~&\M#XGzhO\e1Y4œ HepC`gP G_au؟PǯJi@`hSGѷgW5#V2:9iOԖ78ݘ,Iա@CdR?!J@? (L7Yp({8%wP?#tc-1i?4s`m )![ ɶS!  yM4r"dp+f@0POHQtbUʶ#+PYȧCysqa ]PP 8= IdY "urJCl#p+r "N?!)u%/d/)T T?1lOKX]U!ߓ#7-\ |C:M ÈE*0#}ya(.''$Vr\Lg-09T 68cQp䭤c 1#6\U @L@-VZ6zSz@rYPa([]Lݰp l(zC$GB]!3`"۫ehTB:r@F (9qcI$dt?o@LOY@z(s\C 9[/EWQn@X,:dѣv4p0@%8 M@76/Z4p?ݒbcJ aN2`J/q& 1zT8\Z4/p(j\P*xnX!@. ?( @I`;@9`nQ`@cݬÝn[c G Bg!:, =XK0j,x_pK1?5XC i9wC<4 ¨m^b=)q2p&bƨ@pm'9 T~?5p}1m 8n `Z`Yē1`s)i!HG;!E\ zH@`}Q(c" SFveIaxouчp'C,qŭTDN-YX " 1%&E=ŁG@p{x@oj]sḷ1r>w'I Q`xSZTg LNމ01yA:푪dX2g5`>@cxp$1%P\frjb/^3`  4N@֡994);p-,\`ԁ4y@FX 1*a pIY%PRf-%pfR"AD@p˙h=ܥo&gX89HX"`ЊPhd504NZ_t3"*r2"U^@HpQb0$}]'erpLenfPDw%*M8Ei8?ɹC`ЮRNE&!6&n-n11tSs+B?qPlw3D4Px@e o%1$xo͌@]XEp j)_,ٓcFK# Q6%ofsܻ󀌃=ސ ]}E2`tNJV([oJ`X$d'4HW@qa=!@@ ]؆#}5:۝@$p 9 abz300e>8+Qb%@xܣ:D'('@arO~JpjqM`0f#0\irmYg0XxM 50"1`r ݐ1,/p.>(bp5f%y3_YqT@ e.xXѦR;|/1o!;=Z Pd'u C>a<(WG!#  %Dp5}R!C@8'@Eց92'IPѢcx$U1qR`e~=PBXaR3cX;a=LGNĶ(#)L_@`'`D\QC 1?@ " b@\[s#xc7=y'8 u[{[k'Ӄ4W -Ij.F뱪'CDf9wXzhC2#Kp' x|50$7a Snː&#hY^t%~X2@$DYHE[S]%Ƹ2]b!d <ٸ3gua%P'{g\ )Ǣ !ma; y$w42<Ai1)!OU\ c`GUޟ:#ɈWmu \t$Op  O/ @,yqF@-`R2'sĤAC)X(Bp ih1Xc `K%<#`w;`Ap{`̬_X2GLɰf`mtYtL&Ѡ`MOs bWD]9*kԿ. *_xM!|`sƳX7wl11/1+σ躩/L"#d,Si^GR`Z40pO`;CH{`yS@( t `$L#DQ 3/0qh%P0 +#g}eq:!2 P5҇X}7 K*T/ѢC1ZdCl^qЙJQH`^IC}2"`㙰f!֮NтYw-x/Y2N5u NQ104Q@Q}4V5JzYBWJc@ 4X*I Hqg(g-R1ve5PA{_@uhϘ:AGXjQ)]HYa0U'1X11IKA5㛨# l!߼ùJ!sT-%M >b/TB@$BvbF5)r#FV([!77pu@QYp3AWO7t٠Z}[f J=P(\A-2dPT) \1һ_{`=}۩azVL{'WkTrE(wR1Y+6QX`< 0‘. PDQ4bwCsFJ10#64;' Vp[V0AopiG A3k3tͨ\0Sz`Y Spϊyu9^CD\/48/+R7I/x`]6pq[`` 0~03sJz)AgV%'\vacZ#5?M8K XHJOHd[R\ PH 0啕@`V?L]6MnLq# =m@pŷ!8_1: D GPC7x(08zQ)d-gD;(mq#Yvu`\0H`.<pQl`N`-cZ!T.q@PsX0P_f=n0 qzaNda] c. ׃7x8PS;0IDh#4ۣf  pn=#f?7@75thv!H24y K.c#=BU_#+xPs$0:zCc18]a(VEyZۜ4l!&/!06"wZF%ZCIBnXۀ?qBPX v+s5 Ijܶ@)0p @ opV@`@X_ Kd%]G*#`<gWZX]'`rFt@OpB@ awB@7};1d:LAd?EW8>$}ly%al)cn@tXSIxIc`H5V d#L|G"0/e16 <䳾 /3@YERV .:H8GC=cIy Q6-gf5@ 10p/3QMVpZn4@Fp^躥SlfUSeL tx/1S2E= =u#m`1Y WTC5J*C\9aLqzI N&!q)giz@]XR 6(k P,@2.\%YRW"1!p My7Y=#`}dK&`j&\2w hC7a{SyFs  l!j<@f%iUM.SPkG@d40ʍv_ U\h~@L8q63{])`X8%Sn.'8` i#90 ;hF&(~R *60Rc,p0d_@\ױ;ؗ#Nu..'AjpqE5 n)Ce+H", ''I$b @&rq93a2NsP'EQ%mD4PΟr(d+UcIM0Q5f @ 9\7`1^NİQi/raX hNK1e 5\`YX8\H A[cy)^ y}dNfp#Б v?A9iؑAsN&z.~)ym(1 ,,@|w)`_|8[6aF3Ka( Xr"} p噱Q pbnJ(p-=ym#VNMUHbr ,\.RO@F%=fYTY(GB"i`%MAp XmFb#H'5I!!2y`eY!v&gn~`XڧpZ]q.g(wPف$0 wO 1]1ӥ\h"o`&/м@Кc. q~5!152e"##@~ PX$; Pt\~Lɀ#) j{ذ2Pe:U6 Ѩ]˜l2B-//P:W@7@?ib49we|ـ?!XG3 -sE{ :J#R7XD6 Ypv"@(I kq1#!u-"XdiA}>t!o<;9h`qZL)!9GQD^=)+УU@ b'Z=^7QHX, $ 9;h*jR0ː,$7goʘ40dC2xpG?3@7X@=Xi0^ؔOueMie#@]V`٘h$f GǰAd B4tPAA1pW DټȢ!m$֜oƘ@rEr_Ap穩v&GO$j;]b+ N\ HsT X 0W[\by)gU mL.Ss7&4  #v5C+ .!XA |C܋s6rƥ1qC& 1#ŀ`Z0C42 iq?ZO'`wۼJi!@@ESU|^TaZzc͢b3` &ϗtn]t 8P?!DZ\K 0#4@Q "9q#a`ޘ#b⠠p/eQ 'Jd )EJ hwb<{{W$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "M @@bH 0p"1 PNt  0B@@,@$" D!p #` H1 Tt00B`0,`0bH ` 1 Zt@0B , D  !B! #@ 1$B1  `t00B` ,@4$B @@bH 0#1 ft 0B @, " B!X #` `1 @lt00B`0,`0 bH 1 prt@0B  ,@D !D!P #@ 1$C1  xt00B`, 4 <$B @@bH #1 ~t  0B@@,@$" A!0B@DD0`H  1 t0B0 ,`@bH P$1 0t  0B@@,@$" !D! #@ 1$pD1 @ `t0B0, @! # P 1 (t%@0B , D  B! #@ h1 4t100B` ,@4DbH 1 @t=@0B ,D !@! #@ ,`a!PB`,p, c6 b!p B8 S,"Hp FP" DO@< #!FP"JD!y+@ pB @N!@XU `!@B PI 0B x0 <0 xb`@@!pB`$`  a!0#  A!0#` B,` xa!BXX !p s  @F!@X" A&0 B L`XBhYp!0B(? !p s  @F!@X  ! bH 81 `t1B  ,  B!#` P1 (t$1B H0 ,` ! #@ hP1 4tP01B`X(,@P aH 1 Bt<01B` H,@2 $!H # @1  HtP1B@P,R$$pPBX.aH 0p1 PNt1B `, !hBCh0aH H1 Ttؠ1Bl,` @!t0 t6aH `1 Zt1B`|, >!| #  h1$"1  `th1Bp,jx$B`cH 01 ft1B@, ! BA@bH `1 @lt1B , H`!$0 $@`H [1 prtX1B@P,,@X P !( #  0$#1 E xt01B`D, 2$PDBH*@aH 1 ~t`1B@P,b &p\BB\(aH  1 t1Bd, Р&h0 h0aH P1 0t 1Bl,` 6!l #  0$p$1 @z `t1B`x, <!|# Pt1 (tp%1Bh,r hZ! # h|1 4tx11B,{^`H E1 @t@< 1B@ ,!B @ ! #,Up!B, , c V!0 B K,"(p I@P DTO@%< #@P"Jd0!y+I  0$B @F!@XPU `@!@B x]" 0B x0 <0 xbh@!B@HF!pB``I$` !0#  !0#`$ !0#`  a!0#  A!0#`F B@ ,`a a!PBX (!p s  @J!@X. a&@0 @ Lb B@YA!@0B8J? (!p s  @J!@X  0!bH 81 `t 1B@, $   B!# P 1 (t %1B@," @! #` h1 4t01B H0 ,``H Z1 BtX<1B ,,`Y X !, #@ @1  Ht01B` H,@2X$PHBP*`aH 0p1 PNtp1B`X,r `!`BB`,aH H1 TtȠ1B@d, `!l0 l2aH `1 Zt1Bt, :!t #0 0$21 } `t1B |,$0|Bf@cH 01 ftP1B@,V !`BFh`H `C1 @lt@ 1B@ ,!B $!# #1 prt 1B@," !@! #0 H0$31 % xtH01B`$,`0HP$$ B("`H [1 ~tX01B`,,`1Y ! HB`AXH@aH  1 tP1B@P,R $P# P1 0t 1B@`, 0!` #0 0$p41 @f `t1B`d, 0$dBp<aH P1 (t$1B t, !|BC|: cH h1 4t101B` ,@6 $# 1 @t= 1B@`,@$ !D! #0 @0$051 "  Lt@H1B  ,B $@ BHbH p1 PXtU1B H,  @!0 B AH `H ȚU1 dtP`1B (,@Q @!0L0 L aH Е1 ptlP1B H,@R $!H #0 0$51 S |tx`1B@P,b($PB\4aH 01 t1B``, 0!Pa # (`1 @tȐ1Bd, 2cH @1 pt1B,Ӊ :!t #0 0$61 ` t01B`|,3 >!# p1 tP1B@,V h! #  1 t 1B@`,@$D`H PG1 0t@01B` ,1B @ ! # ,@!@BP,`, cz `!P B( O,"8p @P2" $tO@2 < #@PJD$ !y+F PB @J!@XxU `!@B m( 0Bx0 F <0 xb`@!B`F!BxI$B3B @H@aD0 Ha H# 0X#@ Dp q$ &0 0,  (!(P & #$LB % r@ D!Y!p0BX? H!p s  @R!@Xj a&00 H @LhPBY!p0BX? H!p s  @R!@XF P!bH 81 `t3B ,  @!# P 1 (t %03B`@,`4" F! #` h1 4t03B H0 ,``H Z1 BtX<3B ,,`Y X !, #@ @1  Ht03B` H,@2X$PHBP*`aH 0p1 PNtp3B`X,r !`BB`,aH H1 TtȠ3B@X|WD$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "^d, `!l0 l2aH `1 Zt3Bt, :!t #@P 0$R1 } `t@3B|,C$`|BlpcH 01 ft3Bp, ȡ!BFncH `1 @lt3B@, $!#@ 1 prt@3B  ,@D !D! #@P 1$S1  xt3B H0,  $$B aH 1 ~t3B`XD,` !0LB`AXL aH  1 t@3B H,@B @!PT0 T$`aH P1 0t 3B`X, ,!X #@P 0$pT1 @j `t3B h, D$dBl8aH P1 (t$Ё3Bx, a!@BC:aH h1 4t0P3B|,S $}# 1 @t=3B p, A!Bn B @E1  Lt@H3B ,B  !# p%1 PXt U 3B@@,@$" D! #` Ȫ1 dta03B`0,`0`H U1 ptPl3B (,@Q P !( # !Y $`3BX !Y ! Y$,O( f! B@ W,"Xp BP2" O@2"< #BPBJD$"!y+F BPP! `Kd`x! H8$1B$H c," 2B$01BH& 2 B@ !P # !X# !`# | !h# g2!1Bd6qH#bp: H3bx>@sHbj@2B ! # !#  Э!#| !@#e@!b1B B L D@Yx@! &0 0 ,c!`C2Bb!C1B@e$L"  B(Pf!p B(@81$8N! Zp XN! hNy%@ !!0  B 0`  M?#@B2BH  !0 0   @2BPKX0Z!`3JBXPf!`Bڦ f!0B2B F# Zp p @KdHDx%h@ @P!@X @N!@X @$ @P!@XU  @E$0@ ! PI 0B x0 <0 xb`@@!pB`$` !0# bB H`bH aBH`a  K@d1`P!BhYpa!0B(? !p s  @F!@X a&0 B L`XBhYpA!0B(? !p s  @F!@X  ! bH 81 `t1B  ,  B!#` P1 (t$1B H0 ,` ! #@ hP1 4tP01B`X(,@P aH 1 Bt<01B` H,@2 $!H # @1  HtP1B@P,RX$pPBX.aH 0p1 PNt1B `, `!hBCh0aH H1 Ttؠ1Bl,` `!t0 t6aH `1 Zt1B`|, >!| #  h1$"1  `th1Bp,jx$B`cH 01 ft1B@, ! BA@bH `1 @lt1B , H$H#` [1 prtX1B@P,,@X P !( #  0$#1 E xt01B`D, 2$$PDBH*@aH 1 ~t`1B@P,b !p\BB\(aH  1 t1Bd, $`#` P1 0t 1Bl,` 6!l #  0$p$1 @z `t1B`x,0$xB|\bH Pl1 (th%1Bx,j !BEhZcH h1 4t11B@, $!#` 1 @t<1B H0 ,`  ! #  1$0%1   LtI1B`X,`P $0,B(&aH p1 PXtT 1B@D, " @!PTB BT"`aH Ȓ1 dt`@1B`X,B @!p\0 \(aH 1 ptl1B@`, 0!` #  0$%1 s |tx1Bp, 8!l# 0f1 t`1B,a <!x # (`1 @t1Bp|,>bH @n1 pth1B,k h!Z! #,p!B, , c V!0 B K,"(p IDP TO@%< #DPJd0!y+I  0$B @F!@XPU `!@B PI 0B x0 <0 xb`@@!pB`$`  A!0# B B,cxA!BX !p s  @F!@X>  ! bH 81 `t0B ,  @!#` P1 (t$0B H0 ,` ! #@ hP1 4tP00B`X(,@P aH 1 Bt<00B` H,@2 $!H # @1  HtP0B@P,R$pPBX.aH 0p1 PNt0B `, !hBCh0aH H1 Ttؠ0Bl,` @!t0 t6aH `1 Zt0B`|, >!| #  h1$"1  `th0Bp,j x Z!# 01 ft0B , `! # `C1 @lt@ 0B@ ,!BbH  1 prt0B H,  H !$ #,upa!B, , cN V!0 B K,"(p I@P $TO@%< #@PJd0!y+I  0$B @F!@XPU `!@B HA 0B x0 <0 xb@0@!PB @@! 0# HL$p `vf$D( T! ,X@8L"B XV`XY `N!`YhA! , !p s  @F!@X6 L `E0 XV`XY `@!`Y hH! ,,a? !p s  @F!@X  @F!@XHU `@!@B () 0B x0 <0 x@b@!0B  @ ! vf$X($`|BLpB0B 8N8Y q! D8NB0B B Y !B! #`` 0` B` @0B H HX P!( ( A0B $@X$@HBL(PA0B *X !`X BX*pA0B .X .!\ #` 0a`B ``2A0B 4@X $h#` :Xl$tBx>PB0B (J(Y 0!`B`,D(JB0B @Y !@! #` 8NpbB `B0@0B `X@0B @ B ` -B d "! X @!H #PP,`,a $,BXH!B ` B0@0B P H !$  ,@,,@S P(q, e&D0  "! X!PDB(Y 0$!0Y? !!@ # ` BP   !  ,@ H!$B$,@`$A0B " X ! H H"@A0B (X$`PBT,pA0B .X !` B`.A0B 2 X 2!d #@` 4ahB``h6A0B 8X @!t t8A0B >X($`|BLpB0B 8N8Y Q! D8NB0B B Y !B! #`` 0` B` @0B H HX@0B P (B `(" -B`d &!`X @!P #P,`,a $,BxPXH!B ` B0@0B P  H !$  ,(@@$U `@!@B 5 2XF@ !(f(@e2B@B2BB2B@ H`cHb2B@ $0@ @ b BHb2B@ $0@ @ Db BHa2B@ $0@ @ a BHa2B@ $0@ @ Da BH`2B@  $0@ @ ` BH`2B@  $0@ @ D` BHg2B@ $0@ @ g B Hf2B@ !@ # @ ! #e @!0 3B,,C @p q\  e&0  B! Y!PB(Y 0!0Y? !@ # f BP< `!0 0 , - H$B$, 0!0Y$,B((XH!B g B03B P  H!$  ,@ P!(  ,@ !DBD,@fD$0A3B &`X !@P P&`A3B ,X$XB\0A3B 2 X а!h Ch2A3B 6`X !pBp,`p6A3B :atBft<A3B >X ! >`B3B 0L0Y8$BPB3B HR HY P! EHRB3B XV`XY `!B,`XVB3B BbB`f@3B H HX P!( (A3B " X$0DBH&@A3B (X !PT BT(`A3B ,X !p\Bp\,\,A3B 0a`B f`2A3B 4@X @!l l4A3B :X$tBx>B3B @Y (Q!P D@`B3B 0L0Y 8A!pBp,0LB3B @PbB fRB3B PT@PY X!! T0@3B `X$ B@3B H HX P0!( AH(A3B " X ! HB H, H"0A3B &0aLBfL(PA3B *X !`X X*A3B 0X$`Bd4A3B 6`X !p `Cp6A3B :X !xBx,x:A3B >a|Bf|@PB3B (J(Y 0!$0#f @P@YH$BTB3B XV`XY `!B,`EXV0@3B `X  ! #f @` B f B@3B H HX P$P$#@f $@X$@HBL(PA3B *X !`XB`X,BX*pA3B .X .!\ #f 0a`B f`2A3B 4@X $h#f :X$tBx>B3B @Y (A!PBP,D@`B3B 0L0Y 0!L! #f 8NpbBfPB3B HR HY P$P#f `X`Yh$B B3B B Y H!$B$, D$B@3B P@PX P !( # f "aDB@fD$0A3B &`X $L#f ,Xl$XB\0A3B 2 X !hBh, Ch2A3B 6`X 6!l #f 8apBfp:A3B <X @$x#f (J(Y0$pBNB3B @P@Y,, N HR"BPB3B PT@PYX!BBT0@3B 0` Bf B3B `X`YX@3B H $B f$B0B,, " RD( It! e& H0 $! e&0L0  &! LB!P3B *X !`XB`X,P, 8,!8Y $!`0  $  $,B`H!B f B0@3B P< H`!$ $,@- P(B(,H 0!0Y$,BXH!B g B03B P  H!$  ,@ P!(  ,@ f&D0 " 3BD$L "DB` D&  X !P #g *!X !`XB`X,f .!X !` ) !d #b 0!X Ѐ!h )@ !l #@b 4!@X `!p ) !t #a 8!Xp,ap<0B >S>!0B|@P0BaLP0B(P,(Y 8!(0#` @PS@P!0BR0B`bVB0B@P,@PY `!P0# g B SB!01B1B@c$3B H$, HX @!H 0#@` $@"S$!0A1BH&A1BdD(0B D, X @!d0#P,`,p,g H0! HYP!hB`XY`!!HX H!B f B0@3B P, H` &$0  H! HX P!( (,HP,`,P $,B(FPH!B ) BB !0 @$ @3B !3B" 3B $H@`fD&@AL (@P gP*@AL (@PB P, X !\ #g 0!X Ƞ!dBd,@f 4!@X$3Bl81B`l,0 !x #d >X $PB0BJ`B0BaN2B @P@Y Ha!@0#@0 XA!P #a !`0#d @@X H!@$0#`P P`!( #@a !D0#`c &`X !T0#P,`,p,gH!$lB@PYX!|B !!( H!B f B0@3B P, H` &$0  H! HX P!( (,HP,`,P $,B8CPH!B ) BBB !0 f H0$@@f 2B " X ! HB H, 0$!0Y$,BXXH!B f B0@3B P  H!$ [$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 ?|" ,(@@$U `!@B ! 0~F@ !(g(@g03B 00Y A!B,00$pB8Y $,~, H!,, @`N @1B @p q ,,@H  B_D ! HB H,``H&@0B (X @!PT T(p0B .X$\B`20B 4@X P!l @Cl40B 8X 8!p #` :atB`t<0B >X (a!P >p0B 8N8Y `!0 @8! $ %B @N!!# ` H HX Pp!( AH(0B " X "!D #@` $ aHB``H&@0B (X !PT T(p0B .X !` P0! ȼ$ %hB .!l#` 8X !t Ct80B <X <!x #` >a|B`|J`0B 0L0YL0B B Y @!  ( C%D 8!p p, 8N89P H% P$(B! B!E#@` $@X $!H #`` &`X &!L #` (@aPB`P*`0B ,X,0B 0!`B@``4p1Bp\, g 2 X (.!(Y02!d, !@ # f @B@XU `!@B ) 1~F@ !(e(@d02B 00Y A!B,00 $pB8Y $$~, H!B2B B Y A e&0  @!Y(B!`B0Y$,B XH!Be @02B P  H`!$  ,@ P@!`( Ba ("(Y@$pL8NRH:PH!`@pC @!0L 0&! `!@P H(x! !PTBPT,eT,p2B .X.2B 2 X`$dBh62B 8X 8!p #e :X :!t #e <axBex>2B B Y a! B2B P@PX$(B " 2B $@X (q!P @B$`2B 0L0Y 0!L! #e 8NpbBeP2B HR HYR2B @ B`e &@,,£ (PqW, e&PT0  *!X!PTB(Y 0,!0YZ? a!@ # e BP  `!  ,X@H!1B@P(, f"P$B(Y 0!0Y8!HX= H!B e B02B P( H`!$  ,@ P!(B(, e(" 2B $@X$@2B (X`$`PBT,p2B .X .!\ #e 0X 0!` # e 2adB@ed42B 6`X @!p p62B <X$xB|@P2B (J(Y 0Q!` D(Jp2B 8N8Y 8!N! #e @PbB eR2B B Y `!0  B2B @@X P`!( @8! $ %HB !L#e (X p!PT BT(`2B ,X ,!X #e .pa\Be\02B 2 X22B 4!hB`eh6,, 8pqW, e&t0  :!X!PtB(Y 0<!0Y>? a!@ # e BP  `!  ,@H!1B@P(, f"P$B(Y 0!0Y8!HXj3= H!B e B02B P  H`!$  ,(@@$U `!@B 3~F@(a(@a0L 0 B0 ,a @Y ! Y(@!,  ,0a ! ) 1vF@ !(e(@d0Hb @03B` $0@Db @Ha3B@ P!@ #b @!Y a! #`e `X @!  2B B YH$B$02B `X @! `@ 2B @Y H!$B$,$@2B P`(B e(B02B `X2B @ B e -B@) P(B(, b B! Y (@!(Y 0!0Y 8B!8Y $,B XH!B e B02B P< H !$ $,@- P(B(,H 0!0Y$,BXH!B f B03B P  H!$  ,@ P`!(  ,@ f&D0 " 0BD$L "DB` D&  X p!P #a *!X @!`XB`X,a .!X !` ) Ƞ!d #b 0!X (*!(Y 0,!0Y 8.!8Y@!`B HY$,B,PH!B e B02B P, H` &$0  H! HX P`!( (,HP,`,P $,Bx,PH!B ) BB6  !0 0 , a H! HX(!`$B0Y$,B8XH!B e B02B P  H`!$  ,(@@$U `!@B ! 0|F@ !(a(@`00B 00Y A!B,00$pB8Y $~, H!B0B B Y A e&0  @!Y(B!`B0Y$,BXH!Ba @00B P  H`!$  ,8@ P@!(B(, ` "! X (!(Y 0"!0Y$,BXH!Ba @00B P  H`!$  ,x@ P!(  () P P7 ,,@XX %! H `gH&GB"@3BD( @!PTBPT,aT,p0B .X `!` `.0B 4@X؜$hBl80B :X p!x Cx:0B >X >!| # a BbBaJ`0B 0L0Y 8!p L00B `X H!$ $(` SY! @$ P%(B !@H#`a &`X !D `BD&@0B (X (!P #a *PaTBaT,p0B .X !` `.0B 4@X !l l)0P h8h $ %tB 4!x#a >X ! C>P0B (J(Y (!J! #a @bBaLp0B 8N8Y H!$ $N00B `X @!  0 )@8P xh $ % DB !L#a (X !PT BT(`0B ,X ,!X #a .pa\Ba\00B 2 X $d#@a 4@X !p !p)P 8qh % %|B  4!#a (J(Y !B,D(J`0B 0L0Y 0!L! # a H`$B@a$p0B 8N8YN0B @ B a "0@1B`0 ,@a $00B &`X !@P P&`0B ,X$XB\00B 2 X !l Cl20B :X :!t #a 8apBap>0B 4@X $h#a @Y($`BL0B H HXPp! $B(p0B 8N8Y 8!N! #a @` B a "00B `X $ #a (X$`PBT,p0B .X!p!\B`.0B 2 X 2!d #`a 6alBa\-$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 p"l:0B 8X $p#a <X$xB@P0B (J(Y0A!P"BJ0B H HX H !$ #@a P`(Ba(N0B @@X $ #@a $@X$@HBL(P0B *X`!P!TBX*p0B .X .!\ #a 0a`B a`20B 6`X,,C :l#a 8X$pB|<0B @Y9!"B@P0B (J(Y (!J! #a 0L`bB a0B P@PXp,,: 8N8)#a @@X$  BD$00B &`X8!0!LBP&P0B *X *!T #a ,`aXBaX.0B 0X $`#`a 6`Xl$lBt80B <X f&|0  >!X <!x #a @Y !@! # a BbBaJ0B H HX`0B 0L`"B`a,,@S P(q, 8 e&p0  8N!8Y@!PB(Y 0!0YR? a!@ # a BP  `!  ,@H!0B@P(, b"P$B(Y 0!0Y8!HX8= H!B a B00B P  H`!$  ,(@@$U `!@B ! 0~F@ !(f(@e0,,` p q, ! e&0  @!Y!PB(Y 0B!0Y? !@ # f BP  !  ,H@ H!`$ `,@a P!@PX(L!`HPp, 3v;? H!1B, fB0@3B `X @@!  @3B P@PX$ (BD$0A3B &`X P!@P `BP&PA3B *X *!T #f ,`aXBfX.A3B 0X `!d d0A3B 6`X$lBp:A3B <X p!| C|<PB3B (J(Y (!J! #f 0L`bBfNB3B @Y@B3B B"B`f-B c H! HX P!( #@P,H`,g $,B XH!B f B0@3B P  H!$  ,(@@$U `!@B ) 0vF@ !(e(@e0Hb @03B` $0@Db @Ha3B@ P!@ #XX @! 8@! ! e&0  B! Y!PB(Y 0!0Y? !@ # f BP< @!0 0 , - H$B$, 0!0Y$,B8XH!B f B0@3B P  H!$  ,@ P!(  ,@ !DBD,@fD$03B &`X !@P P&`3B ,X$XB\03B 2 X А!h Ch23B 6`X !pBp,`p63B :atBft<3B >X>3B @"BfJ-Be HL HY 8!pB,@P,H 8B!8Y $,B5XH!B f B03B P< H@!$ $,@- P(B(,H 0!0Y$,BXXH!B f B0@3B P  H!$  ,@ P!(  ,@ f&D0 " 0BD$L "DB` D&  X p!P #a *!X @!`XB`X,a .!X !` ) !d #b 0!X (*!(Y 0,!0Y 8.!8Y@!`B HY$,BPH!B f B03B P, H` &$0  H! HX P!( (,HP,`,P $,BPH!B ) BB6 @!0 0 , a H! HX(!`$B0Y$,BxXH!B f B03B P  H!$  ,(@@$U `!@B ! 2~F@ !(c(@b01B 00Y A!B,00$pB8Y $a|Bd|J`B2B 0L0YLpB2B 8Np"Bd@1B B Y @ e&0 0  !`X(B!` B0Y$,BxXH!B d B0@2B P  H !$  ,@,,@S P(q, e&D0  "! X!PDB(Y 0$!0Y? !!@ # d BP   !  ,@H!0B@P(, e"P$B(Y 0!0Y8A!HX~= H!B d B0@2B P  H !$  ,(@@$U `@!@B 3~F@(a(@a0L 0 B0 ,a @Y ! Y(@! ,  ,0a ! ! 1~F@ !(e(@e02B 00Y !B,00 $pB8Y $j~, H!2B B Y A e&0  @!Y(B!`B0Y$,BXH!Bf @03B P  H!$  ,@ P!(B(, d "! X (!(Y]l&9$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 t" 0"!0Y$,BXH!Bf @03B P  H!$  ,@ P@!(B(, f(" 3B $@X !0L L$P3B *X$pTBX.3B 0X !d Cd03B 4@X 4!h #`f 6alBfl83B :X !x x:3B B Y (!!P ( It! 0$ 8%`B B!0#`f `X H!$ `@$3B @@X @ ! #@f P`(B f(" 3B $@X$03B &0!LBfL(P,,« *TqW, e&`X0  ,!X!PXB(Y 0.!0Y.? !@ # f BP  !  ,@H!0B@P(, f"P$B(Y 0!0Y8!HX = H!B f B03B P  H!$  ,(@@$U `!@B ! 1~F@ !(e(@d0,,` p q, f&0  @!Y!PB(Y 0B!0YV? a!@ # e BP  `!  ,x@ H@!`$ `,@a P!@PX(L!`HPp, 3R3? H!B1B, eB02B `X @@!  2B P@PX$ (BD$02B &`X P!@P `BP&P2B *X *!T #e ,`aXBeX.2B 0X `!d d02B 6`X `!p 08! 8$ %xB 6!|#e (J(Y 0q!` D(Jp2B 8N8Y 8!N! #e @bB eB02B `X2B @ B e /B b "! X !H #PP,`,f $,BXlXH!B e B02B P  H`!$  ,(@@$U `!@B ) 0vF@ !(e(@e0Hb @03B` $0@Db @Ha3B@ P!@ #XX A! 8@!  f&0  B! Y!PB(Y 0!0Y"? !@ # f BP< @!0 0 , - H$B$, 0!0Y$,BxXH!B f B0@3B P  H!$  ,@ P!(  ,@ !DBD,@fD$03B &`X !@P P&`3B ,X8$XB\03B 2 X А!h Ch23B 6`X !pBp,`p63B :atBft<3B >X>3B @"BfJ`/BgNpB1B8,0P,g 8P!8Y $,BXH!Bf @03B P< H@!$ $,@- P(B(,H 0!0Y$,BXH!Bf @0@3B P  H!$  ,@ P!(  ,@ f&D0 " 0BD$L "DB` D&  X p!P #a *!X @!`XB`X,a .!X !` ) !d #b 0!X (*!(Y 0,!0Y 8.!8Y@!`B HY$,BPH!Bf @03B P, H` &$0  H! HX P!( (,HP,`,P $,B(PH!B) @B6 @!0 0 , a H! HX(!`$B0Y$,BȽXH!Bf @03B P  H!$  ,(@@$U `!@B ) 0vF@ !(e(@e0Hb @03B` $0@Db @Ha3B@ P!@ #XX A! 8@!  f&0  B! Y!PB(Y 0!0Y.? !@ # f BP< @!0 0 , - H$B$, 0!0Y$,BXH!B f B0@3B P  H!$  ,@ P!(  ,@ !DBD,@fD$03B &`X !@P P&`3B ,X$XB\03B 2 X А!h Ch23B 6`X !pBp,`p63B :atBft<3B >X>3B @"BfJ`1BL/Be HN HY !B,@P,H 8B!8Y $,BxXH!B f B03B P< H@!$ $,@- P(B(,H 0!0Y$,BXH!B f B0@3B P  H!$  ,@ P!(  ,@ f&D0 " 0BD$L "DB` D&  X p!P #a *!X @!`XB`X,a .!X !` ) !d #b 0!X (*!(Y 0,!0Y 8.!8Y@!`B HY$,BPH!B f B03B P, H` &$0  H! HX P!( (,HP,`,P $,BPH!B ) BB6 @!0 0 , a H! HX(!`$B0Y$,BصXH!B f B03B P  H!$  ,(@@$U `!@B ! 1~F@ !(d(@d0@2B 00Y A!B,00 $pB8Y $\~, H!1B ,e@02B `X @@!  2B P@PX$ (BD$02B &`X P!@P `BP&P2B *X *!T #e ,`aXBeX.2B 0X02B 4@X `!l pl ( C%D p!t t, :  P % $|B<! ( 4!#e 0L0Y 0L! #e 8N8Y 8!N! #e @bB eB02B `X2B @ B e 1B@P(, d " X (!(Y0"!l,  ,0e ! ! 1~F@ !(d(@d0,,` p q, f&0  @!Y!PB(Y 0B!0Yf? A!@ # e BP  @!  ,x@ H !`$ `,@a P!@PX(L!`HPp, 3b-? H!1B, eB02B `X @@!  2B P@PX$ (BD$02B &`X P!@P `BP&P2B *X *!T #e ,`aXBeX.2B 0X `!d d02B 6`X `!p 08! 8$ %xB 6!|#e (J(Y 0q!` D(Jp2B 8N8Y 8!N! #e @bB eB02B `X2B @ B e /B b "! X `!H #PP,`,e $,BrXH!B e B02B P  H@!$  ,(@@$U `@!@B 3~F@(a(@a0L 0 B0 ,a @Y ! Y(@!,  ,0a ! ! 1~F@ !(e(@e02B 00Y !B,00 $pB8Y^Ebi$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 " $X~, H!2B B Y A e&0  @!Y(B!`B0Y$,BXH!Bf @03B P  H!$  ,@ P!(B(, d "! X (!(Y 0"!0Y$,BXH!Bf @03B P  H!$  ,@ P@!(B(, f(" 3B $@X !0L L$P3B *X$pTBX.3B 0X !d Cd03B 4@X 4!h #`f 6alBfl83B :X !x x:3B B Y (!!P ( It! 0$ 8%`B B!0#`f `X H!$ `@$3B @@X @ ! #@f P`(B f(" 3B $@X$03B &0!LBfL(P,, *TqW, f&`X0  ,!X!PXB(Y 0.!0Y? !@ # f BP  !  ,@H!0B@P(, f"P$B(Y 0!0Y8!HX= H!B f B03B P  H!$  ,(@@$U `!@B  (`00H`  ! `` H 8 @1 `tL H$B`X $ 0 80! @ ! @?#@0B 0@0B `aD !! A P@1 (t @$ B , H$B@X @$  ,8@ !  ,  ! 3~F@(a(@a00B P@PX @`!  ,D@ H Yz? P!@( #HU `@!@B ! 3|F@ ! 0B(g (g0B@L @B aB0,,` p q, f&0  @!Y!PB(Y 0B!0YF? !@ # ` BP  !  ,@ H!`$ `,@a P!@PX(L!`HPp, 3)? H!1B, `B00B `X0B H HXPd$$B(" 0B $@X $!H #`` &`X &!L #` (@aPB`P*`0B ,X `!p\ \,0B 2 XЬ$dBh60B 8X p!t Ct80B <X <!x #` >a|B`|J`0B 0L0Y 8!p L0B B Y8$B 0B H HX P!( AH(0B " X "!D #@` $ aHB``H&@0B (X !PT T(p0B .X$\B`20B 4@X ذ!l @Cl40B 8X 8!p #` :atB`t<0B >X>P0B (JP"B`@p.Bc 0L!`0Y @ ! #8P,`,` $,BXEXH!Ba @00B P H@!$ $,H?  ,8@ P@!(  , U `@!@B 5 2lF@ ! 1B(` (g1B@L @B c$B0Hd 0@1B` $0@ d BHd @@1B@ $0@ @ Dd BHc@1B@ $0@ @ c BHb@1B@ !@ # XX C! 8BX! f&0  @!Y!PB(Y 0!0Y? !!@ #` @P   !  , @ H@!$B$,@`$A0B " X ! H H"@A0B (X$`PBT,pA0B .X 0!` B`.A0B 2 X !hBh, h2A0B 6alB`l8A0B :X !x x:PB0B (J(Y09$pBNB0B @P@Y H! E@PB0B PT@PY X!B,@PTB0B `XbB `BB0B @Y !0  @@0B H HXP$$B(" A0B $@X !0L @BL$@A0B (X !PTBPT,T(`A0B ,`aXB`X.A0B 0X0A0B 2!dB@`d4A2B6 Hbp:0B <xq7$ !P0B 8J8Y 0A! #P,88A!H XJ= H!Bb @ !0 p @CH!0B2B@P(,HP,a 8!8Y $,BXH!Bb @01B P( H!L P(B(, a"P$B(Y 0!0Y8A!H X= H!Bb @d$ !0 p (C H!$ $,@- P(B(,H 0!0Y$,BXH!B` @0@0B P  H !$  ,@ P!( (,P?  ,@ f&D0 " 1BD$AL "DB` D&  X !P #c *!X !`XB`X,b .!X !` ) @!d #d 0!X !h )@ `!l #@d 4!@X !p ) !t #c 8!Xp,ap<PTB(Y 0,!0Y 8.!8Y@A!`B HYPa!hB`XY`!IH Xq H!B` @0@0B P, H` &$0  H! HX P !( (,HP,`,P $,BPH!B) @B6 !0 0 , b H! HX(!`$B0Y$,BhXH!B` @0@0B P  H !$  ,(@@$U ` !@B ! 1~F@ !(e(@d02B 00Y A!B,00 $pB8Y $4K~, H!1B ,e@02B `X @`!  2B P@PX$ (BD$02B &`X p!@P `BP&P2B *X *!T #e ,`aXBeX.2B 0X @!d d02B 6`X$lBp:2B <X P!| C|<P2B (J(Y (!J! #e 0L`bBeN2B @Y@02B `X@$ B 2B P@PX P!( # e " X "!D #@e $ aHB`eH&@2B (X(P2B *P!TBeT,p1Bp\,d 0X (.!(Y00!D,  ,0e ! ! 1~F@ ! 3B(d (dB3B@L @B fB0@2B 00Y @@! B ,00 $p B8Y $4I~, H!1B, eB02B `X @@!  2B P@PX$ (BD$02B &`X P!@P `BP&P2B *X *!T #e ,`aXBeX.2B 0X `!d d02B 6`X `!p 08! $ %xB 6!|#e (J(Y 0q!` D(Jp2B 8N8Y 8!N! #e @bB eB02B `X2B @ B e 2B P@PX @ e&D0  "! X(!`DB0Y$,BXH!B e B02B P  H@!$  ,@,,@T P(q4 f&D0  "! X_(c$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 M"!PDB(Y 0$!0Y? A!@ # e BP @!0 0 ,?  ,@P!1B D,@e$P(B(Y 0"!0Y8a!HX~= H!B e B02B P H@!$ $,H?  ,(@@$U `!@B 3~F@(a(@a00B `X ! Y(!,  ,0a !  3|F@ ! 0B(` (g0B@L @B aBPbH !( H!BU `@!@B ! 1|F@ !(f(@f1B@0BB0B@,,  Bp q, f&0  @!Y!PB(Y 0B!0Y? !@ # g BP  !  ,@ H!`$ `,@c P!@PX(L!`*HPp, 3"? H!1B $@,`b !`X (@!(Y 0!0Y$,B؍XH!Bg @03B P  H!$  ,@ P!( () b(" A1B $@"R `!L #b (BR @!T #` ,!X !\ #g 0X !d d03B 6`X,$lBp:3B <X !| C|<3B B Y !B! #g (JPbBgLp3B 8N8Y ! N3B H HX @! @8! P8$ %DB !PH#`g &`X !@P `BP&P3B *X *!T #g ,`aXBgX.3B 0X !d d03B 6`X !p P8! $ %xB 6!|# g B Y (!P DB`3B 0L0Y 0!L! #`g 0` Bg @p3B 8N8Y @ !  N3B H HXP$$ $B($03B &`X 0!@P `BP&P3B *X *!T #g ,`aXBgX.3B 0X $`#g 8X($pBx6Ё3B :X !|B|,C|:3B B Y !B! #g (JPbBgL03B `X $ # g " X8!$DB3B P@PX `! HB H,@APH03B &`X &!L #g (@aPBgP*`3B ,X $X# g 2 X$dBh63B 8X @!xBx,Cx8Ё3B :X :!t #g >a|B g|BP3B (J(YJ`3B 0L`"B`g/B` @!Y H!$ #@P,`,g $,BXH!Bg @03B P  H!$  ,(@@$U `@!@B 5 3fF@ !(a(@a0B@3BB3B@H`f01B` $0@ f BHf1B@ $0@ @ Df BHe1B@ $0@ @ e BHe1B@ $0@ @ De BHd1B@ !@ # XX C! 8B! f&0  @!Y!PB(Y 0!0Y? !@ #b @P< @!0 0 , - H$B$, 0!0Y$,BzXH!Bb @0@1B P  H!$  , @ P!(  ,x @ `!DBD,@bD$01B &`X !@P P&`1B ,X,$XB\01B 2 X а!h Ch21B 6`X !pBp,`p61B :atBbt<1B >X ! >`1B 0L0Y89$BP1B HR HY P! EHR1B XV`XY `!B,`XV1B @bB`b1B H HX P`!( (1B " X$0DBH&@1B (X p!PT BT(`1B ,X `!p\Bp\,\,1B 0a`B b`21B 4@X @!l l41B :X$$tBx>1B B Y (Q!P DB`1B 0L0Y 8A!pBp,0L1B @PbB bR1B PT@PY X$X#`b `X)$ B1B H HX P!(B(, AH(1B " X "!D #@b $ aHB`bH&@1B (X $P#b .X $\B`21B 4@X !lBl,@Cl41B 8X 8!p #b :atBbt<1B >X $}#b 0L0Y8$BP1B HR HY P!B, EHR1B XV`XY X!V! #b `XbB`b1B @@X1B @"B b@3B/B@a $@X `!0LB0L,P, 8&!8Y $,BXH!Bb @01B P< H@!$ $,@- P(B(,H 0!0Y$,BXrXH!Bb @0@1B P  H!$  ,h@ P!(  ,H@ !D #@` $  P7 !@L @S/ P& !PT T@C !pX p_/ \, !` `@C !d k/ h2 f&l0 6A2Bl8L 6lB l: `X 0!x #d >!X !B,d (J!(Y 0!` `2)0 8!0 #f 0L!@0Y H! J) H X!H # f HR!HY a! ) ! #`e !`X0 , a 2B P@SP!@2B(A2B@aD$2B D, X !L0# @!T #e !\0#` 0X !d0#P,`,@p,c HT! HYP!B`XY`!iHXRh H!B b B01B P, H` &$0  H! HX P!( (,HP,`,P $,BȠPH!B ) BB6 @!0 0 , d H! HX(!`$B0Y$,BmXH!B b B01B P  H!$  ,(@@$U ` !@B ! 1~F@ !(e(@e02B 00Y A!B,00 $pB8Y $8~, H!B1BB0B @p q ($@1B 0B H HX H$X@@b$ !DBD,@fD$03B &`X @!@P P&`3B ,X,$XB\03B 2 X P!h Ch23B 6`X 6!l #f 8apBfp:3B <X $x#f 0L0Y 8!p $0B3B @Y !0 B0 ,D @3B @@X @ ! # f H`$B@f$3B " X" 3B $ !HB`fH&@1B@P,e *X ((!(Y0*!,,  ,0f ! ! 2~F@ !(c(@b01B 00Y A!B,00$pB8Y $6~, H!0B ,c@01B `X @@! ` $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 +" 1B P@PX,$ (BD$01B &`X P!@P `BP&P1B *X *!T #c ,`aXBcX.1B 0X01B 2!dB@cd4A1B 6`X @ e&p0  8!X(6!`pB0Y$,BfXH!B c B01B P  H!$  ,@,,@W P(q, f&D0  "! X!PDB(Y 0$!0Y? !@ # c BP  !  ,@H!0B@P(, d"P$B(Y 0!0Y8!HXz> H!B c B01B P  H!$  ,(@@$U `!@B 3~F@(a(@a0L 0 B0 ,a @Y ! Y(@!,  ,0a ! ! 3zF@ !(`(@g1B@0BB0B@0B 0B0Y !0 B0 ,00$p B8Y $$4~, H!3B @Y A e&0  B! Y(@!`B0Y$,BbXH!B ` B0@0B P  H !$  , @ P!(B(, g "! X (!(Y 0"!0Y$,BjXH!B ` B0@0B P  H !$  , @ P!( @() b(" 3B $@R `!L #g (R @!T #a ,!X !\ #` 0X !d d0A0B 6`X,$lBp:A0B <X !| C|<B0B @Y !@! #` (JPbB`LpB0B 8N8Y ! N@0B H HX @!  ( It! P0$ %DB !PH#`` &`X !@P `BP&PA0B *X *!T #` ,`aXB`X.A0B 0X !d d0A0B 6`X !p p)(P Xhw 8$ %xB 6!|#` @Y (1!P D@`B0B 0L0Y 0!L! #`` 0` B ` BpB0B 8N8Y @@!  N@0B H HX P!( ()P0P h8h $ % LB !P#` *X P!`X BX*pA0B .X .!\ #` 0a`B ``2A0B 4@X `!p p4A0B 6`X !t !t)8P xh $$ %B ( 6!#` 0L0Y p!0 D0 LB0B B Y !B! #` @` B ` "pB0B 8N8Y P$P# ` H HX ! H  1H)P 8qh ($ %@TB !X#` .X !`B`,B`.A0B 2 X 2!d #@` 4ahB`h8A0B <X $x#`` 6`X !| Q|) P H8h7 (!$ %P B 0 6!(# ` B Y @`! B , D BA0B " X "!D #@` P`(B``(&pB0B 8N8Y $# ` H HX !@P @qP)(P Xhw $ %`\B !`# ` 2 X @!hBh, Ch2A0B 8X 8!p #` :atB`t<B0B @Y@A0B >!|B``|,,` 6lq, ( f&P0  (J!(Y!P B(Y 0B!0Y? !!@ # ` BP   !  ,@H!0B@P(, a"P$B(Y 0!0Y8A!HX> H!B ` B0@0B P  H !$  ,(@@$U `@!@B ! 2~F@ !(c(@b01B 00Y A!B,00 $pB8Y $-~, H!B1B B Y A e&0  @!Y(B!`B0Y$,BUXH!Bc @01B P  H!$  ,H@ P g&(0 P1B("L P(B@ P($ @PX !PL #a (!X !PTBPT,a,!pAHb`X,P,`,p, 3!|, H!B@P, !( H!B@XU `!@B ! 3~F@ !(b(@b0@1B 00Y A!B,00$pB8Y $<,~, H!L B a@L @B`  `X @p! # a H! HX P`!(B(, b " X (!(Y 0!0Y8"!H X&? H!B@P, !( H!B@XU `!@B ! 3~F@ !(b(@a01B 00Y A!B,00$pB8Y $T+~, H!0B B Y A e&0  @!Y(B!`B0Y$,B(QXH!Bb @0@1B P  H!$  ,@ P@!(B(,PP, !{, H!B@P, ! ( H!B@XU `!@B ! 2~F@ !(c(@b01B 00Y A!B,00 $pB8Y $\*~, H!B1B B Y A e&0  @!Y(B!`B0Y$,B8OXH!Bc @01B P  H!$  ,H@ P g&(0 P1B("L P(B@ P($ @PX !PL #a (!X !PTBPT,a,!pAHb`X,P,`,p, 3!{, H!B@P, !( H!B@XU `!@B P93~F X!0@L 0 8! @$ @ g&0 0 0B 0L 0 B    `X @P! # a H! HX ` g&0 0  !`X `!`Y h!hY$,BXV!B`a 0B HHP  P`!(  ,(@@$PU `@!@B 3~F !(a0,,` `X A! , H !$0  0$,B`F!B@XU `@!@B ! 1~F@ !(e(@d02B 00Y !B,00 $pB8Y $'~, H!,,  Bp q|, a!@ # e BP  `!  ,@ H@!$B$,@e$2B " X ! H H"@2B (X !PT @*8! ($ X$`\B (!`# e 2 X !h Ch22B 6`X 6!l #e 8apBep:2B <X !| |<`2B 0L0Y 8!p PN! $ %$B L! #e @@X H!$ A@$2B P@PX P !( # e "aDB@eD$02B &`X&P2B *P!TBeT.@AL (@P @P,BX @!`B`, f2PXB(Y 00!0Y8!APB 6@P0 ` 3!0@ H!Be @02B P H`!$  ,@ P g&(0 P2B("L P(B@ P($ @PX p!PL #e (!X ((!(Y? !@ #faI$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 i" @P !0 0 ,$,ByPH!B@X g&0 @02B0@L 0 B    `X Pp!( # Y `! HB H,`c&!@AH`20L,P,`,p, 3!( H!BY (@!(Y.? !@ #f @P !0 0 ,$,BxPH!B@X: !! ,`+ 0 B0 , 0!0Y$,BCXH!Bf @0@3B P  H!$  ,(@@$U `!@B ! 1~F@ !(d(@d0@2B 00Y !B,00 $pB8Y $#~, H!,,  Bp q A!B,`e2B @@X H!$ $2B " X@$0DBH&@2B (X !PT BT(`2B ,X ,!X #e .pa\Be\02B 2 X !h h22B 8X $pBt<2B >X (!P C>`2B 0L0Y 0!L! #e 8NpbB eB02B `X2B @"BeL H$ $,@AX @!DBD,@e$P(B(Y 0"!0Y8a!@A$B ($0 `H 3!0@ H!Be @02B P  H@!$  ,(@@$U `@!@B 1 3|F@ !(g(@f0Hb 0@1B` ! # g 0B0Y @`! B ,00 $p B8Y $!~, H!2B, e B! Y (@!(Y 0B!0Y$,BFXH!B g B03B P  H!$  ,H@,,@P P(q `!DB@ D$  X0,,a (!X @!PTBPT,e ,X ("!(Y 0&!` `,p,, $,B(<PH!B g B03B P  H!$  ,@ P g&(0 PA2B("L P(B@ P($ @PX 0!PL #d (!X !PTBPT,b ,!X $0B\00B 2 X $A0Bh60B 8X ((!(Y 0*!0Y 8,!8Y@!dB@`X8!9HX[ H!B g B03B P( H` &$0  H! HX P!( (,HP,`,P $,BoPH!B@X ! ,`b !`X(B!` B0Y$,B9XH!B g B03B P  H!$  ,@ P`!( H8h! @!@X @!D X"@! g& H0 $00BH& AL $ HB H( @X P!T # @ g&`X0 ,p0BX.`L ,`XB X0 X P!d # ` g&h0 43Bh6L 4hB h8 @X !t #Y @!|B|,e@!PBH*,g 0L! 0Y (<!(Y 0>!0Y 8@!8Y @R!@Y$,BHlPH!BY (@!(Y? a!@ #a @P `!0 0 ,$,BkPH!B@X  @$U `@!@B % 1~F@ !(c(@c01B 00Y !B,00 $pB8Y $t~, H!,,  Bp q$ A!B,`d2B @@X H!$ $2B " X8$0DBH&@2B (X !PT BT(`2B ,X ,!X #d .pa\Bd\02B 2 X22B 4!hB`dh6L 8p p,CX @!xBx,d>PtB(Y 0<!0Y8!!BpB Bp0 ` 3!0@ H!B d B02B P  H!$  ,h@ P@!(B(, d(" 2B $@X !0L L$P2B *X$pTBX.2B 0X Ȱ!d Cd02B 4@X 4!h #`d 6alBdl82B :X:2B <!xBdx>L @ ,DX (A!PB,dLPB(Y 0P!0Y8!!0@B 00 ` 3!0@ H!B d B02B P H!$  ,(@ P g&(0 P2B("@L P(B@ P($ @PX P!PL #/ (@P dP*@L (@PB P, X !\ #Y @!dBd,@b 4!@X !lBl,P,`,p,, C!( H!B Y (B!(Y? a!@ # e BP `!0 0 ,$,BdPH!B@X  @$U `@!@B  (`(@`0L 0 @!L @@ # !  3~F@ !(a(@a0L 0 !L @ # a B Y @ & 0  @!@X(B!` B0Y$}( H!H0a ! 1 0~F@ !(f(@f0Hc 01B` ! # XX 1B! 8B! @@! B ,`g 3B @Y $#`g `X@$ B 3B H HX h&0  @!Y H!% # g B Y !B! #`g 0` Bg 3B P@PX H$H(# g B Y<$B 3B H HX P h&(0  P!@PX H!P$ #g @Y !@! #`g 0` Bg 3B B YB3B H $B@g$L @ #`( 0 / @ # , B , AX P@!(B(,g@P$B(Y 0!0Y8!@B 00 ` 3!0@ H!B g B03B P  H!$  ,8@ P g&(0 P2B("L P(B@ P($ @PX p!PL #e (!X !PTBPT,c ,!X $3B\0L 2d d,@( !l #/ 8p p,P,`,p,gH2!0B`$,B8^PH!B g B03B P( H` &$0  H! HX P!( (,HP,`,P $,B]PH!B@X ! ,`c !`X(B!` B0Y$,BH'XH!B g B03B P H!$  ,X@ P@ h&(0 P3B("L P(B@ P($ @PX !PL #g (!X ((!(Y? !!@ # ` BP  !0 0 ,$,B(\PH!B@X a h&0 B03B0L 0 B    `X P!( # g "! X ("!(Y^? !!@ # ` BP  !0 0 ,$,BH[PH!B@XN  h&0 B03B0L 0 B    `X P!( # g "! X ("!(Y? !!@ # ` BP bV}Ӝ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "  !0 0 ,$,BhZPH!B@X  @$U `!@B ! 2~F@ !(a(@a0,,` p q8 ,,D @p qp  h&0  B Y!1B@@1BP B(Y0!pB1B 0 `@ 3!0@ H!B(@  h&0 B01B0L 0 B   `X H!$ #@c P!@PX (!(Y~? !@ # c BP !0 0 ,$,B(XPH!B@X  @$U `!@B ! 2~F@ !(a(@a0,,` p q8 ,,D @p qp  h&0  B Y!1B@@1BP B(Y0!pB1B 0 `@ 3!0@ H!B(@ A h&0 B01B0L 0 B   `X H!$ #@c P!@PX (!(Y? !@ # c BP !0 0 ,$,BUPH!B@X  @$U `!@B 5 0lF@ !(d(@d1B@B1BB1B@H`ar,Ba0H a Bp.BDa @0H ` B00B` @! #XX 1@! 8@!HX A!@ #e @P  @!  , @ H!$B$,@e$2B " X $D#e (X$`PBT,p2B .X !`B`,B`.2B 2 X 2!d #@e 4ahB`eh62B 8X $p#e >X(5$`|BLp2B 8N8Y @!B,D8N2B HR HY H!R! #@e PTbB`eV2B `X`Y $#`e `X@@$ B 2B P@PX !DBD,@APD 2B $@X $!H #`e &0aLBeL(P2B *X `!`X X*2B 0X$`Bd42B 6`X p!p `Cp6Ё2B :X `!xBx,x:2B >a|Be|J`2B 0L0Y 8A!p L2B HR HYP1$BV2B @Y Q! D@2B `X`Y @!0 B0 ,` X2B @` B e 2B P@PX2B "!DB@eD$0L &0L 0L,X `!T #d *!X ((!(Y0a!pTB8Y &!\0  &0  $,B`H!B e B02B P  H@!$  ,(@ P i&(0 PA0B("@L P(B@ P($ @PX 0!PL #` (!X !PTBPT,` ,!X$2B\01B 2 R$3Bh6A1B 8R$A3Bt<1B >R|,a|@P0B (JTS(J!`3BLp3BaPp0B8p,8Y H!80#@a PT@SPT!3BV3B bB0B , Y ! 0#P,`,p,e H2! HYP!pB`XY`!iHXS H!B e B02B P( H` &$0  H! HX P@!( (,HP,`,P $,BKPH!B@X6 ! ,`` !`X(B!` B0Y$,BXH!B e B02B P  H@!$  ,(@@$U ` !@B ! 3~F@ !(a(@a0,,` p q8 ,, @p q, A i&0  B Y !1B@@1BP B(Y0!pB1B 0 `@ 3!0@ H!B@$U `!@B PE0zF X!(g0@2B`0 ,g @3B @@X H$H #`g `X $ B3B @@X H !$B$,A@$3B P@PX !0 B0 ,@P 3B X`,Bg,@3B @@X H$H #@g P@PXX $(B,@03B `X @! B ,`@ 3B H HX H !$ #@g P`(B`g(3B @Y@03B 0 Bg H3B P@PO(3B X`XX X@!, a,@03B `X P!0 a  ` P!H( # , H$B$,`a X!`XX !!B,` h!hY p!pY x!xY @!Y$( V!p ( H8! @!$ ! )`)P @ BpC !0 0 ,`@H1H<$ @@d X@!P, # a h"hY `! HB H,hh$HBpY $( V!D !!B,`@b1B@ , g H HX `!`Y h! , #  !B,`g3B @@X H$H #`g X`XXP$ ,BD$03B &`X @ i&@P0  (!X &!L #g *X *!T #g ,`aXBgX.3B 0X !d d,  2`#`g 6`XL$lBp:3B <X !| |,C>!xB|<3B `X`Y `!X! #g hZbBg\3B x^xY^3B `#B`gL @ ,. @ B , b H! HX P!( #@,H,` @!D0  X@ $0@ V!0B @00B P H i&$0  H$B@. PH( #` i&D0 ,"4 $0L &L#( (@P (!PL *T #@$PU `!@B %3nF !(b0@1B `X @!0 b @@1B @@X @P! `@b @3B0!( F!H`gH g H`g(H@`D$Q`"d @!P #" \!X#d *!X !\ #b 0X P0!` Cb`2AL 0`B@ `4 X ؠ!l #b 8X @8!p bp:AL <x bx>@1BD0!( F! H`c H c Q@!d X !P, #  @!H# b "! X P!L # g "! X !P #d($`B>PF!H`dH d H`d(@1B@P(, d(" H`"eH& A1B@ H,BeH(P3BPT,+ ,`XB`X,@,P, #zO F! ,@X A!@ #`a P H!$B$,@+ P(B(,H@,PP, #ZO F! ,@X A!@ #`a PH H!$B$,H@, FO F! ,@X A!@ #`a P( HH!$ @a$2BX0B," 0B@ H,@,P, #J ? !B,`+ 0 B0 ,@,P, #O F! A! p (PC @!0 'H x! H$L PH(#@$U `!@B ) 2~F@ !(d(@d01BP0BD8!( H!BH ac*$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "B02B 0 Bc @2B H HXH0B$@2B X`XX X!, a," 0B@ H,`) &0LB0L,) (@PB@P,P,`,p, 3N H!1B @1B @B@XU `!@B 0%2~F(c(@c(b(@b(aL @ , B#* @B@ D Y  j&00 F@0B Hp q $ L D #  $0L F # i&@0 HL B#@. D #( @ #`cF@L H # c B Y8B!B@Y? A!@ #b @Y  i&00  F #b H Y  j&0  B #`a @@X0UP `!@B 3~F !(b01B `X @!  , 0B @HH ,`a L @ aL H$B` $ `X @P! #XX H@!$B$,`a !`X QA!@ @,HP,`, 3!( F!BU `!@B 3~F (a00B X`XX j&0  @!Y @!`Y~?  , a ! 3~F (a00B X`XX j&0  @!Y @!`YR?  , a ! 3~F (a00B X`XX j&0  @!Y @!`Y&?  , a ! 3~F (a00B X`XX  k&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX ! k&0  @!Y @!`Y?  , a ! 3~F !(a00B X`XX,,) @B,D] H Y (@!(Y$<}, F! , a ! 3~F !(a00B X`XX,,) @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,* @B,D] H Y (@!(Y$l}, F! , a ! 3~F !(a00B X`XX,,* @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,+ @B,D] H Y (@!(Y$}, F! , a ! 3~F !(b01B `X @!  , 0B @HH ,`a L @ aL H$B` $ `X @P! #XX H@!$B$,`a !`X QA!@ @,HP,`, 3!( F!BU `!@B 3~F (a00B X`XX  k&0  @!Y @!`Y~?  , a ! 3~F (a00B X`XX j&0  @!Y @!`YR?  , a ! 3~F !(b01B `X @!  , 0B @HH ,`a BL @ a@L H$B` $ `X @P! #XX H@!$B$,`a !`X QA!@ @,HP,`, 3!<( F!BU `!@B 3~F (a00B X`XX j&0  @!Y @!`Y~?  , a ! 3~F (a00B X`XX j&0  @!Y @!`YR?  , a ! 3~F (a00B X`XX j&0  @!Y @!`Y&?  , a ! 3~F (a00B X`XX A k&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX  k&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX ! k&0  @!Y @!`Y?  , a ! 3~F !(a00B X`XX,,- @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,. @B,D] H Y (@!(Y$l}, F! , a ! 3~F !(a00B X`XX,,. @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,/ @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,/ @B,D] H Y (@!(Y$4}, F! , a ! 3~F !(a00B X`XX,,( @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,( @B,D] H Y (@!(Y$d}, F! , a ! 3~F !(a00B X`XX,,) @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,) @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,* @B,D] H Y (@!(Y$,}, F! , a ! 3~F !(b01B `X @!  , 0B @HH ,`a BL @ a@L H$B` $ `X @P! #XX H@!$B$,`a !`X QA!@ @,HP,`, 3!d( F!BU `!@B 3~F (a00B X`XX j&0  @!Y @!`Y~?  , a ! 3~F (a00B X`XX j&0  @!Y @!`YR?  , a ! 3~F (a00B X`XX  k&0  @!Y @!`Y&?  , a ! 3~F !(a00B X`XX,,+ @BdS\L$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 Y"*,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,+ @B,D] H Y (@!(Y$}, F! , a ! )1vF !(e0Ha 03B` q! # H@!@$ #g@!00B 2B X@`XX H!$B$,`f$3B @@X03B `XH$ B$3B @@X @! #f @Y !@! #`f 0` B f 3B P@PX3B @ Bf @0@2B`0 , f 3B P@PX @$@(#`f `XH$ B$"3B @@X P!(B(,A@(3B @Y `!0 B0 , @3B H`$B f$"3B @@X3B P (B`f(-B c H! HX !DBD,@,HP,`, 3!D|, F!B`c !`X @! # f H HX P$P$#@f $@X$@HBL(P3B *X !`XB`X,BX*p3B .X @!`B`,`.3B 2adB@fd43B 6`X63B 8!pBfp:-Bf>1B|,@,f 0>!0Y $,BXF!B`a p q  @`! Hx ! H l&$0 H1B$L H$B  H$"  HX !HH #`, &0L bL(0AL &0LB L* `X !X #Y !`B`, a 2! X `!hBh,`b 6!`X!@\B Y (0!(Y 02!0Y 84!8Y @6!@Y H8! HY$,B(PF!B`Y,,@,@ (J(Y$,BPF!B`f 3B HHP  P!(  ,@,, - "DBD,D] H Y ("!(Y$l}, F! , U `!@B 3~F !(a00B X`XX,,- @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,. @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,. @B,D] H Y (@!(Y$4}, F! , a ! 3~F !(a00B X`XX,,/ @B,D] H Y (@!(Y$}, F! , a ! 3~F !(b01B `X @!  , 0B @HH ,`a L @ aL H$B` $ `X @P! #XX H@!$B$,`a !`X QA!@ @,HP,`, 3!4( F!BU `!@B 3~F (a00B X`XX  m&0  @!Y @!`Y~?  , a ! 3~F (a00B X`XX  k&0  @!Y @!`YR?  , a ! 3~F (a00B X`XX ! m&0  @!Y @!`Y&?  , a ! 3~F (a00B X`XX A k&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX ! k&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX A m&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX a m&0  @!Y @!`Yv?  , a ! 3~F (a00B X`XX m&0  @!Y @!`YJ?  , a ! 3~F !(b01B `X @!  , 0B @HH ,`a BL @ a@L H$B` $ `X @P! #XX H@!$B$,`a !`X QA!@ @,HP,`, 3!( F!BU `!@B 3~F (a00B X`XX m&0  @!Y @!`Y~?  , a ! 3~F (a00B X`XX  k&0  @!Y @!`YR?  , a ! 3~F (a00B X`XX j&0  @!Y @!`Y&?  , a ! 3~F (a00B X`XX m&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX j&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX j&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX ! m&0  @!Y @!`Yv?  , a ! 3~F (a00B X`XX A k&0  @!Y @!`YJ?  , a ! 3~F (a00B X`XX ! k&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX A m&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX  k&0  @!Y @!`Y?  , a ! 3~F (a00B X`XX  m&0  @!Y @!`Y?  , a ! 3~F !(a00B X`XX,,, @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,- @B,D] H Y (@!(Y$|}, F! , a ! 3~F !(a00B X`XX,,- @B,D] H Y (@!(Y$}, F! , a ! 3~F !(a00B X`XX,,. @B,D] H Y (@!(Y$}, F! , a ! 0$L. `@>#0 0 `@0B `!@0B`!`A1Bc !a1B`XH( @,  $P#XX *X0#HX .` #` 2HHPa!0B`c $BY` ,X@,8PF! ,  `! eu3$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 ď";`=#e,(x 2B  `U XA0$L@. X0$0 0 bP@H@b!0Hc!p2Bc !H,@ @$dB@ L(T0# 3 ,\ #XX 0,Y (4B(P@!02Bb $B@X ,YP$,Y !BPX!00B d $Ld 00BX HRH% #PHa!0H@ X! $ HS," BRa!@ H!$ P9CX@! H 3P, ,,Y(,@YP@!0B ` @P P40C A! D(@ D, `@! `=#e,(x A3B  `U XA00Ba H! #`-H@L@Ab  0 `b!00B@2 !PA1Bbpdc@ , # "L# (T # , C@88@ !p\  H\xpH$`C@!!H 3h0 h,Y`,P!2B ` @ $p a 00% #@8h CX88@ P!(  `(8p X$@-ay8 C$@ 8sh C!X@ ! H $9 C!(@ !`D(`C!P2Bd !p1B`c (T0# ,` # . h8hPC 8shC $@ua4X@ !d p29 C !i # 8sh0C $@ua@ !l H69 C !q # $@ua@ @!x @<9pCh!aH $i}@r0,X , YP X!a!0B a $,Y,Y,PX! , `! `>#e,(x A2B  `U H90$L. H`!0 0 @b@@1B@aP$01Bb !$0# ,0# D$L #@ (@T  CH@ @!`X @,9 C !] #@!1Ba $l,X`,hPT! , `! 0$L. `@>#0 0 `@0B `!@0B`R!`A1Bc !a1B`XH( @,  $P#XX *X0#HX .` #` 2HPa!0B`c $BY` ,X@,PF! ,  `!  x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(f $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 `e"L`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(``gf8$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "] x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(``h7$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 |"n x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x -&A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x -&A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(iO!-$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 Q"`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x@ &A<0(`` x` &A<0(`` x &A<0(`` x /&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x ,&A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x` &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x /&A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x /&A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x ,&A<0(`` x@ &A<0(`` x &A<0(`` x ,&A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(``jD$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 " x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x 0&A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x ,&A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x@ &A<0(`` x ,&A<0(`` x` &A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x ,&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 2&A<0(`` x 2&A<0(`` x 2&A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 3&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x /&A<0(`` x &A<0(`` x /&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x /&A<0(`` x /&A<0(`` x /&A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x -&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x 3&A<0(`` x 3&A<0(`` x 3&A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x /&A<0(`` x@ &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x 5&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ &A<0(`` x &A<0(`` x` &A<0(``k.R$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 h" x` &A<0(`` x` &A<0(`` x 6&A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x 6&A<0(`` x 6&A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x ,&A<0(`` x &A<0(`` x 6&A<0(`` x 7&A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x 7&A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x -&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x -&A<0(`` x 3&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x 8&A<0(`` x &A<0(`` x /&A<0(`` x@ &A<0(`` x@ 8&A<0(`` x@ &A<0(`` x@ 8&A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x@ &A<0(`` x@ &A<0(`` x@ &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x :&A<0(`` x :&A<0(`` x :&A<0(`` x :&A<0(`` x` &A<0(`` x ;&A<0(`` x` &A<0(`` x 5&A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x ;&A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x -&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x -&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x -&A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x -&A<0(`` x 3&A<0(`` x 3&A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x O&A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x@ P&A<0(`` x &A<0(`` x &A<0(`` x R&A<0(`` x` R&A<0(`` x R&A<0(`` x R&A<0(`` x` S&A<0(`` x` &A<0(`` x S&A<0(`` x S&A<0(`` x &A<0(`` x T&A<0(`` x@ &A<0(`` x` &A<0(`` x` &A<0(`` x@ &A<0(`` x` &A<0(`` x U&A<0(`` x U&A<0(`` x U&A<0(`` x U&A<0(`` x U&A<0(`` x U&A<0(`` x &A<0(`` x &A<0(`` x U&A<0(`` x U&A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x@ &A<0(`` x` &A<0(`` x &A<0(`` x Y&A<0(`` x &A<0(`` x` &A<0(`` x &A<0(l#K$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "`` x` &A<0(`` x &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x` &A<0(`` x &A<0(`` x &A<0(`` x &A<0(`` x 3&A<0(`` x &A<0(`` x 8&A<0(`` x &A<0(`` x &A<0(`` x@ P&A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x` &A<0(`` x m&A<0(`` x n&A<0(`` x m&A<0(`` x n&A<0(`` x &A<0(`` x Y&A<0(`` x m&A<0(`` x m&A<0(`` x m&A<0(`` x n&A<0(`` x n&A<0(`` x m&A<0(`` x n&A<0(``m n$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 #"n;R$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "o$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 p"pœ$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 " ^~pjg.C`O:p#4 Ri)'/\wQJ K#`f uü"P&2D X6y#v٤18yԒ8 S!&PfzC`Xü Н==s`m v/ 7$PGoM]YH ;.p:H dX*$Kq ~]4 e J4J0/MP*hnzDɄ9m3@Wwj`0辖@m@-3l^ 9h_+7, Lp\:#FLQ$P+@-{h6j#@ @ApN<_)q@ 5!D4lDD+ b7d*49m:U퉨83W xi)PŒ"Y`vXZ}q> "eb# `p`e^2 `@F9 @A 0თN6I ` FX\Л.s0@ 0\ RY@*@j ] `;K"LP1u2T9j`_POrk R;rMDAkB1 #M`* $9x=)7ÔzL`b (nT’XMk" 2!నpa11@S`3A ؕ)3ܩP u[[a2@3LL %;Vò@Z[7'.(mu;z0(*Π5 YگudAWDuQRchhQm/p j#@"= L6pIkfAWw\pX@xRqu9Ц8@9Fo1$ ;%9 6pI;@F ʸ[x ,R("R  lu*b yEeޱ#U5>wNH`D@ XWtCRN7: bP yq@兄v@r'.%pz3S.M*h,dQ#72Z@+/}4*uɄ*B rXވQkr 9& \FQ`I^8NVj6@n)Ѕ\#rX&E빯xYUr1D "*l(`\tkrXo%]L=yNNXhsmADN%Q`FUmpDR4ĀЂ{)Ų =PiR u0.pC#IG|Y@SAԐHШ* b9CU"sģ \1)]'pOk`~f,0wM-`&{5`ahxU*Lۻa`vh=x3m]&+4 &`\+.ށ% FurŷH}4@,y p=:y5 $(08>u_(,C) o I>0pqT4>Pq?.$ 5@!iyF`Z@whD(Qg%-[rX` `X_7 0KdЈ8_6aYq2%"!x{-h%&11VpaMCog5@vT^`U\ia>rOP8S\ء>@YugaQC54(#1@j/DHy=@`!|)qk@ &pc'N MD>  z<*@mYň23@$$[y10Y808<` |}?0ClL`b Vu܄g}y' Q\4(/ @\;`T6tؽj"0cvb$)~+&YeP+0D ,n=\TQ 2.J ׮ـs6BLdL"y`?T0FC%i Q/:$U(@~g) y" i`gqY7xY{lgBrN7A7.NXt 7D^xgoP0 ṑ<0V:S!Ω+k4{9v-x2WDs 0=% Fx H#`<z9h 00f X`4n kF@1(0`vfG]  (>z"Š6 D=&wб`@ߔJ DR0a@`Fi=ٺ " A"8)pBcfpz?0pll'@Š \$ VOy\%@-/`ɀY4 9;:p΅C`I[`p!p!0 b(0p>z[9;iKg#Ȁ @T}.U%y 0^b X:@r \ (Y$[@`r@AhpRFrm0AV  =,@>d,AvaL ᤁ8!`KuK -TG&Mu@È4u&Pbo X&ѣz~2pB)@O:q !wcݤC, o@ ` 'Z44_!Q@zȸD u _ H 9`Eu p)`IPG`˯TTp Dp,(./N2@pŀRyIfIA `U,2.xHRm`5  mzЅH3V?0 @Q!w/IMoHU0%4PUi cH,,BAg ;\ ]mi<]s.p<ݓ*̼FXNd/'|rSL @?] y`t0u4\g b7#O1$ K730~yuDpXpZ7@3BP3 hAPA `Zu޴)hg7@S=8 $Ҙ4 y' qpLw %t@%X(yisV@w$H)" Ln NPQ?nm M0x5d! +6 EDðZ!R %[1*0R`9KM%r% ?%hO,h; sa<%`&=k^T-`ҸV8.P(|]!Q;! H60\\G}|`wD;l*\`VXmWǑ*k`@0X S)Kcb"3 z2;QN0cbD yX챝ZOa@@uR[lg'P|@40{%ke`]GH>@SPXb8`rPlm)Ђ2l]hiǯ{$; ?`W gw7&T ;aV|50mm{`8t< @f2yy ͈7c; -! @!:| ˬ4@t<X 'q3-d,fݤ xK! `)@URn8=PtPkF* M8`\r] sOkt@, 0;ie&Mx f @3]f` /[tUB6g@=J $0|yxde0C5 [ /X} V@($(p 3@>Fgٛ@RlZ` ]mU7@q $ S4 TB9Eй D=J ~dh+p :ٝ $Q|e6FI [`> 0u0P#e@D]`q\< NyE@0#qxPQ1G!u\ `Gxja m (udnW *} }TR ;S3ل!J ^Y7f)= {+0@\oTQ|-! *T@NJ$49;9R8@G q&\>πp@6̲|Qe(vlt*XHR1%r1z4)/&gj1|r A lwW0v`@ 3 50!\$Ҁt=zp1iH)`QR]Wo TI1π lIk!`"WD9+3P$Swf 9c3PѪg@1R Ox P\>`>ŀs`iI-d]1TtPV$ }H3@)*v5T L sjc-\x %R0a,`I< Җ&Y<(0-D2 #.pxx7P~"y$>1 h X ѫR/$vKԸG@ `s59SS./5+DR4|3f.) dj^{` oWr(!4wXqBD5`)~,y`z{1nlPI H(M HME bym:M@! 0Pfn~EohP-3 H L 'P}OUX?  [ +(?5-Gp@!4n]ME1/G'0 rh Q'0p @F4zkg ( V@B;rl9 H@buYu0aU>h@{]}A05* 㠆D$_cZH 5ЃG' @DÈtH BT`E7aIet(`Ryza nIpO,`kA+o"djish$RQݣ)]CZ0VApcEMlXC~mμ" 2tP^\`o< %C FncȀ5HP%@aN@P8e Cuk ? ``ympNR @w_'p C ] S*PJLCT4נ0x.`Zʑ3`GC`&Xq|3$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 {0"rf:T$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "sfN$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 BC"t\$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 O")u{?$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 ":vt8$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 <"Kwo3$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 0"\xVE$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 %"my-($ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "~ 5 ! (@ !d)pdrPC(@`dr(Y0C0@pdr0YC8@` dr8YC@@p(dr@YCH@`0dr HYCP@p8dr@PYCX@`@dr`XYpC `@`YPC p 2% `H x,"x@8BX080<0+J !@0(g B@!0BPq(*L+T 6!hB8x !B `!0B` x@0 `A,"0BY 00`0O@ 0a`0qAy/% b y@X  D|R ,@#$B@X$!HB @"D0+ @"D0+ @"``J@"@, H @!B !D0+ @  @a`C @!p  `A @` 08,X 0@`, 0X#Jx8B`V!B`b!pBx(\!@B``PU   `X &HH  @X $!D# pp p`@C p XH @`, 0p0@p\,  .XHp (X ,`P pH& p`0Cxp  BxX D 8!X pp pp`J x xX p!p8 Hp )$@X`, .` l `<@@X`X, $0X  pD& pp`Jp ` @X`,0R .P`(h00C p `X & p @X $!D HXu*0lB@ !B(p! B@@!0B` 8!E,"XDg8&8a p &Ѓ`0 D"Oq'Y &@`0(&‘p<qAy %%q^J@˰0$ ya\<8@X 0r>)X">)@Xp)@!PBh:!3~F8P`@!BHT!@B`Z!P$,@X 0:!\  ,x>!PB@X:!3~FP`@!Bp^!@BPV!0$,@X0!   X0! H PBJ@8 8! p XPp ! 0 BaI`8 8% p% pp ?#H +T "ID@D,"*L x@<@<, @ @08x% 0 0X@ 0! 8!8X,`8X@h,X? hp 8% 3&p\0 @.!pf!@B0l!pB Pr!B@x!B ! p% p ,X,@ Xr? @ 3&`X0 @,!pXH x 2&A<0(`` x 2&A<0(``V$ADDANSWATTABACKCLOSCONTCREADELEDIREDPRIEVEEXEXITEXTRFORWHELPMAILMARKMODINNEXTOPENPRINREADREPLSAVESEARSELESENDSETSHOWSPAWTPUUPDAWRIT$D  P 0!!!!0'*<+x+,d9d9:<? !T@@8A EHDSTTD` ,SPAWN$-NOTES$$CLI_SPAWN,!!P1COMMAND( 1 ADD,X!P1Add what(0!!P2ADD_P2(!!P3ADD_P3t ADD_OPTIONS,@$ENTRYENTRY0l&KEYWORDKEYWORD,%MARKERMARKER,(%MEMBERMEMBER,T%OBJECTOBJECTH`" , ADD_OBJECT -NOTES$$CLI_ADD_OBJECT$P10!(P2ADD_P2Object(#FILEFILEH``" , ADD_MEMBER8-NOTES$$CLI_ADD_MEMBER$P14!(P2ADD_P2 Member name(#MAILMAIL, %NOMAILNOMAIL,q8$NODESNODES4ql) PRIVILEGES PRIVILEGES8+ NOPRIVILEGES NOPRIVILEGES,q%ACCESSACCESS PRIV_TYPES0'MODERATEMODERATE@\.CREATE_KEYWORDSCREATE_KEYWORDS@/WRITE_REGARDLESSWRITE_REGARDLESSH`2 , ADD_MARKERP-NOTES$$CLI_ADD_MARKER$P14<!(P2ADD_P2 Marker name0!(P3ADD_P3NoteH`2 , ADD_KEYWORDh-NOTES$$CLI_ADD_KEYWORD$P18!(P2ADD_P2 Keyword name0!(P3ADD_P3NoteH`" , ADD_ENTRY-NOTES$$CLI_ADD_ENTRY$P10!(P2ADD_P2Entry0q &CLASSESCLASSES(4 #FILEFILE,` %NOFILENOFILE( #NAMENAME, %OBJECTOBJECT0'NOOBJECTNOOBJECTH, X d  0 ANSWERREPLY-NOTES$$CLI_ANSWER,!!P1FILESPEC0 &CONFIRMCONFIRM( #EDITEDIT0 &EXTRACTEXTRACT( #LASTLAST,4 $TITLETITLE0&NOTITLENOTITLE p  ,  @`  (ATTACH-NOTES$$CLI_ATTACH4!)P1PROCESSProcess<`H  (BACK-NOTES$$CLI_BACK$l P1$ NOTE_OR_REPLY_TYPE, $TOPICTOPIC( #NOTENOTE,$REPLYREPLY@` (CLOSE-NOTES$$CLI_CLOSED` , CONTINUE-NOTES$$CLI_CONTINUE(  ! CREATE0 !P1 Create what,!!P2 CREATE_P2 8CREATE_OPTIONS4lH) CONFERENCE CONFERENCE0&KEYWORDKEYWORDP`" 0CREATE_KEYWORD.NOTES$$CLI_CREATE_KEYWORD$P18!+P2 CREATE_P2 Keyword nameX`" 4CREATE_CONFERENCE(.NOTES$$CLI_CREATE_CONFERENCE$P1<!+P2 CREATE_P2Conference file0c0'RESTRICTRESTRICT,\$WRITEWRITE4) REPLY_ONLY REPLY_ONLY RESTRICT_TYPES0'KEYWORDSKEYWORDS0&MEMBERSMEMBERSD`T0 (DELETE@.NOTES$$CLI_DELETE_NOTE0!P1 Delete what,!!P2 DELETE_P2,!!P3 DELETE_P3 {"ba$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "DELETE_OPTIONS,($ENTRYENTRY0X&KEYWORDKEYWORD,%MARKERMARKER,%MEMBERMEMBER(#NOTENOTE,%OBJECTOBJECTP`T" 0 DELETE_OBJECTX.NOTES$$CLI_DELETE_OBJECT$xP14!+P2 DELETE_P2Object0&CONFIRMCONFIRMP`," 0 DELETE_MEMBERp.NOTES$$CLI_DELETE_MEMBER$PP18!+P2 DELETE_P2 Member name0&CONFIRMCONFIRMP`d" 0 DELETE_MARKER.NOTES$$CLI_DELETE_MARKER$,P18!+P2 DELETE_P2 Marker name0&CONFIRMCONFIRMPp2 0DELETE_KEYWORD.NOTES$$CLI_DELETE_KEYWORD$P18@!+P2 DELETE_P2 Keyword name0!+P3 DELETE_P3Note("ALLALL0&CONFIRMCONFIRM  @ pL`H" 0 DELETE_ENTRY.NOTES$$CLI_DELETE_ENTRY$lP18!+P2 DELETE_P2 Entry name,$CLASSCLASS0&CONFIRMCONFIRM0&CONFIRMCONFIRMH`x , DIRECTORY.NOTES$$CLI_DIRECTORY(!!P1DIR_P1("ALLALL,%AUTHORAUTHOR<0%,BEFOREBEFORE-- 00:00:00.00,\%BUFFERBUFFER,$CLASSCLASS8* CONFERENCES CONFERENCES0&ENTRIESENTRIES0 &KEYWORDKEYWORD0P 'NOTEBOOKNOTEBOOK,| %OUTPUTOUTPUT< $*SINCESINCE-- 00:00:00.00, $TITLETITLE, %UNSEENUNSEENX`h 4DIRECTORY_NOTEBOOK.NOTES$$CLI_DIRECTORY_NOTEBOOK4!(P1DIR_P1 Entry name,%BUFFERBUFFER,$CLASSCLASS0$&ENTRIESENTRIES0T'NOTEBOOKNOTEBOOK,%OUTPUTOUTPUT\`  8DIRECTORY_CONFERENCE/NOTES$$CLI_DIRECTORY_CONFERENCE0!(P1DIR_P1Node(4"ALLALL,`%BUFFERBUFFER4) CONFERENCE CONFERENCE,%OUTPUTOUTPUT@`! (DPRINT/NOTES$$CLI_PRINT$$TP10!)P2NOTE_IDNotes t DPRINT_TYPES,$PRINTPRINT("ALLALL,%AUTHORAUTHOR<0%,BEFOREBEFORE-- 00:00:00.00,\%COPIESCOPIES(#FORMFORM,%HEADERHEADER0&KEYWORDKEYWORD, %NOTIFYNOTIFY,8 $QUEUEQUEUE(` #SEENSEEN< $*SINCESINCE-- 00:00:00.00, $TITLETITLE, %UNSEENUNSEEN(#WAITWAIT<`X! (EVE0/NOTES$$CLI_EVE(!!P1BUFFER@` ,EXITEXH/NOTES$$CLI_EXITH`"h"! 0 EXTRACTSAVE`/NOTES$$CLI_EXTRACT08"!*P1FILESPECFile0!)P2NOTE_IDNotes(""ALLALL,"%APPENDAPPEND,"%AUTHORAUTHOR<$#%,BEFOREBEFORE-- 00:00:00.00,P#h$%BUFFERBUFFER,|#%HEADERHEADER0#&KEYWORDKEYWORD(##SEENSEEN<$ $*SINCESINCE-- 00:00:00.00,<$ $TITLETITLE, %UNSEENUNSEEN8`$%! EXTRACT_BUFFER_SYNTAX4$!*P1FILESPECBuffer0!)P2NOTE_IDNotes(,%"ALLALL,X%%APPENDAPPEND,%%AUTHORAUTHOR<%%,BEFOREBEFORE-- 00:00:00.00,%%BUFFERBUFFER,&%HEADERHEADER0H&&KEYWORDKEYWORD,t&%OUTPUTOUTPUT(& #SEENSEEN<& $*SINCESINCE-- 00:00:00.00,' $TITLETITLE, %UNSEENUNSEENDt''* ,FORWARDx/NOTES$$CLI_FORWARD(a!!P1TOLIST,'%AUTHORAUTHOR0'&CONFIRMCONFIRM( (#EDITEDIT,L(%HEADERHEADER(t(#LASTLAST0(&MEMBERSMEMBERS4() MODERATORS MODERATORS4 )( CC_PROMPT CC_PROMPT<H) , PERSONAL_NAME PERSONAL_NAME@) .NOPERSONAL_NAMENOPERSONAL_NAME() #SELFSELF0) &SUBJECTSUBJECT4* ( NOSUBJECT NOSUBJECT4H*( TRANSPORT TRANSPORT8* NOTRANSPORT NOTRANSPORT ***** t' ' t( (<`+ (HELP/NOTES$$CLI_HELP,!!P1HELPKEYS<` (MAIL/NOTES$$CLI_MAIL<`+! (MARK/NOTES$$CLI_MARK4+!(P1ADD_P2 Marker name0!(P2ADD_P3Note( @,! MODIFY0p,,!P1 Modify what,!!P2 MODIFY_P2 ,MODIFY_OPTIONS,,7$ENTRYENTRY0-6&KEYWORDKEYWORD,D-4%MEMBERMEMBER4x-h3) CONFERENCE CONFERENCE(-|1#NOTENOTE,-0%OBJECTOBJECT0-&PROFILEPROFILEH`D.h. , SET_PROFILE/NOTES$$CLI_SET_PROFILE$P14.80( AUTOMATIC AUTOMATIC8.* NOAUTOMATIC NOAUTOMATIC,/$CLASSCLASS,q,/%EDITOREDITOR<h/, PERSONAL_NAME PERSONAL_NAME@/.NOPERSONAL_NAMENOPERSONAL_NAME,/$PRINTPRINT00&NOPRINTNOPRINT4 ( TEMPORARY TEMPORARYT0 AUTO_TYPE40( DIRECTORY DIRECTORY,%UNSEENUNSEENH`0T1" , SET_OBJECT/NOTES$$CLI_SET_OBJECT$ 1P14!+P2 MODIFY_P2Object(#FILEFILED`12! ,SET_NOTE0NOTES$$CLI_SET_NOTE$1P10!)P2NOTE_IDNote4H2) CONFERENCE CONFERENCE82+ NOCONFERENCE NOCONFERENCE,2%HIDDENHIDDEN,2$TITLETITLE03&NOTITLENOTITLE,43$WRITEWRITE4&NOTE_ID NEW_NOTE_IDP`33 0SET_CONFERENCE 0NOTES$$CLI_SET_CONFERENCE$P1,|Mϋ/$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 s"4%NOTICENOTICE084'NONOTICENONOTICE0ch4'RESTRICTRESTRICT,4$TITLETITLE,4$WRITEWRITE4) REPLY_ONLY REPLY_ONLYP`D55" 0 MODIFY_MEMBER80NOTES$$CLI_MODIFY_MEMBER$h5P18!+P2 MODIFY_P2 Member name(5#MAILMAIL,5%NOMAILNOMAIL(6#NAMENAME,qH6$NODESNODES4q|6) PRIVILEGES PRIVILEGES86+ NOPRIVILEGES NOPRIVILEGES,q%ACCESSACCESSP`077" 0MODIFY_KEYWORDP0NOTES$$CLI_MODIFY_KEYWORD$T7P18!+P2 MODIFY_P2 Keyword name(#NAMENAMEL`8\8" 0 MODIFY_ENTRYh0NOTES$$CLI_MODIFY_ENTRY$$8P18!+P2 MODIFY_P2 Entry name0q8&CLASSESCLASSES(8#FILEFILE,8%NOFILENOFILE(9#NAMENAME,49%OBJECTOBJECT0'NOOBJECTNOOBJECT<`9 (NEXTN0NOTES$$CLI_NEXT$9P109NOTE_OR_REPLY_OR_UNSEEN_TYPE, :$TOPICTOPIC(H:#NOTENOTE,t:$REPLYREPLY,%UNSEENUNSEEN<:D;;! (OPEN0NOTES$$CLI_OPEN8;!*P1FILESPEC Entry name0!)P2NOTE_IDNote4x;80( AUTOMATIC AUTOMATIC,;$CLASSCLASS0'NOTEBOOKNOTEBOOK ;;< ; ; x;@`T<<# (PRINT/NOTES$$CLI_PRINT0!)P1NOTE_IDNotes(<"ALLALL,<%AUTHORAUTHOR<=%,BEFOREBEFORE-- 00:00:00.00,@=%COPIESCOPIES(h=#FORMFORM,=%HEADERHEADER0=&KEYWORDKEYWORD,=%NOTIFYNOTIFY,> $QUEUEQUEUE(D> #SEENSEEN<> $*SINCESINCE-- 00:00:00.00,> $TITLETITLE,> %UNSEENUNSEEN(#WAITWAIT<`~ (.0h8@HP*Xf`hpx$V.TzȐАؐBd{>Z (08@>HxPX` h6pbx0ZvȑБFؑnR6` (08&@nHPX0 `z h p x!2!T!!!!."`"""Ƞ#Р2#ؠV#n##{## $H$f$$ $($0$8:%@`%Hx%P%X%`&h>&p\&xv&&&&& 'R'''(ȡ6(Сd(ء(((( )b)))) )(@*0t*8*@*H +P2+XF+`r+h+p+x+,8,d,,,,J---Ȣ-Т.آ@.z.{...,/j/// /(00D08V0@0H0P0X$1`<1hR1pn1x111112P2223ȣ83УR3أ333*4R4444"5 H5(h50585@ 6H*6PZ6Xl6`6h67F7n77 7(70 88B8@8H8P8X8`9h49{pj9x9999:4:~::::;R;;;;.<d<<<=R= x=(=0=8=@,>H^>P>X>`,?h^?p?x???@(@<@P@f@~@@@@@ExhEEEF6FtFFFGfGGGGHbHHHI.IVIzI I(I02J8rJ@JHJP8KX`K`KhKpKxL@LvLLL(MVMMMM0N|NNNN$OFOvOOPLPPNORMAL* CMDKEYENACommand keypad enabled* NUMKEYENANumeric keypad enabled4 PROFILE_MODYour profile has been modifiedR PROFILE_TEMP;Setting temporarily changed; permanent profile not modified.MODERATEModerator privilege enabled2 NOMODERATEModerator privilege disabled2 ENTRY_ADDEDEntry !AS added to class !AS8KEYWORD_ADDNOTEKeyword !AS added to note !ASF MARKER_ADDED.Marker !AS for note !AS added to your Notebook@ MEMBER_ADDED(!AS added as a member of this conference.KEYWORD_CREATEDKeyword !AS created* ENTRY_DELETEDEntry !AS deleted.KEYWORD_DELETEDKeyword !AS deleted<KEYWORD_DELNOTE!Keyword !AS deleted from note !AS,MARKER_DELETEDMarker !AS deleted( NOTE_DELETEDNote !AS deleted,MEMBER_DELETEDMember !AS deleted* NOTE_MODIFIEDNote !AS modified,ENTRY_MODIFIEDEntry !AS modified.KEYWORD_MODIFIEKeyword !AS modified.MEMBER_MODIFIEDMember !AS modified2 CLASS_SET!AS set as your current class* INSERT_MODEInsert mode enabled2OVERSTRIKE_MODEOverstrike mode enabled:ENTRY_DELCLASS Entry !AS deleted from class !ASNSPACE_COMPRESS4Consecutive double spaces removed from personal name6 ENTRY_ADDED2Entry !AS added to classes !AS( OBJECT_ADDEDObject !AS added,OBJECT_DELETEDObject !AS deleted.OBJECT_MODIFIEDObject !AS modified MORE_INFO!AS@SRV_NEWPROTUPD&server is running new protocol !AS/!ASB ENTRY_ABORTED*Note will not be entered in the conference6 NOTES_WRFIL!UL note!%S written to file !AS8 NOTES_WRBUF!!UL note!%S written to buffer !AS:DIRTOBUF'Directory listing written to buffer !AS: DIRTOFILE%Directory listing written to file !AS(HIDDENnote !AS is set hidden* OPEN_CONFOpening conference !AS6 UPDATE_CONF updating entry !AS (file !AS)...< MARKSUPER(Previous marker (to note !AS) superseded@ OPEN_CONF2*Opening conference entry !AS (file !AS)...2 BEING_WRITTENNote !AS is being written. USING_EDTUsing EDT line mode editorHELPBUF Help buffer2HELPHDR Press CTRL/Z to leave promptsBHELPNXT/ Press NEXT SCREEN or PREV SCREEN to view moreJHELPASK16Type command you want help on (press Return if done): LHELPASK29Type command name, or ? for list (press Return if done): &HELPTOPuse the HELP command&HELPBOTfor help on commandsENTRYID Entry !ASNOTEIDNote !AS"TOPICS!UL topic note!%S$UNSEEN!UL unseen note!%S& TOTALNOTES!UL total note!%S&DATELINE !UL line!%S !#AS"ONECLASSIn class: !AS& MANYCLASSESIn classes: !ASTITLEID Title: !AS NOTICEID Notice: !ASN CONFCREUPD8 Created: !AS !UL topic!%S, !UL note!%S Updated: !AS(MAILSUBJNotefile !AS Note !ASFILEID File: !AS& MODERATORID Moderator: !ASOLD_ALREXISTS_A OLD_INVACCNAM$ LOCATIONID Location: !AS< CONF_BANNER&!AS Conference: !AS !UL topic!%S, READ_BANNER!AS Conference: !AS: TOPIC_BANNER#!AS Conference: !AS New Topic> REPLY_BANNER'!AS Conference: !AS Reply to: !AS& INFO_BANNER!AS Messages. CREATE_CONFCreating conference !AS, UPDATE_ENTRYUpdating entries !AS, GETTING_DIRGetting directory !AS( GETTING_NOTEGetting note !AS* EXTRACT_NOTEExtracting note(s)& PRINT_NOTEPrinting note(s)( SEARCH_FORSearching for "!AS". SEARCH_NEXTSearching for next "!AS"* DELETING_NOTEDeleting note !ASAUTHORID !AS "!AS"TOPICID Topic: !AS$ KEYWORDID Keywords: !AS( CONFERENCEID Conference: !AS27$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 )"ATTRIBID!#* !#!#!UL line!%S4 WRITELOCKID [X] Replies are not allowed(HIDDENID [X] Note is hidden: GRAPHIC_VIEW#<< Graphics content appears here >>< UNKNOWN_VIEW%<< Encountered non-ASCII text here >>2 DDIF_FORMATNote !UL.!UL is DDIF format< PS_FORMAT(!UL DDIF note!%S converted to PostScript8 USEFILEID#<< Text will be entered from !AS >>l COPYRIGHTWCopyright . Hewlett-Packard Development Company, L.P 1986, 2004. All Rights Reserved.@SRV_OLDPROTUPD&server is running old protocol !AS/!AS*NO_MORE_CLASSESno more classes*NO_MORE_ENTRIESno more entries*NO_MORE_KEYWORDno more keywords& NO_MORE_NOTES no more notes$ NO_MORE_TEXT no more text( NO_MORE_USERSno more membersH NONOTEBOOK3user profile information and Notebook not available2NOERRTXTThere is no error text to showN NEEDNBMODIFY6You must be using your Notebook to modify your profileBMSGSEND/Your message is complete. Proceed to send it? J ENTERINTRO5You may now enter the text for the introductory topicF CTRLZMAIL2Press F10 or CTRL/Z to finish sending mail message0 NOTREADINGYou are not reading a note*NO_MORE_REPLIESno more replies ANSWER_YESyes"EOB_TEXT[End of buffer]4 PRESS_PF2Enter the command HELP for help4 NOTES_HDR1HP Notes Computer Conferencing< PRESS_CTRLZ_N$Press F10 or CTRL/Z to add your note6SET_CONFERENCEConference has been modified2 ENTER_TITLEEnter a title for your !AS: 2 PRESS_RETURNPress Return to continue: 4 PRESS_ANY_KEYPress any key to continue: >DIR_HEAD* Topic !# !# Repl Title. ENDREQ_LISTEnd of requested listing$ NOTE_END_TEXT End of note TEXT_NOTEnote TEXT_REPLYreply,NO_NBCreating your Notebook (!AS)YOUR_SPD NOTE_COMPLETE,Your !AS is complete. Proceed to enter it? > NOTE_NOTEXT(Your !AS has no text. Really enter it?  NOREPLIES no replies ONE_REPLY1 reply" MANY_REPLIES !UL repliesN_OF_N !UL of !UL: ENTER_CTITLE"Enter a title for the conference: @ DELETE_NOTE*Are you sure you want to delete note !AS? & NOTENOTDELnote not deleted FINDING_HELP8 NOKEYHELP#Sorry, keypad help is not available: NOTESQADD%!UL note!%S added to job on queue !AS( REALLYQUITReally quit NOTES? , MAILNOTSENTMAIL message not sentNUMNOTES !UL note!%SSENDTO Send to: SUBJECT Subject: , PROFILE_USERProfile for user !AS MORE_TEXTMore... SHOW_MARK_1 Marker( SHOW_MARK_2 !# Note2 SHOW_MARK_3 !# !# EntryV SHOW_ENTRYA !# Unseen !# Topics Update status.SHOW_PROF_EDIT Editor and access: 0SHOW_PROF_DCLAS Default class: 0SHOW_PROF_PRINT PRINT qualifiers: .SHOW_PROF_NAME Personal name: .SHOW_PROF_AUTO Automatic on open: "SHOW_PROF_ADIR DIRECTORY$SHOW_PROF_AUNS NEXT UNSEENSHOW_PROF_NONEnone* ENDREQ_SHOWEnd of SHOW listingB CTRLZ_COM_RET)Enter command or press Return to resume: * SHOW_ENT_CONF Entry name: !AS* SHOW_ENT_FILE File: !AS SHOW_CLASS Class* SHOW_CONF_MOD Moderator: !ASBSHOW_CONF_RESA1' Access is restricted to joined members4SHOW_CONF_RESA2 Access is not restricted:SHOW_CONF_RESK1 Keyword creation is restricted>SHOW_CONF_RESK2# Keyword creation is not restricted SHOW_KEYW_1 Keyword( SHOW_KEYW_2 !# NoteSHOW_MOD, SHOW_MOD_NODE Node list: !AS, SHOW_MOD_USER Access list: !AS,SHOW_USER_MADR Mail address: !AS,SHOW_USER_PRIV Privileges: !ASSHOW_USER_JOIN( SHOW_NOTE_HID Note is hidden, SHOW_NOTE_VIS Note is not hidden8SHOW_NOTE_REP1 Further replies are prohibited.SHOW_NOTE_REP2 Replies are enabled.SHOW_PROF_PERM (Permanent) RSHOW_USER_FULL8 !# !# !# PrivilegesRSHOW_MODU_FULL8 !# !# !# PrivilegesNMF no more files NJUno joined members*NO_MORE_MARKERS?no more markers>SEARCHF1+No more notes found containing string "!AS":SEARCHF2&No notes found containing string "!AS"$DIR_CONF Conference file8DIR_CONF_TITLEDirectory of conferences on !AS N_TOPICS !UL topic!%S6 DIR_NB_CLASSDirectory of Notebook class !AS> CTRLZ_CANCEL'Press F10 or CTRL/Z to cancel your note& REPBUFINFO1Note !AS by !AS, REPBUFINFO2Note !AS by !AS "!AS"( NMORELINES!UL more line!%S..., READINGCONFConference !AS is open4 WILLNOTSENDMAIL message will not be sentWORKING< FILECREUPD'Created: !#AS!#* !12AS!#* Updated: !#ASH ENTERNOTE3Enter your note below. Press CTRL/Z when complete.ANDTOAnd to: 2 SENDANYWAYDo you want to send anyway? SPAWNKEYSPAWNCALLKEYCALLEDICALL , CallableEDISPAWN, Spawn SPELLSELECT SPELLBUFFER SPELLSTART SPELLDONE& SENDING_MAILSending mail...LSENDBOTH9!UL error!%S while sending message, !UL sent successfully0NONESENTNo messages sent successfullyB SENT_TO_ALL+Message successfully sent to all recipientsFSHOW_CONF_RESW1, Notes may not be written to this conference0SHOW_CONF_RESW2 Notes may be written TEXT_TOPICtopic. MEMBERS_OFMembers of conference !AS0 DEF_SUBJECTDefault subject is: "!AS". MAIL_SUBJECTConference !AS Note !ASL TEXT_APPEND5The note will be appended to any text you enter above(NEVER_ACCESSEDnever accessed<EXPIRED*your license for this software has expired ANSWER_NOnoB WRONG_ANS-Don't understand !AS; please answer YES or NO< CREATEBUF'Buffer !AS does not exist. Create it? &WRITEBUFWrite buffer !AS? SHOW_PROF_DEFDEFAULT" ASK_YESNO (Y/N) VMODPRIVSByou are still a moderator by default -- check your membership list* SHOW_ENT_OBJ Object name: !AS CANCELLED -Cancelled-0SHOW_CONF_RESR Replies may be writtenCCCC: 4 MODERATORS_OFModerators of conference !ASH ALREXISTS_A1access name !AS already exists for another member, INVACCNAMinvalid access name !AS2 ILLCTXADRinvalid context block address(WRONGCTXinvalid context block& INVITMCODinvalid item code( INVITMLENinvalid item length, MISREQITMrequired item is missing$ NOCURNOTEno current note6 CANTCONTINUElast request is not continuable> FAILGETVM*failed to allocate required virtual memory& STRCOPYERRstring copy error. ILLNOTEIDinvalid note specification NOSUCHNOTE SRV_NOINIT4 SRV_INVSEQinvalid sequence of operations6 SRV_NOCONTEXTrequired context not providedSRV_NOUSERNAME SRV_INVITEM: CREPRIJOB%error creating print job on queue !ASPREMEOF6 NOPRIVDEL_N no privilege to delete this note NOPRIVWRITE_NJ SRV_UNRECPROT2unrecognized protocol -- server is running !AS/!AS NOFILEOPEN ALREXISTS_OLD NOSUCHENTRYL MUST_OPEN8you must use the OPEN command to open a conference firstDMUST_READ_REPLY)you must be reading a note to reply to itBMUST_READ_FORWA(you must be reading a note to forward it6NOT_ENTERING_NOyou are not entering a note4NONOTE_SPECIFIEyou did not specify a note0 ERROR_MAILINGerror mailing message(s)6NOPREVIOUS_NOTEyou have not read any notes8ALREADY_IN_EDITyou are already in the editor6ALREADY_IN_NOTEyou are already in HP Notes>MUST_COMPLETE_M$you must first complete this messageBUNREC_CALLUSER)unrecognized CALL_USER code = !UL !-(!XL)& NO_SUCH_CLASS no such class. NO_SUCH_ENTRYno such Notebook entry*NO_SUCH_KEYWORDno such keyword$ NO_SUCH_NOTE n*$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 *"o such note8 NO_SUCH_USER!no such member in this conference2 NOMORE_RECALLno more commands to recallH EDIT_OR_FILE0you must either use the editor or specify a file8NOMAIL&please use the SEND or FORWARD commandN ERRORWRITE8cannot add your note to the conference - type SHOW ERROR2 NOMAILPROCcannot start MAIL subprocess&IFFinvalid notefile format6NOPRIV$no privilege for attempted operation0 CTRLC_CANCELcommand cancelled by user ERRCREKEY ERRADDMARK ERRADDMEM ERRADDENT ERRDELENT ERRDELMARK ERRDELMEMBER ERRMODNOTE ERRMODENTRY ERRMODKEYWORD8 ERRACCLIST#error in access list for member !ASBNOWRITE0no privilege to reply to this note (set nowrite)> NOSUCHMARKER'no marker named !AS for this conference6 NOPRIVMOD_N no privilege to modify this note. ALREXISTS_Cclass !AS already exists< ALREXISTS_E%entry !AS is already in your Notebook0 ALREXISTS_Kkeyword !AS already exists@ ALREXISTS_U*!AS is already a member of this conference0 ALREXISTS_Mmarker !AS already exists(NO_SUCH_MARKERno such marker6 NOMEMBERS"no members found in the conference< NOTMEMBER'you are not a member of this conferenceP BASEWRITELOCK8only topic notes (not replies) can be modified for writeF NOWRITE_CONF/no privilege to write or modify this conference SPELLERRORH PNINVCHAR3first character in personal name must be alphabetic> SENDNOAUT)you must be reading a note to use /AUTHOR. INVCLASSNAMEinvalid class name !ASF CLASSNOTFOUND.no entries found in class !AS in your NotebookDFORWLOOP0infinite forwarding detected sending to user !AS* BAD_DIR_LINEbad directory line: NO_SELECT%there is nothing from which to selectD NOTE_NOCONF.this note does not have a conference to select* UNREC_EDITORunrecognized editor& NO_CLASSPno class specified> NMTHISDIR)no more entries to read in this direction( NO_NEW_NOTEno more new notes@ CAPTIVE_SPAWN'you cannot spawn from a captive account@NOTHING_TO_SET&you have not specified anything to setJ NOHELPTERM5sorry, keypad help is not available for this terminal& INVENTNAMinvalid entry name& INVCLANAMinvalid class name. INVENTRYNAMEinvalid entry name !AS>NO_ENTRY_IN_CLA#no such Notebook entry in class !ASDALREXISTS_IN_CL*notebook entry already exists in class !AS0 NOMARKERSno markers found in Notebook4 NOKEYWORDSno keywords found in conferenceH NOLICENSE3your software license does not allow this operation NOFILEfile not found(NOEDTerror in EDT activation$NOENTRYno entry specifiedBNOEVE2for now you can't call EVE in hardcopy mode, sorry&TPUERRORERROR = !UL !-(!XL)PENTALR_IN_CLASS5entry has already been added to all classes specified@NO_RANGE_ALLOW'note-range not allowed for this command(NOTINCMDnot in command window\CONF_REPLY_ONLYBconference is set to REPLIES only. No privilege to add new topicsB USRNOTADD-user not added, access name must be specified( INVKEYNAMinvalid keyword name2INVKEYWORDNAMEinvalid keyword name !AS( INVMRKNAMinvalid marker name0 INVMARKERNAMEinvalid marker name !AS( INVUSRNAMinvalid member name. INVUSERNAMEinvalid member name !AS6 INVNOTESPECinvalid note specification: !ASBRANGE_ONE_TOPIC(note-range must be within a single topicD RANGE_TOO_BIG,note-range too big for specified new note id,NO_TOPICtopic !AS does not exist. ALREXISTS_Nnote !AS already exists, NONOTESMODno notes were modifiedBMEMBERNAME_NODE'member name may not include a node name*CONFQUALconflicting qualifiersB OPRNOTSUPCNF*operation not supported in this conferenceLBADTIME:invalid absolute time - use DD-MMM-YYYY:HH:MM:SS.CC format( INVOBJNAMEinvalid object name0 INVOBJECTNAMEinvalid object name !AS*NOATTRIBno attribute specified&NOOBJECTno object specified" NOSUCHOBJno such object0LWKERRORLinkWorks Reported Error: !ADV NOLINKLICENSE>you are not registered to use the HP Notes Server on node: !AS< NOTNETWRK'server not running in a network processD WRONG_ACCT.server not running in the NOTES$SERVER accountB SRV_INIT_ERR+server internal error during initializationN WRONG_LMF:the !AS license is not supported under this version of LMFNOTES9p9pP9PP(:PX:p:@%:@%':'C;C0F;0FO;OQ0<Q TH< T ]`< ]`_<`_g<gpk<pkpq=pq`==@`>@> > (??`?`?@ @@H@@@@p@p@A A P AP  A  A 0 A0 0B0@Bp&Bp&p-Bp-A(CANCN _C _`_D`_fDfk Ek}HE}E`F(GhGG`G`8H0H0HpHpII J 0J@`J@ J  PK !hK!88L8@>M@>CHMCEMEPFMPFphMph0iN0ilOl0OЉHOЉXOxOOOНOНO P УPУ`0P`HP`PxP0P0PpPpPPPPQ` Q`8QPQhQQQPQP@Q@0Q0RR8RHR hR RRR@ S@8S`S&xS&-S-5S5U TUdTdPpHUPpUЇUЇТVТV@V@pWpPWW X@`X@X`X`Y Y0Y@@Y@`XY` pY p Yp YY@Y@YpZp "hZ "P#ZP#&Z&iicX$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 u" p-[p- 20[ 2?H[??[?I[I[\[\]\^0]^^X]^0dh]0d@f]@fi]i@~]@~x^^^Pp_P _ (`h``aXa a b`b` c c+(d+P0dP0@0e@M`eM`Se`STeTkekwfwz@gz}pg}ggHh hh 0h0Hii`(j`jpkkk l pm 'm ''m'pAnpApBopB Co CD oD MHo MPjoPjp`p`p8qqq@(r@`8s`PsPsP tP@Pt@xt0u0P0uPP(PuP(2xu2CuCfXvf0rv0r00w0wx0x{|p|P|P | }#P}#P+}P+`3}`3`:(~`: =x~ =P@~P@J~JU`U^^PgPgPnPPnpЃ0pHpp`px  `؄`@ @8 P `p`Ѕ  (` @` P xP @ @ . І. 0D 0D pJ pJ PO PQ V 0V Z H Z @a `@a @e x@e 0l 0l `w `w x x ` ؇` @ p `p x P P 0 0  ؈ С С  8 p Xp x 0  H @ p@   `   p Ȍp 0 0  h   0 0  ȍ $ $ % % 0( 0( ) () @+ h@+ . . / / 2 2 4 Ȏ4 06 06 9 9 @ @ A hA pE xpE G G H H @T Џ@T U U V HV W pW PY PY 0\ 0\ `_ `_ p` `p` a a a a pb ؑpb c c c (c d 8d h P h @ h@ P   H @ ȕ@ 0 0 P P X p  0  X    З 0# 0# 5 5 < H< F pF I I PR ȘPR 0W 0W _ P_ P` xP` a a a a b b 0d ؙ0d d d e e f 0f `g H`g h `h `l `l `u `u { { @ P@ ` ` ` P` @ @ М ( p 0 0 P HP ؞    8  H  ` p p  Р   @ h@ @ @   p( p( + + 6 06 @> @> E E J (J N xN `T `T U U PV ȣPV W أW X X `Y `Y Z Z pZ pZ 0[ (0[ \ 8\ @b H@b b hb Pc Pc d d e e f Ȥf h h h h @j @j pq (pq s Hs Pv `Pv x xx 0{ 0{ } } ~ ~  إ   0 P ` p` ` ` 0 Ц0 0 0 @ @  0 P p @ @ @ @ ` Ч` ` `  0 (0   p p  0 @ `@ P P @( ة@( ) ) `/ (`/ ? p? @D @D L Ȫ L `N `N T 0T Y xY pZ pZ ` ` e e l l t ht @x @x | Ь| } }  0 @0 P 0 h0 0 0  0 P xP   0 Ю0 P ` h`  /$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 Y"  8 h 0 X h` ` ! !'8'p)Pp)+h+--@.@.../س/P0P0111 1282p3Pp3@4h@45566`7`78ش899`:`:;0;;H;p<`p< =x ===>>p?p?@@ص@@AAAAB BC8CPDPPD Eh EEEGG@H@HHضHIIpJpJ@K @KpS8pS@Tx@TUUUUVVPXطPXYYYY`Z0`Z[H[[`[p\xp\ ] ]]]p_p_ ` ```aa0b00bbHbc`c@dx@dddeePfPfgعggghhPi Pi j8 jjPjlhloo t tuuvȺ`   @ ػ P   " $a_ "aA0"a 9 =            0#a & + R U m p $aJ0,a *  *  *    )  #a $ah0#a  !J O !  !  !  !  !  !  !  !  !  !  !           #a0*a 7 9 (  (  (  "a "ao0*a (  (  !  !  "ai0$a !  !  "a0#a !@ C !  !  !  ! 0#a !W [ !  !  !  !  !  !  ! 0 *a !d g !  !      (  (  (  (  (  (  (  ( 0$a "  "  !  !  !  !  !  "a0$a "  "  "  "  "  "  " 0+a  !  !  !  !  )  )  )  )  )  !  !  ! !  " $a aB0%a #1 4 "E I R U y | # 0*aM (  (2 70&a !+ . #  #  & & $a0 &a $  #    #  !    #  #  $   0&a "  !  !  "    ! 0,+a #  !. ) ) "40*a (" % (  ( 0*a (" % (  (  (  ( 0$a !C F !_ d !  " 0$a !  !  ! 0 *,a !  $  $          "  "   0,a &  "  !  !  % 0%$a   "    "  !  !  "  "  "  "  "  "  "    "  "  "  !)0 ,+a #  "   0 *a ' 0 $a   "      !  !  !  !  !  !  !  "  !  ! 0$a     "  "       0%$a   "              "  "  !  "  "  "  "  "  "  " 0$a " 0*a (" % (  ( 0*a (" % (  (  (  ( 0$a !C F !_ d !  " 0$a !  !  !  !  #a80*aP ( (  (1 40"a % ( Q U  0%$a   "  "  "  !  !                !       0*a   "  !  ! 0 *a # 0 *a $d g % 0'a $N R $  "  % 0 $a   "      !  !  !  !  !  !  !  "  "  !  !  "a0,a     "      !  "  "  "  "  "  "  )  )  *  *  *  *  * 0%$a   "              "  "  "  !  "  "  "  "  "  "  " 0$a " 0*a "  "  #a^0#a8 2 70x$a  "] a "y | "  "  "                              !  !  ! ! !  #a"0#a  "a  !a1 ,+a ,+a +a0"a2  % ( #a !ah "ab #aM #aG #a +a #a $a %a *,a #a #a %'a %aT %a $a %a $a` (,+a $aE  *a -a֛9$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 L"(  *aM (,+a !a$0*a9 ( ! (# (0+a #  #  "  "  "a "a0+a )  )  )  )  )  "aR0*a (~  #a-0$a  0-a (  +W Z +] ` * 0#a !4 7 !  !  !  ! 0+,a  ( + (  (  (  (  (  )  )  )  (  )  *  *  ( ( ) ) ) * * 0 -a +1 4 +: = +P U +v y +  +  +  +  +  + 0,a *C F *P U *m p *  ( 0K,a *@ C *M R *^ a *v y *  (  (  ( 0,a *C F *^ a * 0R-a  +O R +\ a +m p +  +    +  +  )  )  +  + 0M-a +F I +S X +d g +|  +  +  +  )  ) 0,a *  * 0-a +@ C +[ ^ +  ) 0-,a j m *  * 0 -,a m p *  *  *  *  *  *  *  *  *  *  *  * 0"a   4 7 @ C    0-a +  +  +  (  )  ) 0*a~ (  (v x !aq #a> !a; !a$ !a *a *a *aw *aE *aP !aG0*a (l o ( 0,a *  *" % *? C *j l *|  *  * 0+a ): = )g j ){  )  )  )  )  )  ( 0*a6 (  (. 10*a (B E (` c (m o $a "a0"a b f                           ">0*a 3 6 g j     (  (  (  (  (  (  (  (  (  (  ( 0-a +  +G K +N Q +x | +  +  +  +  +  +  )  (  )  +  +  +  !a-0*aT (  (? C (K O # "a0*a_ (, 1 (R U0*a (% ( (I L (|  ( 0,"a O R |                             0"a           *a0 *a (  (  (  (  (  (  (  (  (  (  (  (  (  (  ( 0*a (  (F H (` d (  ( 0*a (  (  (  (  (  (  (  (  (  (  ( 0*a (" % (  (  ( 0*a (" % (  (  (  (  ( 0$a !C F !_ d !  " 0$a !  !  ! 0$a "= @           "   0%$a  !  "            !  !  "  "  "  "  "  "  "      !  ! 0 *a "j m # 0 $a  !  "                !  !  !  "    !    !a0$a     "  "                 0%$a   "              "  "  !  !  !  !  !  !  ! 0*a "  " 0"a % (  0"a  "       $&a #a>0 %'a w |       "    "  "  "  !  "  !  !  !  "  #  !  !  #        "  #  " 0*,a ($ ( (E I (W [ (  (  (  (  (  (  (  ( 0,a + .  0,ax  0*a (C E (H K0"a " % F I f j                       # %a0%a "X [ "| 0&%a         !  "  !                "  ! 0$a           !   0-,a *- 1 *N R *` d *  *  *  *  *  *  *  ( 0 $a !O R !k p   !  !  !      "  !      "  "  "  !  !  " 0$a !  !  !  !  !  !  !  !  !  ! 0#a ^ a y |0$a !@ C !  " 0$a  F I !  !  !                    "    !  !  !  ! ! 0*.a !I L !e j "  "  "  +  ,  *  (  (    +  *  *  *  *  $a*0 $a "d g !  !  !  !  !  !  #a%0*a    !            !  !  !  !  !  !  !  !          a0 a!0"aG 4 70"a            0*a  (" % (  (  (  (  (  (  (  (  ( 0*a  (" % (  (  (  (  (  (  (  (  (  (  ( 0$a !C F !_ d !  "  "  ! 0$a !  !  ! 0+a ![ ^ !  !  !  !  ! 0*a (j m (  (  (  (  (  (  ( 0$a "  "  !  ! 0$a   !  !  !  !  "  "  "  "  "  "  "  "  !  !  !  "  "  ! ! ! ! ! !  0#a !@ C !  !  !  !  !  !  !  !   0*a      0*a ax$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "9       0%a !  " 0"a  0 $a "          !  !  !    !  ! 0$ab * . G L0*a3 (" % (+ .0#a  0"a  K O            0*a (. 1 (  (  (  (  (  (  (  (  (  (  (  ( 0$a      !  !  !  !  ! ! ! ! 0*a (C F (  (  (  (  ( 0*a "g j "  "  "  "  "  "  (  (  (  (  !  !  (  (  ( 0#a !L O !  ! 0$a " 0"a!f                                                                                                                                                        ! ! ! ! ! ! ! !0$a     !  "  "  "   0$a "  "  "      "  "  !a0,a (C F (` d (o s (  *  * 0$a " 0$a " 0*a (1 4 (  (  ( 0*a (1 4 (  (  (  (  ( 0$a !C F !_ d ! 0$a !  !  ! 0*a (* . (g j (s v0$a ! 0$a "               0*a (" % (  (  ( 0*a (" % (  (  (  (  ( 0$a !C F !_ d !  "  "  ! 0$a !  !  ! 0%$a      !  !  !    !  !  !  !  !  "    !  !  !  !  !  !  !  ! 0$a   !        "  "  " 0$a     !  !         0%$a&     !  !  !  !  !  !              !  !  !  !  !  !  !  !  ! ! ! ! " " " " " " "    $a #a1 $ah0#:0"a/0!a0$a.0"-0!%0"a;0#<0#<0#<0#<0#<0#<0#a40#ad0'a0'a0$aF0 1a %a %a0+a #  #  # 0+a "J N "      +a  +a  +a +a -a 1a "a "a "a 0a "a "a>0 ,a ( + @ C       *  *  *  *  *  " $a $aY # %a # %a # %a # %a # %a # %a # %a # %a0*a (q v (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  "aJ0$aq a d0%a . 1 [ ^ "  "  $a$0N$a1 " $ "  "              "  "  "  "  "  "  "  "  "  "  "  "  !  !  !  !  ! ! ! ! ! ! ! ! ! ! ! ! ! ! !  !  "      "  "  !  " 0#a!     "a0%$a "R T "W Z0%'a !      ! 0,+a !  !    # 0*a 7 :   $a !a> #a &$a #a" ,+ak0%aM I L #a; ,+aq #a0 #a #aM #aM # %a0#a !> B !e i !  !  !  !  !  !a& #a0#aG   4 7 #%aN01#a !  !  !  !     0#a;   4 70#a5 - 10#a#  "0#aJ !$ ' !E I0#a $ ( a d  0#a    " Q T j m  0#a0  0#:  0#a  ! 0#; ! 0#a0 ' * "( " $a4 *a0Y3a p s   1  )  )  /  /  /  /  /  0  0      *  /  /  1  1  -  ,  . 0#a   [ ^  0#a   v y  0#a   !r u !    !  !  *a04a !b f !  !  !  !  2  ,  ,  (  (  0  -  1  1 0#a !* - !P T !  !a0K"a          0]#a !2 6 !  !  !                 0#ak   I L0#$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 U"J aY   I L0Z#a !0 3       #a? $a_0#a !  !           0 #a !' *    0#a !| 0#a    0"a          0%a #  #  !a0#a !' * !T X ! 0#a !' *0 #a !, 0 !N Q ! 0#a  0 #a # ' !  !  !  !  ! 0#a !  !  ! 0%a - 0 #a! #a! #a! #a! !aM #a!0#a( #a! #a!0#a> !5 :0#a g j  0 #a H K   ! 0#a !* - ! 0#a !* - ! 0#a;   . 1 !3 70 #a !* - !N Q ! 0#aw  ! L O ] `0#a !* - !  ! 0#a !* - !  ! 0#a !' *  0#a   y |0#a   y |0U#a              0#a 3 6 Y ]       ! 0#a} 4 7 c f0#a - 0          0G#a 6 9 < ?              0~#a 6 9 p r                       !  !  ". ".0w#a !D H !] ` !  !  !  !  !  !  !  !  !  !  !  !  !  !  !  !  !  !  !  ! 0#a : =  0#a !8 < !] ` !  ) "a]0 ,+a0$a ! " 0$ah "0 1!2 678 ;!<"= ?@A0,a ()*  ()*  (I)J*K OPQ %a !a^ !al0&(a $  $  $  $  $!     !  !  #a0+-a ()  ()  ()  ()   ) ()    #a0"a F I  0+a b(c)d fgh o(p)q uvw )  0*a   &a !a# !a8 !aA !a8 !7 != !4 !a# !a& * ,a ": "1 "a# "aJ #a# "aD ": "aG  ,+a ,+ac ,+ac ,+ac ,+ac ,+ac !a/ "a5  ,+a0 0a0 0a0 1*a0 2/a0 2a0 2*a0 *a0 )aW0 %a*0 )aN0 )aH0#0 #a:* !a, a0*a\ (B F #a"0*a (  (  (  (  (  (  (  #a&0!a"0#aw ] a0#aw ] a0 #a    0#a               #a0#a !+ .     #a!0&#a m p        0#a !+ . !O R  0#a  0'#a I L           #ah0&#a m p        0#a     #a!0#a !+ . !O R  0#a  0'#a I L !  !  !  !  ! 0'#a I L           #a0#a   #a!0#a !+ . !O R   !aM #a!0 #a ! 0K#a !  !  !  !  !  !  !  #a0#a     #;0 #=  0 #a !^ a ! 0b#a !m p !  !        #a0#a d g   #a!0#a 4 7 X [  0#az !+ . !i m r v0#aS !A F K O0#aY !+ . !H L Q U0#az !+ . !i m r v0*aJ (1 40"a   0#a !  !  !  !  ! 0#a ! 0 #a 1 4 s v       !  ! 0#a {        "4 #a)0#a              0#aq 3 7 d g0#aq 3 7 d g0O#a        0#a; 3 7 *a B"a #aV &au0"aJ B F "> "> "> "> "> "a# "a# "a# "a# "a#0"aJ B F "> ">0"aJ B F "> "> "> "> "> "> "a# "a# "a# "a# "a# "a# "a# "a# "a# "a#0"aJ B F "> "> "> "a# "a#0&"a         "a# "a# "a# "a#0"aJ B F +$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "[  "> "> "> "> "> "> "> ">0"aJ B F "> "> "> "> "> "> "> "> "> "> "> "> "a# "a# "a# "a#  "8 `/+aa `*+a `$)a!  "8 #$aP  +*, - . / 0 1 2 3 aa0 ,+- . / 0 1 2 3 4 aA)60 ,+-./01234a5a<)"(  ,+-./01234a)aQ0,+-./0aO #))7>0,+-./aQ0) 1*a02134567 8 9 :;<=a3) *!+",#-$)*+,-.5/6)7*8+9>?@ABDNS$RTL 8Ph`7 P8h(@Xp(@0H`xx7277788X 8888P8H8888P`8@888@%8 0F8@88888t88P88\T8888888|8`8888@8p8 8@  8 $D88 88 88 f80 P`p80@8 8C8(Hph808Tx|h`Dpt8 d$088Xl888Љ8 8d88t8`8888p8PP x<8Xl888888P 88h`U8 d8 Pp8( Ї8H Т8h 8 8 8 0888P 8p 8 8 80PpP#8P?8p@~8 $<`8dP?8[88^8X^8xI8\8i8!,- 88d588p888`888888888 8+888`88 8@ 8C 8  8P 8 8^ 8Pg 8Pn 8 8 8 8N88k8p&8}888p88@8`8 888@>8!8P+ 8`3 8 = 8P@ 8p 08@h` 8P`h l 8p t PO x 8|  P  0 @   J 8 8 8 @V             0   8@   P 8$ ( p` , 0 p  8 @  P ` p           0  8888$$R8@ 8 8+$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 >&"l 8  8(88 0 8 8% 88x88(@88$ 8A 88d 8,`8Z8 8`x0XqP 8 8P0d 8H88p88 pE 8H 8@T 8V 8W 8PY 80\ 8p` 8a 8a 8c 8pb 8 8 8 8`_ 8 8@ 8 8 8 80# 8I 8_ 8P` 8a 8a 8F 8`l 8`u 8h 8 { 8 8@ 8 8 8` 8 8` 8@ 8 8 8 8 88@8@(8`/8d 85 8P8?8T8 L8Y888088e 8f 8`8@x8t8|88 88`8 8e8< 80 8 8 8}80 8 8)8PR 8P 8 8888888 88 8U 8G 88` 88 9 888 88 h 8@ 8 88T 8W8`T8 U8X8Z8`Y8PV8pZ80[888)Pc88)888e8)f8)8888h8 *~8p*88(8*8+@88+TX\X` ,`8(,@8P,8(  $,08,g8P08/8.8@.8-8181828p38@48`7868;8 =8p<8;8`:898=8p?8>8@K8@@8A8A8B8C8PD8 E8[8[8`Z8Y8H8@H8G8I8pJ8pS8@T8U8U8p\8Y8PX8g8e8d8@d8c8Pf8b80b8a8`8 `8p_8h8Pi8 j8PpPF82x,008H30L8`<pt 848(4H0@<DLpP4884 ,,8!8@dt|X(<@HPX`hpxHPl88$ 807'8P8 8P 8 8`5`:ԴģM`K` /`91`3`=`?`O` A`` :`%`#` I``%`#`+I`@`%`#`I` `T#%`#` I` `IS#'%`#`8I`@ '`59`;`C```]E`@@LIBOTSLIBRTLDECC$SHRSYS$BASE_IMAGESYS$PUBLIC_VECTORS* pP pNpI\^$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "}  p p( pP pMHp p*  p x ph ppH6 pt6pL4 p, p/( p' p p% p4x p8 p( p ppv pCx pu0 pp p` p( p7 p p0 p9 p p p  pLx pBh pGX pMP pMP p p` p}pA pz p{p p0 p px pvh p;8 p2 pA*p@ pn* p) p) pD) p)pC)px) ph) pX) pH ph p7 p 4 p* p*p@h*p`*pkX*pjP*pqH*pn@*pm) p: p pDh p8 pm p\ p~ px pw p p( ppp pEX p8 p p$p p= pHp pb8 pt( p{ pn pu pv p2x pP p p6 p p plX pV p` p8P p7 p p1 p# pJ p p p p p@ pT poPo o(o0oTHP`oHoooo @%8o @0FXo@ooooo o$oPo@o PHoPoo8oDooooo(o0o8oPo`dmh`mhdmhm@lmppmtmxm|mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm mmmmm mooooo  8o Hopo xop oo0ooofoo@oP o(o`0o $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 ?" 8oP@oPHoPPoPXo P`o0ho0poPxo0Po0o oo@Po`PopPoPCooPPoPoP oP(oP0phHo0`o`ho`po`xoT`o`o`o`ot`o`o`o|`o`o(`o`o`o`o`o` ol` op`0 o`8 o$`@ o `H o ` Љ o  op o ` op o p oD` oL` o`( o`@ o$`H o8`` oP`h oD`p op op oPP  optm``|md`mh` o| o o  o oH o(P h oP  o oh o` o o o0 o o o o@ U o  o d o ( Pp@ o( H Ї` oH h Т oh   o   o   o  o0 oD o o oT oX8 o,@ oTH oP h oP  o o o o o o o  p  o   o o\opo o(o0o8o@oHoPP#hoPp?op@~oooo4oLodo|ooooPo?0o8[Po8X^poXx^oxIo\oiooo ooo o<(o8ol@omHohoodomm50m4mp8m<m@mDmHmLmPmTmXm\m`mdmhmlmpmtmxm|mmmmmmmmmmme$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 ͚"HOT^!WwMF'RfjH]:29X>'<`@X-_&H2xv$mR6x,+Æ ^K#q22Q*%jH5غ\gpS+o. #±4dVAKnűtIH\N]B+ 72,DY9AuũvF 9FWn1=&k.3%}> ]'tBGcv|RGRt/Ql"Mnl}Nf2oPGzk[ \Z}S;4]ku4u֢].R:J܂hZScyt@-)g`@BEs(vn^ȋ#U`\j5 gr[`\%<}Y;Jku@[Օ_`4. Ds ,4?&ۦ*T }IfZ\0X‚wq}͆r/Ey Un#\Jc0W3,{~~|k(QÇ1026U͢ڂ1~)nzdjfQUOXl!pfW2'd:o]q1dDFxi2Y2ǯfBS9u{ɱXQ%S!.!G_1NEa 5d20™L?%<?Sq@䳖R#=0dk$Nn֣QG_;N*A_>&S+ G~| (_1У]B\~(WE'4 $ k97"*(gԨj#Ak~H'oD8>AFC _p9BK\? >bZFDzR; CW=nF}FeLZoJS;};;‰)ʢcE,!!ŧ:^wKk$[exJBЈK' f˳,A}LD":/" Ԉo(j-$\& Wg<&BW?O=@Op JHHl%N:Z7 ?KĽMNkl:2B?yl?NEy[! Ki#b1~<9& {*CF嘡YA&Tt `~ x-Z)V=J:EwcsʅLf:tY ,# = Jք<|;<;64}cPSLg&H*L@K2v̓gWA, !,P=܍*cvja~ ¬E{S6^ˣ!S s_(m'II}.YYy†מ,jF6U k{>'m%j/xr]p6pZ&l3k 6*'@?o+A3żKKarM'XqG?( OJ^ROnb++Y\5k7-C'C5s] 梻/pf5 +j'!"L˥i,}#rn'v3Gj@2+L԰I8TO8owx'W"B^}LY/5b`I!MP筲ny Q@;Y9DS&oN?Tm8f@I8 ]|'vE<k\nCYFF.j.gEu~DQ`]NtD'T`uP ÓOHt,k#ıitJ-ysG:O\-j'378ܵbgf]ZiUM=?ikHt(-lcMo’_Dwx4aig|cֈ)!VpEShL6׺XEnw;al8Z@qW#=Jȷ]"%QcV#ܲvkKi;%=}f#).*lCKnJO+ rByC>LӇ'qAA$ij \6c tW%/CJ}e 0*(/rh4@KqU9_V Lffg>J>wN~,e;1`N_.Ie*o g.5w{=c0_DOaXZ ``p3zOiY2=u~*Xۦ7l uHU pnPd?AA3v{Mf0JK%vPMӒ:c-Q]';iFgED Sa#B>n6OOWf)C7T0l3q_ki! D4ə9ULAXn9(fs'OIyȲ-C= 0]q3b/`!?D.Q14`4Yp @[RÈ`8=C IJ=qEvK*X╿^2nbs6/x*|APj jװZ7bR X\ht3rObƵ10g^5fOgaGd."3Bt}[!- \XEvhR{bTo?I*kX]M`"Z'cf;nx9uCs++P:* RJ6:k]5:HN0 z[L#NZwG gmFv7B!~J%eF[%}T g_c^0`Kƨ/E =-s-h fdg;w4G#dcZ]^g|$"PM¹1m^$w\d̡Ve+r\|ҏ/5۴5kycfk44~?d-{x:@0-ET^RɪA (] ؔcĕMuN%CbGv bB` Tn(|§ =+u(̀;#6I2KŽ(Ϻ )SLҰ̭B.JMC}6];3 e7s/ܿm3%CGq.[iEuiUT{mX]GJV2kYiv 7R=߲; nCanGz/RnE>}J`Ebh{?j3ujd`X+RAȼI[<[%?c>Bs:ÚZ49zJC,\GZ(kK$SR]? k &] l,pVf|0W{5+}x½%fijC~x"\GtBOMALtNxWy]*<.\ qg+M %^}0^jP{Fͼ6k6!-ӣhcsv`-lF( V9L՚7_|K:NeQwmo)p5ImSiU>s# *?(Dv4֠@a&vbٻi+89#<}ne߀0bg5埶T=-׾@HGzW*JN]te:9"{PRa>'VTA}̤X,2b.DЀFMw>UFM=k5[]c\5mrS6DOj@cxy"k)ns}#ICx?xZWf҈1s5\2  u8aY8[jy1:@@i}ҧHgsF3wF?ؼboK4NZmu=< ;!2>n‹`2O:Ŭ8,VB~wO!5T Ͼ`nI)Ի ^ x7 Z5X'$i-euX7n!nUWPJ- #Xཆ$ J4fRFa8R6S0l3|ENQg5GXZ"]џگ(d v$Ba#vziu{7?l^OBQ ]MX^.>kjQC[2g7|?U.Yi>׸P01q!FYϣ{?Dc?4Go75k<򏠟F3[Xm (Ur=LWBjkDէiD}RuI5 O>>;1&)BM9PJ&*DYmEROpKyujr*,vQ.`@0zoظ++dvRVq^ś)eS8M_7\KFK\Se5ɞNI먒GSQm#SWt,.tj $e-߳%1m!|!~sP5ﶦ h*&3o.f~/N., iq=+鈉Pi# ɱI~h~$X~"cPE*~ WI.t}7lSEeP2KJXx HR #,{[ SN=J׺Y-8zd'!> 0r@VW[}ar*nAJDdbmUK|okרcDiMcN&2ˎN+\(.glbgG$>,n?X3)!{F0v0unKA ˉ{\c5dVˆ i\Қa9i_ ` 6."MdU4\QxC䍬m{4"4usbh pPyEwh1X0אO&&C/H[G@T6`jOFz>I+qj[3@Xjӆ 71GXm:]Ps$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 L" mmmmmmmmmmmmmmmmmmmm` m m 8m8PmPhmh m$m(m,m 0m+4m8m(<m(@`@m@XDmXpHmp@LmCPm TmPXm\m^`mPgdm0Pnhm0HlmH`pm`xtmxNxm|mkmp&m}mm m 8pm8PmPh@mh`m m8m@>m!mP+m`3m( =m(@P@m@Xo``ohopoxooo opoo0o`o` oo@oPoooo o8o@oHoPoPO Xopoxooooopoo0oPoo oo@  omm(o 0o@V8o @o HoL Po$ Xo `o0 xo\ ol o o o o o o o o o o o o0 o o (o 0op8o@ @o  Po Xo`oP ho o o@ oP@ o@ o @ o0@ o@@ o o o o ooo` o0 ooo@ oP op m m  o0 (ol0 PoXo`o\}$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 }@" o@ oo o oo( @o(Xo`o4 hopo xo0 o oP 0 o o% oo  o Ho PoXo `oX hoH pop $ oA ooH o8 o@ d  o(o\ 0o ` xo`oopohooo` o o P o ooL o  o (o 0o 8o @o H0d `oHxo  oL o o( o, o0 o o o  o oo$ o4  o o(o 0m`m8mpm0pE  m0HH  mH`@T  m`xV  mxW  mPY  m0\  mp`  ma  ma  m c  m 8pb  m8P  mPh  mh  m`_  m  m@  m  m  m  $ m ( 0# ( m( @ I , m@ X _ 0 mX p P` 4 mp  a 8 m  a < m  F @ m  `l D m  `u H m !h L m!! { P m!0! T m0!H!@ X mH!`! \ m`!x! ` mx!!` d m!! h m!!` l m!!@ p m!! t m!" x m" " | m "8"  m8"P"  mP"h"@  mh""@(  m""`/  m""d  m""5  m""P  m""?  m"#T  m#(# L  m(#@#Y  m@#X#  mX#p#  mp##0  m##  m##e  m##f  m##`  m#$@x  m$$t  m$0$|  m0$H$  mH$`$ DD`$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 "  m`$x$  mx$$`  m$$  m$$e  m$$<  m$$0  m$%  m% %  m %8%} m8%P%0 mP%h% mh%%)  m%%PR m%%P m%% m%% m%%  m%& $m&(& (m(&@&,m@&X&0mX&p& 4mp&& 8m&& <m&&U @m&&G Dm&& Hm&'` Lm''Pm'0' 9 Tm0'H' XmH'`' \m`'x' `mx'' dm'' h hm''@ lm'' pm'(oT(o  m,m,m ,m,m, m,$m,(m",Vm(T (W Zm (^mT8(`T dm8(hmTtm(TxmTP( U ~mP(mlTh(X mh(mTmxTmh(mT(Z m((`Y m(mlTmxT(PV m((pZ m(m((0[ m(mTm(m((o)o)0)o)8)Pc P)o8))e )o))f )o)*o *h 8*o *p*~ *op**o*o*o*o(* *o*+o+  +o+(+o0+o 8+@ P+o8+X+o`+oh+op+odx+oh+oH+oL+oT+ol+oD+o+o@+o8+o+o<+o0+o+o4+o+o,+o(,oH,oP,o,o ,o(,` @,o(,H,o$P,@ h,oP,p,ox,o,o,oX,ox,o\,o`,od,oh,ol,op,ot,o|,0 -o,m$mm0m mD$m (mX,m0ml4m8m|<m@mDmHmLm PmTm$Xm\m(`mdm,hmlm0pmuH$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 D3" tm4xm|m8mm<mm@m(mDm8mHmHmLmXmPmhmTmtmXmm\mm`mmdmmhmmlmmpmmtmmxm0m|-gm- -P0m -8-/dm8-P-.mP-h-@.mh---m--14 m--1 m--2T m--p3X m--@4 m-.`7m.(.6m(.@.;Xm@.X. =TmX.p.p<,mp..;m..`:m..9Lm..=|m..p?dm./>m//@Km/0/@@d!m0/H/A!mH/`/A"m`/x/B|'mx//C+m//PD+m// E+m//[H.m//[1m/0`Z1m0 0Y3m 080HD5m80P0@H07mP0h0G8mh00I9m00pJ:m0\<m/0pSH?m00@T@m00U@Am00UAm01p\Gm1(1Y8Hm(1@1PXHm@1X1gKmX1p1edLmp11dLm11@dpMm11c@Nm11PfNm11bOm120bPm22aQm202`TRm02H2 `RmH2`2p_pSm`2x2hSmx22PiLTm22 jTm22oP2o2op2PF2o22o3olp3op3o3op 3o(p(3op03o83o0p@3opH30 `3oH3h3o8pp3ox3oLp3op3o03oP3o3o@P3oTP3oP3o03oP3o|P3oP3oP3o 03oP3oP3op4op4  4o4(4 @4o(4H4o0P4oPX4oP`4oPh4o0p4oPx4o04o04o P4o 0mPm0mPm0 m,P$m0O$ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 ٪" (mDP,m 00m\P4m08mlP<m0@m|PDm0HmPLm0PmPTm 04o4o4o44o4o4o4o5o 5o5o,5o, 5o(5o4m,:m,Fm,Lm,Rmx,Xm,`mF,05dm05hm,nm,tm,xm`,~m,mF,m,mr,mb,mF,H5!mH5m,m,mH5m,m,m,m,m, m, m,`5o0h5o40p5oD0x5oL05o05oh05o05o05o05o05o05o05o(05o05o`05o05o05o05o 05o06o06o 06o(06o00 6o80(6o@006oH086oP0@6o`0H6o0P6oX0X6oh0`6op0h6o0p6ox0x6o06o06oT06op06ox06o06o06o 06o<06o06o06o06o06o07H7o7ooo o8 oP(oh`7'0o`78o@oHoPoXo`oho poPxoo8ohoooooooooooo(o@oXopooo o(o0o8o@o(Ho@PoXo`o0hoHpo`xoxx7Pox7o27 o77P o77 o7 fIPF/VMSNOTES$SHARE jIPF/VMSNOTES$SHARE gIPF/VMSNOTES V2.5eIPF/VMS:ԴģhIPF/VMSLinker T02-17kIPF/VMS:ԴģlIPF/VMS:Դģ/."-4,C+R*c)x('&#$ %"!"1@Q]q 4FXl01( > Q a t 432V $ NOTES026.A b  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 %s NOTES$USER_MODIFYNOTES$USER_GETNOTES$USER_DELETENOTES$USER_ADDNOTES$USER_ENDNOTES$USER_BEGINNOTES$PROFILE_MODIFYNOTES$PROFILE_GETNOTES$PROFILE_ENDNOTES$PROFILE_BEGINNOTES$NOTE_GET_KEYWORDNOTES$NOTE_GET_TEXTNOTES$NOTE_ADD_TEXTNOTES$NOTE_MODIFYNOTES$NOTE_GETNOTES$NOTE_DELETENOTES$NOTE_ADDNOTES$NOTE_ENDNOTES$NOTE_BEGINNOTES$NOTESNOTES$NOTEFILE_LISTNOTES$NOTEFILE_LIST_BEGINNOTES$NOTEFILE_MODIFYNOTES$NOTEFILE_GET_INFONOTES$NOTEFILE_ENDNOTES$NOTEFILE_BEGINNOTES$KEYWORD_GET_NOTENOTES$KEYWORD_MODIFYNOTES$KEYWORD_GETNOTES$KEYWORD_DELETENOTES$KEYWORD_ADDNOTES$KEYWORD_ENDNOTES$KEYWORD_BEGINNOTES$SERVER_BEGINNOTES$ENTRY_UPDATENOTES$ENTRY_GET_KEYWORDNOTES$ENTRY_GET_CLASSNOTES$ENTRY_MODIFYNOTES$ENTRY_GETNOTES$ENTRY_DELETENOTES$ENTRY_ADDNOTES$ENTRY_ENDNOTES$ENTRY_BEGINNOTES$CLASS_GET_ENTRYNOTES$CLASS_MODIFYNOTES$CLASS_GETNOTES$CLASS_DELETENOTES$CLASS_ADDNOTES$CLASS_ENDNOTES$CLASS_BEGINNOTES$$QIO_CANCELNOTES$$QIO_CHECK_CANCELNOTES$$REGISTER_QIO_WAIT_CB.shstrtab.strtab.note$LINKER RELOCATABLE_SYMBOL.dynstr.symtab.vms_symbol_vectorW P4`:<D`"*[NOTES.TEMPKIT]NOTES$STARTUP.COM;1+,(b./J 4O- 0123KPWO56 &57͍ģ89GJHJ4$ ! N O T E S $ S T A R T U P . C O M$ !O$ ! Copyright Digital Equipment Corporation. 1985, 1993. All Rights Reserved.$ !+$ ! Procedure to install DECNotes images...$ !&*[NOTES.TEMPKIT]NOTES$STARTUP_END.COM;1+,)b./J 4Y - 0123KPWO 56>Y}t`7oэģ89GJHJ!$ ! First, deinstall DEC Notes...$ !7$ NOTES$TEMP = F$SEARCH("SYS$MANAGER:NOTES$REMOVE.COM")4$ IF NOTES$TEMP .NES. "" THEN @'NOTES$TEMP' SHUTDOWN$ !.$ ! Next, add the required DEC Notes images...$ !B$ ! Note: NOTES$SECTION does not need to be /OPEN/HEADER/SHARE forB$ ! proper operation. This is done for performance considerations.$ !$ ADD_IT = "INSTALL ADD 'IMAGE"%$ IMAGE = "SYS$SHARE:NOTES$SHARE.EXE"$ 'ADD_IT /OPEN/HEADER/SHARE'$ IMAGE = "SYS$SYSTEM:NOTES$SERVER.EXE"$ IF F$SEARCH(IMAGE) .NES. ""$ THEN$ 'ADD_IT /PRIV=SYSNAM$ NOTES$SERVER_FOUND = 1$ ELSE NOTES$SERVER_FOUND = 0$ ENDIF$ !*$ ! Now, add the optional DEC Notes images$ !($ SAVE_ON = F$ENVIRONMENT("ON_SEVERITY") $ SET NOON1$ NOTES$FREE_GBL_SECT = F$GETSYI("FREE_GBLSECTS")1$ NOTES$FREE_GBL_PAGE = F$GETSYI("FREE_GBLPAGES"),$ IF NOTES$FREE_GBL_SECT .GT. NOTES$GBL_SECT$ THEN/$ IF NOTES$FREE_GBL_PAGE .GE. NOTES$GBL_PAGE $ THEN.$ IF F$TRNLNM("DECW$SYSTEM_DEFAULTS") .NES. ""$ THEN+$ IMAGE = "SYS$SHARE:NOTES$DWSHARE.EXE"A$ IF F$SEARCH(IMAGE) .NES. "" THEN 'ADD_IT /OPEN/HEADER/SHARE$ ENDIF $ ENDIF$ ENDIF1$ NOTES$FREE_GBL_SECT = F$GETSYI("FREE_GBLSECTS")1$ NOTES$FREE_GBL_PAGE = F$GETSYI("FREE_GBLPAGES")$ IF NOTES$FREE_GBL_SECT .GT. 1$ THEN7$ IF NOTES$FREE_GBL_PAGE .GE. NOTES$SECT_FILE_GBLPAG $ THEN/$ IMAGE = "SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ 'ADD_IT /OPEN/HEADER/SHARE $ ENDIF$ ENDIF$ NOTES$EXIT_STATUS = 1$ NOTES$SERVER_STARTED = 0$ IF NOTES$SERVER_FOUND$ THEN$ !$ ! Load DECnet object:$ !+$ NOTES$TEMP = F$GETDVI("NET0","EXISTS");$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("NET0","MNT");$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("NET0","AVL")$ IF NOTES$TEMP $ THEN$ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ DECNET_PHASE = 40$ NETFILE = F$SEARCH("SYS$SYSTEM:NCL.EXE")$ IF NETFILE .NES. "";$ THEN >$ DNET_VERS = F$EXTRACT(2,2,F$GETSYI("DECNET_VERSION"))3$ IF DNET_VERS .EQS. "05" THEN DECNET_PHASE = 5$ ENDIF$ IF DECNET_PHASE .EQ. 4 $ THEN ! Assume DECnet Phase IV"$ MCR NCP SET OBJECT NOTES ALL$ ELSE ! Assume DECnet Phase V-$ SET RIGHTS_LIST/ENABLE NET$MANAGE=$ MCR NCL CREATE NODE 0 SESSION CONTROL APPLICATION NOTES $ MCR NCLY SET NODE 0 SESSION CONTROL APPLICATION NOTES INCOMING PROXY FALSE , OUTGOING PROXY TRUEU SET NODE 0 SESSION CONTROL APPLICATION NOTES IMAGE NAME SYS$SYSTEM:NOTES$SERVER.EXE@ SET NODE 0 SESSION CONTROL APPLICATION NOTES NODE SYNONYM TRUEG SET NODE 0 SESSION CONTROL APPLICATION NOTES USER NAME "NOTES$SERVER"H SET NODE 0 SESSION CONTROL APPLICATION NOTES ADDRESSES { NUMBER = 33 } $ ENDIF $ NOTES$TEMP = $STATUS$ IF NOTES$TEMP$ THENM$ WRITE SYS$OUTPUT "%NOTES-I-STARTDNSRV, Notes server enabled for DECnet"$ NOTES$SERVER_STARTED = 1$ ELSES$ WRITE SYS$OUTPUT "%NOTES-E-NODNSRV, Unable to enable Notes server for DECnet"$ NOTES$EXIT_STATUS = 0$ ENDIF $ ELSE8$ WRITE SYS$OUTPUT "%NOTES-W-NODNET, DECnet not running" $ ENDIF$ !$ ! Load TCP/IP service:$ !-$ NOTES$TMP = F$ENVIRONMENT("ON_SEVERITY")*$ NOTES$TEMP = F$GETDVI("BG0","EXISTS"):$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("BG0","MNT"):$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("BG0","AVL")$ IF NOTES$TEMP $ THEN1$ NOTES$TEMP = F$SEARCH("SYS$SYSTEM:UCX$UCP.EXE")$ IF NOTES$TEMP .NES. ""$ THEN8$ NOTES$TEMP = F$SEARCH("SYS$SYSTEM:UCX$SERVICE.DAT")$ ENDIF)$ IF NOTES$TEMP .EQS. "" THEN GOTO NO_UCX $ SET NOON$ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ UCX SHO SERVICE NOTES$ NOTES$TEMP = $STATUS$ IF .NOT. NOTES$TEMP$ THEN $ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ UCX SET SERVICE NOTES - /USER=NOTES$SERVER- /PROCESS=NOTESRVR- /PORT=3333-$ /FILE=SYS$SYSTEM:NOTES$SERVER.COM- /LIMIT=255- /FLAGS=(LISTEN,MULTITHREAD)$ NOTES$TEMP = $STATUS$ ENDIF$ IF NOTES$TEMP$ THEN $ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ UCX ENABLE SERVICE NOTES$ NOTES$TEMP = $STATUS$ ENDIF$ IF NOTES$TEMP$ THENM$ WRITE SYS$OUTPUT "%NOTES-I-STARTTCPSRV, Notes server enabled for TCP/IP"$ NOTES$SERVER_STARTED = 1$ ELSES$ WRITE SYS$OUTPUT "%NOTES-E-NOTCPSRV, Unable to enable Notes server for TCP/IP"$ ENDIF $ ELSE&$ IF .NOT. NOTES$SERVER_STARTED THEN -7 WRITE SYS$OUTPUT "%NOTES-I-NOUCX, UCX not running" $ ENDIF $ NO_UCX:*$ IF NOTES$TMP .NES. "NONE" THEN SET ON"$ IF .NOT. NOTES$SERVER_STARTED $ THENJ$ WRITE SYS$OUTPUT "%NOTES-E-NOSRV, No DEC Notes server will be available"$ NOTES$EXIT_STATUS = 0 $ ELSE9$ PURGE/KEEP=10 SYS$SYSDEVICE:[NOTES$SERVER]NETSERVER.LOG $ ENDIF$ ENDIF$ !%$ IF SAVE_ON .NES. "NONE" THEN SET ON$EXIT:N$ !---------------------------------------------------------------------------N$ ! Do NOT put an EXIT command here. Installation procedure appends commands.N$ !---------------------------------------------------------------------------`$ NOTES026.A&b [NOTES.TEMPKIT]NOTESDCL.CLD;1;1Rs*[NOTES.TEMPKIT]NOTESDCL.CLD;1+,&b./J 4Rj- 0123KPWO56Tģ7OՍģ89GJHJ module notes$dcl_commandident "V01-007"!4! COPYRIGHT 1985, 1989 BYC! DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASSACHUSETTS2! ALL RIGHTS RESERVED.!9! The VAX Notes DCL command line. See COMMANDS.CLD for a=! description of the internal commands accepted by VAX Notes.!@! This command is accepted by DCL to invoke the VAX Notes image.!! Version: 'V01-008'!! MODIFIED BY:!#! V01-010 KEB 5-Sep-1989H! Change labels for /[NO]DECWINDOWS & /INTERFACE=... to be$! backward compatible.#! V01-009 RAS 30-Aug-19899! Removed line IMAGE NOTES$MAIN. I don't know how this 3! works if it doesn't point to an image, though...#! V01-008 RAS 29-Aug-19893! Added line IMAGE NOTES$MAIN to point to image. #! Made /INTERFACE non-negatable. #! V01-007 KEB 21-Aug-1989P! Change /[NO]DECWINDOWS to /INTERFACE={DECWINDOWS|CHARACTER_CELL}:! Leave in /[NO]DECWINDOWS for compatibility#! V01-006 KEB 07-Feb-1989R! Change /[NO]DISPLAY={DECWINDOWS|CHARACTER_CELL} to /[NO]DECWINDOWS! V01-005 MJG 19-Oct-1988;! Remove artificial restriction on position of /NONOTEBOOK! V01-004 MJG 05-Oct-19881! Added /[NO]DISPLAY={DECWINDOWS|CHARACTER_CELL}! V01-003 MJG 16-Sep-1987&! Added /AUTOMATIC={DIRECTORY|UNSEEN}! V01-002 MJG 09-Sep-1986! Added /[NO]AUTOMATICDEFINE TYPE auto_type"keyword directory, label=directorykeyword unseen, label=unseenDEFINE TYPE interface_type.keyword decwindows, label=interface_decwindows6Keyword character_cell, label=interface_character_cellDEFINE VERB notesimage notes$main3parameter p1, label=entryclass, prompt="Entry name"*parameter p2, label=note_id, prompt="Note"Equalifier automatic, label=automatic, value (type=auto_type), default<qualifier class, label=class, value (required), nonnegatable=!-qualifier display, label=display, value (type=display_type)&qualifier decwindows, label=decwindowsOqualifier interface, label=interface, value (type=interface_type), nonnegatable0qualifier notebook, label=notebook, nonnegatable4qualifier nonotebook, label=nonotebook, nonnegatablequalifier update, label=update5disallow nonotebook and (class or notebook or update)disallow update and note_id*[NOTES.TEMPKIT]NOTESDCL.HLP;1+,'b./J 4K $- 0123KPWO56.}uz_7! ٍģ89GJHJ0! 25-Feb-1992 MJD changed VAX Notes to DEC Notes%! 29-JAN-1993 PAF updating for T2.4-2$! 3-Nov-1992 PAF updating for T2.4-1! For each major release: ! Section@! NOTES Release_Notes Change the file spec of release notes.7! E.g. NOTES$024.RELEASE_NOTES1 NOTESEDEC Notes is a computer-mediated conferencing system. It allows manyFpeople to communicate in the system at their convenience, usually on aHsingle subject or issue. It provides a permanent record of a discussion?(conference) by recording topics and any replies to the topics. Format: $ NOTES or! $ NOTES/INTERFACE=DECWINDOWS orH $ NOTES/INTERFACE=CHARACTER_CELL [qualifier] [entry-name [note-ID]]CThe square brackets [] indicate that the enclosed item is optional.DIf the DECwindows interface is available, then /INTERFACE=DECWINDOWSBis the default. If not, /INTERFACE=CHARACTER_CELL is the default.KFor help on getting started and more detailed information, invoke DEC Notes-($ NOTES) and type HELP at the Notes> prompt.2 Release_NotesGYou can print the release notes for this version of DEC Notes by typing,the following command at the DCL prompt ($):, $ PRINT SYS$HELP:NOTES$025.RELEASE_NOTES 2 Parameters entry-nameA Specifies an entry in the Notebook to be opened. If you use theF /NONOTEBOOK qualifier, DEC Notes looks in the NOTES$LIBRARY directory* for a conference with that notefile name.F With the /UPDATE qualifier, you can use the wildcard character (*) or6 omit the entry name parameter to specify all entries.note-ID? Specifies a note to be displayed on your screen as soon as the@ specified conference opens. You can use the note-ID parameter 8 only if you precede it with the entry-name parameter. > When you use the note-ID parameter, you cannot also use the  /UPDATE qualifier.2 Command_DescriptionF The DCL command NOTES invokes DEC Notes and provides immediate accessF to your Notebook. You can specify a Notebook entry to be opened, and@ activate a class other than the default class, in one step. InC addition, you can specify one or more entries in the activated (or9 default) class to be updated before you enter DEC Notes.G If you use the /UPDATE qualifier without specifying any entry name(s),C DEC Notes updates all entries in the activated (or default) class.E After DEC Notes updates the specified entries, you return to the DCL level.D To open a conference directly, without going through your Notebook,E use the /NONOTEBOOK qualifier. The entry-name parameter you provideD is treated as the file name of a notefile specification. DEC NotesD looks in the NOTES$LIBRARY directory, instead of the default class,F for the conference. When you use /NONOTEBOOK to invoke DEC Notes andF open a conference, information about which notes you have or have not seen is not available. 2 Qualifiers)/AUTOMATIC[={DIRECTORY|UNSEEN}] (default) /NOAUTOMATIC@ Specifies whether the /AUTOMATIC setting from your user profileC should be used when opening the conference. The default is to useA the automatic setting. Use /NOAUTOMATIC when you wish to open aC conference and not see the first unseen note or directory listing.B /AUTOMATIC=DIRECTORY or /AUTOMATIC=UNSEEN also overrides the user@ profile setting. If you use the optional note-ID parameter, it> supersedes the /AUTOMATIC qualifier and displays the note you specify./CLASS=class-name/CLASS=default-class (default)= Activates the specified class rather than the default class.0 You cannot use /CLASS and /NONOTEBOOK together./INTERFACE=DECWINDOWS/INTERFACE=CHARACTER_CELL6 Activates the display device requested, if available.: If you are using a DECwindows workstation, the default is= /INTERFACE=DECWINDOWS. If DECwindows is not available, the 0 default is to use the character-cell interface. 0 If you want to use the character-cell interface< to Notes from a terminal emulator window on a workstation, 8 specify /INTERFACE=CHARACTER_CELL. : If the /INTERFACE=DECWINDOWS qualifier is used, all other+ qualifiers and all parameters are ignored./NOTEBOOK (default) /NONOTEBOOK? Directs DEC Notes to perform Notebook entry processing, and toB activate the default class (unless you specify another class with the /CLASS qualifier).? If you specify /NONOTEBOOK, the Notebook is opened for profileA information only, and by default, your automatic setting in yourD profile (Directory, Next Unseen, or Noautomatic) is used. No entryA processing is done. This means that no information is available@ regarding which notes you have and have not seen. Further, theA parameter is treated as a notefile specification rather than the# name of an entry in your Notebook.? You cannot use the /NONOTEBOOK qualifier with either /CLASS or /UPDATE./UPDATE/NOUPDATE (default)E Updates the specified Notebook entries and returns to the DCL level.E Use the wildcard character (*), or omit the entry name parameter, to8 update all entries in the specified (or default) class.= You cannot use the /UPDATE qualifier if you use the note-ID ( parameter or the /NONOTEBOOK qualifier. 2 Examples $ NOTES4 Starts DEC Notes and activates the default class.; The examples that follow apply only to the character-cell interface:  $ NOTES /CLASS=LANGUAGESD Starts DEC Notes and activates the class named LANGUAGES (instead of the default class).,$ NOTES026.A'b [NOTES.TEMPKIT]NOTESDCL.HLP;1;1K $ NOTES MICROS5 Starts DEC Notes and opens the entry named MICROS. $ NOTES VETTES /CLASS=CARSE Starts DEC Notes with the class named CARS, and opens the entry in that class named VETTES. $ NOTES VETTES 40.5? Starts DEC Notes, opens the entry named VETTES, and displays note 40.5." $ NOTES /UPDATE /CLASS=MISC *E Updates all entries in the class named MISC and returns to the DCL level.& $ NOTES /NONOTEBOOK SOMNOD::JOKESD After processing the profile information from the Notebook, opensC the conference SOMNOD::JOKES directly. Note that no informationF about which notes you have and have not read in JOKES is available.E Further, DEC Notes does not mark the notes you read in the current session as seen.%*[NOTES.TEMPKIT]NOTES_SHORTGUIDE.MEM;1+,+b./J 4 - 0123KPWO 56O37܍ģ89GJHJB __________________________________________________________ Quick Summary of Basic DEC Notes Commands Quick Summary of Basic DEC Notes Commands Quick Summary of Basic DEC Notes Commands$ To invoke DEC Notes, type:> NOTES NOTES $ NOTESL You can get online HELP for DEC Notes commands and key definitionsI at any time during a DEC Notes session. To see key definitionsM for DEC Notes, press PF2. To get help on DEC Notes commands, type:J HELP HELP Notes> HELPK Before you can read the notes in a conference, you must first addD the conference to your Notebook, then open the conference.H To see a listing of the conferences that are available on your; system and to which you are allowed access, type:} DIRECTORY/CONFERENCES DIRECTORY/CONFERENCES Notes> DIRECTORY/CONFERENCESL The name of each conference appears in capital letters. The title: briefly describes the subject of the conference.* NOTEA If you receive the error "Your software license doesA not allow this operation", you must specify the node@ name of the system that has the NOTES or NOTES-USER= license. For more information, see the HELP for? Software_Licenses, or contact your system manager.J To add a conference to your Notebook, use the ADD ENTRY command.H For example, to add the ETIQUETTE conference to your Notebook, type:w ADD ENTRY ETIQUETTE ADD ENTRY ETIQUETTE Notes> ADD ENTRY ETIQUETTEK To open a conference, use the OPEN command. For example, to open) the ETIQUETTE conference, type:h OPEN ETIQUETTE OPEN ETIQUETTE Notes> OPEN ETIQUETTEF A conference is organized into discussions. Each discussionI begins with a TOPIC, each having any number of REPLIES. TopicsH are numbered consecutively, starting with 1. Replies are alsoK numbered consecutively, by topic, starting with .1. For example,M if there are two replies to topic 4, they are numbered 4.1 and 4.2.? To see a listing of the topics in a conference, type:Y DIRECTORY DIRECTORY Notes> DIRECTORYF To include replies, as well as topics, in the listing, type:e DIRECTORY *.* DIRECTORY *.* Notes> DIRECTORY *.* C Use the NEXT SCREEN (0 on the keypad) and PREVIOUS SCREENA (. on the keypad) keys to scroll through the directory.J To read a specific topic or reply, type the number at the Notes>I prompt. For example, to read the third reply to topic 6, type:G 6.3 6.3 Notes> 6.3F Use the ENTER or RETURN key to page through the replies in a discussion.I To set up EVE, the DEC Notes editor, with the EDT-style keypad,% type the following command: SET PROFILE/EDITOR=EDT SET PROFILE/EDITOR=EDT Notes> SET PROFILE/EDITOR=EDTJ To add a reply to a discussion, use the REPLY command. You mustH be reading a reply (or the topic) in the discussion before youF issue the REPLY command. For example, to add a reply to the' discussion on topic 10, type:D 10 10 Notes> 10M REPLY REPLY Notes> REPLY5 To start a discussion on a new topic, type:M WRITE WRITE Notes> WRITEI To print notes, use the PRINT command. If you do not specify aJ range of notes to print, DEC Notes assumes you want to print theH note you are currently reading. For example, to print topic 3. and all replies to that topic, type:Y PRINT 3.* PRINT 3.* Notes> PRINT 3.*E To leave a conference, use the CLOSE command. You can alsoF press CTRL/Z in place of the CLOSE command. For example, to close a conference:P ______ ______ ______ ______ |CTRL/Z| ______ |CTRL/Z| ______ Notes>|CTRL/Z|G To end your DEC Notes session, use the EXIT command (or press3 CTRL/Z). For example, to exit DEC Notes:P ______ ______ ______ ______ |CTRL/Z| ______ |CTRL/Z| ______ Notes>|CTRL/Z|*[NOTES.TEMPKIT]OANOTES.OBJ;1+,#b./J 4 `- 0123KPWO 56919ģ7ģ89GJHJELF 2`@@ "aqp@2IPF/VMS13-DEC-2004 15:5513-DEC-2004 15:55OANOTESV01-001IPF/VMSBLISS-32I V1.12-0652~F !(b0H 0 b @0H 0 B   `X ! # @ `a 0H 0 B  @ `X @p! #b @!Y `!0 B0 ,a @!@X @! Y (!(Y 0!0Y $( F!1B @01B P  H!$  ,@ P@!( (,`b X`XX $D0  "! X !PDB(Y !L0  P$0@ F! , U `!@B NOTES$NOTES NOTES$SHAREw NOTD$:[NOTES.V26.IA64.SRC]OANOTES.B32;3H NOTD$:[NOTES.V26.IA64.SRC]NOTESREQ.REQ;5وǫQ793 *!QP@%.SpOANOTESBLISS-32I V1.12-065OA$NOTES_DISPATCH,p@%$> 4I $> I!I"  .? @ @ I !I" / pOANOTESNOTD$:[NOTES.V26.IA64.SRC]OANOTES.B32;3BLISS-32I V1.12-065P.AAA//$ NOTES026.A#b [NOTES.TEMPKIT]OANOTES.OBJ;1B;1g P.AABg NOTES$NOTES_ASCIC NOTES$SHARE_ASCIC IA64OA$NOTES_DISPATCH COMMAND_LINE |(" DESC1%| DESC2%|NOTES_ROUTINE | pZZZ  pZZZ  STATUS |0<p.shstrtab.note$CODE$$GLOBAL$$OWN$$PLIT$$INITIAL$$LINK$$LITERAL$.IA_64.unwind_info.IA_64.unwind.strtab.symtab.debug_line.rela.debug_line.trace_abbrev.trace_info.rela.trace_info.trace_aranges.rela.trace_aranges.debug_abbrev.debug_info.rela.debug_info.debug_aranges.rela.debug_aranges.rela.IA_64.unwind.rela$CODE$NOTD$:[NOTES.V26.IA64.SRC]OANOTES.B32;3LIB$FIND_IMAGE_SYMBOLOA$CMD_DISPATCHOA$NOTES_DISPATCH   )?Op'''pe e e '''pw'' '' r' 'e e e' '__p_ ! 0 A P rAIRR p!'.8?I@\p` jarP  z`H  ```W` ` `0 0 `` `@@ H 3( H Fp *[NOTES.TEMPKIT]PASSKEY.EXE;1+,3b.H/J 4HF- 0123 KPWOF56&ģ7g䍵ģ89GJHJELF 20HH8@ ZZdfXXnp``t@ @ passkey: %s NOTES$LIBRARY:*.NOTEerror opening %s as input File: %s error reading header record %s %s � <Notice> %s � <UserArea> %s � unlocked by ���<Unknown %d> %s ��������error updating header record����SYS$NODE��������access not authorized���%s%s%s on %s���� unlocked by ���NOTES$LIBRARY:*.NOTE����error parsing %s��������error opening %s as input�������network access prohibited for: %s�������usage: passkey [options...] conference Options -m "Moderator" set the conference moderator -t "Title" set the conference title -n "Notice" set the conference notice -l list conference fields ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������  0�B@�D�!��B@� @�&� X@���L@� p$ s`��CH�&� ��H`28 �!���� , �L� ��������@) 1B8 ���$0�@�����&� ��H`2 @�$p q����� ��������� �&�� ��H`2�����������  �$p q�������������� �&���H`2A� &�����`4S F � ��H`2 �$$�D #�1Q� �L�B��`M�b��P@�!�B�8F�!`�BP |��$`H a�������������� �$�J@�����T ��H@�&���������� }$��#`��P� p 0��C�T ��H@ ����������� S, 0�H@$9�T0��H@������,���R�T0 ��H@ �$`@a����� ��������� �T0��H@��.���������� ��$`@a�������������� �$��#@�� PD� �@�#`��P� �4�� ���� � �$���#`��PF� H@1�T0��H@������,��R�T0 ��H@8�P8�!���� pT�!�BxY�L�!�B Y��Z��������� �Z�!���B�����^��������� �Z�!�������� J � #�P�����`U�� � �!��������� 05P�b�� @�!0�B�  @�!�����@Y���$�"�(���� �N�!  �B �(��������� H�Hx8�!���� @D�!�B HY�PF�!�B`XY��>��������� �N�!��B�����B��������� �N�!�������������,��$��@��������@�D�!�0U��P � �!��������� 0= �0�B� x0 �<0 x�����P�b�� @�!0�B�b���0@��H�a�� @0�B�����B0�B�����@1�B�@� `�!�@ #�a���@��B�@Y�H��!��B`a�`��!��B������,� s������������ �N�!  �B�P� ��������� @�D�!�����@X�� ���������� @��$�������������0U��P �`�!@�B����� 81`�b���(@�!@�B`8�8�!����  �&0� 0 ���� �����`�X�H�!�L����PT�B 3������������ �P�!��������8�HP�!���� �! �&�0 ���� �@������Y� HH�!���� HY�P@�!�D��(���� 8�F(�!���� ! �&0 ���� B���� Y� HF�!���� HY�PB�!���(���� �����8U��` � �!��������� 05 �0�B� x0 �<0 x�����P�b�� @�!0�B� ���t�� ���� @H�!�����@Y�HA�!�L`������,���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �$������ NOTES026.A���������������������3b� �[NOTES.TEMPKIT]PASSKEY.EXE;1B;1�����������������������������������������������������������������������������������������������������H�������������������������O�"����� ���������$� !�(���� �N�!  �B�P� ��������� �A�!�0 �B 0�L���� �0� �B��Y�  @� �� �#�Ha�&�L����PT��H�A�P�N�!�������������0U��P �`@�!@�B����� m* �0�B� x0 �<0 x����� �b��@�!��BpF�!�B(XL�!p� 0��C �& �B����� ���������� ��&�B����^�!`L����lp�B�����!)��H�*�P �h�!�L����� B �L���� D����@Y�8�`�!���� �&P0 (lp�B 3���&��������� �h�!0L���� F0 ��������0,�* H@ ��������@,�/�j`�B �?�������� @?#�� ���� 8�bH�!���� ( &P0 ���� (J����(Y� 0�&` ��������`,��4 �@� P�B+lp�B 3������������ �h�!��������A��$ b�L�����D0�L���� F����`Y�  &P0 � 1�&#��H ������,�@��$��(���� �h�!@�L����� H`�L���� 0Lp w�����,��������� ( &P0 ���� (J����(Y� � &�0 ���� �@������Y� ! &P0 (@�!�,���� �& ��������,���$��(���� �h�!~F�X �@1�$0"�L�����F@"�L���� HPL����j`�BY�  &p0 � ����,��8>�P�h�!p��B�������������� �h�!`"�L����0LPB�L�����J�������� ��&� � B`�a�����h�������� �&  �������� ,�`, F0�B���� D� P�Bb�a�!0�B�X8�!@0�B���� H���� Y�H�!`�B�8X@�!��Bb� (Jp s�������������� 0�!` ����HLy!���� ��!� ����X@�!���� �! ����hB9p�!���� x�b8�!����  &00 ���� F����`Y�F�!`L����lp�B 3���*��������� �h�!��������8�`(�!���� P�!`L����l��H�<�P�h�!`@� ��CX��!�$� ���� P��$�� ���� H�bx!����  & 0 ���� D����@Y� �!@ ��������@,� &`0  P�!!��H�(<�P�h�!��� ���� 8�b8�!���� ( &P0 ���� (J����(Y�J�!`L����lp�B 3������������ �h�!��������8��!���� P��$��� ���� H�bx8�!���� 0 &`0 ���� 0L����0Y�L�!`CL����lp�B 3������������ �h�!��������8�P�!���� P��$�L�� ���� H�bx8�!���� � &�0 ���� �@������Y�@�!`L����lp�B 3������������ �h�!��������P��$��������P�! ��H�(;�P�h�!0�B����B00�B���� F�@@a��Dp� q �CH�b8�!���� !�&@ ��������@,�- (JP�B����H� `"�L���� 0L����0Y� � &�0 ���� �@�!p�@`a�0�B����`,��Y����������� �h�!p��B�������������� �h�!00�B����FB�L���� B �@@��D�������� a�!@ D� (J@*�@�D��@�,$���� 8�b!���� H�x�!���� \�! ��H�:�P�h�!��� ���� @���!�������� 0a�!�@ #`a� Fp� q�����0��������� !�& ��������,�@- D �B����B� P0�B���� (J����(Y�l�!`�H(A�!�B�X �a�!� a� H��@� 0L�2�@`��F��������8��!���� Z�! ��H�9�P�h�!��� ���� @���!�������� a�!�@ #@a� Dp� q�����0��������� (!�&P ��������P,�- H@�B����J� `0�B���� 0L����0Y�l�!`�H0A�!�B�X �a�!� `a� F��@ � B� �@@��D��������8��!���� X�! ��H�(8�P�h�!��� ���� @���!�������� a�!�@ #a� (Jp� q�����0��������� 0!�&` ��������`,�`- F0�B����L� 0�B���� B���� Y�l�!`�HA�!�B�xX �a�!� @a� D��@� H�"�@��J��������8��!���� V�! ��H�87�P�h�!��� ���� @���!�������� a�!�@ #a� 0Lp� q�����0��������� !�& ��������,�@- D �B����B� @0�B���� H���� Y�l�!`�H A�!�B�XX �a�!� a� (J��@`� F��@��L�������� !�& ��������,�@� D����@Y� A &P0 D�!��H�"�P�h�!p# w��C &@0 ���� H���� Y� ( &P0 ���� (J����(Y� &P0  J�!�,���� �&0 ��������0,���$��(���� �h�!~F�X��@ ��&� ���������,����$��(���� �h�!���B�@X������U�� �`�!@�B����� h] �0�B� x0 �<0 x������b��  �!��0#`�PB�!�B�8H�!`�B��� H �!�@$0#@b�P��!0�B�����(�B�PR�! �B`8L�!P1�Bb�$��$�$�(���� �\�!�1�B���� �@������Y� �! ��������,�@b� D����@Y�x@�!��B ����������� x�!����xY���$��(���� �\�!�hU�� �`@�!@�B����� m( �0�B� x0 �<0 x������b�`�@�!�BP `� #���8��!`��B�� ��!0��B ���$��(���� �f�!�"�L����� @@L����h ��H�x3�P �f�!�L����� B �L���� D����@Y� ��&� ���������,�/�hP�L@�!!��H�83�P �f�!@�L����h ��H�H3�P�f�!@ �BY� �&P0 �����?�������� �&�@ #@� 0D����0Y��$P�L�8X ��&� ���������,���&��H�2�P�f�!`@�q �B ����@��` D �q����#9��F8��B��X�Z8�!���� ! &@0 F� ��!����Y��v?�������� ��!����Y���$�<�(���� �f�!��������`��! ��H@��p��$��������0`0!���� ���$pp1���� @��������� ����`�t���� ��������Y� �@� � ���������,����� �@�hr����7T��������� ��$p1���� X��������� �����(t���� %�����@Y� D�  �������� ,����� D�xr����w4��������� h�x�!���� N�! ��H�H1�P�f�!��� ���� @���!��������8�8�!���� ��$pp1���� @��������� ����`�t���� ����� Y� B� p ��������p,���@X��!�L� ���� ���$p1���� X��������� �����(t���� �%�������Y� �@� � ���������,��� �@�������Q�HAy�!���� XA�!���� hAy`�!���� xAP�!���� p\�!`pa�������������� ��$p1���� p��������� �����4t���� 1�����@Y� D� P ��������P,��h�@X��!��� ���� X��!��� ���� p\�!pa����7��������� ��$�r1����  ��������� �����Bt���� <�����`�X� � @ ��������@,����@X��!�\�� ���� p\�!pa����w��������� H��$0r1���� %��������� ���� Ht���� H����� HX� H� `$ ��������`,��8��@X��!��� ���� `��$��������p\�!�$���� h�VxX�!���� x��!���� L�! ��H�.�P�f�!��� ���� @���!��������0�0�!���� H�x�!���� N�! ��H�-�P�f�!��� ���� @���!��������0�@�!����  &0 ���� B���� Y�B�!PL����j��H�-�P�f�!@��BY���$��(���� �f�!��������8��!���� P��$@��B ���n ��������� �f�!�0�B����� @��B@� D����@Y�A�! ��H�-�P �f�!@�L����hPL����j`�B, n�B @���$��(���� �f�!@�L����h ��H�-�P�f�!@ �BY� �&P0 �����&?�������� �!�B��$��(���� �f�!#~F�@X� @� �� �#����N�!PC�L #���Z ��������� �f�!�@� q ��H��!@�B- j`��B�� ��!�����Y� ��!���� Y� ��!����@Y���$�D�(���� �f�! �L����� D�L���� B���� Y�8�p�!���� �&@0 . j`�B 3���. ��������� �f�!�L���� �@� ���������,�@* D  �������� ,�/�hP�B�R?�������� ��!����Y���$�,�(���� �f�!�������� �& ��������,����������� ��&� ���������,����$��(���� �f�! �B����8�`�!���� H�Z8 �!���� P�!P�L #��� ��������� �f�!p@� q`�C X�!����Y� T�!����Y�P�!p�B�(H�!�B�X8�R�!���� P�! ��H�+�P�f�!�t$����  & 0 ����DR J �H��������� �&@0 . j`�B 3��� ��������� �f�!�L���� �@� ���������,� * B ��������,�/�hP�B�?�������� ����������� �&@0 / j`�B 3��� ��������� �f�!@�L����hP#�H������`,��X �&  �������� ,� ���������� ��&� ���������,����$��(���� �f�!��������8��!���� P�! ��H�8*�P�f�!�������� ��!����Y���$��(���� �f�!��H� ������a� �!��������� a&��b�@�x@�!�B`F�!�B@(HL�!0@L���� ��� #�* �@� * B�� #`F��$��(���� �d�! �B���������� @���!�� ����  & 0 ���� D����Y�P�!@�H�)�P�d�!0b�B�����F0�B� ��������� ^�! ��H�x)�P�d�!��� ���� @���!�������� F�!�@�#C�JP�B� ��������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������1 �$������ NOTES026.A���������������������3b� �[NOTES.TEMPKIT]PASSKEY.EXE;1B;1�����������������������������������������������������������������������������������������������������H��������������������������"������������\�! ��H�H)�P�d�!��� ���� @���!�������� 0J�!�@�#�A�@�B�����B �B�����D0�B������Fph q ��C &�B����Z�! ��H�(�P�d�!p#~F����0��!���� ����P,�* (J�����(Q�HKyh�!���� XKH�!���� hKy(�!���� xKp�!���� 0YP�!`� ����0!L. ��B�����@�T�� ���� YP�!� ����B. �B�����D�<�� ���� YP�!0� ���� F. @�B�����H�$�� ���� XP�!0� � ����. �B����� ��������8O?#�l$���� P�! ��H�'�P�d�!���B�8�@ (]P�!���#���������� �!&�B����X�! ��H�'�P�d�!p#~F����0�!���� ����`,�2 0L�����0Q� qL?#k����7p��������� 0qL?# �B�������� ,�@�) �  $@����x� ��`������`x�h�� ]P�!0� ���� F. @�B�����H��� ���� (]P�!P� ����(J. ��B�����@��� ���� \P�!0� � ����. �B����� �l�� ���� P\P�!�(� ����P . �B�����(�T�� ���� \P�!D� �����#. �B�����D$�<�� ���� \P�!0L� ����@&. @�B�����L(�$�� ���� \P�!PT� ����*. `�B�����T,��������8O?#� $���� P�! ��H�%�P�d�!���B��@ a &0 ���� B����Y�AQ�!@#�H�%�P�d�! bB�����D`L���� 0LP ��������P,�`FA�$��(���� �d�!0HA�H�H� (P!�� #`FG$P��B�h%�P�d�!H@dA�D`H2 aP!�0 #`6G $P��B�X%�P�d�!@�H" �P�!� #`@��$��(���� �d�!p� (p��C (!P�!P * B�( #@@D0BL���� F� #`@��$��(���� �d�!���B�(��@@�P�!�������������U��� � �!��������� pU �b��`@�!�B@HF�!�B(�$ ��H�$�P�^�!` �B`���������� @?#�l�� ���� � &�0 ���� @����@Y�L�!#�H�$�P�^�!�B�����B �B�����D0�B�����F@�B�����HPr�B�����J�"�B�����@0 �B����� �B��������B�@X������pU�� � �!��������� 8)`�b���(@�!@�B�* @��� #`* �0� �* �@� #`�, �0 �B� � ��������� ! &0 ����B�!��������8H �!���� @J�!� ���������b/���� ���������HJ�! ��H -�" �B�8#�P�P�!p� ��C A�$*�@����HB�! ��H�8#�P�P�!p� (��C �aK�!� * B�� #`-�@L���� H��$ # (��$��(���� �P�!�,�� ���� �!J�!� * B�� #`(�@L���� @�� #���� HJ�! $ �������� ,� ���������� PD�!�( `A*�(�B ������������ �P�!�$���� � &�0 ���� �@p� q����� ��������� HJ�! ��H�h"�P�P�!���B�(��@@�J�!�������������8U��` � �!��������� `U �0�B� x0 �<0 x������b��P@�!�B�(F�!p�BPxR�!��B ( ��!����@Y� ��!����`Y� ��!����Y��?�������� 0�!p0 q�������������� @���!�<�� ���� H�x �!���� pL�! ��H -�" �B�X!�P�Z�!��� ���� pL�!��BxY�� ?�������� �����`U�� �`@�!@�B����� 8)`�b��� @�!�B���� @�� p���� ��������� HB�! ��H� �P�P�!p� (`��C !B�!  `* F� #@�HPBL���� (J�@ #������������ HB�! ��H� �P�P�!���B�@X������8U��` � �!��������� 8)`�b���@�!�H�B�H�! ��H�x �P�P�!p� (`��C aC�!  `* F� # @�HPBL���� (J�@ #�� ���������� @���!�����@X������8U��` � �!��������� H1�b�@�(@�!@�B` @G�!�(! # �p�B�������H`1Z�X�! ��H��P�T�!p� (`��C 0aG�!` * 8N�0 #�@�@BL���� B�@ #������������ G�!� ��������� ,����� �����HU�� � �!��������� 8)`�b��� @�!p�B�������H J�H�! ��H��P�P�!p� (`��C aC�!  `* F� # @�HPBL���� (J�@ #�� ���������� @���!�����@X������8U��` � �!��������� H1�b�@�(@�!@�B` @G�!�(! # !��H@1R�X�! ��H�X�P�T�!p� (`��C 0aG�!` * 8N�0 #�@�@BL���� B�@ #�� ���������� @���!�����@X������HU�� � �!��������� H1�b�@�(@�!@�B` @G�!�(! # !��H@1R�X�! ��H��P�T�!p� (`��C 0aG�!` * 8N�0 #�@�@BL���� B�@ #�� ���������� @���!�����@X������HU�� � �!��������� 8)`�b���@�!�H�B�H�! ��H��P�P�!p� (`��C aC�!  `* F� # @�HPBL���� (J�@ #�� ���������� @���!�����@X������8U��` � �!��������� 8)`�b���@�!�H�B�H�! ��H��P�P�!p� (`��C aC�!  `* F� # @�HPBL���� (J�@ #�� ���������� @���!�����@X������8U��` � �!��������� 8)`�b���@�!�H�B�H�! ��H��P�P�!p� (`��C aC�!  `* F� # @�HPBL���� (J�@ #�� ���������� @���!�����@X������8U��` � �!��������� hA�b��X@�!�B @F�!p�B( @M�!�X! # 7��B����� B�����)B�����" ��H`6�H&@�Hb�x(�! ��H��P�\�!p� (`��C �aM�!� * B�� #@5@�D0BL���� F�@ #������������ M�!� ��������� ,����� �����hU�� � �!��������� H1�b�@�8@�!`�B F�!�B����� B�����(B�������H &�," �H@B�X$�! ��H��P�T�!p� (`��C �aI�!� * B�� #@%@�D0BL���� F�@ #�� ���������� @���!�����@X������HU�� � �!��������� H1�b�@�@�! �B�Q��H !J�X�! ��H�h�P�T�!p� (`��C aE�!@ * (J� #@�LpBL���� 8N�@ #�� ���������� @���!�����@X������HU�� � �!��������� H1 �0�B� x0 �<0 x������b�@�0@�!P�BP @� # @I�!�0! # '�0�B@P� X�H!�P, # B�� H!�H�#`�� I�!�P�#� *� T�B ������������ �T�!p� (`��C 8aI�!p �* �@�8 # %@�B BL���� D�@ #������������ I�!� ��������� ,����� �����HU�� �`@�!@�B����� @- �0�B� x0 �<0 x�����p�b� ������(a� �B�a�@��!�B�����  ��H`A�( ��H@�D$0�H`"�P&�! ��H�8�P�R�!p� (`��C aE�!0 * H� #@�J`BL���� 0L�@ #�� ���������� @���!�����@X������@U��p �`@�!@�B����� H1 �0�B� x0 �<0 x������b�@�0@�!P�BP @� # @I�!�0! # !'�0�B@P� X�H!�P, # B�� H!�H�#`�� I�!�P�#� *� T�B ������������ �T�!p� (`��C 8aI�!p �* �@�8 # %@�B BL���� D�@ #�� ���������� @���!�����@X������HU�� �`@�!@�B����� H1�b�@�8@�!`�B F�!�B������B���� �� `&�(!�B�����" !�B�����D$0��H&�L(P�HB�X*�! ��H��P�T�!p� (`��C �aI�!� * B�� #@%@�D0BL���� F�@ #������������ I�!�  ��������� ,����� �����HU�� � �!��������� H1�b�@�@�! �B����@�F��B�����  �B����P� �B�����(��H@�D$0�H`"�X&�! ��H�(�P�T�!p� (`��C aE�!@ * (J� #@�LpBL���� 8N�@ #�� ���������� @���!�����@X������HU�� � �!���������  ��B`� P�!�( �����(!�B�����" !$�B�����D$���B�@X� �!��������� HA�b�@�@�!@L���� @��� # * H��$ @* P��H( #`��$� �(���� �T�!p� (`��C !F�!@ * (J� #0LpBL���� 8N�0 #����F���������� �]F!� ���� B�! �B��������,� ������������ �T�!  �B �(��������� aF! ��������,�` `B�!����`Y� pB�!����pY����������� �T�!��B�������������� �T�!P,�$*��J��������@�D�!�������������HU�� � �!��������� x �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x` �&�A<0(���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������?�$������ NOTES026.A���������������������3b� �[NOTES.TEMPKIT]PASSKEY.EXE;1B;1�����������������������������������������������������������������������������������������������������H�������������������������v�"�����+��������`�`������������������ x` �&�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x� &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x@ &�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x� &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x� &�A<0(��`�`������������������ x� &�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x` �&�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x� &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x` &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x &�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x �&�A<0(��`�`������������������ x` �&�A<0(��`�`��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �������������������������������������������@������������P������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������P�������������P������������������������������0������������0������H������0������������h������������������������������������������������ ������������ ������(������������(������P0������������P0������1������(������1������`4������@������`4������5������X������5������6������x������6������`7������������`7������`8������������`8������09������������09������:������������:������:������������:������;������������;������p<������ ������p<������0=������8������0=������p>������P������p>������?������h������?������P@������������P@������A������������A������B������������B������0D������������0D������pE������������pE������F������������F������F������(������F������H������@����������0�$a>�������������0�,au�����������0�&a0�����������0� &a6��������������0�'a<�����������0� &a3��������������0� 3a������������0� -a:���������������0� 2a�������������0�1a����������0�.a<�����������0�'a����������0� ,a6��������������0�'a*�����������0�'a!�����������0�)a-�����������0�'a$�����������0�)a'�����������0�)a'�����������0�'a!�����������0�'a!�����������0�'a!�����������0�-a9�����������0�)a0�����������0�)a$�����������0� )a9��������������0� (a0��������������0� )a6��������������0�)a9�����������0�)a0�����������0�"1��������������0�)aW������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%s �����g�������gpu�����USER����%s%s����SYSTEM��*%������::��������������������������������������������g�������gpdu������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������&���������������&���������������&���������������&������������������������������&���������������&������������������(����������������&������ ����� �������������H������������X����������������������������������&�����������������������x����������������&���������������&���������������������&���������������&���������������&���������������������&�������������������������&���������������&�����(�����8���������������&�����H�����`�����x����������������������������&��������������������������������������&���������������������������������������������&���������������&���������������&���������������&���������������&���������������&���������������&���������������&���������������&���������������&���������������&���������������&������������&�������������0��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`����V #�5��`����V ģ�M��`�����������K��`������ �����/��`�����������1��`�����������3��`�����������=��`������������?��`�����������O��`������ ����A��`���������� �������+���������`�����������������������%��`������������#��`�����������I��`����@��������`�����������������������%��`�����������#��`�����������I��`������������`����IS#���������������%��`�����������#��`�����������I��`����@��������`����������������$���������`�������������`���� �������E��`����@��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������>�$������ NOTES026.A���������������������3b� �[NOTES.TEMPKIT]PASSKEY.EXE;1B;1�����������������������������������������������������������������������������������������������������H�������������������������r������<����������������������LIBOTS�DECC$SHR�SYS$PUBLIC_VECTORS�LIBRTL������X������ ��p������������������������ ��p������������������������ ��p������������������������ ��p�����������������8��������p�����������[������ ��������p�����������V��������������p�����������W��������������p�����������U������������ ��p�����������u����������� ��p���������������������� ��p����������������x������ ��p�����������l�����`������ ��p����������������P������ ��p�����������������@������ ��p�����������{������(������ ��p�����������q����������� ��p����������������������� ��p�����������z��������������p�����������N������������� ��p����������������X������� ��p����������������H���������p�����������O������(������� ��p��������������������������p���������������������� ��p����������������������� ��p����������������������� ��p�����������l������������ ��p�����������j������������ ��p�����������q������������ ��p�����������n������������ ��p�����������k������������ ��p�����������m������������ ��p�����������{������x������ ��p�����������t������h������ ��p�����������u������H��������p�����������v������@��������p�����������~������(������ ��p�����������������h������� ��p�����������\������8������� ��p������������������������m�����������������������������l�������m����������������������������P�������o������������������������������x�������o������������������������������������o������������������������������������o������(������������������������������o��������������� ��������������������o�������������� ��������������������o������H������������������������������o�����������������������������������o������X������������������������������o�����������������������������������o������������������������������������o������������������������������������o������������������������������������o�����������������������������������o�����������������������������������o������x�����������������������8������o�����������������������������p������o�����������������������������������o����������������������������������o����������������������������������o������(����������������������������o������8����������������������������o������H����������������������������o������`����������������������������o������x����������������������������o����������������������������������o�����������������������������P������o�������������������������������������������������������������H������o���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������f�������IPF/VMS�PASSKEY���������������j�������IPF/VMS�PASSKEY�������� �������g�������IPF/VMS�NOTES V2.5��������������������e�������IPF/VMS�V ģ���������������h�������IPF/VMS�Linker T02-17�����������������k�������IPF/VMS�������V ģ����������������������������l�������IPF/VMS�V ģ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.shstrtab�.strtab�.note�.dynstr���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������!������������������������������� �����������������������������������������������������������������������������������������@���������������������������������������������������v������+����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������-6�$������ NOTES026.A���������������������"b� �[NOTES.TEMPKIT]OANOTES.OIJ/1B;1�����������������������������������������������������������������������������������������������������������������������������������'�������LZg6Pk}1_h4'3N+lhMS'_PM"PILAMjD Jk&jP~|JR"H2aaffyDFN2oKBc7|vM=kYNym̷e:.0q b\0Q&@`olo'?4X]4ɯ>.>}ch 8@TY@BZ)o5hj敏i^"0>vcXOeE 3}gl}Rbao~K U+f]eW +9;! =!PzJX8ziY�HN5lzJu 9k;SU 7GN@n0i %MyK=CoMhn27J3'*M &9o9w�{)F9*W+:EowZ#\))_ 6 @"6xK <m^4,$1lk6wL(%P'*ƐЋẀ*-:kwޥB8+koQiN[IN 3eNcU&\Ul%[vNf_1+rd57& #$?"/<|,lK'�8l|$!8pd#8-w"B (?"slR0Js) ݎ;w3n�D[n1u ۊiU9&?U:䖧pXqNw`[&,{S<9Jn[Nb 5~yxk,ECfS/!Gwlq&%}+S |e^-7$h\4Co TyJ7__ )Ub+Q/'b3 3Y2']O ,'F>0XT(<Rmi/k@Bac%@Q?MZ7ApJ:٬ZB@dAZ%zfIc3[>D[v{|w&|{("TLo#BJ-RsnFnjmlcbr0p(dJ7'vkz43|V=6E.2E.9\xHdO@YpTV3_se�X 3g] RMhlL"%'D!>6r6!-#D!Lm$x6=i]1u7a{nMg^{=}TF^WTVt/Na4L2VW{pv:2N,DgO02% nB6ly%kʇ<fFw!3�?%9IgOB]CC6"+  Aa rTEug)E|0AGM"B& i2&�G{l'/N׉#9Rq0! w \.kȌN_VN|}>/M\k(/MKD�DA? Ug bv.TDYc뱆o,/`0a%k41LGA lX tcw @W04zL5!\~,w_/Gu~aN/G OOhsظ~/`e+?xfx]-x2I`0- .RVV�ڑ&:nk$::S(/cn6->|D4k ,eb3,lZmQW<=-Ea > =S(vJSt@z$Q`CH7D0 X2X@>ki6 0UMd,'CIhz&dn tB?JM̢Ch\z/1ggD|iA%0<ruH'< , .VY™z%ZctindwoEpge&]85ŋ5^V8Jg)rpO0Q[ csA)b1GUi.8?X4G#(X1+V*x_mu[Ptn -/x0j%x d/76+l[x1*Q! 7$h/ +9bO}1p}E~;#B>0ey; LEbwhR% zQgj[*PbmO\c�5ɬTOKr4<l/s0]�z/r'jGNsx ZVr8G+%H`mo5 IǪ'XD%hi �O8X~7#)pu;A*@{p _W60\|\UFECxC\(6'X0(>B @ 6/kVGp!ԒQ'gP �)$4!w$o* �X" N�K=XN^ 14,[<' $NB6<aW)[Rp'X\R1z8Qmg O.ԥ 6 ?gEr?=}K\d{-)Q35j!\d7Z5ީE<crq}0/2Z)0b`Szc *ǺLCA@.y*C=w0,I3\a?1^v3ˢ+V]oJO|Z|! je1*/-O+/DJ)~^$ y=]5iKTD,XW:R(/,e0hGw~sP-MtGj%a%_- |c.IwN- lWq%23A: D�/C !|Z7 pJ7%wstk)) d(Sao3;E cJl"<qyOI!C?QD'rB:usNmD*mt_f|`]iaO,7n0raF�N Q6?<g,hAA &j.<pmG\AƳx>>^t!_v%aqc ́lRP@a+D7MW~at\gBN yv�>AuBD D@'2<]"D3F:qfPYnL9<R\P�[=yoknj(;`6>Qhscz.dɛf"f@x' O'ud<EHssruPe.pudS@En*|vsBUtDd y+_"y΍) 0Xs'00apsՄJZa`#_P,'seeyl !n5=;?p?#T& Ufo*`. sq%{0.]`LNk -OhvGU.t' ^1EaGt@>bYQ}>{4Tv)9x-pmDǎ;h3ou~]u"tm2A54i'? Nx\>0̑o/o fFtmMwL-2TS rFzH<\(d:J O8Pf(n7}'λ( ԛ%4:8C#?3 A qHTS>- ˗" 7HWO@a}�10 \!d͸fGyJ!Aq`e JuU\ho $oNjg9c%Hu}Rp&kIH% *_(UMhQ(R\b5UNb5.m2g3@ w+S|bs*e:Xuw(")t#qmbm^*'T2q7C3a {f%3ex:adhbYBf; ڹVa_iW+/qD@.K6غ7|`"M7 \vz1gkJ2%orn%1sGXo zaOJH>sF|+F_BYd<D`~PmXA_o)(\Mb^/op$g-oURbc*H3#+vf1Oy 4h^L%yWѢ|_+!Z87emOGR V"W?< cMxw-%TcǪ?|s&v2d[6idC4E-kCp nFJi %HSd!]PPD>_O*XӜLSZ5kK;KtX ;DމDBu@̑RVKw/@y=g   4>!4+py-f@={t%.=o }KZdސ($'SO{D[W$joZL(dAkgtHS8:okh=#I0(CrN%w Slev 4 r*UgJRS jrM3Tc 5<*$?)yKy xyk,QK/uW;^O/6'9K M~NjWFkVqt[snzM`l"d M$$ 4|W-703j*d|]H I 'pV 'bj?.)]" HE ' A<[r: p4?33 6sh1$'E65u;w%E\x#Li} z?pWLHoߐ )z6OD~bckyAVd}lxqiO|?W(6e:l<~81*5eO~_S 3U CocEsĥZ,ysY-NE&s@):h&zTMQdg.QC9{qGcIc΃ p{m5.Dip49!$ZAj <74)VT~ J eђ&A R8*mN|ٴWV~>a_jkpwsJQi  \%35pv ܬADBv + 3*K~LI3g5}LleI+cP`|NK=PGG2A[jוGt= NJ0Jotpp}Pdst~v7Bm-${"QnoL7좢F:S{fIh&2k�Uz?FbJgOT7eJ*zL!]FdF CE .$T_[vo?2"5aL?f>MoK1:B#x$~(K9 iichj+1')uv=M%54|XZ}ca2wXώGcNE[? co"Z'^Oa(3<GF%H{H~SBF.Mus*u6UtvTq7W{c�b:kL30E4WG5UBS7<TMxn*P�-ly1:.,|Z&>KL0yws6J_v>7LU@,3���c+`�.{)jEAN`T,1/jni zjYpuԎkT$}ugsc1]SjF LFVz�yrAXU[yLbGad|cMyǹwpAB7nSSir*bx'M&<TLdn|_00grhbBB ,l/zjpfUk "ESuT T"qMJp9HUy/{q1Ubm5-/7=?ofQKUW]ߞ@F ^i)yNb!@Z3Z�lXyPy+ pXCoR EZP<rw)c8t<d MS 5sLv',bȾoUC(Bg}3;jNKiOp;7%@ZwJls$ QmXb6?3`�Z#Hn ;f<5w}o9? a Z +b1r)3pp~{"UnTOl4A|ya\",Srben v8wTjveT@*f.1#9^r3d Z!QH((?s}E(C/E �T V>Kk OJd0 'a.vQqLKd;^@pMDH r*orpbFs R r:$JeROq)$)\{t0]rÂ"l�/']T{!+O(<\]=EHVHT\Xe#wS(\ �Ii-7Ub9K6o/cQT,$' +z ЬA.z6%1S90gum1'zlOGG fsU[6,<)+ KUA~>&sfrvk5FkVj]Rӱa}s.W h9'G_'.j�c]6Ǘ^ZI tYqb8))N x)ע&?=so5o*sZ/ {XW+5H0v,az|nd:ś(HfK�~vhkU5e5dB'L-Dzx!Lr|Bx+CBW~)X+l ;P)pmj]vdҁ>H1]YY.>3ipzns~�ϣ6YG2nXT|6Y!Q&غ |�rX3ABq*uRo=2 aMn�r&eW0r}{5x`َXoxeK([h_ RtefiY?0 `+[_9Lr:%z7 *S;]9_�`)75}5�9,شYAVmE ! $eNF}54=+ r#C1y\.BҨZO>$рcV8?5^kX,5U]l Te\};>a xFr\!U+�J,CS4 1n*]sgr^~+V`}F^q}K,XC89j"qGl Fc|M;JD g[j E8I?eT \t,e+LT+8cN`{ʐeWWr�6Cf4y`KQ9,/&AO<8'MA,s9L�6R ;a $5fK {ХVtgnx4d+H1CtUc9`(j!@ATF`]qN�vp2"I'VB3WEvT dp;o\RPFH0tD7Dn;1-^ld9F)> cS:m?xT e4w\O<8 cD<<;U J"Ss!q"7-x_y'[7?!!,)'xNt`?*h%A,>ML9>W?Ժ[<4%Vmj]O;՟q5 ZsѬiSfgwτ!e_m6Oyqv il}M,N gq)`R� Hsyz {DQQ PE~ZeRS`B<I81> -ܸ4`+KQ6SaQ|Otpp�A}R!%bmD![;-<GR ^5N ?@2|\'>Ţz8g}A` <7 C--/r$>#�5SX {�GSW;p.xt>3,]kR[\eFLIAJ2(cwMbq.y*cf�5/70$`JD*=S'~O~g$F1%/`)$7T$;2#}e w}=1=4oN ]'5 TJ7g\ЙIQk~p+sM/h|63#Whh-}#X5@<@uh910 z/vܚ/fC,|Kq8�_: Glv+'eSԔ''aEEܑna9OFe-a1\m.UsO]ʋ]-y gY2%NmuBl%NO:qT5<T$42;="$TDa`wu~Bd~!Q %Lq9>:amxG)=6PClu&Th; EXaII \1AKW=u%aVgh@M$&\kl҄ݨ)'*C&/Z6('9VH* %..ӠmOHUOr|/\%dL<T]LiVXsV>}+-&qezmw/)�1ct`Yo0\?2Ds"~[ޞ<4 M(B@KAC{L:wDd�$8!e = ZTiVOR-My}v|Q u*V71+6/@a@0SB_<at>tilc$Y-IUUuUct]$lR}U$2aR=?~!;':U&٠x'h1g|X50O`+yb>Sg4275Yn8ׂ J<s;8L:RuRSIw zm=]TO&c#ce%m k -31y zdpb)i.^ 19#+=1 m$`"w,"L)ZHDu>|�^msڋLzFnC.۟sDkA7>HZ SaJ4~ +UNR  ln+Do zUL.kd^$ь>�_N`J4JFC #8(R|?_6@b6d'<dx%1@<3MP5Y.*TNz?Gk d)J,`"v([`iLu[=2"w V8J^'_e7?lU9 N(:Я#oTA:G~ߎBܟ9/( +gVOf?u3g V<xEu9>Z+'3 gYP$u"fg@*T=\1CclLev o{V̐FCXf0CPA :Ij pTQwAKw@б -9ML-syT@[?+:vc*m&#J*v@I*3f#y;&)s,b7bS%2QU%[XHLF1Ջ sMv; ;?8 H dl@) kSA-_kPIByYvZǵXR_BX'N1mKr@dǴ*o(WB !J}-M2/ZIZ{&< Xm;sz@� _/}zSYsónFUu=#KO$ nG <rg&ѯEX7;ݠ솼 �eɊz&kC+*J L9[xm 7Fh&Sz#]]2V2?c/I8E (/ihI!EeTQRpJ C9D̲4C@逮Ao}_H5O_ �WE],d%!zX> R8@;go}'3%%DTpE+"iCDWuD%Q~`CMC�qtti`(kho{ xe lvault�ip)�Q*(R`eUnK$W i(`XnS2UpN"&k Ɲ\lh`6"AL}ktkd>"\⥊('GfKYH b 9b-/.w/qX5LXWiga?!;@!\pt OP1|`veq�V+adt(PXTr(p,5TzBvMcŢ"$P"4x׷]"Ȭ0 TWRC561;a-#56 l32; �SBLISS-32I V1.12-065�P.AAA����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������