DMS!        0   O Z&                ) p o  TR    #3#3,  *1"DOS ne = FALSE;

	if (dl = LockDosList(DOSLISTFLAGS)) {
		if (FindDosEntry(dl, "ICONS", DOSLISTFLAGS)) {
	strcpy(Buf, "ICONS:");
	Done = TRUE;
		}
		UnLockDosList(DOSLISTFLAGS);
	}
	if (!Done)
		strcpy(Buf, "ENV:Sys");
}
/* FIB can be null but give it if you alredy have it. */

BOOL AddIcon(char *FileName, FileType OnlyType, BOOL Quiet, BOOL Float, BOOL Overwrite, struct DiskObject ** LastDOb, FileType * LastType, struct FileInfoBlock * FIB)
{
	char *IconName = NULL;
	char Buf[255];
	FileType Type;
	LONG WBType = 0;
	BOOL Idem;
	BOOL Ok = FALSE;	/* assume the worst */
	struct DiskObject *dob = NULL;
	BPTR L;

	if (!Quiet) {
		Printf("%-32s  ", FileName);
		Flush(Output());
	}
	SPrintf(Buf, "%s.info", FileName);
	if (!Overwrite && (L = Lock(Buf, ACCESS_READ) {
		UnLock(L);
		if (!Quiet)
	PutStr("Icon already exist.\n");
		return TRUE;
	}
	Type = WhatIsTags(FileName, WI_Deep, DEEPTYPE, (FIB) ? WI_FIB : TAG_IGNORE, FIB, TAG_DONE);
	if (!Quiet) {
		Printf("%-12s ", GetIDString(Type));
		Flush(Output());
	}
	if ((OnlyType != TYPE_UNSCANNED) && CmpFileType(Type, OnlyType)) {
		if (!Quiet)
	PutStr("Type not desired\n");
		return TRUE;
	}
	Idem = !CmpFileType(Type, *LastType);

	if (CmpFileType(Type, TYPE_UNKNOWNFILETYPE)) {
		if (!CmpFileType(Type, GetIDType("Volume") {
	IconName = "def_Disk";
	FileName = "Disk";
	WBType = WBDISK;	/* To use ROM resident icon if no def_Tool defined in ENV:Sys */
		}
		else if (!CmpFileType(Type, GetIDType("Dir") {
	IconName = "def_Drawer";
	WBType = WBDRAWER;	/* To use ROM resident icon if no def_Tool defined in ENV:Sys */
		}
		else if (IconName = GetIconName(Type)) {
	if (!Stricmp(IconName, "def_Tool"))
	WBType = WBTOOL;	/* To use ROM resident icon if no def_Tool defined in ENV:Sys */
	else if (!Stricmp(IconName, "def_Project"))
	WBType = WBPROJECT;	/* To use ROM resident icon if no def_Project defined in ENV:Sys */
		}
		if (!Quiet) {
	if (IconName) {
	Printf("%s.", IconName);
	Flush(Output());
	}
	else
	Printf("No icon defined!\n");
		}
		GetDefIconsDir(Buf);
		AddPart(Buf, IconName, 50);		// Use AddPart() so that user can configure DEFICONS:def_Mumble is S:FileTypes
		if ((dob = (Idem) ? *LastDOb : ((WBType) ? GetDefDiskObject(WBType) : GetDiskObject(Buf) {
	if (Float) {
	dob->do_CurrentX = NO_ICON_POSITION;
	dob->do_CurrentY = NO_ICON_POSITION;
	}
	if (PutDiskObject(FileName, dob)) {
	if (!Quiet)
	PutStr("Ok\n");
	if (!Idem) {
	if (*LastDOb)
	FreeDiskObject(*LastDOb);
	*LastDOb = dob;	/* memorise the current icon */
	*LastType = Type;	/* memorise the current type */
	}
	Ok = TRUE;
	}
	else
	PutStr("Can't write icon !\n");
		}
		else if (IconName)
	PutStr("Can't read icon.\n");
	}
	else
		PutStr("Unknown file type.\n");
	return Ok;
}
long Main(char *argv[], struct WBStartup *WBenchMsg)
{
	long rc = 0, NumSub = 0;
	char *FileName;
	BOOL Files, Dirs, Quiet, Float, OverWrite, All;
	struct AnchorPath *AP;

	FileName = argv[ARG_FileName];
	Files = (BOOL) argv[ARG_FILES];
	Dirs = (BOOL) argv[ARG_DIRS];
	Quiet = (BOOL) argv[ARG_QUIET];
	Float = (BOOL) argv[ARG_FLOAT];
	OverWrite = (BOOL) argv[ARG_OVERWRITE];
	All = (BOOL) argv[ARG_ALL];

	if (!(IconBase = OpenLibrary("icon.library", 37L)
		return 20;
	if (WhatIsBase = OpenLibrary("whatis.library", 0)) {
		if (AP = AllocVec(sizeof(struct AnchorPath) + 256, MEMF_PUBLIC|MEMF_CLEAR)) {
	struct DiskObject *LastDOb = NULL;
	FileType LastType = TYPE_UNKNOWNFILETYPE, OnlyType = TYPE_UNSCANNED;
	LONG MatchErr;
	BPTR StartDir;

	if (argv[ARG_ONLY])
	OnlyType = GetIDType(argv[ARG_ONLY]);
	AP->ap_BreakBits = SIGBREAKF_CTRL_C;	/* Break on these bits	*/
	AP->ap_Strlen = 255;
	AP->ap_Flags = (All) ? APF_DODOT : APF_DODOT|APF_DOWILD;	/* allow convertion of '.' to CurrentDir */

	switch (ParsePatternNoCase(FileName, AP->ap_Buf, 256)) {
	case 1:		// Pattern
	StartDir = CurrentDir(struct Process *) SysBase->ThisTask)->pr_CurrentDir);
	for (MatchErr = MatchFirst(FileName, AP); MatchErr == 0; MatchErr = MatchNext(AP)) {
	if (AP->ap_Flags & APF_DirChanged) {
	CurrentDir(AP->ap_Current->an_Lock);
	}
	if (AP->fib_DirEntryType > 0) {
	if (AP->ap_Flags & APF_DIDDIR) {
	if (!Files)
	AddIcon(AP->fib_FileName, OnlyType, Quiet, Float, OverWrite, &LastDOb, &LastType, &AP->ap_Info);
	/* clear the completed directory flag */
	AP->ap_Flags &= ~APF_DIDDIR;
	NumSub--;
	}
	else {
	if (All) {
	long i;

	if (!Quiet) {
		for (i=0; i<NumSub; i++)

	Printf(" ");
		Printf("[33m%s  (dir)[31m\n", AP->fib_FileName);
	}
	/* make it enter the directory */
	AP->ap_Flags |= APF_DODIR;
	NumSub++;
	}
	else
	AddIcon(AP->fib_FileName, OnlyType, Quiet, Float, OverWrite, &LastDOb, &LastType, &AP->ap_Info);
	}
	}
	else {		// File
	if (!Dirs && !MatchPatternNoCase("\X80.INFO", AP->fib_FileName))
	AddIcon(AP->fib_FileName, OnlyType, Quiet, Float, OverWrite, &LastDOb, &LastType, &AP->ap_Info);
	}
	}
	MatchEnd(AP);	/* This absolutely, positively must be called, all of the time. */
	CurrentDir(StartDir);
	if (MatchErr != ERROR_NO_MORE_ENTRIES) {
	PrintFault(MatchErr, "AddIcon");
	rc = RETURN_ERROR;
	}
	break;
	case 0:
	// Normal file or dir, no pattern.
	if (!MatchPatternNoCase("\X80.INFO", AP->fib_FileName))
	AddIcon(FileName, OnlyType, Quiet, Float, OverWrite, &LastDOb, &LastType, NULL);
	break;
	default:
	PrintFault(IoErr(), "AddIcon");
	rc = RETURN_ERROR;
	}
	if (LastDOb)
	FreeDiskObject(LastDOb);
	FreeVec(AP);
		}
		CloseLibrary(WhatIsBase);
	}
	else
		Printf("Requires whatis.library\n");
	CloseLibrary(IconBase);
	return rc;
}

b v  u  t  s x^   dBrowserII_Files.info1 b     +@I   ʐ^   g  
BaseName.c; ܐ /*
 *	BaseName.c - Copyright  1992 by Devil's child.
 *
 *	Created:	11 Sep 1992  18:00:25
 *	Modified:	16 Mar 1993  23:03:31
 *
 *	Make>> sc <file>.c
 *	Make>> slink <file>.o SC SD ND BATCH NOICONS TO <file>
 */
long BaseName(void)
{
	struct ExecBase *SysBase = *((struct ExecBase **)4L);
	struct DosLibrary *DOSBase;
	APTR UtilityBase;
	struct RDArgs *RA;
	char *Argv[] = { NULL, NULL, NULL };
	UBYTE *s, *suffix;
	long suflen, namelen, rc=20;

	if (DOSBase = (struct DosLibrary *)OpenLibrary("dos.library", 37)) {
		UtilityBase = DOSBase->dl_UtilityBase;
		if (RA = ReadArgs("Path/A,Suffix", (long *)Argv, NULL)) {
	s = FilePart(Argv[0]);
	if (Argv[1] && (suflen = strlen(Argv[1])) < (namelen = strlen(s) {
	suffix = &s[namelen - suflen];
	if (!Stricmp(suffix, Argv[1]))
	*suffix = 0;
	}
	Printf("%s\n", s);
	FreeArgs(RA);
	rc = 0;
		}
		else
	PrintFault(IoErr(), "BaseName");
		CloseLibrary((struct Library *)DOSBase);
	}
	return rc;
}
, b    * V	`{ ; : 9 8 7 6 5 4 3 2 1 0 / . - , + * ) ( ' & % $ # " !                 S>^   o  For.c@ ܐ /*
 *  Copyright  1992-94 by S.R. & P.C.
 *
 *  Created: 30 Mar 1992  18:26:36
 *  Modified: 09 Nov 1994  23:11:45
 *
 *  Make>> rx BumpRev For 3 8
 *  Make>> sc <file>.c
 *  Make>> slink LIB:cs.o <file>.o SC SD BATCH NOICONS TO <file> LIB LIB:c.lib
 *  Make>> protect <file> P ADD
 *
 *
 *	30/03/1992: V1.0 (Pierre Carrette)
 *		Simple version with template: "Args/M,ALL/S,DONTFAIL/S,DO/K/A/F"
 *  4/07/1994: V2.2 (Sylvain Rougier)
 * No longer add the name of the object if no '%%' present
 *  5/07/1994: V3.0
 * Add the 'Quiet' option not to print hierarchy (but still print FileType if asked)
 * Now work as it should always work: don't scan all the directory if no pattern
 * but scan all subdir if 'All' option specified.
 * Add the 'GivePathName' option to provide a Full Path arguments to the command.
 * No longuer add '"' around the file name. User can type '"%%"' if he need it.
 *  7/07/1994 V3.1
 * If a full pathname file entry was specified, For don't find it type. fixed
 *  15/07/1994 V3.2
 * Guru if a single file was suplied. fixed
 * Now FullPathArgs realy work
 * Don't put optimize or it guru ! (see note)
 *  31/07/1994 V3.3
 * Check the stack size because it need at least 8192 (probably !.)
 * put optimize again. just to see.
 *  07/08/1994 V3.4
 * Remove optimize because the sasc bug still here
 * correct some error int the doc ( the '*' was incorrectly used instead of the '"')
 *  21/08/1994 V3.5
 * Now use StackSwap() to avoid stack pb
 *  22/09/1994 V3.6	(Pierre Carrette is back :-)
 *		Major code cleanup. No more need StackSwap(). Bug fixes in template. whatis.library now Optional.
 *		Inverted 'Quiet' to 'Verbose'. Changed 'VNFileType' to more comprehensive 'FileTypeVar' keyword.
 *		Changed 'GivePathName' to 'FullPathArgs'.
 * FileTypeVar was not set if Showbytes was off.
 * Showbytes/ShowFileType is now off if no Cmd supplied.
 *		'Type' argument syntax simplified. now:  "#text,!source c"
 *		MatchFileType()TR   ++++,  +|]. bug fix. "#text,!source c" was not working!!
 *		SAS Optimisation now works!
 *  22/09/1994 V3.7
 *		Recompiled with new version of c.lib which had a bug for 'ENV:' var parsing
 *  09/11/1994 V3.8
 *		Bug fix. File UnLock()ed before processed so that command can open it for writing.
 */

#include <clib.h>
#include <libraries/WhatIsBase.h>
#include <proto/WhatIs.h>
#include "For_rev.h"

// Startup Modules.
CliArgs; ReadEnvArgs("For");

static char Version[] = VERSTAG;

STRPTR Template = "\
Pattern/A/M,Files/K,Dirs/K,Since/K,Before/K,MinSize/K/N,MaxSize/K/N,\
PosProtect/K,NegProtect/K,Type/K,All/S,ASync/S,ReadSize/K/N,ShowBytes/K/N,\
D=Deep/K/N,SFT=ShowFileType/S,FTV=FileTypeVar/K,FPA=FullPathArgs/S,Verbose/S,Do/K/F";

STRPTR CliHelp = VERS" ("DATE") [32m Sylvain Rougier & Pierre Carrette.[31m\n\
Usage: For <Pattern> [Files <MATCH|YES|NO>] [Dirs <MATCH|YES|NO>]\n\
[Since <Date>] [Before <Date>] [MinSize <Number>] [MaxSize <Number>]\n\
[PosProtect <L|C|H|S|P|A|R|W|E|D>] [NegProtect <L|C|H|S|P|A|R|W|E|D>]\n\
[Type <[#=SUB,~=EXLC]FileType0,FileType15>] [All] [ASync] [ReadSize]\n\
[ShowBytes] [Deep] [ShowFileType] [FileTypeVar <var name>] [FullPathArgs]\n\
[DO <Command [args] [,Command [args] [,.]]>]\n";

#define ARG_Template		0
#define ARG_Files	1
#define ARG_Dirs	2
#define ARG_Since	3
#define ARG_Before	4
#define ARG_MinSize	5
#define ARG_MaxSize	6
#define ARG_PosProtect		7
#define ARG_NegProtect		8
#define ARG_Type	9
#define ARG_ALL	10
#define ARG_ASYNC	11
#define ARG_READSIZE		12
#define ARG_SHOWBYTES		13
#define ARG_DEEPWHATIS		14
#define ARG_SHOWFILETYPE	15
#define ARG_FileTypeVar		16
#define ARG_FullPathArgs	17
#define ARG_Verbose	18
#define ARG_CMD	19
#define ARG_ENDARG	20
struct Library *WhatIsBase;
#define MAX_PATHLEN		256
#define MAX_CMDLEN 		512

/* char used in the filetype spec string */
#define NOTFileType		'~'
#define WITHSubTypes	'#'

/7*/
/* not in dos.h !! */
#define	FIBB_HOLD		7
#define	FIBF_HOLD		(1<<FIBB_HOLD)

/* it is my own definition: not standard */
#define	FIBB_COMMENT	8
#define	FIBF_COMMENT	(1<<FIBB_COMMENT)
#define	FIBB_LINK		9
#define	FIBF_LINK		(1<<FIBB_LINK)
#define PATTERN_BUF_SIZE	40
#define MAX_FTS	16	/* Max FileTypeSpec in SelectInfo */

struct FileTypeSpec {
	FileType fs_FileType;
	UWORD fs_Flags;
};

/* FileTypeSpec flags */
#define FTSF_EXCLUDETYPE	0x01	/* Exclude this type (otherwise include) */
#define FTSF_WITHSUBTYPES	0x02	/* Affect Include/Exclude to subtypes */
struct SelectInfo {
	UBYTE si_PatTok[PATTERN_BUF_SIZE];		/* PreParsed pattern 	*/
	LONG si_MinSize;	/* Show files bigger than that  	*/
	LONG si_MaxSize;	/* and smaller than that 	*/
	struct DateStamp si_SinceDate;	/* Show files newer than that 	*/
	struct DateStamp si_BeforeDate;	/* and older than that 	*/
	UWORD si_PosProtect;	/* Show files that have these bits set 	*/
	UWORD si_NegProtect;	/* Show files that have these bits clear 	*/
	struct FileTypeSpec si_FileTypes[MAX_FTS];	/* Include and Exclude file types 		*/
	UWORD si_NumFts;	/* Number of FileTypeSpec in previous array */
	UWORD si_Flags;	/* Flags. See below */
};

/* SelectInfo flags */

#define SI_ALL_FILES		0x01
#define SI_MATCH_FILES		0x02
#define SI_ALL_DIRS	0x04
#define SI_MATCH_DIRS		0x08
#define SI_AFFECT_SUBDIRS	0x0010
#define SI_NAME	0x0020
#define SI_SIZE	0x0040
#define SI_SINCEDATE		0x0080
#define SI_BEFOREDATE		0x0100
#define SI_POSPROTECTION	0x0200
#define SI_NEGPROTECTION	0x0400
#define SI_POSFILETYPE		0x0800
#define SI_NEGFILETYPE		0x10

#define SI_FILETYPE	(SI_POSFILETYPE|SI_NEGFILETYPE)
#define SI_MATCHBITS		(SI_NAME|SI_SIZE|SI_SINCEDATE|SI_BEFOREDATE|SI_POSPROTECTION|SI_NEGPROTECTION|SI_FILETYPE)
struct Opt {
	BOOL Verbose;	/* Print some information */
	BOOL Async;	/* Run commands Asynchronously */
	BOOL FullPathArgs;	/* Give Full PathName in Fmt ? */
	BOOL ShowFileType;	/* Show FileType ? */
	LONG ReadSize;	/* Size to read to find filetype */
	ULONG Deep;	/* deep level to find FileType */
	UWORD Showbytes;	/* number of bytes to show */
	STRPTR FileTypeVar;	/* Name of FileType var. no var if null */
};
/* return pointer to the first non blank char in a string, or to the '\0' if the string is empty */

static char *FirstNonBlank(char *buf)
{
	while (*buf && *buf == ' ')
		buf++;
	return buf;
}
/* check if buffer is empty or not */

static BOOL IsEmpty(char *buf)
{
	return (BOOL) ((*FirstNonBlank(buf)) ? FALSE : TRUE);
}
static BOOL String2Date(char *src, struct DateStamp *ds)
{
	struct DateTime *dt;
	BOOL Ok = TRUE;
	char *s1, *s2;
	char buf[60];

	if (!(dt = AllocMem(sizeof(struct DateTime), MEMF_PUBLIC | MEMF_CLEAR)
		 return FALSE;

	strcpy(buf, src);
	s1 = s2 = FirstNonBlank(buf);
	if (*s1) {
		dt->dat_StrDate = s1;
		while (*s2 && *s2 != ' ')
	s2++;
		if (*s2) {
	*s2++ = '\0';
	s2 = FirstNonBlank(s2);
		}
		if (*s2) {
	dt->dat_StrTime = s2;
	if (!StrToDate(dt))
	Ok = FALSE;
		}
		else if (!StrToDate(dt)) {
	dt->dat_StrDate = NULL;
	dt->dat_StrTime = s1;
	if (!StrToDate(dt))
	Ok = FALSE;
		}
		if (Ok)
	*ds = dt->dat_Stamp;
	}
	FreeMem(dt, sizeof(struct DateTime));

	return Ok;
}
static void PrintByte(UBYTE Buffer[], LONG BufLen, UBYTE Num)
{
	register short i;

	if (BufLen > 0) {
		for (i = 0; i < Num && i < BufLen; i++)
	Printf("%02lx", Buffer[i]);
	}
}
/*
 *  Parse a line that may contain comas. Backslash ('\') is the override char.
 */

static UWORD ProtectBit(char P[])
{
	UWORD PB = 0;

	while (*P) {
		switch (*P) {
		case 'L':
		case 'l':
	PB |= FIBF_LINK;	/* another magic bit! */
	break;
		case 'C':
		case 'c':
	PB |= FIBF_COMMENT;	/* our magic bit! */
	break;
		case 'H':
		case 'h':
	PB |= FIBF_HOLD;
	break;
		case 'S':
		case 's':
	PB |= FIBF_SCRIPT;
	break;
		case 'P':
		case 'p':
	PB |= FIBF_PURE;
	break;
		case 'A':
		case 'a':
	PB |= FIBF_ARCHIVE;
	break;
		case 'R':
		case 'r':
	PB |= FIBF_READ;
	break;
		case 'W':
		case 'w':
	PB |= FIBF_WRITE;
	break;
		case 'E':
		case 'e':
	PB |= FIBF_EXECUTE;
	break;
		case 'D':
		case 'd':
	PB |= FIBF_DELETE;
	break;
		}
		P++;
	}
	return PB;
}
static UWORD __inline EasyProtect(LONG Protection)
{
	return (UWORD) ((Protection ^ 0x0F) & 0x00FF);	/* Complement 4 lower bits so all work the same way */
}
static BOOL Match(struct SelectInfo * SelectInfo, struct FileInfoBlock *fib)
{
	if (fib->fib_DirEntryType < 0) {	/* this is a file */
		if (SelectInfo->si_Flags & SI_ALL_FILES)
	return TRUE;
		else if (!(SelectInfo->si_Flags & SI_MATCH_FILES))
	return FALSE;
	}
	else {	/* Dir */
		if (SelectInfo->si_Flags & SI_ALL_DIRS)
	return TRUE;
		else if (!(SelectInfo->si_Flags & SI_MATCH_DIRS))
	return FALSE;
	}
	if (SelectInfo->si_Flags & SI_NAME) {
		if (!MatchPatternNoCase(SelectInfo->si_PatTok, fib->fib_FileName))
	return FALSE;
	}
	if (SelectInfo->si_Flags & SI_SINCEDATE) {
		if (CompareDates(&SelectInfo->si_SinceDate, &fib->fib_Date) < 0)
	return FALSE;
	}
	if (SelectInfo->si_Flags & SI_BEFOREDATE) {
		if (CompareDates(&SelectInfo->si_BeforeDate, &fib->fib_Date) > 0)
	return FALSE;
	}
	if (fib->fib_Size < SelectInfo->si_MinSize)
		return FALSE;
	if (SelectInfo->si_MaxSize && (fib->fib_Size > SelectInfo->si_MaxSize))
		return FALSE;
	{
		UWORD Protection = EasyProtect(fib->fib_Protection);

		if (SelectInfo->si_Flags & SI_POSPROTECTION) {
	if (!(Protection & SelectInfo->si_PosProtect))
	return FALSE;
		}
		if (SelectInfo->si_Flags & SI_NEGPROTECTION) {
	if ((Protection & SelectInfo->si_NegProtect))
	return FALSE;
		}
	}
	return TRUE;
}
static BOOL MatchFileType(struct SelectInfo *SelectInfo, struct FileInfoBlock *fib, FileType Type)
{
	if (WhatIsBase && (SelectInfo->si_Flags & SI_FILETYPE)) {
		BOOL Sub = FALSE;
		UWORD Flags, i;

		do {
	for( i=0 ; i<SelectInfo->si_NumFts ; i++ ) {
	Flags = SelectInfo->si_FileTypes[i].fs_Flags;
	if ((!Sub || (Flags & FTSF_WITHSUBTYPES)) && !CmpFileType(SelectInfo->si_FileTypes[i].fs_FileType, Type))
	return (BOOL)((Flags & FTSF_EXCLUDETYPE) ? FALSE : TRUE);
	}
	Sub = TRUE;
		} while (Type = ParentFileType(Type));
		if (SelectInfo->si_Flags & SI_POSFILETYPE)
	return FALSE;	/* no match within include FileTypes, exclude file */
		else
	return TRUE;	/* Only exclude types, and not found in them, include file */
	}
	return TRUE;
}
/*
 *	Parse a line that may contain comas ','. Backslash ('\') is the override
 *	char. This function replace comas by cariage returns so that SystemTags()
 *	takes them as different command lines, just like a script file.
 */

static void ParseCmdLine(char *cmd)
{
	char *s, *d, c;

	s = d = cmd;
	while (c = *d++ = *s++) {
		if (c == '\\')
	*(d - 1) = *s++;
		else if (c == ',')
	*(d - 1) = '\n';
	}
}
/* Replaces %% by %s, suitable for SPrintf() */

static void MakeFmt(char *CmdFmt, char *Cmd)
{
	char *s;

	strcpy(CmdFmt, Cmd);
	ParseCmdLine(CmdFmt);		/* Replace , by \n to separate commands */
	s = CmdFmt;
	while (*s) {
		if (*s == '%' && *(s + 1) == '%')
	*(s + 1) = 's';
		s++;
	}
}
static LONG ExecuteCmd(char *Cmd, STRPTR StartPath, char *Name, struct Opt *Opt)
{
	char *CmdBuf, *CmdFmt, *NameBuf;
	LONG rc = 20;
	BOOL NoMem = TRUE;

	if (CmdBuf = AllocVec(MAX_CMDLEN, MEMF_ANY)) {
		if (NameBuf = AllocVec(MAX_CMDLEN, MEMF_ANY)) {
	if (CmdFmt = AllocVec(MAX_CMDLEN, MEMF_ANY)) {
	MakeFmt(CmdFmt, Cmd);
	if (Opt->FullPathArgs) {
	strcpy(NameBuf, StartPath);
	AddPart(NameBuf, Name, MAX_CMDLEN);
	}
	else
	strcpy(NameBuf, Name);
	/* Allow 5 %% in cmd */
	SPrintf(CmdBuf, CmdFmt, NameBuf, NameBuf, NameBuf, NameBuf, NameBuf);		/* build command line */
	if (Opt->Async) {
	SystemTags(CmdBuf,	SYS_Input, Open("*", MODE_OLDFILE),

	SYS_Output, NULL,		// System() will open it

	SYS_Asynch, TRUE,

	SYS_UserShell, TRUE,

	TAG_DONE);
	rc = 0;
	}
	else
	rc = SystemTags(CmdBuf, SYS_UserShell, TRUE, TAG_DONE);
	NoMem = FALSE;
	FreeVec(CmdFmt);
	}
	FreeVec(NameBuf);
		}
		FreeVec(CmdBuf);
	}
	if (NoMem)
		PrintFault(ERROR_NO_FREE_STORE, "For");
	else if (rc)
		PrintFault(IoErr(), "For");
	return rc;
}
static LONG ProcessEntry(struct SelectInfo *SelectInfo, struct FileInfoBlock *fib, STRPTR StartPath,
	 STRPTR Name, UBYTE *FileData, struct Opt *Opt, STRPTR Cmd)
{
	LONG RC = 0, BytesRead = 0;
	FileType Type = TYPE_UNSCANNED;

	if (WhatIsBase) {
		if (Opt->Deep && fib->fib_DirEntryType <= 0) {
	BPTR FH;

	if (FH = Open(Name, MODE_OLDFILE)) {
	BytesRead = Read(FH, FileData, Opt->ReadSize);
	FileData[BytesRead] = '\0';	/* whatis.library need that */
	Type = WhatIsTags(Name, WI_Deep, Opt->Deep, WI_FIB, fib, WI_Buffer, FileData, WI_BufLen, BytesRead, TAG_DONE);
	Close(FH);
	}
		}
		else
	Type = WhatIsTags(Name, WI_Deep, LIGHTTYPE, WI_FIB, fib, TAG_DONE);
	}
	if (MatchFileType(SelectInfo, fib, Type)) {
		if (WhatIsBase) {
	STRPTR IDString;
	BOOL CR = FALSE;

	IDString = GetIDString(Type);
	if (Opt->ShowFileType) {
	Printf("%-12s %-32s", IDString, (Opt->Verbose) ? fib->fibTR   '8'8,  h_FileName : Name);
	CR = TRUE;
	}
	if (Opt->Showbytes && fib->fib_DirEntryType <= 0) {
	PrintByte(FileData, BytesRead, Opt->Showbytes);
	CR = TRUE;
	}
	if (CR)
	PutStr("\n");
	if (Opt->FileTypeVar)
	SetVar(Opt->FileTypeVar, IDString, -1L, GVF_LOCAL_ONLY);
		}
		if (Cmd)
	RC = ExecuteCmd(Cmd, StartPath, Name, Opt);
	}
	return RC;
}
static LONG ProcessEntryPattern(struct AnchorPath *AP, struct SelectInfo *SelectInfo, struct Opt *Opt,
	STRPTR StartPath, STRPTR Pattern, UBYTE *FileData, STRPTR Cmd)
{
	BOOL DoIt = TRUE;
	LONG RC=0, MatchErr;

	for (MatchErr = MatchFirst(Pattern, AP); RC == 0 && MatchErr == 0; MatchErr = MatchNext(AP)) {
		if (AP->ap_Flags & APF_DIDDIR) {
	if (Opt->Verbose)
	Printf("[33m%s[31m\n", AP->ap_Buf);
	DoIt = FALSE;	/* Dir processed before entering it, don't process it twice */
	AP->ap_Flags &= ~APF_DIDDIR;	/* clear the completed directory flag */
		}
		else if (AP->ap_Info.fib_DirEntryType > 0) {
	if (SelectInfo->si_Flags & SI_AFFECT_SUBDIRS) {
	if (Opt->Verbose)
	Printf("[33m%s[31m\n", AP->ap_Buf);
	AP->ap_Flags |= APF_DODIR;	/* make Matchext() enter the directory */
	}
	else
	AP->ap_Flags &= ~APF_DODIR;	/* RESET this bit after MatchFirst/MatchNext to AVOID entering a dir. */
		}

		/* Here is code for handling each particular file */
		if (DoIt && Match(SelectInfo, &AP->ap_Info))
	RC = ProcessEntry(SelectInfo, &AP->ap_Info, StartPath, AP->ap_Buf, FileData, Opt, Cmd);
		DoIt = TRUE;
	}
	MatchEnd(AP);
	if (MatchErr != ERROR_NO_MORE_ENTRIES)
		PrintFault(MatchErr, "For");
	return RC;
}
LONG Main(char *ArgV[], struct WBStartup *WBenchMsg)
{
	LONG rc = RETURN_OK;
	char *StartPath = NULL, *Buffer = NULL;
	struct FileInfoBlock *fib = NULL;
	struct SelectInfo SelectInfo;
	struct Opt Opt;
	UBYTE *FileData;

	WhatIsBase = OpenLibrary("whatis.library", 3L);
	memset(&SelectInfo, 0, sizeof(SelectInfo));
	memset(&Opt, 0, sizeof(struct Opt));

	if (ArgV[ARG_Files]) {
		if (!Stricmp(ArgV[ARG_Files], "MATCH"))
	SelectInfo.si_Flags |= SI_MATCH_FILES;
		else if (!Stricmp(ArgV[ARG_Files], "YES"))
	SelectInfo.si_Flags |= SI_ALL_FILES;
	}
	else	/* set default */
		SelectInfo.si_Flags |= SI_MATCH_FILES;
	if (ArgV[ARG_Dirs]) {
		if (!Stricmp(ArgV[ARG_Dirs], "MATCH"))
	SelectInfo.si_Flags |= SI_MATCH_DIRS;
		else if (!Stricmp(ArgV[ARG_Dirs], "YES"))
	SelectInfo.si_Flags |= SI_ALL_DIRS;
	}
	else	/* set default */
		SelectInfo.si_Flags |= SI_MATCH_DIRS;
	if (ArgV[ARG_Since]) {
		struct DateStamp DateStamp;

		String2Date(ArgV[ARG_Since], &DateStamp);
		SelectInfo.si_SinceDate = DateStamp;
		SelectInfo.si_Flags |= SI_SINCEDATE;
	}
	if (ArgV[ARG_Before]) {
		struct DateStamp DateStamp;

		String2Date(ArgV[ARG_Before], &DateStamp);
		SelectInfo.si_BeforeDate = DateStamp;
		SelectInfo.si_Flags |= SI_BEFOREDATE;
	}
	if (ArgV[ARG_MinSize])
		SelectInfo.si_MinSize = *(ULONG *) ArgV[ARG_MinSize];
	if (ArgV[ARG_MaxSize])
		SelectInfo.si_MaxSize = *(ULONG *) ArgV[ARG_MaxSize];
	if (ArgV[ARG_PosProtect]) {
		SelectInfo.si_Flags |= SI_POSPROTECTION;
		SelectInfo.si_PosProtect = ProtectBit(ArgV[ARG_PosProtect]);
	}
	if (ArgV[ARG_NegProtect]) {
		SelectInfo.si_Flags |= SI_NEGPROTECTION;
		SelectInfo.si_NegProtect = ProtectBit(ArgV[ARG_NegProtect]);
	}
	if (ArgV[ARG_Type] && WhatIsBase) {
		char IDType[100];
		UBYTE NumFT = 0;
		char *c, *i;

		for (c = ArgV[ARG_Type]; *c && NumFT < MAX_FTS && rc == 0;) {
	switch (*c) {
	case NOTFileType:	// ~
	SelectInfo.si_FileTypes[NumFT].fs_Flags |= FTSF_EXCLUDETYPE;
	break;
	case WITHSubTypes:	// #
	SelectInfo.si_FileTypes[NumFT].fs_Flags |= FTSF_WITHSUBTYPES;
	break;
	default:
	i = IDType;
	while (*c && *c != ',' && i < IDType+100-1)
	*i++ = *c++;	// copy until ',' or end of string
	*i = '\0';	// nul terminate the string
	if (SelectInfo.si_FileTypes[NumFT].fs_Flags & FTSF_EXCLUDETYPE)
	SelectInfo.si_Flags |= SI_NEGFILETYPE;
	else
	SelectInfo.si_Flags |= SI_POSFILETYPE;
	SelectInfo.si_FileTypes[NumFT].fs_FileType = GetIDType(IDType);
	if (TYPE_UNKNOWNIDSTRING == SelectInfo.si_FileTypes[NumFT].fs_FileType) {
	Printf("Unknown FileType: %s\n", IDType);
	rc = 21;	// Hack to prevent PrintFault('no memory')
	}
	NumFT++;
	}
	if (*c)
	c++;
		}
		SelectInfo.si_NumFts = NumFT;
	}
	if (ArgV[ARG_ALL])
		SelectInfo.si_Flags |= SI_AFFECT_SUBDIRS;

	Opt.Async = (BOOL) ArgV[ARG_ASYNC];
	Opt.ReadSize = (ArgV[ARG_READSIZE]) ? *(LONG *) ArgV[ARG_READSIZE] : 488;
	Opt.Deep = (ArgV[ARG_DEEPWHATIS]) ? *(LONG *) ArgV[ARG_DEEPWHATIS] : LIGHTTYPE;
	if (ArgV[ARG_SHOWBYTES]) {
		Opt.Showbytes = (UBYTE) (*(LONG *) ArgV[ARG_SHOWBYTES]);
		Opt.Deep = DEEPTYPE;
	}
	Opt.ShowFileType = (BOOL) ArgV[ARG_SHOWFILETYPE];
	Opt.FileTypeVar = (STRPTR) ArgV[ARG_FileTypeVar];
	Opt.FullPathArgs = (BOOL) ArgV[ARG_FullPathArgs];
	Opt.Verbose = (BOOL) ArgV[ARG_Verbose];

	if (rc == 0 && !(Buffer = AllocVec(MAX_PATHLEN, MEMF_ANY)
		rc = RETURN_FAIL;

	if (rc == 0 && !(StartPath = AllocVec(MAX_PATHLEN, MEMF_ANY)
		rc = RETURN_FAIL;

	if (rc == 0 && !(fib = AllocVec(sizeof(struct FileInfoBlock), MEMF_ANY)
		rc = RETURN_FAIL;

	if (rc == 0 && (FileData = AllocVec(Opt.ReadSize + 1, MEMF_ANY) {
		struct AnchorPath *AP;

		if (AP = AllocVec(sizeof(struct AnchorPath) + MAX_PATHLEN, MEMF_ANY)) {
	LONG IsWild;
	STRPTR Elmt;
	UBYTE i;

	if (Opt.FullPathArgs)
	NameFromLock(struct Process *)SysBase->ThisTask)->pr_CurrentDir, StartPath, MAX_PATHLEN);
	else
	StartPath[0] = '\0';

	for (i = 0; rc == 0 && (Elmt = ((char **) ArgV[ARG_Template])[i]); i++) {
	memset(AP, 0, sizeof(struct AnchorPath) + MAX_PATHLEN);
	AP->ap_BreakBits = SIGBREAKF_CTRL_C;	/* Break on these bits  */
	AP->ap_Strlen = MAX_PATHLEN;
	/*
	 *  For wildcard matching with ALL flag set, two situations are handled differently
	 *	1.	foo#?/bar
	 *	2.	foobar#?
	 *	In the first case, a standard MatchFirst()/MatchNext() is used.
	 *	For the second one, if 'ALL' option is on, the pattern is replaced with "#?"
	 *	so that all directories are parsed, and then files filtered out by the more
	 *	powerfull function Match()
	 */
	IsWild = ParsePatternNoCase(Elmt, Buffer, MAX_PATHLEN);
	if (ArgV[ARG_ALL] && IsWild == 1 && FilePart(Elmt) == Elmt) {
	SelectInfo.si_Flags |= SI_NAME;
	strcpy(SelectInfo.si_PatTok, Buffer);
	rc = ProcessEntryPattern(AP, &SelectInfo, &Opt, StartPath, "#?", FileData, ArgV[ARG_CMD]);
	}
	else {
	BPTR L;

	switch (IsWild) {
	case 1:
	/*
	 *	Pattern
	 *	Dir1/Dir2/Pattern
	 *	Vol:Dir1/Dir2/Pattern
	 */
	rc = ProcessEntryPattern(AP, &SelectInfo, &Opt, StartPath, Elmt, FileData, ArgV[ARG_CMD]);
	break;
	case 0:
	if (L = Lock(Elmt, SHARED_LOCK)) {
	long ok;

	ok = Examine(L, fib);
	UnLock(L);	// UnLock so that command can open file for writing
	if (ok) {
	if (ArgV[ARG_ALL] && fib->fib_DirEntryType >= 0) {	// This is a dir
		strcpy(Buffer, Elmt);
		AddPart(Buffer, "#?", MAX_PATHLEN);
		rc = ProcessEntryPattern(AP, &SelectInfo, &Opt, StartPath, Buffer, FileData, ArgV[ARG_CMD]);
	}
	else
		rc = ProcessEntry(&SelectInfo, fib, StartPath, Elmt, FileData, &Opt, ArgV[ARG_CMD]);
	}
	else {
	PrintFault(IoErr(), Elmt);
	rc = RETURN_FAIL;
	}
	}
	else if (ArgV[ARG_CMD])		// Arg does not exists, allow:  For 1 2 3 DO Echo %%
	rc = ExecuteCmd(ArgV[ARG_CMD], StartPath, Elmt, &Opt);
	else	
	rc = RETURN_WARN;
	break;
	default:
	PrintFault(IoErr(), Elmt);
	rc = RETURN_FAIL;
	}
	}
	}
	FreeVec(AP);
		}
		FreeVec(FileData);
	}
	else if (rc == 21)
		rc = RETURN_FAIL;
	else
		PrintFault(ERROR_NO_FREE_STORE, "For");
	if (fib)
		FreeVec(fib);
	if (Buffer)
		FreeVec(Buffer);
	if (StartPath)
		FreeVec(StartPath);
	if (WhatIsBase)
		CloseLibrary(WhatIsBase);
	return rc;
}

);
	FreeArgs(RA);
	rc = 0;
		}
		else
	PrintFault(IoErr(), "BaseName");
		CloseLibrary((struct Library *)DOSBase);
	}
	return rc;
}
, b   < ! =     Xinclude> ܐ   =  >mw D C B A @ ? > O^   o  clib.h@ < #ifndef CLIB_H
#define CLIB_H

#include <stdarg.h>

#define REG(x) register __## x

struct EnvArgs {
	char **ea_Argv;
	struct RDArgs *ea_EnvRDArgs;
	struct RDArgs *ea_RDArgs;
};
/* protos for tiny c.lib */

/* Private: HANDS OFF! */
extern long _Std_Main(void);	/* internal code */
extern long _Cli_Main(void);	/* internal code (default startup code) */
extern long _WB_Main(void);	/* internal code */
extern BOOL _ReadCliArgs(struct EnvArgs *);		/* internal code */
extern BOOL _ParseToolTypes(struct WBStartup *, struct EnvArgs *);	/* internal code */

/* Internal variables: HANDS OFF! */
extern BOOL (*__ReadCliArgs)(struct EnvArgs *);
extern BOOL (*__ReadEnvArgs)(char *, char *, struct EnvArgs *);
extern BOOL (*__ParseToolTypes)(struct WBStartup *, struct EnvArgs *);
/* Public */
long main(long argc, char *argv[]);	/* standard entry point */
long Main(char *Argv[], struct WBStartup *WBenchMsg);	/* powerfull! entry point */
long _Main(void);
	/* redesign by yourself!  */

BOOL AllocEnvArgs(struct EnvArgs *EnvArgs);
void FreeEnvArgs(struct EnvArgs *EnvArgs);
BOOL ReadEnvVar(char *VarName, char *Template, struct EnvArgs *ea);

long EasyReq(char *GadFmt, char *TextFmt, APTR Args);
void __stdargs SimpleReq(char *fmt, .);

LONG VSPrintf(UBYTE *buf, UBYTE *fmt, va_list arg_ptr);
LONG __stdargs SPrintf(UBYTE *buf, UBYTE *fmt,.);

void __stdargs KPrintF(char *,.);
#define KPrintf KPrintF

// Missing pragma in pragmas/utility.h
#pragma tagcall UtilityBase CallHook 66 9A803

#define CoerceMethodA(class, object, msg)		CallHookPkt(&(class)->cl_Dispatcher, object, msg)
#define DoSuperMethodA(class, object, msg)		CoerceMethodA((class)->cl_Super, object, msg)
#define DoMethodA(object, msg)	CoerceMethodA(OCLASS(object), object, msg)
/ */
/* Startup Modules Declarations */
/ */

/*
 *	To get a standard startup code calling main(argc, argv),
 *	just put:
 *
 * StandardStartup
 *
 *	at the beginning of your program. (outside mainTR   $N$N,  3Sx3()!)
 *	Note: the dummy 'extern' declaration is to allow a trailing ';'
 *	 after the keyword "StandardStartup".
 */

#define StandardStartup		long _Main(void) { return _Std_Main(); } extern char yMmUd

/*
 *	To get a workbench startup as well, when using Main(ArgV, WBenchMsg),
 *	just put:
 *
 * WorkbenchStartup
 *
 *	at the beginning of your program. (outside main()!)
 *	This is useless with StandardStartup.
 *	Note: the dummy 'extern' declaration is to allow a trailing ';'
 *	 after the keyword "WorkbenchStartup".
 */

#define WorkbenchStartup	long _Main(void) { return _WB_Main(); } extern char yMmUd

/*
 *	If you need cli args (Template) you MUST put
 *
 * CliArgs
 *
 *	at the beginning of your program. (outside main()!)
 *	as well as defining a Template, and an optionnal CliHelp.
 */

#define CliArgs	BOOL (*__ReadCliArgs)() = _ReadCliArgs

/*
 *	If you want your cli args to be read for an environnement
 *	variable, just put:
 *
 * ReadEnvArgs("VarName")
 *
 *	at the beginning of your program. (outside main()!)
 *	You can then store default args value in it.
 */

#define ReadEnvArgs(VarName)	char *__EnvVarName = VarName;BOOL (*__ReadEnvArgs)() = ReadEnvVar

/*
 *	Read tooltypes by examining the template and then find matching tooltypes.
 */

#define ParseToolTypes	BOOL (*__ParseToolTypes)() = _ParseToolTypes
#endif

W     Icons@ p   E n_W F 6    ]libB ܐ   F  G: T S R Q P O N M L K J I H G ^   {  c.libA E     (   Nqn ' eNHȲe2/ pҀF  /r pN:" _Jg!H XB !C """ Nun ' eNB gH  $P$g"J$B !N.`Nu"JYLpN.n ' eN<" gZ gVH00$$H dJ&&C&gr KJ gj NFJg @ *   g"H"^S0HAv ""QQ LNu PX"* a  Jg"@ JX ( !I H PB 	`"*  *  $a`Jg&@"@ J  H @!I p
@ @ 	A 'H 
"* 7A A $rF  A * 'H 'H '@ B !@ 'H ` X/ N:Jg @  XNun ' eN6"g^"	gZ dV/"&A"gdJ g^ e d KN@"k ") g A 'H #K  S"!I &"K&_ )  Щ   gNuYQ 	 Y"Q"!I "@ !N.&_/.<  N.Nu Pool /,y L   / N  ,_Nu/,y  o  / N ,_Nu/,y  o N J,_NuH ,y L  N L@Nu       p  V   _SysBase     |  b  F      OPTS     @ 	 ( H
     `  QNu     SkfSHRJf   Nu     H 0`  gR  g$H&I  g
f`p L Nu L Nu     gJfp Nu Nu     "`gSd`BSd Nu     	JgSfJgSjp NunpNupNu    "JfS`gSdB Nu      JfSfNu    H "$o  jC ,l  NLD NuNq    _UtilityBase     OPTS  @     /,y N,_Nu o C H  EaL Nu/,y N,_Nu      o Ho "o a XONu    @VSPrintf     OPTS     "  R k  NuQOH 2B /H /	 I"o E,l  G N _ / SLL PONuNq    _SysBase  ,   OPTS  @      H6&I*HC T,l  p%N$@Jg8pA  B     /
C Jȕ&o 0NL . "J,l  Nb Ll Nuintuition.library   _SysBase  P   _ReqTitle  ,   OPTS  @     Ho A "o a XONuResume   @EasyReq     OPTS       OPTS          Request   OPTS             OPTS            OPTS            OPTS            OPTS            OPTS            OPTS          _<H96$H~ /I 0CR,l  p%N*@/@ (g 4 o 0J f
a J@g B/ 4 j $ h ,MN/@ $g  E 4&l  `fK4@gr/gr,f MB*o (C4c, o $ h 6,MNJg/ Ho8Hz /
a O @Rgr,fp,fRJf o $,MNA 4C a &o 0 k C 4 $k  IJfS S%@  k p!@ &",  $,l  NJg~`*N|"l   i" $( 
M 4&,l  xPN,/a XO"M,l  Nb0Ll<Nuicon.library  %s=%s   
   _SysBase   R  *   @AllocEnvArgs  2  _Template    Z  _SPrintf    @strcat  ܆  _DOSBase   >    _SimpleReq   J   OPTS  @     H *H - g" ,l  N$- rN - g" ,l  N$- rN g
"@,l  NNL`NuNq    _DOSBase  *   _SysBase  B   OPTS  @     H *H,l  rt N+@ g,,l  rt N+@ g,l  pe"<  NT*gp@p L`Nu    _DOSBase     _SysBase  ,   OPTS  @     ( H;6$o(&I*H~ Ja J@gt"A $$,l  v Fx@NvRgT BJfS < RF BC Nf j   j 0H!@ p!@ &"$,l  NJfN|" $N&~ 0@p Ll Nu
 Nq    @AllocEnvArgs    _DOSBase  t &   OPTS  @     H1*H~ Jf
 Ma J@g, m !l ",  $&- ,l  NJg~`N|" `,l  rgt N&0L`NuNq    @AllocEnvArgs    _CliHelp    _Template  "  _DOSBase  D ,   OPTS  @     V(H36BD~ |"l   i$( f&K \ M,IN MN)@  "@ i $",l  N l  h % e  Jg  Br,H$NO $@/@Dg    ,l  pe"<  NT&@JgvA "$&
,l  NJgD S gE @R"X$fA  ",l  t FNA  "N @C"fA"&R`,l  N|" t N&`
  Ka , $oD 
g"
,l  N$
rN g
"K,l  NNJ  g,l  N|"l  N Ll(Nu/M  Nq    _SysBase   8  * |   __WBenchMsg   @  2 4  _DOSBase     Đ  H @  @main      OPTS  @     7 H&~"l   i,( f$K \ M,IN MN*@"@ i $",l  N l  h % etpr A Q ,  gLJ  gHo "@ l  $l  NXOJ@g<JgJ  g&A "l  NJ@f`"J  g MC $l  NJ@g o "Ma . A a  g,l  N|"MN Ld Nu    _SysBase  Đ   _DOSBase  @ 8  _Template  Z  _ReadEnvArgs  p `  _EnvVarName  l  _ReadCliArgs     _ParseToolTypes     @Main    @FreeEnvArgs     OPTS  @     # H$~"l   i,(  l  h % e\pr A Q ,  g4J  gHo "@ l  $l  NXOJ@g$JgJ  gA "l  NJ@g o "Ma . A a  L$ Nu    _SysBase    _DOSBase    _Template  4  _ReadEnvArgs  J :  _EnvVarName  F  _ReadCliArgs  d Z  @Main  t  @FreeEnvArgs  ~   OPTS  @     `   @_Cli_Main     OPTS      < Pool text _SysBase _LibFreePooled _LibAllocPooled _LibDeletePool _LibCreatePool __ctype.c __MERGED _ctype swmem @swmem memchr @memchr strstr @strstr strchr @strchr strncpy @strncpy strncmp @strncmp strncat @strncat strcat @strcat DoMethod.c _UtilityBase _DoMethod KPrintf _KPrintF SPrintf.c @VSPrintf _SPrintf VSPrintf.c EasyReq.c _ReqTitle @EasyReq SimpleReq.c _SimpleReq WBenchMsg.c __WBenchMsg ReqTitle.c CliHelp.c _CliHelp Template.c _Template __EnvVarName.c _EnvVarName __ParseToolTypes.c _ParseToolTypes __ReadEnvArgs.c _ReadEnvArgs __ReadCliArgs.c _ReadCliArgs _ParseToolTypes.c _DOSBase @AllocEnvArgs @_ParseToolTypes FreeEnvArgs.c @FreeEnvArgs AllocEnvArgs.c ReadEnvVar.c @ReadEnvVar _ReadCliArgs.c @_ReadCliArgs _Std_Main.c @main @_Std_Main _WB_Main.c @Main @_WB_Main _Cli_Main.c @_Cli_Main _Main.c @_Main        B  #^  3x  B  Q      [ @  d  m     s  z               +       2       ;   	    G     ѐ  P       W       o          % 0 9      &  D    N  X a    W m x     [    
    [  N      [   (     [   3     [  Ґ >     [   I     [   $T     [  4 C_   _ lU /]  l }     U       U ^ D   ( U]      U] ϐ    V U   :   7 	4U      # 4U  ! ,      4    dBrowserII_Old.info3 b   U  V%7< X W V ^     
MakeLink.c; ܐ /*
 *	MakeLink.c - Copyright  1991 by Devil's child.
 *
 *	Created:	26 Nov 1992  21:42:25
 *	Modified:	02 Oct 1994  11:09:30
 *
 *	Make>> sc <file>.c
 *	Make>> slink <file>.o SC SD ND BATCH NOICONS TO <file>
 */

#define ARG_FROM	0 
#define ARG_TO		1

long _main(void)
{
	struct ExecBase *SysBase = *((struct ExecBase **)4L);
	struct DosLibrary *DOSBase;
	APTR UtilityBase;
	char FromPath[256];
	struct RDArgs *RA;
	char *Argv[] = { NULL, NULL, NULL };
	BPTR FromDir, L;
	long rc=20;

	if (DOSBase = (struct DosLibrary *)OpenLibrary("dos.library", 37)) {
		UtilityBase = DOSBase->dl_UtilityBase;
		if (RA = ReadArgs("From/A,To/A", (long *)Argv, NULL)) {
	strcpy(FromPath, Argv[ARG_FROM]);
	*PathPart(FromPath) = '\0';
	if (FromDir = Lock(FromPath, ACCESS_READ)) {
	if (L = Lock(Argv[ARG_TO], ACCESS_READ)) {
	if (SameLock(FromDir, L) == LOCK_DIFFERENT) {
	if (MakeLink(Argv[ARG_FROM], (long)Argv[ARG_TO], LINK_SOFT))
	rc = 0;
	}
	else {
	if (MakeLink(Argv[ARG_FROM], L, LINK_HARD))
	TR   $I$I,  G֐	rc = 0;
	}
	UnLock(L);
	}
	UnLock(FromDir);
	}
	FreeArgs(RA);
		}
		if (rc)
	PrintFault(IoErr(), "MakeLink");
		CloseLibrary((struct Library *)DOSBase);
	}
	return rc;
}

static const char Ver[] = "$VER:MakeLink 41.0 (01.10.94)";

] ϐ    V U   :   7 	4U      # 4U  ! ,      4    dBrowserII_Old.info3 b   Y  Z)\ [ Z ^ C     TackOn.c= ܐ /*
 *	TackOn.c - Copyright  1991 by Devil's child.
 *
 *	Created:	11 Sep 1992  18:00:25
 *	Modified:	26 Nov 1992  21:49:17
 *
 *	Make>> sc <file>.c
 *	Make>> slink <file>.o SC SD ND BATCH NOICONS TO <file>
 */
long main(void)
{
	struct DosLibrary *DOSBase;
	struct RDArgs *RA;
	char *Argv[] = { NULL, NULL, NULL };
	char Buf[256];
	long rc=20;

	if (DOSBase = (struct DosLibrary *)OpenLibrary("dos.library", 37)) {
		if (RA = ReadArgs("Path/A,File/A", (long *)Argv, NULL)) {
	strcpy(Buf, Argv[0]);
	AddPart(Buf, Argv[1], 256);
	Printf("%s\n", Buf);
	FreeArgs(RA);
	rc = 0;
		}
		else
	PrintFault(IoErr(), "TackOn");
		CloseLibrary((struct Library *)DOSBase);
	}
	return rc;
}
eturn rc;
}

static const char Ver[] = "$VER:MakeLink 41.0 (01.10.94)";

] ϐ    V U   :   7 	4U      # 4U  ! ,      4    dBrowserII_Old.info3 b   \  ]y ^ ] K^   h 	VolName.c< ܐ /*
 *	VolName.c - Copyright  1993 by Devil's child.
 *
 *	Created:	16 Mar 1993  22:50:03
 *	Modified:	16 Mar 1993  23:04:05
 *
 *	Make>> sc <file>.c
 *	Make>> slink <file>.o SC SD ND BATCH NOICONS TO <file> LIB LIB:String.lib
 */
long VolName(void)
{
	struct ExecBase *SysBase = *((struct ExecBase **)4L);
	struct DosLibrary *DOSBase;
//	APTR UtilityBase;
	struct RDArgs *RA;
	char *Argv[] = { NULL, NULL };
	UBYTE *s;
	long rc=20;

	if (DOSBase = (struct DosLibrary *)OpenLibrary("dos.library", 37)) {
//		UtilityBase = DOSBase->dl_UtilityBase;
		if (RA = ReadArgs("Vol/A", (long *)Argv, NULL)) {
	if (s = StrChr(Argv[0], ':')) {
	*s = '\0';
	Printf("%s\n", Argv[0]);
	rc = 0;
	}
	else
	rc = 10;
	FreeArgs(RA);
		}
		else
	PrintFault(IoErr(), "VolName");
		CloseLibrary((struct Library *)DOSBase);
	}
	return rc;
}
     # 4U  ! ,      4    dBrowserII_Old.info3 b   _  `&B c b a ` ֐^     xWBInfo.c= ܐ /*
 *	WBInfo.c - Copyright  1991 by Devil's child.
 *
 *	Created:	24 Jun 1993  21:38:57
 *	Modified:	24 Jun 1993  21:43:27
 *
 *	Make>> sc <file>.c
 *	Make>> slink <file>.o SC SD ND BATCH NOICONS TO <file>
 */

#define VERSION "1.0"

static const char version[] = "\0$VER: wbinfo " VERSION " (24.06.93)";

#define TEMPLATE	"NAME/A,PUBSCREEN/K"

#define ARG_NAME	0
#define ARG_SCREEN	1
long wbinfo(void)
{
	long rc = RETURN_OK;
	struct ExecBase *SysBase = *((struct ExecBase **) 4L);
	struct Library *DOSBase;
	struct Library *WorkbenchBase;
	struct Library *IntuitionBase;
	char *options[2] = {0, 0};
	struct RDArgs *args;

	if (!(DOSBase = OpenLibrary("dos.library", 39)
		return RETURN_FAIL;

	WorkbenchBase = OpenLibrary("workbench.library", 39);
	IntuitionBase = OpenLibrary("intuition.library", 39);
	if (!WorkbenchBase || !IntuitionBase)
		return RETURN_FAIL;

	if (args = ReadArgs(TEMPLATE, (long *)options, NULL)) {
		struct Screen *screen = LockPubScreen(options[ARG_SCREEN]);

		if (screen) {
	BPTR lock = Lock(options[ARG_NAME], ACCESS_READ);

	if (lock) {
	BPTR par;

	par = ParentDir(lock);
	if (!par)
	par = DupLock(lock);	/* for Devices */
	WBInfo(par, options[ARG_NAME], screen);
	if (par)
	UnLock(par);
	UnLock(lock);
	}
	else {
	PrintFault(IoErr(), options[ARG_NAME]);
	rc = RETURN_ERROR;
	}

	UnlockPubScreen(NULL, screen);
		}
		else {
	/* error message for 'pubscreen not found' */
	if (options[ARG_SCREEN])
	PrintFault(ERROR_OBJECT_NOT_FOUND, options[ARG_SCREEN]);
	rc = RETURN_FAIL;
		}
		FreeArgs(args);
	}
	else {
		PrintFault(IoErr(), NULL);
		rc = RETURN_ERROR;
	}

	CloseLibrary(WorkbenchBase);
	CloseLibrary(IntuitionBase);
	CloseLibrary(DOSBase);

	return rc;
}
 z     s     C@ z  p   d H e5                                                ~ } | { z y x w v u t s r q p o n m l k j i h g f e А^     	BrowserII8   p       r`@  $  V    r`H~I G  H <  D,y )NHC 4Nh)@Lg  ""@)i >PN  $ "lL,y Nb L~Nudos.library QOH /@ r Bo `*p|  z8AF gRA g
ASEjRo 0/ o m0L pPONuBrowserII V3.03 Copyright  1991-95  S.R. & P.C.  BrowserII V3.03  1991-95  S.R. & P.C.  $VER:BrowserII 3.03 (02.04.95)  L:BrowserII.key Apr  2 1995 12:42:35   8H3K <` MR  JfA",lL$<  N. gF"A $v6N"N</ H
FZkBo H  Ba Ff   &fBl A *CTf)l! Jl gp
)@  L` 8NuJl ga  Nu/Jl g*l!`*l!HlT//,!Hz8Hz(Hl  Hl <Hl a plO  *_Nu H 2pE $B$-T$ $$#lC G (,l'ȕNLL  Nuintuition.library workbench.library iffparse.library  parm.library  whatis.library  archive.library accounts.library  datatypes.library H~ p H" ҀҁK \&m p - "U,lHN&f*-  f"- fp - / //,#a O p `
Rp epLhNuH~ p H" ҀҁA \ p"P 	g,lHNbRp eL@Nu/aa  "lL,lHNbJ'gN|"l'N,_NuH~ lH)h'"l'J f6K \ M,lHN MN)@'"@ i $",lLN"N l'p@a  h lL0( 9@-Lr%Am>a  L)l!-Ta J@g( l')h 6')h 2')h *')h &')h :'a  . a 8 L`NuNqN  N N N ֞ H'>*HJ'g   l'  ov h $"( ,lLN$ "l' i $ h ,l'N&@Jg@ k 6C N$@Jg$ JC,lPN^Jg JCN^JfBlD K,l'N",lLNA",lLtN. g "N, BACt"""A,l'N&@Jg B+ 0 k 6C,l'NJg
 @Ctf k 6CNJg" A ($,lLN / (@(J k 6CH,l'N$@Jg$ JC>,lPN^Jg JC0N^JfBlD k 6CX,l'N$@Jg& JCN,lPN^Jg JC@N^Jf9| (F k 6C0,l'N$@Jg JC$,lPN^Jg  z  
g$ JC,lPN^Jg J,l'Nz)@` K)HJg\ k 6C,l'NJg" A ,$,lLN`/| , k 6C,l'NJg" A $$,lLN`/| $JEg
 K,l'N)l 
(>A0)H(:)l$(B9| (H| (8,lHNf)@(Lg|A(8,l'p N)@gdAtpN$@JgV l"JN ,(L @p2| NJg8"@ JNp"HNJg""@ JN JNJf lpN`p `Z ,gB @!o , :!o $ >/&@A t"M,l'p " ʙNL )@'f l,l'NB",lLN"NpL| NuCX_POPUP  NO  FALSE PROGDIR:  control esc BrowserII CX_POPKEY CX_PRIORITY CX_UNIQUE YES TRUE  APPICON NONE  ICONXPOS  ICONYPOS  Workbench %s%ld BrowserIIScreenName sysiclass propgclass  buttongclass  /Jg6`
"H,lHN l(L,lHN @Jf l(L,lHN` l,l'N ,'g @,l'N l,l'N,_NuH *H ,(g
"@,l'NA T"HA(,l'N&A(N)@(pl(tf$ ,(g"@NA(C(""A(N)@(L` `  / ,((g
"@,l'N, (gA(C( ""`"l(  TA( ,l'N&A( ,l'N)@((A( "l-2#H,_Nu hH0.*I/H I C p"QB A /H $|  9C ,l'pNC p NE 0H2H4H6- 
HC NLt hNu/ ,(^g @,l'N l(^a XB(^A,_` H1.<  a,  (}f  , (}g"Hl /,( AC,2a POJ@f (}`, (}gA)H
0< l(|f~ l( ( HHR2( H( HH6( HÖSBHl///<  y/< "	@/<  k//<  g//<  f/ /<  eB/<  d,l'"ONO <)@(^g& @!l' V l(^,l' <  Nj l(^"l(fNL@NuQO/Bl-N9| -P ,(g"@ l( ,l'NH l( ,l'NN)@(g @P e"h 2) 9A-N2) 9A-P9|  9| -R l(  ,,l'N @C ,l'pN&JgX l(0(    rAe0/ H2/ HR   m9|  0/ H2/ 
HR   \r  9A-R ,-Hg
 @,l'N|B l( ,l'"ONO )@-H,_PONuH 6&I*H- g
Af`<-  g4,l'N$@`pj g j f
 j 
f`$R 
f,l'NLl NuQOH?&~,<  +B( Bl-6, (}g X l*C $,l'pN&Jg.<  3,  (sg,<  ,:| `$A(C"" l(CfA)HKAC+fz A+,l'N)@( g""@A+NR/HzHzHl+a XO J( fp ,,02,*HBHx /<  @Hx /<  GHl+/<  ///Ho H//, /<  (/,*/<  2Hl /<  ://<  9/ /<  %/,(/<  $/,(/<  #,l'"ONO d)@( g 9| -6, (}g @a . l( p N`x/,# a c`XO`lp 0,(~Jg
Sg Sg:`X,l'N)@(  @C+a `>,l'p Nb$  n <C+a  BN\A+,l'N)@( fHl+/,$ a bPOJ( f6AC+fA,l'N)@( f
N)@( rl(| A 9A(| l( a a vA~"A+$,lLvx@N|Jl-6ga ,`a "l( ,l'NBHx /< C l(f"l-H,l'$ONO LdPONu/a Jl-6g l( ,l'NBl-6,l'N)@( a "l( N,_Nu/a 4a a  l( ,l'N,_NuH 6*H$m V,lHN|&j ` k ,f"K,lHN"KN&J$S 
fB V M,l'p Nj,lHNv M,l'NLl Nu/p  l(0( r 2,( l( ( HHRDW $NuYO.XONuH *H g   - g
 @,l'N~ - g
 @,l'N~ -  g
 @,l'N~ - $g
 @,l'N~ - g
 @,l'N~ - (g
 @,l'N~ - g
 @,l'N~ - g
 @,l'N~ - g
 @,l'N~ - g
 @,l'N~ Mp0L` ` L` NuQOH=6. z
p0"<  a *@Jfp ` jB/,(/< Hx /< CJ,l'$ONO Jg
 @:( N~B/,(/< Hx /< C$ONO +@  B/,(/< Hx /< C,l'$ONO +@ $ m  0( HDr  lTR   , , ,   
P[(2( VB//< / /< a O +@ J  g
J $gJf Ma Fp ` l '-L\r   m  E 0HQ4HDZ"m $6) H8H/A $r 2/@ ( l( ( HHRDU( HHTBHx /<// 0/<Hx /<
// D/< //< / /< //< Hx /< Hx /< Hx /< B/<  KC,l'$ONO \+@ g H m  r 24( H&փDR2( HDRB/ /< //< //< Hx /< Hx /< Hx /< //< 
CN,l'$ONO <+@  m $p 02( HDR0( HDRB/- /< / /< //< Hx /< Hx /< Hx /< //< 
C,l'$ONO <+@ p  l(0( DUB/- /< /- /< 
/ /< r//< //< Hx /< a 
PO 4+@ J gJ gJ gJ f Ma p ` :UGg 2p 0, r 2,(a 
+@ ( l( ( HHRt 4,  @6( HB/- /< //< //< B/< //< Hx /< Hx /< / /< 
Hx /< C,l'$ONO L+@  m (0( H l( ( HHҀ&Ra r 2, t //- /< //< //< / /< //< p/ /< / /< Hx /< a 	(O D+@ J (g
J gJf
 Ma p @ LlPONuH 6 o *h  g*&m x/ k "M,l'G Nl _ h "MpNPLl NuQOH 2 o  h  g "h x/I "H o  h G ,l'NlLL PONuYOH 2" &h /H  g:$k xB//< Y/	/< X j ,l'"ONxO /
 j "KpNP _LL XONuH 6*H&m xa H 0B/ /<  k "M,l'&ONlO L Ll NuH *H&m  gA "H Kpa B  L( Nu 	g!I NuH 6*Ha&@JgF K,l'N$k x g
 @,l'N * ,g"@ k |,l'NR @,l'N Ka  Ja   Ma 4 Ma Mh(Rf" l(,"PJg l' h 4a X)@(Rf)l(V(RLl NuH *Ha h"mB MN"M,lHNpmVg0"-d,lLN -hg" N-  _g Ma  m a `pmVfB(Z M <  rL` `  l(0( R@" A@H l( ( HHЁZNu H<6*H&I?@ "/I $"g/k x (`r 2-V a /@ (g E a2* @d5@ 2- &@d;@ & g,-  _g ,p C0r 2t 4v 6*  K,l'N` 
t M 4v 6z :x 8a BH$o (B/,( /<  yHx /<  ~/* /<  l/- /<  k/- /<  nHm  /<  }Hx/<  uHx/<  t/ /<  sHx r/<  rHx /<  //<  g//<  f//<  d//<  e K,l'"ONO |&@JfpmVg
/,#Ta ZXOp `  'J x Ka l '-Lm l( (  c k 2,l'pN"+K $o (+j  M)H(Ra ,  (}g /
B" A"l',l'p $ONO  _ "k 2 l(,l'N Ma QJ@f Ma J $g Ka B p `H'l' V K - ,l'Nj K"l(fN Ma 8  _Jo "g"m M <  N Mpa !vpLl< Nu/J(Zf
a .)@(Zg l(Z ( g @,l'N`pa ,_NuH.  <  r"<  a *@Jfp `p+M m,l'NAN;|  a ;@ ;|  $a ;@ &p ;@VR+lZA+HA+HA,l'NAa  L`Nu/pa d)@(VgJA"l(VM ,, ",x Ia s l(Va EB l(Vpa XOA(,"l(V,lHN
p,_Nu H36,. &I*HA  $,lLv@NnJg  0r   a $@Jg   Ba %@ %Fd",lLN.%@h < "%@ Jo*g %@ %|x  Ja r0/&H/ J"Ma `XO5| ^*  7g Y`*   7g Y J"Kp a J@gA(,"J,lHN
"j JpN 
`* * g @a ( *hg
" ,lLN J <  ra Tp Ll NuH pa *@Jfp `F+l# +| " +|8  Ma r2 Ma B Mpa XO  _A(,"M,lHN
 L` NuH| Jl-6fp `V,l'p Nb.  l( *h `" Ma Jf l(^g Ma Jf|`*U f G,l'N\JFg
/,#a TZXO0L`Nu/pa 8aJ@WDHH.JGgp @pa 0.NuH a J(Vfa J@fp `  *l(V Mp a ZJ@fa /,#a SXOp `b"l(V"iN l(VN UJf*H`( UJf&H-  _f Mpa J@f Ma p*K f"l(V i "l-2""l'#H a pL( Nu/ l'B *l(,` Ma *UJfJl-6g, (}g l( a Ja *_` N N N  ִN  N sN trN  N ļN  PN tVN  N  HN t:N  N  N  N  úN  ǌN  N  N $paQOH l(  ,,l'N @C ,l'pN&Jg"0/ 
H2/ H.R l( 0( Ho` l( >( H ЀЇjV   np^ЀL@PONuasl.library reqtools.library  datatypes.library diskfont.library  Workbench BrowserII PROGDIR:BrowserII.cfg Hz J*f2 l(  ,,l'N)@* l( 0( H)@(0( H)@(9| *CT,lHp&N*@Jg  ~ ,,0<,*Ha B/,( /< (Hl( /< 3/ /< //< i//< g/,(/< f/,(/< e/,*/< dHx /< qHx /< oHx /< nHx /< mp,M ONO d&@Jg6B K"ONO J@gC)Y*)Y()Y(9k *0+ @,0z KN"M,lHNb`  Cnp&N*@Jg|p,MN @Jg`/BHl( /<  /< ` /<  ("H&l% ONpO  _Jg*G )[*p 0)@(p 0)@( ( 89@*0( 4@,0z"HN"M,lHNb`
/,%a PXO0LhNu4H3/H I    *I~ /I   - op`nA $"j pKa 
tA $C $"	,lLvKNA $"tN, g4 F,l'pN"@Jg i pict f~ IN",lLN Lp4NuH1~ J'fHx 'Hz2/,#a OVO p ` C,lHp%N*@JfHx %Hz/,#a O(O p `  A,2C fA ",lLN @Bpr AQA/H A,2",lLN&@a B/,( /< (Hl( /< 3/ /< Ho4/< 1Hx /< <//< Ho L/< 	p ,M ONO <&@Jg>B K"ONO J@g$ k C,2fA,2"$+ ,lLv@N~ K,MN"M,lHNb0LhNu 8H&.z @ S ffJ( g&"l(  TA L,l'N& o LC  f0/ P` "l' i "h 
E  f"l' i 0( ?@ B|  A0HA  a D` 6|  A U@f*l"A(C D$I$$`*l"A(C D""C2,lHp%N$@JfHx %Hz/,#a M\O p `  | </ Ha B/ /< //< // X/< 
Hl( /< 3Hx /< //< /,( /< (p,J ONO <*@Jf"J,lHNbp `hpa nB/  B M,J"ONO 8 g( m C  f0- ?@ Bm  A0HA  a  0: JDgJEgp a   M,JN"J,lHNb0Ld 8NuQOH6. *HE $0- "4Bp- !   @ A ,l'N&@JfnC,lHp%N$@JfHx %Hz/,#a LO p `  p/    @ A ,JN&@Jfp 0/ / // /,"a KO "J,lHNb gnSGf6A C(""C*p"QA*)H( ,(g
"@,l'N)K(`4A C(""C*p"QA*)H( ,(g
"@,l'N)K( Vr  0LlPONu/"H, *g4l '-Lm,  *gA ,C*,l'N`A ,C(,l'pN@,_NuYOH*h 0~ 0H M,l'NH"ҁA(1 RGp@ml '-Lm& MC*,l'p rN|)|   *B+  *`  * *L`XONuH A,l'N*@Jg Ma t"MN` *L` NuH *H` + 
g @a 0 Kpa p M,lHN&@JfLh NuH 6&I*Hp"<  a .$@Jg Ka 
%@ 
g M"J,lHN
p@p Ll NuH*H~,l'N M"l$a M"l$a,l'NJgH"@ QJf,`(p k 
CVg M"k 
a n>  SJf&HJGg f,l'N`p `JGf Ma 0LhNu H~ A 
a fJ@g  B l$C p a D\XO*@Jg^ m 
C+fJ fgJ m 
"l$fJ ffBl(~`" m 
"l$fJ ff9| (~`9| (~ m 
C+f~A 
a r0L  NuH :/ ,. xl(x gzJEf, (ygnG fh//,"Hx /,"a I(O    dD@0; N  8 
   $ * `T0 @ 8  D `F `@ `:0 @ 8  D `,0<`(G g0@ g, (yg `
 `8,(x0L NuH#&I*H~ | `2H  K,l'NrgH"ҁ҇ҁRG$   +( RFp 0- 2Hm;G LhNuH19| 	(|AC+fa pM(r<<< <2 <M,(,   ,  9|(r)A) 9@*A\Cp"Q2A",lL$<  N. gN"A $&<  N& "Np@m fo  cBo `p 0/  BC(j@Sd`p ?@ o  d9| (~9|(J'gA(C)a , (}g. ,*,l'NJgpM(|V @ << AzC+fpl(rgA*pa J@fp9@(rpl(tgA*pa J@f9| (tpra J@fp @pL@NuH3M(j,< <J'g@| `.H ЀІЀA)" p ,l'NH"A)"@fRFp 0,) 2Hm, (}gJl-6g l( a A",lL$<  N. g"A(j$&<  N"N`
/,"a EzXOL@NuN  N H*H`( - g @a.- "HGBGHGgpb
A<!x *U fL NuBrowserII F5  F6  F1  F2  F3  S-F1  S-F2  S-F3  F7  F8  Actions HK G%`B0|"m g2"[p_fA +H V`J gl '-Lm  `B +I  JfK `4.-  gJ'g gJ'g gl '-Ll   J fBA ,l'"ONO )@(fg*@`
 m a *U fpLhNuH &*l(,` m  g,l'N*UJf l-2Bh ,l'NJg(J-Hg"BHx /< C l(f"l-H,l'$ONO *l(,` m  g"l(f,l'N*UJf ,(^g" @"l(f,l'NJlg l(^ <  NLLd Nu ld   lp   lt  Nu ld   lp  l '-Lm
 lt  NuH,. *Hz ` 0Hr  g   `   *UREFmL NuJ@g.p 0,(| lDra ldp 0,(r h rap 0,(t lhraNuH. *H`d - "   gJf-  f   - g> @ a`6Jg-  gm `" - g-  g @ a` - g @ a*U fL NuH*HJlg m ,l' <  N@Bl m ,l'N - ( lXra  - , llr
a  - 0 l\ra  - 4 l`r
a )m ()m 0)m 4p 0-V8g0r 2 &l(f~ )A8`p 0-VH@B@ k a &SRG gp@e m "l(f,l'NBLhNu/JlfJ(fg,l' <  NL9| ,_Nu ,,( l@r` a Rap 0,(t lhra p 0,(v lHra p 0,(x lLra p 0,(z lPra p 0,( lTr
` a 
J@fp Nu"l(f Q"l-2#P ap 0,(C"p 0,(|"p 0,(r"p 0,(t"pNuH. *H| z `-   g
0Hr *UREGm L Nu/.  lDpa9@(|0H   d0@0; N    $   $ $ 9| |`9| `9| ~.Nu/.  ld h pa p9@(rSGf9| .Nu/.  lhpa P9@(tSGf9| .Nu lHpa 49@(vNu lLpa $9@(xNu lPpa 9@(zNu/.  l@pa  )@,(9| rAf )@,(.Nu lTp
a 9@(Nu llp
a  l(R!@ ,Nu lXpa  l(R!@ (Nu l\pa  l(R!@ 0Nu l`p
a  l(R!@ 4NuA| Nu/
$o (   gp$( rfr`r  "`.(  gp$( rfr`r  "`$p ( "$_Nu LH=6*HBo T,m &n 2,K?@ BEZ?A FZ4-bHv 6m$$I j Ho d?@ 6?@ F?A 4?A J?B Z/H 0/I P/N , JC la <XO"K,l'p Np * HЀ o ,  (80 0/ F"l(i S@r 2t 4/ Bԁ.S?@ $JDgT"K ,N / dgJ2/ BASDp 0r 2/ Ft 46/ $/B <t 4&"K$/ <N"K / dNp 0R`"K / dNp 0/ Br 2/ Ft 4/ $&"K$N Jp ( H" 遒Ҁҁ,Mr .H&僖Kv H"v  H 倐Ѐ"o ,E /h  l-  	g0p  o ,0(0a 
$8 r 2 p 0/ BЁt 4/ V?@ Bl o V8/ V-   f :0* g n&o l-  	g k `A r 2 p 0m" (Bo Rk  Q/H $-  gR"o ( / h,l'N o LJ( g,?|  T"o (Nr  o L( /@ 4 "o ("/ 4N.  l(0( o F-  	f0* 2@dA?@ RDd @ / $g   K&@0Dc4p / Qr 2H 0 K$"o 0,l'E `r&<  NHL @ Qp 0/ Rr 2/ BҀp 0/ F/@ 4 "o ("/ 4,l'Np / Q"o ( KN`< g8&@t 4/ Bz :/ Fp 0* r 2m r 2 / " o ,"o p"i NXO0* gr - t 4 ԁ(0/ V@d<o Bo V- 
g.r  Hr  H 倐p  o l( /H l` $o (Jo Tg"J",l'p N o L(  gv"J,l'pNA%H |  p  o ,0(0a r 2 p 0/ 2Ёr 2/ 0t 4/ Vv 6/ BւSt  l(4( /C ,v 6ւS"J$/ ,,l'NB B* Ll LNu/$ 0(bP@r 2 0(t 4  "$` QOH6*Ht 4-&Rp 0-Ђ, St 40-bHP" lPNvr 2-Ҁ*Sp 0-2-bHm $ Tr ) Hҁ"i r 2)(l@ځJo "g"m Hx // " i 2a `"m /,// " i 2a O L lPONu H?*/ @,. *H m &h 2"K,l'p Np A0r 2t 4v 6 ւSt 4-/C ,v 6ւS/$ /C 4&"K"/ @p (/ 0*/ 4NtL   -Bo 6?@ $`rBo 4`^0/ $2/ 44/ 6H(؂؀ -.SnH0-bP@r 2 0- 6H$Ԁp 0$ m/H . M"o ."QAa Ro 40/ 4m`mRo 60/ 6HmLh Nu H*H -.g  2-`H - lPNp"-.찁e . | `\ "- lPNpЭ* x `*r 2v 6 Є m/H   " M"o  "Qa R -d" lPNpЄeR0-`HmL  NuH86*H&m  g^- _fV$k 2"J,l'p NA 6HHHHHH6+ HÖS+ 9HH8+ 
HĘS$&"JN MLl` LlNuQOH*H - gx.-0-`H"- lPNp.m -."*(؀`F mX f8 -/@  /A "/  lPNd"o  2 / "/ Nd"o 2p`
RXmp L PONuQO/"H?@ 
i. JGkp 0)2Hmp`.0)bHP2H/@  "/  lPNj" i`mp`0H.PONu H&4&o ,*H$I<: ?@ - _gp `  mmp 0-4H´mp `t0H Ma `: p@fp `^p 0-2H/@  "/  lPNj$ p 0"-Npr 2Ҁҭ청.mp `  
g4 g6 o 0 g "m 1 L,d NuQOH?6. *H&m  g - _f A "H Kpa ,-.M 6HHTE4HHR44+ @HHHU4 l(0( R@;@v 6 ?B (+ 9HH?@ ,p 02+ 
H " lPNj+@2/ ,t 4"Np;@0/ (H2-bHa <;@`fr;A`0-`H"- lPNp* e* -+@`0-`HS"-Np"+Ae0-bHr 2-䲀m _` _$mp Jg -l( "c(H 0B//<	//<//< J"K,l'&ONlO L +D  g K,l'N Ma  KpN` Ma F YLlPONuH . "H,)0)`H") lPNp.m ).* JGo&0H"҆Ҁ ).o. JGnp `0H`Jnp `0HІTR   , , ,    in D. 0L NuQOH76*H.-?@ *Ha z?@ $g  Hހ0/ $o*r 2-H$-&  lPNp, ԇ0/ $H*`| *0/ $Hr 2- lPNv" 0/ $HnD/ / " Ma B//<	 m"m ,l'&ONlO +GPOp@p LlPONu" 0 l( " A@0NuN ilN  ÐN jpaH,.  l(  ,l'N l(  0H2HN|&@ l(  Nv g*k ( LhNuYOH,*H8 t z ?@ JDfJlg  9DGg<J-<g6 g2J g,pmVg$"+ Ҭ-DҬ-< czAa 4 8-p` l(R8(pp 0r 2t 4B//< //< / /< /,(Va O  L(4XONuH *Hp- f
J gp `,p- gp `  m Jh0gC ` 	*H@*K fpL( Nu H#4*I&H> <BB"l(R i $g  h h 0H4H"a $@Jgx Ja x&gn2j H4j HBB " Sa PO$@JgF* l(bg< S"h JNJ@f j Jh0gC ` 	$H@$K 
g Ja J@g*p@p L, Nu H0 $& B 
Jo g 0H2HA 
C a J@g   l"o g   g"0,r 2 0,t 4 B ""H la XO / g6Ho Ho "@ o a POJ@gp 0/ r 2/ Hx  o "o a XO o 0/ 2/ 9@9A)H`, ,g&2,p 02,v 6B" l"la XOB / 
g lұf
",-@g @pa H o 
)l-@)H`8 ,g.2,p 02,v 6B" l"la >Bp a XOBL  Nu H?6,/ D./ @: 8Bo 6*l(R4<o N9E9Dv /?A 6?B , " a h0H2HBHo < MC Ba PO&@JfJBfa 	)C(b` L+  g)C(b` <p + H" ҁ k p 0((2-bPA 86mAHöm  9| 8/ JlWD H:/ NJ@gD(bf> ,",$&,l'NJ@g&pa t$mp 0r 2 M"KNp a tBl`  9D)G)FJo (f Ka )K(b+   g$, (f g& Ka @B(bBl?|  6` Ka p?@ 69@Jo 6gp 0/ :r 2/ 8 M"Ka x9| ` p+ fp 0/ :r 2/ 8 M"Ka ;bBl"m Mp
N)MLl NuH?&</F.$H8 2AP f Jlg Bl//<//< ,",a 	8PO  ^Ur  *p / " Aa XOBJlg V J,l'NJ-<g DJ(bg <0H2HA0C,a 8/BJ@g  *o, p-<f>p o,h 6f2 l(bh 6f(Hx p ra qXO"@Jg  Af Ip`  pa s"o0$i o,C -Np 0r 24H/A 1a XO: R@gX"o0"i* o,NJg0Hx " A 1Aa qXO @Jg.Jg1Epa <`a o`$l#,a .T/ //
a ,NO p a r`8 /0g* l(Rg*"@"i
r 2t 46H/ " o4NXO`p
a BlBlLdNuYO/*I/H Jlg-   f Ma Tp`-   g
 Ma p@p *_XONu H:/ 6,. *H0H2HHo Ho ,C *a POJg  0H2HHo $Ho , MC (a POJfNFo0p 0/ (" R - lPNpЭS/@ $"-.m"S/A $`p 0/ ("- lPNpЭ/@ $ / $"/ gXlp@p( "/  m&p  M"Ka J@gp 0/ "r 2/ ( M"Ka J / "/ $gٯ p 0/ "Є?@ "`0/ 2H2HBHo " MC (a PO&@Jg  M"Ka J@gp 0/  r 2/  M"Ka "m Mp
NL( Nu H=:/ 64BP ?@ *?A .JBg Jlg 8 l"l(Rf *H&m 2Ag F g >Jlg fJlg m ,l'Np / " Aa 
XOBl0-:-@SEr 2 0Hm.En*Bl0,H2,H4/ *H6H// Ma PO` +  Sfp@H@ R K,l'Nj9| 0/ *H Ma trAg (-2.-ށp 0-2/ .Hl  2,H4,H6,HH/ / " Ma pPOp 0-r 2 4/ .Hv 6-▂ցS/@   "/   lPNj" Do20D@H Ma 8 g  t0H& D`"0H" m/H   M"o  "Qa RB0Hn
0Hc0`  0,H2,H4,H6H// Ma POp 0-r 2 4H6/ .HÖցS/@   "/   lPNj" Do20H Ma ?@  gRz `(0H2H$ԁԀ m/H " M"o ""Qa REo  l0H"-.0Hm0/  H Ma "m Mp
N`0J-<g*Jlf$ m C    ,l'p" tvNpBl9@0/ *8/ .9D9@JlgT0/ *H2HHx a XO`> ,g4 @a nvJ@g* l ( g
 @,l'Np / " Aa hXOBlBBlLh NuH% :/ $.  fp `0H2Ht 4/a XOpL Nu/*H-   g" Mpa p4 - :-@ - >-DS-<   *_NuYOH *H m &h  MaHo Ho  K"Ma POJ@gp 0/ 
r 2/  K"Ma L( XONu/*H-   f*-  f"    Mpa q - :Ѭ-@ - >Ѭ-DR-<*_NuQOH4*I&h ~ "h /H Jf$I`dp* f * oA `"Ma*   gg Ja ~JGg,Ho Ho  K"Ja bPOJ@gp 0/ r 2/  K"Ja J~  RJf$H 
g
 o J |fL,PONu/*H -(oAa V"m Mp
N*_NuH *H ) l(,Jf` K"Ma SJf&H gJ-<f fB-@B-DB-<L( NuYOH*l(R~ | `D m&ph +   f0 Ka Ho Ho  M"Ka POJ@gp 0/ r 2/  M"Ka pRX.m"m Mp
NL(XONuYOH*l(RpmVgrA(pr a  J@gb~ | `L m&PA C(a  ZJ@g0 Ka Ho Ho  M"Ka POJ@gp 0/ r 2/  M"Ka RX.m"m Mp
NL(XONuNqN ktN  N hN  N  N  N  N NpQOH6*H/I  -(on~ | `b m&ph +   gN (f$o ,z `E *, R ,m& KC  NJ@fp `,H"o &i $&   J,l'N|'@ RX.mpLlPONu "%s"  %s []  "%s"%s  %s%s  Unknown YOH6,. *H/I JFg g ,-<` ,-<R,l'`,l'pN&@ gv f/
 l-T"k $$o N _JgPJFg4p)@  l(,Jf `// / J"Ka POJ@g& RJf$H 
f l-T"K ,l'NJg ` K,l'Np LlXONuH. | J'gB l-2*h`$ m "G,l'NJ@fJFg-   	g `*U f| ,l'N. fp L`NuH/6. *H/A $/I ( -(o   IJfS, $Iz x `   m&pH +   g   o4g  ,m& KC,NJ@fp `  /  'fP /,g$ ",lLN\Jf
B/ ,,m"`4,m KC ,NpmVg( "-da wXJ@gA ,p:a &@`,m KC ,NG , /,g
" ,lLN KJfS"҈  c/,#da !dXOp `8 Kp a PAJgA///
a ?PO ܀$o (RX.m pLlNuYOH~ | z /H p[a  Jgt @K `Vp r&grg0r/grg`(|`2z`.JEg `$JFg G ` ` `/,$a  XOp `Rgr]f0@ f  0L XONuH4,. &I*HB$l(,`0H/" J"MAa XOJ@fp `$RJfpL,NuYOH 4&I*HJfS" KJfS҈  c/,#da  XOp `B Mp[a /@ g2$@@Rgr]fp]fRC f"o f MC a pL, XONuYOH/2. $H| z ,l'Nd&@Jg & J"Kp"Q+   Vr  ( UgSfl l-2P"Sfa Rp`   + g @Ca ^Jgz0H"+ "SAa /@  g  2+ HH4H " o  a JEWr ,`  B,  Sa : g p 0 l(R"(dA Aa pJ@fp `f SC fJEgA C a J@g<A &B//<   l-2"K,l'$ONO , JFgJDg,l'NJEf| K,l'N^0LLXONuH" | p 0 l(f,l'Np @*h " l(R"(d,lLNA  a S@f|,  (fa r N0L`@Nu 0H6.*H, z G /H $ KC f, (wVr  (JGg4A a r" l-2 ( MC ra `Jg 02H @p a z` ,l'Nd$@Jg  A "Mra J@g   KJfS"A "HJfS҉  d   Kp a bAJgAHl //Hl a ;\O A $ l-2%h , (wg2 ,'g m V,@N*@JfK//,#hHo 0a ;O   ,  (wWr  /
BHo 0/<  //<  "J l-2,l'$ONO $_JgJDg,l'Nz`
/,#da XO J,l'N^0Ll 0NuH~ l-2   l(R"(d,lLN ,-<o, l(R (dA ra J@g l-2C f@~ JGg l-2,l'NJg,  (fa ,lLr NL@NuN  2N N ȘN  /*H/@  gbJ(Rg\ l(R0(VrAgU@fJp / / /< / /< / /< /a .-</,-D/,-@/,#0Ho 7a 9 MC ;p a O 0*_ Nu(%s)  %lu%% QOH " P"Q) HH( HHg `E `M ` J"N,lPN^LD PONuYO. ICa 
XONuYOH*HC/H 0<r QGC 20<;@ r l(0( H@B@H@Ѐ <  ,(g   	  p,(gA 
 l(0( @ ;|    ~	p r  ,,(g p@ 
 l(2( A ;|    Rp c B+B+L(XONu H6&I*H$m  * g V j "h 2p + H" 遒ҀҁME /J &p + |/	//I $"NA *r a PO$@pk 6fNJ+ fHp,(g@J g"k Hi `HzBHj a 7O `B* p + |// /"N Jra PO`@p+ f:, ,+g2"k Hi `HzHj a 7zp + |. (/"N Jra \O $@0+ 6rAgrAf J g , ,*g8 + "+  lPNpC  Ia p + r R// /"N Ja  PO$@, ,*g:A  " lPNpC  Ia Bp + r R// /"N Ja PO$@, ,*g8 + "+  lPNpC  Ia p + r R// /"N Ja ~PO$@, ,*gJ + " 偒Ҁ "+ "lPNd/ HzHj a 6Lp + r . (/"N Ja .O $@ + g @a T.
A "JGg(p 0ra T'@ gr 2A ""@@Sd`p `B pLl NuH " *H"l(V iJf ` k f0+ 6Af ` SJf&H fp L( NuH&I*H~ + HH   d  @0; N   V 8 ` jJ gfp,(g^J fV, ,+gPA ",lLN<J@g>`:p,(gJ f,, ,+g&J f `, ,+g`, ,+g`, ,+g~JGg  R  R T M"Ka J@fp @pLhNuH &I*HA ,lHN
'M R 4R h M"KLh ` /*H - g
 @a SXB  MpKЀ*_` RYOH?6~*H/H (a ^d,lLrNr&@Jg `  pKЀ"<  a Rd$@Jf~ `  |  |   + (*@A `C p @SdA C p @Sdp  : %k   + @ *o ( +    d  @0; N   N  N N5|  6p@ @ `F5|  6J gp@ , ,+gB* `|  |  |  `5| ( 6|  |  A a k>A"Ja a$",lLtNN&@Jf ,lLrNl mJff`b0* 6rAf|`tBfF<J f>J g80H j a 0%@ g&pj 6f,  ,+g|  `
px,(gB*  RJf$H 
fpx,(g  p$"<  a P&@Jg| mJff`bpj 6fRJ gL&H "* ,lLtx *,.NL K Jg
 K"Ma j"` Ma j0A "j  """ RJf$H 
f Kp$a Ph$o (*  7fJlg*   7g Ja Bl Ja e,0LlXONuYO.BpXONuH1*H~ p(m 6f:,lLrNrJg,A `" $vNT @Jgp f
"( N. rNlJf*pm 6fJ g
 m  `A ",lLtN.  L`Nu/*HA f*_NuH *H - g
" ,lLN m 
a Pb MpL` ` OnH *H@a M,lHN @JfL` Nu H1. "A $,lLv FNnJg<p"<  a N*@Jg* Ba O+@ 
g",lLN+@ J f
 Ma \p @ L` Nu H/,#@a XO Nu @H76.*I/@ $| z p(m 6f <A T,l'N,lLrNr$@Jg  A C ,fA ,"HJfS 	B7+$"
,lLvNT&@Jghp f`0@gF$k  
g> + a Jg2"@A T,lHN
z` * a Jg"@A T,lHN
$R 
fJEf"+ ,lLN, ,lLrNlJEg>B l$$C Xpa XOJgR @"( ,lLNr //Hx  Jra |O `*Jgp / / Hx  ra |pO `A pr a ~A Ta `Xz0@g0@ g
 fz@z"h* MNJgr 2t //Hx a |`$l#,a / Hm /
a O  Ma Ll @NuYO.pXONu/*HAC
"A&"A+HA+HFA"A,C""A"A"A+HAB+HJAL+H:A+HN*_NuN N  hN  N   <H?6&I*HBo :~ | B <?@ 6   gpM,BB - /@ \ U"h "r 2- /@ ` -  lPNp/@ ,/I 0&/ \ UC \,l' <	Nr"/ \/A Xt 4-   lPNvހ*/ ` / <j"/ \op 0܀Sp?@ :`Jo / \lr 2R?|  :/E ` / \g/@ <p 0$- rRDHH"Np*  nD$ "o 0  g ,   mp"Nvm dl f` Z UC X,l' <	Nr / X \f R nD",ЁS lPNj* JjD(/ ,o*܅p 0- /@ ( "/ (Nj( gpٯ `p 0- "NvJo@ - $/ `Ԁv 6- "Np/@ P/B TJo :g0RS Tr 2 Pp ?@ :`/o ` T D/@ PJo :gSBo :A LC HN$m  nD/ / / \"/ X KNA LC HN. H// L / X"/ Ta O MўR ," lPNd" g p<cpKNd   np@p)@입Jf `+o \ "m  KN~ Jf +o \ Ll <Nu  ( da Nu   d   / /,$4`   B@H@/ /,$8/a +^O NuYO/"h /H Jf*I`(p- fA `a - g
 @a IB  UJf*H f*_XONu"HA`YOH46$& &o $*H|  p H" ҁҀ/I 1 	g$m  
g JJfS @p * `$E  JJfS*p@cp 0U@- 0@ gLr 2  "o ( J,l'N:r H$r H&ց KC Qc2i c
 3@BUp -  Ll,XONuH*H| ~  m Jf&H`@p+ f,+  g$+  fJ gA `ar 2 p 0n" , SJf&HR g $m~ >p 0-0a r 2 p 0-,Ё"n" 0L(Nu/*HpmVg
Aa b`0-;@bpmX @ ;@X*_Nu  H?6| Bo Bz x $H/H <J  g V j C M /I .C*IG/H 6/I 2/N *`  H.pk g  05@ 0@+   	g:+  	g2?A B+  	gJHEBEHE" o *2Fc&4/ BHBBBHB&"o .418AF3801@ `1F z Bo B| `2J@g.r - t 4ԁ,` o *p 0r 2n 5@ 1@ "o D) 
gr  H ЀЁ I@*H RD/M D$o . f *o 2&o <Bk,| `BH 22g4+,Ap - r 2Ҁ7A,- 
gr  H ЀЁ M@*HRF gp@m| E `  B/ AH 逐ІЀ Mp (H" ҁҀKp 0+0a H"ҁ  (7 `hp / AHH"҆ JH"ҁ$   42( h v - p 0Ѓ   5 - 
gr  H ЀЁ M@*HR/ A g-  gRF*o 6p@m 8 3 YLl  NuQOH $ p H" 遒Ҁҁ,h p .H" ҁҀ/I Gr  H r H$ԁ/H K  o 0Pgp`&+ 
gr  Hr  H ЀЁ`p LhPONu H'6*H"m &i /H ,/I ( g j k 2M /H $ NC 2p("Q20< r Q.,`  "S,qh p . H" 遒Ҁҁ"o (r TR   +X+X,  l)H$Ԃԁ/K  Gt H"t  H Ђ o  E *n + f2+  	g m `A  gp - "o $,l'NH@p :`
"k  o ,N: p 0r 2n 4+ 
g$r  Hr  H ЀЁp - `RX&o ,  m   3 KC 2p a J@f KC 2pa  J@g 3+ 3fA C 2p( Q0Ll NuH*Ha f Ma D m phVg"~ &U` Sp( fC ` IaRX  mL(Nu/*HAa M*_` H*HA 0< r Q.,`0 U&ph  M"Ka J@fp `(p+ fA `aJ@fp `RX  m Ma pL(Nu/*H"m:NpmVg$J g Ma Aa |J@fp ` Ma :p*_Nu" 0 l( " AANuN pa H 6C ,lHpN*@Jg8G Bp&p&p&p&B l( C ,M$ONO "M,lHNb`BC Zp N*@Jg B$l#,M ONO "M,lHNb`BHz (/,#a O Ll  Nupalette.library reqtools.library  :/   XH?6H @B |~d| z B lBo p/I HA |,l'N/@ 4fp ` "o H QJ f$`  j 
C( a F"n" .R RJ f$H 
f l#C( a  ( r؁/D , l$ C( a 
rЁ$vԃ&րցn$(/@ 0rt A NQ l( ( $HHXM N<2,-RH( HHԁR<<$ nt6,($RCHR ""lPNv?@ T@ o?|  TM( /N Z/l-H d?|  ^l '-Lm < 5@p/
BHx /<B/ // `/<  o TC n,l'p$ONO  _$@Jg :0* 
H/@ (/ Cf  C P2j 
4,-RB22,($BTA?A TBo ^/l# Vr/A `"/ ,2/
B JC Vp$ONO  _$@Jg ?|  ^/l$  V / 0?@ R2/ NH҄?A N/
B JC Vp$ONO  _$@Jg   l( ( &HH2,-RH4* 
H6/ PHւցր( %HH( $HH҄Ҁ,P0/ TjR@@H2/ PH4( H/B x0/ RjR@@H2/ NH4( H/B t/
 "C x,l'E |NX$_BHx /<   /,( /<  p// X/<  n/< /<  k/< `x/<  j//<  g//<  f// /<  d// /<  e,l'"ONO L*@/@ ,g  Ma l"m 2,l'p N l( ( $HHX2,-RH( HHԁ"R( $HHքV/C <&/ (ւ"m 2$/ <N/
 M"o ,l'p rNJ$_/
 o "MpNP _ M,l'ȓN`   m V,lHN`  .( 0( ,( $(( ($h ?@ ("H,l'Nr@g0  g  g`  ?|  p`|po (ft?|  p`jp 0* &Jg
SgSg`V?|  p`N?|  p`Dp 0/ ( o Ha J$@Jg./ Cff "/ l$&,l'NJ@g?|  p*/D l&J*o , m V,l'N @Jf (Jo pg  g
 M,l'N / |g
 @,l'N Ll XNuH "B/,-T/<   o C ,l'$ON4O LD NuH "B/,-T/<  /,#t/<   o  C $,l'$ON4O LD NuH "B/,-T/<  Hx /<  /,#|/<   o (C ,,l'$ON4O LD NuH " /  o B/,-T/<  / /<  //<   o 0C 4,l'$ON4O LD NuH "$o  o C ,l'N4LD NuH6</ 6 / 0$o ,&o  *o "/ ( gA@C( /
B/	/<  Hx /<  Hx /<  // X/<  //<  //<  / /<  /
/<  //<  // t/<  //<   o C ,l'$ON4O \"_* g  f IJfS fz  Ll`NuH8"  lH h h X &,lLt xON, L@Nu/,lLN|,_`H *H&l#,a/ //a DO L( Nu ,-8o
/,$a XO ,-8NuH " l(R h "l(R"i E,l'N9| LD Nu/Ho A"o a  R l( ,l'NaXO,_NuHo A"o a  .aXONuJlg l(Ra BBlNuN i6N k*N lN H H?6$I*H</ F: 8p l(h >( @UGp@@c< t 4RDv 6p 0r 2Hx //  " Ma O UFUG0R@RE2*.?@ ( "<   lPNd( p @cT l("h p 0) 
"M,l'Np 02/ (t 4v 6r 2҃Sv 6/A 2r 2/ (G .&҃S&"M"$NθFdJ"M,l'p Np 0r 2Ҁp 0/ (t 4v 6ւSt 4/C 2v 6 ւSG .& "M"$NLl Nu<%ld> YO.p@XONu H=*Ht l(h 6K8 RD:?A &?B )  g  r 2Rp 0/ .m J"l( i p 0( "M,l'Np 0r 2"MNp 0r 2Ҁ.Sp 0r 2Ҁ&S"M N
p 0r 2"MNp 0r 2t 4ԁS""MN
"l( i p 0( "MN"M "`  2/ .Be  2Ip 0r 2( RjRt 4ԁ*"l( i p 0( "M,l'Np 0r 2"MNp 0r 2Ҁ. Sr 2t 4ԁS"M"N
p 0r 2"MN0/ r 2 p 0ЁSr 2"MN
"l( i p 0( "MN"M "N
L` NuYO.p l(h X@XONu/ ,'g,@N)@lg
N)@pfp @p,_Nu/ ,pg
 @,l'N ,lg
 @,l'N,_Nu"HA  NuYOH. "Hp
 A, ?A `*&IRp 0r@ gp 0r A0 @r-RFp
@eBLXONulH26*I"h /H 0/I & ) g G 6 i ,h 2p - H" 遒Ҁҁ I(/N *MpiV/N "J@g  )  *gvp H" 偒$N"j &o 0 KNr H$r - H&僖փ K°h c
1@  3pr A 6QA `/H :|  9G >* 
 o &(  *grp H" 偒$N"j  o 0Nr H$r - H&僖փ o 0°h c1@  o 0 3pr  KQ'M |  P* 
"o &"i> MN'@ p - r R// *// 4"N Ka $PO$@ o &( +gRG pm 6fJ :f
 l#f` - : Ka X`
 - : Ka (p - r R// *// 4"N Ja PO$@&o &+  +g,A  - >a p - r R// *// 4"N Ja PO$@+  +g  p 0- 8A r
a xp - r R// *// 4"N Ja TPO$@+  +g0p 0- ^A ra @p - r R// *// 4"N Ja PO$@+  +g60- ^Hr 2 A  ra p - r R// *// 4"N Ja PO$@+  +gv0- ZgB",'g"t 4   ll,ANJfA "llf`&p 0- Z/ Hz Hj a |O `A "l$,fp - r R// *// 4 J"o *a `PO$@+  +gv0- \gB",'g"t 4   lp,ANJfA "lpf`&p 0- \/ HzHj a |4O `A "l$0fp - r R// *// 4 J"o *a PO$@p` (g  A BHocCxa XO+  +g.A Ctfp - r R// *// 4 J"o *a  PO$@+  +g.A Ccfp - r R// *// 4 J"o *a ZPO$@+  +g8 m V,l'NA "@fp - r R// *// 4 J"o *a PO$@+  *g(%m R p - r R// *// 4 J"o *a PO$@+ *g&%m N p - r // *// 4 J"o *a PO$@ - g @a 1p$
A 6JBg(p 0ra 1+@ gr 2A 6"@@Sd`p `B pLlLlNuYOH4*HC/H 0<r QGEpmVgv-  *g:0< 7@ A&'H  l(2( A rA 
 K"J"""A&  -  *g, A'H p@ 
 K"J"""A&  0<C 2  l(0( H@B@H@" 偒pmVg  	 K"J"""  -  +g p9@-  +gr9A-  +gRl~ `  p r  o  ( (g  | p HK`tp@ 
 l(2( A r HA7p "Sf6 o ( +g* l(2( HABAHA Ѐ@ l(2( HABAHAҁA K"J"""  Rp 0r mRp	 c PB+B*B+B*L,XONuH," &I*Hz +  g  `  p 0r 2 M"Ka J g: Ma ? Ma -  7g-  6g- _g
 Mp a : JEf Mpa "L(`NuH*H, (g - m><`. -:"-N`,  (g -"- lPNp"-NAa D> p 0B/ /< /a O L NuH. *H - "- a D<  l(,J f  `  J g  pkVgx "+da G J@gjpk^pP f _A"H Ma G,  (g Ka &7Fpr 2B//< /a O (Rfp 0B/ /< /,(Va O  SJ f&H f jL(Nu H#. *H  g  p$ra ,"@Jg  p l'!@ "-d$	,lLNJg B -da ` _ l(V"l'#h   Bp$a ,(RfzJ(Vgt- _g|`- _g|@|  m C p"a CJ@g6M  "/@  lPNp// / Ho /,#4Ho )a v4O `B/   l(VC a f g  - _f   -(o(/- / /-/-0/-/-,/,#8Ho 5a uO  `0/-R/->/-N/-:/-F/-2/-J/-6/,#<Ho =a uO ( MC p a  l(V"l(Rf"hpN g Ma P g l(Rf Mpa L` NuH*H~  ,'g8J'g2 m V,@NA BHx /<  / /< 	 ,l'"ONO .  L`Nu H/6.*IB x &H,k&?@ */H , MC NJ@g "/ ,lLN, pIr A 2QE  JC 2pa CS@f .Jo Rf tBHx /<  /
a ^/@ Ho B K"Ma :Ho Ho  K"Ma O J@gp 0/ r 2/  K"Ma  m a >/K  - Va d&@/@ $f\ Ma $ gRx0@g0@ g
 fx@xp 0$o ,r //Hx " JAa X Ma "j Jp
NO ` X g, (f@ JC |fA |a AA |,l'N"@Jg) 0rg
Y fJ 2gx IN"o $ 	g*JDf&A  ) 
a ͐ S@f  ,  (f  a Ǭ`  0H o ,"(d MAa J@g  ,  (f  a ~`  ?|  pkVf0@gr@r 8"
tN* gTpho *f80@g00@ g fp?@ p 0/ r //Hx " KAa W`&0H/   Kra Y XO`&l#,a / /
/a |O  Ma Ŧ"o ,"i o ,p
NA 2a BN",lLN"/ N o  ga =jJ@f o ,a Ll NuQOH#.*H< ?@ pa 2Tp 0r 24/ "H/ m a 6XO< R@g:"-d,lLNHx "  m Aa 0pXO @JgJg1Fpa l`a .p L`P` 1H &I*Hpk 6f m phVfA "m  8a FJ@g.+  f   Kpa 6 3J f8 M"KL( `  + g
 @a (B +  g Kpa 4t  pm2pL( NuH *H m J f2`.p+ fA `aJ@fp `& M"Ka @J@fp ` SJ f&H f Ma ;pL( Nu/*H-  7g Ma ZA*_`H 6&I*HE Jk 6f J"K,lHN
` J"K,lHNp+ f'm  |'M  Kpa 5 M"KLl ` YOH 6&h E /H ` Ma @"kF MN J,lHN*@Jf$o  `"kFN J,lHN @Jf$o  g @a &BLl XONu/*H - g
 @a &B A a ?p- fA `a l M <  ` Mp`a %*_NuH!$. BgD Q@f> <  "<  a %*@JgD|  A d,l'NA pN0R@;@ B- `p`"<  a %*@Jg
p@ @  g0;@ 6B- Q@Wr  A  L`NuH 6*HG`"mF JN K,lHN$@JfAba >pmVgJg ma %BALl ` rH $*H$m  Ia %+@  Ja % ML$ ` .@ H1. *H gFpmVg> -da ;J@g2"-dA $,lLv@Nn B"m fJ fg
"B Ma.-dJgn a ;tJ@gd l(,J fV`RgFpkVg> "+da =J@g0"+dA $,lLv@Nn B"k fJ fg"B Ka $ SJ f&H fLh Nu H6. *oD$h ,Jx/H (/I ,/N "J Hg> 	f:pNЀ"<  a #&@Jg $'jZ A f,l'N M"K,lHN
/K<`/I<&o< g  pjVgv o (Jh0f""*d,lLN'@ V j a $'@ ZfN` &HJk0g
A ` @&J$o ""j* KN,o<-@ V,j KC 0NA 0a # o<!@ Zg tA0,l'NA$N| z `  S$P&o "* g   /
 K"Ma *&XO&@JgxJj 6f8JGg"A a :Jg o< f"K,lHN
`  A0"K,lHN
`  A$"K,lHN
p* f  J g  A `0H/"Ka `XOrAgx`tx `rp* fjJ gdJ ,gD/
 K"Ma )XO&@Jg.  A$"K,lHN
A `0H/"Ka XOrAg `x `A `0H/a XOrAg8 RXJDg&o (J |g  m $o< 
gG f KC0a l KC$a b  0Ll NuQOH&I*H/@ >?A J(fp`( Mp a A0H/a ^> "m MpNXO0L(PONuH6&I*H~ $m p+ @    g Ka +  gpm2~ Kpa ."K,lHNA"KN
0LlNuH4&I*H~ $m A "o f+  g* M"Ka a"J@g 3*  _f M"Ka   3~0L,NuQOH 6*I/@ &P/H `$A "M,lPN^Jf+  gp ` `
&J$S 
fp Ll PONuYOH06*I$H/H Jj0g
A ` @$K 
g j "MaA $",lLv FNLlXONuH0&I*H m aA $",lLv FNLhNuH $$I*H m "h  i "Jf M"JL$ ` H!6&I*H m $h "*d,lLN. B/  m C a :J/ gA "tN`"*dN&",lLNJVr  0Ll Nu H!*H m "h ")d,lLN. B/  MC a A "tN$ "N L` NuJh 6Vr  0Nu/*HA C
"A"A"A+HFA^Z+HJA"Ap+HBA+H.Ad+H2A+H6A+H:Ah+H>A+HA+H"A+H&A*+H*A+HRAh"Ad>+HN*_NuN .N  N kN lZN h0N  "N  N  vN $paH"$ p l(RhVgVJ   H ¸                       ߐ ސ ݐ ܐ ې ڐ ِ ؐ א ֐ Ր Ԑ Ӑ Ґ ѐ А ϐ ΐ ͐ ̐ ː ʐ ɐ Ȑ ǐ Ɛ Ő Đ Ð                      d hf
/,"a `D l(R"(d,lLN., f*l"a / /a PO`0@Vp  H/   l(Rra NXOL`DNu~(#?.info)  NIL:  BrowserII_Port  PROGDIR:BrowserII.menu  H"~ l(R"(d,lLNp-<f"l(b i  h $h IC *NBHx p/ Hx Hl */ /,"/,$D/,"a O $Jg&Sg
Sg
Sg
`
~`~@~p 0A *r a N&,lLr NLDNupa fBJ@f
/,"a *XONu/. 0H d.@0; N  
     " "p 0a ~`a  `a @a.Nu/. 0H 
d  @0; N    6  N f ~    l(Ra `   Vr  p 0 l(Ra `r Vr  p 0 l(Ra 4`Z Vr  p 0 l(Ra `B Vr  p 0 l(Ra `* Vr  p 0 l(Ra ` l(Ra ` l(Ra .Nu/. pa %0HgSg
` l(Rp` l(Rp a 2p .` %H&I*H~ | z +k  ,+k  4 "- (g+@ ("m: MN-  7g Ma z + "- 0g+@ 0|A 8C 0< VgA C 8p:"Q2~pmVgf0EGg^JEg Ma JGf Ma غJ@f Ma x`>JGg Ma J@f Ma b`(| - _fJFg Ma -0 Ma /J@f Ma <p@p L(Nu/p l(RhVg4 l(,J f&`" l(RgpmVg
C ( Ma  UJ f*H f*_Nu/p l(RhVgB l(,J f4`0(Rg" -d l(R"(da 3J@g"l(R ( Ma  UJ fTR   , , ,   n!*H f*_Nu" 0H   d  @0; N   . P V \    l(R (Ctp@"Q29| z`  Jlzg   l(RCta J@gr l(Ra `ha :`ba `\0<r A Qp  l(R0(VBB"(d h C 
a  l(RC 
a POJ@g l(Ra ` l(Ra &` l(Ra NuH2" | *l(R 80HgSg4Sg  Sg  `  p l(RhVVt p 0 MrAa J@g|`x-  g  | MC,lPN^JgXA "MfA 0$C"	,lLv0N: -  @ "@+@ `$p g0< r  MQp+@ `m  |JFg(p l(RhVga PJ@g l(Ra -4J@f l(Ra L`LNuYO.a J@fa *J@f9|  (XONuQOH1*H&m  g  "k 2 l(,l'N"k 2p N+ 7HH2+ Ht4+ 
H/A " &"k 2$/ p Np  l(0( " Vt 4 DUB//< //< /a p  l(0( V@ 9 Ka a nO > H0+ 
Hl(C 0H2H4H K&,l'N,lLrN:`
 K,l'N8 K",l'prt&N Ma h MpLhP` LhPONuYOH/z Bo "x Bo  a x*@ @Jh 
gtBm 
, ,*gR.,,(G g ,.` ,.)l,,,()G,,a , ,*g  l(VJ g h ,l'N,lLrN:"l(V"i: l(VN l(Va ö l(R ( 0 g +h 0 phVg l(R( _fa (z l(R ( (  gT+h (  phVgF"l(R"i: l(RN l(R(  7ga n l(Ra J@f l(RLhX`  l(R( _fzJEg l(Ra *J@f l(RLhX` | , (sfp ;@ , (ufBm p 0,(r fJm g4,  (}fa 8 g0,(rr   ra 
J@f
 - 9@(r`?|  "p 0,(t fJm gH, (gJDfa 8 gp?@  , (gJo  g0,(tr   ra J@g|` - 9@(tJUgPz JDfa h8 g(,  (}ga BJ@f, (}ga J@gp: ?@ "JEfp rl(|t 49B(|p@ r@l(t 4gJDfa 8 g?|   Jo "gXJDgTa -   g$,  (}f,  (sfA*pa J@f9| (ra J@f
9|  (` BJl-6ga `ha v`bJFg" l(,Jf` Ka  SJf&H f`<p` 2< l(t 4g$ l(,Jf`"k KpN SJf&H fp`Ѐ 2< l(|t 4fJm g4Jm g*, (}g"a J@fp`Ѐ 2<?l(|t 49B(|a Jm g", (}ga ~`,  (}fa  l( a Jo  ga @JDgpTa \Bm MB^B^B^Bm p 0,(M ,p 0,(|,p 0,(r,p 0,(t,LhX` LhXONu l(R(  7ga N"l(R"iN l(RNNu TH6` Jl &ga 9J@gBl & l( ,l'Np 0- _g  Sf  - olpIr A &Q,lLN. | z `2 m ""0X ,lLNJg$r //Hx ra A2O J@g
RP eA &a +",lLN`  l(V h ,l'N>`  - o   m a &@Jg   m " ra $@Jg`*  _g< Ka ~*@Jg$ J"Ma :J@g Kp a 9`   K"Ma "`   Ja :`  $j  
g   J,l'N JN>`x m "",lLN. gf+ Wg,p 0+Vr //Hx " KAa @8O J@g< Kp a 90`2pkVgp / / Hx   Kr`p / / Hx  ra ?O "o  ,lHN l',lHN*@/@  f (Ll TNu/.  gJGg0H l(Ra J@gp@p .NuJ.g!hlNu H?6Bo 4` A .?X 68A &X24A $,*$X?D 0?A ."M,lHN?B ,   f B 	f :/  7f 0p 0/ 6r 2/
 l-2"l(f$K,l'N$_@f  p 0/ 6rEm    l @0; N h~ 8 f   "<V0@ g Vr  p 0 l(Ra `  l(Ra ` ~0@ g Vr  p 0 l(Ra h` \ Vr  p 0 l(Ra ` B0@ g Vr  p 0 l(Ra 2`   Vr  p 0 l(Ra 4` 0@r 2   l(Ra 69@ &`  pa a p a `  pa a p a `  pa  l(Rpa %Jp a `  pa  l(Rp a %0p a `  pa a hp a `zpa WJ@fp/,"a XO`dp
a R`Zp 0/ 62At 4" K,l'N"?@ 6g8r Ae2@ b,2<~ l-2h4B~Afr 2   l(fN~@?@ 6 Qg&rg(r g"   g   g  g
`Ppho 6fH"l(R i f   f4 Ja *@Jg M)H(Ra 8"m M <  N` l(^f Ja  QgjQg Brg r g    g ,   g   ~ g    g    g `   g   8  g 6  g  ` >R,|, |ca lB,|Blp 0/ 6rhgUgr~g6Ug2` 0/ .H2/ ,Ht 4/ 6v 6////a a @O ` 0/ .H2/ ,Ht 4/ 6v 6//// Ja O ` a `  Ja $@Jg  j "h |0) i R@j f0) i R@j g n Jpa 2` bJl~g$ g l(R"l(Rp a  l(Ra v` 80/ .H2/ ,Ht 4/a xXOBl~` 0,SlJ@n 
Bl0,Hr 2a 
J@f40/ .H2/ ,Ht 4/a dXOJ@f < R J,l'NjBl l(Ra ` p 0+ &JgWgdSg.Sg  ` 9| ~ l(R"l(Rpa  l(Ra ` t9|9|  l(Rpa PJ@g Xp@H@ R J,l'Nj` B9| 9|  l(Rpa J@g &p@H@ R J,l'Nj` a .` p 0+ &JgSgSg(` Bl~` 0@r 2   l(Ra 29@ &` 0+ 
H2* 
HҀjR0+ H4/ ,Hl<0@ g Vr  p 0 l(Ra 	h`  Vr  p 0 l(Ra ` j l(Ra ` ^a иxo 6g Npa Bpo 6r 2 Jg
SgSg@`Rpo 6H" p 0/ 6$ v?ă&A p "p8 HH@ Hr 2/ 0N` 0/ 6H@ ?Ha M`p 0/ 6a 8 Jl (f(JDg$p 0/ 6 l(f,l'Np @2(  ?A 6Af ^Jl (f  a `  ?|  4`  p l(RhVf  _a X`ppa f l(R"(d,lLN.  l(Ra 0@g8$l(,`,pjVg" *d"a "J@g*  _g g Ja $K&R f",lLNp a Jl (f l',lHN*@Jf @Jo 4g"l(R"i l(RpN l(Va Ll Nu/Jl &ga /J@gBBl & l( ,l'N`0 l( ,l'N n 4 g"h .( g l(VJ g h N>,_NuH`j M,l'Nj.  MNv, "M,lHNr gr g`>Sf:a r`4rgUgUg Uf"a Z`Jl &f l(Vp a /9@ &`p a  l(L,lHN*@JfL`NuH?6~ |,lLr N l'G *"*["h /@ 4/A 0/I ,M",lL$<  N( g l' M ,,BA(,,l'N0< r AQp)@A"l'#H Xa NJ@g a RJg a ,J@g a ЦJ@g ,lHNf)@'g Nf)@'g Nf)@'g zCRNzJg @( 	HH.RA8"l'#H 
"l'G 	,lHNp  l'( r .,l'N)@-2g $ @!l-T l-2PCfa J@g a \J@g J'gA"l-2#H` (a *J@g a H l'a J@g  l(Lp ( r p  l'( t p  l'( v Îa a JlDga J@f9|  &"l',lHpN` \ ,lHN?| :` a $a pa 0+ HSm    l @0; N       S-8k  znJ(Zg l(Za nJ@f l(Za b0+ zHQg<Yf  + &a $@Jg J+ }gAbC *a  Ja 6` r Ja ` h k  g ^C(p:"Q2` L0/:H Ka B"K,lHN` 8 +  k a 9"K,lHN`  + a 8"K,lHN`  Ka +J"K,lHN`   Ka +X"K,lHN`  0+ ?@ (k  e"+ ,lLNJl &g
a +jJ@g  Bl &0/ (  f l( ,l'N0,(?@ */  )g 9@(/  )g
 l(Va z`D?| </  )g?| <`/  )g?| < k C :fp 0/<r 2/ (A :a 5/  )g9o *("K,lHN,lLr N` Ka EBo:Jl (f l',lHN&@Jf ,l'Na a 6a Jl (g | M' V!o ,  V!M  ^!E !o 0 a :` l(4a $ l(,Jf ,(fg
 @,l'Na Da  ,-2g @,l'N l-2N ,'g"@,lHN l'N`J'g*`
"J,lHN l',lHN$@Jf l',lHN` ,'g
 @,lHN` ,-Hg
 @,l'N| ,(g"@ l( ,l'NH ,((g
"@,l'N ,(g
"@,l'N ,(g
"@,l'NJg
",lLNa a  a  a "/ 4,lLN LlNuNqN  N N  N  N  (HN  *N N  N  -N  	N  N  hN ZN JN HN  0N  2xN  0,N  N  N 8N  &fN  N  xN  #N  0N u*N N  N  0RN JN N  /bN  .4N N  
zN  TN  N lxN  .TN  'N  "8N  ^N  N  ZN  .N N rN  %<N N N tN  paH "lH i*h X-   ggp"<   t@,Ia +@ hf`$prPt@,Ia +@ hgA p,lHNpL`Nu/"lH i h X ( hgJ lg(   gg @,Ia n,_NuH6,. *HG  K,lHN X Ua B$@JgR $ gr  J@Sd K,lHN 
LlNu"lH i h X h`"l' i X h`YOH. &HY/H g**SA ,lHN X U"Ka  S A ,lHNLhXONuYO/, X aJg @ C  	@p ,XONuYO/, X a ~Jg @ C  	@p ,XONu gY a hNu/*HJfS Rra @Jg"Hf *_Nu/*HJfS Rra @Jg"Hf *_Nu gaNuN N ƠN XN YOH *I"P/H Jf&I` A r"M,lPN^Jf ` SJf&H fp Lh XONu8H>6H ,&o`|$H/H 0J Zf2 KC 8fA $C 8"	,lLv FNA 8a %@ Zg *  f  l#a AP,l'NA8NADNpA"<  a /@ (g ` Ka <  S@f"* V$/ (,lLNJg S@f v`  fpLЀ"<  a *@Jg E  J"Ka (G rA /H $"H,Kfp`"o 4 g$BHx /<  // 4/<  /a :O +@ H/  /g J"o 4a : `  o 4(  g"H Ja J@fr @r:JEf
pm (f  x $o $JEf  `/   /g Ja JVp ( &o 0pm (fA f,l'NAD`JDgA f`A8"M,lHN
JDf4-  f,AP"Ja $@Jg"JNA rC fA f"JN
`p o 4(  gd Ka J@gZA8"Ka $@JfAD"Ka x$@Jg&*  f2 o $f o 0 f"M,lHN
`AP"M,lHN
@| JFg&o ( o 0"( V$,lLNJf & gA a  MpLЀa *o 0 S@fJ,lLN|rtҁg:$l!&l!a d/ /- Z/Hx /
a $O Ѐ, `Bp /  Jra  POAP,lHN$@JfE f JC8a 2 JCDa ( o (pAa p@| 0Ll|8NuH*H~`&l#Ha 
/ //a fO .  S@f",lLNJg0LhNuH *HJm (f&m V` K&Pa  fB VL( NuYOH6*/ (,. *H/I  0- g@f;|  0- (Hf   Ma - ^g
" ,lLN - bgZ" ,lLN"N( G //,#La |POJ@g Ka &S@f    `A "H Kpa S@f  ",lLN m ja 6 m na .`LE f`/- b/- ^ - V K"m Zra .PO J,lHN&@JfA VC Zpa A ^C bpa // ,/ " M"o (a A a PO MpLЀLlX` H!6$. *HG f`/- b/- ^ - V"-  J"m Za PO K,lHN$@JfJBg2A VC Zpa  - ^g" $,lLN\JgA ^C bpa  - ^g
" ,lLN m ba ( - Vg
" ,lLN m Za  MpNЀLl` H *H` -  Kra > M,lHN&@Jf - gRgA C pa j` - g @a  MpNLh `  H 6*o  /H $I/I pLЀ"<  a ~&@Jfp `  A C a Z,  (Wr 7A 7|   A rC fR-   g Ma p-    @ Jk (gA f,l'NB 0B ,0+ (HgQgQg$Qg(rg*`.  R`" R
` ` ` $o Ho Ho  J"Ma POJ@gp 0/ r 2/  J"Ma  Ll  NuYOH6,. $Hz pN"<  a j*@Jfp `  , )gA C(p: Q0;l(x;l(z;l(+F 0/ *;@ 
g
 Ja +@  M,l'N l(,Jf0`,$k.  K"MrN8 f
 Ma ` U@fz SJf&H f"l(R"i l(RpNJEg/,#Pa XOJ@f Ma  LlXONuNqN  7 N >N  :paH ""HpiVg i ` l $H i "i ,l'NLD NuH0"  ghl '-Lm<JAg&BHx /<  Hx /<  ,l'"ONO `6B,l'"ONO `$JAgC   H,l'p" tv N`,l'NL@NuH. JGgRl0,rAot`  Sll l  ,lHN| l'*h `B - Qg(Qg$rgr g  g   g  f"M,lHN"MN*K&U f,lHNv0H l(^a  l(,Jf`0H m a  UJf*H fLhNu"H l(,Jf`fpNu PJf fp Nu/"H l(,Jf` k f ` SJf&H fp &_NuH#,. g8 l(,Jf*`&0-VFg"$-d,lLN\Jf ` UJf*H fp L`Nu/" *l(,` -Zf `*UJfp *_Nu"HA  p3r QA Tp3QA 0< QBi2"Nu/*H"mBNpmXp;@`;@bA.p3r QAa Mp*_` YOH4. &H/H   gPS h0) 6fK pS ) : ) >`2S l) rf$ ) ȑ hK  E p ) ̑ l   gL)  g<S TJi 6fK \S ) : ) >`&S Xp) f )  ` ) đ d`0@ gV g$)   gK |S ) : ) >`0@ g,Jk0g
A ` @&J g+   fp 0 k a L,XONu/" "H i   g"S 40) 6fK <S ) : ) >`S 8 g4)  g$S  Ji 6fK (S ) : ) >`S $`0@ g8 g$)   gK HS ) : ) >`0@ gp 0 i *_` J*_NuYOH4. &H/H   gXR h0) 6fK pR ) :ѝ ) >ѝ`:R l) rf,)   g$ ) ѫ hK  E pњ ) ѫ l њ њ gh)  gXR TJi 6fK \R ) :ѝ ) >ѝ`BR Xp) f6)   g. ) ѫ TK  E \њ ) ѫ X њ њ`0@ gV g$)   gK |R ) :ѝ ) >ѝ`0@ g,Jk0g
A ` @&J g+   fp 0 k a L,XONu/" "H i   g"R 40) 6fK <R ) :ѝ ) >ѝ`R 8 g4)  g$R  Ji 6fK (R ) :ѝ ) >ѝ`R $`0@ g8 g$)   gK HR ) :ѝ ) >ѝ`0@ gp 0 i *_` &*_NuH &I*HA ,lHN
    3'M p+ f'm  |Lh NuH&I*Hp+ ~  pk 6f m phVfA "m  8a 0J@gp@p JGgJ@gJGfJ@g 3  L(NuYOH4&o $*I$m ~ | z x /H -   g Ma p~ - : $g
z Mpa p- g(0+  2- 6@gJ@fp@ @ `
|  B- xA "Ka 	2JEg Mpa :-  g2JDf J"Ma /J@g 3 o (  _f J"Ma B  3| J"Ma JGg Ma @0L,XONuH4&I*H~ ,+   k ݨ. + ,Ѩ: + 0Ѩ>z x `4 S$pH  R+ p* f*  f  MC `aހRXm L,NuYO/*HA C.p"QpmVgFB.B:B> -g @a  - g"ra +@g0A/H  @"o a :`B`+mpmX @ ;@XpTR 	  , , ,   ǨRy%*_XONuH4. *H&m | $kJ -   K"UNJGgFpkVg> m Jf&`"+  gp+ f
A `0Ha SJf&H R $l f 3 m   YL,Nu/*H- _fApa p M*_` *_NuH. *H|  m   Y 3 g @a  -  fB`v -  ra |*gh m Jf&Hz `D+  g2JGg$p+ fA `0HaJ@f Ua 튑*p `(R U!X X SJf&H g  m Mp a pL(NuYOH 4*H m p 0(V/H QgQfR - x"(`@Jm0gA ` &M@&J g. o  ("+ :ҀS "( lPNd"o ")a 8;@.L, XONuQOH 6*H&m  K/H - 3gJ"m Jf$I`$*  g M"Ja .J@fp `   RJf$H 
f 3+  7g Ka R- 3gPE `"o ,i M"KNJ@fp `<    J,lHN&@Jfpm2 @ ;@2 o (  7ga  Ma pLl PONu/*H m ( _fXJm2gR Ma J@fp `F- 3g Mp a J@fp `.- 3g Mp a (-  3g Ma - 3g Ma xp*_NuH*H- _f  Aa |J@fp `  G SJf g&`"mFN K,lHN @Jf-  7g Ma $-  Yg Ma  J@fp `B- Yg Ma - Yg ~ - Yg
 Mp a > JGf Mpa Z"m MpNpLhNuYO/. 0HP2HP/@  "/  lPNj.XONu/" *H  g m |0( 20( 3@  g  m |0( h R@3@ 0( h R@3@ *_NuYOH. "h /H Jf*I`6-  g$  g
A `p 0a g  `   UJf*H gp- gL XONuH*H| J@Wr  Ap 0a Ma  Ma -  7g-  6g- _g
 Mp a < JFf Mpa  L @NuNqN  K&N hN  JN  ;Jg @"(  AJ Vr  0Nup Nu: .info /" &IS@SdB3 Kp:a bJg
 @B( p@p &_NuH"6*H|  @"(  A&h ,lLrNr$@JgB`$J f f * ( Ma  MCa K~|`"
,lLtNN$@Jf,lLrNl0LlDNuYOH "HJfS 	rAo"H*I[ MC4,lPN^Jf @p L` XONuaJg @BpNup Nu (H *HC fA aJ@g,A ,l'NvJ@f,lLN|rjҁf"`p `p`
",lLNL`  (NuYOH+. *H&Ix`JGg
 Ma H8 @x S@f",lLtN, g S@fh`JGg
 Ma 8 @x S@f"$,lLNJg  @"(  A$(  ",lLN S@fMSD gP M"K,lPN^Jgf0LhXONuH4. &I*H| pA"<  a $@Jg$0H M"Ja (< S@f K"Ja  JpAa 0L,NuH $" ,lLN\rgJgp @pL@NuH K G&&&L( Nu/pK*B*   *_Nu/*H m 8a *B 8 m <a B <*_NuH &I*Ha K"Mp"Q2 + 8g
 @a +@ 8 + <g
 @a +@ <L( NuH<6&I*H",lLt N~/@  g2 @"$( &C $(	z@NJJg D`a h @N$@"/  Nx 
Ll<NuH1*I/H ",lLtN. g,"A $v@NnJg B`a  @N&@"N `a   @NLhNu H'6*I|z $H/H (a  - rgXfA "o 0a t%@ <  "`  p f  G  K"o 0a %@ <  ""lH i"h p!@ /H $/I  ",lLtN. g2pA"<  a |$@Jgz"$
NJg
A f*J"N o $!o   &o ( - k(7|   BHx /<  Hm a O '@ @B (`
Bk  'm  (A "Kf'm | $A C ,""" - t" 
A t Ft 4+ "7B "7@ H7m  D7m  FE  JJfS r c J"o 0N'@ 8f|    "JEg
 MpAa 0Ll NuHz8a dXONuHzRa XXONuYOH#4. $o  &I*H|A "k f + j."+ %A : -H  g"+ ҀS "/  lPNd%@ > + rg
rgWf  8K  " 
A t F5A 85@ ^C B"""  +  g& @"JfS g Aa t%@ Ng   8@| pm5k $ Z5k & \0L,XONuYOH/*I&H/H  Jk  f-   f -  fp ` -  f -  fp `  <  g g ~-  gA 0"$,lLN4J@fp ` \ + $ `lp ` L - dg"+ $op ` 8-  gA ,C h"$	,lLNJop ` -   gA ,C t"$	,lLNJjp `  -  g0- 2+ "$@@gp `  -  g0+ "m gp `  -  g0- 2+ H@@gp `  -   g0+ Hm gp `  J'gxp` gn| .+ @z `BHEBEHE ЀЅЀ&M8+ JFg g  k "G,l'NJ@f  Wr  0`&REm e| ,l'N. f-  gp @pLhXONuH&Ia "> +  g
JGWD H@0HLNuN fpa ,H=6*HpmV/I $J@g   m  JfS.0H&I m ,lPNXJgp `   KJfS0Hg  0Hr:3gRGp/3pf  E0H( "/ $A (&,lLt/z(Nb> ,mRC  I"Cp N&@Jf,mRC  I"Cp N&@Jgp+ g2p `H0*0R@r 2 pa &@JgA "Cf J"Ka B`p `E ` R@f r 
`
p `A Ll ,Nu H6. *Hz /I ,JGg &o 8 g  g l(V,hNN` E  	g  "o , iRp 0- M /N $,H J"o $N$@Jg$A *o ,/ M"Ja 8: "m MpNXO` j"o , iRM p 0- C /N  ,H o  N$@Jf 40- (| < p o ,hVgp 0+0` <  r 2  a $@Jg A C a f K"Ja `  "o ,,iRp 0- G r J"KN$@Jg   gHm  o 0"Ja |XO:  g&"o ,,i6C *o 8//	 M"JN:  M"Ja PO*o ,0@g,m2 o 8"JN: *  gl  -  _f^*  gV  g Ja z`F o ,,hR o 8 p 0- "KN$@Jg&0@g"J,lHN Ja v`A C a hJEg.*o ,Ho 0Ho 6 M"Ja POJ@gp 0/ 2r 2/ 0 M"Ja Ll Nu H4*/ (,. *H/I  Jg| ra TJg"@2< m HHi  Ma XO l(,JfH`DpkVg4 "+da ^J@g& K"o ,a H @Jg0< m H/ M"Ka LXO SJf&H f a $$@/@ g" J"o  a 2< m H/   M"Ja XOJg   ra &@Jg&g" K"o  a 2< m H/   M"Ka XO l(,Jf^`Z+ Wf+ WgBpm (f: g4 "+da J@g& K"o  a r @Jg0< m H/ M"Ka vXO SJf&H fL, NuQOH6*/ (,. *H/I  Jm g  ,lH,n n X/H (   gfj h pa  &@JgpA "Mp% QE pIr  JQA "H Ja HE $'F $$  $ , l'"K,lHN o Rh a `// ,/ " Ma POBm LlPONuH,. *Hg* ra 0&@Jg Ka J@g"k KpN` Ka  l(,Jff`bpkVgR "+da 6J@gD K"Ma "Jg @a <J@f
 KL(` x g Ka J@f
 KL(` ^"k KpN SJf&H fL(NuYOH6. &I*HJg  "lH i,h X/N .   gf   n pa $@Jg   %@  g@| "lH i f,lLr N|  f",lLN*JFg" ,lLN@B S%H  g  f
 @a t&@B5G  l'"J,lHN o Rh a z`0p 0" SAa   g g
" ,lLNB g @a lBLlXONu"HA /) /)  ) ") "i a PONup 0( "  (  h `  NqHz 
a fXONuNot yet!  a J@fp Nua vp4a "tpNu/a > fpga / a (XOpDa "R0.NuYOH 6&I*H"+ ,lLN @JfSE /@ "f,rIp QE "k fEC B""";|  6`Ab"H Ja ^A "o fLl XONuH *Ha Z  _pIЀ"<  a 8&@ @|  B( |  "Ma RRl!,7l!, b7|  `'M f l(Z"KL( ` H. *Hp 0-VSgSg
`L `  Ma   _`pJ(Zf
a )@(Zg` Ma `JGgB,-d l(,Jf0`,pmVg "-da J@g-  _f Ma ( UJf*H f l(Za tJ@f l(Za hp L Nu/*H"l(Z iJf`ph `f
 ff ` PJf fp *_NuQOH 4*Ha&@Jg>AbC a B f"l(Z i2E/J $H o "KN l(Za J@f l(Za L, PONu H 2&H/H pa  J@fp `   Ka PJg @B f l(Z$h2M N"@N"l(Z iJfJ`Fpk `f6+   g. k fpa  TJ@g,B f"l(Z i2E/J $H o "KN SJf&H f l(Za .J@f l(Za "pLL  NuNqN  
N  /*H - g
 @a ֘B A a 0- `HSgSg` - fg @a  MpIЀ*_`     /"Hpi `f&i f g + `A  &_Nu H0) `HSgSg`
 i fa  Nu Ha : NuH &I0( `HSf h f (hg" ,lLN&@BpLH NuH#*H~ 0- `HSf& m f"(h,lLN, A "tN. "N L`Nu/
$I0( `HSf h f"h f$_NuH6H ~/H J(fp`   hJf  `  *   g  pNЀ"<  a |*@Jg  +kZ G f K,l'N o  "M,lHN
 JC $a hA $a +@ ZgdA V"H Ja J@fp `P/
 o  "o $a xXO"@Jg:3j b  K,lHN
*  f~ RJf$H&o  
f P"k KpN0LlNu0) `HSg
SgSg`` p NuH 6*I/H 0- `HSfF m f&h  KC fA ",lLN o"@fA a "$@Jg Ka b m f!J p Ll NuQO/" /I "P/H Jf*I`"0- bAf-  gp ` ` UJf*H fp *_PONuHp r  l(Z*(.`"l(Z i*p -   fRXm L  Nu |H. *H| p(f4-<f.(Rf(a @C a A "HJfS,	CfTF -(o6rxAl*A /- / /-/-0/-/-,/,#8/a XO  B/ `0/-R/->/-N/-:/-F/-2/-J/-6/,#<Ho 3a "O ( MC p a   g"l(V"i l(V <  NL  |NupNu/*HAr+H
AB+HA+HFA+HAC."A"A"A+H>AC""A:"Af"A<+HRA+H+HN*_NuNqH 6&I*H fB-  _g&Y@f Ka 
$@ M"Ja |J@f" 
g K"Ja Ϻ` m ,l'N m N>Ll Nu  %03ld %-15s  %s QOH/6. *HB (xp 0?A &"Aa &@Jg.",lLN0/ 2H8/ 6r 2 K"Ma R  f 6p` pA"<  a О$@Jg N"$
,lLNJg < * j  Jo :fHj /,!a JPO` "N., "N.g "NJg  p 0/ &"Aa t&@Jg4"N0/ 2H8/ 6r 2 K"Ma   f BpAa $p`  x JDgf8/ 2 Y@f
 Ma Ϊ/@ (| </ &:H/  7Wr  H// " M"o 0a 6PO&@Jf"N"o ( 	gv Ma *`n g  /Ab"Ba 
 BpAa Ϟ8/ 6 gpkX @ ` gpkX @ 7@X Ka Bp`Jg
",lLN 
g
 JpAa Np LlPONuH,. *HJo g-  /fz`z `*- , r`g|0Hr ///   Mra O J@g g
 Mp a ` g Ma L NuH1&. *Hpa ",lLtNJgr 2t 4v///a `&l#,a R/ //a LO p Lh` ؂YOH*H~  _G Kp a J@g   Ma J@g   Ka  Ma r-  _gz Ma &@Jgn K"Ma < l(ZJ g\+  gTa  l(Z"Ka &Ho Ho  l(Z"Ka FPOJ@gp 0/ r 2/  l(Z"Ka  l(Za J@f l(Za ˰ -.n- _f$- Yg
 Mp a D`- Yg
 Mp a ˞>  _"m M <  NJGf Mpa Z` Ma 2L(XONu/*H m a < Mp*_` JH *H@a M,lHN @JfL` NuH *Hp"<  a &@Jg Ma ͨ'@ f Kap @ L( NuH *H IaJg"@ M,lHN
p@p L` NuH 6a 0*@Jg\&m Kp a FJ@gF Ka 
 Ka 0+0r Ac6J@g
A ` @&J+k A",lLNJg @B` Ma 0Ll NuH. |"lH i*h X-   gfX m pa "@JgP#G  l',lHNRm `ph fJ fJ g| a Sm  m ,lHN @Jf` a 0L`NuH06*Ha <&@JgN,kR kX"Mp N$@Jg6p* f.A"$,lLv FNA"H Kp a nA `'Hp@p LlNuH6. *H|"lH i&h X+   gfd k pa $@Jg`%G  Ma %@  l'"J,lHNRk `ph fJ fJ g| a Sk  k ,lHN @Jf`
  Ma < 0LlNu PH6,*Ha >&@JgP$k k"MNJFg> ,'g m V,@N @`Ax/Hm /+HzlHo $a ~ KC (p a fO pLl@ PNuH*H~`ph fJ g~ a LSm  m ,lHN @Jf0L`Nu PH2,. $H/H pIr A QA "Ja ~0/ >r 2 p 0/ nAa &@JfA a `  A pIC Q rg, Vr  B//<  /
/<  Hk a `O '@ V"lH i$h X*   gf` Ja : j d o"` j ,lHN Ja J@fz j 2 nJEg8 j pa "@Jg(#K #G " l',lHNRj `
  Kra Dp` Ka p LL PNu H?6,/ H.$H& ?|  4/I 0A 8,l'N",lLN( *o 0`TBo 6o Rg$ - kA "HA 8a ?@ 4g`po Nfp?@ 6Jo 6gp 0/ R/  " Ma RXO?@ 4Jo 4g"$,lLNJfJo 4g&,lLN|rtҁg*l!a / /
/a O Jo 4g  o Rg   o 8Jf  `   lH*h&m p+@ "* ,lLtN* +K Jgh*o 0"$,lLNJgN - kH  j a Z?@ 4g8p 0/ N2/ RRAv 6// /"B " j a O ?@ 4g
 a :?@ 4"N RJf$HJo 4g 
f ZA 8a (",lLN0/ 4Ll Nu (H',. *Hz pA"<  a &@Jgn"$,lLNJgRA C f + o2 M"Ka xp 0/ Nr 2/ R// // P "A ("Ka O : `Ho /,!a PO KpAa 0Lh (NuQOH6,/H a *@Jg   m/H pmVf <  `p 0(0* $o `V * jrmVgFJkp@p r 2 p 0Aa n&@Jg8/  M"Ja XOJ@f
 Ka p `,m o "KN$R 
f o a ƪpLl`PONuH*H~`ph fJ g~ a Sm  m ,lHN @Jf0L`NuYOH,/  . *H/A "lH i&h X+   gff Ka: k  o"` k ,lHN Ka ~J@fz k  nJEfp `< k pa "@Jg,#M #G "#F  l',lHNRk ` " Ma : 0LhXONuH"$ | pA"<  a *@Jg("$,lLNJg
 - kp@p <  BpAa 0L`DNuH$$I*H~` * k M"j a > $RJGg 
f0L$NuQOH ") ZD HPONu  H?6,. /H 0l '-L\r *B DBo 6",lLN/@ ,A 8,l'NB,lLr$NO &@Jg B po Rf  A)H!8A!0'H `  p@"<  a \*@Jg  /("$*,lLv@NPL  ( fN|rsfSplJf.,lLN|/@ Drtҁg$l!a |/ // 4/
a tO `F    c,po RgA 8"Ma J@g(/ "/ P Ma XOJ@gJf?|  6Jo 6g D g,ptЀ Dgl '-Lm("$*,lLv@N" Ma $,lLrNJo 6g  po Rg   o 8Jf$H&/ L`   lH*h&m p+@ "* ,lLtN* +K JgZ a J@gF  j a P?@ 6g6p 0/ R2/ VRAt 4// / " j a O ?@ 6g
 a 2?@ 6",lLN RJf$HJo 6g 
f hA 8a "/ ,,lLN0/ 6Ll  Nu/" *H - g @ - ""- a vJ@g B `0H"- " m Aa TR 
  , , ,   KrИ0J@gB *_NuH */ ,. 0/ rAf"<  @r ( gr 2 p 0/ // "a (`p 0/ r 2// / "a ZO L NuN  N  fN  qN  fJN  spa H86/I $/H  Jo  K (&HS$K/M  J 
" jVjR$K*@/H @X K"J,o $NJk@Y J"M,o $NJkd &*f$M`f$KbXYc$o  "   $
&(ld o  !J P $@` o  d"o "#M P /K  &o  e H*o A (cQ&U/K  $m ` (Ll NuH . ,( 0B!Dz p r p 0gp HA)p !D`Rp eJ!Dg4 g  ICHa `  g  IC\a `  I"l!Da L NuYOH,. &I*Ho   M"HY/H  I"o NJop`Sl MC NJop@p L(XONuYOH$*I$P"h *) 0.(  /H  
g  | "@`
 QgRXmmp `  B!Dx p r p 0gp HA)p !D`Rp e ,!DgH g " JC BL$X`  g " JC PL$X`  " J"l!DL$X` L$XONu/
$H R0( 6H Q2( 6Hg ` J$l!DN$_NuH &$I*H U"R h V"i V,l'NHf
 M"J$l!DNLd Nu/ P "Q ,lPN^,_Nu/*H Q"U ) : :*_NuH *H Q B"U B"$	,lLNL`Nu/A!H,l'NA!T,lHN,_NuBrowserII BgProc  H *H0- HSm     l  @0; N   F  l  v  b0- zHQgYf  "- ",lLNA *a h`h - gb @pwЀa `V m  ga h`H - gB @a `: m a d`0A a &`& - g
" ,lLN m a @`"- ,lLN MpaЀL` ` <H *H`a $Sm  m ,lHN @JfL` NuH!"lH i*h X`P m "m `p ) r p ( t . Ma YJg"@ i Vp ( r  ,lHNa V Ma x0- nL`NuH. *HpaЀ"<  a p @Jg1|  |  !M 1G  L NuH *HB l'/( /< Hxp/< / /< Hz$/< Hy  /< ,lL"NO ,&@Jg,lH <   NA \"MNR-8`&l#Xa / /a t Ma POLh NuH6. *H| zl(g l'pa &@Jg  7G z'M `"l',lHp N 0HrfJEg Kp a `   Ma 1`  p l(RhVg"(d,lLN,  l(R$h 0H/ " Jp a äXO*@JgTJEg'M  Kp a `L0H Ma QGf- gA C(p:"Q2 ,(Zg @a J@f l(Za `
 g Ka JEf g Ma HH"l',lHNLlNuH2,. $H, (gB l'pa &@Jgf j $/( /,#\a 'J G |7|  z0H'@ & Kp a  PO`4HHB/ /<   l-T"J,l'$ONO JgJFg,l'NLLNu PH *H- _f   Ma  _A+H"- ,lLN @JfS fA"m f/- `AGb"Kf//,$Ho a O  MC p a , (gX l'pa &@Jgz"-dN'@ "'mZ &7|  z'm , t7mV xA *Cba :-  /Vr    Ka `0Abp 0-V/ /- , -d"-Za ,POJ@f Ma ` Ma pLh  PNuH>I    ,lH$npQЀ"<  N:&@Nf'@ ,lHNf'@ `%K XA!T,lHNA!H"KN
A!TN"l' <   N \ JN JN*@ @$h >( za J@g  a ULJg  0HrgpSgSg(`nA *p 0- x/ /- t - ""- &a FPO@ }`  - |HH/
B/ /<   l-T"m ,l'$ONO  _Jg\J &gV,l'N`L Ja -`>0H Ja QGf0* g(pwЀra JgA "@r:"Q2+@ ` 
g Ja   ga  k ,lHN`A!TN"KNA!TN`
"H,lHN k `,lHN @Jf k `,lHN`a TJa "KpQЀN.N|"MNL|NuH 6*HA!T,lHNZ$l!H` Ja T$f&J`$RJfA!T,lHN Ll NuH. *H| A!T,lHNZ&l!H`$ Mpa 4Jg @!G "@ k `,lHNRF&SJfA!T,lHN0LhNu l'`H. | z ,lHNf*@JgP  Ma< g</,#`a  Hpa rXO` M,lHN MNJg @a DREFmp a Ha  & M,lHN`0L`NuN  t>N  N  "N  tTN $pa( g   n( g(  ga INu#?    %s.info def_Drawer.info ICONS ICONS:  ENV:Sys def_Project def_Tool  Disk  .info SYS:System/DiskCopy  PJf g"h fJf 	Nup Nu LH6&H/H  +op`  J g  pNЀ"<  a $@/@ g  A f,l'N K"J,lHN
"+ ,lLN%@ V k a %@ ZAC B2BAC  2BE`f+  gZK 0< r  MQA <Cfp" $o "* V,lLN. /* Z J"Mpa S@WDH,"NXO0`$*l"//
Ho (Ho N/,"xa 3O Sg ~p Ll LNu (H 6*Hpmg/,"pa lXOp `j -gdG",lLN@ KC a n/
Hx BHx (Ho  Hx /,#p/,$H/,"la O $JgA "Ka mRJ@g l"ha Dd Ma pLl  (Nuphg/,"da lpXOp Nu (Nu /*Hpmg/,"Pa lLXO`n -gj0< r A Qpf-  f Ma  @?h * ?h P A p " a SJ@g$C A0000  l"La C Ma p@p *_ Nuphg/,$a kXOp Nu (Nu(  fp!@ Nu/*Hpmg/,"Ha kXOp `&-  g `p+@  l#a C> Ma p*_NuYO.pXONuH*Hpmg/,"Da k@XOp `p -gj- g&l"@~`&l"<~-  g l"8`AX/-
/-//,!//a &O Jg
SgSg`
p ` Ma ( l"4a B Ma pL(Nu/*H- g/,"0a jXOp ` l",a Bt Ma JVD H*_NuYO/ph/H J@g/,"(a jtXO`H( g.pfa *@ @C  Ia ;| B `/,"$a j>XO`ph @ 1@a &p *_XONu 8H'6. &o \*I/H  z`",lLN/,"//,"a &O *  S@f*",lLtN, f`$l"a j/ //
a O *  S@f",lLN, g S@f  ",lLN"Nf" M"o `pa 1:  gZ`$l!a / //
a O *  S@f M"K,l'NJ@g S@f$/HzHo .a J"A 2"o lpa 1@O : 0Ll 8Nu TH6|&H/H J f/,"a hXO` $pOr A  Q/,$THx/Hx PHo 0Hx /,$/,$P/,"a O $J@g  U@f2`$l#a >/ Hz/
a O <  S@f,l'pN*@Jg S@f  "+ ,lLN. G  `\Rgp  gp	 gJgNp" f|R@| $K@RgJFgp" fJFfp  fB o /( / ( "Ja PO< JFgJf",lLN o  "o  pa Ԏ g
 M,l'Np Ll TNuH!6&I*H~`$l"a H/ //
a O .  S@f"$,lLN0Jg0LlNuH76/I 0|*HG "K/H ,/I (M fE r J0- (H/H $JgQgQg JQg ~rg ` *o 0:-B/Hm/
/,"xa -`O < S@f //
/," Ho a A a >O JEf  Jmg   l"ta > Ma `  ,lLN|r4FfjA"HM 6p',Q<  &l"x$H*l!a */  o ,/"o ,/	///
/	/a ,O  < *o 0-  f0AC 6p' Q0`&l!a / /
// ,/a hO ,  S@f$o ("/ $$
,lLNJg N S@f   o ,  `  A a <  S@fA ",lLtN. g S@f  "A $,lLv Nn"NJm g/,"a eXOp `tA "HJfS 	S"Hp:fBBHx Hx Hx  /Hx /,#p/,"/,"a |O $Jg JC a < S@f  `| `/,"a e2XO|0LlNuH!6&I*H~`$l!a / //
a :O .  S@f"$,lLNtJg0LlNuH4&I*HE  Ja <A"H Ja> S@fAC 4"""  0L,NuH!6&I*H~ g0`$l!a */ //
a O .  S@f"$,lLNLJg0LlNu TH4*H&IE/I J+of   - @g @"JfHm /,"\Ho a :O    op,@pp" BHxp/ Hx P/
/ A!/0 Ho 0/,"Xa O $Jg(Sg(SgSg`| o l"Ta ; Ka `p`Pp `LG  Ka ; K"Ja > g4A a r JJfS g Ja F+@ @   *`   *  0L, TNuYOH&$*H|2A?@ @ 
@ A* `&l!a / //a \O ,  S@fp 0$ ",lLNFJg0LhdXONuH4&I*H~E  Ja :+   g JC&a 6> S@fA a èC 0F@2- *k@,0- PY2FAA*  S@f p 0r 2 Ja :> g;F *;E P  0L,NuH?& *Hl '-LlNz ",lLt N~&@Jg6"tN, g$A*(,"$<  v .N* "N"Nx0`"$,lLNLhNuYOH*H|p 0) "r 2)  HABA.`&l$a / //a O ,  S@f  Ma LJ@g0L(XONu |H6~ &IE/H /I JkFf  Hh /,$Ho $a O    op,@ppA!&p  JC lfA l//Hx@BHx  /Hx /Ho </,$a RO (JgSg
Sg
Sg
`~ `~`p`dp ``*l$A l"J,l'NJfJGg*o ;| F l$a 8 Ma *o G  Ka 8 K"Ja > g;j   L;j " N  0Ll |Nu P/Bh  ( ,K&ѝ Ш 0R*2( (fR.`R2(  g 0( (g.K"!A , !@ 0r #A*` ( ,Kѝ Ш 0R*ph (f /)*/)&/,"Ho a 6A a 8O p*_ PNuH1*H~ ,lLrNrJg$" AR$vNTJgAH"Mf~"NlJGfA:fL`Nu H?6. /I 0*H| ?|  G /H , Ka 70- (HBHx /<  / /<  /a eO * 0- (HgQg`|@| E,l'"|  NJ@f(//,!Hx /,!a 	fO ?@ rAf |K EN o 0$h/@ ("
g E"o 0"i"NJ@g  o 0!E" 
g J,l'N Yg E,l'N*@Jg  Jf& MCD,lPN^Jf|` MC"N^Jf| l"a 6fA ha A h"$,lLv2NHo hHzHo >a O `"*l!a / Ho :// 0//a O ?@ po fNJg ,l'N`A h,l'N @$H g`(// (/,!Hx /,!a 0O JVp ?@ po f l",a 5 o 0!J SfX`
 Ka ?@ po f",lLtN* gpo f",lLN( G$`*l!a (/ //a O ?@ po f K"J,l'NJ@gpo f&/HzHo pa `"A t"o pa %VO ?@  SfJg",lLN"N0/ Ll Nu 0H/&. *H/I $xA C (f`
A (a 
8  S@fA (",lLtN, gA (a ?@  "SAf  ",lLN.* g`"N EC ($l( ,l'N",lLNA C pa 8 S@f^  Jo  fA (Ca "A ("o Tp a $b`4"N$  FC$l( ,l'N",lLN;|  ",lLN0Ld 0NuYOH6*H/I ~ |G  Ka 3`$$l# a / //
//// ,a &O < ~  S@f Ka Jf,lLN|. rlҁfp@f
Jf  0LlXONu/ h g,l'N,_NuYOH*H| S@f@- f&/-2/-./-*/-&/,!Hx /,!a jO , JFg|	`|
 @| UJf(`$ m fJf`1F  PJf f UJf*H fL @XONuH$," $I*Hz*  fp
@fa //   J"M$o NXO: 0L$`Nu" 0H   dJ@0; N   > >    & > , 2 > 8 ,"tNu ,"hNu ,"TNu ,"LNu ,",Nu ,#Nu ,"4NuA NuQOH%6. &I*HzA a 2NJ Vf&E ` Ja J:  S@f"
,lLtN'@ Vg S@f :"+ V,lLN$ A // ,"H Kp a XXO: S@f   k fJf$H g  0Ha  @a 1`   RJf0* (H/H  JgbQg`rp
@f*  *fN-  f j fJf g80H/+ Z// , M"Ja PO: S@f20H/+ Z// ,"+ V M"Ja ZPO`/+ Z + V J"M,o ,NXO:  S@g5|  "J,lHNBB + V J"k Zra ,$o (a :VPOJ@fz JEg 
f 0",lLNA VC Zpa ~a :(J@fz a 1^0LlPONu H6. *HzpA"<  a /@ (g H"A  p "U/H $Jf&I` f"+ V,lLN,  k Za 0p k fJf ` z0* (gQ@f A r"o (pa : S@fA "o (a  S@f  x pj (f p
@fA ",lLNJg  xJDftpj (fN-  f j fJf g80H/+ Z// ( M"Ja jPO: S@f:0H/+ Z// ("+ V M"Ja PO`*  f/+ Z + V J"M,o (NXO: a 8J@fz  S@g5|  BB + V"+  J"k Za PO RJf$HJEg 
f ",lLNJEgA VC Zp a  SJf&HJEg f  o (pAa 0Ll NuH. *HH C"q NJ@g00H Ma < a /0H_gSg
` Ma  `
0H Ma *L NuYOH 6*H/I ,l'pN&@Jg  /
 l-T"k $EN$_Jgb$k $P MN|%@ $k $  o ,l'N|%@  l-T"K,l'p@NJg$/
B l-T"K$ONO  _Jg,l'N` KNLl XONuNqN  s|N  rN  qN  sN  rNN  rN pa/*H+|  d - a J@g  UJf g ( Va J@g+|  `d*_Nu  H!. *H   o~HG"-dlo"   m  
 m jV䀲lp `d.,lHrN("-h$ cm ЂЀ灲lp `4 rЁra t"@Jg A  @#@ #G  -lЇrЁ+@l 	L`NuH4. &I*H|E 0@ gA 4"H Ja <  S@f&0@ gpm *@r 2 p 0- P JAa .<  S@f0@ 	g J"m @a <  S@f" J"Kpa S@WDH,JFg
A "Ka p@f  0L,NuQOH36/I $|&H/H  `zM'^ V.$^`($m  &l"a ٜ o  / Hh /a "O , &o   S@f"+ b$
&,lLNОf o $ (l r!@la +R Ma da 5J@f|  S@f
*k V f x0LlPONuH"6*I/H |J Vfp` G J bf *$oA "Kfp%@ 2- *
A p 0%@ t m V (   mpz$ p 0V@ h C ,lHNp 0B7p 0$oBHx /<  /
/<  / /<  Ho 8/<  /a XhO (+@ H-   g$ o( g``/
/ o"o  pa %rPO<  S@fB-  f: K"Jp a S@g`*,lLN|$ $l"a 
/ //
////$a O <  S@f",lL$<  N+@ bg S@f K`Aa *&$o Ja ) S@g  `z M"Ja < S@gB  "- b,lLNB b//,#a POJ@gF Ka @WDHHSf2   `*-  g""- b,lLNB bp 0* M"oa <  Ma a 2J@f| 0LlDNuH#6*H|J ^gp`  pA"<  a `&@Jg  E `` Ja j<  S@f"$,lLNJg S@f< + oA "Ka `@",lLN/,"/
/,"a &jO , S@g  ~  S@f"
,lLtN. f KpAa +G ^0LlNuH76.H $z*H/H (-  gp` j m nJ f D` >E pk (f   g   Ka : S@f J ^f  `*l"a / /
/a xO *  S@f"
,lLN, g*o ( S@f\",lLN| p 0/ & K"o ,a .` Ja $:  S@f"
,lLtN, gtk /- b/- ^ Kp ra PO7B  '@ ^J ^gdJ bf^ m bC 0fA 0"$
,lLv FNA 0a P'@ bf0`,J ^f("lH i"( ,lLN'@ ^ m ba "'@ bfz  k J f&HJEg gJk (f   0LlNuYOH6,. &I*H+  gp` "+ ^,lLN* p 0-r 2- KTR   +H+H,  / ?Q"o (a *8 S@f  k fJ f$H` x RJ f/H  Jj (fx* g0J bg*"* b,lLNB bA a ^8 S@f   `  + g- g J Vg/// , K"Ja PO8 `  *  f  ` pj g|+  fC ^M b I"Np a   J ^gTJ VgA a &// ( M"Jpr a XO8 *  g,a & * Vg
" ,lLNB V * Zg @a B Z@x  S@gBmpj gl*  g*  fpj  @ 5@ /+ b/+ ^ + V" J"k Za PO* f,*  g- f"J,lHNBp /  Jra rPO$o  JDg 
f f",lLN+  g - gJFgA ^C bpa   0LlXONuH6*H~ l#a $pA"<  a &@Jgd UJ f6`2 j ba $rmWD HH/"*  M"JAa ~XO>  RJ f$HJGg 
f KpAa ,lHrN(+@hBl0LlNuYOH36*I|/H   - fa "o ("fp`r Q.( B  Q$h `& S$h  &l#a Ѿ/ Hm /a HO , &o ( S@f"- ^$
&,lLN֞f S (  f o  a #~a ->J@f| 0LlXONuQOH!6&I*H~A r/H `$l#a J/ // /
a O . $o  S@f"
,lL$<  N'@ ^g S@f   Ja #l 'k , fA V$H/H `t/
 M"Ka XO> HRgUg*`,Jlf~ ` Ma 8>  l#a " o a #$o `2$R`.p7@ J bg 7@  Ka  -l  ,Ы f+@lBm S@fJ fg
+  g x"+ ^,lLNB ^pk  @ 7@ `  0LlPONu0H?6*Iz/H 0- f&H0<kfp` ,pA"<  a l/@ ,g "- ^,lLN.  m fJ f$H`  RJ f/H (0* (rAf 0* (g Q@f "`   o , ( kp@p ( *  g8"- V,lLN,  KC4fA rC pa : A4"Kf"N S@f  QDf  pj (fx o 0( gL ",lLtN%@ ^g   m bC 4fA 4"$,lLv FNA 4a %@ bf  `z"- ^,lLN%@ ^ m ba  %@ bf^`Z// ,/
 o 8"Mpa PO:  S@f@*  f8G  K"o ,p a S@g ` "- ^,lLN%@ ^ m ba  %@ bfz &o 0 U@g*  g>*  fpj  @ 5@ "J,lHNBB - V J"m Zra POBkz`Jj (f $o (JEg 
g0<kf $ o ,pAa |",lLN0Ll0NuYOH'6*I/H  ~ |zG rJ Zf ` Ka @:  S@f",lLtN. g$o   S@f hJg Ka  < @a +@ Z+G V`.- V",lLN$ pm A /- Z"H Mpa  *XO: S@f   - ^a J@g* g J"Ma : g   l#a N m fJ f$H`   RJ f&HJj (f o  "Ja : S@f*| `&- g o  ( g  o  "Ja :  S@fJFg*  f  *  g6*  fpj  @ 5@ "J   H   >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !                                               
  	                            d  ?,lHNBB - V J"m Zra PO$Ka (,J@fz JEg 
f L$o  -  g* f  a `",lLN`  p;@ p@gBjpm  @ ;@ 0LlXONu4H26*I/H  | m Zp:a  @C $f&oTE rA $"$
,lLv FN Ba "- ^N& A /H `D,lLN|r4Ff//X/ o ("Mpa PO< `&l"a t/ /- b/
/a 8O , &oT S@fA $"$/ ,lLNJg",lLNp@f2<k A7A `7@ 0LlL4NuH3*H&I. /@ /I   k ZC $fA r$C $"	,lLv@N "+ ^a G J@g"$v `
A $$"vND" g(A C pa >< S@fA $a +@ D  *@|0LhNuYOH%6&o $*I/H zE r Ja ` Ja :  S@f"
,lLtN. g"- ^,lLN$ `B,lLN|r4Ff// (/ o $"Mpa ZPO: `$l"a / Hk /
a O *  S@f  K"Ma R@g",lLNJg"Np@f2< k A7A `7@ 0LlXONuYOH6,. *I/H z m fJ f&H`   SJ f$H"o M B/Hi Hk r// 4a 
O : S@fNJFgJA rC ,lPN^Jf6+  fpk  @ 7@ "K,lHNBB - V" K"m Za PO U@fz&JJEg f p0LlXONu <H/6| z*H/H 4p f* Ma &@ @C A/H ( I"o (a n7| B ` >pA"<  a /@ (g (tmWDH?A ,,lHrN(+@hBl;|  b Ma ,lLr N.  m a  UJ f*H` J UJ f/H . m Za "- V,lLNJDg"- VN+@ ^ m Z`"* N+@ ^ j a +@ b*  g - Vg"* a J@gx`x`8*Jo ,gA/,"  - "Mra `6* g2 g&l"` g&l"`&l"A/ - "Mr a XO:  g   l#$a JFf* g o
a Jg| m fJ f:`6// (/ J"Ma : . b/- ^ - V"-  K"m Za O  SJ f&HJEg f,lLr N"M,lHN Mp " a `  g   - V"* a J@g   l# a JFf* g o
a Jg| m fJ f:`6// (/ J"Ma h: . b/- ^ - V"-  K"m Za O  SJ f&HJEg f,lLr NA VC Zpa 2"M,lHN Mp " a `   S@f JFf* g
a hJg| l#a  - ^a PJ@g J"Ma : g   m fJ f*H`   UJ f$H0- (gQ@f8A r"o (pa : S@f$G  KC :fA "o (a ^A :"Kf S@f&o 4Jm (f
 K"Ma ` K"Ma l: -  g@-  fpm  @ ;@ "M,lHNBB o d ( V"(  M"o d"i Za  PO*JJEg f > o \  *o ./M \8/ ,$o 4JEg f  o (pAa J",lLNJEg Ja : JEgHJDfD* g<Jjf/,#(a XO: JEg& Ja * l"4a  j a AHa  Jp
a a Ll <NuN pa H"6"/ @&o <*o 8poЀg
p F f $-  gF- g8A pk * @ r 2 0< k P @  @  @@ t 4  "a < ` |` AC ,""/l$@ ,AE  $Bp$- Wr  B/,-T/<  Hm/<  	Ho @/<  Ho 4/<  //<  /,$</<   o xC |,l'$ON4O 4, U@f<A pk * @ r 2 0< k P @  @  @@ t 4  "a  <  `H Y@f|`>B`8B/,-T/<  Hx /<  /,#|/<   o `C d,l'$ON4O @0LlD Nu #?*:/()[]|~^" :/()[]|~^"  %s. ~.info  ~ T:Version%lx  Version >%s "%s" FULL FILE H4$o &I*HA  C f."  A"J@SdB2x L,Nu HH06*o d$I/H /I "A @$,lLv N"
A  $NA @p~F a Jf Bp~F a Jgp `  A @p@Ѐa n&@ Bp@Ѐa b$@ gZ 
gVA p@Ѐa LJfA p@Ѐa <Jgp `F/A D"Ka "A @. B"Ja XOA $"/ N: ` f 
gp ` pLl HNu <H6$o \&o X*I/H CfM @,,Ab/H L g/l" @+  Vr  /A HAN/H L// HzNHo  a LO  gA @@/
BHx /<  Hx /<  Hx /<  Hx/<  Hx /<  Hx /<  // /<  // /<  // /<  //<  /,"|/<  // t/<  /,#x/<  Ho /<  Ho /<  	//<   J"o ,l'$ON4O  _. Sf2 g./ M"o Xa XOJ@g/ Kg  `$l"B ``  Ll <Nu"o  o Ho // // // a O NuH$$o *H IJfS, MJfS0H"HA  "HJfS 	HJAk0H"J@SdB2 L$@Nu H#6$o &o *o ~|  KC |f o C \f 
g 6* f Ho // /
Ho h MC a O . `  * g  A "$,lLN4J@g  Ho | B"Ja A @C "fA "C a DXO*  gA a 9A `"HA a $pA C \QB/ zA "HJfS 	rcj//,"/
Ho hHo /a O . `N BC |f o C \fHj  /
C /	/,"/
Ho p/	/a DO  . `*  gA \a 8| S@f&JFg `Ho // BHo h MC a O .  S@f0A \"HJfS 	g"KfJ ff~`A \"o f0Ll Nu H.&I*H< ?@ 0< r A Q0H MC a < S@fJ0/ <HB/ /<  /a =0/@ lA ,C f?|  ./A (p ra A 0a FO 0L( Nu H+6. *HBo x| E /I  `&l$Xa H/ /
/a O (  S@f"
,lLtN, fN|r2FfJg",lLN| p@g0` z0< r A &Q JC fA a J@gA Ca `*A Ca `&l$\a / Ho /
/a O (  S@f A ",lLtN, fN|r2FfJg  ",lLNA C .pa 8 S@f|A .C f`,,lLN|$ &l#a / Ho //Ho 6/a bO 8  S@fA a ,Jg S@f*?|  ?|  `&l!a r/ Ho /
/a 6O (  S@f"
A $,lLNJg"o SDf"A pa `Jo g/	/A .p ra POA .a LpLl Nu xH3&H/@ " ,lLN.  lH/(HzZHo ,a H.Ho 0HzVHo Xa 6O BA H"$NO JfdA $"$<  N, gP"A E$v2NJg4A D"HJfS 	rAoHG Cp
fB@ DA Da 
*@",lLNA $"N"N f l$LC Ef| 
 DA Da 
X*@ Lh xNu H'6./ *o B ||B xE  o  ( kp@p &o 2+ (@g G 8A/H  ( gfC P"	$,lLN4J@gPHo  B"o $a &o $A @C 2fA 2C a A `"HA 2a XOpA .C QB/ ` o PC f"o P/I (M f/l" d/l" hB l- g {- bg  {C<M X,Bp,- bgG A |/H |p@Wr   H0H/
B//<  / /<  //<  //<  Hx/<  Hx /<  Hx /<  Hz/<  Hz/<  // /<  //<  /,"|/<  /,$`/<  Ho /<  	Ho /<  Ho /<  /,"/<  /,-T/<  "J op,l'$ON4O $_* ]@f- bf
 b` JEg2/ {g ` /  {g b0@c` b ]@f`HmA C a XOJ@g> o  ( f>A "HJfS 	r c"o (f- bg b`z`/l" ؕ` b0Ll Nu H#6*o /I  ~| C /H M hf o &H+ g  A E "$
,lLN4J@g  Ho  B"Ka BA @C *fA *C a lA `"HA *a ^XOpA &"JQB- &A &"HJfS 	rcJ//,"B// /// 4// 4a |O > `*Hk  ///,"B// /// <// <a TO $> @| ]@fJFg *A "HJfS 	g A "HA h,lPN^Jg m na NB n0Ll Nu DH4. &o \*H$o `/I - bg4J-cg.+  f&p-cf/
/ Ma z` z -c  `  * kp@p * 0+ (Efp@f  2A g   Q@VrM  A!"p 0@ r 2 UgUg.YgV` /	Hk /,"Hx 8// p/// ,/a 2O  `  /	"o /) bHk /,"Hx 8// t//	/a O $`  /	Hk /,"Hx 8// p/// ,/a O  `  A$H"o ` /H T IC a 1A 4C 6a 0 + jg"/@ TJ nfA "o  ) ^a '@ n$k nQGfp@p "  Q@f // THo :/+ ,/
Ho ("o t/) |Hk /,# //	/// @/a @O 4:  ]@f-  ag// `/ M"o a PO: 0L, DNuH'6. $o $&I*Hp 0// (/
 M"Ka PO< H d @0; N     0 p   z `  z b- g  m`   * jg @a A r + Va %@ j * ng @a A  + ^a p%@ nB-c`  - bg0< m@;@ bA 4"o ( "$	,lLNJkpj `@  z`8  - bg bmz`z`- bg b  z W@g 0LlNuH'6. $o $&I*H| o ( ( kr@r 4* (Agr@`r 2-* 
g:2Af2Jj/+ b + ^ M"Ja XOrAg  p 0/J $ M"KLl` L g&A 4"o ( "$	,lLNJk8pj |`4 g
pj |`$ 	gp 0// (/
 M"Ka PO< `   S@f>- g6*  g./+ b + ^ M"Ja XO< S@gp 0// (/
 M"Ka PO< 0LlNuQOH6. *o (/H &I$o ,/I  "+ V,lLN, A rC pa : "N`p 0/
/ o $"Ka PO:  S@f-  fA "Jp a 2S@g S@fb-  gZG  K"Jp a S@fH`*,lLN|, $l#a {/ //
//// 0a O :  S@f
 Ka zJgp@f 0LlPONu H :/J I  ( /H /I "ff"lH i$h X* gfN j pa l&@Jg>7|  "lH i"( ,lLN'@ A'H  l'"K,lHNRj  Ja p@ L\  Nu H"A`E $Bp$B/,-T/<  Ho /<  Hx /<  /,#/<   o HC L,l'$ON4O $. W@f~0HLD NuN  N  "lH i"h X ) Nu  H#,. *HC220/ 22/ 24@SB24ASB2HUr 2/  lPNv"<  Nj;@ L Nu H1&I*H2+ HUt 4 ?@ *  lPNv"<  Nj. 0+ @g|@o,"M,l'pN0+ H2HҀ0+ H4H6HւS`("M,l'pN0H2HҀ0+ H4+ H6Hւ4+ 
H/@  /B $$"M"/ &/ $N7G Lh Nu H0&I*HJk g:"M,l'pN0H2+ H4+ H6HւS4+ 
H/B  $"M&/  N"M,l'pN0+ H2HҀ0+ H4+ H6+ 
H/@  "M"/ NLh Nu/*Ha D"-l @!A . -d!@ 2b
"( .R!A 2p*_` "H *Ha  @G 6 K"MfJ fg
fpa L( Nu/*Ha  @C^fp*_` H0*Ha  @G  gJg"$,lLvN@Bpa  LhNuH0*Ha   @G ^ gJg"$,lLvN@Bpa p LhNu/*Ha Z @C ^fp*_` N/a B @C "	,lLN @Bp,_` ,/a   @C ^"	,lLN @Bp,_` 
H a *@"@ Q g00( H+@0( H+@,l'NB"lH i"h X  g - g @,l'NB L` Nu H76*/ @,. &I*H"M,l'pN Tr  l((2( ҆"MN KJfS$Y/H $/ K"M / (E 4r&<  NH _r 2  "MN"Mp N0- $HޅSr  l((2( ҆/A ,$"M"&/ ,NLl NuYOH68 ?@ "a *@ @&P g 
/,l'*k |Nr*_J@g  mBm.- ,- *-  g  - ."- 2a 'A  r 2  "H k 2a   g&/BHm 6/< "K m ,l'ȕ&ONO &_ gA ^/"H " k 2a XO g$A p "l((0) "ҀR/"H  k 2a zXO g*A^p "l((0) R" ҁ Ё/"H" k 2Aa JXO/,l'*k |NJ _`mLTR   , , ,   VlXONu <H?6B `a *@"@ Q g `  l((0( H@B@H@. އހA `,l'N/@ 0fp `  l((0( H@B@H@" Ҁ X+@ ,p܀G-R2Ht 4( 6Hx 8R ЀЄ8H/A ,2,-RH/B 4 l( ( HHԁԇԄԀԃԯ 4ԯ ,*\,lH"n,i X.  gg/m \/m X`V jR2,-RH( HH6( HÖS/C \"l((0) H@B@H@" 灒jR0( H ]Ё]/@ X/
 "C \,l'E `NX _BHx /<  /,( /<  y/,#/<  n// |/<  l/<  /<  k/<  `/<  j//<  u//<  t//<  s//<  r//<  g//<  f// /<  e// /<  d,l'"ONO t&@Jf o `,l'Np ` $k 2 J/H ,l '-Lm J,l'pN"M 6HH\+@ C-R0H2HHHԁԇԀT+B 0Hr  l((2( R$Ԃԁ2,-RH6,-RHHH؃؇؁؂؀V+D  Ka &"J l((,l'N+ 6HHXM :<0,-RH+ 7HHҀ< l((0( " A@<< l#,p_a `Jgr  @(  ,lPNR@!A( M F,< p,,-H/
BHx _/< @ o @C J,l'p$ONO  _$@M :0C >QX@< l((2( 4AUB?B <H2( $BAH+ 8HH6+ HÖQ20( X@2A\""o ,,l'p NA :0H2H4H6/ :HւS4/ @H8/ <H؂S$&"o ,N/
BHx /< JHx /< 9 JC R,l'p$ONO  _$@+@  l((0( " A@M ><<H+ 8HH6+ HÖY?C :2,-RH+ 7HHԁ?B < l#,p_a Jgr  @(  ,lPNR@!?|  J/
BHx _/< @ JC J,l'p$ONO $_+@ f o `,l'Np ` L o `+H "lH i"h X)  gg
 m    m    /
 o d"K,l'pNP _ K,l'ȓN+ 6HHX2,-RH4,-RH+ 7HHւևց"- Xt  l((4( R(؄؂V$o ,BHx /< 3/,-H/< 4//// /
a #"+ 6HHX"- Xt  l((4( BHx /< 3/,-H/< 4///- / /
a "O LE  + 6HH\H"- RH$- H l((6( UCHB// Ja  o 8"Ja 
*pa O  Ll <NuH&. $I*H,l'NJGg  `   M"J,l'p N J"MpNPLdNu H/6za z @&P/K 0,lH"n$i X,j `/@ (/I ,"gr . t @t . g k Vp ( r @r p dg*  gfJg
 ,lHNJ `g `  pm f  *  gf  ,-  g  g g  g g  g g  ga  g*  gga &@p d g  g g K"o ("i pa  g l'"o ,#h    g*  gg  g`a &@"M,lHN j `,lHN*@Jf ./K 0`  &m ,- 8- "M,l'Nr@g    g    f  p 0,lPNRx  p ,!r 2fxPp ,!r 2fxSp 0rgr5gWf  z   g`|*  gWr  (JDg  g`  g o 0 gT0H"o ("i a `Bp 0+ &SgSg`2z   g`(+  g  g`  g`*  gfa ,B 0&o 0 g k V,l'N*@Jf p df 0Ll Nu/"lH i*h Xpn"<  a  4+@ *_Nu"lH i"h X i pn`   h  g"P@ 	NuN  N  H,. *Hpra &@Jfp ` Ma v'@ 
fp `
'G 7F  L(NuRWED  Volume  Assign    /*H - 
g @a . Mp*_` H *H@a M,lHN @JfL` Nu/a ^ @JWt 0$NuYOH96. *I&h 2/H  "K,l'pNJg  "l( i p 0( "KNp E@"K JpNH2- HjR0- HЁr  l((2( t 4( 6- 
HÖjR4- Hԃԁ""KN"l( i p 0( "K JN`@"Kp NE 0HT2HR4H6- HւW4- 
H8- H؂U$&"KNE 0H2H4H6- 
HB/,-H/< 4 K,l'"ONO LlXONuH4. $o &I*H| `H  s  gp 2` "H Ma RFp 2HmL,NuYOH4. $o &I*H| `Pp H r f>p r  o  0  R?@  r lPNj"o  0/   p  M"KL,X` 8ReL,XONuH/ / ,. x `0r 4AgHr RDp 2HmL NuH#6. &I*H| 0r 4AVp H"H 0B/ /<  s "M,l'&ONO L RFp@mLlNuH6&I*Hz J@WDHHH H 0B//<  s "M,l'&ONO L REp@mLl`NuH?6BB8B<B <Bo~ "l((>) ?@ 2?A 6/H 8A,l'NADNM#K!***0< r A @Qp	A^QpApQ*o 8p 0- Hx 
Abra p 0- Hx 
Afra tM 0" IA @@ A<2$JB AA B;A r 2 Hx  A|ra 2p 0- Hx Ara O A,l'N$@Jg . l( ( HHЇr	Ё/@P?@A( /H/l-HJo 2g Lp r­ ?@?A-  Vr  ?A, (Vr  ?A MC @f-  gA hC pa -   gA tC a /m `T/m dXp/@?| dK: P X:*#?| p 0//
B/ /< Hl!/<  JCp$ONO $_*@Jg /M0/o@ ?@/l#?| p 0/ro 6t 4/
B//< / /< Hl!/<  MCp$ONO $_*@/@g ^/M0/oX@?@po 2f  ?| d?|     np?@p/@/l#?| 2/H/
BHx /< D//<  MC$ONO $_*@Jg /M80/oT@?@/l% ?| 0/H/
BHx /< D/ /< Hx /<  MCp$ONO $_*@/@g |/M<0/oX@?@?| d?|  \?@p/@| K#E @A/H Z?@/U/
B/
/< -Hx 0/< . oC,l'p$ONO $_/@g  o 0/oT@?@RX 0/Hpm| K#z $o P?@/UAT/
B/0X /< /Hx 
/< 0 JC,l'p$ONO $_$@Jg A(!X 0/oT@?@RXXpm0/HЇX?@?| K: 4 X:*#?| r/A?@ (/
B JC,l'p$ONO $_*@Jg 0/oX@?@?| ,A/H?| /
B MCp$ONO $_$@Jg 0/oP@?@?| ?| 
BBB | K JnJo 2g8/
B JC,l'p $ONO $_$@Jg h*   5|  pj poRXp
mK0oHЇ\:?| : 4: (*#?| p/@/
B JC,l'p$ONO $_*@Jg 0/oX@?@?| ,A/H?| /
B MCp$ONO $_$@Jg 0/o@ ?@?| ?| BB| K /
B JC,l'p $ONO $_$@Jg `*   5|  pj popfpoRXpm/J0/H2/HҀ,\Jo 2g J'g ,l'N* `L E,l'N*@ @C,lPN^Jg. MCN^Jg   Mr a *@Jg A"M,lHN
 E,l'N* f$o 8?j z `6(*  D,l'Nr 2*  @ a :*@Jg rAD"M,lHN
R\p 0/ĺmK\]0MVH"/P<:: p,#?| p/@/
BHx /<Ho/<  oC,l'$ONO $_*@Jg     npR" ҁ0- 
H$/PԀR/BPpo r
jR‑PC0AX@ 
20H"/PY0 #?| /
BHx /<HoT/<  MCp$ONO $_*@Jg T/Mx0- 
o?o (?| RB/
BHx /< 9 MCp$ONO $_*@Jg /M|C0H/@@0oU@2?|  /l#?| p/@/
B MCp$ONO $_/@g  /@?@ /P?@    np?@?| p/@z K#Eh/U rЁ?@/
BHx /< DHx /<  oC,l'p$ONO $_/@g >$0/oR@?@RXpm*<  `zF?F?o (r/A?| F?| /l#?| /
B oC,l'p$ONO $_*@Jg 0/H"Q?A/l$ ?| /
B MCp$ONO $_*@Jg 0/jR@@H2/H l( 4( H/B@0/HPjR?@/l$?| /
B MCp$ONO $_Jg .0/H2/HҀ,X0/jR@@H2/H l( 4( H/BP/
 "CD,l'ETNX$_0/ 2HBHx /<  /,( /<  pA#/0 /<  n//4/<  l/< /<  k/< `x/<  j//<  g//<  f///<  d///<  e,l'"ONO T&@/@ *g T K,l'ȓN"k 2 l((,l'N"l( i p 0( "k 2N o p "l((0) 2( HҀU"k 2pN*l$ MJfS "k 2 MN| A /H o*P gZE,"k 2 J,l'pNH2- HjR0- HЁr  l((2( 4- HԁU""k 2N"k 2 JpNRXp
mHo^ KC p
a XO"k 2 l((,l'N"l( i p 0( "k 2Np  l((0(  o 2( HҀU"k 2pN*l% MJfS "k 2 MN| A /H o*XE7/H"k 2 J,l'pNH2- HjR0- HЁr  l((2( 4- HԁU""k 2N"k 2 JpNRpmHop KC pa XOJo 2g /
 o "K,l'N2$_`  k V,lHN` .- 0- $m ?@ ("M,l'N r g xr g    g  g` Bo?| ` p 0/ (,lPNRr  p	g(Ygpf dBo?| ` Vp?@?@` HJo 2g @/
 o "K,l'N2$_` (p 0* &Sm    l @0; N bp~Lh , H :p?@?@` Bo?| ` Jo 2g  0< r A @Q/AX/ATBoBopo 2fBo`p?@?@Hx 
Ab <  a Hx Axp F r a POp 0/H 0B/ /< "K o,l'ȕ&ONO L p 0/H 0B/ /< "K o&ONO L *o8 g"H 0BB/< "K M&ONO L *o< g"H 0BB/< "K M&ONO L ~ KH 0BHz/< -"K U,l'&ONO L RXpm K`*H 0BB/< /"K U,l'ȕ&ONO L RXpmJ'g   KChp a   KChp a LH 0BHz/< "K o,l'ȕ&ONO L H 0BB/< "K o&ONO L ADa TB <Bo`&Hx 
Abp F ra FHx Axp F ra 4POHo^ KC p
a pHot KC pa `` j?o (` b?o (` X*  Vr  ?A` D*  Vr  ?A` 0 j ""PM @f` K p fK  j ""P,Mf Ma J@f  MCa zJ@g4A"Ma H 0B//< - J"K,l'ȕ&ONO L ` /
 J"K,l'N2$_`  j "/h T`  j "/h X` Hx 
Ab <  r a Hob KC p
a R` \p /gRr lPNjp Hx 
AbrAa Hob KC p
a ` "Hx Atp F r a Hot KC pa ` p/pgHx Atp F ra `Hx Atp F ra rXOHop KC pa XO` p 0/ (Aa 
*@Jg o e/,$a hXO` &m 
AD"K,lHN$@Jf| -  Kr a $@Jgj*o *H 0BHx/<  o"M,l'ȕ&ONO L AD"J,lHN
H 0BHoP/<  o"M,l'ȕ&ONO L Ro 
g *o *H 0B//<  o"M,l'ȕ&ONO L J <f MChpa p 0*  MCha /J <` p 0/ (ADa 	*@Jg H 0B/- 
/< "K o,l'ȕ&ONO L J <f KChpa p 0-  KCha /M <` 2*o < g ( KChp a  KChp a FH 0BHz~/< "K o,l'ȕ&ONO L $oxH 0BHx/<  J"K&ONO L "M,lHNH 0BHoP/<  J"K,l'ȕ&ONO L  Ma  B <So`z*o < gr*  g   `b   `Z*o < gR*  g  `B  `:p 0* &r
gWg`(Ho^Ho  K"Jp
a J`HopHo  K"Jpa 6PO&o * k V,l'N*@Jf Jog Jog 2$o 80< r  JQJo 2g `A pa lJ@f4A h"HA pa 0J@f/
 o$"K,l'N2$_Bo`   A a ,J@f4A t"HA a J@f/
 o("K,l'N2$_Bo`    A @a J@f"A @"JfA 0$"
,lLv0N:   /TfJXg%@ `%oX d  po 2fJog  Jog  p 0/r 2/$* %B J'gTJogN~ *oDA /H`0R MC ,o,<\*o 8(   g  `  *J$U 
f$o 85G Bj Bj ~ A^C 	p SgSg`2 r t 4* 5B   ` r t 4* 5B   Rp
mBj Bj ~ ApC p SgSg`2 r t 4* 5B   ` r t 4* 5B    RpmJofJof Aa (ADa   g
 K,l'N /g
 @,l'N o 8M 0" IA @@ A<0" IA @@ A1@ 0/LlNuNqN  qpaH *H&@A p "M@Sdp B5  L( NuUU00:00:00  /*H@Rgr g *_Nu"HJfS  IBSep gNuH *H`p ,lPNLJfL` NuH *Hap ,lPNRL` Nu pH6*I~ pr C hQC fA a d&@$@ @Jg|/J z@Rgr fJgA Ba :&@Jg/K ~A h",lL`$A h",lLNJg~`B z/J ~A h"N. JGgA h***` l( ,l'N0Ll pNu 0H 6$o D&IC $"""K 0B BA /H 6/J :A $",lLNJf l$(fAzf`A a v @"Kf Ka Ll  0Nu /&IHo a ~ KJfS r 2    r 2 C A fXO&_ NuYOH . g>lJn0<`0z `އREp@l?opEH/@   lPNj"/ L XONu H *Hpr A Q/M /I A ,l'NL`  NuH,. *HJo &Vr ҁ"l( i p 00 "M,l'N*گ  S"M "N"M "N
(د S"M "N
Jo &Wr ҁ"l( i p 00 "MN"M "N
 R"M"N
L`NuH,. *H"M / $,l'N*گ  S"M "N"M "N
(د S"M "N
"M "N
 R"M"N
L`NuH?(/ 4*/ 0,/ ,./ (*o $"M,l'p N"MpN$ԇS&ֆS"M "N M "$&C 8,l'NL`NuYOH0$& *HA C "A +H |  "l( i p 0( "M,l'N"Mp N"M "$/ &/ NB B- L`XONuH8K 6HHHHHH6( HÖS( 9HH8( 
HĘS// h 2a ZPOL NuYOH% $/ ."/ *텚څ煴d r} lPNd` r} lPNdڀ L XONuH 6&I*H SJf g>"m J fE  	g"!I "k ""k +I `"K,M,,,!M  k  Ll NuYOH" | "P/H Jf*I`Ff `RF UJf*H fp L @XONu/ o  ,'gC ,@N@p ,_NuH 
 o I    ,l'NLP Nu H3>*I/J 4I    $o 4   f /
 h "M,lPN$_&m  m "h 2- 
4* 6* /@ 8p 0) ?A &/I *"K,l'N0/ &r 2 .S"K"pNp 0S"K"N
$o *p fp 0* "KNp 0, [p 0/ &. T"K "Np 0JjR& p 0r 2/ &Ҁ$W"K "N
p Wr  Ѐr 22  "KN"K "N"K"pN
 S"K"N
`/
 h "M,lPN _/@ 8 / 8TR   *D*D,  4YX-8L| Nu    frameiclass imageclass  buttongclass   H?. &I*H8p 0/ :t 4Ԁ&S2/ > "<   lPNjr 2 ?@ (p 0/ :?B $?C &mJo BgD0+ H"M,l'N| <z :Jo Bgp 0`p 0Sr 2/ 6t 4ԁS& "M "No (cL0+ H"M,l'N| <8/ $z :Jo Bgp 0`
0/ &r 2  r 2/ 6t 4ԁS& "M "NLh Nu H?>/J DI *I&H$o D/I @ g Sgz  f /
 k "M,lPN$_. p 0+  *m p 0"  M < N4p 0* "  M,lP < N5@ 0* H"  M,lP < N5@ ` |p f r Jp 0+  &m /H ."S,l'N S0* 
h , 2* p@^D H m "h *i :UE8* 2- H?@ , "K,l'Np 0" "KpNp 0r 2"KN
Fp 0" "KpNp 0r 2"KN
8* VD0/ ,2 VAt 42v 6: XEp 02[A~ >$o .r 2B///  " K"Ma |0/ <" AA 	p 02t 4v 6r 2* /A H2* H.// H//" K"Ma >O  S,l'N`B0- k$j l0- 
k m "h 2* 
i 
Alp`p `/
 k "M,lPN _.  L| Nu (H7>*I/J @I &H$o @/H <   g gr` p 0+  &J$m "+ x J,lP < YN'@ x J,lP < Xr N$@ 
g J"Kf JJfS 7@ |/
 o @ h "M,lP$o D` x Jp 0+  "H$m ,m &n 0- 
<( ?@ ,/I ("	g R"R,l'N - rWrҁ:3 [fp@p" ҁp 03 "J,l'Np 0"JN"JpN"J l(N"JN&o (" "J + xN. p 0+ |r 2[H 0"J K$E Lr&<  NHL & p  l(0( 2/ ,t 4ԀT""JpNp 0"J KNp 0"JNp 0S2* $H/@ (n:2* $Ht 4/ ,&R o @4( Hp 0/ ,ЂU/@ 6 ""J$/ (&/ 6N"J"p N R,l'N`/
 k "M,lPN _.  L| (Nu H &I*HI A`C p"Q SfBp f: k "h 0) H2* HҀ/A 0* 
H/@ BHo Hx/* a U2O /
 m "K,lPN _Lx  NuH"," p 0r 2BHx /< //< / /<  l!,l'$ONO LD@NuH " l!E ,l'NLD NuH " l!E ,l'NLD NuH " l!E ,l'NLD NuH "Cf,l'ȕp " NZ)@!gxA"@#H CN,l'ȕp~r NZ)@!gTAp"@#H C6,l'ȕpr NZ)@!g0A$"@#H C,l'ȕp " NZ)@!gAT"@#H pLD Nu/ ,!g
 @,l'N6 ,!g
 @,l'N6 ,!g
 @,l'N6 ,!g
 @,l'N6,_NuYO/*H/H J!f`R d MC&`a S*@Jf*_XONu BrowserII Request  rCopyRight  Sylvain Rougier & Pierre Carrette.
Icons & Graphics by Walter Drwald.
English version by S.R. & P.C. This program is ShareWare.
If you like it or use it, send $25 to:

Sylvain Rougier
39 rue Carnot
860 Poitiers
France

You will receive the latest registered version
without this automatic popup requester.
Don't forget to give us your actual
BrowserII and ROM/KickStart versions.  Registered to:   About BrowserII  DReally delete ALL marked files%s ?

%lD file(s) and  %lD drawer(s)  _Skip|_Cancel  Re_Select|_Resume  _Project|_Skip|_Cancel 	 "Error reading directory "%s"
%s. 
 "%s" is not a directory  FThere is  %lD Bytes  %lD Blocks selected
in  %lD files and  %lD dirs.  "Couldn't create icon for "%s"
%s.  No icon defined for %s  :Couldn't get icon for "%s"
File Type: "%s"
Icon: "%s"
%s.  Type of "%s" is unknown.  Couldn't set protect "%s"
%s.  "Couldn't set comment of "%s"
%s.  Couldn't set date "%s"
%s.  "Couldn't rename "%s" as "%s"
%s.  "%s" as "%s"  Couldn't relabel "%s"
%s.  $Can't create a dir in this window.  Couldn't create dir "%s"
%s.  Makedir(s).  Copy  Move  Link  
Duplicate  "Can't duplicate multiple volumes.  &Can't duplicate assigns nor volumes.  Adding Icon.   Can't add icon to assigns. ! Deleting. " 
and their icon (.info) # _Delete|_Cancel $ _Delete|Delete _All|_Cancel % Can't delete Volume. & Can't check size of Volumes. ' Setting Protection. ( Can't Protect Volumes. ) Setting Comment. * Set Comment. + Enter comment for "%s" . ,  _Ok | _All |_Skip|_Cancel - Can't comment Volumes. . Setting Date. / Set Date. 0 Can't set date Volumes. 1 Renaming. 2 Rename 3 As 4 Ca_pitalize 5 Filename too long: "%s" 6 @"%s" does not match "%s#?%s"
Enter new name or modify pattern. 7 ~For multiple rename, you may enter
patterns with one and only one
occurence of '#?' in both names.
Example: #?.c.bak -> #?.c 8 Relabel. 9 Volume name : $Select volumes in BrowserII window. ; Can't rename an assign. <  %lD Bytes  %lD Blocks = Reading Icon. > Really move files into
"%s" ? ? 2Cop_y|Copy _As|Make _Link
_Move|M_ove As|_Cancel @ Root directory
No parent. A Couldn't get parent dir
%s. B Open Dir. C $_Dir|_Tree|Tree with _files|_Cancel D &No child processes currently running. E Chip:%6lD  Other:%7lD F Really quit BrowserII ? G Select Window Font. H Select Screen Font. I Couldn't open "%s" %ld. J Couldn't save configuration. K Error writing "%s"
%s. L $Couldn't open "%s" for writing
%s. M A dir already exists N A file already exists O "Couldn't move "%s"
into "%s"
%s. P Couldn't create link "%s"
%s. Q J_Retry|Open _Dir|_Versions.|_Update
_Overwrite|New _Name|_Skip|_Cancel R _Backup replaced files S &Repeat action to _all existing files T FFile "%s" already exists
Old:  %lD Bytes  %s%s
New:  %lD Bytes  %s%s U 0File "%s" couldn't be copied
Delete bad copy ? V Writing. W Error reading "%s"
%s. X $Couldn't open "%s" for reading
%s. Y Reading. Z Reading dir. [ Couldn't delete "%s"
%s. \ 
Moving. ] Creating links. ^ :One or more file(s) not copied
Delete source(s) anyway ? _ Couldn't access "%s"
%s. ` ,%lD Bytes  %lD Blocks  %lD Entries selected a  %s %lD KBytes  %lD Blocks Free b 8%lD/%lD Bytes  %lD/%lD Blocks  %lD/%lD Entries selected c <%lD/%lD Files  %lD/%lD Dirs  %lD/%lD Bytes  %lD/%lD Blocks d $Can't move files into this window. e _Retry|_Cancel f &Couldn't delete bad copy of "%s"
%s. g 4File "%s" wasn't completly copied
Delete bad copy ? h 4Some hidden entries were selected
Continue anyway ? i Couldn't open window. j Couldn't create process.
%s. k &BrowserII: Attempting to load "%s". l 2Waiting for process replies. Cancel requesters. m Command line too long. n Run.  File Type: %s o Resume p  _Ok |_Cancel q _Yes|_No Way r  _Ok |_Skip|_Cancel s _Retry|_Skip|_Cancel t  _Retry|Open _Dir|_Skip|_Cancel u BrowserII Action status v _Stop w _Pause x Couldn't open screen. y "Close ALL visitor windows first! z Couldn't open main window. { Alien Window | Adjust Colors } (dir) ~ Requires %s V%ld or higher.  Set Protect.  Set Filters.  
Select.  Pattern  Since  Before  
Min size  
Max size  Exclude  & Subtypes  No  Yes  Match  Files  Dirs  Enter Subdirs  Clear   File Types  
Selected  DEL  Ok  Cancel  Reset  Protection:  Maximum reached.  Processes still running.  Scanning "%s" .  "With_out Icon|With _Icon|_Cancel  Select Public Screen.  "Couldn't find Public Screen
"%s".  Select Dir.  Invalid  Nobody  None  %lDK  %lDM  4_Retry|Override _Protection
_Open Dir|_Skip|_Cancel   Repeat to _all protected files  Path  Date  No version information  Directory(ies)  You can create several directories by separating
names with white spaces. If a directory name
include white spaces, you must use double quotes ".  Couldn't backup "%s"
%s.  "Couldn't backup "%s" to "%s"
%s.  Rename object to create  File _Infos  _Sort  
_Filters  
Auto_Zoom  
_Options  Size  
Position  
Alt. Size  Alt. Position  
Min Width  Min Height  
Max Width  Max Height  
Directory  Tree without files  Tree with files  Snapshot "%s" .  UnSnapshot "%s" .  HDefault for _Volume|Default for _Device
_Global Default|_Window|_Cancel  _Save|_Cancel  $Defaults, and Alien & Main windows  Device "%s"  Volume "%s" (%s)   Error reading snapshot file %s.  ^WARNING: Snapshoting window size may
be useless with auto-zoom option set.
Continue anyway ?   No defaults was set for window   No defaults was set for volume   No defaults was set for device  No global defaults was set  RSyntax error in shell args specification
Allowed chars within [] are: &, |, i, :.  File Manager  Default Public  Frontmost   Can't set an owner for volumes   Couldn't set owner of "%s"
%s.  Enter owner name for "%s" .  Set Owner.  Setting Owner.  Unknown user name "%s".  & Associated .info  Group/Others:  Select screen mode.  DRequires either asl.library v38
or reqtools.library v38 or higher.  Update Menus  Last Error  _E Execute.  Screen  Public Screen  Custom Screen  Workbench Colors  Custom Colors  Backdrop Pattern  Backdrop Image  Screen Font  Default Font  Custom Font  Window Font  Default Font  Custom Font  
Run Mode  RunBack  Shell  Request  
WBToFront  
Copy Mode  Context  Always Copy  Always Move  Link  As.  Request  Update  Don't overwrite files  Ask before overwrite  Backup replaced files  Copy Empty Dirs  Copy Hierarchy  Copy Flags  Clone  Dates  Protect  Comment  Device List   Devices (Volume)  Devices  Volumes (Device)  Mounted Volumes  Unmounted Volumes  Standard Assigns  Defered Assigns  Path Assigns  Volume Size 	 Volume Free Space 
 Volume Used Space  Volume % Used  _% Alternate  Zip Window  Options  Keep selected  Toggle selections  ASynchronous actions  Open process status window  &AutoCmds override icon's default tool  $Auto-select associated .info files  Use window font in requesters  Quiet CheckSize  Display directory disk usage  $Display proportion of visible data  Save Config  About  Quit  Window  
_S Rescan  Open  _P Open Parent   _O Open Dir. ! Open Alien " Open Status # _T Make Tree $ Zoom % UnZoom & 
Zoom All ' 
Zoom Dirs ( Taller ) Wider * Thiner + Show MaxSize , Show MinSize - Tree . 
Fold All / Unfold All 0 _? Select Match 1 _A Select All 2 Filters 3 
_F Set. 4 _. No .info 5 
_- Clear 6 
_/ Invert 7 
File Info 8 Size in Bytes 9 Size in Blocks : Protection ; Owner < Group = Date > Time ? 
File Type @ Comment A Link B Drawer Arrow C Drawer Jauge D Sort by E Name F Date G Size H Entry Type I 
File Type J 
AutoZoom K 
Zoom All L 
Zoom Dirs M Rescan N Update O New File Infos P Tree Folding Q Only 1 Column R Only if Zoomed S Options T Find Type by Name U TR   **,  Ax<=Find Type by Scan V Turbo Scan W Keep Window X Auto Iconify Y Auto Close Z Auto Disk Load [ Local Properties \ Properties ] _C Copy ^ 
_V Paste _ Affect Volume ` Affect All a _= Restore Prefs b _K Snapshot. c UnSnapshot. d Actions e _R Rename. f _M MakeDir. g _2 Duplicate. h Set Date. i Set Comment. j Set Protect. k Set Owner. l 
Add Icon m Check Size n _I Information. o 
_D Delete p  lD  locale.library  BrowserII.catalog %lD %ld H&K~" \A!! "Xp  A0\  pfC,lHp&N)@!gTBHx /<	 C,@$ONjO )@!gP~ HGBGHG K!p 0 l!"U,l!N*RGGpe` ~ HGBGHG A! p a تRGGpeLdNu/ ,!g l!,@N"N,lHNb,_Nu"HAJ!gA/ //	a ,O NuNqRl'0,'Nu: Snapshots-  PROGDIR:Snapshots Snapshots-#?  PROGDIR:Snapshots/Snapshots-%ld YOH *H/H p:a +J&@Jf&M KJfS r@Ё"<  a "@JgA >f 	L( XONu $H  @"( *A - (A a A C>a +A "HJfS 	r(Ё"<  a z&@Jfp `6A &C fA C """7|  a 7@ A ,l'N Lh  $Nu $H A 
a J@fp `PA 
"HJfS 	r(Ё"<  a *@Jfp `(A &C 
f;|  a r;@ A ,l'N L`  $Nu @H!6͗p
/H "C T$	,lLN,l'N$@/@ g "/ ,lL$<  N$g  J,l'N Jp NJf ` J <WSNP"<SNPHN J <WSNP"<WPPTN J <WSNP"<SLCTN J <WSNP"<WSTRN`  J,l'NR$@Jg  * SLCTg  g g   g `  f  * r4b  o C  ,l'NJo vo   b lp 0/ "JgSgSg` VJ Tf NK'p` FpЪ "<  a d*@Jg . j  B7A  * C  @SdA ,l'N / T;@ r 2,'n 9@'po "fA'"M,lHN
`  A'"M,lHN
`   g   *   4b  rЁ"<  a &@Jg  A "H o  * ,l'NJoz K SB( k  b(E +  g J"K,lHN`L J"K,lHN
`> Ka \`6 g2 g.Hk  o "Ja >` g gJ g/+  o "Ja XO$o  J,l'p N. g Rg// /,$a JPO$o  J,l'N",lLN J,l'NpLl @NuH+xA'x,l'NA'NA'NAd",lLtN. gb"N,  <  "<  a *@Jg4AD"$N`A a 8 g",lLNJg M <  a ",lLN"N0L`Nu/*H - g
 @pwЀa  M*_` YOH K @a M,lHN @JfL` XONuH `
 Ma Ma A',lHN*@Jf`
 Ma Ma A',lHN*@JfA'pL` ` H. *l(,`&pmVg m  g0( Gf0( Afp`*UJfp L Nu H*H~ |  l( ( HHR*?@ H?A Sm   l  @0; N  
 L \  l x l( 0( H ( `*o z ` @?@ H2Ha JJ@f|REJFfDmJFg`4?i  0) E. `$?i  0)  E. `0<> ?@ `Bo ><JGj~ 0/ ;@ 2;A ;@  ;A "L  Nu $H  @"( *A - (A 
a ®A 
C a $  l'J f2`.A &C 
fJ ffA p"MVg SJ f&H f L(  $Nu $/A a J@fp `0 l'J f `A &C fJ fg UJ f*H f *_ $NuQOH. &H/H /I  Ip:a #*@Jfp `6 k J f&`" + fA >"M,lPN^Jg SJ f&H f LhPONuYOH. "h /H Jf*I`$-  fp `  @ "- g UJ f*H f L XONuH &I*H"-   g&  g'm   g"m  	gA p: Q0 g'm "  g'm   o  g g1m * 1m ,  g g
0 &1m (  o  g g1m 2 1m 4  g g
0 .1m 0  g7m 6  g7m 8  g7m : g7m <L( NuH. &I*H a  @Jg "Ma N @Jg
"KL(` L(Nu H#4,. *I$HB ,B (B $A'pa v"t/@ Jg< a Jg @ a V/@ , a  &@Jg  Ka >/@ (  K"Ja /@ $ rg>p+@ p+@ p$+@  <  9+@  g +@ r΁g  *   `p	+@  o $o 4 g// 8/
"Ma PO o , g// 8/
"Ma PO o ( g// 8/
"Ma PO o $ g// 8/
"Ma POL, NuH$. $I*HJ f 
g j @0H"H Ma < 
gF*  .f>0-V2*V@f2A (C ($Hr@$Q4p 0-VHm  Hm "H"-d m a >` p 0-VA (Hm  Hm "H"-d m a PPOJ'f  3  +L$Nu H!6&I*H?|   KC p:"Q2   M,l' <FORM"<SLCTtNJgp `   MC pxЀNJnp `   MNJgp `  J'g  Jk g   M <FORM"<WSTRNJgp `l~ `FH"ҁ҇ҁ  s ,l'N$@Jg" JJfS R M"J,l'NJnp `$RGp 0+ 2Hm M,l'NJgp @pLl NuYOH6$o &I*H  bV MC ,l'pN. oDo  b6pwЀ"<  a V$g "+ U"@  M,l'N. o RBh `
~`~@~ LlXONuYOH!6*I$H~ J'g   - o     n  ra n&@Jg   J"K - ,l'N. op m  B3 o  Bh $K`D J,l'Nrg$ o  2( Rh HABAHA$ԂԁԂ !(  JJfS R o  h  d
 K e Ka `~@~ LlXONu H'6&H/H  Ah",lLtN. f:|`$l"a / HzF/
a xO < JFgA2",lLN. gJFg ",lLN,l'N*@Jg hp 0+ / HzHo a O A ",lL$<  N*g ,|  M,l'N MpNJf \ M <WSNP"<LISTtNJf 8 M <WSNP"<PROPNJf  A &"HJfS*	rځp 0$  M <WSNP"<SNPHNJf  A p 0"H MNJo   MNJf   MNJf   k J f  `  5|   M,l' <WSNP"<FORMtNJf  A >"HJfS*	r4ځp 0$  M <WSNP"<WPPTNJfZA p 0"H MNJoF MNJf< * g"@ Ma J@g* MNJf  RJ f$H 
f d M,l'NJf| M,l'N",lLNJFg   p 0+ JgSgSgB`  A "$,$,lLNL`|Hk &/,$Ho ,a O A "A $$,lLNL`RA C a bHo Hk &/,$Ho 0a O A "A $$,lLNL`$l"a 	/ Ho /
a <O  M,l'NLl Nu lH/6. &I*H| zp/@ hBo M 0H" H$ A$d/( HRV^ mB \Bo M 0H" H$ A$x/( $RV^ mB D <  /@ | B@H@/@  rg,$l$xM$C l"""B/S *<  ! <  "/@ h`$l$xSf|/
B//<  /
/<  Ho // Ho /Ho /<  Ho T/<  //<  Ho /<  	Ho  /<  // /<  ,l'ȓ$ON4O T _( g  / H@B@ |*g
Jg / fx &  Ll lNuH. &I*H  g+k (  g+k 0  g.J fpwЀ"<  a +@  m  gC 8p: Q0 g+k 4 " g + ,@+@  g0+ ;@ *0+ ;@ , g0+ ;@ &0+ ;@ ( gC 0;@ 20;@ 47k  $7Y & gC 0;@ .0;@   ?  $ W  V  U  T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @ d  07k   7Y " g0+;@ 60+7@& g0+;@ 80+7@( g0+;@ :7k* g0+;@ <7k, L(NuH6,. &I*Hx 0HTr * g<  M"k a Z$@Jf  k a $@Jg.%E A "J,lHN
  J"Ka hRDp@m MLl` 
LlNuH6,. &I*H g Jgbx 0HTr * g<  Ma >$@Jf$A|a z$@Jg2 E %E A "J,lHN  J"Ka RDp@m MLl` LlNuH&I*H~  g~ -  g  -  g  -  g A C 0< Vg  L(Nu<H*H0<r A Qp 0-VBB"-d m C a A ("HA a b/@L0-VHr 2 /AP. /,$Ho$a ,p 0-VHo(AXC\a  O . g  /H/@H/  Egp 4g/,$a .XOJ@g ZA "H m pa 4pmVg   SgRSg  Sg  Sf ( -da &@Jf -da 4&@Jg 
A'"K,lHN
 /H"/D K"Ma `   -da @&@Jf -da &@Jg  A'"K,lHN
 /H"/D K"Ma `   -da |&@Jf -da H&@Jg  A'"K,lHN
 /H"/D K"Ma `h /H"/DA'p"Ma r`Tp 0-VA'pa &@Jf,Aa &@Jg20< mVr 2 'A A'x"K,lHN
 /D K"Ma rA'pa Lh<NuH. *H g - g @pwЀa HB Fϭ f"M,lHN Ma jL`Nu8H'*HBL/- /,$Ho $/H $a O 0-V2 It 4/BH@ g |  -da &@Jgp 0-V K"m a Jg @/h Lp 0-VHo APCLa :XO. g  /H/@H Sg  Sg  Sg <Sf / MgBm&/ MgBm(/ MgBm*/ MgBm, g6zp 0r  /Hg  K"m a Jg @ /La |REp@cJFg
 Ka ` T/,$a XO` F g2zp 0r  /Hg  Ka Jg @ /La d|REp@cJFg
 Ka b` /,$a ^XO`   -da *@Jg2zp 0r  /Hg  Ma Jg @ /La |REp@cJFg
 Ma `  /,$a XO`  zp 0r  /Hg A'pa HJg @ /La |REp@cJFg
A'pa `T/,$a XO`Hp 0-VA'pa &@Jg4/k Lp 0-VHo APCLa \XOJg /L Ka TA'pa ^L(8NuNqN  qN  6N  zN  sN  0N  ú/. 0P@2QA0.Nu H?*H8 :~ | &m ?@ & g + 8HH6mr 2҂T4+ Hp 0?A &l2+ ?A &+ 9HH4mp 0Ё( 2+ Hp 0l8+  l(  ,l'N KC ,pa T:/ &o 2fo 0f l(  Nvp `  l( 0( Hr 2t 4/ ,&ցop 0r 26( HÖ.0( Hr 2v 6/ .$ԁop 0r 24( H,0-VrAf&4( Hv 6/ 0p 0/ ," ҃f2( E?A 4`p 0/ ,Ї?@ 40-VrAgU@f 0( Hr 2/ 2t 4/ .ԁf0(  D`p 0/ .І$ p 0/ 4r 2t 4/ &v 6 K,l'N l(  ,l'NvpLh Nu/. "H i ( 8HH l( 2( iHU  f0)*g@c2 0.NuH1 . "H i ( 9HHr 2) l( ( HH6( HÖS  f0),g@c6 0L Nu H?. *HBo 2Bo 0z?A * - g pmXp 0 Ma F8 r 2/ *?@   Ma n?@  / +f(r 2-(t 4 m"t 4-&p 0m$ ?A 0?B 22-b84-p 0?A " lPNv, 0/  r 2 ?B "c    ?@ .- 6f>r 2  NjR* 0H2/ Ha 8/ r 2Ho0H2/ Ha : JEfz0H2/ Ha 8 0/ .žl$p 0r 2&ցS/@ $ "/ $ lPNj?@ .0/ ., 0/ @c8 `  / +f  0/ 2@d  8 - 6fhp 0/ " Pv 6 p 0ЃvЃ lPNj* 0H2/ Ha 8/ r 2Ho0H2/ Ha : 0H2/ Ha 8 0/ 2@d8 0/ "r 2t 4ނS?@   lPNj , :/  p 0c| </ +f:/ 0p 0d| <p 0r 2 ML  ` ~L  Nu" ( _gphX @ 1@Xp Nup 0"  (.` Nu/" ( _gphX @ 1@Xp `&p 0(VSgSf,(.`,(2p 0"  ,` N,NuQO/0(br 2 0($ Bp 0/@  "/ $P` (  6g( _g YNu H?. *Hp 0?A &a : r 2-4-`H6-`H(-.؃S?@  /A " lPNd"/ Np, p 0-(2/ t 4m d, p 0c| <p 0r 2 ML  ` 0QOH. *H0-`rAoSm`0-`H2-bHa r 2 p 0/@  "/  ML P` .H. *Hp 0a < 0-`R@H2-bHa FbRm`r 2 p 0 MAa L NuYO/*H/@ 0-`rAo$C`SQ0H2Ha nr 2 p 0- MAa p*_XONup 0(&r 2((` ZH!*Hp a >  Mp a @r 2t 4  " ML ` .N  Ð pa ,H?6$o `&I*H?@ JH4/ ZH0H6* HÖ.R?A Nm$06@?C 2H0* H . R0/ JH?B 0l0/ JH@ H6/ ^HÖ2* H?@ ,0* H . Rm&0* 2@?A .H0* H . R0/ NH?C *l0/ NH@ 2/ JH?@ (0/ NHM 8,0H,0* HHH,H  (* ME H""K$&,l'|`܆~NLp0/ ,o>2/ NH4/ 2H6* HH/@ @0/ *HH *  M"Kp (/ P|`܆~NLp0/ (o  2/ JH4H6/ .H0/ 0H/@ @0/ (H/@ DH   M"Kr (/ P*/ T|`܆~NLp0/ ,o>2/ 2H4/ .HH6/ (HH /B D$( * M"K&/ Dp " |`܆~NLp0/ Z2@?A RH4* H.RHl
0/ ZH`   `  M<H:H8/ RH0H2/ PH4* H6* HÖR4/ ^H/@ ,/A (l4/ ^H@$H  "/B @$ K"H&/ <,l'(/ 8*/ @|`܆~NLpM P0VHЀ2H6* HÖ.Rm ?@ P0/ Rj o X0/ ^2* @?A RH4* H.RHl0/ ^H`| `xK0H2H4H6/ RH/C 46H/B 04HR6/ PHH (* K"H$/ @&/ D,l'|`܆~NLpM P0VHЀ2H4* H.Rm ?@ P0/ Rj o zLl ,Nu lH'&I*H/J  I  o  C $p"Q0+  m ,, - 3g" m "m p 02( HjR0H , 0+  m .* -  3g m ( HH2HS*-  3g$ m "m p 0) 2( HjR0H * "m JFj&p 02HD/@  "/  lPNjp 0$ `p 02H/@  "/  lPNj$>HJEj&p 0) 2HD/@  "/ Njp 0) $ `p 0) 2H/@  "/ Nj$H0- $H2- &HHk // "  m  "o 4a O L8 lNuYO/*H m 0- (Hr 2op 0`$p 02- (H/@  "/ "lPNj0- (H ;@ $ m 0- *Hr 2( op 0`&p 0( 2- *H/@  "/  lPNj0- *H ;@ &*_XONu H66$o 0&I*HJ'g p3r  MQA+H +J A ("o 4   /Hx/< Hx /< /
/< Hx /< /<pict/< Hx /< e ,l' ONO 4+@ g Hx BHx/ a \O Jg  /
BHm /<  m ,l'$ONO  _/TR   ,  CBHo 0/<  m $ONO $_J (f/
BHo 0/<  m $ONO $_ / (g   @,l'rN@$  Ma D<- $H:- &Hpfp@p &  " j XNj+@  gFM  B^B^0- $S@<0- &S@< m 0H2( HHo  //  o 4"m  p " a O p`p3r Qp Lll NuH *H,l'N -  g @Nd - g
 @,l'Np3r QL` NuNqNUH!2. H 0| "P$H+H/I ,IN&@ + +@Jf Jg rt ,mN+@Jg  "V @!A 4" 'A   ,o N| m&h  g8p+ J f.&k  g&p+ f + &@ g + $@ + +@&m gA ",mN 
gp mP+H``J gTp"<  ,o NT&@ g&"* ,mN'@ f"K,o NN " $A g  m +K`
` $@ 
f,o Nv -LLN]Nu  n ' eNHȲe2/ pҀF  /r pN:" _Jg!H XB !C """ Nun ' eNB gH  $P$g"J$B !N.`Nu"JYLpN.n ' eN<" gZ gVH00$$H dJ&&C&gr KJ gj NFJg @ *   g"H"^S0HAv ""QQ LNu PX"* a  Jg"@ JX ( !I H PB 	`"*  *  $a`Jg&@"@ J  H @!I p
@ @ 	A 'H 
"* 7A A $rF  A * 'H 'H '@ B !@ 'H ` X/ N:Jg @  XNun ' eN6"g^"	gZ dV/"&A"gdJ g^ e d KN@"k ") g A 'H #K  S"!I &"K&_ ) Щ   gNuYQ 	 Y"Q"!I "@ !N.&_/.<  N.Nu Pool H 0`  gR  g$H&I  g
f`p L Nu L NugJfp Nu Nu"`gSd`BSd Nu JfSfNu  H "$o  jC ,lPNLD NuNq o Ho "o a  XONu"  R k  NuQOH 2B /H /	 I"o E,lHG N _ / SLL PONuNq    v  j v p  K K < < |           f      P  \  b  J  V         B (        6  B  <          f  N                           6      Z         0        x        H      B    `      <  $    ~    T  r  *            l                        t|  tv  tp  tj  k  ah  ab  aV  a\  U  U  U    U  Md  M  Mv  M|  Mp  M  M^  Mj  >  >  >  ,>  ,D          n          z                    t    n  t  z   :      I    s| qR o( l l ;    !  	   @  $ `` `    ```       ???~???       V3.03                  ɠ󠠥 l%  '  ~%  '   % '   '    '    '  %  '  '  ' @ @ UU   ,         
   
     
   
     
 	  
 	 @@   

   
    
   
      
   
     
 	 
 	  
  . 
  - 
  + 
  ' 
 	 
     
 	  
 	   
 	 ` 
 	 @   
 	 
 	  
 	  
 	  
 	  
 	   
 	 
 	 
 	  
 	  
 	 
 	 
 	 
 	   
 	 
 	 
 	 
 	    
 	  
 	 
 	 
 	 
 	 
 	  
  
 	 
 	 
    
                         ,    , 
   
    ,
  ,
  ,      ,
  ,
  ,
       ,    ,                     
 	 
 	 
 	 
 	 
 	 
 	 
 	 
 	  
 	 
 	   
 	   
 	      
   
   
     
 	   
 	   
 	  	
 	      
 	   
 	   
 	   
 	     
 	 
 	    
 	   
 	  
 	    
  ` 
  P 
  0 
    
 	                      ,                @ ' DD   lchsparwed                -  s U 1*  1z  1 1  1  1  1  2 +       \  & L  Lb   2<  2P  2d  2(   ,  | ^    x       4    B  ^        b  l  H	  f     	 
LCHSPARWED RWEDRWED  +-    H (  $                                                        p  h  `  \  X  T  P  H  D  @  8  0  ,            |  x          n  Z  2    
          z p f \  
  
           v l b                                                      Kא^   A  LBrowserII.cd9     X  YQ \  [  Z  Y   y^     	rBrowserII.info7 p   $  9 !    * +8   * 08   
  9           ]ݽ  UU`U ? UUUU jQj TTUU HS* T{UE @U
 DwE Aw A @   @ 9&t  @ t  @!Y  A5 A _ @8 @~~ @w @h @_A @?m @  	 @ S 	    @   @   `   `   p    ` D       U  Ӂ    T  j   4  T p   )    @ 	wА  /    { ݭ  u@  iʠ  ^_Y  w  %Ru˗  B#  B   b  @ V  ?]]ހOUeUQV?'>UU%UYjRjrʀTyTUFHT	v*TU@U 
DDDA  B,X  @|` Hx@ 4 j
`1^@8>j \*UWȀVja]	 ހj( *
 #j( * {X      9     ??.?*K*?/*ꚪ*5*uj*j֪z$*D**u˛^ wAo
"%r     @     q   :    p   B  /  @_ ?t@ tп    s!  wJ  w| _ @  @   @<  @?  @*A @t @j x  @U    @j ( @U U@ @Cj @ 5@ @B @ @  8   @  ~   @ ~h  @  @ x @ X @ k  @ D  @  @[ @Hj/ @US@ @:  @MOґ  @Jʒn  @IYT   
     n ^ Պʪ o 
"k *5ulU Jxk *vD* u|*[   
   "%c   T   |   ,0  DL|DE  m  U0UU B  T	.U @\+ AA0 PQ h A `    HU 5e  ҂ (` JUNK ( #  Icon by Walter Drwald   "APPICON=Icons/BrowserII_Files.app (CX_POPKEY=control esc) (CX_POPUP=YES) (CX_PRIORITY=1) (CX_UNIQUE=TRUE) (ICONXPOS=<icon x position>) (ICONYPOS=<icon y postition>) 
DONOTWAIT. @  7  xwhatis.library3 b  p    ]  ^˒-s j  i  h  g  f  e  d  c  b  a  `  _  ^ k^ 2  g  
BrowserII.menu7 p CMDWIN "CON:0/16/640/200/BrowserII Command/Auto/Close/Wait/Screen BrowserII"
SHELLWIN "CON:0/16/640/150/BrowserII Shell/Auto/Close/Wait"

# Make the left Amiga key work for menu short-cuts too
SHORTCUTQUAL "lcommand"

# Other example: Make short-cuts without any qualifier.
# SHORTCUTQUAL ""

AUTOCMD "Text" WITHSUBTYPES RUN Ed []
AUTOCMD "Script" RUN Ed []
AUTOCMD "PP Doc" RUN PPDocToCed []
AUTOCMD "Guide" WBTF RUN SYS:Utilities/Multiview []
AUTOCMD "Anim" RUN VT []
AUTOCMD "ILBM" RUN VT []
AUTOCMD "ILBM24" RUN VT []
AUTOCMD "GIF" RUN VT []
AUTOCMD "JPEG" RUN VT []
AUTOCMD "8SVX" RUN SYS:Utilities/Multiview []
AUTOCMD "Zoo" RUN WIN "CON:0/16/640/100/Zoo List/SCREEN BrowserII" Zoo l []
AUTOCMD "ST Mod" RUN Rx DeliPlay [:]
AUTOCMD "Med Mod" RUN Rx DeliPlay [:]
AUTOCMD "PP MedMod" RUN Rx DeliPlay [:]
#AUTOCMD "Unknown"  REQUEST RUN FileX []
menu Dirs
 item AutoDocs RUN BD Tools:AutoDocs ZOOMALL
 item Docs RUN BD Tools:Docs ZOOMALL
 TR   ":":,  Xitem etc RUN BD SYS:etc ZOOMALL
 item Tools RUN BD SYS:Tools ZOOMALL

menu System
 submenu "Format Dev"
 item "Normal NFS" RUN WIN "CON:0/16/510/74/Format/SCREEN BrowserII" Format drive [] name Empty NOICONS;BD SCANDEVS QUIET
 item "Normal FFS" RUN WIN "CON:0/16/510/74/Format/SCREEN BrowserII" Format drive [] name FDisk NOICONS FFS;BD SCANDEVS QUIET
 item "Quick  NFS" RUN WIN "CON:0/16/510/74/Format/SCREEN BrowserII" Format drive [] name Empty QUICK NOICONS;BD SCANDEVS QUIET
 item "Quick  FFS" RUN WIN "CON:0/16/510/74/Format/SCREEN BrowserII" Format drive [] name FDisk QUICK NOICONS FFS;BD SCANDEVS QUIET
 endsubmenu
 item Format WBTF WB SYS:System/Format
 barlabel
 item {W} Shell WBTF RUN NewShell CON:0/16/640/100/Shell/Close
 item {&} RunBack RUN []
 item Execute RUN Execute []
 item Version RUN WIN "CON:0/16/640/200/Version/CLOSE/WAIT/SCREEN BrowserII" Version [] FULL FILE
 item LoadLib RUN LoadLib []
 submenu Assign
 item "Add Fonts:" RUN Assign FONTS: [] Add
 item "Add Libs:" RUN Assign LIBS: [] Add
 barlabel
 item "Std Fonts:" RUN Assign FONTS: SYS:Fonts
 item "Std Libs:" RUN Assign LIBS: SYS:Libs
 endsubmenu
 item AssignVol RUN For [] DO S:AssignVol %%
 item Assign	 REQUEST RUN Assign : []
 item UnAssign RUN For [] DO Assign %%

menu File
 # create a direct short cut with letter 'm', with either capslock and shift pressed or not
 item MultiView KEY "-caps m" KEYTEXT "m" RUN For [] DO SYS:Utilities/MultiView %%
 item {H} FileX RUN SYS:Tools/FileX []
 item AZap RUN SYS:Tools/AZap []
 item WhatIs	 RUN WIN "CON:0/16/640/200/WhatIs/CLOSE/WAIT/SCREEN BrowserII" WhatIs []
 item ShowIcon WBTF RUN ShowIcon []

menu Text
 item {Y} CygnusEd RUN STACK 20 Ed []
 item PPDocToCed RUN PPDocToCed []
 item Print
 RUN SYS:System/Print []
 
menu Image
 item ViewTek RUN VT []
 item {>} "-> ADPro" SHELL Rx REXX:View.adpro [:]
 barlabel
 item ShowAnim RUN ShowAnim -c []
 barlabel
 item DeluxePaint WB  Tools:Paint/DPaint []
 
menu Sound
 item PlayOnDisk RUN SYS:etc/PlayOnDisk []
 item WindowPlay RUN SYS:etc/WindowPlay []
 item PowerPlayer RUN SYS:etc/PowerPlayer []
 item DeliTracker RUN Rx DeliPlay [:]

menu Compress
 item PowerPacker RUN SYS:Tools/PowerPacker
 submenu Pack
 item SQSH RUN PRI -1 WIN "CON:0/16/640/100/xPack SQSH./SCREEN BrowserII" For [] DO xPackIt %% M=SQSH E=100 PACK;BD RESCAN QUIET;Echo >SPEAK: "Pack done\;"
 item NUKE RUN PRI -1 WIN "CON:0/16/640/100/xPack NUKE./SCREEN BrowserII" For [] DO xPackIt %% M=NUKE E=100 PACK;BD RESCAN QUIET;Echo >SPEAK: "Pack done\;"
 endsubmenu
 barlabel
 submenu Lha
 item Test RUN WIN "CON:0/16/640/200/Lha List/CLOSE/WAIT/SCREEN BrowserII/MINI/JUMP" Lha t []
 item {Q} "Query Ext" REQUEST SHELL WIN "CON:0/16/640/100/Lha Extract/SCREEN BrowserII" Lha -x -m e [] "";BD RESCAN ZOOMALL QUIET
 item {} LhArcDir RUN PRI -1 WIN "CON:0/16/640/100/Lha Compress/SCREEN BrowserII" For [] DO LhArcDir %%;BD RESCAN QUIET;Echo >SPEAK: "Compression done\;"
 item LhArcVol RUN PRI -1 WIN "CON:0/16/640/100/Lha Compress/SCREEN BrowserII" For [] DO LhArcVol %%;BD RESCAN QUIET;Echo >SPEAK: "Compression done\;"
 endsubmenu
 item {Z} Extract RUN WIN "CON:0/16/640/100/Extract./SCREEN BrowserII/MINI/JUMP" For [] DO Extract %%;BD RESCAN ZOOMALL QUIET

menu C
 item BumpRev KEY "alt b" KEYTEXT "Alt-B" RUN WIN "CON:0/16/400/100/BumpRev/CLOSE/WAIT/SCREEN BrowserII" smake bumprev
 item Diff KEY "alt d" KEYTEXT "Alt-D" RUN WIN "CON:0/16/640/200/Diff/CLOSE/WAIT/SCREEN BrowserII" SC:c/diff []
 item Make KEY "alt m" KEYTEXT "Alt-M" RUN STACK 10 PRI -3 WIN "CON:0/16/640/100/Make./CLOSE/WAIT" smake;IF WARN;echo >SPEAK: "compile failed\;";Else;echo >SPEAK: "compile successfull\;";echo Done.;EndIF
 item CPR KEY "alt c" KEYTEXT "Alt-C" WBTF RUN STACK 10 WIN "CON:0/16/640/100/CPR Output/Auto/Close" SC:c/CPR -screen Workbench []
 item ScOpts KEY "alt s" KEYTEXT "Alt-S" WBTF RUN SC:C/ScOpts
 item Indent KEY "alt i" KEYTEXT "Alt-I" RUN WIN "CON:0/16/640/200/Indent/Auto/Close/Wait/Screen BrowserII" Dev:bin/Indent [];echo >SPEAK: "Indent done\;"
 barlabel
 submenu "SAS Doc"
 item CPR RUN Multiview SCREEN sc:help/cpr.guide
 item sc RUN Multiview SCREEN sc:help/sc.guide
 item scmsg  RUN Multiview SCREEN sc:help/scmsg.guide
 item lib RUN Multiview SCREEN sc:help/sc_lib.guide
 item util RUN Multiview SCREEN sc:help/sc_util.guide
 item prob RUN Multiview SCREEN sc:help/sc_prob.guide
 item se RUN Multiview SCREEN sc:help/se.guide
 item change RUN Multiview SCREEN sc:help/sc_change.guide
 item help RUN Multiview SCREEN sc:help/sc_help.guide
 endsubmenu
 barlabel
 item "Archive Dir"  RUN WIN "CON:0/16/640/100/Archiving directory./SCREEN BrowserII" ArchiveDir

 Ő Ґ^     ,DeliPlay.rexx8 Ð    k  l < o  n  m  l K^      BrowserII.pi9 p .name
BrowserII
.type
File Manager
.short
Directory maintenance utility
.description
It is a multi-window file-manager.  It is based on drag and drop just like
workbench.  In fact, it is exactly like workbench in text mode.  It is
fully asynchronous.  That is to say, you can perform several copies,
delete, directory scan,.  at the same time.  You can pause or stop
running processes.  Pressing [ESC] pauses all processes (accidental
operations).  It is small, about 150 KBytes (not compressed of course),
including the whatis.library, a powerfull library that identify file
types.  Does not use much memory when idle (may use more while copying).
Use pooled memory even under WB2.0 to minimize fragmentation.  It is fast.
It has an intelligent iconification, directory tree, archive support,
window snapshot and an intelligent buffered copy process which makes it a
lot faster than standard copy commands/tools when source & destination
directories are on the same device unit.  You can copy a complete 880 Kb
floppy with only 1 drive in 1 pass without using RAM disk as a tmp
storage.  Copies even continue while iconified.  And at last, it is
powerfull and highly configurable.  It is ShareWare.  Once registered, you
get a key file which is valid forever.  if you are not registered (you
don't have the key file), the about requester will popup from time to
time, but BrowserII stay fully functionnal.
Available languages: english, french, deutsch, svenska, italiano, spanish
.version
3.03
.date
1995.04.02
.author
Pierre Carrette, Sylvain Rougier
.restrictions
Demo version. Will popup a requester from time to time asking user
to consider registering.
.requirements
Requires WB2.0 or higher.
.price
$20(US) or 100FF.
.address
Sylvain Rougier
39 rue Carnot
860 Poitiers
France
.email
bvme@chasseneuil.em.slb.com  (Pierre Carrette)
.installsize
150K - 200K

[     (RexxA p    p  q' t  s  r  q ͐^      BrowserII_p.inf6 p     9 !   *\6 T(7  
  9    		      ]ݽ  UU`U ? UUUU jQj TTUU HS* T{UE @U
 DwE Aw A @   @ 9&t  @ t  @!Y  A5 A _ @8 @~~ @w @h @_A @?m @  	 @ S 	    @   @   `   `   p    ` D       U  Ӂ    T  j   4  T p   )    @ 	wА  /    { ݭ  u@  iʠ  ^_Y  w  %Ru˗  B#  B   b  @ V  ?]]ހOUeUQV?'>UU%UYjRjrʀTyTUFHT	v*TU@U 
DDDA  B,X  @|` Hx@ 4 j
`1^@8>j \*UWȀVja]	 ހj( *
 #j( * {X      9    	$ ??.?*K*?/*ꚪ*5*uj*j֪z$*D**u˛^ wAo
"%r     @     q   :    p   B  /  @_ ?t@ tп    s!  wJ  w| _ @  @   @<  @?  @*A @t @j x  @U    @j ( @U U@ @Cj @ 5@ @B @ @  8   @  ~   @ ~h  @  @ x @ X @ k  @ D  @  @[ @Hj/ @US@ @:  @MOґ  @Jʒn  @IYT   
     n ^ Պʪ o 
"k *5ulU Jxk *vD* u|*[   
   "%c   T   |   ,0  DL|DE  m  U0UU B  T	.U @\+ AA0 PQ h A `    HU 5e  ҂ (` 
BrowserII  #  Icon by Walter Drwald   CX_POPUP=NO 
DONOTWAITj ǐ ^   A  
(
View.adpro; Ð    u  vގ y  x  w  v    ^     	Deutsch.info9 p TR    Z Z,     R G     -n .   .  0 Ր D
 ( G           |   { H W 7w 7W 0  ' 0 TW 0 
<D 0 TW 0 * 0 X 0 
 0 4 `  ? ? ? ? ? >u^ > >u^<D > >u^ダ             0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  wP   w  s@  x        @ ~   | A  }   }=N A  }   }=N  @ }  =}N|  )  | {x H  W   vy  V8   &8   @
V8   P<  
S  5P  
  @       ' y     &8  @ V8    &8  @ <   +(  @ | x     G   8    ?    >     = $   ~  8 n      )   `    `    0    8                 w     b   Cb   b   "   b        ?      @   A   B @ ` lB( ;a  G ;`@ o ;  W ;@  k ;`@ ~, ;` k H ;`(  ;` {  ;`
  9` _l <  `v`| ?0]4 ?   O@ >`    >U`  a >`  T  >`  @a >`  V 4 ?`  @ @ `  @$ 	   ?   >   = $    ;  @ 8    8     8      <   =   H ><   ?g  " ?   ?   >   < :ܐ  <     \ *  \   ;\ * ?\   = * > <   ?  
Installer  APPNAME=BrowserII DEFUSER=EXPERT SCRIPT=Install-BrowserII NOLOG LANGUAGE=deutsch MINUSER=EXPERT   l  +	disk.info< p    z  {u ~  }  |  {    ^     	English.info9 p   8  G     0  0H   0` 0  4 
 ( G           |   { H W 7w 7W 0  ' 0 TW 0 
<D 0 TW 0 * 0 X 0 
 0 4 `  ? ? ? ? ? >u^ > >u^<D > >u^ダ             0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  wP   w  s@  x        @ ~   | A  }   }=N A  }   }=N  @ }  =}N|  )  | {x H  W   vy  V8   &8   @
V8   P<  
S  5P  
  @       ' y     &8  @ V8    &8  @ <   +(  @ | x     G       ?    >     = $   ~  8 n      )   `    `    0    8                 w     b   Cb   b   "   b        ?      @   A   B @ ` lB( ;a  G ;`@ o ;  W ;@  k ;`@ ~, ;` k H ;`(  ;` {  ;`
  9` _l <  `v`| ?0]4 ?   O@ >`    >U`  a >`  T  >`  @a >`  V 4 ?`  @ @ `  @$ 	   ?   >   = $    ;  @ 8    8     8      <   =   H ><   ?g  " ?   ?   >   < :ܐ  <     \ *  \   ;\ * ?\   = * > <   ?  
Installer  APPNAME=BrowserII DEFUSER=EXPERT SCRIPT=Install-BrowserII NOLOG LANGUAGE=english MINUSER=EXPERT     Catalogs= p      _r           ^     	Espaol.info5   p   8  G     0 1‐   1 2  4 |
 ( G           |   { H W 7w 7W 0  ' 0 TW 0 
<D 0 TW 0 * 0 X 0 
 0 4 `  ? ? ? ? ? >u^ > >u^<D > >u^ダ             0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  wP   w  s@  x        @ ~   | A  }   }=N A  }   }=N  @ }  =}N|  )  | {x H  W   vy  V8   &8   @
V8   P<  
S  5P  
  @       ' y     &8  @ V8    &8  @ <   +(  @ | x     G   X    ?    >     = $   ~  8 n      )   `    `    0    8                 w     b   Cb   b   "   b        ?      @   A   B @ ` lB( ;a  G ;`@ o ;  W ;@  k ;`@ ~, ;` k H ;`(  ;` {  ;`
  9` _l <  `v`| ?0]4 ?   O@ >`    >U`  a >`  T  >`  @a >`  V 4 ?`  @ @ `  @$ 	   ?   >   = $    ;  @ 8    8     8      <   =   H ><   ?g  " ?   ?   >   < :ܐ  <     \ *  \   ;\ * ?\   = * > <   ?  
Installer  APPNAME=BrowserII DEFUSER=EXPERT SCRIPT=Install-BrowserII NOLOG LANGUAGE=espaol MINUSER=EXPERT      0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  w     4	          ^     	Franais.info8 p     G     2X 2p   2- 2G  Ր 
 ( G           |   { H W 7w 7W 0  ' 0 TW 0 
<D 0 TW 0 * 0 X 0 
 0 4 `  ? ? ? ? ? >u^ > >u^<D > >u^ダ             0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  wP   w  s@  x        @ ~   | A  }   }=N A  }   }=N  @ }  =}N|  )  | {x H  W   vy  V8   &8   @
V8   P<  
S  5P  
  @       ' y     &8  @ V8    &8  @ <   +(  @ | x     G       ?    >     = $   ~  8 n      )   `    `    0    8                 w     b   Cb   b   "   b        ?      @   A   B @ ` lB( ;a  G ;`@ o ;  W ;@  k ;`@ ~, ;` k H ;`(  ;` {  ;`
  9` _l <  `v`| ?0]4 ?   O@ >`    >U`  a >`  T  >`  @a >`  V 4 ?`  @ @ `  @$ 	   ?   >   = $    ;  @ 8    8     8      <   =   H ><   ?g  " ?   ?   >   < :ܐ  <     \ *  \   ;\ * ?\   = * > <   ?  
Installer  APPNAME=BrowserII DEFUSER=EXPERT SCRIPT=Install-BrowserII NOLOG LANGUAGE=franais MINUSER=EXPERT     @
Docks.info; p      Un                                             *}^     Install-BrowserII0   p ; BrowserII Installation Script

;M=

(set @default-dest (expandpath "SYS:Utilities"))
(complete 0)

(set #NeedV37
	(cat
		"BrowserII requires AmigaOS 2.0 or higher."
	)
)
(set #introduction
	(cat
		"Your are about to install BrowserII and related files into your system.\n"
		"Some additionnal commands, ARexx and shell scripts are given to make your life easier with BrowserII.\n"
		"You should install them at least as a tutorial. They may teach you a lot about BrowserII's phylosophy."
	)
)

(set #AskBrowserDest
	(cat
		"Please select a place for \"BrowserII\". A drawer called \"BrowserII\" will be created here."
	)
)

(set #WhereParMLibPrompt
	(cat
		"Where do you want to install parm.library ?\n\n"
		"This library may be copied to the BrowserII's directory if you do not use any other tool that requires it. "
		"There's actually only two: ParM and WBRun (given with this package).\n"
		"If you use WBRun only in the context of BrowserII TR   '',  pñ(in BrowserII.menu), "
		"parm.library can be left in BrowserII's directory.\n"
		"If an old parm.library is found in your LIBS:, it will be deleted."
	)
)

(set #WBStartupPrompt
	(cat
		"Boot options."
	)
)

(set #StartBrowser
	(cat
		"Start BrowserII"
	)
)

(set #StartIconified
	(cat
		"Start in iconified state"
	)
)

(set #WhichCommandsPrompt
	(cat
		"Select shell commands to install."
	)
)
(set #AskCommandsDest
	(cat
		"Please select directory where to copy selected shell commands."
	)
)

(set #WhichARexxPrompt
	(cat
		"Select ARexx scripts to install."
	)
)
(set #AskARexxDest
	(cat
		"Please select directory where to copy selected ARexx scripts."
	)
)

(set #WhichScriptPrompt
	(cat
		"Select shell scripts to install."
	)
)
(set #AskScriptDest
	(cat
		"Please select directory where to copy selected shell scripts."
	)
)

(set #MenuMoved
	(cat
		"Your file \"S:BrowserII.menu\" has been moved to \"%s\" where BrowserII will now read it.\n"
		"Any way, you'll have to perform some small changes to it before running BrowserII version 3.\n"
		"Refer to the documentation for more information."
	)
)
;M=
(if (= @language "franais")
(
	(set #NeedV37
		(cat
	"BrowserII ncessite l'AmigaOS version 2.0 ou suprieure."
		)
	)
	(set #introduction
		(cat
	"Vous tes sur le point d'installer BrowserII et ses fichiers dans votre systme.\n"
	"Quelques commandes shell et scripts supplmentaires sont fournis afin de raliser des tches lmentaires.\n"
	"Il est recommand de les installer au moins dans un but de consultation afin de mieux comprendre les possibilits de BrowserII."
		)
	)
	(set #AskBrowserDest
		(cat
	"Choisissez un endroit pour \"BrowserII\". Un rpertoire nomm \"BrowserII\" y sera cr."
		)
	)

	(set #AskCommandsDest
		(cat
	"Choisissez un rpertoire pour les commandes shell."
		)
	)

	(set #AskARexxDest
		(cat
	"Choisissez un rpertoire pour les scripts ARexx."
		)
	)

	(set #AskScriptDest
		(cat
	"Choisissez un rpertoire pour les scripts shell."
		)
	)

	(set #MenuMoved
		(cat
	"Votre fichier \"S:BrowserII.menu\" a t copi dans \"%s\" ou BrowserII le lira maintenant.\n"
	"De plus, vous devez y faire quelques modifications mineures avant d'utiliser BrowserII version 3.\n"
	"Rfrez vous  la documentation pour plus d'informations."
		)
	)
))
;M=
;(if (= @language "deutsch")
;(
;))
;M=
;M=
(set OSVersion (/ (getversion) 65536))

(if (< OSVersion 37)
	(abort #NeedV37)
)

(message #introduction)

(set @default-dest
	(askdir
		(prompt #AskBrowserDest)
		(help @askdir-help)
		(default @default-dest)
	)
)

(set WhereParMLib
	(askchoice
		(prompt #WhereParMLibPrompt)
		(choices
	@default-dest
	"LIBS:"
		)
		(help @askchoice-help)
	)
)

(set WBStartup
	(askoptions
		(prompt #WBStartupPrompt)
		(choices
	#StartBrowser
	#StartIconified
		)
		(help @askoptions-help)
	)
)

(set WhichCommands
	(askoptions
		(prompt #WhichCommandsPrompt)
		(choices
	"AddIcon"
	"BaseName"
	"BD"
	"For"
	"MakeLink"
	"TackOn"
	"VolName"
	"WBInfo"
	"WBRun"
		)
		(help @askoptions-help)
	)
)

(if (<> WhichCommands 0)
	(set CommandsDir
		(askdir
	(prompt #AskCommandsDest)
	(help @askdir-help)
	(default "C:")
		)
	)
)

(set WhichARexx
	(askoptions
		(prompt #WhichARexxPrompt)
		(choices
	"DeliPlay.rexx"
	"View.adpro"
		)
		(help @askoptions-help)
	)
)

(if (<> WhichARexx 0)
	(set ARexxDir
		(askdir
	(prompt #AskARexxDest)
	(help @askdir-help)
	(default "REXX:")
		)
	)
)

(set WhichScript
	(askoptions
		(prompt #WhichScriptPrompt)
		(choices
	"AssignVol"
	"Extract"
	"LhArcDir"
	"LhArcVol"
	"PPDocToCed"
		)
		(help @askoptions-help)
	)
)

(if (<> WhichScript 0)
	(set ScriptDir
		(askdir
	(prompt #AskScriptDest)
	(help @askdir-help)
	(default "S:")
		)
	)
)
;7=
;= Install starts now! =
;7=

(set DestDir (tackon @default-dest "BrowserII"))

(set BrowserIIDirExists (exists DestDir (noreq)

(if (= BrowserIIDirExists 1)
(
	(rename (tackon @default-dest "BrowserII") (tackon @default-dest "BrowserII.bak"))
	(rename (tackon @default-dest "BrowserII.info") (tackon @default-dest "BrowserII.bak.info"))
	(set BrowserIIDirExists 0)	; tells dir 'BrowserII' does not exists
))
(if (= BrowserIIDirExists 0)
	(makedir
		DestDir
		(infos)
	)
)

(copyfiles
	(help @copyfiles-help)
	(source "BrowserII")
	(dest DestDir)
	(infos)
)

(if (= WhereParMLib 1)
(
	(copylib
		(help @copylib-help)
		(source "parm.library")
		(dest "LIBS:")
	)
)
(
	(copylib
		(help @copylib-help)
		(source "parm.library")
		(dest DestDir)
	)
	(delete "libs:parm.library")
))

(if (bitand WBStartup 1)
(
	(copyfiles
		(help @copyfiles-help)
		(source "BrowserII_p.inf")
		(newname "BrowserII.info")
		(dest "SYS:WBStartup")
	)
	(tooltype
		(dest (tackon "SYS:WBStartup" "BrowserII"))
		(setdefaulttool (tackon DestDir "BrowserII"))
		(noposition)
	)
	(if (bitand WBStartup 2)
		(tooltype
	(dest (tackon "SYS:WBStartup" "BrowserII"))
	(settooltype "CX_POPUP=NO")
		)
	)
))

(copylib
	(help @copylib-help)
	(source "whatis.library")
	(dest "LIBS:")
)
(if (NOT (exists "S:FileTypes" (noreq)
	(copyfiles
		(help @copyfiles-help)
		(source "S/FileTypes")
		(dest "S:")
	)
)	

(if (<> WhichARexx 0)
	(copylib
		(help @copylib-help)
		(source "libs/RexxDosSupport.library")
		(dest "LIBS:")
	)
)

(if (<> @language "english")
(
	(makedir
		(tackon DestDir "Catalogs")
	)
	(set CatalogPath (tackon "Catalogs" @language))
	(copyfiles
		(help @copyfiles-help)
		(source CatalogPath)
		(dest (tackon DestDir CatalogPath))
		(all)
	)
))
(copyfiles
	(help @copyfiles-help)
	(source "ReadMe")
	(dest DestDir)
	(infos)
)

;= Docs =

(if (NOT (exists (tackon DestDir "Help") (noreq)
	(makedir
		(tackon DestDir "Help")
		(infos)
	)
)

(if (NOT (exists (tackon DestDir "Help/english") (noreq)
	(makedir
		(tackon DestDir "Help/english")
		(infos)
	)
)

(foreach "Help/english" "~(#?_v40)"
	(copyfiles
		(help @copyfiles-help)
		(source (tackon "Help/english" @each-name))
		(dest (tackon DestDir "Help/english"))
		(infos)
	)
)

(set agvernum (/ (getversion "libs:amigaguide.library") 65536))
(if (>= agvernum 40)
	(copyfiles
		(help @copyfiles-help)
		(source "Help/english/BrowserII.guide_v40")
		(dest (tackon DestDir "Help/english"))
		(newname "BrowserII.guide")
	)
)

(if (< OSVersion 39)
	(tooltype
		(dest (tackon DestDir "Help/english/BrowserII.guide"))
		(setdefaulttool "C:AmigaGuide")
	)
)

;= Icons =

(if (NOT (exists (tackon DestDir "Icons") (noreq)
	(makedir
		(tackon DestDir "Icons")
		(infos)
	)
)

(copyfiles
	(help @copyfiles-help)
	(source "Icons")
	(dest (tackon DestDir "Icons"))
	(all)
)

;= Docks =

(if (NOT (exists (tackon DestDir "Docks") (noreq)
	(makedir
		(tackon DestDir "Docks")
		(infos)
	)
)

(copyfiles
	(help @copyfiles-help)
	(source "Docks")
	(dest (tackon DestDir "Docks"))
	(all)
)

;= Menus =

(if (NOT (exists (tackon DestDir "BrowserII.menu") (noreq)
	(if (exists "S:BrowserII.menu" (noreq))
	(
		(copyfiles
	(help @copyfiles-help)
	(source "S:BrowserII.menu")
	(dest DestDir)
		)
		(message (#MenuMoved DestDir))
	)
	(
		(copyfiles
	(help @copyfiles-help)
	(source "BrowserII.menu")
	(dest DestDir)
	(newname "BrowserII.menu")
		)
	))
)

; Always copy the given menu as example as it is referenced in the guide.
(copyfiles
	(help @copyfiles-help)
	(source "BrowserII.menu")
	(dest DestDir)
	(newname "BrowserII.menu-example")
)

;	= Commands =

(if (bitand WhichCommands 1)
	(copyfiles
		(help @copyfiles-help)
		(source "C/AddIcon")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 2)
	(copyfiles
		(help @copyfiles-help)
		(source "C/BaseName")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 3)
	(copyfiles
		(help @copyfiles-help)
		(source "C/BD")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 4)
	(copyfiles
		(help @copyfiles-help)
		(source "C/For")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 5)
	(copyfiles
		(help @copyfiles-help)
		(source "C/MakeLink")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 6)
	(copyfiles
		(help @copyfiles-help)
		(source "C/TackOn")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 7)
	(copyfiles
		(help @copyfiles-help)
		(source "C/VolName")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 8)
	(copyfiles
		(help @copyfiles-help)
		(source "C/WBInfo")
		(dest CommandsDir)
	)
)
(if (bitand WhichCommands 9)
	(copyfiles
		(help @copyfiles-help)
		(source "C/WBRun")
		(dest CommandsDir)
	)
)

;	= ARexx =

(if (bitand WhichARexx 1)
	(copyfiles
		(help @copyfiles-help)
		(source "Rexx/DeliPlay.rexx")
		(dest ARexxDir)
	)
)
(if (bitand WhichARexx 2)
	(copyfiles
		(help @copyfiles-help)
		(source "Rexx/View.adpro")
		(dest ARexxDir)
	)
)

;	= Scripts =

(if (bitand WhichScript 1)
	(copyfiles
		(help @copyfiles-help)
		(source "S/AssignVol")
		(dest ScriptDir)
	)
)
(if (bitand WhichScript 2)
	(copyfiles
		(help @copyfiles-help)
		(source "S/Extract")
		(dest ScriptDir)
	)
)
(if (bitand WhichScript 3)
	(copyfiles
		(help @copyfiles-help)
		(source "S/LhArcDir")
		(dest ScriptDir)
	)
)
(if (bitand WhichScript 4)
	(copyfiles
		(help @copyfiles-help)
		(source "S/LhArcVol")
		(dest ScriptDir)
	)
)
(if (bitand WhichScript 5)
	(copyfiles
		(help @copyfiles-help)
		(source "S/PPDocToCed")
		(dest ScriptDir)
	)
)

(complete 100)
(exit)

v =     Xinclude> ܐ     H I                                                                                                                                                 Ȑ^ !  h  b	Installer< p        W  !    WH~$H$ I   ,x G  Vr  <  `&Q)O4)N,B0p "<  0 NCp N)@fpd`  &n)k (J g     8 )@ k "h  r )I<Ё^@)@DH@@"<  N:LJf <  / `  @)@@ Sԁ   SQ   S "    Q "/`x)k :pRѬA \NA \N)@0/ $@ * $g,l @"(  N)@(" N"*  g$<  N)@8g
 @'h   l0/Hl h $)h <N N p ` / .l4/  , g @N N rN bJ0g*,l",8gN",(gN,x N|"l0N` ,Dg"l@,x N."lTR   , , ,   Nb L~Nudos.library   N UN UN ZlN VH0>/ &lΰE B r 2 /N  8XO$@ 
f"|  Hδl H"f$k `RFP` 
LNuBAD TEXT  MINUSER DEFUSER PRETEND SCRIPT  APPNAME LOGFILE NOPRETEND NOLOG NOPRINT PRINT LOG LANGUAGE  FALSE NOVICE  AVERAGE EXPERT  .info .font Ba )@HHx a )@LHx a )@PHx a )@THx "a )@XHx #a )@\Hx $a )@`Hx %a )@dHx &a )@hHx 'a )@lHx (a )@pHx )a )@tHx *a )@xHx +a )@|Hx ,a t)@׀Hx -a h)@ׄHx 4a \O D)@׈Hx 5a L)@׌Hx 6a @)@אHx 7a 4)@הHx 8a ()@טHx 9a )@לHx :a )@נHx ;a )@פHx =a )@רHx ?a )@׬Hx Ba )@װHx Ca )@״Hx Da )@׸Hx Ea )@׼Hx Ga )@Hx Ha )@Hx Ia )@Hx Ja O D)@Hx La |)@Hx Ma p)@Hx Na d)@Hx Qa X)@Hx Ra L)@Hx Wa @)@Hx Xa 4)@Hx Ya ()@Hx Za )@Hx [a )@Hx \a )@Hx ]a )@Hx a )@ Hx a )@Hx ^a )@Hx _a )@Hx aa O D)@Hx ba )@Hx ca )@Hx da )@Hx ea )@ Hx fa |)@$Hx ga p)@(Hx ha d)@,Hx ia X)@0Hx ja L)@4Hx ka @)@8Hx la 4)@<Hx ma ()@@Hx na )@DHx oa )@HHx pa )@LHx qa )@PHx ra O D)@THx sa )@XHx ta )@\Hx ua )@`Hx va )@dHx wa )@hHx xa )@lHx ya )@pHx za )@tHx {a |)@xHx |a p)@|Hx }a d)@؀Hx ~a X)@؄Hx a L)@؈Hx a @)@،Hx a 4)@ؐHx a ()@ؔHx a O D)@ؘNuNUH &m C,lN:C KNCA fpNH 9@"r 2+ R"l i t 4( ҂^9A+  gr>`r8HNOD9@LHN]Nutopaz.font  english MEi intuition.library graphics.library  layers.library  icon.library  %s
 RAM:  Error not Trapped!!!

  PRT:    No choices offered  No choices selected 
>%s
   %s
 Version %ld.%ld   
 ) %s%s  %s (%ld%% %s)%s (%ld%% %s)%s  N,LJ f lLCLf)l4P)l8T)l<XHx Nt)@\Hx NhPO)@`NuH0&o $k >~  
g*0< j r@Af0* @0< j r`Afj $R` LNuNU|H72.- &m | Bp r)ld)lh)l l)lp)lt)l,x)l|)lڀ)l ڄ+@;A;AC<,x N)@Jg 	C8p N)@Jg 	C6p N)@Jg 	C2p N)@Jg 	NK.Jg 	Jf 8;| )K l ( g 	trnr  H"l i $"h ;A+IJg 	J $I)J+@" ,lN+@| m,lN+@"-|,lN -g 	/,8/, / NKO J@g9| /,</, /-NKO J@g9| /,8/,/-NKO J@g9| /,</,/-NKO J@g9| /,/-NJPO+@g
 @CLf/,0/,(/-NKbO J@gBl/,/-NJPO+@g
 @C쀮f/,0/,/-NK(O J@g9| /,0/,$/-NK
O J@g9| /,/-NJHPO+@g8 @JfS RB/ NKPO$@ J)Hg m"Jf`
;| ` /,,/-NIPO+@g4 @JfS RB/ NJPO)@g m"@f`
;| ` n m,lNpmg  ` TBmHl<HzNIrPOpgpf k p?f
;| ` "z Hl Bm0-r	AlRHr0,Hf< H2-HAd/0 /3 NHZPOJfm l S"HgRE`Rm`p	mf$Bm0-rAlHr0,HgRm`0-@ 	d @0; N   " 8 ~      H$s )J`   H s C쀮f`   H/,</3 NGPOJf
9| `   H/,8/3 NGPOJf  9| `   H/,</3 NGbPOJf9| `b H/,8/3 NGBPOJfJ9| `B H s CLf`. H)s ` 9| `Bl`9| `
;| ` rp2-`2,@9ARE` < 
f
;| ` La vBm0,2,Ad9AAC"BHlLNGHx / HlNGO A)HL;|  l0( r$AeBNHLXO)@f&` ,HA <  ZrNVJg A)HBm l0( r$Ae  BHl l/( 0NFPO l+HgV l0( D@2( 
DA m4(  h RB"l6) ;@;A;BCo;C0( "h R@2) ;@Aoh;A`bp  l2( 4( ;@;@;A;B`B l ( Pg" @;h  @;h 
 l;h D;h F`p ;h ;h ;@;@"l i )H/a XO0,mn
0,mo4Ax,lN)@)@fHx N^.a CXO` /,a :XO0,9@N2,9AL4-HHJjR2-Hԁ9BH2-HHJjR0-HҀ9AJAH,lN4)@2. t$Be/,BNDPOJfHx N.a CXO` 0|/
$H l"l,lN$_N|NFR l( 6HHX9@( 8HHX9@( 7HHR9@
( 9HHR9@9h 9h 
 h 2)H"H l,lN/,a XO9@ -g" ,lN+@NDxJg a B/
NDPXO)@g A쀮"HJfS"	H//NE" l4 )@8 lJfS쀌 H./,ND l, )@0a C"O Jf   l    op`p " H"l i $"h Hx :/	;@+INzPOJg mC,f`60-H"l i $"PHx Hl,/	NDHx /-Hl,NCO A,"HJfS 	H/ /NDFPO l< )@@Jf/,THx a =PO`  NC lD )@HJfHx N.Hx a =hPO`Z0,fBa XOJ@gHa A0a 5: l/( NBa BXO,LJ fJlf a 4 `] g,LS g
Hz:NCZXOa */,NB.@NC2.HNC*.8NC".NC.0NCXO`Da AJgp`pH/ N./,/ Hx a <O `Hx N.Hx a <POJg"-,lNNB ,g
"@,lN ,g
 @,lN-  ga 0-S@mf@ l`@0; N    & 8 JHx  N~.a ?XO`:/,Ta ?XO`.Hx !N`.a ?XO`Hx NN.NBXO`
/,PNAXON@ ,g
"@,x Nb ,g
"@,x Nb ,g
"@,x Nb ,g
"@,x Nb H/ NBLL\N]NuH &o 0,U@fp` 9| /a 5XOJfp ` 0,g/a 7NXOJfp `  p 0, l$ p 0, l( 0,fJlgp9@0,rAd  J@g lL`A>"$<  ,lN)@f$Jlgp`pH/ N..Hx a :PO` l lp 0,r 2,C\/1 CP/1 /,H/NAO r:d4",,lNBJlgp`pH/ N.Hx a :`PO`  pLHNuH'2&o  $o $z "$<  ,lN. Jg8"
$<  N, Jg //N?VPOS@WDHH*",lN"Np@f"N LLNuH  ,g  " ,lNB0,S@f   lD&PTJgrHlLN?XOALf  KC,fHx HlLHl,N?O `C,f lLC,fJ ff&lL`"Hl,/,La POJ@gG,`
&lL`&lL/N>XO `p LH NuH 2&o )K l"Kp" ,lNJ K"lpNPJg l"lN2LL NuH 2&o $K 
gpj g   $R`/
 K"lp,lNP$_LL NuH &o  l"Kp,lND l/( VN>,XOLH Nu/&o /a.aXOB&_NuNUH'2p ;@;@Bm l h V,x N+@Jg 
 @.( :( ;h &h ;h "   f/ N=xXO;@J@g~ HG* "m,x N Qg pQg `rg  r g \  g:  | g   g    g ` ^p 0/ NjJXO&@ g J ` 
p_@fHx d/,N=PO&@ g ` 	pE@fHx [/,N<PO&@ g ` 	pL@gpO@f"Hx b/,N<PO&@ gJ f  ` 	pM@gpN@f Hx c/,N<PO&@ g J f P ` 	|p`k &f  m Jg 0-H/ //N`O +@ m "( g j!@ "P/NvXOU@g /- /N\PO m J f ` 	 ( g" ,lN+@ m  ( "P,QT"t,lN/  m /( +@NaPO m J g"-,lNJg  m /N{6 m "( ,lN m !m a 9 m 0( "HC ./ Hl/( NvP m  a : m B Hx `/,N;>. / N\Hx a/,N;(. / NZO (` Fp m h  g 8//N[PO m  ( f `  ( "m  Q"PT/	 m /( N`XPO` 0-H/ //NfVO +@ m  g2Hx `/,N:&@. /Nd m !m Hx //NaO ;|  l < @x,lNj` 0+ &rbAgrcAf  J g n l < @x,lNjpbk &fp`pBm;@H m "( ЁH m 0$(  n "!A (!@ JgHx `/,N9. / N[`O `Hx `/,N9B/- / N`O Hx a/,N9. / NYTO ` k W &d  pk S@fz+  gr+   fj+  fb$l 
gDg<pj S@f2*  g**   f" j ( (f*  gB/,/
N9bO $R`Hx /,/N9LO ` 2 ` p`k &f"Jmg Bm l <  x,lNj` 0+ &rbAgrcAf&J f ` Bm l <  x,lNj` r^Af   m  ( g " ,lN.+@Jg  m /NxXO m "( ,lN - m !@ "( g
/ /N^POa 6 m 0( "HC /	/ Hl/( Ns m  a 7X m B Hx `/,N7. / NYHx a/,N7. / NWO (` r]Af  m J gr/NwZXO m  ( $g
" ,lN m !h  $B C /	Ny m  B Hx `/,N7x. / NXHx a/,N7b. / NWO ` J $g x/NvXO m  ( $!@ B $ ( g/( / N\POa 5x m 0( "HC /	/ Hl/( Nq m  a 6: m B Hx `/,N6. / NXdHx a/,N6. / NVzO (` raAf  +k " m  f "m  )  r 2( N7"<  N6.,  ) g #@ (#F JgHx `/,N. / NWO ` vHx `/,NB/- / N]FO ` Vr\Af   m Jg D ( g < @C PHx/	N7:PO+@g   m /Nu m "( ,lN m !m a 4( m 0( "HC ./ Hl/( Np m  a 4 m B Hx `/,N~. / NWHx a/,N~. / NU*O (`  l h .,lN m /( /( N[ PO` prdAgrZAgr[AgrYAf ` *rWAd Jpk S@f > ` ;| ` .E f8JmgBm l <  x,lNjJmgBm l <  x,lNjph@f p ` 0| ` 0-g  Rmrmf  BmH m "( ЁH mj$(  n^!A (!@ JgHx `/,N}. / NUO `Hx `/,N}B/- / N[FO Hx a/,N}. / NSO Jmg 8Hx `/,N}d&@ l0( H./- /N_O +@ m  g  //N] m !m Hx //NZO ` Jmg  Hx a/,N|PO&@+k " m  (  r "m2) N4"<  N3,  ( gD!@ (!F JgHx `/,N|. / NTO `Hx `/,N|B/- / NZ6O "l i Vp ( r ,x N` &LLN]NuH 0&o /a XO$@0|g 
L NuNUH l h V,x N+@Jg8 @.( <( &h "@N   f
pE@fp`p@fpXk &fp`p LHN]NuNUTH?2&m $m +lp>,<,:,"l i .p ( 2,H4,H4,H4,H6,
HÔ6,HÔ/// HmtN2O Jg 4 -pg/ a XOC,lN:At+H0,H2,
H4,H6,HÔ6,HÔ6,H/B ,4,
H4,HH * lCt &(/ 8|`܆NL p/
/ m NPO( 0,H2,
H4,H6,HÔ6,HÔ6,H/B ,4,
H4,HH $ /C <&Ap " "l,l(/ 8*/ <|`܆NL p -pg)@/
"@ lp" ,lNJ$_HmtN2&9G9F9E LL0N]NuNUH 0&m $m Ba XO+@g0|g<pd mh &f 
gHz/
/a O  m0( &rZAgr[Afr 2  `$ k T+  gp`p/ /N10POJgpZL N]NuNUH!0&m $m .- Ba &XO+@gpd mh &f 
gHzD/
/a O  m0( &rZAgr[Afr 2  `p 0( &r$āgr 2  LN]NuNUTH02&m $m Hx \/,Ny "@ i ",P+@T+NAfHx ,HmXNfHx `/,NxHmX/ +@TNUBHmX/-TNVdHx a/,NxHmX/ NNO 8HmXa :XO+@Tg @2( &tZBgv[Cf.BfHx `/,NxhHmX/ N[.O )@p  mT0( &`00( &r
Adr 2  `pdh &f 
gHz
/
/a LO `LLN]NuNUH2&m >- p ;@;@ <   r ,x N:$@ 
fp ` dN @+h r!A Hx/+@N/PO* Jf   K"Jf/
N/XO @+HSVDHH;A+HSAfp:fp @ Bm`BHx/
N/:PO* JgJGg J"Kfp;@`*Jmfp: mf;| `JGg J"Kf;|  m!m pmf m X/NoXO m  `h",lN, Jg ` " N m !@ a + m 0( "HC /	/ Hl/( Nh< m  a ,O ",lNJg"N"J <   ,x N.0-LLN]NuNUH72&m $m Hx \/,NvVHx ,Hm+@NcO ;| +  gHmNnXO+@`v"m i "+  WD HHH/ /Hma O J@gJ l"mp,lND.  H l"mN/
 m"lpNP$_/
 m"lN2$_Bp+@;| Hx \/,Nu+@BHx `/,Nu~Hm/ NMHx a/,NuhHm/ NKO (Hma XO+@Jg @2( &tZBgv[CfTBt[BfJlNf/,8N,XOJg/-NkHXO -g
" ,lN -g
" ,lNp  m0( &` pdh &f 
gHz/
/a O pY m°h &f `Hx \/,Nt"@ i ".+@NuPO+@Jg 8<+ J+@HzHm/a .N,O  -g VJlg
+  g < @T2+ JH//N,&POJ@g " l"mp,lND.  m P"mTf m PHx/N+PO* Jgr/-Nj*"-,lN+Ea (0-HHm/ Hl/-NeT+@a )BHx `/,NsHm/ NKHx a/,NsHm/ NIO 4`4 l h .,lN m"m P,m0. 6H/ /	/N+6O  H l"m,lN/
 m"lpNP$_ mT//,XN*|PO/-N*XO7F J` LLN]NuNUH!2&m $m Hx \/,NrHx ,Hm+@N`O ;| +  gHmNkXO+@`d"m i "+  WD HHH/ /Hma O J@g8 l"mp,lND.  H l"mN/
 m"lpNP$_Bp+@BmHx \/,Nr6+@Hx _/,Nr&+@Hx `/,NrHm/ NJ4Hx a/,Nr Hm/ NHJO 0Hma XO+@Jg @2( &tZBgt[BfJp[@f/,,N)XOJg/-NgXO -g
" ,lN -g
" ,lNp  m0( &` pdh &f 
gHzV/
/a O ` tLLN]NuNUH0&m $lB>,<,:,
8,Jlgp `^Jlfp9@`P67l 7l  
g/
a tXOHx BHlHmNUD 9@ 9@ 9@
 9@)Jڈp9@LTR   , , ,   40	N]NuNUH?2&m $m Hx W/,Np+@>,<,:,
8,)Kn)JBBHlVHmNT"lp ,lN m0( H2( H4( H6( HԃS6( H/B @4( 
HւS"l$/ @N0,H"lN 9@ 9@ 9@
 9@ -LLN]NuH 2&o Jlg</,a XO ,ڈg)@"@ lp" ,lNJ)Jڈ9S9k 9k BlLL NuNUH'0&m $m B+J<,:,;l
;l l0( :R@9@"m QT)HHx N+@A+Hp+@p+@A)HHx /HlHmNSzHx /,NoO +@Ba XO+@g @2( &tZBf~`p[@f~ /-a XOJf mB`."m i "/NoXO m  m0(   gp`p 7@ J9F9E9m
9m LN]NuNUlH0&m B|<,:,8,
;lpHx N./ HmN\A)HHx BHlHm|NRa $O Ba XO$@ 
g0* &rZAf~`r[Af~ /-|a a "9F9E9D
9mp LTN]NuNU<H0&m $m  m C`f/- Hm`N%(PO - g @C@f/- Hm@N%
POJlg+  g<J gA@`+ HHrH/ //
Hm`N%O . HJ,Lgp `~Jg/
Hm`/,\N$O pLN]NuNUH'2&m | z B$+H4+H+  WD HH9@ k TC8fHx :Hm8NZPOJfbB A8"t,lN+@$g"Hx Hm8/ N$O +@ "-$,lNJ f Hx bN./,Hx /,hN$Dp ` /<  HxN$BPO+@,Jf
NZ@p `  k T"t,lN+@$Jf"/,׈/,Hx /,hN#.,N#p ` "-$$-,,lNJf./,׈/,Hx /,hN#.,N#"-$,lNp ` b m,+h /N#jXO -Jo J >f ^+   f.p+ g&/, /,Hx /,hN#V"-$,lNp ` "-$,lN* +  f  +   g  Jlg+  gBHma k L]Hm8/-$N!Hm+@ a 6O J g+  g
Hm8Nt6XO",lN"-$N - g | k THm8//,`N"DA8"HJfS 	HB/ /N!` H+   gA` k T+H0+  gp@`p +  g"<   `r +  gr `rHHm/ //-$N[O +@`\"-$,lN* +k >0+ JH+@Jf:` P"-$,lNB$+k Ap+@+Hp+ "f
 k $T+H4+  f BJlg+  g
Hma XOB  -SJg  Jlg+  gLk L]  m p TB/-4Hm8/NO Jg  J f+  g
Hm8NrXOp+@   m p THm8//,\N O +  g4p + L@]  m p T/,@/-4/Hm8/a >O J@gB+  g4p + L@]  m p T/,D/-4/Hm8/a O J@gR` Jlg
+  g Hma XO` мl BA8)H&p+@ -萆+@  m+HA)H6Hx /HlHmNLO . Hx /,א/a O +@ Yfr/-a Hx N˪+@Hx N˞+@Hm8Ni+@p@@@9| NHma  BlN.+@NO  -g : @C8f` ,Hx \/,NgPO$@ j ""PM8fp f܇~ /-a XO` p[ f&/,N^XOJg & l"mp,lND` /-a ߠXO;| B Jlg+  g
Hma XO SJg &0-RmH/ /-NfPO$@*  g  a Jlg+  gJk L]  m p TB/-4Hm8/NO Jf~`  J f+  g
Hm8NoXO  m p THm8//,\NO +  g8p + L@]  m p T/,@/-4/Hm8/a O J@f~`F+  g8p + L@]  m p T/,D/-4/Hm8/a JO J@f~`R` Jlg+  g
Hma XO l"mp,lNDJo 4B+   fp+ f
/-N\XO l/( VNeXOJ$gJg
",lN"-$,lNa A8"HJfS 	HB/ /NLLN]NuNUH0&m B+k *0+ JH+@JfHzΨ/,\Hx /,hNO +k >A)Hf9| jHx /HlFHmNIfO , $mB/,ה/a hO . p[f/,\NXOJf`/-a tXOp[g^ H/ /
N:tPO. HpfHz$/,\Hx /,hNdO `, k T/HzN  k >"PT./,dNO a f LN]NuNUH0&m B+k *0+ JH+@JfHz͘/,\Hx /,hNO +k >A)Hf9| jHx /HlFHmNHVO , $mB/,ט/a XO . p[f/,hNXOJf`/-a dXOp[gr H/ /
N9.  k T.Hz*N O Jf/,hNXO`@/,lNXOz p @l. Hr g H k >"PT/	HzNPORE`a B LN]NuNUH0&m B9|Hx /HlvHmNGlO B/,ל/a tO . p[f/,DNXOJf`Hx /,Nb$@.a rPOp[fB`( j "+P k T/Hz8N../,pNO a  -LN]NuNUH2&m B9|Hx /HlvHmNFHx /,Nb^O $@ + FgJ2* j 
XA9A/+ F/+ B/,HmNOA"HJfS 	Hr .Hx // /N-O  B/,נ/a `O , p[f/,PNXOJg j ".(  Bm Fo,lN + */ /
N=vPO`/-a @XOp[f~ ` k T/HzN./,tNO a n LLN]NuNUH&m B|  k T+  gp`p/ /NPOJgp`  9| Hx /HlvHmNEnO :, l <  x,lNj/,פ/a PO. p[f/,ЀNXOJgpZf\ k T+  gp`p/ /NFPOJf: l h .,lNJFf9EHx <Nr .Hx // N.*O |` ~ l <  x,lNj/-a a VrZWD HHLHN]NuNUH0&m B$k >k  Jo RT`Hx NÌXO @)Hk  Jo j T`Hx NlXO @)HHx /HlHmND8O Hx /,ר/a >O , p[f/,tNXOJf`/-a JXOp[f~ `0.S k T/HzNPOJg l` l//,xNPOa f LN]NuNUH?>- 0,H"l,lN0,H2,Hr  l2( :R$H/@   N,"/  YJjRR(N(&z Gl   - g  &@0,2,A2,A]@H/ Hm N'PO, 0,HV2,H$H҂t  l4( :R&H/@   /A $"N"/ $Ҁp 0( >Ҁ"H /  ,lN H"l KNRE` lLHN]NuH0"lp ,lN0,HT2,HR4,H6,HÔW6,HY"lNL@NuNUH0&m $m Bx )JHx /HlHmNBF0,H2,Hr  l2( :RYN,  k T+HN&O z p@lFJg@ H+~ Fl*Jg$0,2,A2,AQ@H/ HmN&PORG`RE` H/ /-a  Hx bN1O p@f
Hx cN1XOBa XO+@g @0( &@ [g  _@gS@gr`JDoa  HS"Hf2Hx cN1Hx c/,N\Hx /@ (NX.// (/,N&O SDf
Hx bN16XO H"H//5a TPO` l HS"Hl \a 8JDf2Hx bN1>Hx b/,N\Hx /@ (N.// (/,NO RD HS"Hf
Hx cN0XO H"H//5a PO` /-a pLN]NuNUH 0&m BHx Hx HzŒHmNIA)HHx /HlHmN@4O  Ba ߀XO$@ 
gpj &f/-a ZpL N]NuNUH?0&m $m +H<,:,8,
;l"J)IgC`"H)I&J Bg0<AR9@B9@:9| J`p 9@B9@:9|"JHx /HlHmN?O Ba XO+@g @2( &tZBfv`v .BgSAf/-a Ӡ9F9E9D
9m LN]NuNUH0&m BJlNgp`p)@hHx /HlPHmN?.׬/a <. Hx \/,NZ$@.a .O p[@fB`> j "+P0,Nf k T/HzNPO0,NS@f l|` l׀/-/NPOa 8 -LN]NuNUH'2&m +H"k *T+H+H+I"	t,lN* JgX <  "<  ,x N:+@Jg2$ ",lNJg B ( JoC+I"B <  ,x N.",lNJfl/-NXO+@ mfBC+I`H"@)t:f,@t +@`.t/f,@SB+N`/,/,,Hx /,hNp `  )m)mHx /HlHmN=j.װ/a O , Jg mp[@fB`VHx \/,NX$@ j "+PHx _/,NX$@ j "Hx //-N k T.Hz0N&./,ׄNO $/-a ,a  -LLN]NuNUH0&m BHx NXO$@p+ f J`)H Hx /HlHmN<O J g J`B//a ސO . p[@f/,`NXOJf`/-a Мa LN]NuNUH 0Ba $@0,f   lD&PTJfHl/,״HmNE|O `/Hl/,׸HmNEdO 0,S@f/
/,׼HmNEJO `B-A)H8A)H@ ,g @T)HPHx BHl8HmN;Bp / / a ݰ.a a 0O 9| L N]NuNU/&m BHx /Hl`HmN;Zp&mN]NuNU+HHx /HlxHmN;4pN]NuNUH&m B+  fp`XHx /HlHmN; O Hx /,/a O . p[f/,NRXOJf`/-a a jrZWD HHLN]NuNUXH&m .- ,- B H@H"  // /,HmNCO Jg" H@H"  // /,Hm\NCO A)HJgA\` l)H k T)HHx /HlHmN:O Hx /,א/a  O * p[f/,NlXOJf`/-a ,a 
rZWD HHLHN]NuNUH0&m $m >- B H/ NXO'@ |   
gx j T"k T+HH Jg^JfSJfS "	ЁR/ NV6XO+@Jg2 @T+H"mfHz/-NN./-NBO 'm  -LN]NuNUH0&m +Hz 0,+HU@f9| p` a 
rHx /Hma Hx +@N+@Hx N+@Hx N+@Hl/,HmNB
A)H Hx HmHl HmN80,H2,HrN| .  rN|\2,HҀT9A ЀT2,HҀ9AHx N6A+Hp+@p 0,+@A)H0Hx HmHl(HmN8O HHx /,NSPO$@0,r AcHx B/
N(O 0,rAcHx Hx /
N(O Hx /,Hma O , p[fz `$pZfz`pfHzp / / a ZO `/-a ˺XOpfHx /
N(PO9@/-N{2a  LN]NuNUH0&m +H| $Ha Hx N:+@Hx N.+@Hx N"+@Hx N+@Hx N
O +@0,U@fHl/,HmN@<O A)H@`)H@ g K`Hx /Hmva $@A+Hp+@p 0,+@A)H`A+Hp+@p 0,+@A)HpHx HmvHl@HmN6NO 0,S@fHx /,NQHx Hx / N'O 0,S@fHx /,NQHx B/ N&O Hx /,Hmva O . p[f| `pZf|pf8Hx /,NQtHx / N'9@Hx /,NQZHx / N&O  9@/-a .Nyla , LN]NuNU H72&m $m B| a /N8XO+@ g"$<  ,lN. Jf/,׌/,Hx /,hNp `  - VB/ NyPO)@JfN>",lNp ` "$,&- ,lN* "Nܺg/,׌/,Hx /,hN2p ` x l"H Sp
@ +I*g@ p @ `B) )RJfHx 
/,N=PO+@*g
R)@ SC.fHx Nv+@| A.)HHx HmHlHmN46O /,Hma ֺPO* pg  p[f/,NXOJgpfv/-a @.NwHx N+@Hx N+@.NPjO +@JfN=L`pp@@@Hma $XO+@*JgP&B/-NwtXOB` &Hx \/,NO,.+@a ǺPOpZf$"m i "&|/,Nw2XOa  LL N]NuNUH>- 
JGfa N<GA Hm /- /N6O +K| Bp@f l`Hz/Hma ҾO , JGfa z LN]NuNU/GA Hm /- /N+K| Hma &mN]Nu/ l g&@TJfp ` &_NuNUH0&m $m +H>,<,:,
8,"J)IgC`"H)Ia)@gA`)HJg,L] gA0`)H Hx /HlHmN2O Ba NXO+@gpZ mh &f/-a $9G9F9E
9Dp LN]NuNUH>- 
&m a :p@fdp @@ a Jg| ( /Hm N.Hm N l .NO.Hm Nza O JgHzHm NbPOG `*a Jg"| (  KCfHzvHm N6POG /NM+@| Hz/,Hma .NtLN]NuNU/a jHx N+@| p+@Hz/,Hma Ў.  .-N]NuNUH".- )Gpf*J,g l`A//,HzHl؜N9O `  Hx NzXOJ,g l`AT// //,HzHl؜N9O Bm"l i .+h (A؜+HBA,lN,  l0( H2,Ho0Hx NXOJ,g l`A// /Hz6Hl؜N92O 0|$H lC؜,lNLDN]NuH02&o )KHx NXO)@0/ lCp " $<  hvP,lG$N&_LLNuNUH1,S g  ,J fl l0( r$AeC솘`C8&IAepH`p`. "K,x N  g)K`*Hx /NrPO)@Jg"@ K ,x N`p@p@,S gR l0( r$Aet`tAev`vAep `p/@  $,H l"lr&/ N| /,a LHN]Nu/,J g l,lNB,/,a XO,_NuN  N  gN  tN YN  N  N  (N  N  N  VN YN \XN  N  N  bN  N ^tN  VN  sPN  ^N  N  uN  iN  N  N  lN  N  |TN  vN  N  N  tRN G^N  |N  N  N  0N KN  HN  ,N JN ^N  xN  zN HN  tN  sN  [N FN K N  N  sN  {vN  vN  N  DN  {N jN P,N YHN IN JN N ZN  ^N  ,N  N J N  gN  tN  ΰN  zhN  N N  N N IN  N HN  tN I|N  [
N  yN ^`N GN  N \8N  N N  lFHp  l0( Hx d/ Hx N5. .  Hx $No)@.  Hx $No)@.  Hx $No)@Hx Hx No)@ @0 l1|33 .  Hx 
No)@.  Hx 
No)@Hx Hx Nox)@"@Ap,x NHx Hx ~NoX)@"@Ap~,x NHx Hx ~No8O @)@"@Alp~,x N)lP)ld)lx0,    g(Hx /,HlN  <Hx /,HlN  <O 0,   g4 l Hx /HlN  < l Hx /HlN  <O 0,   g:Hx /,HlN  <Hx /,HlN  <Hx /,Hl4N  <O $0,  gL l Hx /HlN  < l Hx /HlN  < l Hx /Hl4N  <O $0,   gHx /,Hl"N  <O 0,  g l Hx /Hl"N  <O A"lp
,x NA"lp
N Hr	JjR9@9@pL@Nu_ ... -       %ld NUH?&m >- <- :- 8- SESDJEo JDo  Jm g0,H`0, H"K,lN H"H$HR&H/B ($HւTR   , , ,   澾	#"K$/ (NJm g0, H`0,H"KN H"HЁS"H$H&Hԃ&H/B ($Hւ"K$/ (N HR"H$H҂"KN H"HЁ"H$H҂"KN
Jm g0,H`0, H"KN H"H"KN H"HЁS"H"KN
LHN]NuNU  H00&m $m 0H2* H4* RH6* j HB//// /a LN]Nu9l
0,2,AR@9@BNuap 9@d9@9@9@BNuH >/ p  l0( :Z"HNk, 0,H2,HЁ"HJjR9@"JAjRAAA9@L NuH8"lp ,lN0,H2,
H4,H6,HÔS6,H8,HĖS"lNL@NuH &o  KJfS "l K,lNLH NuNUH/2&m $m  m JfS *Hx _/- N0:PO"H+@ "K m ,lN. Jg"KA&pNʞ@0* H"HJjR, 0* 
Hr 2+ :JjR2* HҀp 0+ >ҀR0,H;A"KN0* H"HЁ2-H"KN -g   m c
 "KN;k $R -"  $H("H @ "KN"K mpN. 0-HS2-HT"KN0-H"HЁS2-HT"KN
` H"K m NLLN]NuNUH92&m >- $m p7@ r7A 7A 'J ,7G &A 0'H C  'I C pM !N 4, B t B vC !I 0+ ( UD20+ 
( SD3D 
3A 3A 3A 0) 
S@3@ +I +IC  +H/I  "H o      0,@ B C -m  m1A 00+ 
S@1@ 1@ 4+ SB1B 1B 0( S@1@ 1@ 0( S@1@ A  +N"N    pѭ m "m#H 0,@ 0, @ +H 
g/
//,a RO  m & LLN]NuH?2&o (>/ .</ 2:/ 68/ :0," RA9A Af$HHx /
Ny5F 5E 5|  5|  
p 0.B/ /
a >O   0,H"l,lN"lp NJDf l` l H^"HVH $ &p r"lx
zNL 0LLNuNUH?&m >- <- :- 8- 0,d" RA9Ad VAHx V/+HNxPO X@ m1@  T@1@  Q@1@ 2- $YB1B 
1|  1| 	 1|  1G &C B!I C ,!I ""l0) t$Be9| `p9@1h  F1h 
 H0,@ Q0,1@ ,p1@ 41@ 2 H$H&HHB//// /,a  m &LN]NuH;0&o  >/ &0,, F 0," RA9A Af$HHx /
NwPO0," TA5A 0," RA5A 0," F4,BYA5A 0,2,$ AYB5B 
p5@ 5@ 5|  5G &0,H2,H4,F6,CH6,8,DUCHB//// /,a >O $&LNuNUH?0&m $m >- <- :- 0," RA9A AfHx /+HNvPO0,H2,H2,H"HNdU m1@  g1l `0 g2,4,&B@1C `2,HHJjR1A  l0( :Z@ m1@ 
  g2,@(SD1D  f$9D`2,1A  f0( 
R@2,@9Ap 0//
/ /a LN]NuNU  H0&m $m >- <- :- p 0" A  A HHx // /
/a O p 0" A HHx // /- /a LN]NuNU  H0&m $m >- <- :- "8- &p 0" A  A HHx // /
/a HO p 0" A HHx // /- /a &O p 0" A HHx // /- /a LN]NuNUH0&m $m >- <- :- 0,"  AfT@9@C Hx0/+H+INtPO0,H2,H2,HrNbU m1@  m1@ "m3l 0,2,Ah 1@ "l0) :Z@1@ 
"m3@ 
  g 2,@(SD"1A 3A  f(9D`"2,1A 3A  f0) 
R@2,@9Ap 0//
/ /	a p 0./- / /-a LN]NuNU  H&m >- p  m 1@ 0<1@ 1|  1G &C ,!I "C P!I ,Cڐ!I 01|  6"l0) r$Ae0)l
0,@@0) Af  `  C
!I DC P KfLN]NuH1&o >/ HxP/NsLPO0,2,A4,BQ@7@ 2,XA7A  l0( t$Be l0( :R@7@ 
`"l i .0( R@7@ 
  g" ZA4,&A9CTC7C `2,$TB7B 0+ 
" ZA6,A9C0+ Y@H2+ UAH4+ PBH6+ 
XCHB//// /,a O 0+ U@H2+ SAH4+ XBH6+ 
TCHHx //// /,a `O LNuH10&o >/ 0," RA9APAܐ$HHxP/
NrPO0,r4,H0,Q5B 0,X5@  l2( :RA5A 
 Z@4,&@9CTC5C 0* U@HSCH2* XAH4* 
TBHHx //// /,a O 5|  Bj 5|  5G &$&LNuNUH0&m $m >- <- 0," RA9APAܐ H/ /+Ha p 0./
/-a 2 m &LN]NuNUH0&m .- <- :- 0," RA9APAܐ$H H/ /
a ~Hm/N$p 0.Hm/
a O $  %G H&LN]NuB,.NuNUH'0&m >- $S l+h ,+h 0| z Bm+Jp,.,  .gp ,/`p B,/@@Go  JEf  J-g4, .f, S$H| ;F .+H,  .gp ,/`p @` .Bmm l8Sp H J-fr"Af@`p -2-HfB-Rm`&Sm`  & -;@A`  p H r
Af&`  -g, .gt Bf:-+JAJ@fB`  Jfr"Af@`r -HfB- l(   gJ0-Hr ( !n:0-Hr (  m*0-Ht " Hҁ m40  mp B;@`0,"@Rm` -@/g  .`B,.0-LN]NuNUH?2&m >- <- :- 0,2,A2,A$Kr ;@;A;AJFg l0( :" RA4,&A9C;C`0, l2( :RA;@A9@ H"H J,lN;@p0 f  0-monHx :/
N!POJfHx //
N!POJgNr:gr/gRSG`RSG H"l J,lN?@ $"lApN2/ $@;| ;A`0-mo RSG H"l J,lNBm;@`-  g8"lAxp,lN2-H;@HҀ0-Hn0-mp;@  g0,H2-HJjR;@`
0,V@;@ - r g  rgr0f@"lp ,lN0,H2-H4,H6,HÔ6-Hx  l8( :ք"HN gp/ / /,N O 0,H"l,lN0-H2-Ht  l4( >҂"HNJmg"lAjpN H"l JNJmg"lALpN gHx B/,N O LLN]NuH7&o >/ "</ &:/ * KJfS H"H$Hv 6//// /a 2O LNuNUH?&m >- <- a   gV+K0,2,A2,AQ@H/ Hma  *  H"H$Hv ,.xƄHCBC./// /a O &m`LN]NuH&o >/ 7|  7| 7|  7G &A숂'H An'H LNuH&o >/ 7|  7|  7|  7G &AZ'H AF'H LNuNUH?2&m $m >- <- :- ;|  @ gp	`pr  l2( :Hx d// NO 2* RQA4* H6* HÔ;@HRY/@ ( ;A"/ (NX"A E ;@;A+H+Hp "H4-H҂S4-H;@;@ "NXV;m;@p ;@;@0-mlvp ;@;@0-2-@lR4-H҂;A̲Gl: H m  p T/a 6XOHrAfr `rЁP;@2-β@l;@Rm`0-mRm`0-mo  Jmf Fpmf  Jf  Ax,lN+@Jf
N|p `  l+h 4"H m,lNJEgp	`pr  l2( :Hx d// N2O 2* H4* H;@H4-HЂY/@ ( "/ (NW;@` 0-2-4-;@;A;B`  Sm` 0-" 4-;m;@;AH Gl>JmfVJg JmgHBm6* H8* HĖY8-H "NV;@` 0-H"H2-HmSm`  0-g2-4-;@;A;Bp 2-H4-H2-H;BH4-HR;@ "NV2,j @XA4* H6* Hԃ6-H8-Hք8-H;@ ;A"NVDJjRBm;B0-ml p ;@;@0-2-@l 4-H҂;m;A̲Gl 0-H2-HЁ2-HNU2-HҀ;Ap@g20," RA9A ,AHx ,/+HNg"POJf+mJEf*0-H2-H4-HB/Hx // /,a O 0,H"l,lNp@fp `p2-HҀp  l0( >4-HЂSJjR4-HԀ"H "N0-H m  p T"HJfS+H 	"lN/-a XOrAft `tHЂ;@4-δ@l;@κAg   m1m JEf0-H`0-Hr	JjR4-HԀ 1@ JEfp`p1@ JEf0-H`p	1@ 
!m (JEf RFr 2 //a dPO` RFr 2 //a PO m &RmRm` 0-mmRm` Jg"l m,lN"mN0-LLN]NuH2>/  H/ /,N+PO&@ g pk g    K"lp,lNPLLNuH92>/ " H/ /,N+@PO&@ gbpk g   "lp ,lN0+ H2+ H4+ H6+ HԃS6+ H8+ 
HքS"lN K"lp,lNPLLNuH2&o >/ "</ &SFGg&S`   z  l( c0, l@ c"H Kp,lNP  l@ cLLNuH&o >/ </ SFGg&S`  LNuH&o >/  SGJ@g+  g `&S`pLNuH&o ./ </  Hr* SFJ@g g  `  &S`LNuH&o >/ |  Hr* SGJ@g+  g&S` LNuNUH?2&m $m +K * "* n$.<  |  l4( v$Cdp8+ 
 m1D H`b"<  NQ"* N.  * "<  NQ"* $* &"N,  l0( r$Ad0+ 
r 2  * NQ<"N m1@ H0,H/
 K"lr $&<  (z,lN,$_LLN]NuNUH?2&m $m  l0( :* RE8+ 
 H;@"HJjR *  . 0+ H;AHЁ"Ё, "Hp,lN0+ HX"H4+ H6+ Hԃ[&H/B ,t  l4( :ւS"H$/ ,Nr,lN:0+ HX"H4+ H6+ Hԃ[&H/B ,t  l4( :ւS"H$/ ,,lN"lpNLLN]NuNUH?2&m $m  l0( :R@2+ 
;AH;@4-HJjR * &* (+@ꐃRVDHH;AH%A ~ +@H H JCg2-Hl2-HDnp ;@JmfF"lp ,lN0+ H2+ H4+ H6+ HԃS6+ H8+ 
HքS"lN`   -Jj" D;AJo2-H. Hѭ"lp ,lN"lp N0-H"-NN2+ H4+ H6-Hԃ6+ H8+ HքS8+ H/C 06-H؃6-H/@ $ * /A ("NN؀S/&*"lp "/ ($/ ,(/ 4Nt* -갪 l bml Z0+ H2-HЁ"Ё, 0+ HX"Ht  l4( >҂"H,lN - R/NlXO, p@gp@fh"lp,lN"lp N0, H"lNp@fpzF `pBЀH/ NXO @"lp,lN"lp N"lA:pN"lp,lN0,H"lN"lp N - R"PT+IJFf4JfS*	 H"l mN"lApN HRѭ mJfS "l mNRGR` p%@ (LLN]NuNUH0&o ($o ,>/ 2 l0( :* RE H"* NL2+ 
HJjR(0+ H"HЁ"H H/@  "/ NLJ,  lJj * `ܪ  * l LN]NuH2&o ./  l"K,lN,  k "/Hz/NO  k "!G  H l"K,lN K"lpNPLLNuH2&o $o  l"K,lN. A P"Jf H l"K,lN/
 K"lpNP$_LLNuH2&o ./ JgJ l"K,lN,  GC P0+ 6H/ /	/NKO  H l"K,lN K"lpNPLLNuNUH 0&m $m p  l0( :R2+ 
H/@  "/ NJ%@ Bp %@ %@ p%@ (+l mgr	f  R`+lHx 
/-NfPO+@g RR  -",f%j  ` * " JjR$* %B  * Ԁ"* o%A  * JjB LN]NuNUH?2&m $m >- +l l0( :R@2+ 
;AH;@4-HJjR+j | ;A;B HlHx 
/-NPO @C +IRF`JGfB"lp ,lN0+ H2+ H4+ H6+ HԃS6+ H8+ 
HքS"lN"lp ,lN0,H"lN0+ " TAH4+ &RCHk W@Hk 
UBH// ///,a O |  -谪 l  ml  0+ H2-HЁ"Ё* 0+ HrЁ"Ht  l4( >҂"H,lNHx 
/-NPO+@f mJfS""m,I+N -*  H"l m,lN mR+HRFR` P0+ H2-HЁ"*  4-H/@ $ NH"/ $ҀS*0,H"l,lN0+ HX"H"lN0+ H2+ HЁ["H"lN
0+ HX"HW/$ & lp r"lx*N*"lp N0+ H2+ HЁrf"HY/$ & lp r"lxcz	N*0,H"lN0+ H2+ HЁrf"HY/$ & lp r"lz	N*/,a t"lp,lNp%@ (LLN]NuNUH?2&m $m  l0( :, RF:+ 
 H(  "HJjR0+ $ TBH6+ RCHk W@H;A2+ k 
UAH// ///a "lp ,lN"lp N0+ H2-HЁ"*  $H/@ 8 NF"/ 8ҀS.0+ HX"H"lN0+ H2+ HЁ["H"lN
0+ HX"HWH $ & lp r"lx*NL 00+ H2+ HЁrf"HYH $ & lp r"lxcz	NL 00,H"lN.a 
"lp,lNLLN]NuNUH0&o ($o ,>/ 2 l0( :* RE H"* NE2+ 
HJjR(0+ H"HЁ"H HJjRҀ H/@  "/ NE@/* / BN ,  Ъ . / BNLN]NuNUH0&m $l,+ ~  HlHx 
/
N
PO @E RG` 
LN]NuH' >/ p  l0( :Hx d/ Hx 	N
O , 0,H2,Hr  l2( :$HR["ND* GlR HR"HNDr 2( :Ё2,H4,H^,  J@jR@@2,@9A J@jR@@2,@9AL NuH0>/  l&h > gBAfe6A޷d.Hx _/+ ,N	PO$@ 
gp * / N	XOr 2f `&S`p LNuH 0&o $S 
g
+  g$R+  g 
H/ NpXO$@ 
L NuNUH?2&m $m >- B gNn f  ga `Jf  ga `a ״ ga 4p m h rAgL 
gRp* 
f
"j T)I0* ( f"j *,IT)N4* f
"j T)I8* (f"j *T)I<`
 
g+j */a XOz m h "+@SAm A l A2;N~"   zz (8 Hx W/a $PO` `p  m 0( rprgrgrg,` <0, m h 9@` (0, m h 9@`  m 0( H/ a XO` Hx `/a 0,H2,H4,6,C6,CB H6,8,DUCHB//// /,a O ` 0,2,A@ H2,H4,6,CB H/Hx // Hx a/a |O ` h0,2,A@ H2,A HB// Hx b/a ي0,2,A@ H2,A HHx // Hx c/a ^O (` 
 -g  m 2( $JB H&KKC HA px 8//// a O `  -g  m 2( $JB HIIA H/// a O ` p  m 0(TR   +S+S,  0V 2( IA H// /-/a O pp m h rAf X)S` Pp  m 0( 2( IA H// /-/a O pp m h rAf )S` ;l0,2, A;@Bmpp m h rAfR0,H2,H rN?)@ڌ2,HS;A0,H ڌS;@BHm/,a O ;| `Zpph r AfB ,ڌ" 4,HԁR;B刐 ڌ2,HҀR;ABHm/,a ӖO ;| `;l;l+m m ( H"m 2) HtBft`t vpi x0Dfv@փ`v H/// /Hm/a O HH p@f  m ( H"( H// /a O `" m ( rg"( H// /a O Jmg 9m` 0,"" Hҁp  l0( RJjRt  m 4( vpă;@;Avgvg\vg B` 80,H2,H4,6,C6,CH6,8,DUCH m 8( H///// /,a O ` 0,2-A9@0,A9@0,
2-A9@
0,A9@a 0,H2,
H4,6,C6,CH6,8,D8,
DH m 8( H///// /,a z0,H l( 6HHЁ9@0,H l( 8HHЁ9@0,
H l( 9HHЁ9@
0,H l( 9HHЁ9@a юO `  l( 6HH2-HЁ2,HҀ9A l( 8HH2-HЁ2,HҀ9A l( 9HH2-HЁ2,
HҀ9A
 l( 9HH4-HЂ4,HԀ9B9l
0, BR@9@` fJg ^p  m 0( rpr  gr  gDr g  r g  ` 0p  m 0( 2( IA HHx // /-/a O `   m P/a PXOr  m 2( t 4( 6( KC H/// //-/+@a جO P `   m P/a XOr  m 2( t 4( 6( KC H/// //-/+@a jO P `h m P/a  m  .+@a XOr  m 2( t 4( v 6( 8( LD H/// //-//-/+@a jO  pѭ  m 0( P   g  g(|  l( c0, l@ c/NXO  l@ c -LLN]NuH &o Jg S"l,lNR l,lNBLH NuH&o >/ "</ &:/ *8/ .9G@9FB9ED9DF/aXO,lN)@g @C@N S"l,lNR)@LHNu  N VN  N YN UN KN JN \N KN KpN  TN paH >/ </  @ "A  A(  Ѐ*  H@ "IA  A(  rN:&"HҀ* H@ "IA  A(  " 剒 HЁ*  L Nu/>/ 
p 0B/ a xPO.NuNUH?2 l&h . k 0h  dp9@9@9@9@ `  l0( r$Ael/NXO$@ 
gD j "HX09@ j "H 
09@ j "HP09@ j \09@ /
/N` n9|  p9@9@9| ` T k 0p ,lN.  k 0pN,  k 0pN*  k 0pNr 2/;@a r 2.;@a r 2-.;@a r 2t 4./;@a Tr 2t 4./;@a @r 2t 4-./;@a *O r9A ;@0-4-@o86-Co"x9D Clt9B9A`P9Ar9A`Dx9Dr9A`66-Co"p9@ Clt9B9A`9At9B`p9@t9B9| 0-2-@o4-Bo9| `mo9| LLN]NuN ^LN ^4H 0&o $K 0* L Nu#?.info #?.font : Work: SYS: trackdisk.device  H 0&o $K  * L NuH 0&o $K  * L NuNUH2&m $m  JJfS " Ҁ.P|  r ,x N:+@    H \                                               ~                                  
  	                                                             ꐾ   JgD"Y// /
N QO Rg//-N SHPOJg KJfS,"m ,x N. LLN]NuNUH'2.- &m <- $m B @ "A @$B F?Hm;@;A;BN6D.  HxN6`PO+@g F$ ",lNJg 2"$-,lNJg  B ( xJjrAgJoJFgC /,@/	NwPOJg mP"HJfS+IJmg mPHzB/a POgJmg mPHz,/a POg p mP//a hPOfp `p* Jf L/<   Hx 4N5PO+@Jg D @ "mPf m ( x"m#@  ( xJjp`p3@ #h | M  NJfS 3@ A,x N
R` +mJmg  BHmN|XO+@ -ذl   m Hz>/+Ha PO mJfSఈfvBHmN4XO+@ -԰lZp  m0( " Zt "m4) f*C r 2 //	/-N4TO Jf mBh S`R/-NXO+@`R/-NXO+@` @JFf  BHmNXO+@ -ذl   mJh g  C Hz\/	+Ia PO mJfSఈf  Hx ./-NuPO+@gl",lN mB+@"-t,lN+@g0" $-NJg B ( xJj mBh S"-,lN m ."-,lNR/-N
XO+@` ,/-N30 -R.   / N3(PO+@g  BHmN
XO+@Jg   mJh g  B -԰l   m/0 a $XOH m2( H+@вgSfP`& -"m"q TM A //	NtPOJo(+m -аo "- m! S`R` v - m "m# R/-N	XO+@` 2$ -` A,x N+@Jg
/ N2XO`p LLN]NuH 0&o $K gJg [  /N1XO`/
N1XOL NuNUH  l&h " + +@,x N| mX LH N]NuNUH#0&m $m .-  JJfS, &@ gh g
 + rg g + g g>p f6 + (r  @$H+@fC  H/ /
/	N1O Jf `
 &@`p LN]NuH&o ./  &@ g6 g
 + rg g + g gp f `
 &@`p LNu/,x Nv,_NuH&o /NXO. pg BAD gNDOSgKICKgJgp`p LNuNUH 2&m $m J fp/
aXOJ@gf/<   Hx TN0<PO+@Jfp `   m "j (//	+HN0Hz/-NrO  mBh B "H K,x N
 m R `lp fd/<   Hx 4N/PO+@Jfp `J m "j (//	+HN/Hz/-NqO  m1|  B "H K,x N
 m R pLL N]NuNUH'2&m BHmN/,XO l0( r$AeR,HrNr$@ 
g  "
t,lNN$@ 
g$Hm/
Hma O J@fr,lNl` r,lNl`>a $@ 
g4Hx /
a PO$@ 
gHm/
Hma bO J@fa ` Xa   -R/<   / N.PO+@g 6| HmNXO+@伭l z lx  m/0 a XOH m2( H+@زgWfJ`$ "m"q TM A //	NpPOJo$+F -ذo"- m! S`R`  m"H ,m- Jh fdC A "HJfS 	R+H"m M +H"t,lN. Jg  GHx  /-/N-O ",lN` mBR/-NXO+@` & -` A,x N+@Jg
/ N->XO`p LLN]NuNUH#2&m | p$"<  ,x N:$@ 
gjN @+h r!A +@"t,lN. Jg("$
NJg *   "* N,, `|"N"Jp$,x N. m!m `Nj LLN]NuNUH'2~ z B <  $rHA,x N:&@ fp ` 0E $ l0( r$Aev,HrNr+@g  "-t,lNN+@JgDr@l> rLN,8 J"mp
 Q"m i ( rLN,R"JM ,//N+PO`r,lNl`ha +@g^p@lTHx /-a PO+@Jg> rLN+ J"mp
 Q"m i ( rLN+R"JM ,//N+PO`a | l   rLN+~ J/+Ha XOJ@g  p+@ m ,Hz/NmL m ,Hz/NmO Jfp+@ m ,"t,lN+@gt m ,Hx *// N* m ,Hz^/NlO Jfp+@"-$,lNJg& +   "-N*+@԰o* "m ,+I"-NR`  -g  @JfS H/ /-N2@PO+@`Hx HzN2,PO+@"K <  $,x N. -LLN]NuH 2&o  l0( r$AeB,HrNr$@ 
gj"
t,lNN$@ 
g j f JCHp
"Qr,lNl`6a $@ 
g,Hx /
a PO$@ 
g j f JCHp
"Qa  
gAH` LLNuNUH'2z ,x N @&h r!A +@r ,lN. A"tN, Jf2Hx N .BNPOJg|A"t,lN, Jg*| ``  @/( +@a XO$@JgF * f*| `:+@ @"( f*| `&Hm/N(POACZfJ fg t*| Jg
",lNJg
",lN m!K  LLN]NuN  ON LDN  N LXN L,paH&o >/  g0+ &Gf `&S`p LNuconsole.device  H&o >/  H/ /+ >aPOLNuH 2&o ,x N| K,x N$@ 
g"JN`,x NvLL NuH2&o $o >/ "pk f2 J"K,lN| < /
 J"K rNJ$_/
"J KpNP$_ J"K,lN| < 0<k G7@ /
 J"K r,lNJ$_/
"J KpNP$_LLNuH0&o  KJfS V.  HB/ N'2PO$@ 
g 4A "Kf 
LNuH./  V,  H/<   / N&PO&@ g 6 LNuNUH 2&m $m  + 6fp `$ k 6"J,lN+@fp ` m"m NLL N]NuNUH 2&m $m  + 6g( @"J,lN+@g @JfS fp ` -LL N]Nu/ApCxr ,x NDJ f l)Ht ,t,_Nu/JtgCx,x N>,_NuNUH 2&m     gp `69k 9k  k )PA술Cr,ltNSfp -`p LL N]Nu/./ pggpfA `LpifA2 `>pxmpzn A 0 `$p6F mpqЀn A
 0 `A .NuCommand line for program too long Could not run a program -- was not an object module Invalid resident library  Installation problem -- no default drawer Unable to access a file or drawer -- object in use  Unable to create a file or drawer -- object with same name already exists Unable to locate a drawer Unable to locate a file or drawer Invalid window specification for a console  Could not run a program -- insufficient memory  Invalid name for a file or drawer Invalid lock on a file or drawer  Could not perform operation on a file or drawer -- not of required type Unable to write to a disk -- disk not validated Unable to write to a disk -- disk was write protected Unable to rename a file or drawer -- attempted to rename across devices Could not delete a drawer -- drawer was not empty Unable to create drawer - nesting too deep  Unable to properly access a file -- seek error  Unable to copy a filenote - comment too big Could not write to disk - the disk was full Unable to delete a file or drawer -- it was delete protected  Unable to write to a file or drawer -- it was write protected Unable to access a file or drawer -- it was read protected  Unable to access a disk -- not in AmigaDOS format Not enough memory for installation to continue  Too many DOS tasks  Cause of disk-related error unknown. / l0( r$Ae
,HN`pN"<  ,x N:,_NuSYS:utilities/more  SYS:Empty SYS:Expansion SYS:System  SYS:Utilities = .info NIL:  rexxsyslib.library  rexxmast  H &o  l0( r$Ae
,H KN`"KpN,x N.LH NuH 2&o a $$@ 
g"A"Jp"Q2  K"J,lN/
aXOLL NuH2&o  K,lN$@ 
g JNp` N l0( r$AeDHx NXO$@ 
g4 < %@ >%@ : K"J,lN. H JNJgp` p `  | p@ld"HA  P,lN$@ 
gDp* 0f6 < %@ >%@ : K"J,lNJ@f JNp `   JNp`   JNRF`JlfL l0( r$Ae>zZڅ ЀA쉘"H//	/N ЀA"H./	/NhO 9| a $@ 
g0A"Jp"Q2  K"J,lN. H/
a 2XOJfp `pLLNuH&o  g:k  o20+ HrЁ2+ HN.  Ѐ k 
/ //+ 
NO LNuNUH'2&m $m .- <- :- Bm K,lN+@g <;| "@ i 6+Hg mXJ gRm`+JJgRm m+P`0-HrBҁN/<   / NPO+@g 2-H @Bm+J,m"n 6+H+Igr m gj"@JfS 	R"m,I2-H4-H m;@0-Rm" H m!  mX"P,mf m+H`Jg "m i T"H m,lN+@g HBm0-H mJ g<0-H p "me"JfS"m ""m"q  meRm` mJ g  "m i T,HJfS i T/N ,HJfS / "ЁT m,H2-H4-H"m;@0-H"m# ,m"n Tf"m i T,HJfS+H gHzb/-N]./-N]O  m+H`F0-HSm2-H m!  0-HB ` mJ g0-Rm;@`   m+P` n m+h 6+h 2 - g!@ 2!m 6Jg!G JJFg < !@ >!@ :JEg$"l0) r$Ad/( a  m. a XO K"m,lNJ@VDHH;AJ g
 m!m 2 m!m 6/-NXO m,lN0-LLN]NuH#2&o ./  "$,lN, JgP/<  HxNPO$@ 
f",lNNWzp `*"$
,lNJg * Jj"N| /NnXO LLNuH&o >/ Hx/a vPO, Jf",lN, Jg(",lNJGg/a XOJ@gp`$",lN/,x/,θHx /,hNXO p LHNuNUH?2.- ,- &m *- BBmB - r
Nr+@   l
"<   +A    o
 <    +@ -"<  ,x N:$@ 
fp`  g< EHx Hl,/NvO Jf"J -,x N.p` XHl,/NPO+@"$
&-,lN+@m  Jo& "Nаf   -"-l
;| `  ѭ g m0( H"-N"- N+@JgJfp+@0,H"l,lN m0( H2( H6( H֭S8( H4( 
H؂S$&"lNNYJ@g :/,NU`XOJg *9|  gRpmfJ0,H"l,lN m0( H2( H4( H6( HԃS6( H8( 
HքS"lN"J -,xTR   , , ,   B6P	A N.0-LLN]NuH ./ ,/ p / / B//a O L NuH!&o "t,lN. Jf&"N.  fp `"N"N.  fp ` LHNuNUH'2&m $m z B"t,lN. Jg   <  "<  ,x N:+@JgZ$ ",lNJg B*( t`&N|$"B <  ,x N.",lNp `  "B <  ,x N.",lN`p$",lNp `   rgn  gpoЀ`p F $,]"  Jfp `h0,f,] fp `TB0,g",]  gHz|f/BN|O Jfp `*"t ,lNF"$<  N, Jg `N|$p LLN]NuH./ ,x N&@'G LHNuNUH'2&m $m >- | z p r 9A+@+@+@;AJ f/NXO+@  <  "<  ,x N:+@JfNR` "t,lN, "$<  N+@gJf,]  g ;| ` "$-NJg /
a XO* Jg ",lNHm/- +@a PO+@JfH -f
r;A` roҁgr Fgrkҁf,] g
;| ` V/ a XO` HmNXO;@Jlg K`"m/) |///-/-a O ;@Jmg
HmNlXOJmf"-,lNB"- N`  pmfNQN`  "-,lNB m ( t@$ "- NF mJ( gC $	"- NL m //- a POJGgBHzf/- NPO+@Jg, @PBp / Hx / r ///- a O  m;| Jmf(,]  fJlf/,|/,Hx /,hNQO Jg"m <  ,x N. -g
" ,lN -g
" ,lN -g
" ,lNJg
",lNJg
",lN0-LLN]NuNUH/".- ,- p  m PCh+@+@fJffp` ",lN*  m P"$<  N( Jg ,"N m PHm/a @PO+@JfH -f
r+A` 0roҁgr Fgrkҁf,] g
r+A` / a BXO`  Jlg m P`"m /) |///-/a VO ;@f"-,lNB m P"N`tJ@jNN9| `  "-,lNB m P"m  ) t@"$ NF m J( gC E "	$
NL m P"m  /	/a ~POp+@Jf.Jlf(,]  f/,|/,Hx /,hNOO 9| Jg
",lN -g
" ,lNJg
",lN -LDN]NuNUH/2.- ,- z x p +@+@ <  "<  ,x N:+@g $ ",lNJg "$-,lNJg  B ( xJj///a O Jf Z` Jo P"N BP+@"tN* Jg &"N mP"N( Jg   <  "<  ,x N:&@ f
p+@` $"$,lNJg  + Jj.,]  f  /,؀/,Hx /,hNN,O 9| `  "K <  ,x N.` mP/a *XO( Jg  //a POJg  ",lNx  mP"m ) t@"$ NF mJ( gC E "	$
NL mP"m /	/a LPO",lNz "-NBNPlJ@g n/,NLHXOJg ^9| `p+@`p+@0,fFJf*,]  f6/,|/,Hx /,hNMO 9| ` -JjNKB9|  -g
" ,lNJg
",lNJg
",lN g"K <  ,x N.Jg"m <  ,x N. -LLN]NuH./ &o Bl/a XO, Jf&,]  f/,x/,Hx /,hNLXO p `//a PO* ",lN LHNuNUH/2&m $m >- /<  HxN
PO+@f
NJp `  "t,lN, Jf0,]  f/,׈/,Hx /,hNKO /-Np `  "$-,lNJf"N` B+h /NXO -Jj"",lN H/ /- /
/a NH`  Bl/
a XO* Jf0,]  f/,x/,Hx /,hNK8O ",lNp `FJ f/NXO+@ ",lN( /- /a l+@",lN"N"N -LLN]NuH! l g@&@TJfp `4"t,lN. Jg"N`/,؄/, Hx /,hNJO pLHNuNUH7&m A"$<  ,lN, Jf/,؈/, Hx /,hNJJp`  a l. pf",lNp`   l0( r$Ae^+|  !+|  " +@+@+|  $p+@B"A$,lN* pfJ/,،/, Hx /,hNIO `0"$&,lN"Jf/,،/, Hx /,hNIO z`z ",lNJg"N" N LHN]NuNUH?2&m B|z Cp ,x N)@0Jf/,ؐ/,Hx /,hNI(p` Aj"$<  ,lN. Jf/,؈/,Hx /,hNHO ` .C4,x Nz$@ 
f4A<"$&,lN"( Jf/,ؐ/,Hx /,hNHO `  HmN	nXO,x N+@| B-A C4 I,l0Np+@JfNG4`   KJfS ,l0N m!@ (fNG`| m!|     !@ x!@ t,x N|C4Nz$@ 
g J"mNzNvJEf/,ؐ/,Hx /,hNGO `" <   ,x NANJg m,(  Jg  m ( (g
 @,l0N| m,l0NjJg
",lN ,0g
"@,x Nb LLN]NuNUH2&m $m .- | Hm//a pO J@g<Jfpf K"Jf|`$ -gHx /
/ NO "-,lN| LLN]NuNUH2&m $m .-  JJfS,p0"<  ,x N:+@f
NEp `  p0 m  Z"<  ,x N:+@f"m N.` rЁ@ m C  mXp!@ !G /	/
+H+INH m!@ (  @"m#h  ,x N| m   '@ NvpLLN]NuNUH72&m .- | Jg*",lN, Jf/,ؔ/,Hx /,hNEp ` n l0( r$Ae*,H"$N* Jf
Jg"NJgp` <p ` 6B$h " *  KJfS"+@;A,x N| mX"m ) +@+HJg  p m차 f|"( (t "Av 6-H ⴃf`M p 0/ //N O JfF m+h Jg!F `H"m" ( ("@Y+I ,x N. mY+H"H N.`+m m +@` \,x Nv -g
" ,lN -ffJfp`$///-a O J@f",lNp `pLLN]NuNUH2&m  + g" ,lN`bpH"<  ,x N:+@JgJ @ | : E /
Hx N -" %A ,r%A 0./+ N.*  "mpH,x N. LLN]NuNUH32&m .- $m | B l0( r$AeF  @ " ,HNr+@Jgx" $&NT+@Jg|/ a "XO$  @ " ,lNl`HNҒ+@Jg(/// NҲO +@Jg @Cp
"QNӄJg|Hma XO$ LLN]NuNUH#2&m $m .- | Hm//
a "O J@gb l0( r$Ae,H"$-N, JfB"-N`8+h " m ( /-// +@a O J@f"-,lN`| LLN]NuH32&o  ./ $|  l0( r$Ae8  @ " ,HNr$@ 
gN"
$&NT$@ 
gJ g| C "Nl`*NV$@ 
g ///
NxO $@ 
gJ g|NR LLNuNUH!2&m $m ~ ",lNR+@fp `  0. r$AeHrNr+@gz"-t,lNN+@g"@ i f i (/
/NPO~r,lNl`>NЪ+@g4Hx /-NfPO+@g"@ i f i (/
/NJPO~Nђ LLN]NuNUH'2&m $m | z ",lNR+@g  "tN. Jg"N., "NpDrHA,x N:+@Jg  "
fE J",lN@A V@ @C /+@/I  N @"o  f mR"HJfS 	 m.Hx "N. mB (!F , -!@ 0!J 4./-NO  m*(  Jg
",lNJg"mpD,x N. LLN]NuNUH2&m $m ~ ",lNR+@g  pDrHA,x N:+@JgdA"VA AC +A Jf mR"HJfS 	 m/-Hx 	N X - m!@ (./-N LO  m.(  Jg"mpD,x N. LLN]Nu  N  0N UN \XN LN  -JN MN ^ N  .N  -N  "N UN P,N WN \8N LN J N FN IN HN \8 o "o "/ /`( g   f"   ae  zc  e` Qp$Nup $Nu o "o  / `QNu o "o  / `QNu o p r  0k b㈀`NuNUH 2&m $m prHA,x N:+@Jg""g&`"
g%@ ", @1A |  `
Hz a XO -LL N]NuOut of Memory Out of memory MAKEDIR COPYFILES COPYLIB STARTUP TOOLTYPE  TEXTFILE  EXECUTE RUN REXX  RENAME  DELETE  ABORT EXIT  COMPLETE  MESSAGE WORKING WELCOME SET IF  WHILE UNTIL TRAP  ONERROR FOREACH SELECT  PROCEDURE CAT TACKON  FILEONLY  PATHONLY  ASKFILE ASKDIR  ASKSTRING ASKNUMBER ASKCHOICE ASKOPTIONS  ASKBOOL ASKDISK EXISTS  EARLIER GETSIZE GETDISKSPACE  GETSUM  GETVERSION  GETASSIGN MAKEASSIGN  GETENV  = > >=  < <=  <>  + - * / AND OR  NOT XOR IN  TRANSCRIPT  PROTECT USER  SHIFTLEFT SHIFTRIGHT  SUBSTR  EXPANDPATH  DATABASE  DELOPTS STRLEN  PATMATCH  GETDEVICE BITAND  BITOR BITNOT  BITXOR  HELP  PROMPT  CHOICES PATTERN ALL SOURCE  DEST  NEWNAME CONFIRM SAFE  INFOS SETTOOLTYPE SETDEFAULTTOOL  SETSTACK  NOPOSITION  DEFAULT RANGE COMMAND APPEND  FILES INCLUDE OPTIONAL  FONTS DISK  RESIDENT  SWAPCOLORS  NEWPATH NOREQ ASSIGNS NOGAUGE QUIET @icon @default-dest @pretend  @user-level @error-msg  @special-msg  @each-type  @each-name  @ioerr  @execute-dir  FALSE TRUE  @language @app-name @abort-button @askoptions-help  @askchoice-help @asknumber-help @askstring-help @askdisk-help @copylib-help @copyfiles-help @askfile-help @askdir-help  @makedir-help @startup-help Memory error adding symbol  ; $ % Unmatched parenthesis Unexpected character  Symbol name not valid here  Unterminated string!  Unterminated comment! Clause definition expected  Can't use statement/parameter/function as data item   Can't have nested statements  parameter outside of statement  invalid parameter for statement empty clause not allowed  unexpected character  Integer cannot be first item in clause  Unexpected end of file  Symbol or String too long Unterminated string or comment  ERROR: %s on line %ld.
 
 H &o  g"Kp,x N.LH NuH2&o >/  HVr ,x N:$@ 
g 4A  H"H KN HB2`
Hza vXO 
LLNuH &o  gp 0V"K,x N.LH NuNU  /&m + rgJ frgr	f/+ aXOB &_N]NuNUH&m >- <-  SGJ@g J f ` SJfS* HHm/ /HlN^ H./ /HlN_(O +@fHzNwp ` JFf(p m@ @  + H/ No
XO m!@ ` lp@f P +  m@ U fp`p@  + Sm @   l 6@0; N   0 > L ` t         mB C )I<`   mP)H$`   mP)H(`   mB C )ID`   mB C )I`   mB C )I`   mP)H`   mB C )I`   mP)H`r mB C )I`` mB `Vp m!@ `J mB C )I,`8 mB C )I4`& mB C )I`  m@ |  !K  ` pLN]NuHx HlNz9| A)HHx Hx Hlθa O JgzHx Hx 	Hlτa O JgbHx Hx 6Hla O JgJHx Hx Hl҄a pO Jg2Hx Hx Hla XO JgBHx HlԬa BO Jgp`p NuHlN]XONu/>/ 
p@f lJg"l QT `p .Nu// p, gp; gp\ fp `"p) cp`p  cp' dp" fp `p.Nu// p) cp`p  cp' dp" fp `p.NuNUH0&m HzHzBHzHzHzrHx Hx Hx  HlN\.HlN^jO ,. JGgp ` p / / a h$@|  HlRN5O , JFg 
g/
a XOHlN^p `  BBlHlN`DXOp ,J@g  W@gl]@gzS@g  S@f  p(f4HlN`./-a  @|  :,.+@+@a  hPO9E`p)fHza XXO`Hza LXO`Hza ~XO` x 
`"Hza lXOHza bXOHza XXO` RLN]NuNUH2&m p ,@ d@0; N r |44| ,HHm/ /,HlNYO +@f ",H/-//,HlNZFO +@Jf
Hza XO 
gl m( rgrg
rg_ f
Hzda XOp* f  +j p m( f  +h A,m"n f  p m@ `   m+h p ( [@g
S@gfU@g2`nJlg
Hz(a  XOAM,m"n f9|  . 9@`>Jlf
Hza XO0,Hr m¨ fHza XO` m ( g9@//
a $@ @|  !m Hl+@N]O ` \ ,r(gSg4`NHlN]./
a $@ @|  >,.+@a PO9G` J f
Hza DXOHlN]z`  Hza .XO`  
f
Hza XO//
a 2$@ @|  !l Hl+@N]6O ` //
a $@ @|  ",H./,+@a  m!@ HlN\O ` xHzfa  jXOHzta  XOHza  XO` VLLN]NuH 0&o  g2$Sp + U@gU@g`/+ a XO`/+ aXO/a rXO&J`L Nu/&o Hx a  nXO)KJl0g/,/Hz(Np
O Hx HlRNPO&_Nu/&o Ba  2XO)KJl0g/,/HzNoO Hx HlRN PO&_NuNUH3>- 
 H/ HmHlNbfO J@g  )m,lN, Jgx0-H& "$-N"A2$vN m0-2-HH$&"N"A9$vN m0-2-HH$&"N"A>$vNL@N]NuN G^N KN ZPpaNUH2&m >- $m  HVr ,x N:+@Jg:" @0"gC "H  KN Hr  m 
g%H  A `a + -LLN]NuCan't execute an integer  String Fmt  Too many arguments  Install statements nested Interpreter Executing non-function  EVAL  Stack too deep  Stack Overflow!!
 Stack Underflow!!
  %ld Integer argument expected Selection value out of range  Symbol name expected  SET: Can't change type of an '@' symbol PROC  %s: String argument expected    unknown vblank  cpu 68040 68030 68020 68010 68000 graphics-mem  total-mem String argument expected  DIVIDE  NOT %ld   %ls   <NIL>   
 %s
 :   %s: Too few arguments %s: Too many arguments  /&o HlNzHl,N*POJf/a \XOJ,Lg4/,HN1XOJNg$B,L/,a ,(.Na 0.HN0XO| L&_NuNUH!0J,Lf Dp m ( f+h $m\rf"j +I `E pfHzHHx /- a )D` pf/- a XO` pf +j ~ TR   (J(J,  A2$l@ m &P g  p @oHz HzHx /- a )` /a XO]@ l@S f RG" HC#  `6U f RG" H"l@ i TC# ` RG" HAB \@&S` r mTHl/Hl,Nn,O A,"HJfS.	G o/,Hz^Hx /- a )2` /
N/v H.@/ Hl,a O \@` pf0+j )m h m ( g J,Lf B/- "@NPO` pf  +l@J,lgHzHx /- a '` v+j  m ( @lB,o,o@mB)|HlNx^XO m &P g/a <XO&S`)m h m ( g J,Lf",@tH//-"@NPON+B`  rgtf  +l@+j  mJ gB] f>AlCp"Q2 Hx NHllNmHlNwO  m ( @l)| m &P g/a  XO&S`)m h m ( g J,Lf",@tH//- @N PO mJ g:pf4N*|AClp"Q2 `JfHzHzHx /- a '<O L N]NuNUH 0J f l@B\@`  J,Lf  N*J@gHz|a %XOJfn$m \pf/* a XXO`4pf &j A "l@"2 /,@a XO\@` J"l@"2 \@ l@DeHzHzHx /- a &O L N]NuH 0&o /a DXOJ,Lgp `P]@ l@J fp `>S fJ VD HH`*U gp` $h JRg/a  XOp`/,@a  XOp L Nu/&o pfJ+ f/+ NXOB B&_Nu l@DcHznNgLa $XO l@HdHzhNg4a $XO l@Hc]@/,@aXONuH 0&o rf"+  `Dpgp `:$k Tp$fA /N PXO`p%fA /N  nXO`/
N}XOL NuNUH&m rfp`Fpf + `p . /HzHmNiA"HJfS 	H./ /a |JVDHH LN]NuH 0&o pf.$k  
f/BBa FO `A 0H// /a .O L Nu/&o J,Lf/a VXO&S ga  `&_Nu/&o  gJ,Lf/a .a pXO&S`&_NuH 0&o $l@&S/a XOJf&SJ,Lf g&S/a XO l@fBa XOL NuH0&o $l@&S/a XOJ,Lft]@ l@S gHz/,Hx /,ha #O  l@.( JjHz/,Hx /,ha #O ` SJk&S f`/a \XO l@fBa LXOLNu/&o &S/a XOJgJ,Lf
/a XO`Ba XO&_Nu/&o &S/a XOJfJ,Lf
/a XO`Ba XO&_Nu/&o /a XOJ,Lgp ` ]@/,/,@a POJg
 l@B ,@&_NuNUH#2&m B| &S K/aXO$@ 
g  JC"2 | &S K/aXO$@ 
fHma |XO`   JC"2 |  mT"t,lN, Jf/,/,Hx /a "HO `t mTHmHx //NtO +@Jfa  `L",lN| ~ l8J,Lf2  m/0 N~ l   m"l" .a fXOR`Jg
",lN -g/ NXOHma Hma Ba pLLN]NuH0&o $l@,M,MR @M/a XOJ,Lg l@ca x` l@ p  l@@ r ,L l@!A \@@LGMLNuNUH&m ~ &S K g  J,Lf  p+ gHz/,τHx /a  `  ~+k &S/a XO]@ m p@f* l@"m) gJgHzHx /a \@`R l@( J g/a XO m\/a rXO m\"l@ 0 f NJGg/,@a XO\@`Ba "XOLN]NuH 0&o &Sp+ gHz"Hz\Hx /a  O `$k |  %S Ba XOL Nu/&o )SNBa XO&_NuH 0&o $o pg/
HzHx /,ha O p `pL NuNUH 2&m $m  k "j M +HA fJ f  HHLL N]NuNUH2&m >- $m  JJfS*B| Gl`   K+HgJS f/a XO/- /-a >POJg 
p mf +h  -g"Hӭp  m0ѭRF`  'o/- /, Hx /,ha `   -HHm/ Ba HO +@Jg   @T| +HGlx   K+HpfV+h  mT"mg H J,x N  m+H mTp "m0"m,x N  mp "m0ѭ/-a XORF`A"K"2 A )H@LLN]NuH&o >/  H/,HzH/ /a tO LNuNUH0&m >-  H/,r/// a O Jf  $KA /,/
+Ha POJg  /,/-a POJg  +j  m+h p  m0r  m2ЁR   o/,/,Hx /,ha @`T mTC,f mTHx /Hl,N_.N#dA,"HJfS 	H./ /a O JgA )H@LN]NuNUH0&m >-  H/,r/// a O Jf\/,/a POJgL$k A /Nf+@ KC"2  mJfS H./ /-a O Jg
Hma NXOLN]NuNUH2&m >-  H/, r/// a ZO Jfp/, /a 6POJg`$k A /+HNfFXO+@ mcr/"@)fS"KM,< - H// /-a VO Jg
Hma XOLLN]NuNUH#2&m >-  H/,Ќr/// a O Jf ./,Ќ/a  POJg ,o  g,x N @+h r!A +@ k T"t,lN, Jg   <  "<  ,x N:$@ 
fa ",lN`  "$
,lNJf0/,/,ЌHx /,ha ",lN"J <  ,x N.`n",lN/N XO  * Jjp`p'@ A )H@"J <  ,x N.`/N XO B A )H@,o  g
 m!m LLN]NuH 0&o $o  "lp`>op`6 * "+ lp`& op` * "+ lp` op`p L NuNUH&m >-  H/,Иr/// a O Jf  /,И/a POJg   k THm/N`POJg k THm/N`POJf/,/,ИHx /,ha l`FHmHma POJ@j/NXO p'@ A )H@`/NXO B A )H@LN]NuH&o >/  H/,Фr/// a (O Jf6/,Ф/a POJg& k T/N], .NXO 'F A )H@LNuH&o >/  H/,аr/// a O Jf6/,а/a POJg& k T/N2, .NXO 'F A )H@LNuNUH72&m $m "$<  ,lN. z p $Jg:B"A$v,lN, JkJo -ђpg",lNz`/,׌/,мHx /,ha O  LLN]NuNUH&m >-  H/,мr/// a O Jf8/,м/a POJg( k THm/a ..N 'm A )H@LN]NuNUH72&m "$<  ,lN. p B+@Jg "  <   ,x N:+@g FAR+H"$-&<   ,lN+@g bm +B -SJg mR m+H԰f ( mJf   -D$ "v ,lN"$-&<   N+@o , +B SJg   mR@J gr
fS mg  p) mܰf(S mg
p( mܰfS mܱb`Xp  mܰfR/-NmXOH@B@*  mR@J g(r
g"p. mܰfC /	NmXO"Ҁ+A`  m+H`$ m"m԰fRR -SJf AR+H` "m <   ,x N.B",lN~ "Nj+@g  @"@Y"ҁ,+HXz +Hܺl  mPJfC ,Qf$H`RT` 
g N j +Hg  JfS ѭ+j S mܱg  p)f*S mرg
p( mܰfS mܱb`  p. mܰfp ( C1  gp (C1  gC /	NlZXO* S m"mسg tp C1  fC /	Nl*XO, p *  H@B@"Ҁ+A`f*  
g^+j  m r ,x N:+@Jg@"m     J          ^     
*Italiano.info8 p     G     2F 2IȐ   2- 2KH Ր |
 ( G   0        |   { H W 7w 7W 0  ' 0 TW 0 
<D 0 TW 0 * 0 X 0 
 0 4 `  ? ? ? ? ? >u^ > >u^<D > >u^ダ             0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  wP   w  s@  x        @ ~   | A  }   }=N A  }   }=N  @ }  =}N|  )  | {x H  W   vy  V8   &8   @
V8   P<  
S  5P  
  @       ' y     &8  @ V8    &8  @ <   +(  @ | x     G   x    ?    >     = $   ~  8 n      )   `    `    0    8                 w     b   Cb   b   "   b        ?      @   A   B @ ` lB( ;a  G ;`@ o ;  W ;@  k ;`@ ~, ;` k H ;`(  ;` {  ;`
  9` _l <  `v`| ?0]4 ?   O@ >`    >U`  a >`  T  >`  @a >`  V 4 ?`  @ @ `  @$ 	   ?   >   = $    ;  @ 8    8     8      <   =   H ><   ?g  " ?   ?   >   < :ܐ  <     \ *  \   ;\ * ?\   = * > <   ?  
Installer  APPNAME=BrowserII DEFUSER=EXPERT SCRIPT=Install-BrowserII NOLOG LANGUAGE=italiano MINUSER=EXPERT      0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  w     / !>f O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  ! ],^   u  parm.library9 p            pNuJ  	    H.*@I "x )ILC j,lLp NMP, @, >, ^| 	 A +H 
|  p 9 M << A  ,+G "|  L lX Ra ,a  LpNudos.library intuition.library graphics.library  layers.library  gadtools.library  icon.library  commodities.library keymap.library  H *NI JpfCt,lLp%N)@pfp `  JhfCf,lLp N)@hfp `  JlfCX,lLp N)@lfp `  JtfCH,lLp N)@tfp `  J\fC:,lLp N)@\fp `|J`fC*,lLp N)@`fp `^JdfC ,lLp N)@dfp `@+l\ &+l` :+lp .+ll *+lh 2+lt 60-  Rm  J@fa )fa    Lp NuHI ~ a .^Sn  fa a ).  ga  .  LNuH!*NI ~ a .(Jm  f  Jm `f   ,\g
"@,lLNb ,`g
"@,lLNb ,lg
"@,lLNb ,pg
"@,lLNb ,hg
"@,lLNb ,tg
"@,lLNb.- ""M,lLNp 0- r 2- $Ԁ"Mp 0 N."lPNb`   LpNu0) H")  R// // /,/(a P`O NuITEM  COLOR RUN SHELL WB  CFG WIN PRI STACK MENU  SUBMENU ENDSUBMENU  CMDWIN  SHELLWIN  SHORTCUTQUAL  WBTF  REQUEST AUTOCMD BARLABEL  WITHSUBTYPES  KEY KEYTEXT PROGDIR:  HI "H`p\ fY`p; f| 
fLNuYOH "A $,lPN / L@XONu/"h !I Jfp `$p
 gJfJgB)!I Rh !h  p.NuYOH2"H&i /H @Rp  gp	 gp# fp `  #K p  ep{ gp} fJgA @ K#H `rE  Jp" fR~`~ @Jgr"gJ fJfr cr;fBJgR~p H JC "q ,lTN^JgRp c o !K LLXONuH+6&I*HBo Bo a <` b Ka 8/ r  @ ! d bA2;N86TTTTTTTT .  TTTTT6
TTT@0@ fJDg/, M"Ka DXOp ` ?|   Ka J gA "H Ma ` /,$ M"Ka XOp `   g g/, M"Ka XOp ` ?|   Ka >J gA "H Ma ` x/,$ M"Ka XOp ` r g f/, M"Ka XOp ` R+mBmd?|  ` 0JDf/, M"Ka pXOp ` &0 @ ?@  Ma 	d` BoBo Bo /mBԑC B/(B/ v/H/H/I rp/ !fnJDf/, M"Ka XOp ` 0 @ ?@  Ka Vr{f2 k R /H Ka >r}g/, M"Ka XOp `  Ka A Cxf`hJfJo f/, M"Ka XO?|  ` : Ka J f/,$ M"Ka tXOp ` * mHk N XO. Rf/,0 M"Ka NXOp ` x  Ka r  @  pm   l  A2;N   | |  $ P `j  `b  `Z Ka PJ gA C(f`B/,$ M"Ka XOp `  Ka $J gA C vf`/,$ M"Ka XOp ` ZxJDg Rp /  , Wr  Wg  Sg  Sg  Sg <` d Ka J f/,$ M"Ka TXOp ` 
p /  _gSgxSg4`   Uf/, M"Ka $XOp ` A C "fA "/H`lE "
A$,lPN JJfSʰf
  l@/, M"Ka XOp ` A a ?@ rAmrAo/, M"Ka XOp ` X Ka @  rg  r	g Q g J/  f/,TR   +<+<,  ҴQ$ M"Ka hXOp `  UfE  JC f Ka J gN/J`H/k  r`@ Ka  J f/,$ M"Ka XOp ` A C f`/, M"Ka XOp ` 8/ $op/ !f>0/ Hr 2t 4//// ///
// " M"o a O J@f \p ` d0/ Hr 2// Ho ~Ho4///
////  "/ MCa O  HgSg
` p ` /,P M"Ka PXO`  /,( M"Ka >XOp `   Ka J g  p / !Ugr g>SgHSgR`  A a ;@ "g  t  A( cHf  p  A( b;@ `  A XC f`|A C f`npr A Q|  A C ,l`N|TgUf0/ ;@f8 ;@`.;| `&Bm/,  M"Ka hXO`/, M"Ka XXOp ` Ka tJ@f pLlNu H?>*HI x Bo| $B-LG ",lP$<  N. g  "t vN"vN, oj*R ,lL"<  N:/@ ,gP$ "&,lPNְfx?| "NJDg/o , 4Bo @ MC ,a 8 f Ma "o , ,lLN.Jof<$l KC:,lTpNXJg K`",lPN @//
/-a FO p `0HL| NuNqH!. *HJ f ,lL <  r@t@a G+@ fp `  m ,lLa H(L`Nu' YO/*IJfS 	Ra @Jg"Hf *_XONuH 6*o $o  Mpa \&@Jfp `" JC ,ltN @Jg'H &f+Kf Ll Nu ,H $*H/I AZE p	$Q M"o a l/@ g(BHo /aO "@Jg m +IA +HpL$  ,Nu/*Ha ,+@&gp;@b;@d;m `*_NuH4,. &I*H$o "o a &g> 
g M"Ja '@ fp `("o   	g Ma '@ fp `7o & 7F 'G pL,NuH *HJmdVr A80-bgA$`A8J@g0-``0- HB/ /< 2//a O &@Jg0 m Jmbg k "h 0- +K+k Bmb`+KpL( NuYOH!6$. *H$I/I pa &@Jg  A 0/ :Hr 2/ >/// ,// ,// ,"H" MAa O J@fp `  & M"Ja +@:g  E8 lLh ' e o 4Jg"H Ma %@   `  %o ,  o 0Jg0 Mpa '@ g8 @  o 0"k ,l`N|JgB p`%K  Ma J@Vt 0LlXONup!@:B>` vH4,. &I*Hp"a $@JgN%G %F 
5o . A 0/ &Hr 2/ *///  //  /"H"/ 0 MAa O J@fp `
$+JpL,NuH *HI &mf` k ,ltN&S fBf - g
 @,lLa DDB  m +HB BLx NuNqQOH'>&I*H/J (I $o (~ ,lLp@"<  NT/@ $g r J,lT <  r N$ r* J <  r N$@ 
f$l S"o $f+  gx/
B//<  //<  /,@/<  /,/<  /-/<  Hx/<   J"o \,lX <  $ONO 4$_, g  p fE `&$k  
fE `$k  
fSfA `A $H"
,lP$<  N, f/
/,/-a AO `f$o $ Ja 0+ HB/+ /< / /< Hx /<  $Hx /<  #B/<  "//<  !"
$NO 4+ g,lpN~"o $,lLNN L|PONuNIL:  CONSOLE:  C:  CLI TOOLPRI H*HI J $gF~ | `& m $ 0h g
" ,lPN m $ h a RP m0- ,H"m (,lLN. - g
" ,lPNd"M,lLp4N.LpNuH!>*H/J  I /I  o  C $fA $",lPN&@ @a $@JgV"lL iC $f"( N. `.B"	,lPtN. fHo $/,/a ? Ja VO p ` o !J  pL|NuH#*HI ",lPtN. g"N.$ "N `  NJgZ @"( &A gL"+ N. ,+ ",lPN"tNJg" N"N"N`T &@ f",lPNAB",lPtN. g*"N, "N$ "NJg
"N `"Np LxNu H/>. *II |@?|  ."m $/H (",lPN*  m $ h ,l\N&@Jg + 0rgW f   + J   o,  k 6CNJg 3 k 6C,l\NJg" A 0$,lPNRg / 0@ 2p+ 0f  R +m ( $$k 2 
g JJfS f/,// ,a >PO`b"
,lPNf@ Ja 0( g" Ja Jg m (!@  m ( `4"N`(/
/,D// 0a =O `/
 o ,"m (a H _JfBo . K,l\N",lPN n +@ .0/ .HL| NuH. I ,lLp4"<  N:*@Jfp `8 R"<  N:+@ (f
 Ma Rp ` R;@ ,+G  m (P+H $ LpNuH <&I*HI pa"@Jfp `> i (P/	"H M$Sa |$_Jf
 Ja p ` +  M"Ja Jf
 Ja p @ 
L< NuQOH6*H/@ ~ | /I  fa *@Jg  |,lLp@"<  NT&@Jgda  $@JgP$A %H %m 5|  "o  i "Kf/
B/,/<  "J M,lX$ONO  _Jg~a "K,lLNNJFg Ma  LlPONu`H?>*I/J 8I $o 8~ | - 2HH/H 4"  J,lT <  N*  J <  r N/@ , J <  r N$@ 
g|`$lX > m $(",lPN m $&h /@ 0"A <$v FNn"$N- 3g8Jgp * r  "j ,lLN -  o ,"m $a v.  Ma <` 2+J ;| 4 |  ",lPNj+@ $o 4g  ",lPNBB/< / /< B/< B/< B/< B/< B/< /- ./< //< //< B/< /- /< "NO dJg& @C \+I  I"M,lLNJf lXRh `~`fN|/" A@&t xON, /Ho @/,/
a :$ Ma @`2,lPN|/" A@&t xON, /Ho @/, /
a 9 Ma O "/ 0,lPN L|`NuYOH>*HI | ,lLp@"<  NT&@Jg  a T/@ g   @ C X!I !m -  gE.<  `E ~ F/
B/-/<  //<  "J lL ,lX$ONO $_Jg* J"Kf Ka |/
B M"o $$ONO  _Jg| o a "K,lLNN0HL|XONu/"HI A4""""2(_NuDevs:Mouse.Opt  ParMHandlerTask input.device  ParM Handler  /0,@H@B@H@" Ҁҁ0,BH@B@H@$ ԀԂ)A)B$Nu/I C4""""2a(_Nu H1Al",lP$<  N. gX"A $vN$ "Np@f<0/ rAe2U@f0/ k  `Bo ?|  A C4""""2p@p L@ NuQO/H  I (_PONu/9| &BHx /< Hz/< Hx /< Hz /< ,lP"NO $Jg @C \)I IC,lLN,_NuH Jg(,lLNf*@)@pa : MN MN MN`L` NuH 6*H lp$h <` J$P 
g0* 
o0* k 
gA 0* H2* H,llN|&@* Ll Nu <H?:I B X~ B TBo ` lL)h l,lLN lNa Nf/@ 8 @p0Nr$@/@ 4"@Ap " NDA/H PA4/H LA/H Hl6 G5| 	 A >%H ("J,lLN8 lp/H 0`  l,lLN,lpp Nb, "o 0 i 4/H ,` p0* HSm X l N@0; N : ,** (* "A \a "@Jg i (@&Hp f* g  o ,g  gJ $f  K,lpN>` p f phj f  J,7g 0* lDf  g + f  i  g J g  Xf< "/ T$&,lpNJ@g&,lPrN:"o 0 i 4f l K,lpN` ^./D T/K X` P o ,pij f  0<_j @ f, 9f@@ fb, 9g* g&+ fJf k ."h g K,lpN`  ,  9g  J \g   F,lpN\ o \N
p Nb, `  j  f  , 9g  g   gJ $f   K,lpN>`   pjj f  j   f|, 9gtgp gJ $ff K,lpN>`ZA \a Jg"@ i (@ g@"o ,g8 	gJ $f.,lpN>`$ j  h .,lpN j ,lpN>`?|  `"J,lLp&N. l,lLN$@Jf  F,lpN\Jo `g F$o 45| 
 A >%H ("J,lLN8"JN> JNl o 8N`N|a 4@a 4X`"H,lLp&N. l,lLN @JfC,lLNL\ <NuH. *H,lLp&"<  N:&@JgH7| & 7G UGf(p - M ,< 0<m <A C ""`'M  l"K,lLNLhNuH . <zJGjDGz0,:@o2@<@0@0L NuH>&I*HI $M` l<* :<j p * Sg :Sg
Yg ` Da Jlga 3 Bl9| ~F f  Jlg$"lp i 4 g h . ,,lhNna 3BlBl|9ExJk g0* 
Ha 45@ 
0* Ha &5@ 0* 
HnD, 0* HnDr 2 p 0Ёopr 2,zm" 9Az`^ph@gpi@gpj@fL"l,lLpN HH Jpa T"l Npi@f pk gE f+  fE fB* +  g 4 g , g $  	` a \ f Jlga 1BlJk g
a 19| +  g  0@p f  Jl~g."l,lLpN HHpa "l NBl~`   g  p6@gp7@f  pa p`  SS+  g<l xf.0+ 
oHr 2,zoJl|g Jpa 4Blx0+ 
R@9@z9| |JlfJk g ,n
a 19| JlfJk g ,n
a 09| $R 
f  L|NuNqYO/*H`R d MCla 3**@Jf*_XONu ParM Request  Line too long  %s
Line %ld, Char %ld  Unexpected MENU  Unexpected SUBMENU  Unexpected ENDSUBMENU  Unexpected ITEM  Missing closing '}'  Missing argument 	 "AUTOCMD not allowed in this tool 
 WIN not allowed in WB mode  Couldn't open/read "%s"  Couldn't open console
"%s"  Couldn't access "%s"  Couldn't execute "%s"
%s.  Couldn't load "%s"
%s.  Command  Run.  No tool found.  Invalid stack  Priority out of range   WB, RUN, SHELL or CFG Expected  Invalid Key  Invalid qualifier  Unexpected end of line  Keyword expected  Key already used  Unknown file type  Cancel  Resume   _Ok |_Cancel  _Shell|_RunBack|_Cancel   Tool not found: "%s" ! _Resume " Execute command. # Invalid hotkey 2  3  4  5 Couldn't get window. 6  This window already have menus. 7 &Menus already installed in WorkBench. 8 Can't find WorkBench. 9 Chip:%6lD  Other:%7lD : Open. ; Enter New Dir. < Path too long = Busy > _O Open ? 
_U Update @ Std Cfg A _E Execute. B Change Dir C Quit D $Requires asl.library V37 or higher. P Couldn't save configuration. Q Invalid MouseOpts version. R Window to Front S Window to Back T Screen to Back U Auto Activate V 
Sun Mouse W RMB Activate X MMB Activate Y 
MMB Shift Z Cycle using MMB [ Screen blank (sec) \ Mouse blank  (sec) ] Accel Threshold ^ Accel Factor _ SunMouse Threshold ` Handler Priority a None b Control c Left Shift d 
Left Alt e Left Amiga f Right Shift g 
Right Alt h Right Amiga i MMB j Window to Front Qual k Save l Use m  lD  locale.library  ParM.catalog  H&K~" \A! "Xp  A0\pmfC,lLp&N)@gZBHx /<	 C,@$ONjO )@g>~ HGBGHG K gr 2  l"U,lN*RGpm@e` la LdNu/ ,g l,@N"N,lLNb,_Nu/I A 0 (_Nu/I H@B@H@ЀAH00 (_NuNqH *HI JfS R,lLrNT @Jg"Hf Lp NuUUCON:0/0011/0640/0100/Command window/Auto/Close/Wait  CON:0/0011/0640/0100/Shell/Auto/Close/Wait H 
I  g
"H,lLNNLP Nu/"HI A I(B((_NuH *HG  B66$	g Q@+H 
L(Nu H *"HI A aA C $,ldrNS@fp / $@p LT  Nu (H,>/J (I &I$H/H  A ,"o (a rr *K`*URA g f g  &U0R@?@ F`  + g  $k x `  *  g  *j  g\z `R m ""h  	gBA ,,l`N4J@g2;|  -  g0/ FH2H4H炄`$<   `\*URE f`6 j ""h  	g*A ,,l`N4J@g5|  0/ FH2H A `$RRD 
f T&SRo F f 4 <  L|4 (NuYOH/>*HI /@ (,lTNR~  | `  - g  &m z `  +  g  $k  
g^x `T*  gH* HH,lTNRr  f05|  *  g0H2H4H炄`$<   `\$RRD 
f`8+  g0+ HH,lTNRr  f7|  0H2H A `&SRE f P*URF f 2 <  L|XONuH I ,lL <  j"<  N:*@Jg&A XCfA Cf+l+|   Lp NuH 
"HI ,lL <  jN.LP NuH 
I ,lLp"<  N:LP NuH 
"HI ,lLpN.LP NuH 
I ,lLN|` lXSh ` Ia  lX >,lLN"@Jf,lLNvLP NuH!*HI ~  m . ,llN m . 0- H2- HN|&@ m . 0- H2- HҀS0- 
H4- HԀS "N| k (f @ (g~ m . Nv LxNu H+.&I*HI ( A ,,lhN @C $,lppN&Jg  0/ $H2/ (H,R0/ &H2/ *HR0- Ho0- HH$ D m
ԆЄo&$0- Ho60- JH" D m
҂Їo$- HH"n- HHR$Lx NuH?(/ 4*/ 0,/ ,./ (*o $"M,lhp N"MpN$ԇS&ֆS"M "N M "$&C 8,ltNL`NuYOH0$& &I*HA
C "A 'H |   m p 0( "K,lhN"Kp N"K "$/ &/  NB B+ LhXONuH8*H m .,lpNN&@JgLC 6HHHHHH6- HÖS- 9HH8- 
HĘS// K"m 2a FPO m ."KNHLhNuH*HI ,lpp Nb. &n <`f K,lpN`&S f G,lpN\LxNuH?I ,lL*np$"<  N:&@& "- ,lPtx *,.N*k "K,lLp$N. LxNu" `fpNuRJfp Nu_ 
 H!*HI ~ pfX j p( fL(  	g0* *rAg_@f6~`20* rAf~`$"- gt    AaJ@g,lpN !Jg * @ @ 
%@  LpNuYOH I r Fr
gJfl2+ HR  K,lprNt*@JgBA  0+ H"M@Sd0k  B5  'M A ,lpN2+ Hl7@ Rk `p7@ p 7@ `2+ Rk  Lp XONuH &$I*H,lpN   M"J,lpp N J"MpNP,lPrN:Ld NuQOH/0. &I|z +h@ !`  x H 逐 " 偒ҁ$K* X@  `NHTR   'r'r,  ;?p 瀐 Ѐr 2t 2f2"r a hp +hS2Hfp * XS2Hfp `,0H`&RDRFp /  2HmREp / !2Hm tpLPONuH' . | ( d`$H 倐 Ѐ Ѐr 2t 0f 0 `RFp 2Hmp L NuH&6&I*Hp  o  0( &rr (  g   P"+ Xg| A$0 grz `XH 倐 Ѐ Ѐ$s 0Hr , g4*  g,Fͫ PH 0BB/<  J"M,lt&ONO L REp + d2Hm`Fë PLldNuYOH+6. *It "h p 0)  np;@ bC!I /H  ,lpN( `vHBHB 倐 Ѐ Ѐ&M J'H p_a Jgr  @(  ,lTNR@  o  !J | <- ^,lpNr 2 "n" M ^<0^2IA;@ `RB o ($X/H ( 
f |0Hm `0@ dM ^2p&^A Z o ,1A G0GT@1@ LlXONu H?6/H 0| z 8 /I </I 4&o D Kp|a *@ Kp
a $@Jg gd*J@ gB Kp_a Jg(r  @(  ,lTNRHFBFHF"灒ҁ o < o 0!K ,lpNHFBFHF"灒ҁtЂ o <1
HEBEHE$邔&僖փ&o 4k TRF o <! D0@ XA /H D"
gF&o 4S@" A@A038TA78Vr 2t 4 n"(REHEBEHE 逐 " 偒ҁ/K <|  f 0S@" A@A0+ TA7@ Vr 2t 4 n"( "o 4r 2RAhBo :?@ (`  HFBFHF 逐 " 偒ҁ.&Iz + Xp@c  |qxVcr 2Sp 01xTv 6  lTNj, xp 0$ S`,HDBDHD 瀐 Ѐ23sHDBDHD 瀐 ЀF7RDp 0m8/ (HEBEHE 瀐 Ѐ2s7Ro :</ :p )hr 2m @0Ll NuH-6. &I*H0- \6x `  p H" 偒ҁҁ M'h  p t  - PVz  - TVp  /BHx /< DHx _/< @/ /< //<  o L"K,ltp$ONO $$_/@ $fp `($ $Rk 0H2+ @k 7A R- de X / $LlNu H?>/J XI BB dBBB B B B B B B ~Bo bBo `BoB h",&o X/H P/I T K,lT <  N/@ : K <  rN,  K <  r N?@ 8 K <  r N*  K <  r N( 儘؄,lLpdЀrNT*@/@ >g ",H K,lT <  N @f"lL i*h 0|fp ` n f,lpN*@?| `*m ./M B M,lt"ONO /@g X?|  ^A ,,lhN @C l,lppN&Jg"0/ nH2/ rHR   \r  ?A ^ K,lT <  r N*@ f"o  TA ,lhN&K /M , M,lhN/@g C ""A C ""   K,lT <  r N*@ g >,lLpX"<  N:$@Jg ~%M   K,lT <  r N5@ $ K,lT <  r N%@ A h" K,lT <  N%@ A%H  K,lT <  r N%@  K,lT <  r N%@ H K,lT <  r N5@ L K,lT <  r N%@ DA h" K,lT <  N%@ @A
%H 0 K,lT <  r N%@ 8 K,lT <  r N5@ R K,lT <  r N@ U K,lT <  r N@ V/J 4 K,lT <  r N/@ 0g ^,lLpf"<  N:*@/@ g " K,lT <  
r N+@ X K,lT <  	r N/@ g @+P P K,lT <  r N+@ T K,lT <  r N/@ gd,lLpf"<  N:*@/@ g  K,lT <  r N+@ X K,lT <  r N/@ g @+P P K,lT <   r N+@ T K,lT <  !r N/@ gd,lLpf"<  N:*@/@ g * K,lT <  #r N+@ X K,lT <  "r N/@ g @+P P K,lT <  $r N+@ T,lL <  j"<  N:/@ g p 0/ ^ o ( HHҀR?A t?A pA ,lppH"<  Nt&@/@ g & 'o , *o P"gpH 0 M"o \,lLE>NL Jk f Rp4k ?@ x2/ HABAHA$傔jV&փ4RB HԃR?B z6/ pBM ^4Br<<?C p 
g  0/ bH@B@H@" K t2/ ^$J6/ 0CBCAP@;@ J Hg6/ ACBC\@;@ tj R;B 0/ bgH@B@H@& 078lw8rA:0/ pm Ar 2/ `t 4- n"6/ bC TRo b?@ p?A `*o  g E 0/ bH@B@H@A tp 0/ ^/// 4 J"Ma PO0/ bg&H@B@H@" 47lwrH@B@H@" 6/ ^C?t@ eRo b0/ bH@B@H@" A t*H"/ g  H@B@H@$ &Hp 0/ ^/// "A Ja POQ60+ 2- @c4/ bHBHB&?8x`;@ p 0/ `2+ HABAHA$ԂXn ?@ `2+ 4- Ac6/ bHCBCHC ?z`;A 0/ b o @ eRo b`p 0/ `Qr 2- n ;@ ?@ `0/ bH@B@H@" G l2/ pk 4/ ^B?A p"/ gfH@B@H@& K tp 0/// "A Ja ,PO0k B:p 0/ `r 2- n ;@ 2/ pm B4/ b o B eRo b?@ `?A p0/ b o Xr 2/ `// >?@ 6 "o a XOBo b o ( $HHX/A ?@ .J Pg?@ x?A vt?B b$o 4$
g4/ bHBHB&?8x"/ ?8vRo b&o "g 2/ bHABAHAK t$/ ;B J g  t 4 YjR;B &/ r 2+ ^p 0$ jRԃ7B \2/ bHABAHA$2/ ./C B6C Hր,O =( &/ BրX,O ~=( r ,o 2. ^ jRr 2Ҁ=A \`;@ r 2+ ^t 4 jRԯ 7B \*o  g<p - eH@B@H@"  / ?v0/ .?xr 2- ^t 4 jR"/ ҂;A \( $HHX" ҁp 0/ .$ ԁA d,ltN&@?B 0Jg /o B A /H  
g .B B 0/ & \C?C v K TH4/ ^/C B&/ B678tB@JBRC?C p H47v\B?B p H" pwx?@ ?|  p 0* $/
/* Hx /
/< 7/*  /< -/ /< . KC p$ONO  $_&@Jg %K  * HgrRo 0/ 2/ @4/ ^&KC@B\A?A p 0* L/
/* @Hx Hj (/< 7/* H/< -/ /< . KC ,ltp$ONO  $_&@Jg %K <*o  g p/@ ?|  2- b?A r - eH$r 2- `v 67(z  jRr 27(tҀ?A ?|  p 0/ ^/ MC a XO&@Jg *o  gPp - eH" p 0- `t 47z&jRp 07tЃ?@ ?|  p 0/ ^/ MC a dXO&@Jg 
*o  gPp - eH" p 0- `t 47z&jRp 07tЃ?@ ?|  p 0/ ^/ MC a XO&@Jg 
h0/ p?@ 0/ \@?@ p/@ Bo Bo ` R0/ H" 遒$傔Ԃ- XBo b@ ,`  /m  0- 
?@ 2- PA?A Ro r / ,$S6/ bHöf8SfHr 2/ .$jRP?B p  o (hS2/ Hfp ?@ p 0/ °fA `A /H r 2 p "Vt  H/
B//< Hx _/< @ KC ,ltp$ONO $_&@Jg 	Tp 0/ °f/K `J@f/K *Ro b p / ,2/ bHm p 0/ r 2/ ^Ҁ\p 0/ pЁ4/ Hԁ?B Ro ?@ p*o p -h2/ Hm *o - &HHr 2/ pҀ?A ,J f/o  Jo 8g  A ,,lhN @C l,lppN&JgX0- HHr 2/ 04/ lH6/ pHÖRjR⃖/C 0- JH4/ ,v 64/ nH2/ rHRjR⁒/A p`hB pB `^0+ jR@@H4+ H6- HÖ/C 0+ 
jR@@H4+ H6- HÖ/C pp 0/ 0t 4/
" MC E ta ~$_p 0/ ,r 2/ 0BHx /<   Hx/<  k/< ( @/<  j//<  f/ /<  g// /<  e///<  d// v/<  n//@/<  p M,lp"ONO L&@JfJg,lPr
N:` t/K g 8&k 2"K o,lhNn ' e KpN" oa FBo b*o`Z0/ bH" p 07vt 47tv 67x/A 8r /C J&/ 8278zBHx /< 3//< 4/// b// /a (O (Ro bp 0/ 22/ bHmJ Pg  *o 0- Hr 2/ .jR?A . o X,lT <  r N?@ ,"K,lhpN0/ H@B@H@" 偒jVp 0/ tЁR/@ p M*P0( S@?@ b`  Jo ,g* - S"K m ,lhNH o2( HjR`p 0/ . o( 6HHҀX/A p  o0( t 4/ R6/ bH/@ 0 " lTNv"/ pҀү 0"K / ,lhN - S"K m N*USo b0/ bj Z 
g  "K,lhpNp  o0( r 2/ ^t * TH&t 478tԁԀR/B p j 0( H/@ *j "g""KN MJfS "K MN*j D gTp 0/ ^r 2/ t 4 JjRv 6/@ , / pЃЂЁЯ ,\/@ p" "K / N MJfS "K MN&o/
 K"o h,lpp rNJ$_/
 o h"KpNP$_ K,ltN lp/h < l o ,lpN o X,lT <  r N/@ ,"
g>* VHH*Sm0rl*"偒ҁ*JJ g/
 m "K,lpN2$_Jg(",lPN:`
"M,lLN k V,lLN*@Jf*o m V,lLN m VN$@&o @"( p@g g 
   g  ` *j - &g/ K"o a (XO`x-  &g/ K"o a XO``-  &g/ K"o a XO`H-  &g:Jj f:*  f2 o 4( UHH2<m &t 4Rf K"o a ~.`~ >- &*o , g dpg \/
 o /( P/ M,lT"ONO $_. ` 6p 0* r	 g*Ygr fB K"o a ~ `  K"o a .` *o 4 g /
 m "K,lpN2$_` *o  gzp 0* ,lTNRr    Ma *@JgZpm &Hr  o  ( PWt H 0B//< $K M"o$,lt&ONO L / o"o a XO` $*o  gzp 0* ,lTNRr    Ma 2*@JgZpm &Hr  o  ( PWt H 0B//< $K M"o$,lt&ONO L / o"o a XO`  *o  gxp 0* ,lTNRr    Ma *@JgXpm &Hr  o  ( PWt H 0B//< $K M"o$,lt&ONO L / o"o a XO` p 0* ,lTNRr    K"o a . *o , g0pg*/
 o /( P/ M,lT"ONO $_. `/o  l"J,lLN Rg $o 4Jgl*o  g&o  g - P&*o  g&o  g - P&*o  g&o  g& P 
g( j "h " Q,j  f * <g"@ i ""P,j Hf o la *o g
 M,lpN / dg
 @,ltN*o g
"M,lhN*o g
 M,ltN|Jog"o ,lpN*o  g"M,lLpfN.*o  g"M,lLpfN. 
g"J,lLpXN.*o  g"M,lL <  jN.*o > g
"M,lLNN o /P A ,lppNh Rf~  L| NuQOH>. *H/J $I &o $/I   K,lT <  r N K <  rxN, " K <  N$@ K <  rN*  K <  r N&@ f&l</
BHx /<  Hx /<  //<  /
/<  //<  // P/<  //<  //<  //<  ,lXȓ$ON4O L _, g o   JfS f|  L|PONuH "$o  
f"/ A $,lPNFAL"NL` B/
/<   o  C $,lX$ON4O LDNu H>&I*HI ~ ,lLp@"<  NT/@ g4"    /A /@  H 0"K MG  a  L . "o NN L| NuNqH>(*	 K,y  LN$ D"E,y  XN  ;L(  K,y  LN$ L|Nu  A 0Bh B NuA 0NuA 0  B NuA 0 Nun ' eNHȲe2/ pҀF  /r pN:" _Jg!H XB !C """ Nun ' eNB gH  $P$g"J$B !N.`Nu"JYLpN.n ' eN<" gZ gVH00$$H dJ&&C&gr KJ gj NFJg @ *   g"H"^S0HAv ""QQ LNu PX"* a  Jg"@ JX ( !I H PB 	`"*  *  $a`Jg&@"@ J  H @!I p
@ @ 	A 'H 
"* 7A A $rF  A * 'H 'H '@ B !@ 'H ` X/ N:Jg @  XNun ' eN6"g^"	gZ dV/"&A"gdJ g^ e d KN@"k ") g A 'H #K  S"!I &"K&_ ) Щ   gNuYQ 	 Y"Q"!I "@ !N.&_/.<  N.Nu Pool H 0`  gR  g$H&I  g
f`p L Nu L NugJfp Nu Nu    T l 
  1   T  T  T  T,  R  ;Z  4  4D  3  3  1  1  0  0  0  0j  0  /  -  -  -d  -F  ,  ,  ,p  !      n          f      z    4       &    X  . *       parm.library 13.6 (30.03.95)
 parm.library &  R       0b  $      j           ^  R  /  0  0  -^  ,  -@  1  3  0  0  1  
  j    ,l  ,  T  3  
  -  - b ,   v  |                                       
   3     . < 0  ,  (  $                            ܐ                   | x t p l h d ` \ X T P L H D @ < Ԑ 4 0 ,   ̐  b a ` ֐^     xWBInfo.c= ܐ    P  Q` R  Q '^ 1    ReadMe? p BrowserII can be run directly from here. Just double click on BrowserII icon.
No need to install it for a first preview.

The catalog description of BrowserII is included in this archive.
If  own  CatComp and you translate it, please, send us your work.  If you are
the  first  to  send  us a new translation, you will get a free registration.
You'll have to translate ParM's catalog too.
Please, put your name in the About requester.

The best way to join us is, if possible, electronic mail.

bvme@chasseneuil.TR   ,  kem.slb.com  (Pierre Carrette)

Enjoy.

                   ߐ ސ ݐ ܐ ې ڐ ِ ؐ א ֐ Ր Ԑ Ӑ Ґ ѐ А ϐ ΐ ͐ ̐ ː ʐ ɐ Ȑ ǐ Ɛ Ő Đ Ð                      d    S  T&Y W  V  U  T   ^     
GReadMe.info6   p   $  9 !    2JP 2L   2L ++   w
  9       W g    } {  O߀                  <  􈈀    ܪ Ĝ 5 *EGIE y#* yjUW|U ~?񊪀݀ʪ _J  ߀?j  _*       <0 `          0ED0 `EE  j U  *UT5U * >݀ 0 
   *_߀@ *?     9    8     0 *  "x  h     o|  J  @  ?`     `       0             ?߈             _@    5         ?; D   UW$U    U  w U 7Uu "?Tzk Tji (W lQz Q c  J@ [ ` W `   ]݀( D    Uh `   5  UGPU   U*h   (U	 "@   BU2	 
    
T5 *    
T
R	J l    T2	 x    R    	 hP  *  qр@  
 ` ]]݀ SYS:Utilities/More  a  `  _ ^     	Help.info< p    X  Yçu9 Z  Y *^   ~ dReadMe US Users6 p 
For all those of you, afraid of sending money to foreign countries,
North American registration and support site for BrowserII is now
available from:
 Jon Peterson
 P.O. Box 2661
 San Angelo, TX  76902
 Email: FidoNet 1:383/25 or 26 or 30
 InterNet jon.peterson@twisted.com
  j.peterson22@genie.geis.com

You can always FREQ the latest versions of and BrowserII at
Dark Knights (915)944-9283 in the Amiga files section as BrowserII_v3.lha.

  \  [  Z  Y y^     BrowserII.info7 p    [  \!=  _  ^  ]  \   ^     
bReadMe US Users.info1 p   {  9 !    2Jh 2J   2Q +1Ȑ w w
  9       W g    } {  O߀                  <  􈈀    ܪ Ĝ 5 *EGIE y#* yjUW|U ~?񊪀݀ʪ _J  ߀?j  _*       <0 `          0ED0 `EE  j U  *UT5U * >݀ 0 
   *_߀@ *?     9    8     0 *  "x  h     o|  J  @  ?`     `       0             ?߈             _@    5         ?; D   UW$U    U  w U 7Uu "?Tzk Tji (W lQz Q c  J@ [ ` W `   ]݀( D    Uh `   5  UGPU   U*h   (U	 "@   BU2	 
    
T5 *    
T
R	J l    T2	 x    R    	 hP  *  qр@  
 ` ]]݀ SYS:Utilities/More  w2 m     Icons@ p    `  aok d  c  b  a    ^     
}Svenska.info9 p   8 R G     2RH 2R`   2J 2x  4 D
 ( G           |   { H W 7w 7W 0  ' 0 TW 0 
<D 0 TW 0 * 0 X 0 
 0 4 `  ? ? ? ? ? >u^ > >u^<D > >u^ダ             0  7  @ w  w A  wB?  w5PA  w*  w5P @ w
  wP   w  s@  x        @ ~   | A  }   }=N A  }   }=N  @ }  =}N|  )  | {x H  W   vy  V8   &8   @
V8   P<  
S  5P  
  @       ' y     &8  @ V8    &8  @ <   +(  @ | x     G       ?    >     = $   ~  8 n      )   `    `    0    8                 w     b   Cb   b   "   b        ?      @   A   B @ ` lB( ;a  G ;`@ o ;  W ;@  k ;`@ ~, ;` k H ;`(  ;` {  ;`
  9` _l <  `v`| ?0]4 ?   O@ >`    >U`  a >`  T  >`  @a >`  V 4 ?`  @ @ `  @$ 	   ?   >   = $    ;  @ 8    8     8      <   =   H ><   ?g  " ?   ?   >   < :ܐ  <     \ *  \   ;\ * ?\   = * > <   ?  
Installer  APPNAME=BrowserII DEFUSER=EXPERT SCRIPT=Install-BrowserII NOLOG LANGUAGE=svenska MINUSER=EXPERT     C@ z  p    e  fB }  |  {  z  y  x  w  v  u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f /^ @  7  xwhatis.library3 b  p       	        	pNuJ  	 k # L  H "0| *@I )P  +A "| 	 A k+H 
|  C 2 2 A #"C " QBh &B ( YB 8p l !@ < L0 Nuwhatis.library 4.2 whatis.library 4.2 (11.4.94)
 dos.library CON:0/10/640/100/WhatIs.library You need KickStart 2.0+ (V37.175+)!
  intuition.library utility.library H1I J *NfCx,l  pN)@  l h % d@Af"$<  ,l N. gAn"$v"NrdN:"N"N,l  Nbp `\J fCf,l  p%N)@ J fC`,l  p%N)@ 0-  R@;@    S@f- ?gpa "Jjp @ LpNuHI ~ Sn  f.  ga  .  LNuH!*NI ~   Jm  ff"M,l  Na  , g
"@,l  Nb , g
"@,l  Nb , g
"@,l  Nb.- "p 0- r 2- $Ԁp 0"M ,l  N.`   LpNuNq0,H", H// /Hz Hl a `O NuTYPE  SUBTYPE INSERTAFTER ICONNAME  NAMEPATTERN OPTNAMEPATTERN  SEARCHPATTERN MATCHPATTERN  CASE  SEARCHBYTE  COMPAREBYTE ENDTYPE Syntax Error  Missing closing quote Error in decimal number Error in hex number Invalid char  %s in Line %ld, CharKTR   &&,  ~] %ld
 Token too long  No Type defined Required argument missing Wrong argument type Type incomplete Unexpected keyword  Keyword expected  Tag already defined Invalid offset  Type already exists Type name too long  Unknown SUBTYPE Unknown INSERTAFTER #?  Offset out of range Too many tags ENDTYPE keyword missing S:FileTypes Couldn't read "%s"
 " HAH0  g
HHr0`  HHrW NuH "l  (*HJfS,l  Rr INt @Jg"Hf L` NuH,. 0HZ*H l  (r,l Nt&@Jg67G A 0H"H M,l  N  LhNuH?&/@ $z x BoA"$<  ,l N. g f"t vN"vN, o 4 Rr,l  NT)@g $ "&,l Nְfx?|  BB08 ",l NJDg BlBo Bo z Bo )B` p@fz ` p@m 0H2/ H$A(H?@ 8/ j0HDA  p a z ` l 8/ H d @0; N  4  >|**BRnH.ABx >HR l  ( r,l Nt*@Jg:A"M ,l  N HA"H"  #M E Ba 	>z Bo ` pz ` Aa HRgAa z `  A"HJfS 	r	cAa z ` l/|  Aa v/@?|  ` Aa . RfAa z ` 2H A   0R@!G ?@ ` Aa . RfAxa rz ` H A   0R@!G ?@ ` H K*  0R@?@ Aa +@ ` hH A!  f ` RH A!  g ` <H A!  i ` &H A!  k ` H A!  h ` H A!  j ` A"A $vdփ,l N:AC *2BpgЀA *Ca pgЀA *Cra H K   hgSf2A *"A $vdփ,l N:`A *"A $vdփ,l NREA a +@ ` BACa NH K   jgSf2A"A $vdփ,l N:`A"A $vdփ,l NREA "HJfS 	RH2/ Ha ^+@ f  z `  H A!  l ?| `  H A!  m `   ,`  nJjAHa *z `   ,`?@ ``H REKA"HJfS 	H2/ Ha +@ f0z `lH KRE0,dH2/ HAfa +@ fz `@p @mAa z `.?o  a  ( JDf ba  VJ@fJo gAa z @z l  ?"l,l  NNJofHzHzHl a O 0LdNu/ l)HJfp `$p
 gJfJgB()HRl)l p.NuH/K| `R  l gHAH0  f l gR  ,  rdҁmAa ~`Jr  a H"A ҆0 Hl0HDA  p a ~`JEfB>H`<` Rm N l D@0; N 6 
  * p ` *A"A`$,l Np` A"HJfS 	9@dg gAa `  0,djR@@t 9@d`FH ЀA0 HH a Dr  A.H Ѐ0HH a $" Af  RBldml dn6B`t `$0H2,dHAfS r 0  ᡃ`RBldmp`Jp`FACfp`6|H C |"q A,l N^Jf0H`RFp@o0H@pL`NuH. p K gp`L gp`B gp`8p Jgr" gSgSfp`p`p`p `p  ep fp@pL NuN paQOH. HGBGHG&P/H `p 0+ 
f*K` + g @ a*@&S fJf L(PONu.O .LIB .ILBM .INFO  .PP .ZOO .LZHLHA .MMD  Unscanned DosDevice def_Disk  Volume  Assign  def_Assign  Dir def_Drawer  Exe def_tool  Pure Exe  def_Pure Exe  PP40 Exe  def_PP40 Exe  PP30 Exe  def_PP30 Exe  PP Exe  def_PP Exe  Script  def_Script  Text  def_Text  Object  def_Object  Lib def_Lib IFF def_IFF ILBM  def_ILBM  ILBM24  def_ILBM24  ANIM  def_Anim  8SVX  def_8SVX  SMUS  def_SMUS  FTXT  def_FTXT  PREFS def_PREFS TERM  def_Term  Icon  Imp Data  def_Imp Data  PP Data def_PP Data Zoo def_Zoo LHArc def_LHArc Med MOD def_Med Mod YOH *I&P/H `0+ m cRk  + g @"Ma&SJfL( XONu H6/H $,l  <  r$HN J. HGBGHG <  rN J,  <  r N J/@   <  r N J/@  <  r Nܛ/@ rg@ H@ l B@H@ ,a  @J *@f" l  (,l prNt+@ g   @a   l  (,l p "<  Nt$@Jg    g& l  , a t l  ,&@"@a 0+ R@`
 l 0( &S@5@  l 5h & 
%o   %o   o  g%H `
 g%m   g m "J,l  N
%M ` l  ,"J,l  N
B  l Rh &p`
 gB p Ll NuA a nNuYOH *I&P/H `0+ 
H@B@H@+  + g @"Ma&SJfL( XONu/ l  (,l pNh l  ( 8g"@,l  NN l B 8 l Bh &,_NuHa l  ,a  l  ,Cd,l  N
 l 1|  &BHz/<  Hz/<  a 8> G BHz/<  Hz/<  a @BHz /<  Hz~/<  a @BHz/<  Hzv/<  a O D@BHzt/<  Hzf/<  a @BHzl/<  HzX/<  Hx /<  a @BHz^/<  HzJ/<  Hx /<  a tO D@BHzL/<  Hz8/<  Hx /<  a J@BHz</<  Hz*/<  Hx /<  a $@BHz*/<  Hz/<  a O D@BHz/<  Hz/<  a @BHz/<  Hz /<  Hl/<  a @BHz/<  Hz/<  Hl/<  a O D@BHz/<  Hz/<  a |@BHz/<  Hz/<  Hx /<  Hl/<  a L@BHz/<  Hz/<  Hx /<  a &O L@BHz/<  Hz/<  Hx /<  a @BHz/<  Hzt/<  Hx /<  a @BHzn/<  Hz^/<  Hx /<  a O L@BHzT/<  HzD/<  Hx /<  a @BHz>/<  Hz./<  Hx /<  a `@BHz(/<  Hz/<  Hx /<  a :O L@BHz/<  Hl/<  a @BHz/<  Hz/<  a @BHz/<  Hz/<  Hl$/<  a @BHz/<  Hz/<  Hl4/<  a O T@BHz/<  Hz/<  HlD/<  a @BHz/<  Hz/<  HlT/<  a b2@O 4g8p a J@f
p l !@ < l "l  ,p 0) &a   l !@ 8gp@p L@Nu` XH H@,l  B@H@*H"<  NT&@Jg M"Ka  @p Lh NuH# ~ <) `p 02Ht 4ԁ0( 1gp `RG0Hr 2mpL Nu` ` H "	$,l N4L@NuQOH/6. |z x &o 0/H (/H $*I` B   fm 4 l *@0; N    R , x   "j  Ma@z` "j  Ma8 `   g j "Kp 0a H@p 2H,z`   g j "Kp 0a H@p 2H,z`   g j ,KC "	$,l NH@p 2H,z`x g j ,KC "	$,l N4H@p 2H,z`J g j "Kp 0a H@p 2H,z`& g j "Kp 0a H@p 2H,z@| A (,l N$@ 
g0Eg 0Ef fJDfp @pLlPONuYOH4. *I$P/H `D * g<r 2//  "M j a >XOJ@g" * gr 2//  "M j aXO&@Jf&J$RJg g L,XONuH3,l ~ "$<  &IN, g"$&<  N. "N LHNu H/>I $I.<  xB 4/H ,/I 0,l  <  r  JN J/@ 8 <  r N J@ ) <  r N J/@ < <  r Nܛ͗, gx ?D * <  r  JN@ ( <  r JNJ ,f
 <  ` l d  @0; N   $ @ \ \"l  i 8"h p 0) 
 @ ` 2"l  i 8"h p 0) 
 @ ` "l  i 8"h p 0) 
 @ ` "l  i 8"h p 0) 
 @ ` / (HHQgQg*QgBQg>QgV`p"l  i 8"h p 0) 
 @ ` "l  i 8"h p 0) 
 @ ` "l  i 8"h p 0) 
 @ ` l"l  i 8"h p 0) 
 @ ` PJ 8fN/  )eF,l   <  "<  NT$@Jg "/ ,t,l N* g"$
N"N J/H 4g/H 8$o 8 
gR * oL$o , JJfSp:"2f"l  i 8,h p 0. 
. @ ` "l  i 8,h p 0. 
` /  )dr&o , KJfSp:"3f"l  i 8*h  f 
g*  wg"l  i 8*h ( f l  ,Bp "Ka XO*@ g &p 0- 
.   ` JDg(,l   <  rNT$@/@ <g o ,"Ja , B2 p*o <e t   g8r gB_g  FONSg  g ,g 0	g 4` <"l  i 8&h 0` , l $h 8&j J 8g o 8(  wg&j  - $HzxgrP g m6g`  &j `  &j  `  &j $`  "l  i 8&h 4`  $o < *  l *h 88SVX&m 8g`gRg\ggRg> gH`t&m <z `BMHDfp* f\&m @`VRXe`L&m D`F&m H`@&m L`:&m P`4&m T`.&m X`("l  i 8&h ``"l  i 8&h d`"l  i 8&h h*o < fL- r-f$tl- fth- f- f"l  i 8&h l`rMf- frDf"l  i 8&h p fp 0  f"l  i 8&h \ f  x pdx`Dz `$p 5X A$H  gRD`
 gx `Re " ҁҀ0Hcx@x JDg,$o 8 
g*  wg"l  i 8,h (`"l  i 8,h ,&N$o , g$ + g8t 4/  k "Ja XO$@Jg&J` l r 2/  ,"Ja XO&@Jo *g
"M,l  NN gp 0+ 
.  @ $o 4 
g
"J,l  NN L| NuH#. | &I*H`0 Kp 0"$,l N4J@gp` BJfSp 0ЈR, Gep LhNuH#. | &I*H`0 Kp 0"$,l NJ@gp` BJfSp 0ЈR, Gep LhNuH#. | &I*H`& Kp 00- HC g
fSffp`RFp 02- Ht 4ԁmp L(NuYO/*H/@ 0-  IC Hg
fSffp@p *_XONuNq H 2p/@ B /o $ /o ( A 6/H "l   i h fȕC G ,,l NLL  NuResume  /*HA C"B"*_NuNqQO/"¼   	H@I B@H@fp `8  mp`,  l" l  h 8"p  p 2( i cp@p(_PONuUnknown YO/ H@I B@"l H@r 2) &d l "h 8 q  ( `  fC 	@p (_XONuYO/ H@I B@H@  ep ` l "h 8 q  ( (_XONuYOH*I&P~/H `* M"k ,l N^Jf~ >+ 
` + g @"Ma. &S RfJf LhXONuH *H I fp`(A"M,l N^Jf <  ` l  ,"Ma vLp Nup	Nu/I "l  i 8"Pp 0) 
 @ (_NuYOH H@I B@H@"l   *i 8fp `N"u <) "l z 8) &`.HEBEHE  u p 0Rr 2( fp 0( 
 @ `REDe <  L0pXONu/I  l " p!@ <h   bJAga r J@fr @p(_NuYO/    I g&  g"l  i 8"p  i  gp 0( 
@p (_XONuQOH0$ ļ  HAI  l BAHAp 0( &dv 6 ep `$ "l  i 8"H p  h  WD HHLPONuH
I  l . p 0( &T" l NpXrHA,l  NTJg @ @p LPNuYOH(. μ  "HA"HBAHAI   f l r 2( & `pf l p 0( &R@ " l NpE  
LXONuH 
I ,l  "HNNLP NuH. &I*H`SgJfS`SJgf L(Nu   
        &T  &  %  %Z  %  $  $Z  $0  #  #j  #  "    0    4 .            .   (   #  #`  #  "  $(  $,  $N  $  %  %H  %  %  &N @      D @ < 8 4 0 , ( $       X     P      WhatIs.library  $VER: whatis.library 4.2 (11.4.94)  Sylvain Rougier & Pierre Carrette whatis.library	                .  <  B  N  Z           b  p              (  8  L  ^  r				
       "   g  h   g  l   g  r   g  z   g     g     g     g  "  	 ( H
   " |  X  H  8  (            
             ސ                  JfSfNu   Deutsch.info9 p TR   , , ,   Ƃ: i /
"H$@ m N$_p  m0( H@B@r 2( +@"H m N. -g
" ,lNdJg"m <   ,x N.Jg
",lN -LLN]NuNUH2&m >- |  H/,Hx B/ a O Jf  p@fv/,/a jPOJg  $k T,o  gH l,z"J,x N+@Jf l,^"JN+@Jg<r  @2( HABAp 0( ,`$/
a XO, `p  l,0( H@B@r 2( Ё, /N 'F A )H@LLN]NuH'&o >/ "|  H/,r/// a O Jf  /,/a POJg   k T"t,lN* Jg  EHx Hl,/NThO , ",lN/N|XOJg"A,"HJfS 	H// /a O `/BHzVa O A )H@LHNuNUH2&m >- E. H/,r/// a O Jf @/,/a POJg . k THz/+HNdPOJf$E, Jp "l,)/ Hz./NV@O `  Hz/-Nd~POJfD l,0((  gE`    gE`    gE`     gE`xE`rHz/-Nd(POJf(E, J/H r,x N(/ Hz// NUO `8Hzl/-NcPOJf&E, J/H r ,x N(/ Hzd// NUtO /N JJfS H./ /
a A )H@LLN]NuNUH>- | H/,Hx Hx / a xO Jf  /,/- a PPOJg  p@f^ m \/,/a 2POJg  |  m &h TJg6p @ Ag W@g"@ g@ gW@g@ f ` ` `"m  i T/Hl,/ND* H. NO Jg$A,"HJfS 	H/- / /a O `/- BHza O  m \)H@LN]NuNUH#>- |  H/,Hx Hx / a `O Jf  /,/- a 8POJg  p@fH m \/,/a POJgx"m  i T"t,lN, Jf/,/,Hx /,ha `FJlg
,m  g "m  i Tp@f `p / /NzPOJg
",lN/- NL@N]NuH&o >/  H/,Hr/// a O Jfj/,H/a `POJgZ k THl,/N  , .NrPOJFg"A,"HJfS 	H// /a O `/BHzLa O A )H@LNuH#2&o | /<  HxNQPO$@ 
fa p`<"t,lN, Jg"$
N. "NJg.* t`~`~/
NQXO LLNuNUH/2&m >-  H/,Hx Hx / a |O Jf /,/a VPOJg  k T/a JXO, pg tp@f lzJlg,m  g Vp+ f k T + "$ ,lNF* ` 2$k T;| Jg 
p @ +gVU@gZ@ g  W@g  S@g  @ g  U@g@S@g  Y@gL@ 
g  W@gVS@gh@ g  U@gS@g  Y@g&`;| `Bm`Jmg ` ~ ` vJmg ` h ` `Jmg  ` R  ` JJmg ` < ` 4Jmg ` & ` Jmg `  ` Jmg `  `  k T"$,lNF* ,/N 'F A )H@LLN]NuH&o >/ | <, H/,r/// a O JfJpgHz/,Hx /,ha @O `* + 9@r 2  l( /NpXO 'F A )H@LNuH0&o >/  H/,r/// a O Jf  pgHzz/,Hx /,ha 
O `^$k A HxHl,/NRO Jf/,/,Hx /,ha 
O `&/a vA,"HJfS 	H./ /a O LNuNUH?0&m >- <- x @Bm;@0-HS2-Hl  0- $KA +Hrftf$* &( *`4U fpf//
a 0PO* `/
a .a ./
a PO*  @ d<@0; N  
 
   * "Jg"x `Jnx `Jjx `Jo
x `Jkx Rm` <p@f
JWDHH/N B+ 'D A )H@LN]NuH&o >/  HB/ /a O LNuH&o >/  HHx / /a O LNuH&o >/  HHx / /a ~O LNuH&o >/  HHx / /a XO LNuH&o >/  HHx / /a 2O LNuH&o >/  HHx / /a O LNuH0&o >/ "| x Gl*  $K/
a XO* JDf,`/
a XORD`/NfXO B+ 'F A )H@LNuNUH0&m >- ,- :- x Gl    $K/
a .XO+@ @ 	d  @0; N    & : N l   ܭ`   "-N], `vJg
Jgp`p , `bJf
Jfp `p, `NJg -gJfJfp `p, `0JDf,-p +@` p"-㠁`̭`` -/
a XORD` &p@f̭/ND B+ 'F A )H@LN]NuH&o >/  HHx B/ /a O LNuH&o >/  Hr /// /a O LNuH&o >/  Hr/// /a pO LNuH&o >/  HHz
r/// a nO JfRA /a XO* Jf/,HzHx /,ha O `&/a h"N\p, .NFXO 'F A )H@LNuH&o >/  HHx Hx / /a O LNuH&o >/  HHx B/ /a O LNuH&o >/  HHx B/ /a vO LNuH&o >/  HHzr/// a tO Jf(/a ߚJWDHH.NvXO 'F A )H@LNuH&o >/  HHx Hx/ /a O LNuH&o >/  HHx B/ /a O LNuH&o >/  HHx B/ /a O LNuH&o >/  HHzHr/// a O Jf"/a , F.N
XO 'F A )H@LNuNUH&o >/  H/,r/// a PO Jf2/a vA ./@ a h"/ ,.N
F 'F A )H@LN]NuNUH&o >/  H/,r/// a O Jf2/a A ./@ a  "/ ,.N	 'F A )H@LN]NuH&o >/  H/, Hx Hx / a O Jf  /, /a \POJg  p+ frAf + gHz/, Hx /,ha O ``Af + ` <  ,  k T + //Hl,NTA,B0h .N	 A,"HJfS 	H./ /a FO A )H@LNuH&o >/  H/,0r/// a O Jf:/,0/a POJg* k T"HJfS,	/NXO 'F A )H@LNuH&o >/  H/,<r/// a JO Jf\/,</a &POJgLA /,</a POJg8 k T"k T/	/N, .N"PO Jgp`p '@ A )H@LNuH0&o >/ | GlT  $Kpf/* HzRNBPO`(pf j T/Hz>NBPO`Jf
Hz4NBXO/
a FXORF`Hz&NBXOBA )H@LNu/,$Hx /,ha  0O NuNU/N. Jg/,(a XO| L .N]NuNUH2&m >- BHx NDPO$@Jfa`  p@f,lN| l Hm /- /
NEvO ,MJ f H/
/ NPO`8 lJg/NɚXO lB m JfS  H/ /
N&PO l ,L] fp 0+ / /,,a PO`" g l0`Ap 0+ / /
/a O  @L/
NDDLLN]NuNUH2&m >- $m BHx NCPO+@Jfa `  p@f,lN| l  J"mfHzԔ/-NS mJfS "mHm /- /	NDPO ,MJ f H/-/ NZPO`: lJg/NrXO lB m JfS  H/ /-NPO l ,L] fp 0+ / /,,a  PO`$ g l0`Ap 0+ / /-/a  rO  @L/-NCLLN]NuH>/ </ :/ &o  Fl/HzӞHx /,ha O Eo/HzӚHx /,ha O p ,LLNuNU  / ,g(Hm /- / N?O r b",,lNB,_N]NuNUH2Jg  <   r ,x N:&@ g  Hm /- /NBO +K  m JfS  rIl l/- /N?~PO`z m "H IBHx  /- +INQzPO$@ m 
f l/- /N?@PO`<B l/- Hzt/N?(O r b",,lNB`A +H ` `"K <   ,x N.`, lHm /- /N>O r b",,lNBLLN]Nu  N YN Z<N  Q8N  RN  "nN YHN ]N YH2HlpNHlvNHlNHlN־HlNֶHlN֮HlN֦Hl|N֞O  Jg>~ 0,@l H l/NŞXORG`0,H"l,x N.BBlA,x N&@ g
/a "XO`$l 
g$)R/* NL. NDXO"Jp,x N.`p @l)|   )|@o@ml\LLNu%s: String argument expected  %s: Parameter already defined %s: No prompt specified %s: No help text specified  
>%s
 No default specified    No choices specified    %s
 All, Pattern and Choices are mutually exclusive .info s/Startup-Sequence  if exists %s
  execute %s
endif
  Bad destination specifier   Execute   Command too long  Zero length path name WELCOME %s text already defined PARAMS  HELP: Help  PROMPT: Prompt  TRANSCRIPT  %s
 Incompatible type DEFAULT TOOL  expert  FAIL  NOFAIL  OKNODELETE  FORCE ASKUSER Integer argument expected Argument #%d Not a String /&o  l@c]@/,@NӎXO`&_NuNU  H0&m >- $m ,-  H/- r/// NO JfZp ,lrgDpg/- HzTHx /,hND`0Jg/- HzXHx /,hN*` K"J"2)K@`/a TXOLN]NuH&o >/ JGg
,m  g8J,vf/Hz"Hx /,hNO J,pf/HzHx /,hNO p ,LLNuNUH 0&m /a B/,,aPOJf  0,f:A"K"2 lxT/HzN k T./,ׄN.NpA )H@`\,U gHz/,,Hx /,hNO HllN vXO$@J,Lg
BNXO`  JJfS H// /
NvO \@L N]NuNUH 0&m /a B/,8a POJf  0,f:A"K"2 lxT/HzNL k T./,׀N.NҦA )H@`XJ,fHz/,8Hx /,hNV`<HllNXO$@J,Lg
BNXO`  JJfS H// /
NɰO \@L N]NuNUH 0&m /a JXOJ,fHlBHzNvO B/,Da POJf|0,f:A"K"2 lxT/Hz8Nn k T./,pN$.NA )H@`<HllN|XO$@J,Lg
BNNXO`  JJfS H// /
NO \@L N]NuNUH&m /a XO,J f| )H ,/,/ /,N;)@B/,Pa O Jfl0,f6A"K"2 lxT/HzbN. /,tNR.NA )H@`0HllNXO. J,Lg
BN|XO` l@  l@!G \@LN]NuNUH&m ~ /a XO,J f
| BB/,\a \POJf  0,fDA"K"2 lxT/HzN +  l"PT./,dN.N8A )H@``JfHz/,\Hx /,hNO  ,2,H// BN:XO )@J,LfHllNXO.  l@  l@!G \@LN]NuNUH&m ~ /a XO,J f| p)@B/,ha lPOJf  0,fpA"K"2 lxT/HzN.lNPO,+ z 0,@l. Hr g H l"PT/	HzN~PORE`/NA )H@`DJfHz|/,hHx /,hNO J,LfHllNXO.  l@  l@!G \@LN]NuNUH&m ~ /a XO,J f
| BB/,ta nPOJf  0,f  A"K"2 lxT/HzNPO + g"0,rAo
 l"PT`0Hx N,(XO"@`"0,rAo lX"PT`Hx N,XO"@/	/,xNh.NA )H@`&J,LfHllNXO.  l@  l@!G \@LN]NuNUH&m ~ /a B/,Ѐa POJfR/,ЀHlNҒPOJg@J,LfHllNfXO. Jg$,U f lT"lTHx /	/NO BNLN]NuH&o >/ |  H/,θr/// N2O Jf  /,θ/NPOJg  Hx /,θa POJfrHllNXOJgH k T//,4N:POJlg
,m  g$ k Tp ,mrH/ /NPOJ@g|`|/a XO l@  l@!F \@LNuNUH0&m ~ /a Hx /,a FO Jf  /,HlNDPOJg  /,HlN0POJgn,m   gRG,|U fRGJgRGp@oHz/,Hx /,hN`4HllNXO$@J,Lg
BNɐXO`'J  
gp`p B+ \@LN]NuNUH'2&m | B/a Hx /,a zO Jf N/,HlNxPOJg :/,HlNdPOJg & lT"lT,+H+IU f lT`
/	N:ZXO @$H"-t,lN+@"-N+@f/,d/,Hx /,hNO ` /-NrXO* "-,lN -f| `6" N+@"
tN+@g/
N:XO, "-,lN"-Ng Fo$,m  g 6//HllN|O Jf$` ,m  g//HllNZO Jg  ,o  WD HH9@Jlg
,m  g l]B/
/-/-NO . H`~Jg/-/-/,\NVO ,m  g   mCfHzHmNB JCfHzHmNAO Jlg
,m  g6,    @],oHHrH/ Hm/-HmN6O . H`~Jg/-Hm/,\NO  -g
" ,lNBNLLN]NuNUH?2&m ~ 0,g,m   @mB/,a POJf @/,/NPOJg .N*( Jg ",lN* Hx HzN'PO+@",lN"N -Jo A+H+l<,m  gHmHmN\POJ@g t/-/-Hlt/,8NO Jlf x/-N2LXO,  Jg $"-$<  ,lN.  Jg B/N0PO$@JfN` 0"$
&,lNְg/,h/,Hx /,hNO ` ",lN"-$<  N. Jg  "$
&-Nаg(/,h/,Hx /,hNO ",lN~ `   GCt/	/	Hzd/N-O  "-䐁o J$& ",lN",lN~ /
N0^XO`6/,h/,Hx /,hNO `@/,h/,Hx /,hNO `&J0,U@fHllNXOJg k T/N XO 
g/
N/XOJg
",lN/a BNtLLN]NuNU  H &m Hx /,a POJf  /,HlNˆPOJg  HllN.XOJgjJlg
,m  gZfp )@ lT,J g"lT`,oHHrHr ,mt@H// /,/	/,/NO /a 2BNòLN]NuNUH12&m ,U gHz/,Hx /,hNO Hx /,a POJf  /,HlNʤPOJg  HllNLXOJg   lT//,<NPOJlg,m  g   lT"$<  ,lN. JgdHlN0lXO$@ 
gHA $"&* ,lNа g/,lHx /,hNO `8A /NhXO/
N0:XO$@`",lN`/,dHx /,hNO /,@N2XO/a BNvLLN]NuNUH0&m >- | H/, Hz/ /N$k THx /, a hO Jf  HllN"XOJgt/
/,DNPOJlg
,m  gXAlC""BHx /
HmN;O A"JfJ fgHzD/, Hx /,hNO `HmNVXO, /a  l@  l@!F \@LN]NuH0&o >/ | H/,Hz/ /N$k THx /,a O JfPHllN@XOJg&/
/,HNPOJlg
,m  g
/
NXO, /a XO l@  l@!F \@LNuH0&o >/ | TR   +Y+Y,  lg8aH/,HzF/ /NȈ$k THx /,a O JfPHllNXOJg&/
/,LNLPOJlg
,m  g
/
NNXO, /a XO l@  l@!F \@LNuNUH#2&m >- E  j T| H/,$r/// +HNO Jf  /,$/N`POJg  /,$/
NNPOJg  Hx /,$a &POJf   mJfHzj/,$Hx /,hNO HllNXOJgfJlg
,m  g:,m  g k T/-/NPO, ` k T"j T"$	,lN,  k T"j T/	//,PNO /a  l@  l@!F \@LLN]NuH'2&o  | zJlg,m  g  "t,lN. Jgz <  "<  ,x N:$@ 
gR"$
,l    H 4l                                                                                                                                                   ސNJg,* t` "B <  ,x N.",lNp `  "B <  ,x N.",lN`",lNp `| rgZ,]"  Jfp `b0,f,] fp `N0,g",]  gHzR/BNO Jfp `&"t ,lNF"N* Jg//,TNPOpLLNuNUH0&m >- Hx /,0a POJf  HllNXOJgd| Gl^  $KpfJ j Tl]/+Ha xXOJ@g.,m  g$ mCfHzHmN8Hma HO RF`/a BNdLN]NuH0&o >/ JGf$lp` H/,<Hz/ /NO $k T/,XN| L.Hx /,hNDHx Hl,N8O LNuH&o >/ JGo*pf$ H/,HHz/ /NĂO )k B B,o  g9| /,\NPB,LHx Hl,N8&O LNuNU  /&m  + / N.a BNh&mN]NuH&o >/  H/,`Hz/ /NO J,Lf0,g KCv"2 )K@HllNtXO/a BNXOLNuH&o >/  H/,lHz/ /NÜO J,Lf KCv"2 )K@HllN
XO/a 6BNXOLNuH&o >/  HHz<Hz`/ /NFO J,Lf" KCp"2 )K@HllN
XOJ@f| L/a BNVXOLNuNU  H0&m >- $m J,lf/a `DJg/- HzHx /,hNN`* HHzHz/ /N¶O J,Lf K"J"2 )K@LN]NuH&o >/  HHzHlp/ /a rO LNuH&o >/  HHzvHlv/ /a HO LNuH&o >/  HHz\Hz</ /N" k T.HzPN.a BNNO LNuNUH2&m >- p ,lr  f
/a `   HrHA,x N:$@ 
fN`r| Gl`   K+Hpf/NXOp mf J( g/NXO H m%  `Hz/,ҜHx /,hN`RF`)J9G)K@LLN]NuH&o >/  HHx HznHl/ /a O LNuH&o >/  HHx /,ҨHl|/ /a O LNuH&o >/  H/<  /,Hl/ /a O LNuH&o >/  H/< V/,Hl/ /a hO LNuH&o >/  H/< /,Hl/ /a 8O LNuNU  /&m p ,lr g,m  @m/a &mN]NuH!&o >/ p ,lr  L g HHx/,8Hl/ /a O `Nr  p$  0 g4"H/,8/ / /NXO Jf"pf
 KC"2 /a ZXO`/a PXOLNuNU  /&m ,lU f,m @m/a $&mN]NuNU  /&m p ,lr  g,m @m/a &mN]NuNU  /&m ,lU fp ,m @ @m/a &mN]NuH&o >/ JGfp` k THz6/N1jPOJfp`p, 0,g$@n p ,lr  Jg,m @m/a VXOLNuNU  /&m p ,lr  g,m @m/a  &mN]NuNU  /&m p ,lr  g,o @o/a &mN]NuH&o >/ x |GnHpf<z p@l4 k T HC^/1 /N0|POJf Hrp ( RE`RF\`   J f   LNuH1&o >/ p ,lr$ g,m&  @Cm`8t    g*,m @@mJGo H/ /a 6PO@`| /a XOLNuH&o >/ JGo H/ /a PO@\@/a XOLNuNU  /&m p ,lr  g,o @o/a &mN]NuH&o >/ ,lrfJ H/,Dr/// NFO Jf6pf+ gHzHx /,hNO `)k )k /a *XOLNuH&o >/ ,lY f> H/, r/// NO Jf*pgHzHx /,hNڜO `)k /a XOLNuNU  /&m p ,lr  g,o @o/a &mN]NuNUH2&m >-  H/,Hx Hx / NFO Jf  prHA,x N:$@ 
gxp@f6A /,/NPOJgh k C 0HB/ /	+HNVO %@ /,/NPOJg6 k C 0HB/ /	+HN$O %@ $)J`NN/a LLN]NuNU  /&m p ,lrpg,m @@m/a  &mN]NuNUH2&m .- <- JFgR rЁrHA,x N:+@Jg0 @!G C $I"g K N JFg 
xA"mN
`Nآ -LLN]NuH &o pЫ R"K,x N.LH NuH0&o >/ ,l] g,lW g
/a XO`DJGg8 H/,\Hz/ /NO J,Lf$k A p 0B/ /a O /a ߌXOLNuNUH?2&m >- ,l] g
/a f`  | Gl    $Kpf    j T/NXO*  j T"$<  ,lN( JgLB/Ba O +@g, @ $"&,lNְg/,tHx /,hNנO ",lN`6/,tHx /,hN׀O `  HR/ Hzޔ/,tHx /,hNPO /
N:XORF` .)K@LLN]Nu  N  GN  >\N  0N  N  <N  ;dN  M|N  N  =8N  G~N  0N  žN  JN  HHN  90N  F&N  "N  N  fN  1tN  RPN  CN  :@N  N  DpN  tNUH0&m >- $m  m X+H gT"m 2) H\,+@Jg< m( HH"Hf H/ //N@O Jg -` m+P` 
g$p LN]NuNUH2&m $m >- 0+ H\,  H"HЁrHA,x N:+@Jg$ m "@" "A  H JN  m"m " -LLN]NuNUH 2&m $k  
g4+RA //NPO0+ H* HHЁ\"J,x N.$m`B LL N]Nu// p rA0 Jf
p_ gp `p.Nu// p rA0 Jf
p_ gp `p.NuNU  H0&m .- ,- *- $m  7@  7@ 
  @ @  
g'J `Ar'H  - g'@ `A'H B| \  m  'H 'm $  gJfS   7@   m ('H &gJfS ( 7@ . m ,'H *gJfS , 7@ 0'H 'H n'H X'H Bp @ @ r@ \@ Fo ` RB/ NPO'@ fp `pLN]NuH0&o ./ /<   Hx &NPO$@ 
fp `* K%H %H 
 K%H $%H %H p%@ %K " 
LNu/&o J+ f/+ 
N. NXO/NXO&_NuNUH72&m $m /
NxXO. Jjp`  B/N"PO+@Jfp`  //-a <PO+@g2 JJfS"RB/NPO m!@  J"@f mB( `p`@"
$<  ,lN, Jg"$-&N* "Nܺgp`p`
 m &p LLN]NuNUH0&m $S 
g+R/
a XO$m`~ p@l  J3Fg
/3Ba XORG`B/+ NLN]NuH0&o $S 
fp `d j  dp`V& * g
/*  @N XOp* f
/
a rXO`~ p@l   sBf F`RG`p@f/
a @XO`LNuH 0&o $S j  e/a lXOJfp `$S j R p L NuH 0&o $o R 'J "L Nu/./  r" g.[g&r	 gr> g
Yg
Ug
`~
`~`~	`
~ `~'`~" .NuNUH'2&m $S 
f
B+ p ` \ j  e/a XOJfp @ p ` :$S+j +j "+JB-+j +j  m"HRd*+ f"( rgr
fT/-/
a PO` mr gr	grgt
f  rgr
fC /	/
a PO m+H mdr gr	grgt
f, mrgr
fC /	/
a PO m+H` m"HRd,+ f$( rgr
fT/-/
a BPO` v+  gp  gp	 f+  g+  g
|  ` | m%H "md v + gV2+  ,HbJH// /N"O Jf6 m  +H mrg r
g e%H `  R` + &g   m2+ ."Hb  H// /N"RO Jf  z  m .+H md  p C1  g"t  R҂*p0`rAerFb"t  R҂*p7`raerfb"t  R҂*pW`r  pA0 J g
|  ` <'E "|  ` . + *g   m2+ 0"Hb  H// /N!rO JfjB m 0+H md@p C1  g0r0e r1b -Ѐr Ёr0 +@+H`|  ` 'm "|  ` ~ mr-fr ( C1  g~Rp  mA0  g`r  Rp0+A md.p C1  g -r
N$r Ёr0 +@+H` "-N$'@ "|  `  mr"gt'f ,Bm@װfp`pR;@ md  -ײ g  2-زk 
m"k ,IB|  ` +  ffR mfRm"k R`p
 gp fR/-/
a PO`Rm k p R/ /H  a XO o ` \p
 f+  g k "HB| 	 ` Rm k R` &0-@  me| 	 `R k 0-BH'@ "`   k p "m/ N XOJg  p ?@ ;@R@2/  k "m;@+I mdD"k p / NXOJg20-ذk m k "HB|  `FRm k "m+I` k 0-BH'@ "|  `p  m'@ "R|  +j +mJ+ g
/+ a vXOA tC ^,Ip Q0A H,Hp"Q2C 2,Ip Q0Ap"Q2 %m pLLN]NuNUH!0&m $m .-  rN! KC 2+I ) fp `  +i +i  m"m drgr
gR` m$  h %H  - m  5@ "(  5A 
 (   5@ 2* 
JAjt 5B 
0* 2* 
@o5@ 
0* J@jr 5A 0* 2* @o5@ pLN]NuNUH72&m | z HmHlN*HlN mJ VD HHHlt;@NO +@o RrHA,x N:+@Jf
NN|` At"$<  ,lN. Jg "$-&-N+@"N -ڰg4Hlt/,ؘ/,Hx /,hN&O  -R"m,x N.|` p+m mJg NHx 
/NPO+@g"  @B;A+H`  mJfS  m"H;@+I/-HzNPOJg  JEf   m^//NPOJgtJmgj0-HHx / /-N4O BA,x N$@ 
gA"JN
+J` -g& @ "@ p
(gBHx Hz&NO z`Zp@fzp@f4/-HzN<POJg:Jmg0-HHx / /-NO z`0-HHx / /-NO +m`  -R"m,x N.~ JEf  BHx HzNN KJfSHx //N8O BA,x N$@ 
gA"JN
+J` -g& @ "@ p
(gBHx Hz*NO BHx HzN KJfSHx //NO JFfRHx N Hlt/ N^O Jlf6At"$<  ,lN. JfHlt/,ؘ/,Hx /,hNǠ`  A,x N$@ 
gbJlfBJFf>A $"&* ,lNа g$|Hx N lHlt/ /,Hx /,hNFO JFfA /NȶXO/
NhXO`Jg
",lNHx N ".NȎLLN]Nu;BEGIN  
 ;END  N  pa g   f   ae  zc  e` pNup Nu o "o gN ? f2@ 	NuNU@H'2&m .- |p +@H+@P <  xrHA,x N:$@ 
fp ` d <   r N:+@f"J <  xN.p ` @+KTp	l ""-Tt,lN+@Lg6/@  rFҁNf JC  Hx /	// $N$O "-L,lN`.pf  "J <  x,x N."m <   N. -H`  rFҁN JC  /	NHz/ +@XNO JgzHz/-XNPOJghHz/-XNPOJgVR rFҁN JC /H "	$<  ,lN o  g$ rFҁN"  B "  % `S rFҁN^ r Hx/-/NO * JjR rFҁN8 J",lN rFҁN r % Sl&"m <   ,x N."J <  xN. -H`  rFҁN"R$  Ӳ( p. mg dB0X /+HhNTHlt/ N
O JgRB` -`r
l rFҁN J g
" ,lNR``"m <   ,x N."J <  xN.p` B  l ~ mhr gr	grgr
fRh` mhg Pr;g Hr"f   -RClRh"h+mhD mhr"gdr*fNRh mhrEgref"mD +ID`$rNgrnf"mD 
+ID`
 mD+HDRh` mDRh+HD`  mDBRh`  mhr>gr<f: mhr g r;g r
g J g r	g rg Rh` -RAl h mhr g"r;gr
gJ gr	grgRh` mhJf`
B+Hh` zJg ^/-lN+@l.Hz +@dN~POJfRP` 6/-dHzvNdPOJfJPgSP` JPf p+@\/-dHzNN6POJf8 rFҁNR"  R "  "2 $  Ҳ( +A\` /-dHzNPOJg$/-dHz NPOJg/-dHzNPOJf8 rFҁN"  R "  "2 $  ( +A\` /-dHzN~POJf
p+@\`  /-dHzNbPOJg F/-dHzNNPOJg 2/-dHzN:POJf` /-dHzrN$POJfJg
+mpT` Jg  /-dHzTNPOJg6/-dHzJNPOJg$/-dHzBNPOJg/-dHz8NPOJfLp+@` -`l<AlHz/NPOJf -`" RlAp+PT` R`` -\Jk 2Ho *+@H rFҁN JC Af rFҁNh"  )r <` LLN]Nushell-startup cli-startup startup-wshell  IF  ENDIF assign  path  setenv  set copy  quit  endcli  kickit  execute newcli  newshell  ashell  NewWSH  from  o "o p IRI"`WgB Nu   / "o A FHN GO Nu"o A FH N G^PONu%s
 J g>r 2+ Rk 
RAA k$JgH0&A $",k NLAJkr 7A NuB`/,y  NJg* o "o `B/,y  NJg/,y  NJf,_Nu o C `"o `C  /  o /H 0 &O&E FBk Bk 
'y   ,y Nr 2+ g$Jg2H0&A $",y  TR   ((,  ,9 NLJk0+ 
H L ,_NuDk 
`H?6.$I, `H?6./ ,$o 0,/ 4SFk,&O,y     gUO*Ox &BaB.K LlNu.Kp LlNuD l"N.* gRD/./aSD".Nz$"NJgJDgJ oA ga`< :JEg
< /JDfNuFlRCNu   o "o  / /
J@k6g4$HJg$S@g(Jf$H /g :gJg /S@ggS@fBp $_Nup$_NuH/2 / $g\$@(/ ( J ,/ ,"./ 0$,y Nz JPH"`BQ&JPK` ",y NJg
&Qp`/
N I|XOp LLNuH"$o x 8*  z :* | * B* PJ` g @ ",y NBQLDpNuH./ ,/  rЁ",x N:&@ g6J@fHl@NHz NPO rЁ'@  K "HA@,x N
 LHNuH 2&o $K 
g "J,x N"J ) N.LL NuH J@gA@,x N&@ g"K ) N.`LH NuaNuH ./ ,/  rЁ  "NHx / a POL NuNu"o `C H 2&o  o E J,y NLL  / NuH2&@E J,y NLLNuH'2&o  ~ | <  r ,x N:$@ 
g$"t,lN. Jg"$
N* Jg,* |Jg
",lN 
g"J <  ,x N. LLNuL  m "/ n Nu o  / Jg"  gBSfNu  gB  g  B` g  B g  BB g  
BBBB`BBBBBBBBQNuH 0A &C E "&o /,y N,_L  / Nu%ld Nu o  h  J  g Nup Nu   o "h   	J  fp Nu o H 2t  ( gD$@&OpBQ V@.@ OpN L  D/@ ( J"ON M J  g$/ \.K LLNuH 2&o $o  KJfS A HH"H K,x N  
LL Nu /  o H瀂,y N"@C \LAN PpNu   o "o H "/	$i ,y N"W JN"_NLD NuH(2x YOHr  <  ,y N:/@ LC &@JgV"/ t,y  N$@Jg""
$NJg o C    x"
NH g,y "@ <  N.LC LLNuNUH?2&m $m .-  KJfS Z,  Hr,x N:B+@Jg|A "@f//-N$PO"-$<  ,lN* Jg>"t vN"vN( nJk"$
&Nְf
B28 p+@",lN H"m,x N. -LLN]NuENV:  NUH?2&m $m  KJfS Z.  JJfS,z  Hr,x N:+@Jg\A"@f//-N
RPO"-$<  ,lN( Jg H& "$
N"Hfz"N H"m,x N. LLN]Nu  NUH 2&m /- Nn.NXO$@ 
g:/N XO+@f m "J,x N` m  !m %H C  m LL N]NuH<0&o $o  */ $x "$
v/,y  N,_Jk(g 
g gRJRmB L<NuJfx`x`/,y  N,_gH<0&@$o */  `pNu   o "HJfg  :g /f RNu Nu   o  ( fp Nu /  o "o /
|  E !J 
!I !I E  !J !@ $_Nu o "H -g +fRHp r  0k* 	c k c  k b 
Ё` -fDNup @ H@ ANu T j  TKNu$Rj  NuH<<$o $&o ( / ,`  H<<(Kv z(   a  ,g  "f   T j  r aa L<<NupL<<Nu/d   |g   )g g *K  |g   )g RJ  #f  $a P?z a:J@g r@  Ua &v`  *f  a &a "TMr0a UM`  ~f  r a a v`  %f  r`    ?f  r0`   [f  J?< Pa  ~f  RJ> `g  (  ]g    'f  N U,2 a `2` \TO`    (f   B*Ka a g  xp Jg     M*Kr a T*H.a \  )g    |f  H  U"< a *v`  Ura "_J) *I  U"<  a JBg  ,`XO`  B  'f  g  4rpa N U,2 a JEg  ` `a a vJEf P*_pNu*_p NuH<8&o  $o $`  H<8(  z (K  a  L<Nu//
d ~b  Jg j` nc `B JA IA < p N S S T S T T@ T@ T T& T  T T T T T TJg ``JEf  Jg  `  a hg  Jf  `  ` n/a Jf  &_` ZXO`  N U,"KJBg  :k  6B c  "+ - f  +  e  
+ c  $VKWB`ΰg  RKSB` g  nRJ&I`  g  ^RJ&I` ?a f  4H(Kza g  L 4`TO`   O 
`   N U, f  ` `  
XO&_pNu$_&_p Nu  /
"o L  $i 4,y N$_Nu  0/   e
AZ0  Nu  ae
  zb   NuACEIDNOOUYPSACEIDNOOUYPY   o "o H 0`  gR  g$H&I  g
f`p L Nu L Nu o  X B !H Nu  NuNuH0./ &o ,/  /N$XO$@ 
fp`6*  gHx B/NO ///* NO * Jgp` LNu  H ./  ,ՄS, JFk0 HAL*0 Jg f HAL/0NXOSF`/N XOL Nu   /   am
  zn   Nu   /   Am
  Zn   Nu  NUxH0&m ~ p l  r gr	gr
fR`gb"RAx$Hr"f&R$g
r"gR`JfHx N ZXO`B`$gr gr	g
r
gR`Jf`B` |JgAx` l0//N BN LlN]Nu  N  |N   paNUH0&o $o  ./ $Jg6Jg2Jg.p / Nr ./@ NXO"/ ,Jg `S`JgJgp`
Jgp`p LN]Nu"o  o  / "`gSd`BSd NuH0&o $o ./ Jg JgJgp r  , Jg `S`JgJgp`
Jgp`p LNuNUH0&m $m .-  JJfS, KJfS "K+Ic,  J`Sd mB0h  LN]NuH 0&o $Kg$r  A0   g
r  t ҂`r  R` LNu   o "o p r   am
  zn    am
 zn   fJfNu  "o  o  JfSfNu  H&o ./ p f `J fp LNuH&o ./ //aPOLNuH0&o ./ gr  f$KR` 
LNu/&o p A0  gR` &_Nu pa o "Hr p / +g -fRH  0m  	n$҂ҁҀ` -fD$ S o   Nu o H !o p Nu / fR o L /h Nu  H 2&l g$S"K ) ,x N.&J`)H )HLL NuH./ ,/ */  /NlXO&@ fp`///+ N O ( Jgp` LNu  H./ GՈ g4+  f(+  g  +   , Jg//+ /+ NO &S`/NXOLNu paH7./  &o $,/ (J$gNB"$&,lN* pfN|)@p)@ LHNu  H?./  ,/ $*/ (J$gNB S"$& ,lN( pfN|)@p)@ Jg
Sg
Sg` ` І`"t &,lNL@Nu paH./ J$gN\",lNp L@Nu H0 $ &HBHCCHBЂL NuJj  DJj  Da   DNua  DDNuJj  Da  DNu/HA4f  "H@HAHB4 g  0H@4 0HB2$Nu/vA d  QCA d  YCA  d  UCJAk  SC4 HBHC6 04HA d  SCЁdr 2HCH@A&$Nu/./ p )@Jk"Մl ALJ g AL `p	)@p .Nu Hp "<  0 ,x N.   0 Jg J$g l$N Jf`B$Hx NXOL@NuaNu  NU/&m  fp `/N&@Hm/N -&mN]Nu/&o )K p&_Nu pa/,y L  N<,_Nu  /,y   / N,_Nu/,y L  NH,_Nu  /,y  o NN,_Nu/,y  o N,_Nu/,y L  N,_Nu  ސ        *  T  T  T  T  T  T  T  T  T  T  T  T  T  T  U  U  U  U  U  U   U&  U,  U2  U8  U>  UD  UJ  UP  UV  U\  Ub  Uh  Un  Ut  Uz  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  V  V
  V  V  V  V"  V(  V.  V4  V:  V@  VF  VL  VR  VX  V^  Vd  Vj  Vp  Vv  V|  V  V  V  V  V  V  V  V  V  V  V  V  W  X X&  X>  X^  Xp  X  X  X  X  X  Y  F  L  R  X  ^  d  j  p  v  |    "  (       N  T  Z  `  f  ~  Ƅ  Ɗ  Ɛ   Ɩ  Ɯ  Ƣ  ƨ  Ʈ  ƴ  ƺ                    f  l  r               - - - - - - - - - - - .  . . . . . .$ .* .0 .6 .< .B .H .N .T > ?< F F F F G In J J L L M RT S S S S S S S S S S S S S S S S S TD T W W   
  G8 GR Gb G G H$ I2 IT I M~ O P
 U ^ ^$ ^8 ^P ^d ^x       j  r  z                               d <, x  x  d x   z    Test App'  	 #?    ,  .p   /p  A" X :   <  !   !  1 , p 0P	 AR Z AR [ *   1q   , 	 AR Z R [  z0 A" d 2AR  AR [ `AR Z AR   \ 3q 8   z0 A" d AR Z AR [   z0 A" d AR Z AR [ :   z<   z0 AR d AR [ R  R   C" [ AB b AB c   P  P	 "  , 0  z0 A  Z A     Z z0 A" d AR Y AR [ Ab Z 	Ab ^ 
Ab ]  z4 \ >q    z0 AR d AR [ Ab Z 	Ab ^ 
Ab ]  _ @q  \ Aq    z0 " d AR Z R [ 	 	  	 " Z FP  z0  F z0 AR d AR [ AR Z R   z0     3P  AR d AR [ `AR Z R  	 AR  AR d KAR Z R [ LP    	 A" d AR Z AR [   Oq '  P SP	 A" d TAR  AR [ UAR Z AR   \ Vq    , 0  	   " Z   
 " x	     x   @@??a{a????       @ @       ???~???              ?  ?        ` | ` 0 ` | ` 0 ` | `  `     ? ?   ?`      `       ?  8 ` s >   	  
  	      	      	      Could not perform a DOS operation -- action not available Unable to access disk -- disk was not in drive   ,  `              B  d        4  |        
  6  b          	   ΀ ΀       *   @ @ 01@` 2` 1@`  p 2`  5` 3 ` 6 <  8 $ J    	  	   ΀ ͐ 	΀             @ @ 01@͐U^21@2` f5` f3 ` f6 `   f< `   l8 `  ` p   J     d 2@ F   Z (   	 J       | 	    	                  5UU  
 z  p    p    p    p   ! p   p    p    p           2 |  2 | 2 | 2 |   |   |  |          /`@  o`_ `^p `^p `@  `@  ` ` ` ` `      @   @  B B _B _F _   ;      	 ;                  REXX installer 1.24 (1.9.92)
 $VER: installer 1.24 (1.9.92) Yes No Abort Install Help. Proceed Cancel Parent Drawer Show Drives Make New Drawer. Skip This Part Exit from Help More Back Exit from About About. done OK Copying file: To drawer: 
Enter the complete pathname of the new drawer you wish to make. An icon for the new drawer will also be created unless you select otherwise. Enter the Complete Path of New Dirctory: Change Destination Destination Drawer to Copy to: Help with Copy Files Help with Choice Selection Help with Option SelectiTR    ++,  j`Gۉon Help with Ask String Help with Ask Number Help with Insert Disk Please insert correct disk to continue! Help with Ask Question Selected Drawer Help with Select Drawer Selected File Current Drawer Help with Select File Installation of %s has been completed. Installation complete!
%s can be found in your "%s" drawer (or partition). (The installation log file is named "%s".) Working on installation. Help with Confirm Version to install: %ld.%ld Version currently installed: %ld.%ld There is no currently installed version. Proceed With Install Set Installation Mode Welcome to the %s installation utility. Please indicate how the installation should proceed (based upon your knowledge of the Amiga). Help with Set Installation Mode Log all actions to: Installation Options Welcome to the %s installation utility. Help with Additional Settings Modify Startup-Sequence File Select Another File Proceed with Changes File being modified: Help with Change Startup-Sequence AN ERROR HAS OCCURED! 
DOS Error Type:  Sorry. an Error Has Occured! Please confirm.  - Press 'Esc' to Abort Valid range is %ld to %ld Proceed with Copy Please insert your boot disk into the drive you booted from and then click on "Proceed". If the disk is already in the drive, just click on "Proceed". 
The file "%s" is protected from deletion.

Can the file be deleted and/or overwritten? Skip File Delete  t You will need to select a "User Level" for the installer to continue. The different levels are as follows:
 NOVICE USER: In this mode the installer proceeds entirely automatically, and will not ask you to make any decisions. However, this mode is only recommended for Amiga computers that are not extensively customized, as some of the assumptions made by the program are only valid on a "stock" Amiga. You may still be requested to insert disks or perform other actions.
 INTERMEDIATE USER: The installer will allow you to make major choices, such as where to install the application, but will not bother you with the minor details of copying files, creating drawers, etc.
 EXPERT USER: In this mode you will be asked for confirmation of each step of the installation process (although in some cases several steps may be combined into a single confirmation). In addition, you will have greater control over where installed items are placed.
 In addition, there are several buttons at the bottom:
 "Proceed with Install" indicates that you have chosen a User Level and that installation should proceed.
 "About." gives information about the installation program, such as copyright information, version number, author, etc.
 "Abort Install" means that you have changed your mind and do not wish to install the application at this time.
 "Help." brings up this text.   Explanation of controls:

 "Install for Real" -- This will cause the installer to actually carry out the installation.
 "Pretend to Install" -- In this mode, the installer will go through all the steps of the installation, except that it will not make any permanent changes. You can use this option to get a "preview" of what the installer will do before it actually does it. You can also use this in combination with the "log file" options below to get a complete list of what happened during the rehearsal.

 "Printer" -- This will cause a list of all installation actions to be printed out on the printer.
 "Log File" -- This will cause a list of all installation actions to be written to a log file. You will be informed of the location of this file when the installation finishes. You can use a text editor to read this file.
 "None" -- When this option is turned on, no log file will be produced.  In order for this product to run correctly, a number of special commands need to be executed by the "startup-sequence", a file of commands which is executed each time your Amiga computer boots up. A line needs to be inserted into your startup-sequence to run these commands. The command to be inserted is "Execute S:user-startup". This command will execute a script file called "S:user-startup" (which will be created if it does not already exist). This file will contain all the special commands needed by this product. In addition, any other product that uses the Commodore-Amiga Installation Utility will also store its startup commands in the "S:user-startup:" file in the future.

Explanation of controls:
 The scrolling list box shows your startup sequence. This installer has already selected what it believes is the best place to insert the new command. If for some reason you feel that the installer has chosen incorrectly (which is certainly possible with a highly customized system), then you may select a new file and installation point.
 The text box shows the name of the script file to be modified.
 To select a different file: Select the "Select another file" button. The file you select should be one that is executed once each time you boot up and is not executed at any other time.
 To select a new insertion point: Clicking on the scrolling list will cause the insertion point (labeled "insert here") to be moved to the new point.
 "Proceed with Changes" indicates that you are satisfied with the point of insertion, and the command should be inserted into the file.
 "Abort Install" indicates that you wish to abort the installation process.
 "Help." brings up this text.  Select File To Modify (Explanation of controls:
 The large "scrolling list box" in the center displays the contents of the currently selected disk or directory. Drawers will be indicated by the word "DRW" in inverse block letters in front of the Drawer name. The name of the disk or directory being viewed is shown below it in a raised outlined box. Beneath that, in another raised outlined box, is the name of the file which is currently selected. To the right is a slider which can be used to scroll through the list, in case there are more names than will fit into the window.
 You can change the selection either by typing a new drawer name into the "Current Drawer" text box, or by typing a new file name into the "Selected File" text box, or by clicking on the names of drawers and files in the scrolling list.
 The button "Parent Drawer" will allow you to view the drawer that contains this one, in other words the "Parent" of the currently visible drawer.
 The button "Show Drives" will show a list of all the disk drives in your system. You can then click on a drive name to view the contents of that drive.
 The button "Proceed" indicates you are satisfied with the currently selected file.
 The button "Abort Install" will abort the installation. No further changes will be made.
 "Help." brings up this text. Select New Destination Drawer Explanation of controls:
 The large "scrolling list box" in the center displays the contents of the currently selected disk or directory. Drawers will be indicated by the word "DRW" in inverse block letters in front of the Drawer name. The name of the disk or directory being viewed is shown below it in a raised outlined box. To the right is a slider which can be used to scroll through the list, in case there are more names than will fit into the window.
 You can change the selection by typing a new drawer name into the "Current Drawer" text box, or by clicking on the names of drawers in the scrolling list.
 The button "Parent Drawer" will allow you to view the drawer that contains this one, in other words the "Parent" of the currently visible drawer.
 The button "Show Drives" will show a list of all the disk drives in your system. You can then click on a drive name to view the contents of that drive.
 The button "Make New Drawer" will allow you to create a new drawer. The newly created drawer will appear inside the directory that is currently being viewed.
 The button "Proceed" indicates you are satisfied with the currently selected drawer.
 The button "Abort Install" will abort the installation. No further changes will be made.
 "Help." brings up this text.  hExplanation of controls:
 The file to be installed may or may not be replacing an older version. The display shows a comparison between the currently installed version and the new version that will replace it. The destination drawer that the file will be copied to is also shown.
 The button "Proceed with Copy" will cause the file to be copied to the destination drawer.
 The button "Skip this part" causes the installer to proceed to the next section. The file will not be copied.
 The button "Abort Install" will cancel the installation with no further changes made.
 "Help." brings up this text.  nExplanation of controls:
 The raised box shows a list of file or drawer names. Each name has a checkmark next to it. If you want the file to be copied, then leave the name checked. An unchecked name will not be copied.
 The box labeled "Destination Drawer to copy to:", just beneath the listing of names shows the drawer to which the items will be copied.
 The button "Proceed with Copy" will cause all the files or drawers which are checked to be copied to the destination drawer.
 The button "Skip this part" causes the installer to proceed to the next section. None of the items listed will be copied.
 The button "Change Destination" will allow you to select a new destination. You can use this to copy the items somewhere else.
 The button "Abort Install" will cancel the installation with no further changes being made.
 "Help." brings up this text.  Once you have inserted the requested disk, you should select "Proceed". If you cannot find the disk, or wish to abort the installation for any reason, then select "Abort".   Once you have filled in the text box, you may select "Proceed" to continue with the installation. If you wish to abort the installation for any reason, select "Abort".   Once you have filled in the number box, you may select "Proceed" to continue with the installation. If you wish to abort the installation for any reason, select "Abort". Explanation of controls:
 Each of the raised buttons represents a choice which you may make. The button that is selected represents the currently choice. You can change the choice by selecting one of the choice buttons. Only one selection may be chosen. Once you are satisfied, select "Proceed" to continue with the installation. If you wish to abort the installation for any reason, select "Abort".  zExplanation of controls:
 Each of the checkboxes represents a option which you may make. A checkmark in a box represents a currently selected option. You can change options by clicking on the checkboxes. Once you are satisfied with the selected options, select "Proceed" to continue with the installation. If you wish to abort the installation for any reason, select "Abort". ɐ Select "Proceed" if you want the new drawer to be created. Select "Skip This Part" if you do not want the drawer to be created. If you wish to abort the installation for any reason, select "Abort".  Create icon for drawer 'Novice User  - All Actions Automatic   ,Intermediate User - Limited Manual Control   'ExTR !  "",  rKtpert User  - Must Confirm all actions  Install for Real Pretend to Install Printer  Log File None Are you sure you want to abort? [The "user-startup" file located in the "S:" drawer is used to store specific commands that some applications need executed at system boot. You are being asked to confirm that this file can be edited. Select the "Proceed" button to confirm, otherwise select the button labeled "Skip This Part". You can also abort installation by selecting "Abort". Unable to access the printer. Problem with writing to transcript file. Unable to access the printer. Problem with source file/drawer Problem with file Can't examine file or drawer File or drawer doesn't exist Can't make assign Unable to perform operation -- not enough memory Can't open drawer Can't open file Problem with file "startup-sequence" Error writing file Error was of an unknown type. Error reading text include file! Couldn't create directory Couldn't copy a file Tried to create drawer over a file Can't set execute path Couldn't find command to execute ARexx not available Can't duplicate lock Can't read "%s" file Error in writing "%s" file Bad parameters for copying from drawer Invalid drawer name Can't open a window. Can't open install script's icon. Can't find partition. Unable to open transcript file. Unable to open script. Unable to initialize system. Can't open needed libraries. Can't get Workbench information. String too long Division by zero %s: Result string too long * Installation Log *
User Level: %s
Pretend: %s

 User made a new drawer: "%s".
 Copy file "%s" to "%s".
 Copy contents of drawer "%s" to "%s".
 Ask Choice: User selected "%s".
 Ask Options: User selected no options.
 Ask Options: User selected following options.
 Ask String: Result was "%s".
 Ask Number: Result was "%ld".
 Ask Question: Result was "%s".
 User changed Copy Files destination drawer to "%s".
 Ask Drawer: Result was "%s".
 Ask File: Result was "%s".
 * Global error -- executing onerror statements *
 User aborted!

 Script aborted in line %ld.
 %s in line %ld.
 Create New Directory: "%s"
 Insert commands to Execute "%s" in file "%s" at byte %ld.
 Create Text File: "%s"
= Start of textfile =
 = End of textfile =
 Execute DOS Script: "%s"
 Run Program: "%s"
 Execute ARexx Script: "%s"
 Renamed "%s" to "%s"
 Delete file "%s"
 Aborting script.
 Exiting script.
 Writing to %s
= start of file =
 = end of file =
 <ASN> <DRW> install_log_file Amiga Application Installation Utility 
Copyright 1990-1992 Commodore-Amiga, Inc.
All Rights Reserved.

Designed and Developed by
Sylvan Technical Arts USAGE: installer [SCRIPT] filename <[APPNAME] name> <[MINUSER] level>
 <[DEFUSER] default> <[LOGFILE] logname> <[LANGUAGE] language>
 <NOPRETEND> <NOLOG> <NOPRINTER> Bad Argument Can't find needed ROM font. Unable to compile script.
ERROR: %s on line %ld. Couldn't access NIL:   t   x   {          	   
        ͐   ܐ                   .   /  $ 0  / 1   2   3   6   7  - 8  H 9  c :  x ;   <   =  ː >   ?   @  
 A   B  ' C  = D  d E   F  ڐ G   H   I  # J  H K  q L   M   N  " O  B P  V Q  k R   S   T  ΐ U   V   W   X  . Y  D Z  V [  u \   ]   `     ː   b      Đ   ̐   D      &   &   +ސ    +   1   3   6   7   8X   9   :   <   <   =   =,   =\   =   =   =   =   =Ɛ   =ΐ   =   ?N   ?l   ? 4  ? 5  ?Ӑ a  ? b  @ c  @ f  @1 u  @b v  @t w  @ x  @ y  @ z  @ڐ {  @ |  A }  A* ~  AM   Ad   A   A   A   AÐ   Aސ   B   B   B.   BP   Bf   B   B    B !  Bא _  B   ސ 	 q                 ߐ   d  C e  C C4 "  Cr #  C $  C %  Cѐ &  C '  D (  DK )  Di *  D +  D ,  Dݐ -  D ^  E g  EM h  E] i  Ez j  E k  E l  E m  F2 n  Fk o  F p  F q  F r  Fʐ s  Fܐ t  F   G   GH   G   G   G   G   GŐ   H7   H   H   I   IC  IX    Đ        T     ؐ   ( T   2    < R   D :   H ̐   N ^ 	  V     ^ !d d !ʐ   j "6 t "^   | "   Ȅ # Ȍ   Ȑ   ថ Ȕ  z Ț  ⪐ Ƞ  X Ȧ   Ȯ   ȶ   Ⱦ  娐 MATH DEBUG         
   隐  N     
   ܐ        d    R   " R   * D   2  >   :   B  А J  4 X    `  \   l  | v     ɂ   ȶ
 Ɋ   Ɍ   Ɏ   ɒ  B ɔ  h ɘ  А ɜ  : ɞ   ɠ  b ɢ   ɤ  
 ɨ  4 ɬ   ɰ  \ ɴ   O 8 ɸ $4   v   b      t   @     )>  F      t *  ڐ 2  8 T @ , H #   N $
   V $z    ^ %n   f &   j %    r % V  x %   ʀ '    ʈ '    ʎ '    ʔ *   ʠ %@   ʰ *   ʺ *v     &` |  )    ,D    ,D @   &,    , @   (     'R    +|    )r     (Ȑ    '   & )r   , (  4 (     < )r   B    H    V    `    l    x    ˆ    ˒    ˞ 	   ˦ 
   ˴    ˺        ʐ    Ԑ                    $    2    @    P    ^     l    z   33;42m31;40m  {    { $VER:         s:user-startup (  U  U̐C 	 ( H

 ( H
    :          $ ( , 0 4 8 < @ D x       &  6  ^  f  v  ~  H  P  h            	.  	2  	6  	:  	>  	B  	F  	R  	V  	Z  	^  	b  	f  	j  	n  	v  	z  	~  	  	  	  	       $  (  ,  N  N  N  N  N  N  N  N  N  N  N  N  O O  O  O  O  O  O$  O(  O0  O4  O<  O@  OH  OL  OT  OX  O`  Od  Ol  Op  Ox  O|  O  O  O   O  O  O  O  O  O  O  O  O  O  O  O  O  O  O  O  P P  P  P  P  P   P$  P,  P0  P8  P<  PD  PH  PP  PT  P\  P`  Ph  Pl  Pt  Px  P  P  P  P   P  P  P  P  P  P  P  P  P  P  P  P  P  P  P  P  P  Q  Q  Q  Q  Q  Q   Q(  Q,  Q4  Q8  Q@  QD  QL  QP  QX  Q\  Qd  Qh  Qp  Qt  Q|  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  Q  R R  R  R  R  R  R$  R(  R0  R4  R<  R@  RH  RL  RT  RX  R`  Rd  Rl  Rp  Rx  R|  R  R  R   R  R  R  R  R  R  R  R  R  R  R  R  R  R  R  R  R  R  S S  S  S  S  S   S$  S,  S0  S8  S<  SD  SH  SP  ST  S\  S`  Sh  Sl  St  Sx  S  S  S  S   S  S  S  S  S  S  S  S  S  S  S  S  S  S  S  S  S  T  T  T  T(  T4  T@  TL  TX  Td  Tp  T|  T  T  T  T  T  T  T  T  T  T  U U  U  U$  U^  Ub  Uf  Uj  Un ̐     F  v      .  P        p        ,  	J  	N  	r  	  
              I\  Id  Il  It  I|  I  I  I  I  I  I  I  I  I  I  I  I  I  I  I  I  J  J  J  J  J$  J,  J4  J<  JD  JL  JT  J\  Jd  Jl  Jt  J|  J  J  J  J  J  J  J  J  J  J  J  J  J  J  J  J  K  K  K  K  K$  K,  K4  K<  KD  KL  KT  K\  Kd  Kl  Kt  K|  K  K  K  K  K  K  K  K  K  K  K  K  K  K  K  K  L  L  L  L  L$  L,  L4  L<  LD  LL  LT  L\  Ld  Ll  Lt  L|  L  L  L  L  L  L  L  L  L  L  L  L  L  L  L  L  M  M  M  M  M$  M,  M4  M<  MD  ML  MT  M\  Md  Ml  Mt  M|  M  M  M  M  M  M  M  M  M  M  M  M  M  M  M  M  N  N  N  N  N$  N,  N4  N<  ND  NL  NT  N\  Nd  Nl  Nt  N|  N  N  N  N  N  N  N  Q  U@  UD  UH  U  U . p     	 $Ӑ                    ^   ܐ 	disk.info< p      1    +; 0 d  !H *`    2M(	 Y     2Mv ,L	 \ D   1  A      <`3       `3       `3   `3  0  p`0  `  0`0  0  p`0 ``0    `0 j  j  j : zj j :j 감 zj  n  n         UQUP /_ , `  P   h ,eUUSRLh ,eUUSRLh ,eUUSRLh ,` SP 
L h ,S_O ,uUUȉ j ,h+_,h , hV   , h , h 5P  , h ,iYjS,h ,TR "  >>,  -N!jS,h ,mgP ,h ,jP_,h ,mUU,h ,k?@_,h ,vP ,h ,l5 S,h ,yj S,h ,s Sß,h , ` P  , h /P _/ U@ UQUU* ] 1  _    ` 9   ?   `  3      <`3       `3       `3   `3  0  p`0     `  0`0    0  p`0    ``0   8   `0  j<`   jq   j : zj   j :@    ` z  ?>p  . pp <?                   pπx
   `l
  y q { lܐ x瀐 8     81     o | x ǁ         UQUP /_ , `  P   h ,eUUSRLh ,eUUSRLh ,eUUSRLh ,` SP 
L h ,S_O ,uUUȉ j ,h+_,h , hV   , h , h 5P  , h ,iYjS,h ,jS,h ,mgP ,h ,jP_,h ,mU,h ,k?O?,h ,v,h ,l5,h ,yky?h ,q8h , g3/0> h /9380 U\008 g?#
 |f'
 9f# f # r` c    >  8~   ?   /|  ; ?  $   _r           ^     	Espaol.info5   p    TR #    ,     , TR $    ,    솯 , TR %    ,    n , TR &    ,    - , TR '    ,     , TR (  }},  bxJy  H 6 i*
 u P X r `      S  ~ Ȑ
   z 
 k   d X ;  ~ ^     ] e  [" p   qf     	BrowserII    ܐ     m  	 CԐ\     ?h  B  @ B  ` Empty   r  6   R |  z     s     C@ z  p    s  tZO 
y  x  w  v  u  t 
Ȑ^ 3    	AddIcon> r            H~I G ( < ,y )N (C 4Nh)@ ,g  ""@)i > 0N  
($ "l ,,y Nb L~Nudos.library H1*H~ ,l ,rNrJg$" A $vNTJgA "Mf~"NlJGfA fL`NuFileName/A,ONLYTYPE/K,FILESONLY/S,DIRSONLY/S,QUIET/S,FLOAT/S,OVERWRITE/S,ALL/S  AddIcon V1.3  1992-94 [32mS.R. & P.C.[31m  ICONS ICONS:  ENV:Sys %-32s   %s.info Icon already exist.
  %-12s   Type not desired
 Volume  def_Disk  Disk  Dir def_Drawer  def_Tool  def_Project %s. No icon defined!
 Ok
 Can't write icon !
 Can't read icon.
 Unknown file type.
 icon.library  whatis.library     [33m%s  (dir)[31m
  X80.INFO  AddIcon Requires whatis.library
  H>6,& *H&o@z Bo./I (JFf /A",l ,$NFO N" N/HzHo 7a O Jo:f.A /",l ,tNJg" NJFf
A^"NLp` ( <  "fpB// Hx /<   M,l 4"ONO ( JFf& DN/ A*",l ,$NFO N" NJg( D"C,l 4NJ@gJFfA",l ,NLp`  D"o<"Q,l 4NJ@WDHH?A $ D"|  NJ@g bAN"@ DNJ@fEKz`NAN"@ DNJ@fEz`2 DN$@Jg& JC,l 0N^Jfz` JCN^JfzJFf4 
g"/
A ",l ,$NFO N" N`Av",l ,NFA /a  A /"$
,l ,v2NJo $g"o ( Q`Jg ,l 8N`A /,l 8N @&H gdJo6g < '@ :'@ > M"K,l 8NJ@g:JFfA",l ,NLJo $f$o ( g
 @,l 8N$ o< ?| .`A`JgA`A",l ,NL0/.Ll|Nu H?6*H/I 8~ | &UE  "$E &?@ 2 ?@ * ?@ .?A 0C,l (p%N)@ 8?B (?C ,Jfp` Cp N)@ 4g  <  "<  NT$@Jg `B @/|   <z  - g @,l 4N* %|    5|  Jo .Wr  A A$",l ,v@N:Jg Sf "l ( i"( ,l ,N/@ 4"$
N` @*  g j "( ,l ,N * o  *  gDJo 2f2A 0/ (H2/ ,H4/ *HHj Ho @//"C PAa O   S`  Jo .gBJo (f0x `A~",l ,NFRmHj Cl"	,l ,$NFO   R`  A 0/ (H2/ ,H4/ *HHj Ho @//"C PAa d`LJo 0fJA $C&"	,l ,N4J@f2A 0/ (H2/ ,H4/ *HHj Ho @//"C PAa O "
,l ,N( g "
,l ,N"/ 4NptЀgf"A`VA $C"	,l ,N4J@fF0/ (H2/ ,H4/ *HBHo @//" KC PAa O `,l ,N|" Ah$N&~
 / @g
 @,l 8N"J,l (NN"l 4,l (Nb`A<",l ,NF"l 8,l (Nb Ll Nu o Ho "o a  XONu"  R k  NuQOH 2B /H /	 I"o E,l (G N _ / SLL PONuNqH *H - g" ,l ,N$- rN - g" ,l ,N$- rN g
"@,l (NNL`NuNqH *H,l ,rt N+@ g,,l ,rt N+@ g,l (pe"<  NT*gp@p L`NuH1*H~ Jf
 Ma J@g, m !l  ", $&- ,l ,NJg~`N|" `,l ,rgt N&0L`NuNq H$~"l ( i,(  l ,h % e\pr A Q , g4J @gHo "@ l <$l @NXOJ@g$JgJ  gA "l  NJ@g o "Ma $. A a  L$ Nu` r    :        
  	D    $VER:AddIcon 1.3 (18.12.94)      ;  z  {-o { <^   g  @BaseName= r     F   F H360| "P/I (A M ,,,,~,IC p%N*@Jg   m >/H  C "	C ,$	,Mv N/@ $gf"/ ,N&@ / 0g6 @"JfS. KJfS,l$K"A J,o  N^JfB/A h",M$NFO "/ $N~ `N|" A H$N&"M,o (Nb Ll Nu dos.library Path/A,Suffix %s
 BaseName    |  }vH     ~  }  ^ 3    
BDC r       }     }H~I G $ < ,y )N $C 4Nh)@ (g  ""@)i > ,N d$ "l (,y Nb L~Nudos.library `   $ Dirs/M,TREE/S,TREEWITHFILES/S,RESCAN/S,ZOOMDIRS/S,ZOOMALL/S,QUIET/S,SCANDEVS/S,SYNC/S BD V3.0  1991-94 [32mS.R. & P.C.[31m BrowserII_Port  Which >NIL: BrowserII BrowserII NIL: icon.library  FULLBROWSERNAME H#*H| C,l $Nz&@Jf   f:BA",l ($NO JoNJgA$r2FN&p `  KxA~",l ($<  N. Ah"NBB/< Hx /<  $Hx /<  #/ /<  "//<  !"$NO ,`<,l $p r@N  g,l (rLt N&`&,l (rN:C,l $Nz&@ RFr(Al g LhNu  H6*I$HB 8B 4MA ,  ~ | C,l $p N/@  fp` p r@N g\ m $,o   h N/@ 8g @ h 6C|N/@ 4  o`$m $P",l (N j ,o  N/@ 8g> @&h 6`6&Rz H Jg0r AREp@mJ g `
J g  gJfG ,,l $Nf*@Jg   o 4a /@ g  paЀ"<  N:$@Jg  5|  |  %M 5|  5|  "l $ i%h  `D 5@   g |`JFgA ,g(%[ 5|  " o "J,l $N MN MNJf"J,l $paЀN. M,l $N` o 8$o   g,JN"J,l $Nbp Ll  NuNqH *H - g" ,l (N$- rN - g" ,l (N$- rN g
"@,l $NNL`NuNqH *H,l (rt N+@ g,,l (rt N+@ g,l $pe"<  NT*gp@p L`NuH1*H~ Jf
 Ma J@g, m !l  ", $&- ,l (NJg~`N|" `,l (rgt N&0L`NuNq H&~"l $ i,( f$K \ M,IN MN*@"@ i $",l (N l (h % etpr A Q , gLJ 8gHo "@ l 0$l 8NXOJ@g<JgJ  g&A "l  NJ@f`"J 4g MC $l 4NJ@g o "Ma . A a P g,l $N|"MN Ld Nu    h :        	   p $VER:BD 3.0 (18.12.94)     S. KJfS,l$K"A J,o  N^JfB/A h",M$NFO "/ $N~ `N|" A H$N&"M,o (Nb Ll Nu dos.library Path/A,Suffix %s
 BaseName     
 +                    ^   p  ForB r       Ӑ     H~I G , < ,y )N ,C 4Nh)@ 0g  ""@)i > 4N  H$ "l 0,y Nb L~Nudos.library /*H@Rgr g *_NuFor Pattern/A/M,Files/K,Dirs/K,Since/K,Before/K,MinSize/K/N,MaxSize/K/N,PosProtect/K,NegProtect/K,Type/K,All/S,ASync/S,ReadSize/K/N,ShowBytes/K/N,D=Deep/K/N,SFT=ShowFileType/S,FTV=FileTypeVar/K,FPA=FullPathArgs/S,Verbose/S,Do/K/F For 3.8 (09.11.94) [32m Sylvain Rougier & Pierre Carrette.[31m
Usage: For <Pattern> [Files <MATCH|YES|NO>] [Dirs <MATCH|YES|NO>]
[Since <Date>] [Before <Date>] [MinSize <Number>] [MaxSize <Number>]
[PosProtect <L|C|H|S|P|A|R|W|E|D>] [NegProtect <L|C|H|S|P|A|R|W|E|D>]
[Type <[#=SUB,~=EXLC]FileType0,FileType15>] [All] [ASync] [ReadSize]
[ShowBytes] [Deep] [ShowFileType] [FileTypeVar <var name>] [FullPathArgs]
[DO <Command [args] [,Command [args] [,.]]>]
 %02lx * %-12s %-32s 
 [33m%s[31m
 whatis.library  MATCH YES Unknown FileType: %s
 #?   DH6/I &H~,l ,p"<  N:*@Jg  C fA a &@$@ @Jgp+J @Rgr fJgA Ba z&@Jg+K ",l 0NJf(`$",l 0NJfB +J ",l 0NJf~ JGg M"o """"M,l ,pN.0Ll DNuH',. *Ho6z `p 5P / A",l 0$NFO REp 2Hl0HmL`Nu/~ `  p rA m   7l  @0; N    r     x    l        ~                r     x    l        ~     	`4 `. `( `" ` ` ` `
 `  RJf 20.NuH &I*H + j- f  -  fp `  -  f  -  fp `  -  gA $",l 0N4J@fp `  -  gA 0C "$	,l 0NJjp `  - gA <C "$	,l 0NJop `Z + | (lp `L - ,g"+ |op `: + t
@ r F" -  g0- HAfp `-  g0m Jgp @pLhNuYOH. *H/I J 8gt0< m gj| z `BHEBEHE ЀЅЀ&M8+ PJFg g  k L"G,l 8NJ@f  Wr  0`&REm e| ,l 8N. f-  gp @pLhXONu/"H`p\ fY`p, f| 
f.NuYOH *H/I f Ma&M`p%f+ f| s RJfL( XONu H36*H$I~|,l ,p@r NT/@ $g p@r NT&@Jg  p@r NT/@  g   @"Ma x*o 4 o 8Jh g"KfTR )  ,  j ġr"$,l 0v@N`"Kf*o $$o  //////
/a O  o 8Jh gJA",l 0$<  NBHx /<  $Hx /<  #B/<  "/ /<  !"$NO $~ `BHx /<  $",l 0$NO . | "J,l ,NN"KNN"o $NNJFgA$,l 0rg`Jg,l 0N|" A$N& Ll Nu H?6*o D&I$H~ | z J 8g  J gx + nr"/ <,l 0$<  N( g  "$/ @&- N,  BB0 B/ /<  //<  //<  /- /<   o `,l 8"ONO $* ",l 0N`&B//<  B/<   o P,l 8"ONO *   J"Ka J@g   , 8g  Bo 2 E,@N$@Jm g,JUgA ` o <//
Cd"	,l 0$NFO ?|  20- g"+ nr    o @a Np?@ 2Jo 2gA0",l 0NL - g/" $
,l 0vx@N|  o H g/// @"o @a $PO.  Ll NuH'6$o $&I*Hz~ "/ ,$,l 0N`  -  g&JRgHmC"	,l 0$NFO z   `8 - o2+  g$JRgHmC|"	,l 0$NFO   `  JEg4A "H Ka J@g$A // 4/
// 8Hm// 8"H Ka O . z",l 0N, JfJg L",l 0NptЀg"A*$N& LlNu\H76*H/I (~ B|BxBtC,l ,pN)@ 80< r A ,QpA@Q - g* @C,l 4N^Jg m CN^Jf `   - g* @Cz,l 4N^Jg m ClN^Jf  `   - g @Cha dAhC \"""   - g @Cha @AhC h"""  m  g/P T m  g/P X - g   m a ?@ t -  g   m  a ?@ v - $g  J 8g  z $@`  p r# g$r[ f:p H" ҁҀҁ O }   `  p H" ҁҀҁ O }  `tG @gr,gA?eBp H" ҁҀҁG x+ g  `  A ,l 8N&RfHo A",l 0$NFO ~RJgRJgp dJg .p ?@ J (g   - ,?@B m 0pz"g /@H m 8p "g /@L m 4 g r  ?APp/@LM < ?@F/^R ?@D - H?@@Jf,l ,p@r NT/@xf~Jf,l ,p@r NT/@|f~Jf,l ,pAr NT/@tf~Jf  /HR,l ,r NT/@ $g  <  r NT$@Jg &o|JoDg n"( $,l 0v@Nn@Bz ` 0<r  JQ%|    5|  "$/x,l 0v@N:. J (gH SfB"Nf8   BC ,f/- L// (Hzv//HoP JC @a BO . ` Jg,Sf  /- L// (///HoP JC @a O . `  ",l 0tN. g  "$/tN, "NJg  J (gJ B ( kB K"oxf&ox"A$v@N/- L// (///HoP JC @a O . `V/- LHoD// ,///"BA @a O . `2 - LgHo@/ @"oa fPO. `~`,l 0N|" $N&~RJfp H U&p  f j"J,l ,NN"o $,l ,NN`pf~`A$,l 0rgN&&ot g
"K,l ,NN&ox g
"K,l ,NN&o| g
"K,l ,NN , 8g
"@,l ,Nb Ll\Nu o Ho "o a  XONu"  R k  NuQOH 2B /H /	 I"o E,l ,G N _ / SLL PONuNqH *H - g" ,l 0N$- rN - g" ,l 0N$- rN g
"@,l ,NNL`NuNqH *H,l 0rt N+@ g,,l 0rt N+@ g,l ,pe"<  NT*gp@p L`Nu H;6$o(&I*H~ Ja J@gt"A $$,l 0v Fx@NvRgT BJfS < RF BC Nf j   j 0H!@ p!@ &"$,l 0NJfN|" $N&~ 0@p Ll Nu
 NqH1*H~ Jf
 Ma J@g, m !l ( ", $$&- ,l 0NJg~`N|" `,l 0rgt N&0L`NuNq H$~"l , i,(  l 0h % e\pr A Q , $g4J gHo "@ l $l NXOJ@g$JgJ  gA "l  NJ@g o "Ma 2. A a  L$ Nu` r    :          d |  $VER:For 3.8 (09.11.94)   b     ( $       'f  `^     MakeLink= r     O   OH760| *PA C("""~C p%,MN&@Jg  A "A($v ,KN$@Jgz o(C $fA $"N @BA $"tN, gJ"/,N* g8"$N\Rf$/,"/(vNDJg~ `"/(v NDJg."N"N"
NJgN|" A ^$N&"K,MNb LlNu $VER:MakeLink 41.0 (01.10.94) dos.library From/A,To/A MakeLink  Nq       [|  _ D  3  
TackOn? r     7   7H1A C"""~C p%,x N*@JgrA "A$v ,MN&@Jg> oC fA "$/v@NHo A f"$NF "N~ `N|" A H$N&"M,x Nb LhNu dos.library Path/A,File/A %s
 TackOn       Gΐ  ^   h  ,VolName> r     5   5QOH160| *PA C ""~C ,Mp%N&@JgfA "A $,Kv N$@Jg4 o p:N vJg @B// A X"$NFO ~ `~
"
N`N|" A 8$N&"K,MNb LlPONu dos.library Vol/A %s
 VolName gJfp Nu Nu       B  ؐ^     WBInfo? r     m   m H76~ 0| *PATC 0""CP,Mp'N&@Jfp` CDp'N$@/@ (CFp'N/@ $"
gJfp`  A<"A 0$,Kv N/@ ,g   o 4,o $N$@Jgh"/ 0,KtN, g:"N.* f"N* /
 E"o 4,o ,N$_Jg",KN",KN`N|" $/ 0N&~
"J,o $N` / 4g$ ,Kr2FN&~"/ ,,KN`N|" t N&~
"o (,MNb"o $Nb"KNb Ll Nu $VER: wbinfo 1.0 (24.06.93)
 dos.library workbench.library intuition.library NAME/A,PUBSCREEN/K +     :       ^     WBRun@ r          H~I G $ < ,y )N $C 4Nh)@ (g  ""@)i > ,N  $ "l (,y Nb L~Nudos.library  8H6/I <$HB T~Cz,l $p	N*@/@ $fAr",l (NLp` J g,l $Nf/@ Tfp` ~"l $ i"h p!@ /H ,/I (,l (N @*( 4x| rh p "g /h@RXpm / Hg* "j  	g@R IXJ f ,MN*@|Jg  /
"m $,o ($RN$_Jg  &j $N g0x`( m $"KXP/I 4/
"HJ$o 8$RN$_Jg|Jf"M ,JNJgh&o T/
B//<  // \/<  "M$ONO  _Jg|  gJf K,l $N KN*@Jf / P" 偒Ҁҁ,l (N:$o $,JN g MN o T g,l $N` o ,!o ( "J,l $Nb Ll 8NuProg/A,Args/M,STACK/K/N,PRI/K/N,DELAY/K/N,SYNC/S  WBRun 1.22 (28.03.95)  [32mS. Rougier & P. Carrette[31m
Usage: WBRun Prog [args] [STACK size] [PRI pri] [DELAY sec] [SYNC]
  parm.library  Requires parm.library V9  H *H - g" ,l (N$- rN - g" ,l (N$- rN g
"@,l $NNL`NuNq H$~"l $ i,(  l (h % e\pr A Q , g4J 4gHo "@ l 0$l 4NXOJ@g$JgJ 8gA "l 8NJ@g o "Ma . A a 2 L$ Nu` r    :        	$VER:WBRun 1.22 (28.03.95) B  t       N/@ ,g   o 4,o $N$@Jgh"/ 0,KtN, g:"N.* f"N* /
 E"o 4,o ,N$_Jg",KN",KN`N|" $/ 0N&~
"J,o $N` / 4g$ ,Kr2FN&~"/ ,,KN`N|" t N&~
"o (,MNb"o $Nb"KNb Ll Nu $VER: wbinfo 1.0 (24.06.93)
 dos.library workbench.library intuition.library NAME/A,PUBSCREEN/K +    #O
    B F ېn     Catalogs= p     (	       deutsch>       ]$;                                                /^ w  ]   BrowserII.catalog4  FORM  /CTLGFVER '$VER: BrowserII.catalog 23.2 (24.2.95)  LANG deutsch CSET    STRS  /$ BrowserII Meldung  uCopyright  Sylvain Rougier & Pierre Carrette.
Icons et Grafik von Walter Drwald.
Deutsche Version von Olaf Gschweng   Dieses Programm ist Shareware.
Wenn Sie es mgen oder benutzen, schicken Sie $25 an:

Sylvain Rougier
39 rue Carnot
860 Poitiers
France

Sie bekommen die aktuellste registrierte Version
ohne diesen Nervrequester
.
Geben SiTR *  )),  ~>t&e bitte ihre aktuelle
BrowserII und ROM/Kickstart-version an.  Registriert:   ber BrowserII  SWirklich ALLE markierten Dateien lschen%s ?

%lD Datei(en) und %lD Verzeichnis(se)  _berspringen|_Abbrechen  _Weiterwhlen|_Beenden  !_Projekt|_berspringen|_Abbrechen 	 -Fehler beim Lesen des Verzeichnisses "%s"
%s. 
 "%s" ist kein Verzeichnis.  REs sind  %lD Bytes  %lD Blcke in
 %lD Dateien und  %lD Verzeichnissen ausgewhlt.  -Konnte kein Piktogramm fr "%s" erstellen
%s.  !Kein Piktogramm fr %s definiert  JKonnte kein Piktogramm fr "%s" finden
Dateityp: "%s"
Piktogramm: "%s"
%s.  Typ von "%s" ist unbekannt.  -Konnte keine Schutzflags fr "%s" setzen
%s.  *Konnte keinen Kommentar zu "%s" setzen
%s.  *Konnte das Datum von "%s" nicht setzen
%s.  )Konnte "%s" nicht als "%s" umbenennen
%s.  "%s" als "%s"  !Konnte "%s" nicht umbenennen
%s.  1Kann kein Verzeichnis in diesem Fenster erzeugen.  .Konnte das Verzeichnis "%s" nicht erzeugen
%s.  Verzeichnis(se) erzeugen.  	Kopieren  Bewegen  Link erzeugen  Duplizieren  )Kann nicht mehrere Disketten duplizieren.  .Kann weder Assigns noch Disketten duplizieren.  Erzeuge Piktogramm.   )Kann kein Piktogramm fr Assign erzeugen. ! 
Lschen. " 
und ihr Piktogramm (.info) # _Lschen|_Abbrechen $ !_Lschen|Alle_s lschen|Abbrechen % Kann keine Diskette lschen. & -Kann nicht die Gre von Disketten bestimmen. ' Schutzflags setzen. ( -Kann keine Schutzflags fr Disketten setzen. ) Datei kommentieren. * Kommentieren. + *Geben sie einen Kommentar fr "%s" ein . , ) _Ok | A_lle | _berspringen | _Abbrechen - "Kann keine Disketten kommentieren. . Datum setzen. / Datum setzen. 0 %Kann kein Datum fr Disketten setzen. 1 Umbenennen. 2 
Umbenennen 3 Als 4 _Kapitalisieren 5 Dateiname zu lang: "%s" 6 K"%s" passt nicht zu "%s#?%s"
Neuen Namen eingeben oder Muster modifizieren. 7 nFr Mehrfachumbenennung knnen sie Mustermit genau einem '#?' in beiden Namen verwenden.z.B.: #?.c.bak -> #?.c 8 Umbenenen 9 	Diskname : )Disketten im BrowserII Fenster auswhlen. ; Kann keinen Assign umbenennen. <  %lD Bytes  %lD Blcke = Icon einlesen. > %Dateien wirklich nach 
"%s" bewegen ? ? >_Kopieren|Ko_p. als|_Link|_Verschieben|Ver_sch. als|_Abbrechen @ )Wurzelverzeichnis
Kein Mutterverzeichnis. A )Konnte kein Mutterverzeichnis finden
%s. B Verzeichnis ffnen. C /_Verzeichnis|_Baum|Baum mit _Dateien|_Abbrechen D #Zur Zeit laufen keine Kindprozesse. E Chip:%6lD  Sonstiger:%7lD F BrowserII wirklich verlassen ? G Fensterzeichensatz whlen. H Bildschirmzeichensatz whlen. I Konnte "%s" %ld nicht ffnen. J %Konnte Konfiguration nicht speichern. K "Fehler beim Schreiben von "%s"
%s. L +Konnte "%s" nicht zum Schreiben ffnen.
%s. M "Ein Verzeichnis existiert bereits. N Eine Datei existiert bereits. O +Konnte "%s" nicht nach "%s" verschieben
%s. P %Konnte keinen Link "%s" erzeugen
%s. Q bNoch_mal|Verz. _ffnen|_Versionen.|_Erneuern
ber_schreiben|_Neuer Name|_berspringen|_Abbrechen R Ersetzte Dateien s_ichern S )Au_f alle existierenden Dateien anwenden T JDatei "%s" existiert bereits
Alte:  %lD Bytes  %s%s
Neue:  %lD Bytes  %s%s U BDatei "%s" konnte nicht kopiert werden
Fehlerhafte Kopie lschen ? V Schreiben. W Fehler beim Lesen von "%s"
%s. X &Konnte "%s" nicht zum Lesen ffnen
%s. Y 	Lesen. Z Lese Verzeichnis. [ Konnte "%s" nicht lschen
%s. \ Verschieben. ] Erzeuge Links. ^ REine oder mehrere Quelldatei(en) wurden nicht kopiert
Quelle(n) trotzdem lschen ? _ #Konnte nicht auf "%s" zugreifen
%s. ` .%lD Bytes  %lD Blcke  %lD Eintrge ausgewhlt a %s %lD KBytes  %lD Blcke frei b 9%lD/%lD Bytes  %lD/%lD Blcke %lD/%lD Eintrge ausgewhlt c :%lD/%lD Files  %lD/%lD Verz. %lD/%lD Bytes  %lD/%lD Blcke d -Kann keine Dateien in dieses Fenster bewegen. e Noch_mal|_Abbrechen f 3Konnte fehlerhafte Kopie von "%s" nicht lschen
%s. g FDatei "%s" wurde nicht vollstndig kopiert
Fehlerhafte Kopie lschen ? h BEinige verborgene Eintrge wurden ausgewhlt
Trotzdem fortsetzen ? i Konnte Fenster nicht ffnen. j Konnte Proze nicht erzeugen. k Starten des Programms "%s". l 1Warte auf Prozemeldungen. Requester abbrechen. m Kommandozeile zu lang. n Starten. Dateityp: %s o Weiter p _Ok |_Abbrechen q 	_Ja|_Nie r _Ok |_berspringen|_Abbrechen s !Noch_mal|_berspringen|_Abbrechen t /Noch_mal|_Verz. ffnen|_berspringen|_Abbrechen u BrowserII Befehlsstatus x Konnte Bildschirm nicht ffnen y &Zuerst ALLE Besucherfenster schlieen! z !Konnte Hauptfenster nicht ffnen. { Ablagefenster | Farben einstellen } (Verz) ~ Bentigt %s V%ld oder hher.  Schutzflags setzen.  Filter einstellen.  Auswhlen.  Muster  seit  vor  
min. Gre  
max. Gre  	Ausschluߐ  
& Subtypen  Nein  Ja  Prfen  Dateien  Verz.  In Unterverz.  Lsch.   
Dateitypen  
Ausgewhlt  Weg  OK  Abbruch  Zurck  Schutzflags:  Maximum erreicht  Prozesse laufen noch.  Einlesen "%s" .  +_Ohne Piktogramm|_Mit Piktogramm|_Abbrechen  !ffentlichen Schirm auswhlen.  %Konnte Bildschirm "%s" nicht finden.  Verzeichnis auswhlen.  	Ungltig  Niemand  Keine  ANoch_mal|_Schutz bergehen
_Verz. ffnen|_berspringen|_Abbrechen  _Fr alle geschtzten Dateien  Pfad  Datum  Keine Versionsinformation  Verzeichnis(se)  Sie knnen mehrere Verzeichnisse durch Trennung mittels
Leerzeichen erzeugen. Wenn ein Verzeichnisname Leerzeichen
enthlt, mu er in Anfhrungszeichen eingeschlossen sein.  Konnte "%s"nicht sichern
%s.  %Konnte "%s"nicht als "%s" sichern
%s.  Neues Objekt umbenennen  Datei _Infos  _Sortierung  _Filter  	_Optionen  Gre  
Alt. Gre  Min. Breite  	Min. Hhe  Max. Breite  	Max. Hhe  Verzeichnis  Baum ohne Dateien  Baum mit Dateien  "%s" fixieren.  "%s" freigeben.  MStandard fr _Disk|Standard fr _Gert
Globaler _Standard|_Fenster|_Abbrechen  _Speichern|_Abbrechen  Standard, Ablage & Hauptfenster  
Gert "%s" Ð Disk "%s" (%s) Đ )Fehler beim Lesen der Snapshot-datei %s. Ő gWarnung: Das Fixieren der Fenstergre
bei aktiviertem Autozoom kann nutzlos sein.
Trotzdem fortsetzen? Ɛ -Fr das Fenster wurde kein Standard gesetzt. ǐ )Fr die Disk wurde kein Standard gesetzt. Ȑ *Fr das Gert wurde kein Standard gesetzt. ɐ +Es wurden keine globalen Standards gesetzt. ʐ OSyntax Fehler in Argumentspezifikation
Erlaubte Zeichen in [] sind: &, |, i, :. ː Dateimanager ̐ 
Standard ͐ Vorderster ΐ &Kann keinen Besitzer fr Disks setzen. ϐ )Konnte Besitzer fr "%s" nicht setzen.
%s А "Besitzername fr  "%s" eingeben. ѐ Besitzer einstellen. Ґ Setze Besitzer. Ӑ Unbekannter Benutzername: "%s". Ԑ & zugehrige .info Ր Gruppe/Andere: ֐ Bildschirmmodus auswhlen. א GBentigt entweder asl.library v38
oder reqtools.library v38 oder hher. ؐ Men erneuern ِ Letzter Fehler ڐ _E Ausfhren. ې 
Bildschirm ܐ ffentlicher Schirm ݐ Eigener Schirm ސ Workbenchfarben ߐ Eigene Farben  Hintergrundmuster  Hintergrundbild  Bildschirmfont  Standardfont  Eigener Font  Fensterfont  Standardfont  Eigener Font  
Startmodus  Hintergrund  Fragen  WB nach vorn  Kopieroptionen  Kontext  Immer kopieren  Immer verschieben  Link erzeugen  Als.  Fragen  Nur neuere berschreiben  Nicht berschreiben  berschreiben besttigen  Ersetzte Dateien sichern  Leere Verz. kopieren  Hierarchie kopieren  Kopiermodus  Klonen  Datum  Schutzflags  	Kommentar  Gerteliste  Gerte (Diskette)  Gerte  Disketten (Gert)  Angemeldete Disks  Abgemeldete Disks  Verzgerte Assigns  Pfadassigns  Gre der Disk 	 Freier Platz 
 Benutzter Platz  Benutzte Prozent  _% Umkehren  Fenster zip  	Optionen  Ausgewhlt lassen  Auswahl umkehren  Asynchrone Befehle  Prozestatusfenster ffnen  %AutoCmds berschreiben Std.-programm  !Zugehrige .info Datei auswhlen  Fensterfont in Requestern  Stille Grenermittlung  Verzeichnis-Disk-Verhltnis  Anteil der sichtbaren Dateien  Konfig. speichern  ber.  	Verlassen  Fenster  _S Neu lesen  ffnen  _P bergeordnetes Verz.   _O Verzeichnis. ! Ablage " Status # Baum erzeugen & Alles zoomen ' Verz. zoomen ( Grer ) Breiter * 	Schmaler + 
Max. Gre , 
Min. Gre - Baum . Alles faltem / Alles entfalten 0 _? Auswhlen. 1 _A Alles auswhlen 2 Filter 3 _F Setzen. 4 _. Keine .info 5 
_- Lschen 6 _/ Invertieren 7 Datei-Information 8 Gre in Bytes 9 Gre in Blcken : Schutzflags ; 	Besitzer < Gruppe = Datum > Zeit ? 	Dateityp @ 	Kommentar B Verzeichnispfeil C Verzeichnisbalken D 	Sortieren F Datum G Gre H Typ I 	Dateityp J 	Autozoom K Alles zoomen L Verz. zoomen M 	Neu lesen N 	Erneuern O 
Neue Infos P 
Baumfalten Q Nur eine Spalte R Nur bei Zoom S 	Optionen T Typ nach Namen finden U Typ scannen V 	Turboscan W Fenster erhalten X Automatisch ikonifiz. Y Automatisch schlieen Z Auto Disk ffnen [ Lokale Eigenschaften \ Eigenschaften ] _C Kopieren ^ _V Einfgen _ Diskette anpTR +  ##,  &,assen ` Alle anpassen a _= Zurcksetzen b _K Fixieren. c Freigeben. d Befehle e _R Umbenennen. f _M Verzeichnis erz. . g _2 Duplizieren. h Datum setzen. i Kommentieren. j Schutzflags. k Besitzer einstellen. l Piktogramm erz. m Gre bestimmen n _I Information o 
_D Lschen p  f     ݐ          	>^     LParM.catalog9  FORM  	6CTLGFVER "$VER: ParM.catalog 5.1 (10.11.94) LANG deutsch CSET    STRS  Ȑ ParM Meldung  Zeile zu lang  %s
 Zeile %ld, Zeichen %ld  MENU unerwartet  SUBMENU unerwartet  ENDSUBMENU unerwartet  ITEM unerwartet  	'}' fehlt  Argument fehlt 	 AUTOCMD hier nicht erlaubt 
 WIN im WB Modus nicht erlaubt  Konnte "%s" nicht ffnen/lesen  !Konnte Konsole "%s"
nicht ffnen  Konnte nicht auf "%s" zugreifen  Konnte "%s" nicht ausfhren
%s.  Konnte "%s" nicht laden
%s.  Befehl  
Starten.  Kein Programm gefunden.  Stack ungltig  Ungltige Prioritt  !WB, RUN, SHELL oder CFG erwartet  Ungltige Taste  Ungltige Umschalttaste  Unerwartetes Zeilenende  Schlsselwort erwartet  Taste bereits verwendet  Unbekannter Dateityp  Abbruch  Weiter  _OK |_Abbruch  _Shell|_Hintergrund|_Abbrechen   Programm nicht gefunden: "%s" ! _Weiter " Befehl ausfhren. # Ungltiger Tastenbefehl 5 Konnte Fenster nicht finden. 6 !Dieses Fenster hat bereits Mens. 7 +Mens bereits in der Workbench installiert. 8 Konnte Workbench nicht finden. 9 Chip:%6lD  Sonstiger:%7lD : 	ffnen. ; Neues Verzeichnis eingeben. < Pfad zu lang = Beschftigt > 	_O ffnen ? _U Erneuern @ 
Std Konfig A _E Ausfhren B Verzeichnis wechseln C Ende D %Bentigt asl.library V37 oder hher. P %Konnte Konfiguration nicht speichern Q Ungltige MouseOpts Version R Fenster nach vorn S Fenster nach hinten T Bildsch nach hinten U Auto aktivieren V 	SUN Maus W RMB Aktivierung X MMB Aktivierung Z Cycle mit MMB [ Bildsch. aus (Sek) \ Maus aus (Sek) ] Beschl. Schwelle ^ Beschl. faktor _ SUN Maus Schwelle ` Handlerprioritt a Keine c Linke Umsch. d 	Linke Alt e Linke Amiga f Rechte Umsch. g 
Rechte Alt h Rechte Amiga i Mittl. Maus j Fenster vorn Taste k 	Speichern l 	Benutzen Piktogramm erz. m Gre bestimmen n _I Information o 
_D Lschen p  f    * Ր      espaol>       ]$Ր                                                     28^     BrowserII.catalog4  FORM  20CTLGFVER '$VER: BrowserII.catalog 23.0 (28.3.95)  LANG espaol CSET    STRS  1 Inductor de BrowserII  gCopyright  Sylvain Rougier & Pierre Carrette.
Versin espaola de Hipolito Aceituno & Thomas Bliesener   Este programa es Shareware.
Si le gusta o si lo usa, envie Vd. $25 a:

Sylvain Rougier
39 rue Carnot
860 Poitiers
France

Recibir la ltima versin registrada
sin este inductor automtico.

No olvide comunicarnos
sus versiones actuales de BrowserII y ROM/Kickstart.  Registrado por:   Sobre BrowserII  Q Borro realmente TODOS los archivos marcados%s ?

%lD archivo(s) y %lD cajon(es)  _Saltar|_Cancelar  Re_Selecc.|_Reanudar  _Proyecto|_Saltar|_Cancelar 	 !Error leyendo directorio "%s"
%s. 
 "%s" no es un directorio.  JHay %lD bytes  %lD bloques seleccionados
 %lD archivos y  %lD directorios.  &No se puede crear icono para "%s" 
%s.  No hay icono definido para %s   FNo se encuentra icono para "%s" 
Tipo de Archivo: "%s"
Icono: "%s"
%s.  El tipo de "%s" es desconocido.  )No se puede colocar proteccin "%s" 
%s.  +No se puede colocar comentario de "%s" 
%s.  #No se puede colocar fecha "%s" 
%s.  )No se puede renombrar "%s" como "%s" 
%s.  "%s" como "%s"  !No se puede reetiquetar "%s" 
%s.  1No se puede crear un directorio en esta ventana.  &No se puede crear directorio "%s" 
%s.  Crea directorio(s).  Copiar  	Desplazar  Enlazar  	Duplicar  'No se pueden duplicar varios volumenes.  1No se pueden duplicar asignaciones ni volumenes.  Aadiendo iconos.   )No se puede aadir icono a asignacines. ! Borrando. " 
y su icono (.info) # _Borrar|_Cancelar $ _Borrar|Borrar _todo|_Cancelar % No se puede borrar el volumen. & 1No se puede comprobar el tamao de los volumenes. ' Colocando proteccin. ( %No se pueden proteger los volumenes. ) Colocando comentario. * Coloca comentario. + !Introduce comentario para "%s". , _Ok|_Todo|_Saltar|_Cancelar - !No se pueden comentar volumenes. . Colocando fecha. / Coloca fecha. 0 -No se pueden colocar fechas de los volumenes. 1 Renombrando. 2 	Renombra 3 Como 4 _Maysculas 5 'Nombre de archivo demasiado largo: "%s" 6 M"%s" no concuerda con "%s#?%s"
Introduzca nuevo nombre o modifique plantilla. 7 Para renombrar varios, debe introducir
plantillas con una y solo una
aparicin de '#?' en sendos nombres.
Ejemplo: #?.c.bak -> #?.c 8 Reetiquetar. 9 Nombre de volumen : 1Seleccionar volumenes en la ventana de BrowserII. ; %No se puede renombrar una asignacin. <  %lD Bytes  %lD Bloques = Leyendo icono. > ' Muevo realmente los archivos a
"%s" ? ? >Cop_iar|Co_p. como|Hacer _Enlace
_Mover|M_over como|_Cancelar  @ Directorio raz
No padre. A 'No puedo encontrar directorio padre
%s. B Abrir directorio. C /_Directorio|_rbol|rbolcon a_rchivos|_Cancelar D 5No hay actualmente procesos-hijos en funcionamiento. E Chip:%6lD  Otra:%7lD F ! Abandonar realmente BrowserII ? G %Seleccionar fuente para la ventana. H &Seleccionar fuente para la pantalla. I No se puede abrir "%s" %ld. J "No se puede guardar configuracin. K Error al escribir "%s"
%s. L *No se puede abrir "%s" para escritura.
%s. M Ya existe un directorio. N Ya existe un archivo. O &No se puede desplazar "%s"
a "%s" 
%s. P "No se puede crear enlace "%s" 
%s. Q __Reintentar|Abrir _dir|_Versiones.|_Actualizar
Sobre_escribir|Nuevo _Nombre|_Saltar|_Cancelar R '_Hacer backup de archivos reemplazados. S 3Repetir accin para _todos los archivos existentes. T IArchivo "%s" ya existe
Antiguo:  %lD Bytes  %s%s
Nuevo:  %lD Bytes  %s%s U 7Archivo "%s" no puede ser copiado
 Borrar mala copia ? V Escribiendo. W Error leyendo "%s"
%s. X 'No se puede abrir "%s" para lectura
%s. Y 
Leyendo. Z Leyendo directorio. [ No se puede borrar "%s" 
%s. \ Desplazando. ] Creando enlaces. ^ GUno o ms archivo(s) no copiado(s)
 Borrar fuente(s) de todas formas ? _ Acceso imposible "%s" 
%s. ` 2%lD Bytes  %lD Bloques  %lD Entradas seleccionadas a !%s %lD KBytes  %lD Bloques libres b =%lD/%lD Bytes  %lD/%lD Bloques %lD/%lD Entradas seleccionadas c =%lD/%lD Archivos  %lD/%lD Dirs %lD/%lD Bytes  %lD/%lD Bloques d /No se pueden desplazar archivos a esta ventana. e _Reintantar|_Cancelar f -No se puede borrar la copia mala de "%s"
%s. g FEl archivo "%s" no ha sido copiado completamente
 Borrar mala copia ? h ESeleccionadas algunas entradas ocultas
 Continuar de todas formas ? i No se puede abrir ventana. j No se puede crear proceso. k &BrowserII: Intentando la carga "%s". l 5Espera respuestas de proceso. Cancelar inductores. m !Lnea de comando demasiado larga. n "Funcionando. Tipo de archivo: %s o 	Reanudar p _Ok|_Cancelar q _Si|_No r _Ok|_Saltar|_Cancelar s _Reintentar|_Saltar|_Cancelar t )_Reintentar|_Abrir dir|_Saltar|_Cancelar u Status de accin de BrowserII v _Parar w _Pausa x No se puede abrir pantalla. y 1 Cerrar TODAS las ventanas visitantes primero ! z %No se pueden abrir ventana principal. { Ventana Alien | Ajustar colores } (Dir) ~ Requiere %s V%ld o superior.  Colocar proteccin.  Colocar filtros.  Seleccionar.  	Plantilla  
Despus de  	Antes de  
Mn tamao  
Mx tamao  Excluir  
& Subtipos  S  Casar  	Archivos  Directorios  Introducir subdirectorios  	Despejar   Tipos de archivo  Seleccionado  OK  	Cancelar  Inicial  Proteccin:  Mximo alcanzado  Procesos funcionando an.  Rastreando "%s" .  _Sin icono|Con _icono|_Cancelar  Seleccionar pantalla pblica.  %No se puede encontrar pantalla "%s".  Seleccionar directorio.  
Incorrecta  NadiTR ,  ##,  Se  Ninguno  %lDK  =_Reintentar|Saltarse _proteccin
_Abrir dir|_Saltar|_Cancelar  +Repetir para _todos los archivos protegidos  Senda  Fecha  Sin informacin de versin  Directorio(s)  No se puede crear directorios mediante nombres separados
por espacios en blanco. Si un nombre de directorio
incluye espacios en blanco, debe usar dobles comillas.  "No se puede hacer backup  "%s"
%s.  )No se puede hacer backup "%s" a "%s" 
%s.  Renombrar objeto para crear  Archivo _infos  	_Ordenar  	_Filtros  	Auto-Zoom  	_Opciones  Tamao  	Posicin  Alt. tamao  Alt. posicin  Mnima anchura  Mnima altura  Mxima anchura  Mxima altura  
Directorio  rbol sin archivos  rbol con archivos  Instantnea "%s".  Deshacer instantnea "%s".  U_Volumen por defecto|_Dispositivo por defecto
_Global por defecto|V_entana|_Cancelar   _Guardar|_Cancelar  &Ventana por defecto, Alien y principal  Dispositivo "%s" Ð Volumen "%s" (%s) Đ )Error leyendo archivo de instantnea %s. Ő {Aviso: El tamao de la instantnea de ventana puede
ser incompatible con la opcin auto-zoom.
 Continuar de todas formas ? Ɛ 7No se han elegido opciones por defecto para la ventana. ǐ 7No se han elegido opciones por defecto para el volumen. Ȑ ;No se han elegido opciones por defecto para el dispositivo. ɐ 1No se han elegido opciones por defecto globales. ʐ uError sintctico en la especificacin de argumentos del shell
Los caracteres permitidos dentro de [] son: &, |, i, :. ː Gestor de archivos ̐ Pblica por defecto ͐ Delantera ΐ 2No se puede elegir propietario para los volumenes. ϐ +No se puede elegir propietario de  "%s".
%s А /Introducir nombre de propietario para  "%s" . ѐ Elegir propietario. Ґ Eligiendo propietario. Ӑ #Nombre de usario desconocido: "%s". Ԑ & asociados .info Ր Grupo/Otros: ֐ Seleccionar modo de pantalla. א ;Requiere asl.library v38
o reqtools.library v38 o superior. ؐ Actualizar menes ِ ltimo error ڐ _E Ejecutar. ې 	Pantalla ܐ Pantalla pblica ݐ Pantalla habitual ސ Colores del WorkBench ߐ Colores habituales  Plantilla de fondo  Imagen de fondo  Fuente de pantalla  Fuente por defecto  Fuente habitual  Fuente de ventana  Fuente por defecto  Fuente habitual  Modo defuncionamiento  "Funcionamiento simultneo de fondo  	Inductor  WB por delante  Modo de copia  	Contexto  Copiado anteriormente  Desplazado anteriormente  Enlace  Como.  	Inductor  
Actualizar  No sobreescribir archivos  !Preguntar antes de sobreescribir  %Hacer backup de archivos reemplazados  Copiar directorios vacos  Copiar jerarqua  Modo de copiar  Clonar  Fechas  	Proteger  
Comentario  Lista de dispositivos  Dispositivos (Volumenes)  Dispositivos  Volumenes (Dispositivos)  Volumenes montados  Volumenes sin montar  Asignaciones standard  Asignaciones diferidas  Asignaciones path  Tamao de volumen 	 Espacio libre en el volumen 
 Espacio usado en el volumen  % volumen usado  _% Alternativo  Ventana zip  	Opciones  Mantener seleccionados   Cambiar selecciones  Acciones asincronas  %Abrir ventana de status del proceso   1AutoCmds ignora herramienta por defecto del icono  *Auto-seleccin de archivos .info asociados  %Usar fuente de ventana en inductores  !Silenciar comprobacin de tamao  'Mostrar el uso de directorios del disco  'Mostrar la proporcin de datos visibles  Guardar configuracin  	Sobre.  	Abandonar  Ventana  _S Rastrear de nuevo  Abrir  _P Abrir padre   _O Abrir directorio. ! Abrir Alien " Abrir status # _T Hacer rbol % 	Antizoom & 
Zoom total ' Zoom directorios ( La ms alta ) La ms ancha * La ms delgada + Mostrar mximo tamao , Mostrar mnimo tamao - rbol . Plegar todo / Desplegar todo 0 _? Seleccionar conjunto 1 _A Seleccionar todo 2 Filtros 3 _F Elegir. 5 _- Despejar 6 _/ Invertir 7 Informacin de archivos 8 Tamao en bytes 9 Tamao en bloques : 
Proteccin ; Propietario < Grupo = Fecha > Hora ? Tipo de archivo @ 
Comentario A Enlace B Flecha de cajn C Viga de directorio  D Ordenar E Nombre F Fecha G Tamao H Tipo I Tipo de archivo J Autoampliacin K Ampliar todo L Ampliar dir. M Releer N Renovar O Infos nuevos P Plegar rbol Q Slo una columna R Slo al ampliar S 	Opciones T Encontrar tipo por el nombre U Examinar tipo V Turbo_examinacin W Mantener ventana X Iconif. automticamente Y Cerrar automticamente Z Abrir autodisquete [ Atributos locales \ 	Atributos ] 	_C Copiar ^ _V Insertar _ Adaptar disquete ` Adaptar todos a _= Volver a poner b _K Fijar. c 	Soltar. d 	Comandos e _R Renombrar. f _M Crear directorio . g _2 Duplicar. h Poner fecha. i Comentar. j Flags de proteccin. k Poner dueo. l Crear icono m Determinar tamao n _I Informacin o 	_D Borrar ` Handlerprioritt a Keine c Linke Umsch. d 	Linke Alt e Linke Amiga f Rechte Umsch. g 
Rechte Alt h Rechte Amiga i Mittl. Maus j Fenster vorn Taste k 	Speichern l 	Benutzen Piktogramm erz. m Gre bestimmen n _I Information o 
_D Lschen p  f   Ր  n         ֐ 	^     ParM.catalog9  FORM  	CTLGFVER !$VER: ParM.catalog 5.0 (30.3.95)  LANG espaol CSET    STRS  	 Inductor de ParM   Lnea demasiado larga  %s
Lnea %ld, Carcter %ld  MENU imprevisto  SUBMENU imprevisto  ENDSUBMENU imprevisto  ITEM imprevisto  Cierre desaparecido '}'  Argumento desaparecido 	 )AUTOCMD no permitido en esta herramienta 
 WIN no permitido en el modo WB  Imposible abrir/cerrar "%s"  Imposible abrir consola
"%s"  Acceso imposible "%s"  Ejecucin imposible "%s"
%s.  Carga imposible "%s"
%s.  Comando  Funcionar.  No se encuentra herramienta.  Tamao de pila inadecuado.  Priorida fuera de rango  !Se esperaba WB, RUN, SHELL o CFG   Tecla no vlida.  Calificador no vlido.  Fin de lnea imprevisto.  Palabra-Clave imprevista  Tecla usada anteriormente  Archivo de tipo desconocido  	Cancelar  	Reanudar  _Ok|_Cancelar  _Shell|_RunBack|_Cancelar   !No se encuentra herramienta: "%s" ! 	_Reanudar " Ejecutar comando. # Hotkey incorrecta 5 No se encuentra ventana. 6 Esta ventana ya tiene menues. 7 %Menues ya instalados en el WorkBench. 8 No se encuentra WorkBench. 9 Chip:%6lD  Otra:%7lD : 	Abrir. ; Introducir nuevo directorio. < Senda demasiado larga = Ocupado > 	_O Abrir ? _U Actualizar A _E Ejecutar. B Cambiar Directorio C 	Abandonar D %Requiere asl.library V37 o superior. P %No se puede guardar la configuracin. Q !Versin incorrecta de MouseOpts. R Ventana delante. S Ventana atrs T Pantalla atrs U Auto-Activacin V 
Ratn Sun  W RMB Activado X MMB Activado Y Elevador MMB Z Ciclo usando MMB [ Pantalla vaca (sec) \ Ratn (sec) ^ Acelera Factor _ Umbral de ratn Sun ` Prioridad de Handler a Ninguno c Elevador izquierdo d Alterador izquierdo e Tecla Amiga izquierda f Elevador derecho g Alterador derecho h Tecla Amiga derecha j Ventana delante cual k Guardar l Usar  Lschen p  f   ې Ɛ  ܐ     franais=     ܐ  ]$쐾                                                 ݐ 0^ q (  BrowserII.catalog4 ې FORM  0CTLGFVER '$VER: BrowserII.catalog 23.1 (18.2.95)  LANG 	franais  STRS  0L Requte de BrowserII  yCopyRight  Sylvain Rougier & Pierre Carrette.
Icnes et Graphiques par Walter Drwald.
Version franaise de S.R. & P.C.   3Ce programme est ShareWare.
Si vous l'aimez et/ou si vous l'utilisez,
envoyez 100FF :

Sylvain Rougier
39 rue Carnot
860 Poitiers
France

Vous recevrez la dernire version enregistre
sans cette requte intermittente.
N'oubliez pas de prcisez vos verTR -  )),  .Xsions
de BrowserII et de ROM/KickStart.
Version dmo.  Enregistr pour:   A Propos de BrowserII  NDtruire les objet(s) slectionn(s)%s ?

%lD Fichier(s) et  %lD Rpertoire(s)  _Suivant|_Annuler  Re_Slectionner|_Continuer  _Projet|_Suivant|_Annuler 	 /Erreur pendant la lecture du rpertoire"%s"
%s. 
 "%s" n'est pas un rpertoire  RIl y a  %lD Octets  %lD Blocs slectionns
dans  %lD fichiers et  %lD rpertoires.  )Impossible de crer l'icne pour "%s"
%s.  Pas d'icne dfinie pour %s  JImpossible de lire l'icne pour "%s"
Type du fichier: "%s"
Icne: "%s"
%s.  Le type de "%s" est inconnu.  /Impossible de changer les
attributs de "%s"
%s.  !Impossible de commenter "%s"
%s.  .Impossible de d'actualiser
la date de "%s"
%s.  &Impossible de renomer
"%s" en "%s"
%s.  "%s" en "%s"  Impossible de renomer "%s"
%s.  5Impossible de crer un rpertoire dans cette fentre.  *Impossible de crer le rpertoire "%s"
%s.  Crer rpertoire(s).  Copier  	Dplacer  Lier  	Dupliquer  *Impossible de dupliquer plusieurs volumes.  3Impossible de dupliquer des Assigns ou des volumes.  Ajout d'icne.   +Impossible d'ajouter une icne  un assign. ! Effacement. " 
et leur icne (.info) ? # _Dtruire|_Annuler $ %_Dtruire|Dtruire _Contenu|_Annuler % #Impossible de dtruire des volumes. & 1Impossible de calculer l'occupation des volumes. ' Mise  jour attributs. ( 1Impossible de modifier les
attributs d'un volume. ) Mise  jour commentaire. * Entrer le commentaire. + #Entrer le commentaire pour "%s" . ,  _Ok |_Tous|_Suivant|_Annuler - 1Impossible d'attacher un commentaire  un Volume. . Mise  jour date. / Entrer la date. 0 +Impossible de modifier la date d'un volume. 1 	Renome. 2 Renomer 3 En 4 _Capitaliser 5 Nom de fichier trop long: "%s" 6 I"%s" ne repond pas  "%s#?%s"
Entrer un nouveau nom ou modifier le motif. 7 Pour le rennomage multiple, il faut
utiliser deux motifs contenant chacun
une et une seule occurence de '#?'.
Exemple: #?.c.bak -> #?.c 8 
Renomer. 9 Nom du Volume : 3Slectionner les volumes dans la fentre BrowserII. ; !Impossible de renomer un Assign. <  %lD Octets  %lD Blocs = Lecture d'icne. > !Dplacer les fichiers dans
"%s" ? ? >_Copier|Copier _En|Crer _Lien
_Dplacer|D_placer En|_Annuler @ !Rpertoire racine
Pas de Parent. A "Impossible d'obtenir le parent
%s. B Ouvrir un rpertoire. C 1_Rpertoire|Ar_bre|Arbre avec _Fichiers|_Annuler D +Pas de processus fils en cours d'excution. E Chip:%6lD  Autre:%7lD F Quitter BrowserII ? G %Slectionner la police de fentre. H !Slectionner la police d'cran. I *Impossible de charger la police: "%s" %ld. J &Impossible de sauver la configuration. K !Erreur durant l'criture "%s"
%s. L )Impossible d'ouvrir "%s" en criture
%s. M Un rpertoire existe dj. N Un fichier existe dj. O )Impossible de dplacer "%s"
dans "%s"
%s. P %Impossible de crer le lien "%s"
%s. Q Z_Ressayer|_Ouvrir Rp.|_Versions|_Mettre  jour
Rem_placer|Nouveau _Nom|_Suivant|_Annuler R #Sauve_garder les fichiers remplacs S /Rpter l'action  _tous les fichiers existants T OLe fichier "%s" existe dj
Ancien:  %lD Octets  %s%s
Nouveau: %lD Octets  %s%s U ALe fichier "%s" n'a pu tre copi
Dtruire le fichier incomplet ? V Ecriture. W %Erreur durant la lecture de "%s"
%s. X 'Impossible d'ouvrir "%s" en lecture
%s. Y 
Lecture. Z Lecture du rpertoire. [ Impossible de dtruire "%s"
%s. \ Dplacement. ] Cration des liens. ^ RUn(des) fichier(s) n'a(ont) pus tre copi(s)
Dtruire les originaux malgr tout ? _ Accs  "%s" impossible
%s. ` .%lD Octets  %lD Blocs  %lD objets slectionns a %s %lD Ko  %lD Blocs Libres b :%lD/%lD Octets  %lD/%lD Blocs  %lD/%lD Objets slectionns c :%lD/%lD Fich.  %lD/%lD Rp.  %lD/%lD Octets  %lD/%lD Blocs d &Impossible de dplacer un fichier ici. e _Ressayer|_Annuler f 5Impossible de dtruire la mauvaise copie de "%s"
%s. g &Dtruire la copie incomplte de "%s" ? h )Fichiers cachs slectionns
Continuer ? i Impossible d'ouvrir la fentre j %Cration de processus impossible.
%s. k 3BrowserII: Programme "%s" en cours de chargement. l %Attente rponse des processus fils. m Ligne de commande trop longue. n !Excution.  Type du fichier: %s o 	Continuer p  _Ok |_Annuler q  _Ok |_Annuler r  _Ok |_Suivant|_Annuler s _Ressayer|_Suivant|_Annuler t )_Ressayer|_Ouvrir Rp.|_Suivant|_Annuler u Status d'action de BrowserII x !Ouverture de l'cran impossible. y &Fermer d'abord les fentres de visite. z *Impossible d'ouvrir la fentre principale. { Fentre Alien | Rgler les couleurs } (rp) ~ #Ncessite la %s V%ld ou suprieure.  Attributs.  
Filtres.  Slectionner.  Motif  Depuis  Avant  
Taille Min  
Taille Max  Exclure  
+SousTypes  Non  Oui  Rpond  	Fichiers  Rp.  Entrer sous-rp.  R.A.Z.   Types  	Slection  SUP  Annuler  Init  
Attributs:  Maximum atteint.  *Des processus ne sont
pas encore termins.  Lecture de "%s" .  !_Sans Icne|Avec _Icne|_Annuler  Choisir l'cran.  Ecran public inexistant
"%s".  Rpertoire.  	Invalide  	Personne  Aucun  A_Ressayer|Ignorer la _Protection
_Ouvrir Rp.|_Suivant|_Annuler  %Rpter  _tous les fichiers protgs  Chemin  !Pas d'information sur la version  Rpertoire(s)  Vous pouvez crer plusieurs rpertoires d'un seul coup en
sparant les noms par des espaces. Si un nom de rpertoire
contient des espaces, il faut l'encadrer avec des guillemets.  "Impossible de sauvegarder "%s"
%s.  *Impossible de sauvegarder "%s" en "%s"
%s.  Renomer l'object  crer  _Infos de fichiers  _Tri  	_Filtres  A_grandissement Auto  Taille  Taille Zippe  Position Zippe  Largeur Min  Hauteur Min  Largeur Max  Hauteur Max  
Rpertoire  Arbre sans fichiers  Arbre avec fichiers  Figer "%s" .  Librer "%s" .  RDfauts pour le _Volume|Dfauts pour le _Device
_Dfauts Globaux|_Fentre|_Annuler  _Sauver|_Annuler  'Dfauts, et fentres Alien & Principale Đ Erreur de lecture fichier %s. Ő }ATTENTION: Figer la taille de la fentre peut tre
inutile avec l'option d'agrandissement auto valide.
Continuer quand mme ? Ɛ -Pas de dfauts enregists pour cette fentre ǐ )Pas de dfauts enregists pour ce volume Ȑ )Pas de dfauts enregists pour ce device ɐ !Pas de dfauts globaux enregists ʐ YErreur de syntaxe dans les arguments shell.
Caractres autoriss dans les []: &, |, i, :. ː Gestionnaire de fichiers ̐ Public par Dfaut ͐ Avant plan ΐ 2Impossible de modifier le
propritaire d'un volume ϐ 1Impossible de changer le
propritaire de "%s"
%s. А %Entrer le propritaire pour "%s" . ѐ Changer le propritaire. Ґ Changement de propritaire. Ӑ Utilisateur inconnu "%s". Ԑ + .info associs Ր Groupe/Autres: ֐ Slectionner le mode d'cran. א ENcessite l'asl.library v38 ou la
reqtools.library v38 ou suprieure. ؐ Mettre  jour Menus ِ Dernire Erreur ڐ _E Excuter. ې Ecran ܐ Ecran Public ݐ Ecran Personnalis ސ Couleurs Workbench ߐ Couleurs Personnalises  Motif de fond  Image de fond  Police Ecran  Police par dfaut  Police Personnalise  Police Fentre  Police par dfaut  Police Personnalise  Mode d'excution  En fond  	Demander  WB en avant plan  Mode de Copie  	Contexte  Toujours copier  Toujours dplacer  Lier  En.  	Demander  Mise  jour  Ne pas craser fichiers  Confirmer avant d'craser  Sauver les fichiers remplacs  Copier Rp vide  Copier Hirarchie  Options de Copie  Clne  	Attributs  Commentaire  Priphriques  Priphriques (Volume)  Priphriques  Volumes (Priphrique)  Volumes Monts  Volumes Non-Monts  Assigns Standard  Assigns Diffrs  Assigns Chemin  Taille du Volume 	 Espace disponible 
 Espace utilis  Pourcentage utilis  _% Alterner  Zipper la fentre  Garder la slection  Inverser slection  Actions asynchrones  Ouvrir fentre de statut  -AutoCmds prioritaires sur l'Outil par dfaut  )Slection automatique des .info associs  %Police des fentres dans les requtes  "Calculer la taille silencieusement  Montrer usage Rp/disque  Montrer Visible/Cach  Sauver Configuration  A propos.  Quitter  Fentre  	_L Relire  Ouvrir  _P Ouvrir Parent   _O Ouvrir Rp. ! Ouvrir Alien " Ouvrir Statut # _A Faire Arbre $ Agrandissement % 	Rtrcir & 	Agrandir ' Agrandir Rp. ( 
Plus haute ) 
Plus large * Moins large + Voir taille max , Voir taille min - Arbre . Tout replier / Tout dplier 0 _? Slectionner. 1 _T Tout Slectionner 2 Filtres 3 _F Dfinir. 4 _. Exclure .info 5 	_- Aucun 6 _/ Inverser 7 Info Fichiers 8 Taille en Octets 9 Taille en Blocs : 	Attributs ; Propritaire < Groupe > Heure ? Type @ Commentaire A Lien B Image de rpertoire C Jauge de rpertoire D 	Trier par E Nom G Taille H Type d'objet I Type de fichier J Agrandissement Auto K 	Agrandir L Agrandir Rp M 	Relecture N Mise  jour O Infos de fichier P Pliage Q Une seule colonne R Si dj agrandie T Trouver le Type par le nom U Trouver le TypTR .  ##,  dDFae par le contenu V Lecture rapide W Garder la fentre X Icnification automatique Y Fermeture automatique Z Chargement automatique [ Proprits locales \ 
Proprits ] 	_C Copier ^ 	_V Coller _ Propager au Volume ` Propager Partout a _= Restituer Prefs b _! Figer. c 
Librer. e _R Renommer. f _N Crer Rpertoire. g _2 Dupliquer. h Changer la Date. i Changer le Commentaire. j Changer les Attributs. k Changer le Propritaire. l Ajouter une Icne m Calculer la Taille o _D Dtruire Elevador izquierdo d Alterador izquierdo e Tecla Amiga izquierda f Elevador derecho g Alterador derecho h Tecla Amiga derecha j Ventana delante cual k Guardar l Usar  Lschen p  f     m          	L^      ParM.catalog9 ې FORM  	DCTLGFVER "$VER: ParM.catalog 5.0 (30.10.94) LANG 	franais  STRS   Requte de ParM  Ligne trop longue  %s
Ligne %ld, Colonne %ld  MENU inattendu  SUBMENU inattendu  ENDSUBMENU inattendu  ITEM inattendu  Crochet '}' manquant  Argument manquant 	 %AUTOCMD non accessible dans cet outil 
 !WIN n'est pas autoris en mode WB  Fichier "%s" introuvable  'Ouverture de la console
"%s"
impossible  Accs  "%s" impossible  !Excution de "%s" impossible
%s.  !Chargement de "%s" impossible
%s.  	Commande  Excuter.  Aucun outil trouv.  STACK invalide  Priorit hors bornes  &Modes possibles: WB, RUN, SHELL ou CFG  Code de touche invalide  Qualifier invalide  Fin de ligne inattendue  Mot cl attendu  Code de touche dj utilis  Type de fichier inconnu  Annuler  	Continuer   _Ok |_Annuler  _Shell|En _fond|_Annuler   Impossible de trouver
"%s" ! 
_Continuer " Executer une commande. # Hotkey invalide 5 !Impossible d'obtenir la fentre. 6 %Cette fentre possde dj des menus. 7 'Menus dj installs dans le WorkBench. 8 WorkBench introuvable. 9 Chip:%6lD  Autre:%7lD : 	Ouvrir. ; Entrer le nouveau rpertoire. < Chemin trop long = Occup > 	_O Ouvrir ? _J Mettre  jour @ Cfg Standard A _E Excuter. B Changer Rp. C Quitter D *Ncessite l'asl.library V37 ou suprieure. P %Sauvegarde configuration impossible. Q Version de MouseOpts invalide R Fentre en avant S Fentre en arrire T Ecran en arrire U Activation Clavier W Activation RMB X Activation MMB Z Cycle avec le MMB [ Extinction d'cran \ Extinction pointeur ] Seuil d'Accl. ^ Facteur d'Accl. _ Seuil du SunMouse ` Priorit du handler a Aucun c Shift Gauche d 
Alt Gauche e Amiga Gauche f Shift Droite g 
Alt Droite h Amiga Droite i Bouton Milieu j Qual fentre en avant k Sauver l 	Utiliser j Ventana delante cual k Guardar l Usar  Lschen p  f    ,O       italiano=       ]$c                       
  	                      .n^ q    BrowserII.catalog4  FORM  .fCTLGFVER '$VER: BrowserII.catalog 23.0 (18.2.95)  LANG 	italiano  STRS  . Richiesta BrowserII   sCopyRight  Sylvain Rougier & Pierre Carrette.
Versione inglese di S.R. & P.C.
Traduzione italiana di Alessandro Galassi.
Questo programma  ShareWare.
Se ti piace o lo usi, invia 25$ a:

Sylvain Rougier
39 rue Carnot
860 Poitiers
France

Riceverai l'ultima versione registrata.
Non dimenticare di inviare il numero della tua versione
e la versione della ROM/KickStart.  Versione dimostrativa.  Registrato a:  Riguardo BrowserII  ICancello veramente TUTTI i files%s marcati?

%lD file(s) e  %lD directory  _Salta|_Rinuncia  Ri_Seleziona|_Continua  _Progetto|_Salta|_Rinuncia 	 )Errore nel leggere la directory "%s"
%s. 
 "%s" non  una directory  FCi sono  %lD Bytes  %lD Blocchi selezionati
in  %lD files e  %lD dirs.  %Non posso creare l'icona per "%s"
%s.  !Non c' un'icona definita per %s  ENon posso esaminare l'icona per "%s"
Tipo File: "%s"
Icona: "%s"
%s.  Tipo di "%s"  sconosciuto.  Non posso proteggere "%s"
%s.  )Non posso mettere il commento a "%s"
%s.  %Non posso mettere la data a "%s"
%s.  %Non posso rinominare "%s" as "%s"
%s.  "%s" come "%s"  !Non posso rietichettare "%s"
%s.  -Non posso creare una dir in questa finestra.  !Non posso creare la dir "%s"n%s.  CreaDir(s).  Copia  Sposta  	CreaLink  Duplica  %Non posso duplicare volumi multipli.  .Non posso duplicare n assegnamenti n volumi.  Aggiungi Icona.   -Non posso creare icona per gli assegnamenti. ! Cancella. " 
e le loro icone (.info) # _Cancella|_Rinuncia $ #_Cancella|Cancella _Tutto|_Rinuncia % Non posso cancellare il Volume. & /Non posso controllare la dimensione dei Volumi. ' Metto Protezione. ( Non posso Proteggere i Volumi. ) Metto il Commento. * Metti il Commento. + Inserisci commento per "%s" . , _Ok |_Tutto|_Salta|_Rinuncia - Non posso commentare i Volumi. . Metto la Data. / Metti la Data. 0 %Non posso mettere la data ai Volumi. 1 Rinomino. 2 	Rinomina 3 Come 4 	Maiuscola 5 !Nome del file troppo lungo: "%s" 6 G"%s" non matcha "%s#?%s"
Inserisci un nuovo nome o modifica il pattern. 7 Per rinomine multiple, puoi inserire
pattern con una o pi
 occorrenze di '#?' in entrambi i nomi.
Per esempio: #?.c.bak -> #?.c 8 Rietichetta. 9 Nome volume : -Seleziona i volumi nella finestra BrowserII. ; %Non posso rinominare un assegnamento. <  %lD Bytes  %lD Blocchi = Leggo Icona. > "Sposto veramente i files in
"%s" ? ? _Copia|_Sposta|_Rinuncia @ 'Directory base
Nessuna directory padre. A )Non posso ricavare la directory padre
%s. B Apri Dir. C &_Dir|_Albero|Albero e _files|_Rinuncia D %Nessun processo figlio in esecuzione. E Grafica:%6lD  Altra:%7lD F %Vuoi veramente uscire da BrowserII ? G Seleziona Font Finestra. H Seleziona Font Schermo. I Non posso aprire "%s" %ld. J %Non posso salvare la configurazione. K "Errore nella scrittura di "%s"
%s. L &Non posso aprire "%s" per scrivere
%s. M Una directory esiste gi. N Un file gi esiste O #Non posso spostare "%s"
in "%s"
%s. P "Non posso creare il link "%s"
%s.; Q SRi_prova|Apri _Dir|_Versioni.|_Aggiorna
S_ovrascrivi|_Nuovo Nome|_Salta|_Rinuncia R 	; Files; S 	; Files; T GFile "%s" esiste gi
Vecchio:  %lD Bytes  %s%s
Nuovo:  %lD Bytes  %s%s; U AIl file "%s" non pu essere copiato
Cancello la copia parziale ? V 	Scrivo. W !Errore nella lettura di "%s"
%s. X %Non posso aprire "%s" per leggere
%s. Y 	Leggo. Z Leggo dir. [ Non posso cancellare "%s"
%s. \ 	Sposto. ] Creo link. ^ IUno o pi more file(s) non copiati
Cancello la/e sorgente/i ugualemente ? _ Non posso accedere a "%s"
%s.; ` -%lD Bytes  %lD Blocchi  %lD Dati selezionati a !%s %lD KBytes  %lD Blocchi Liberi b 9%lD/%lD Bytes  %lD/%lD Blocchi  %lD/%lD Dati selezionati c ;%lD/%lD Files  %lD/%lD Dirs  %lD/%lD Bytes  %lD/%lD Blocchi d -Non posso spostare i files in questa finestra e Ri_prova|_Rinuncia f 2Non posso cancellare la copia parziale di "%s"
%s. g MIl file "%s" non era stato completamente copiato
Cancello la copia parziale ? h =Alcuni dati nascosti erano selezionati
Continuo ugualmente ? i Non posso aprire la finestra. j !Non posso creare il processo.
%s. k %BrowserII: Cerco di caricare "%s". l 9Aspetto le repliche dei processi. Elimino i requester. m Linea di comando troppo lungo. n Lancia.  Tipo File: %s o Tenta p  _Ok |_Rinuncia q _Si|_No r  _Ok |_Salta|_Rinuncia s Ri_prova|_Salta|_Rinuncia t %Ri_prova|Apri _Dir|_Salta|_Rinuncia; u Stato BrowserII v _Ferma w _Pausa x Non posso aprire lo schermo. y Chiudi TUTTI le finestre prima! z )Non posso aprire la finestra principale. { Altra Finestra | Regola Colori ~ Richiede %s V%ld o maggiore.  Metti Protezione.  Metti Filtri.  Seleziona.  Scelta  Da  Prima  	Dim. min  	Dim. MAX  Escludi  	& Subtipi  Si  Uguale  Aggiorna Subdirs  Canc.   	Tipi File  Selezionati  CAN  Rinunc  Resetta  
Protezione  Massimo raggiunto.  Processo ancora in esecuzione.  Catalogando "%s" .;  Senza Icona|Con Icona|Rinuncia  Seleziona Schermo PubblicoTR /  "",  JP!ڐ.  +Non posso trovare lo Schermo Pubblico
"%s".  Seleziona Dir.  
Non valida  Nessuno  Nessuno  ;Ri_prova|S_ovrascrivi protezione
_Apri Dir|_Salta|_Rinuncia  !Ripeti su _tutti i files protetti  	Percorso  Data  Stringa versione non presente  Puoi creare differenti directories separando
i nomi con spazi bianchi. Se il nome di una directory
include spazi bianchi, devi utilizzare le virgolette ".  %Non posso fare il backup di "%s"
%s.  -Non posso fare il backup di "%s" in "%s"
%s.  Rinomina l'oggetto da creare  _Informazioni File  O_rdina  _Filtra  
Auto_Zooma  	_Opzioni  
Dimensione  	Posizione  Alt. Dimensione  Alt. Posizione  Minima Larghezza  Minima Altezza  Massima Larghezza  Massima Altezza  Albero senza files  Albero con files  Cattura "%s" .  Elim. Cattura "%s" .  MDefault per _Volume|Default per _Device
Default _Generali|_Finestra|_Rinuncia  _Salva|_Rinuncia  %Default, altre cose & Finestre princ. Đ !Errore nella lettura del file %s. Ő jATTENZIONE: la dimensione della finestra
di cattura pu essere inutile con
l'auto-zoom settato, continuo ? Ɛ &Nessun default settato per la finestra ǐ %Nessun default settato per il volume Ȑ %Nessun default settato per il device ɐ Nessun default globale ʐ UErrore di sintassi negli argomenti di shell
I caratteri tra [] permessi: &, |, i, :. ː Gestore file ̐ Pubblico di default ͐ Pi avanti ΐ .Non posso settare un proprietario per i volumi ϐ -Non posso settare un proprietario di "%s"
%s. А )Inserisci nome proprietario per "%s" . ѐ Inserisci proprietario. Ґ Inserisco proprietario. Ӑ Nome utente sconosciuto "%s". Ԑ & Associato .info Ր Gruppo/Altri: ؐ Aggiorna Men ِ Ultimo Errore ڐ 
_X Comando ې Schermo ܐ Schermo Workbench ݐ Schermo Custom ސ Colori Workbench ߐ Colori Custom  Pattern di Sfondo  Immagine di Sfondo  Font Schermo  Font Standard  Font Custom  Font Finestra  Font Standard  Font Custom  Metodo Esecuzione  In BackGround  	In Shell  Chiedi  
WB Davanti  Metodo Copia  	Contesto  Copia Sempre  Sposta Sempre  Linka  Come.  Chiedi  	Aggiorna  Non sovrascrivere i files  Chiedi prima di sovrascrivere  Backupa i file rimpiazzati  Copia Dirs Vuote  Copia Albero  Copia Flags  Clona  Date  
Protezioni  	Commenti  
Visualizza  Device (Volume)  Periferiche  Volume (Device)  Volumi  Volumi non Montati  Assign Standard  Assign Dereferenziati  Assign di Percorsi  Dimensione Volume 	 Spazio Libero Volume 
 Spazio Utilizzato Volume  Usato % del Volume  
_% Alterna  Zippa Finestra  Opzioni  Prendi selezionati  Scambia selezionati  Azioni asincrone  *Esegui il processo della finestra di stato  .AutoComandi prima dei tool standard dell'icona  )Auto-seleziona files con .info associato  -Utilizza il font della window nelle richieste  Controlla dimensione (muto)  #Visualizza utilizzo disco della dir  )Visualizza proporzione dei dati visibili  Salva Configurazione  Riguardo a BrowserII  Esci  	Finestra  _E Riesamina  Apri  _P Apri Padre   _A Apri Dir. ! 
Apri Altra " 
Apri Stato # _A Crea Albero $ Ingrandisci % Niente Ingrandimento & Ingrandisci Tutto ' Ingrandisci Dirs ( 	Pi Bassa ) Pi Stretta * Piccola + Visualizza MaxDimensione , Visualizza MinDimensione - Albero . Raccogli Tutto / Lascia Tutto 0 _? Seleziona Uguali 1 _T Seleziona Tutto 2 Filtri 3 _F Metti. 4 _. Niente .info 5 
_- Pulisci 6 
_/ Inverti 7 Informazione File 8 Dimensione in Bytes 9 Dimensione in Blocchi : 
Protezione ; Proprietario < Gruppo = Data > Ora ? Tipo @ 	Commento B Freccia Dir C 	Jauge Dir D Ordinato per E Nome F Data G Dim. H 	Tipo Dato I 	Tipo File K Zooma Tutto L 	Zooma Dir M 	Riscanna N 	Aggiorna O Informazioni Nuovi Files P Alberto Raccolta Q Solo 1 Colonna R Solo se Zoomato S Opzioni T Cerca Tipo per Nome U Cerca Tipo per Scansione V Turbo Scansione W Prendi Finestra X Auto Iconificazione Y Auto Chiusura Z Auto Caricamento Disco [ Propriet Locali \ 	Propriet ] 	_C Copia ^ 
_I Incolla _ 	Su Volume ` 	Su Tutto a _= Richiama Prefs b _K Cattura. c Rilascia. d Azioni e _R Rinomina f 
_M CreaDir g 
_2 Duplica h 
Metti Data i Metti Commento j Metti Protezione k Setta Proprietario. l Aggiungi Icona m Controlla Dimensione n _I Informazioni WB o _C Cancella y  x  w  v  u  t 
Ȑ^ 3    	AddIcon> r      +          	$^     ParM.catalog9  FORM  	CTLGFVER !$VER: ParM.catalog 5.0 (30.3.95)  LANG 	italiano  STRS  Ԑ Richiesta ParM  Linea troppo lunga  %s
Linea %ld, Carattere %ld  MENU imprevisto  SUBMENU imprevisto  ENDSUBMENU imprevisto  ITEM imprevisto  Manca la parentesi '}'  Manca l'argomento 	 'AUTOCOMANDI non permessi in questo tool 
 WIN non permessa nel modo WB  Non posso aprire/leggere "%s"  !Non posso aprire la console
"%s"  Non posso accedere a "%s"  Non posso eseguire "%s"
%s.  Non posso caricare "%s"
%s.  Comando  	Esegui.  Nessun tool trovato.  Stack non valido  Priorit oltre il limite  WB, RUN, SHELL o CFG Aspettati  Chiave non Valida  Qualificatore non valido  Imprevista fine della linea  Parole chiave aspettata  Chiave gi in uso  Tipo file sconosciuto  	Rinuncia  Riprova   Ok |Rinuncia  Shell|BackGround|Rinuncia   Tool non trovato: "%s" ! 	Ri_prova " Esegui comando. 5 Non posso prendere la finestra. 6 Questa  finestra ha gi men. 7 "Men gi installati nel WorkBench. 8 Non posso trovare il WorkBench. 9 Grafica:%6lD  Altra:%7lD : Apri. ; Inserisci Nuova Dir. < Cammino troppo lungo = 	Impegnato > _A Apri ? _G Aggiorna @ Cfg Std A 
_C Comando B 
Cambia Dir C Esci D 'Richiede la asl.library V37 o maggiore. P %Non posso salvare la configurazione. Q !Versione di MouseOpts non valida. R Finestra Davanti S Finestra Dietro T Schermo Dietro U Auto Attivazione V 	Mouse Sun W Attivazione RMB X Attivazione MMB Y Shift = MMB Z Cicla usandro MMB [ Oscura Schermo(sec) \ Oscura Mouse (sec) ] Sensibilit Accel. ^ Fattore Accel. _ Sensib. SunMouse ` Priorita Handler a Nessuna b 	Controlla c 
Shift Sin. d Alt Sinistro e 
Amiga Sin. f Shift Destro g 
Alt Destro h Amiga Destro i Middle Button j Qual. Finestra Davanti k Salva l Usa x  w  v  u  t 
Ȑ^ 3    	AddIcon> r      5      svenska>       ]$. 4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !        -\^ 3    
BrowserII.catalog4  FORM  -TCTLGFVER ($VER: BrowserII.catalog 23.4 (17.12.94) LANG svenska CSET    STRS  , BrowserII meddelande  UCopyright  Sylvain Rougier & Pierre Carrette.
Svensk version av Anders Hammarquist.   +Detta program r Shareware.
Om du gillar eller anvnder det, skicka $25 till:

Sylvain Rougier
39 rue Carnot
860 Poitiers
Frankrike

Du kommer att f den senaste registrerade versionen
utan denna upphoppande meddelanderuta.
Glm inte att uppge vilken version av
BrowserII och ROM/Kickstart du har.  Registrerad p:  Om BrowserII  KRadera verkligen ALLA markerade filer%s ?

%lD fil/filer och %lD lda/ldor  _Hoppa ver|_Avbryt  Vlj _om|_Fortstt  _Projekt|_Hoppa ver|_Avbryt 	 'Fel vid lsning av biblioteket "%s"
%s. 
 "%s" r inte ett bibliotek  ;%lD Byte (%lD Block) valda
i  %lD filer och  %lD bibliotek.  &Kunde inte tillverka ikon fr "%s"
%s.  Ingen ikon definierad fr %sTR 0  &&,  >]J  ;Kunde inte hitta ikon fr "%s"
Filtype: "%s"
Ikon: "%s"
%s.  Typ fr "%s" r oknd.  -Kunde inte stta skyddsflaggorna fr "%s"
%s.  Kunde inte kommentera "%s"
%s.  #Kunde inte stta datum fr "%s"
%s.  %Kunde inte dpa om "%s" till "%s"
%s.  "%s" till "%s"  Kunde inte dpa om "%s"
%s.  .Kan inte ppna nytt bibliotek i detta fnster.  )Kunde inte ppna nytt bibliotek "%s"
%s.  Nya bibiliotek.  Kopiera  Flytta  Lnka  Kopiera  Kan inte kopiera flera volymer.  'Kan inte kopiera assigns eller volymer.  Lgger till ikon.   "Kan inte stta ikon p ett assign. ! 
Raderar. " 
och dess ikon (.info) # _Radera|_Avbryt $ _Radera|Radera a_lla|_Avbryt % Kan inte radera en volym. & )Kan inte bestmma storleken av en volym. ' ndrar skyddsbitar. ( 'Kan inte ndra skyddsbitar fr volymer. ) Kommenterar fil. * Kommentera fil. + Skriv kommentar fr "%s" . , _Ok|A_lla|_Hoppa ver|_Avbryt - Kan inte kommentera volymer. . Stter datum. / Stt datum. 0 !Kan inte stta datum fr volymer. 1 Dper om. 2 Dp om 3 Som 4 _Stor begynnelsebokstav 5 Fr lngt filnamn: "%s" 6 ?"%s" matchar inte "%s#?%s"
Skriv nytt namn eller ndra mnster. 7 qFr multipla namnbyten kan du skriva
mnster med ett och endast ett '#?'
i bda namnen.
Exempel: #?.c.bak ->#?.c 8 	Dp om. 9 	Volymnamn : "Vlj volymer i BrowserII-fnstret. ; Kan inte dpa om ett assign. <  %lD Byte  %lD Block = Lser ikon. > !Flytta verkligen filer till
"%s"? ? 9_Kopiera|Kopiera _Som|_Lnka
_Flytta|Flytta So_m|_Avbryt @ %Huvudbibliotek
Inget moderbibliotek. A #Kunde inte hitta moderbibliotek
%s. B ppna Bibliotek. C )_Bibliotek|_Trd|Trd med _filer|_Avbryt D +Inga processer startade frn BrowserII kr. E Grafik:%6lD  vrigt:%7lD F Avsluta verkligen BrowserII ? G Vlj fnstertypsnitt. H Vlj skrmtypsnitt. I %Kunde inte ppna typsnittet "%s" %ld. J !Kunde inte spara konfigurationen. K Fel vid skrivning till "%s"
%s. L 'Kunde inte ppna "%s" fr skrivning
%s. M Ett bibliotek existerar redan. N En fil existerar redan. O #Kunde inte flytta "%s
till "%s"
%s. P Kunde inte lnka "%s"
%s. Q ]_Frsk igen|_ppna bibl.|_Versioner.|_Uppdatera
_Skriv ver|_Nytt namn|_Hoppa ver|_Avbryt R _Skerhetskopiera ersatta filer S %Repetera fr _alla existerande filer T JFilen "%s" existerar redan
Gammal:  %lD Byte  %s%s
Ny: %lD Byte  %s%s U =Filen "%s" kunde inte kopieras.
Radera den felaktiga kopian? V 
Skriver. W Fel vid lsning av "%s"
%s. X %Kunde inte ppna "%s" fr lsning
%s. Y 	Lser. Z Lser bibliotek. [ Kunde inte radera "%s"
%s. \ 
Flyttar. ] 	Lnkar. ^ :En eller flera filer kopierades inte
Radera orginal nd ? _ Kunde inte komma t "%s"
%s. ` %lD Byte  %lD Block  %lD Valda a %s %lD KByte  %lD Block fria b *%lD/%lD Byte  %lD/%lD Block  %lD/%lD Valda c 9%lD/%lD Filer  %lD/%lD Bibl.  %lD/%lD Byte  %lD/%lD Block d )Kan inte flytta filer till detta fnster. e _Frsk igen|_Avbryt f -Kunde inte radera felaktig kopia av "%s"
%s. g EFilen "%s" kopierades inte fullstndigt
Radera den felaktiga kopian? h 'Ngra gmda poster valda
Fortstt nd? i Kunde inte ppna fnster. j !Kunde inte starta processen.
%s. k %BrowserII: Startar programmet "%s". l +Vntar p procesvar. Avbryt requesters. m Kommandoraden fr lng. n Startar. Filtyp: %s o 	Fortstt p  _Ok |_Avbryt q 	_Ja|_Nej r  _Ok |_Hoppa ver|_Avbryt s !_Frsk igen|_Hoppa ver|_Avbryt t 1_Frsk igen|ppna _Bibliotek|_Hoppa ver|_Avbryt u BrowserII kommandostatus v _Stopp w _Paus x Kunde inte ppna skrm. y Stng ALLA besksfnster frst! z Kunde inte ppna huvudfnstret. { Frvaringsfnster | Frginstllningar } (bibl) ~ #Krver %s version %ld eller senare.  Stt skyddsbitar.  Stll in filter.  Vlj.  Mnster  Efter  Fre  	Strre n  	Mindre n  Uteslut  
& Subtyper  Nej  Ja  Filter  Filer  Bibl.  Pverka underbib.  Rensa   	Filtyper  Valda  Avbryt  Senast  Skyddsbitar:  Maximum ndd.  Processer kr nnu.  Scannar "%s" .  _Utan ikon|_Med ikon|_Avbryt  Vlj allmn skrm.  #Hittade inte allmnna skrmen
"%s".  Vlj bibliotek.  	Otilltet  Ingen  Ingen  G_Frsk igen|Ignorera _Skyddsbitar
_ppna bibliotek|_Hoppa ver|_Avbryt  !Repetera fr _alla skyddade filer  Skvg  Datum  Ingen versionsinfomation  	Bibliotek  Du kan gra flera bibliotek samtidigt genom att
skiva namnen tskillda av mellanslag. Fr att
f med mellanslag i biblioteksnamnet mste du
anvnda citationstecken ".  %Kunde inte skerhetskopiera "%s"
%s.  .Kunde inte skerhetskopiera "%s" till "%s"
%s.  Dp om objekt fr att skapa  Fil_information  	_Sortera  _Filter  	_Optioner  Storlek  Alternativ storlek  Alternativ Position  Minsta bredd  Minsta hjd  Strsta bredd  Strsta hjd  	Bibliotek  Trd utan filer  Trd med filer  Memorera placering av "%s" .  Glm placering fr "%s" .  '_Volym|_Enhet|_Globalt
_Fnster|_Avbryt  _Spara|_Avbryt  1Frinstllingar, och frvarings- och huvudfnster  
Enhet "%s" Ð Volym "%s" (%s) Đ Lsfel p positionsfil %s. Ő mVARNING: Att spara fnsterstorleken kan
vara oanvndbart med AutoZoom-optionen
pslagen. Fortstt i all fall? Ɛ !Inga frinstllningar fr fnster ǐ Inga frinstllningar fr volym Ȑ Inga frinstllningar fr enhet ɐ Inga globala frinstllningar ʐ RSyntaxfel i skalargumentspecifikationen
Tilltna tecken mellan [ ] r: &, |, i, :. ː Filhanterare ̐ Frvald offentlig ͐ 	Frmsta ΐ !Kan inte stta gare fr volymer ϐ "Kunde inte stt gare fr "%s"
%s. А Skriv garnamn fr "%s" . ѐ Stt gare. Ґ Byter gare. Ӑ Oknt anvndarnamn "%s". Ԑ och tillhrande .info Ր Grupp/vriga: ֐ Vlj skrmlge. א IKrver antingen asl.library v38
eller reqtools.library v38, eller senare ؐ Uppdatera menyer ِ Senaste fel ڐ _E Exekvera kommando. ې Skrm ܐ Allmn skrm ݐ 
Egen skrm ސ Systemfrger ߐ Egna frger  Bakgrundsmnster  Bakgrundsblid  Skrmtypsnitt  Standardtypsnitt  Eget typsnitt  Fnstertypsnitt  Standardtypsnitt  Eget typsnitt  	Startmod  	Bakgrund  Skal  Frga  	WB frmst  Kopieringsmod  Automatiskt  Kopiera alltid  Flytta alltid  Lnka  Som.  Frga  	Updatera  Skriv inte ver filer  Frga innan verskrivning  Skerhetskopiera ersatta filer  Kopiera tomma bibliotek  Kopiera rekursivt  Kopieringsflaggor  Klona  Datum  
Skyddbitar  	Kommentar  Enhetslista  Enheter (Volym)  Enheter  Volymer (Enhet)  Monterade volymer  Omonterade volymer  Vanliga assign  Frdrjda assign  Skvgs assign  Volymstorlek 	 Ledigt utrymme 
 Anvnt utrymme  Andel anvnt utrymme  _% Alternativ vy  Byt fnsterstorlek  	Optioner  Behll valda  Vxla valda  ASynkrona kommandon  ppna processtatusfnster  5Anvnd AutoCmds istllet fr ikonens standardverktyg  )Vlj tillhrande .info filer automatiskt  #Anvnd fnstertypsnitt i requestrar  Tyst storlekskontroll  Visa bibliotekstorlek  Visa andel synliga filer  Spara konfiguration  	_? Om.  
_Q Avsluta  Fnster  _U Uppdatera  ppna  _ Moderbibliotek   _O Bibliotek. ! Frvaringsfnster " Status # _T Trd & 
Zooma alla ' Zooma bibl. ( Lngre ) Bredare * Smalare + Visa strsta storlek , Visa minsta storlek - Trd . 	Vik alla / Vik upp alla 0 _K Markera. 1 _M Markera innehll 2 Filter 3 _F Stll in. 4 _. Inga .info 5 	_- Rensa 6 _/ Invertera 7 Filinformation 8 Storlek i byte 9 Storlek i block : Skyddsbitar ; gare < Grupp = Datum > Tid ? Filtyp @ 	Kommentar A Lnk B Ldpil C 	Ldmtare D Sortera efter E Namn F Datum G Storlek H Typ I Filtyp K 
Zooma alla L Zooma bibl. M 	Uppdatera N 	Uppdatera O Ny filinformation P Trdfrgrening Q Endast en kolumn R Endast om zoomat S 	Optioner T Bestm filtyp frn namnet U Bestm filtyp med scan W Behll fnster X 
Ikonifiera Y Stng Z Automatladda disk [ Lokala instllningar \ Instllningar ] _X Klipp ut ^ _V Klistra in _ Pverka volymen ` Pverka allt a _= terstll b _P Memorera placering c _G Glm placering d 	Kommandon e _D Dp om. f _N Nytt bibliotek g _C Kopiera. h Stt datum. i Kommentera. j Stt skyddsbitar. k Byt gare. l Lgg till ikon m Bestm storek n _I Information o 	_R RaderaM   g  @BaseName= r    5  6{ :  9  8  7  6 	^ 3    
(ParM.catalog9  TR 1  ss,  رC7FORM  	CTLGFVER "$VER: ParM.catalog 5.2 (16.12.94) LANG svenska CSET    STRS  	 ParM meddelande  Raden fr lng  %s
Rad %ld, Kol. %ld  Ovntad MENU  Ovntad SUBMENU  Ovntad ENDSUBMENU  Ovntad ITEM  Vnsterklammer '}' saknas  Argument saknas 	 #AUTOCMD ej tilltet i detta verktyg 
 WIN ej tilltet i WB-lge  Kunde inte ppna/lsa "%s"  Kunde inte ppna konsoll
"%s"  Kunde inte komma t "%s"  Kunde inte kra "%s"
%s.  Kunde inte ladda "%s"
%s.  	Kommando  Kr.  Hittar inget verktyg.  Felaktig stack  Felaktig prioritet  "WB, RUN, SHELL eller CFG frvntad  Otillten tangent  Otillten kvalifierare  Ovntat radslut  Nyckelord frvntat  Tangenten anvnds redan  Oknd filtyp  Avbryt  	Fortstt   _Ok |_Avbryt  _Skal|_Bakgrund|_Avbryt   Hittar ej verktyget: "%s" ! 	_Fortstt " Exekvera kommando. # Otillten snabbvalstangent 2 .[32mParM[31m V4.7  1990-93 av [33mS.R. & P 3 Fel i ENV:ParMOpt 5 Hittade inte fnstret. 6 Fnstret har redan menyer. 7 Workbench har redan menyer. 8 Hittar inte Workbench. 9 Grafik:%6lD  vrigt:%7lD : 	ppna. ; Nytt bibliotek. < Skvgen r fr lng. = 	Upptagen. > 	_O ppna ? _U Uppdatera @ Standardinstllningar A _E Exekvera kommando. B Byt bibliotek C 
_Q Avsluta D +Krver asl.library version 37 eller senare. P !Kunde inte spara instllningarna. Q Felaktig MouseOpts version. R Fnster verst S Fnster underst T Skrm underst U Autoaktivera V Sun-mus W Hger-mus aktiverar X Mitt-mus aktiverar Y Mitt-mus = skift Z Rotera med mitt-mus [ Skrmslckning (s) \ Musslckning (s) ] Accelerationstrsk. ^ Accelerationsfaktor _ Aktiveringstrskel ` Hanterarprioritet a Ingen b 	Kontroll c Vnster skift d Vnster alt e Vnster Amiga f Hger skift g 	Hger alt h Hger Amiga i 	Mitt-mus j Fnster frmst kval. k Spara l Anvnd   g  @BaseName= r    ; HOڐ6 C" J  F
 ?B < M     Docks@ p    <  =q- >  = ^    	BrowserDock.info1 {  ;   # E * %   %А 6 + 7 * $  p        =    =           @ @ @@x@_x@ @@@P@WP@ P@   P@?(P@  (P@?(P@  (P@?(P@  (@@?)@  )@  ( @  ( @  ( @  ( @  ( @    @ @ @ @ @ @ @ +                    ^   p  ForB r    ?  @¬0 B  A  @ ^ y    BrowserII_Disks.brush0 ; FORM  ILBMBMHD  8 .  CMAP  3fwGRAB   DRNG   $  DRNG   $   DRNG   $   CAMG   BODY  P               @ ? {   @ @  {;    `   _ j:   `  jJ" }  p  }m j ( `  j* wOwtu t   wIw'pv jʦ7    jr  ][o]   ]\yXM^ i닩Z `  h)v U{TU v  TTV j۫z    j( *
 UVw1  p @  U# jw |  j* E\  8 E@X   j㚪 wА j|j A 9&t   / A x  H   H @!Y   @ `1^  A5 { @8>  A _ ݭ  @ \  @8 u@  DWȀF @~~ iʠ  @a  @w ^_Y  U	  @h w  @(  @_uA %R˗ UP
 # @?m  CC @   @ u  B  UUVJ V @ ;  ӂb  b"$$ " @     UUX!V @ ?   ݐ j 
 @ o    UU@@UV @    `@ n @    ` UUQUV @    P  @    ` UUTUV @ U    T * @     ( wwtQCwv @ |   p 
 @     _QA @ ~   t   @     QA  @                     ^   p  ForB r    C  D\Ԑ E  D ^    	BrowserII_Disks.brush.info+ ;     :    GА 4P0D  
  :   	                 `               8          * *   ?      ? 5UT 5UT 5DUUT 5DTUT 5DUET 5DTUUT 5DTUTUT 5DTUQUT 5UEUT 5UUT 5UUTUUT 5UUQUUT 5UUEUUT 5UUUUT 5UTUT 5U_UT 5UUT 5UUT 5UT 5UT   
MultiView  FILETYPE=ILBM  @    ` UUQUV @    P  @    ` UUTUV @ U    T * @     ( wwtQCwv @ |   p 
 @     _QA @ ~   t   @     QA  @                     ^   p  ForB r    F  Gɫb I  H  G ^ {    	`BrowserII_Files.brush0 ; FORM  ILBMBMHD  8 .  CMAP  3fwGRAB   DRNG   $  DRNG   $   DRNG   $   CAMG   BODY  P               @ ? {   @ {;    ` _ j   ` jJ }   p   m~ j:  ` D  j:** wwwUU     ww'wY kU*ʪ  U  kV*r \\UU Ӂ \y\UF jS*    jT)v* T{UE T  j  TU jU  4  jU( *
 Tw T p   T  i)w) )    i*** EC @ F,DX   j>㚨 	wА j%|j @ 9&t   / @ x  H   H @!Y   @ `1^  A5 { @8>  A _ ݭ  @ \  @8 u@  DWȀF @~~ iʠ  @a  @w ^_Y  U	  @h w  @(  @_A %Ru˗ UP
 # @?m  B# @    @    uB  UUT
 V @  #  Âb  b"  " @ M  
  Ub!V @    [ j
 @ _   
 U`UV @    P@ n @ _   
` UXUV @    PP  @ _   
` UXUV @     T  @     ( wwxCwv @ |   p 
 @     _QA @ ~   t   @     QA  @                     ^   p  ForB r    J  Kc L  K ^    	BrowserII_Files.brush.info+ ;     :    Q` 2VW $ 
  :    J                 `               8          * *   ?      ? 5UT 5UT 5DUUT 5DTUT 5DUET 5DTUUT 5DTUTUT 5DTUQUT 5UEUT 5UUT 5UUTUUT 5UUQUUT 5UUEUUT 5UUUUT 5UTUT 5U_UT 5UUT 5UUT 5UT 5UT   
MultiView  FILETYPETR 2  )<)<,  ,}^=ILBM   'f  `^     MakeLink= r    M - N n z  y  x  w  v  u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^  ]  \  [  Z  Y  X  W  V  U  T  S  R  Q  P  O  N Y$^     X	Templates< ; FORM  YILBMBMHD q   XCMAP  UwGRAB   DRNG   $   DRNG   $   CAMG @  BODY  X                            ?             ?                ?               	  
=             	  *    =p  翽=      8         ?    =p  ?   ! .	 x @ ?   R᪀   * ?   ?    ?ns7     8@     8        8  ?p  ~l   @ x@   \  F@3  	O᪀   ? F@3  ?p  GU\ݷ     8@  A  >O@8   R&  UP>O@8  ?p  o   $.  xE P    @ |<'     ?᪠|<'  ?p  GT\~     8@    @  0'   RFTP0'  ?p      @	 xA     H$\    	R᪀ 	K   ?p        8@  	@     	(@|   ?p     ^ 
 xB     @<   
O ?  ?p        8@       FR|  ?p       !^* xD$P    A    !K      ?p        8@  !    	D    ?p     ". xB P    B @@  q?  ?   ?p        8@  E@       E.    ?p        8@    D$\  (  ? K  @     ?p     /@  @  F "     (DT  @  ?p         H$P    @ "H@  K  0    ?p       @   _D $A$    H T8 >   ?p      @(    @  L  ?ƫ P    ` '   ?p  Rr    @   @      	 E.T    ? p    @       	_?   ? p    @        "HT   ? p   @       Iƫ UV?   ? p    @    B     RT   ? p    @        UV?   ? p    @    P     I'T      p      _      UV?     ?      @      	T           WV??         ?    ?           8       @           	 F@3   	  @       	>O@8  	 0       	|<'    8 >       	0'    ` '                                           <                    ԥ           ?     V     	              @        { 	  >{     37           ` 8   { 	O{{U\    
          `  U  UP`37    	{                 {  nh    	O  U\   x    8 `  `  ?   ` ?UPm    	ܪ   ~       x  "`    "n  ~  	OU\   ?     8   >  ? # dL  ?UPo~_     	܈   ?        8 `~3  ? $g   $0'  <  	OU\     E 	"   8     ? 	d?UP  >       Q@  	   H     " '"      	    	
( 8   	  ?# $P?          @,  	   x    $e' '$  	     
@    	" 8   	@ ?I $?      ,  	  y  )$A ')>   ݽ   " 	B 9  ?p %$8?     ݽ  Q	  	  Ay  "R '"      BE 	!" 8   ? @\?     P < 	  H  "O@ '"  
@     
     	
 8  
@ ? P?¨             < 	   8   ?  @ g?  	  @ @           ?   	            U'/      > 	  <             R@ `           ʤ    <   8  A" @    "      \5_     ?    
      
 : <          ? $@ 
0    ?    
  
窪  ~   8   @@    Y  >  ' 5X   
  ~    
  o]   * 9 <        2  x %!@ 
  ݬ  x    
  
Ϫ     8    @       `  ' 85X   
*      
  TߕV   9 <        a   $q@ 
0  U^UT     
  
     8         `@    ' N5X   
;*     
  EF    8 <   	        '@ 
0  F$D     
  
=    8    	        ' 
   
       h`       	          0 j       
  
*                  	0  
ڨ        <          ?         ~?"      Ki      !3 b@  )l     P^     " h    R    }r      %pP    	ug  <  @
      # `       
N    	      "  ԥ   	    X         V   W      R          @       2h    >{  cĲ     ""            O{{U\  Wr  ?     %A P  `  U  UP  >{   {    ?     "    {    Dw9    O  U\       8   ! D@   ` ?UP  8   ܪ f*;        Z )    "    w OU\ &    8      dL  ?UP  I   ܈ )        8     @    $  F 5  w OU\ (      "   8        d?UP    w   ( 
      H       '"     0      
( 8         $P?    p           x       '$       p   ?    	" 8   $?        	  y  ')>  ݽ  	B 9  %$8?    ݽ  	  Ay  '"    	!" 8   @\?    	  H  '"    	
 8  P?¨     	   8  g?  @   	          	      `     ʤ  	A" @   \5_           0      
 @@    	5X       8@        ?         _T      @  /@     	85X  $T  (   _        @    0  UX    ^Q    
         N5X  Q  "   UU [           0 UU  (EUX      _                 UX  
   UT@  K?          @  0 UT@ " U        ]_        *      0  EUZ    QQ K?     
  `    U  
U       _     Q  @      U 
  QD K      
   U  UW   ]            U .     0 S J     G  
         T  

EU_  (  0
   U@     D      $       !)c< ߀X    UW@    0 p UT@ J      <D @    
     |C3 UTB .
 U_  0   j     D 
      
  JP ( <    U_5U P  0   U^     D   U Z h  Ҵ  >y Đ     U@  
  0 @    @F      $  UP  *UX  M    	  翽  0 @   
  D    
     ?    ~  5U T GU{ 0     p D    $   P  5U  H  ? ۻ{ 0 0 @   p D     
    ;  (  TR 3  , , ,   Z-h<  U  0       ?  D    "    5U 3ϐj ʪ 0p    ?@ D  Q      
 '*? ɏp`3'   U 0a0  8@   ?  D      ?  D 5U"` O{88~#    Ȉ 0c  B @L     D    @  /@     
 G(? #󁽌 ~c $
>qP U 03  C p      D        @     H5U$g	7? p  9   0 @    C       	 D E Q     @   )p  ?.@
ng " jx  0     @ @  (  DQ@       @        *E1"  uW^    0  C    A      D  A       *G  ?#(?0 5p>8p  @ 0     @?    X  D@, 
  (   @ *HO @$e'+ ??
 y    0  #   $@_       D    @    *    *  ?Ia?c*` [7  0p@ 3  .@?   !X D,  
    @ 
" ` *RH )$A[3 x{=  0@f    @      DD "  @ Q   !@    *   ?p  H %  0>     @   (  DQ	   
 A 
  *
D  "R  @Km֐    0       @     8D BE@@  
  $   *)p??/p  ú* ap  0       @   ( ( xDP <  (     
    *
E*"OA'=%  r  0     H  L     8D   A  @      @  *??ဃǟ   {2p     0a    D  d   @xD <      @ 
   *
  *?  Aa  ?x  @0 P  ` Dj    8D   @@     
  $   ?   pbg? ? Z5U P  N_U'/0    
U^   $(  xD	  <     U Z 
 U RAp;     0         p 8D  8 Q   PQ  0-U0      0   
   @ t xD  
 : <   $ 
 
U @. %0 5U T    0       p 8D 8  @  P g y          T r xD * 9 <  " 
CU *%!A
        l    p 8D P 8     |g<`     f <   
 r xD  9 <   
$U f$q@> n|0          ,    p 8D  8       'g$?     O0   L    p xD  8 <  gA ?   0    L    p 8E  8 @      $(M    ;  0  H      / 8D         ` @ Rv g       p     @            ?              _@      H?  Q`   UU@      @      ?UU@  0       @    =        0  UU     G  @            7UU  0  (  0
  GȾ  {   D      $ 
@    )c< ߀X @  0>     0L  ؖ{   <D   @      0 $t  0  0  {Ⱥ@    D     @T@  JP ( J  4;     0{ܖ    D    @@ ; h  Ҵ  4    @1?0  U@  
  0   Ⱦ  @F     $  @@   UP  *UX  UUV    4? "w   	  翽  0@  ܖ ) D ?p   ;@ 8 *    ?        ~  ?   ?0 *GU{ 0   Ⱥ   *p D?p $  @   8 *  P  5U  H  @    ? "{ 4:  $uC *ۻ{ 0@  ܕU@  p D ?   8@   *
    ;  (  @    <  ? U   * U  0        ?  D     r  
 8 @       5U @   $uC*  &ʪ 0 @ T@    ?@ D  Q p  @ *
 '*?   D'   T@* $U 0 T  U X ?  D !  p     U P D 5U"` OH  T j  Ȉ 0        D     p    
 G(? #  HU @ U 0       D    D   p  H5U$g	Ip     0 U T    	 D E Q   p  U T )p  ?.@OE. j   0   (  DQ@  $P  p  E1"H     0      D       G  ?#H0  @ 0   X  D@, 
 D  p HO @$e'+ I
    0        D        ?IOR| `    0{ p   !X D,  "  s   RH )$AIp `?     0{       DD "   _@        ?p  OD   H}  0    (  DQ	  !BE  p   @  
D  "R  @ȁ   &s  0  0  @    8D BE  p@  )p??E.p &p     0   & ( xDP <"   p  @ @  &
E*"OAȡPpyP     0   0  ȃ  {  E    p 
@     `k  0#     0 ; ؀ {    E 
  @   #  Pp ; $9  0  
0 
{Ȁ@ @@ E /    @T@  ?  p  4     0I {܀   EH  E   D@ ;  @j5Pp ;  @5?0  0  Ȁ   ( E$H#2
 Q     B@    @  À  0 - 40"{    0  ܀ ) F "E d $  ;@ 8 *  @
 |D)#j5P0?  >?0  0  Ȁ   "H@ EH  D    H   8 
 0 ǀ  ~ @y"{ 4 $uB    ܀  @  )D$A$ E$	 I  
@  8@A  *
8 >  
Hpj5P`?        @  L  E ` S       
 8 @     
  ` '  	`  $uAC      @       E  B @ @@   $j5P0  :  0 U X    D    A  U P      j     O0      p xD  8 <      gA 5P@U @   0     p 8E  8 @    @      ;  0   U T  / 8D     U T   ` @ X  j         @                                        0 `     GЀ A    	 E,xC   ` (  0?&   "D     ` ?~)c< ߀@    0?   xD      T   0?   @D    
 ;( V   
0?     @D     J 8 Ҵ 
 j  T    ?  0  {    F     U`  jUX  `  W  ?   {   0{{    D     
  g       I   p{ { 0{  D      	   C  H     e  x t { 0     D 	 9      C  (    ?     0O          D    
       a g  "     	  0   @       D  P 8 B  @      Or? 4L  ?É  @       0   _    D    8   P      q?"` Og  $Áx  `  R     0   \ @    @    D  "   8   P ?   p/? #$?8  aR     0  [_T   @    D     H 
  B    @'$g	'"  ` RT  (  00 F  
_     @ 	 D E P
( 8   D      R`?.@$P? p  H     0{   ` 
^Q  AE P   DQ@     x   _
   Ȁ  @"g"  @ Q   !  0v   oUP 
[     @    D  " 8B  P      /@C?#duÅ`  OUP      /  0l   on=R_  =  A   (D@, 
  y  P      (p$e'+ 'k> 0  On     /  0Oݽ  mU@  K?=  / @ @/?D B 9  P   @   ('@?Ie$8 0  MU@  2   /	0ݽ  o R]_?  /B  ?pD,  Ay  P   * @ Ȁ  @)$A' O    /0O  eK?  / @ /?pD "!# 8   P  ܲ  `@   /A@ ?p  d@]   E_    /	0O  nR_?  /D$P   DQ	   H  P   @ B ]Ȁ   K "R  @g8  N ;  /	0  eCK?  / @ 	 pD BE
 8  P0 ܲ @    /R?dP¨8  EPA  0  &  oR]  ?  !B P  DP <   P     @  ?U"OA@  0 0  O  :    0?  e?J     E     P?    _      _  E@
     0  n RU@ ?   E    P     @     \  N #@    0TR 4  ,  Z`  eUD  J    E   P      ?p  EUD   
 U_ 0  j Rj  ?Ef@!@
  P   
   p   @X  J 5UP 0  uU    8	E32P0   EU      @  À  X  b X  Z   0       F@3E f D @   @       @ |DP8   @  2  0  @    >O@8Eϓ $$	    @    
 0 ǀ  ~ x  CU R    @     |<'E' 
d    @     8 >   ?  @      @     0'Egs8	   @       ` '  	  @         E      `     `	    D       `  ? O0B  @  D  8 <   UgA b  @?w0    @  pE  8   ^  ,      w  0   _ pD        ` @        @                                              ѐ  _ D  3  
TackOn? r    {  |ea  }  | ^    	Templates.info7 ;    J :    J@ 8N8PȐ  <
  :   	x                 `               8          * *   ?      ? 5UT 5UT 5DUUT 5DTUT 5DUET 5DTUUT 5DTUTUT 5DTUQUT 5UEUT 5UUT 5UUTUUT 5UUQUUT 5UUEUUT 5UUUUT 5UTUT 5U_UT 5UUT 5UUT 5UT 5UT   
MultiView  FILETYPE=ILBM    Gΐ  ^   h  ,VolName> r    ~  R        ^     

Docks.info; p   z S 9     2| 2`  +< v E 2x	     r buD	 \ D  	 9   P ?    /  /UP /n -UD3 /  n %s .f %C" /  %?B .   %UD > *   %U  5UV ?!          	   *̈́    a@  Cd 0  t ?z      /       UT/   X UP nx UD4  p  _l - PC ܸ @AYl  f UD"Ʃ 
  0 U
  9   H  p  o    UU@  ׃ U  7? ?@u_  ? c !  x U W   ՐUTW  @  @      @   @  @ 	 @ f @@  0@*  d! @ `  @@ E @=@  ~ @  @  UTV      	     ?UU@. =  6U ? 8 |@j: ; 	

 ?A\  :  3|UT *  j U     | {x H  W   vy  V8   &8   @
V8   P<  
S  5P  
  @       ' y     &8  @ V8    &8  @ <   +(  @ | x     G       ?    >     = $      j B      HelpA p      nC      ѐ^    English.info9    
  9    =@Cؐ b IȐ  Uؐ	 /    V& L	 \ D  9   	x ?    /  /UV8  /n.  -UKK / _ % .  %@C /  %? =" . Φ %UD (ob *  0' %U ` 5U]V ?!                         D 0     ? 8p@   01D     $  `@ UQT (   X UR@ n0x UC*  { _ 8 PB!  	{ @    9D UD"Ң\ 
  ˘ U
<  9   	  p  o      UUC    U   / ?C_  ?    ֑ gS U 7   ՐUu_  @  @      @ Ԑ @    @  @  @   @@  @*  Gp" @ ` 
@@  	xB @ 8 @  @ 
@@  UuQ6        	      ?UUA" =E 6U*? =|DCpj ; 
 ? [N : U. *  ̀j U  % Icon by Martin Huttenloher   ]       ^     WBRun@ r     P: @ %  < 2> X  Y  ]" 7 - " Er     English>      H {                                                                                                                                                  ^   , dBrowserII.guide6   ѐ@database "BrowserII.guide"
@author Pierre Carrette & Sylvain Rougier
#$VER: BrowserII.guide V3.3 (04.03.95)

@node Main "BrowserII V3.0 Documentation"

 Welcome  to
@{b}
 BrowserII
@{ub}
 The @{i}other@{ui} File Manager!

 Version 3.03

 Copyright  1991-94

 Pierre Carrette & Sylvain Rougier.
 Icons & Graphics by  Walter Drwald.
	 @{" READ THIS FIRST! " Link "Read this first" }
	 @{" System requirements " Link "System requirements"}  
	 @{" Installation " Link "Install" }

	 @{" Introduction " Link "Introduction" }  Start reading this.
	 @{" Features " Link "Features" }  Most important features
	 @{" The history	 " Link "History" }  Why did we rewrite the original Browser

 @{b}Using BrowserII@{ub}

	 @{" Running BrowserII " Link "Running" }  Tooltypes and WBStartup drawer support.
	 @{" Basic knowledge " Link "BasicKnowledge" }  You MUST know that.
	 @{" Common problems " Link "CommonProblems" }  Frequently asked questions.
	 @{" Directory Tree " Link "Tree" }  Opening and using tree windows.
	 @{" Archive Support " Link "ArchiveSupport" }  Displaying archive contents.
	 @{" Zooming windows " Link "Zoom" }  Maximize window size.
	 @{" Snapshoting windows " Link "Snapshots"
 }  Saving window properties.
	 @{" Iconify " Link "Iconify" }  How works iconification in BrowserII.
	 @{" Network / Multiuser " Link "Network" }  Network and MuliuserFS support.
	 @{" Standard Menus " Link "Menus" }  Builtin menus usage.
	 @{" Mouse and Keyboard  " Link "Keyboard" }  Summurize important keys/qualifiers.
	 @{" Jauges " Link "Jauges" }  Windows' jauges usage.
	 @{" Select Requester " Link "SelectRequester" }  Criteria file selection/filtering.
	 @{" FileExist Requester " Link "FileExistsRequester"}  Important and often used requester.
	 @{" Commodity " Link "Commodity"
 }  Poping up BrowserII with a hotkey.
	 @{" Workbench Support " Link "WorkbenchSupport" }  AppIcon & AppWindows.
	 @{" External Command BD " Link "ExternaTR 5  **,  l-2j
lCommandBD"  }  Opens dirs from a shell.

 @{b}Configuration@{ub}

	 @{" User Menus
 " Link "BrowserII.menu" }  Creating user menus.
	 @{" Command Hot keys " Link "CmdHotKeys"	 }  Running commands by hot keys.
	 @{" Auto Commands " Link "AutoCmds" }  Commands associated to File Types.
	 @{" File Types
 " Link "whatis.library" }  Creating new File Types.

 @{b}Miscellaneous@{ub}

	 @{" Changes since v2.x  " Link "Changes" }  v2.x users MUST read this.
	 @{" Release Notes " Link "Release Notes" }  Features history since v1.0.
	 @{" Future Plans " Link "Future Plans" }  What will be the next versions.
	 @{" Getting Updates " Link "Updates" }  Where and how to get new versions.

	 @{" Copyright " Link "Copyright"
 }  Pierre Carrette & Sylvain Rougier!
	 @{" Registration " Link "Registration" }  Why registering and how.
	 @{" Bug reports	 " Link "Bug reports" }  Found some bugs ?

	 @{" Acknowledgements " Link "Acknowledgements" }  We wish to thank.
	 @{" Disclaimer
 " Link "Disclaimer"	 }  Be warned!

@endnode
@node "Read this first" "BrowserII.guide/Read this first"

 Please read this
 ~

  Please, even if you hate reading documentations, read at least the
  following pages, @{"Introduction" Link Introduction}, @{"Features" link Features} and @{"Basic knowledge" link BasicKnowledge}
  or you will miss some important things in BrowserII.
  These chapters are small. It will take you just a few minutes to read them.

  For users of BrowserII v2.x, read important @{Changes link Changes} from v2.x to v3.0.

@endnode
@node "System requirements" "BrowserII.guide/System requirements"

System requirements
=

  BrowserII requires version 2.0 of the Amiga operating system or higher.
  To get a full featured BrowserII, you should also install the @{"whatis.library" link "whatis.library"},
  and the @{"ObjectArchive" link ArchiveSupport} package.

@endnode
@node Install "BrowserII.guide/Install"

Installation
=

  BrowserII is distributed together with an Installer script, therefore
  making  installation a breeze!  Just double-click on the 'Install-BrowserII'
  icon and the installation procedure is on it's way.

@endnode
@node Introduction "BrowserII.guide/Introduction"

Introduction
=

  BrowserII is a multi-window file manager, ie it is not limited to two
  scrolling lists! This also means that you can see ALL informations about
  a file (several files), size, date, time, protection, file type, comment,.
  without horizontal scrolling! No need to select a file to follow it
  horizontaly!

  It works like Workbench.  Copy files by dragging and dropping them over
  the destination directory.

  But BrowserII is not only a usual file manager.  Most people use both a
  shell and a file manager depending on the work they are doing.  BrowserII is
  also a tool making life easier in a shell-like environement.

  Where to you spend most of your time in a shell ? Typing file names ? You
  then think than file completion is the best help ? YOU ARE WRONG!
  Imagine that BrowserII is a shell.  In each window, you have a directory
  displayed, so that all files are immediately selectable.  You then want to
  execute a command in one of these.

  In a shell, what would do ?
  Change the current dir, by CD'ing several times ? How long does it take ?

  Now consider your directory is here, just in front of you.
  Activate the window, your 'CD' is done. Select the desired file(s), and
  then press 'E' key. A requester appears asking you to complete the command.
  Press return. Quick no ?

  Even better:  You use some commands quite often ?  Create a menu with a
  shortcut or a more sophisticated hotkey.  Select the files, press your
  hotkey, et voila!
  
  For example, I have, Make, BumpRev, CPR, Diff, Indent,. menus, making my
  developpement environement a dream! I can work on different developpement
  directories at the same time, without typing even a single shell command!
  See the last menu named "C" of my @{"BrowserII.menu" link //BrowserII.menu-example/Main} configuration file subset.

  As a last word for this introduction, know that we use BrowserII all the
  time, for every thing. We (Sylvain and I) even don't load Workbench at
  boot time! Funny isn't it? ;-)
  That's why one of the next BrowserII features will be icon display, the
  only reason why we (sometimes!) run Workbench.

  See the @{"Features" link Features} page for a complete detailed list of features.

@endnode
@node Features "BrowserII.guide/Features"

Features
=

  Some features of BrowserII makes it a different and powserfull file manager.

  - It is @{b}Asynchronous@{ub}.
 Several (unlimited) operations can be performed at the same time.
 Copying files, deleting others, running tools, scanning directories,
 all at the same time!

  - It has a finder-like @{"directory tree" link Tree}.
 Examine the whole contents of a floppy disk by just a double click!

  - Powerfull copy and other dos operations.

  - Full @{"Network / MultiuserFileSystem" link Network} support.

  - It has the most powerfull @{"archive support" link ArchiveSupport} using @{b}ObjectArchive@{ub} system.

  - Hard and soft links support.

  - Proportionnal font support allowing to nicely display lots of
 informations about files in less space.

  - Device list with volume statistics.

  - And it is @{b}small@{ub}. About 150 KBytes including its libraries.

@endnode
@node "History" "BrowserII.guide/History"

History
=

  We wrote BrowserII after having used for 2 years the original Browser
  (version 1.6a) written by Peter Da Silva.  We were not fully satisfied
  because of some of its limitations so, as soon as we felt capable of
  writing a program which would overcome those limitations, we made a
  decision to do it.  So BrowserII was born.  The Return !

  We felt the overall layout and display mode of Browser were very good, so
  we decided to keep them, as well as the name, so that actual users of
  Browser would immediately feel home with BrowserII.

  As we never had the sources of Browser at hand, we rewrote it from scratch.

  A few months ago, I had a chat with Peter, who discovered our piece of
  work. It was really exciting to speak (by email) with our spiritual
  father ;-)
  So, if you read this, Hello Peter!

@endnode
@node Running "BrowserII.guide/Running BrowserII"

Running BrowserII
=

  BrowserII can of course be run just like any other tool.  But you
  should take care to run it from an environnement that makes it inherit
  your defaut shell Path, so that it can run commands without problems.

  It can also be run through the @{"BD" link ExternalCommandBD} separate command.

  If you want to start browser from your WBStartup drawer, you may create a
  Project icon with default tool set to BrowserII if browser is in your
  path, or to the full path to browser.
  The installation procedure will do it for you if you want.

  There are some optionnal tooltypes:

  APPICON (default is "BrowserII")
  ICONXPOS (default is 'NOICONPOSITION')
  ICONYPOS (default is 'NOICONPOSITION')

  If you set APPICON=NONE, the only way to uniconify is to use {"hotkey" link Commodity}
  or Commodities Exchange utility.
  See {"Commodity" link Commodity} for other tooltypes.

@endnode
@node BasicKnowledge "BrowserII.guide/Basic knowledge"

Basic knowledge
=

  First of all, you should read the @{"Introduction" link Introduction} chapter.

  When you first start BrowserII, you get just a simple window, called the
  @{b}Main@{ub} window, which contains the dos device list, ie, by default, the
  list of mounted volumes and assigns. To adapt the contents of this window,
  use the BrowserII/@{"Device List" link DeviceListSub} submenu.
  Window bottom border informations
  !~
 Main window
 ~
 When the active window is a directory or @{"tree" link Tree}, volume informations
 appear in the bottom border of the main window. If the volume is write
 protected, thoses informations appear in italic.

 If the main window or alien window is active, the bottom border of the
 main window contains the statistics about selected files.

 Directories / Trees
 ~
 In the bottom border of windows appear:
 - If no entries are selected
 The total statistics about window contents
 - If some entries are selected
 The selection statistics for that window
  BrowserII makes a heavy usage of menus. It is the best way to preserve
  most of the screen space available to display directories contents.
  Compared to other files managers, BrowserII does not have button panels.
  This will change in a next release as docks are planned using toolmanager.

  A lot of people complains that BrowserII opens too many windows. Now,
  the directories have the @{"Auto-Iconify" link WindowOptionsSub} feature set by default.
  Then, you get new windows only when you open a new volume. Reset this
  option to @{"Keep Window" link WindowOptionsSub} if you prefer the old method which consists
  in opening a new window each time you open a directory.

  Selecting files
  ~
 File selection in BrowserII works like in Workbench. Selecting a file
 by default deselects all other selected files. To perform extended
 selection, you must hold the shift key while selecting files.
 See also @{"drag selection" link DragSelection}.

 For those of you, lucky owners of a @{"3 Buttons Mouse" link ThreeButtonMouse}, there is a
 special support in BrowserII.

  Copying files
  ~
 File Copying works like Workbench too. Select your files, and while
 holding the left mouse button (LMB) pressed, release the shift key, drag
 the files over the target directory, and release the LMB.
 The @{"copy process" link CopyProcess} is run in the background living BrowserII
 available for other operations.

  Current Directory
  ~
 The notion of current directory is one of the most important things you
 must know about BrowserII. It is the base knowledge for a powerfull
 usage.
 The current directory only has meaning when running shell commands.
 Shell commands can be run either with the BrowserII/@{"Execute." link ExecuteItem} menu
 item, or with a @{"user configured menu" link BrowserII.menu} in RUN or SHELL mode, or by
 double-click'ing on an executable file that has no associated icon.
 See the @{"Extract example" link CommonProblems} for an example usage of the current dir
 notion.

@endnode
@node DragSelection "BrowserII.guide/Drag selection"

Drag selection
=

  To quickly select a list of files, press the shift key, select the first
  file by pressing the left mouse button (LMB) over it, and then, without
  releasing the LMB, moTR 6  **,  
*(Hve the mouse over the other files. Reaching the
  bottom or the top of the window will scroll the list.
  Once the files are selected, you may then want to drag them over the
  target directory. Release the shift key (but not the LMB). The mouse
  pointer then change to a crosshair. Drag the mouse, and release the LMB.

  There is another possible method to drag select files if you have a
  @{"3 Buttons Mouse" link ThreeButtonMouse}. The MMB then replaces the shift key. It works the same way.

@endnode
@node ThreeButtonMouse "BrowserII.guide/3 Buttons Mouse Support"

3 Buttons Mouse
=

  For lucky owners of a 3 button mouse, some goodies are available.
  For most of the features, the mid button acts like the shift key, so
  it may not conflict with utilities that does MMB-Shift.
  By the way, some of those commodities are not programmed with care and
  may disable or conflicts with some MMB features of BrowserII.
  You'll have to make choice!

  - Extended Selection hitting MMB or LMB with MMB Pressed.
  - Pressing MMB then LMB enables drag selection.
  - MMB DoubleClick on a dir toggles @{"Auto-Iconify" link WindowOptionsSub} mode:
 - if AutoIconify is on, MMB DoubleClick opens a new window
 - if AutoIconify is off, MMB DoubleClick opens the new dir in the
 same window.
  - Dragging files with MMB toggle the copy/move mode.
 (If 'Always Copy' on, MMB always move, else MMB always copy)
  - Pressing MMB & Hit Close-Gadget closes all directories for the volume
  - The same for Iconify Gadget.

@endnode
@node CopyProcess "BrowserII.guide/Copy Process"

Copy Process
=

  When copying files, BrowserII will check wether destination and one of the
  source concerned volumes are mounted, i.e. one of source and destination
  volumes are simultaneously present in their drives (a diskette with a given
  volume name may not be in a drive).

  When copying several files and/or directories, BrowserII always copy icons
  first, so that further Workbench directory scans will be faster.

  If any source or destination volume is mounted (if you have only one drive
  for instance), BrowserII will use a maximum of 1024 KBytes for copy buffers
  if enough memory is available.  This way, in order to copy some files from
  a diskette to another one, you don't need to go through the RAM Disk.
  Buffers are allocated during copy, and in any case BrowserII will not use
  more than 80% of the available memory at copy startup time for its buffers.
  This size of 1024 KBytes allows to copy a single DD diskette in a single
  step, even in PFS format.

  If both destination and source directories are mounted, the buffer size
  will not exceed 512 KBytes.

@endnode
@node MenusColors3.0 "BrowserII.guide/Note about menus colors with WB 3.0"

Note about menus colors with WB 3.0
#=

  For people who have AmigaOS 3.0 or 3.1 and have 8 or more colors in their
  Workbench Screen, you should read this note.

  In WB 3.x preferences, you can edit the color pens of the screen's
  titlebar and menus.  If you have a 8 or more color workbench, then you
  edit these pens using the MultiColored palette.  If you don't use standard
  pens, (Black text on white background), and you run BrowserII in it's own
  screen, you won't get the same colors for BrowserII's menu.  To get the
  same colors, you have to edit the pens in the system preferences in 4
  color mode, since until now, BrowserII screen is a 4 color screen.

  THERE IS 2 INDEPENDENT PREFERENCES IN THE SYSTEM FOR PENS.

  Modifying the 4 color pens will not modify the layout of your 8+ color
  workbench, but will modify BrowserII's.

@endnode
@node CommonProblems "BrowserII.guide/Common problems"

Common problems
=

  This chapter summerize the most frequently asked questions.
  @{b}Extracting Archives@{ub} in a particular directory.

 BrowserII comes with a shell script named "Extract" which detects
 the format of an archive and then calls the appropriate archiver
 to extract the archive.
 Usage of this script in BrowserII is straight forward.
 @{"Create a Menu Item" link BrowserII.menu} like follows:
 ITEM {Z} Extract RUN Extract []
 It is a good idea to put a shortcut for this menu as it is often used.
 Here, it is Amiga-Z, or just 'Z' if you set your @{"SHORTCUTQUAL" link BrowserII.menu} to "".

 Then, select the archive to extract, activate the target directory window,
 and press Amiga-Z, or 'Z'. That's it!

 See the @{"BrowserII.menu example" link //BrowserII.menu-example/Main} for a more featured Extract menu item.
  @{b}Giving several arguments to a shell command that accept only one@{ub}

 Use the shell command @{"For" link For.doc/Main} given with BrowserII.

 Example:
 ITEM {Z} Extract RUN For [] DO Extract %%
  @{b}The colors of my title bar is not the same as Workbench's@{ub}
  
 See @{"Menu colors under AmigaOS 3.0" link MenusColors3.0}.
@endnode
@node Tree "BrowserII.guide/Directory Tree"

Directory Tree
=

  BrowserII can display a whole directory hierarchy in a single window.
  It has a finder-like layout, with little arrows allowing to fold
  directories. You can also @{"(un)fold all" link TreeSub} directories in a single keystroke.
  Scan is reasonably fast in @{"turbo mode" link WindowOptionsSub}, depending on the filesystem.

  You can open trees with only the directories, or all directories and
  files. Note that you can open a tree with files and filter out files
  from display using the appropriate window filters settings. But opening
  a directory tree without files uses much less memory and system overhead.

  Trees are not limited in the files and directories they can display.
  I could open a tree with files on a cdrom with 20 directories and
  over 360 files without problems. By the way, it used about 4 MBytes
  of RAM !

  Opening Trees
  ~
  Tree with files:
 Ctrl-Double-LMB
 MMB-Double-LMB

  Tree without files:
 Shift-Ctrl-Double-LMB

 Future
 ~
 In a future release, it will be possible the convert a directory
 window in a tree window, using "Window/Open/Make Tree" menu.
 As only the first level directory will be read, subdirectory
 scan will be performed on directory unfold.

  Selecting files in directory trees
  "~
  Imagine the following directory structure:

  include (dir)
 dos (dir)
 dos.h
 dosextens.h
 libraries (dir)
 gadtools.h
 iffparse.h
 intuition.h
  Selecting "iffparse.h" and dropping it in another directory would just
  copy it as usual.
  But now, select both "iffparse.h" and "include", and drop them in the
  target directory. This will create the following structure:

  include (dir)
 libraries (dir)
 iffparse.h

  This makes it possible to copy only a part of a directory structure with
  keeping the structure.

 Selection rule
 ~
 When a directory in a tree is selected, two situations are possible.
 - The directory contains selected subentries
 Then only the selected subentries will be processed on next action.
 - The directory @{b}does not@{ub} contains selected subentries
 The whole directory (with its contents) will be processed if the
 action is naturally recursive, such as copy or delete.
@endnode
@node "ArchiveSupport" "BrowserII.guide/Archive Support"

Archive Support
=

 BrowserII can automagically display the contents of an archive in a window,
  just like if it was a normal directory.  To make this feature functionnal, you
  must get the separate @{b}ObjectArchive@{ub} package.
  BrowserII  then  mounts  the  archive, and opens a directory or directory tree
  window, depending on the qualifiers used, just like for standards directories.

  If you want to override this mechanism for some archive types (in case your
  have another better archive handler ;-), you can use an @{"autocmd" link Autocmds}.
  This also means that if you want an archive type to supported by ObjectArchive
  feature in BrowserII, you must remove the autocommand for this type.

@endnode
@node Zoom "BrowserII.guide/Zoom"

Zoom
=

  Zooming a window consists in showing as much information as possible
  about window contents. Priority is always given to height first.
  If it is not possible to display all files in one column, then BrowserII
  will attempt to display the less possible columns to show all files.
  If it is not possible within the bounds of the screen, window size will
  be rounded to the nearest width and height so there's no screen space lost.

  Zoom can be performed automaticaly in response to some events in BrowserII.
  See the @{"AutoZoom" link AutoZoomSub} submenu in "Window" menu.

  It can also be performed upon user request: by a menu selection or shortcut
  or by the two zoom gadgets.
  These gadgets are invisible. The first one is the Zoom gadget and is the
  top half of the jauges, while the second one is the UnZoom gadget and is
  the bottom half of the jauges.

  Note:
  ~
  If you ask for a zoom while the directory to be zoomed is currently
  scanning, the zoom is defered at the end of scan.
  Constraints
  ~
  Window zoom can be size constrained.

 Maximum size
 ~
 If you don't want your windows to fill most of the screen, you may want
 to limit the maximum window size for a zoom operation.
 Maximum Width and Height can be set separatly.

 Minimum size
 ~
 Some of your windows are too small, or you want more columns.
 Capture a minimum window size.

 Example:
 You want your main window (the one with the device list) to be
 displayed with three columns, but you want it to be autozoom.
 Enlarge it to 3 columns manualy or by using the @{"Window/Zoom/Wider" link ZoomSub}
 menu item, and snapshot the @{b}Min Width@{ub} of the window.
 Then, next zooms will keep at least the captured width, making
 the window wider and less high.

  To capture the sizes of a window, use the @{"Window/Properties/Snapshot" link Snapshots}
  menu item. Wether a window has size contraints or no, the zoom window
  sizing method explained before apply. In fact, the default size constraints
  of a window is the size of the screen.

  Limiting the window size to the visible part of a virtual screen
  @~
  When you use BrowserII in a virtual screen, the zoomed windows may be
  larger than the size of the visible part of the screen. To prevent this,
  size a window to the size of the screen visible part, and @{"snapshot" link Snapshots} the
  window width and height as default for Directories, Trees, and Trees with
  files.

  Overriding Constraints
  ~
  Sometimes, you want to override the default contraints you set to window.
  To do that, Control-Click on the Zoom Gagdet of the window (hidden in the
  top half of the jauges). This will zoom the window with the screen size
  as bounds limits.
  As a more general usage, Ctrl-Zoom overrides contraints.TR 7  *:*:,  U	8 This is true
  for zoom function keys,.
  WARNING:
  ~
  Do not snapshot a default position or all windows will open at the same
  place!

@endnode
@node Snapshots "BrowserII.guide/Snapshots"

Snapshots
	=

  The concept of window snapshot is well known as it exists in the Workbench.
  But Window snapshot in browserII is even more powerfull.

  You can not only snapshot the size and position of the window, but also
  other local properties. Preferences may not be limited to the window, but
  to a whole volume, device, or as default preferences for all windows.

  Using snapshot
  ~
  When asking a window snapshot, a big requester appears, with lots of
  options. You are then prompted to select the information you want to freeze.
  @{b}Important:@{ub}
  You may save @{u}only the options that differs@{uu} from the default settings.
  When you open a window, BrowserII follow these rules to get window settings:

  Opening of a root directory:

 - Obtain default settings.
 - Obtain device settings that overrides previous ones.
 - Obtain volume settings that overrides previous ones.
 - Obtain directory settings that overrides previous ones.

  Opening of a window subdirectory:

 * If the @{b}parent window@{ub} has the @{"local properties" link WindowOptionsSub} option set, the rule
 is the same as for root directories.

 * Else:

 - Obtain settings of the parent directory.
 - Obtain directory settings that overrides previous ones.
  Example:
 You may want to set default values for a particular device and/or volume
 so that each directory open relative to it would get those settings.
 Then, imagine you want to snapshot a particular directory on this volume.
 You should snapshot only the properties that defers from default values
 (checked by default). This way, if you change one of the volume defaults,
 even snapshoted directories will inherit the new defaults.
  Snapshots databases
  ~
  The snapshot files are created in the BrowserII's home directory,
  in the subdirectory "Snapshots". They all have a file comment
  that summerize their contents.
  No data is written into the directory. This won't fill your disks of
  annoying files, and allows to snapshot directories in write protected
  disks and cdroms.

  The default preferences for all windows (dirs, trees, alien and main
  window) are stored in "Snapshot-0".
  All other files are numbered from 1 to .
  There is one file for each device defaults (includes dir, and trees
  defaults), and one file for each volume (includes dirs default, trees
  defaults, and local dir/trees snapshots).

  The file comments then says for example "Snapshots for device DF0:"

  Note that volumes are remembered by name and datestamp. This makes
  impossible to snapshot variable datestamp volumes, since they will
  always be identified as different volumes. This is the case of RAM Disk
  for example.

  To remove a snapshot, you may 'UnSnapshot' using the menu item in the
  Window/Properties submenu. Then, you get again the snapshot requester
  with, by default, the local directory snapshotted settings set.

  If you did snapshot a directory that no more exists, you are not
  actually able to remove it from browserII's snapshot databases.
  This will be possible with the future preference editor.
  The only way to remove old snapshots is to delete a snapshot file!
  It's not so silly, it's sometimes usefull and easy.

@endnode
@node Iconify "BrowserII.guide/Iconify"

Iconify
=

  BrowserII Iconification
  ~
  BrowserII can be iconified, so that it closes all its windows, and its
  screen if it has its own custom screen.
  However, there must not be any visitors window open in BrowserII's custom
  screen, if any. Otherwise, it will complain about.
  But it is possible to iconify BrowserII while some background jobs are
  active. The status windows, if open, will be closed, and will continue
  to process silently.

  To iconify BrowserII, hit the little arrow in the left border of the main
  window, just below the title bar.
  You can also activate the main window, and hit 'F4' key.

 Uniconifying
 ~
 Several methods are possible to uniconify BrowserII.
 - Double click on it's @{"AppIcon" link Running} if any.
 - Hit it's @{"hotkey" link Commodity}.
 - Use Commodities Exchange.
 - Run @{"BD" link ExternalCommandBD}.

  Directory/Tree windows Iconification
  $~
  BrowserII directory and directory tree windows can be iconified too.
  Using window iconification, you keep directory contents in memory, then
  preventing reading them again on next access.

  To iconify a directory, hit the little arrow in the left border of the
  window, just below the close gadget, of hit 'F4' key after activating
  the window.
  You can iconify all directories of the same volume by 'shift iconifying'
  a window.

  Once iconified, directories appear in the Alien window. Let's call @{i}icons@{ui}
  the entries of the alien window. Alien Window can be open using F5 or menu
  "Window/Open/Alien Window".

  Icons are directories like any other directories in standard windows,
  that is to say they support all actions.  You can select icons and release
  them over directories, you can also use icons as destination of a copy,
  or even rename or why not protect an icon.

  Note
  ~
 The Alien window is called Alien because it was intended to contain
 different kinds of entries such as leave-outs and aliases.
 At this moment, it is not yet implemented.

@endnode
@node Network "BrowserII.guide/Network and MultiuserFileSystem support"

Network and MultiuserFileSystem support
'=

  BrowserII supports all multiuser / network packages that provides
  a standard accounts.library. This actually the case for Envoy,
  MultiUserFileSystem, and AS225.

  This support means ability to display file Owner/Group names,
  and protection bits, as well as modifing these attributes.

  For display, select from the menu Window/File Infos, Protection,
  Owner, and Group. Protections bits are composed of owner bits,
  and, if "Group" is on, group protection bits as well as group
  name, and, if "Owner" is on,  'others' protection bits as well
  as Owner name.

  To modify protection bits, use the Set Protect action.
  To change owner, use Set Owner action.

@endnode
@node Menus "BrowserII.guide/Menus"

  @{"BrowserII " link "BrowserIIMenu" } @{"Window	 " link "WindowMenu" } @{"Actions " link "ActionsMenu"}

  @{"Update menus " link "UpdateMenusItem" } @{"Rescan	 " link "RescanItem" } @{"Rename	 " link "RenameItem"}
  @{"Last Error " link "LastErrorItem" } @{"Open	 >>" link "OpenSub"	 } @{"Make Dir " link "MakeDirItem"}
  @{"Execute " link "ExecuteItem" } @{"Zoom	 >>" link "ZoomSub"	 } @{"Duplicate " link "DuplicateItem"}
  @{"Screen >>" link "ScreenSub" } @{"Tree	 >>" link "TreeSub"	 } @{"Set Date " link "SetDateItem"}
  @{"Screen Font  >>" link "Fonts" } @{"Select Match " link "SelectMatchItem" } @{"Set Comment " link "SetCommentItem"}
  @{"Window Font  >>" link "Fonts" } @{"Select All " link "SelectAllItem" } @{"Set Protect " link "SetProtectItem"}
  @{"Run Mode >>" link "RunModeSub" } @{"Filters >>" link "FiltersSub" } @{"Set Owner " link "SetOwnerItem"}
  @{"Copy Mode >>" link "CopyModeSub" } @{"File Infos >>" link "FileInfoSub" } @{"Add Icon " link "AddIconItem"}
  @{"Copy Flags >>" link "CopyFlagsSub" } @{"Sort By >>" link "SortSub"	 } @{"Check Size " link "CheckSizeItem"}
  @{"Device List  >>" link "DeviceListSub" } @{"AutoZoom >>" link "AutoZoomSub" } @{"Information " link "InformationItem"}
  @{"Options >>" link "OptionsSub" } @{"Options >>" link "WindowOptionsSub"} @{"Delete	 " link "DeleteItem"}
  @{"Save Config  >>" link "SaveConfig" } @{"Properties >>" link "PropertiesSub" }
  @{"Quit " link "QuitItem" }

@endnode
@node BrowserIIMenu "BrowserII.guide/BrowserII Menu"

BrowserII Menu
=

  All the options set in this menu can be saved using the "Save Config"
  item. The options set in the "Window" menu are discussed later in this
  chapter.

@endnode
@node UpdateMenusItem "BrowserII.guide/Update Menus"

Update Menus
=

  Reloads the @{b}User Menus@{ub} @{"configuration file" link "BrowserII.menu"}.

@endnode
@node LastErrorItem "BrowserII.guide/Last Error"

Last Error

=

  This will show you the last message which appeared in screen title bar.

@endnode
@node ExecuteItem "BrowserII.guide/Execute."

Execute.

=

  Pops up a requester allowing to enter a shell command.
  The command is initialised with the selected files (if any), else
  it will be the last executed command using this menu item.

  Important:
  
~
  The command is executed in the directory of the active window.
  For example, entering the command "Dir" (silly! ;-), the output
  will be different depending on the active window.

@endnode
@node ScreenSub "BrowserII.guide/Screen Options"

Screen Options
=

  @{b}Public Screen @{ub}  BrowserII opens its windows in the selected public screen
  @{b}Custom Screen @{ub}  BrowserII opens its own screen (which is @{"public" link PublicScreen} too)
  @{b}Workbench Colors @{ub}  Clones the colors of the Workbench screen.
  @{b}Custom Colors @{ub}  Adjust colors with a color requester.
  @{b}Backdrop pattern @{ub}  Install a grey pattern in the screen.
  @{b}Backdrop image @{ub} Not yet implemented!
  @{b}Public Screen@{ub} pops up a requester showing the list of available public
  screens. If you plan to save this preference, you must choose a screen which
  may be available each time you run BrowserII. Else, il will fall back to
  Workbench screen.
  There is a special public screen which is called frontmost screen.
  Used in conjonction with a @{"hotkey" link Commodity}, browser will popup in the current screen.

@endnode
@node PublicScreen "BrowserII.guide/Public Screen"

Public Screen
=

  BrowserII's own screen is made public and is named "BrowserII".  Take care,
  public screen names are case-sensitive.  For example, you can open a console
  in the BrowserII screen with the following syntax:

 "CON:0/11/640/100/Window Title/CLOSE/WAIT/AUTO/SCREEN BrowserII"

  This console has defered open (AUTO), will also have a close gadget (CLOSE),
  and will wait for you to hit close gadget before closing (WAIT).  Note that if
  another public screen with the same name exists, BrowserII will name its
  screen BrowserII0, then BrowserII1,.  (this can happen if you have the
  strange idea to run BrowserII twice)!

@endnode
@node Fonts "BrowserII.guide/Fonts"

Fonts
=

  @{b}Default Font@{ub}  Use the defaut font
  @{b}Custom  Font@{ub}TR 8  ((,  ?ύ"  Selects a special font for screen and or windows

  Proportional fonts are handled for both screen and window text.

@endnode
@node RunModeSub "BrowserII.guide/Run Mode"

Run Mode
=

  This submenu determine the mode to use to run the file you double-clicked.
  If other files were selected at the time of the double-click, their names
  become parameters for the double-clicked file.

  If the file has an icon, and is not filtered out by an auto-command or
  mounted as an archive, it will automatic   ѐ H ,                                
  	                                                                                                             Ґ   ally be run in Workbench mode.

  Also note that BrowserII does a CD into the active window before running a
  command, whether you have double-clicked on a file, or activated it
  through a menu selection.  This is often VERY useful.

  @{b}RunBack  @{ub}  Run in background (input and ouput set to "NIL:")
  @{b}Shell @{ub}  Use SHELLWIN console for program input/ouput
  @{b}Request  @{ub}  Pop up a requester to modify/confirm operation.
  @{b}WBToFront@{ub}  Brings Workbench screen to front when running program.

@endnode
@node CopyModeSub "BrowserII.guide/Copy Mode"

Copy Mode
	=

  @{"Context " link ContextItem}
  @{"Always Copy " link AlwaysCopyItem}
  @{"Always Move " link AlwaysMoveItem}
  @{"Link " link LinkItem}
  @{"As. " link AsItem}
  @{"Request " link CopyRequestItem}

  @{"Update " link CopyUpdateItem}
  @{"Don't overwrite files " link DontOverwriteFilesItem} 
  @{"Ask before Overwrite  " link AskBeforeOverwriteItem}
  @{"Backup replaced files " link BackupFilesItem}

  @{"Copy Empty Dirs " link CopyEmptyDirsItem}
  @{"Copy Hierarchy " link CopyHierarchyItem}

@endnode
@node ContextItem "BrowserII.guide/Context"

"Context" Copy Mode
=

  If destination and source directory are located one the same volume,
  the file (or directory) will be moved. Else, it will be copied.

@endnode
@node AlwaysCopyItem "BrowserII.guide/Always Copy"

"Always Copy" Copy Mode
=

  BrowserII will systematically make a copy of the file.

@endnode
@node AlwaysMoveItem "BrowserII.guide/Always Move"

"Always Move" Copy Mode
=

  BrowserII will always move the file. If destination and source directory are 
  on different volumes, the file will be copied to the destination directory and
  the source file deleted if the whole copy is successfull.

@endnode
@node LinkItem "BrowserII.guide/Link"

"Link" Copy Mode
=

  Rather than copying/moving a file or directory, this will create a link.
  If destination and source directory are on different volumes, BrowserII
  will create a soft link, else, a hard link.

  Note 1:
  ~
  Links are an advanced features of an operating system and should be used
  with care.

  Note 2:
  ~
  Soft links are not officialy supported by the actual AmigaOS (even 3.1).
  So, be prepared to encounter problems using some.

@endnode
@node AsItem "BrowserII.guide/[.] As."

"[.] As." Copy Mode
=

  "As." is an attribute for all previous choices in this submenu.
  If set, you will be prompted to enter a new file name for every files.

@endnode
@node CopyRequestItem "BrowserII.guide/Request Copy Mode"

"Request" Copy Mode
=

  You'll asked if you want to move, move as, copy, copy as, or create a
  link before the drop operation takes place.

  If you don't want to be requested each time you want to copy / move some
  files, you may use the Context or Always Copy or Always Move option.
  Then, if you want to perform a different operation as the default, your
  can press the Control key before dropping the files. This will force the
  request mode, and then allow to chose Copy As or Move As for example.

@endnode
@node CopyUpdateItem "BrowserII.guide/Update"

"Update" Copy Mode
=

  BrowserII  will  copy the file only if the source file is more recent than
  the destination file, or if the destination file does not exist.

@endnode
@node DontOverwriteFilesItem "BrowserII.guide/Don't overwrite files"

"Don't overwrite files" Copy Mode
!=

  BrowserII  will  not  overwrite  an  existing  file. If  there  exists a
  destination file with the name you gave for the destination, the copy will
  not be performed.

@endnode
@node AskBeforeOverwriteItem "BrowserII.guide/Ask before Overwrite"

"Ask before Overwrite" Copy Mode
 =

  BrowserII  asks  for  confirmation  before  overwriting. This  option is
  naturally mutually exclusive with the former one.

@endnode
@node BackupFilesItem "BrowserII.guide/Backup Replaced Files"

"Backup Replaced Files" Copy Mode
!=

  Each time a file to be copied/moved already exists, the existing file will
  be renamed to <oldname>~. If <oldname>~ already exists, it is deleted first.

@endnode
@node CopyEmptyDirsItem "BrowserII.guide/Copy Empty Dirs"

"Copy Empty Dirs" Copy Mode
=

  This  option will enable to re-create empty directories in the destination
  directory. It  is  particularly  useful  in  its disabled mode, so empty
  directories are not copied.

@endnode
@node CopyHierarchyItem "BrowserII.guide/Copy Hierarchy"

"Copy Hierarchy" Copy Mode
=

  This option is set by default. If not, the contents of source directories and
  subdirectories will be copied in the destination directory all together.

@endnode
@node CopyFlagsSub "BrowserII.guide/Copy Flags"

Copy Flags

=

  @{b}Clone  @{ub} Identical sum of the 3 following options.
  @{b}Date @{ub} Copy the date of the source file.
  @{b}Protect@{ub} Copy the protection bits of the source file (reset 'adw').
  @{b}Comment@{ub} Copy the comment of the source file.

@endnode
@node DeviceListSub "BrowserII.guide/Device List"

Device List
=

  The options below affect the contents of the main window.
  The term device always means here DOS device, and not an exec device.

  @{b}Devices (Volume)  @{ub}  Show devices with their mounted volume.
  @{b}Devices @{ub}  Show all devices.
  @{b}Volumes (Device)  @{ub}  Show mounted volumes with their associated device.
  @{b}Mounted Volumes @{ub}  Show mounted volumes (mutually exclusive with previous option).
  @{b}Unmounted Volumes @{ub}  Show volumes that are not currently inserted in a device.
  @{b} @{ub}  They are displayed in boldface.
  @{b}Standard Assigns  @{ub}  Show Assigns.
  @{b}Defered Assigns @{ub}  Assigns created with the DEFER flag of the C:Assign command.
  @{b}Path Assigns @{ub}  Assigns created with the PATH flag of the C:Assign command.

  @{b}Volume Size @{ub}  Show size of mounted volumes.
  @{b}Volume Free Space @{ub}  Show available free space in mounted volumes.
  @{b}Volume Used Space @{ub}  Show space used on mounted volumes.
  @{b}Volume % Used @{ub}  Show space used on mounted volumes in %.

  @{b}Alternate	 @{ub}  Switch between the @{"2 possible configurations" link AlternateDeviceList}.
  @{b}Zip Window @{ub}  Zip the main window on Alternate.
  @{b} @{ub}  The 'Zipped' size can be @{"snapshotted" link Snapshots} too.

@endnode
@node AlternateDeviceList "BrowserII.guide/Alternate Device List"

Alternate Device List
=

  You can store two prefered Device List configurations in you want.
  To switch between the two configurations, use the menu short cut.
  To edit the alternate configuration, select "Alternate" menu, and
  then set the preferences as usual. They will take effect immediately.
  The next time you "Alternate", you will turn back to the other
  device list configuration, and so on.

  The default configuration is the one which is active when you save
  your configuration. The other one is saved as "Alternate".

@endnode
@node OptionsSub "BrowserII.guide/General Options"

General Options
=

  @{b}Keep selected @{ub}  Keep the selected entries after an action
  @{b}Toggle selections @{ub}  Clicking a selected entry deselects it.
  @{b}ASynchronous actions @{ub}  Let this option ON. This is for debug purpose.
  @{b}Open process status window @{ub}  Open an information window for copy, delete.
  @{b}AutoCmds override icon's default tool@{ub}  Give priority to @{"AutoCmds" link AutoCmds} rather than default tool.
  @{b}Auto-select associated .info files @{ub}  NOT YET IMPLEMENTED
  @{b}Use window font in requesters @{ub}  By default, requesters use screen font.
  @{b}Quiet CheckSize @{ub}  Don't request at the end of Check Size action.
  @{b}Display directory disk usage	 @{ub}  See @{"Jauges" link Jauges}
  @{b}Display proportion of visible data @{ub}  See @{"Jauges" link Jauges}

@endnode
@node SaveConfig "BrowserII.guide/Save Config"

Save Config
=

  Saves all options relative to first menu 'BrowserII', as well as the
  contents of the @{"select requester" link SelectRequester}.

  Note to v2.x users:
  ~
  This no more saves preferences about the Current and Alien window.
  Use @{"snapshot" link Snapshots} for that.

@endnode
@node QuitItem "BrowserII.guide/Leaving BrowserII"

Leaving BrowserII
=

  We did not plan for implementing this option, but a few crazy guys screamed
  for it, so here it is.  Anyway, you won't be surprised to read that you
  won't be able to quit BrowserII as long as one (or several) of the
  Asynchronous actions are still running, or if another application has a
  window open in BrowserII's custom screen.  By the way, @{"iconifying" link Iconify}
  BrowserII is possible while some actions are in progress.

@endnode
@node WindowMenu "BrowserII.guide/Window Menu"

Window Menu
=

  All items and relative options in this menu are relative to the active
  (current) window. Some items are specialised to some kind of windows,
  and may be disabled depending on the active window.

@endnode
@node RescanItem "BrowserII.guide/Rescan"

Rescan
=

  Rescans the content of the directory which corresponds to the active window.
  Since version 2.0, BrowserII scans directories asynchronously.  You can
  iconify a directory while scanning.  If you close a window while directory
  is being scanned, scan is aborted.  Except for Alien Window that has no
  rescan method, this is valid for all other windows, including trees:  the
  whole directory tree is rescanned.

@endnode
@node ZoomSub "BrowserII.guide/Zoom SubMenu"

ZTR 9  **,  
Bªoom SubMenu
=

  @{b}UnZoom @{ub}  Sizes the window to it's smallest size.
  @{b}Zoom All @{ub}  @{"Zoom" link Zoom} the window to show all files.
  @{b}Zoom Dirs @{ub}  @{"Zoom" link Zoom} the window to show dirs only.

  @{b}Taller @{ub}  Makes the window Taller.
  @{b}Wider @{ub}  Display the window with one more column.
  @{b}Thiner @{ub}  Remove a column but keep window height.

  @{b}Show MaxSize@{ub}  Sizes window to it's @{"maximum size" link Zoom}.
  @{b}Show MinSize@{ub}  Sizes window to it's @{"minimum size" link Zoom}.

@endnode
@node TreeSub "BrowserII.guide/Tree SubMenu"

Tree SubMenu
=

  @{b}Fold All  @{ub}  Folds all directories in a @{"tree window" link Tree}.
  @{b}Unfold All@{ub}  Unfolds all directories in a tree window.

@endnode
@node OpenSub "BrowserII.guide/Open SubMenu"

Open SubMenu
=

  @{b}Open Parent@{ub}  Opens the parent directory of the active window (if any).
  @{b}Open Dir.@{ub}  Open a directory by entering it's pathname, relative to
 current window. For example "//" to go back 2 levels.
  @{b}Open Alien @{ub}  Opens Alien Window where are listed @{"iconified" link Iconify} windows.
  @{b}Open Status@{ub}  Opens the status window of all background processes.
  @{b}Make Tree  @{ub}  NOT YET IMPLEMENTED (Will convert a dir in tree window).

@endnode
@node SelectMatchItem "BrowserII.guide/Select Match"

Select Match
=

  Opens the @{"selection requester" link SelectRequester}, and selects, in the current window,
  the entries matching the criteria you have given.

@endnode
@node SelectAllItem "BrowserII.guide/Select All"

Select All

=

  Selects all entries in the active window!

@endnode
@node FiltersSub "BrowserII.guide/Filters"

Filters
=

  Another important feature of BrowserII.  Only the files which match the
  criteria you set will be displayed, but all will be counted (look at the
  information displayed at the bottom of the window).
  @{b}Set.  @{ub}  Calls the filters requester.
  @{b}No .info@{ub}  Hide .info files. This filter comes on top of the other filters.
  @{b}Clear @{ub}  Removes all filters, all files and dirs will be visible.
  @{b}Invert  @{ub}  Reverses the action of all filters, so all visible files
 will be hidden and vice-versa.  Useful for checking
 wether a file which you expect to be there has not been
 hidden through the action of one of the filters.  In a
 directory tree, directories cannot be hidden.

@endnode
@node FileInfoSub "BrowserII.guide/File Infos"

File Infos

=

  @{b}Size in Bytes @{ub}  Show file size in bytes.
  @{b}Size in blocks@{ub}  Show file size in blocks.
  @{b}Protection @{ub}  Show protection bits. See @{"MultiUser" Link Network} support.
 BrowserII defines two more customs bits named C and L.
 If bit C is set, file/dir has a comment.
 If bit L is set, file/dir is a link.
  @{b}Owner	 @{ub}  Show file owner. Requires @{"accounts.library" Link Network}.
  @{b}Group	 @{ub}  Show file owner group. Requires @{"accounts.library" Link Network}.
  @{b}Date
 @{ub}  Show file date in AmigaDOS format.
  @{b}Time
 @{ub}  Show file time.
  @{b}File Type @{ub}  Show @{"file type" link "whatis.library"}. Requires whatis.library.
  @{b}Comment @{ub}  Show file comment.
  @{b}Link
 @{ub}  Show link if file is a link. (Not if @{"Turbo Scan" link WindowOptionsSub} is on).

  @{b}Drawer Arrow  @{ub}  Put an arrow to the left of directories in tree windows.
  @{b}Drawer Jauge  @{ub}  Display a directory size jauge for each directory in trees.

@endnode
@node SortSub "BrowserII.guide/Sort"

Sort
=

  @{b}Name @{ub}  Sort entries by name.
  @{b}Date @{ub}  Sort entries by date/time.
  @{b}Size @{ub}  Sort entries by size.

  @{b}Entry Type@{ub}  Directories are displayed first.
  @{b}File Type @{ub}  Sort by @{"file type" link whatis.library} and then by name/date/size.

@endnode
@node AutoZoomSub "BrowserII.guide/Auto Zoom"

Auto Zoom
	=

  This sub menu concerns the automatic @{zoom link Zoom} feature.
  When some events occurs, it is possible to automatically zoom
  a window. Just like everything in the "Windows" menu, these options
  are relative to the current window.

  @{b}Zoom All @{ub}  Maximum zoom at the end of the @{b}first@{ub} scan.
  @{b}Zoom Dirs @{ub}  Like previous but show only directories.

  @{b}Rescan @{ub}  Zoom window after each directory rescan.
  @{b}Update @{ub}  Zoom window after copying/deleting files.
  @{b}New File Infos@{ub}  Zoom window when changing file infos.
  @{b}Tree Folding  @{ub}  Zoom window when (un)folding dirs in a tree.

  @{b}Only 1 Column @{ub}  Constraint the zoom to a single column.
  @{b}Only if Zoomed@{ub}  Re-Zoom the window only if it was already before.

@endnode
@node WindowOptionsSub "BrowserII.guide/Window Options"

Window Options
=

@{b}- Find type by name@{ub}

  The @{"file type" link whatis.library} is identified only by pattern matching on the filename.
  Fast but not very safe since names are not allways meaningfull for file types.
  Requires whatis.library.

@{b}- Find type by scan@{ub}

  The @{"file type" link whatis.library} is not only identified by pattern matching but
  also by reading the first few bytes of the file.
  This is much more powerfull than the previous option but slows down
  directory scan.
  Requires whatis.library.

@{b}- Turbo Scan@{ub}

  Scans the directory using dos.library/ExAll() instead of Examine/ExNext.
  This is faster, and minimize disk trashing for concurent accesses.
  I presume it should be even more faster on remote network directories.
  The dark side:

  - You don't get size in blocks for files. (ExAll() limitation)
 (So you get a computed size using size in bytes)
  - You don't get file types. (For speed condition).
 Anyway, types are examined at double-click time.
  - Links are not recognized/read actually. This an AmigaDOS and/or FFS bug.
 It may be fixed in a future release of the OS.!
@{b}- Keep Window@{ub}

  A new window is open when you double-click on a directory.
  This  mode  is  forced if you SHIFT-double-click or MMB-double-click while
  the default 'keep mode' is 'Auto Iconify' or 'Auto Close'.

@{b}- Auto Iconify@{ub}

  When  you  Double-Click  on  a  subdirectory, the current directory is
  iconified and the new one is open in the same window.
  This  mode  is  forced if you SHIFT-double-click or MMB-double-click while
  the default 'keep mode' is 'Keep Window'.

@{b}- Auto Close@{ub}

  When  you  Double-Click  on  a  subdirectory, the current directory is
  flushed from memory and the new one is open in the same window.

@{b}- Auto Disk Load@{ub}

  @{b}This is not yet implemented.@{ub}
  The window will be associated to a dos device such as DF0:, and will load
  the directory of the inserted disk in this device automatically.

@{b}- Local Properties@{ub}

  When set, this option prevents sub directories to inherit this directory
  properties. This is to be used in conjunction with @{"snapshots" link Snapshots}.

@endnode
@node PropertiesSub "BrowserII.guide/Properties"

Window Properties
=

  The properties of a window are the set of local window attributes:
  Filters, File Infos, Sort, AutoZoom and Options.

  @{b}Copy	 @{ub}  Stores the properties of current window in an
 internal buffer for a later Paste operation.
  @{b}Paste @{ub}  Pastes the last copied properties to the current window.
  @{b}Affect Volume@{ub}  Copies the properties of the current window to
 all the windows belonging to the same volume.
  @{b}Affect All @{ub}  Copies the properties of the current window to
 all the windows.
  @{b}Restore Prefs@{ub}  Restores the @{"preferences for this window" link Snapshots}.
  @{b}Snapshot @{ub}  Saves this window settings as @{"preferences." link Snapshots}.
  @{b}UnSnapshot @{ub}  UnSaves window preferences.

@endnode
@node ActionsMenu "BrowserII.guide/Actions"

Actions
=

  This menu gives access to all basic file operations, except drag and drop
  ones, ie copy/move/link. They are all executed in the background. This
  means that even when they pop up a requester, BrowserII is not busy. You
  can perform some other things if you need before answering the requester.

@endnode
@node RenameItem "BrowserII.guide/Rename"

Rename
=

  Renames the selected entries. If  several entries are selected, you can
  rename  them  with  jokers " la ARP".  If you are not familiar with this,
  exercise on some files of no value before using this action for good.
  For example, you can rename "mod.#?" to "#?.mod", or more generally,
  "x#?y" to "z#?t".
  There is a "Capitalize" option, also available for "Copy As" and "Move As"
  operations which converts file names to lower case, except for the first
  letter to upper case. Usefull when copying files from MSDOS disks.
 
@endnode
@node MakeDirItem "BrowserII.guide/Make Dir"

Make Dir
=

  Creates subdirectories in the active window.  You can create several of
  them by separating names with spaces.

  Example: Work Games Work/Src

  Warning: Games Work/Src Work  would not be valid because you attempt to
  create a subdirectory of Work before having created Work itself.

@endnode
@node DuplicateItem "BrowserII.guide/Duplicate"

Duplicate
	=

  Makes copy of file(s), you will be prompted for new names.
  The requester is the same as for @{"rename" link RenameItem}, and same rules apply.
  
@endnode
@node SetDateItem "BrowserII.guide/Set Date"

Set Date
=

  Changes the date stamp of the selected entry (entries) to the actual date.
  Since v2.20, date can be modified.

@endnode
@node SetCommentItem "BrowserII.guide/Set Comment"

Set Comment
=

  Modify/Create a file comment for the selected entries. If file already has
  a comment, it is displayed as default in the requester.
  File comments are limited to 80 characters.

@endnode
@node SetProtectItem "BrowserII.guide/Set Protect"

Set Protect
=

  Change the protection bits of the selected entries.

  You cannot set the pseudo C bit, as it is not real a protection bit,
  it just tells you that the selected entry has a comment. But you can reset
  it, this will delete the comment.
  Use with care, it is easy to get a lot of comments gone forever in no time.

  The pseudo L bit is not available for the same reason.

  You can also set the Other/Group protection bits but has no meaning
  outside a @{"Mutliuser / Network" link Network} environnement.
  FFS just ignores them.

@endnode
@node SetOwnerItem "BrowserII.guide/Set Owner"

Set Owner
	=

  Changes the owner of the file. This has sense only within a @{"Multiuser" link Network}
  or @{"network" link Network} environnement. You must have the rights to do it.
  See your Network / Multiuser documentation.
  Requires accounts.library.

@endnode
@node AddIconItem "BrowserII.guide/Add Icon"

AdTR :  *|*|,  B'd Icon
=

  Add an icon to selected file(s) and directories. The Icon is a default
  icon relative to the file type, and configured in whatis.library database.
  BrowserII will first search default icons in an assign ICONS:, and in
  standard ENV:Sys directory.
  The ICONS: is a workaround the prevent copying KBytes of default icons
  in ENV:Sys which is by default located in RAM:.
  The same rule apply to given separate shell command AddIcon.

  Of course, requires whatis.library.

@endnode
@node CheckSizeItem "BrowserII.guide/Check Size"

Check Size

=

  Scans selected files and dirs to compute total size in bytes and blocks of
  all of them.  If you choose to reselect entries, context of selection will
  be restored (including 'Enter subdirs') so that next action will be done
  on same files and dirs.  Directories will get their size set. This way,
  it makes it possible, using rightmost main window @{"jauge" link Jauges}, to determine
  if a list of files and dirs will fit on destination volume.

  In the menu BrowserII/Options, there is an option "Quiet CheckSize" which
  disable the requester at the end of the scan. Only directories then get
  their sizes updated.

@endnode
@node InformationItem "BrowserII.guide/Information"

Information
=

  Brings up Workbench's info requester. (AmigaDOS 3.0 and higher).
  Note that currently, workbench must be loaded or nothing will happen.

@endnode
@node DeleteItem "BrowserII.guide/Delete"

Delete
=

  Deletes the selected entries.  You will (fortunately) be asked to confirm.
  If  at  least  one  directory is selected, "Delete" will delete only empty
  dirs,  while  "Delete  All"  will delete non-empty selected directories as
  well.
  If the delete process encounter deletion protected files, you will be
  prompted if you want to override the protection.

@endnode
@node Keyboard "BrowserII.guide/Mouse and Keyboard"

Mouse and Keyboard
=

  Function keys
  ~

  F1 :  UnZoom current window.
  F2 :  Zoom current window to see all files and dirs.
  F3 :  Zoom current window to see all directories only.
  F4 :  Iconify current window, or BrowserII if main window is active.
  F5 :  Opens Alien Window.
  F6 :  Opens status window of processes currently running.
  F7 :  Folds all directories in a tree window
  F8 :  Unfolds all directories of a tree
  S-F1: Zoom taller
  S-F2: Zoom wider
  S-F3: Zoom thiner
  ESC:  Pauses all processes and open their status window.
  DEL:  Deletes selected files and directories
  HELP: Displays the about requester.
  General mouse with qualifiers usage
  #~
  - Pressing CTRL while selecting files forces Toggle-Select mode.
 This is important if you do not use the 'Toggle Selections' option.
 This allow to de-select an entry without de-selecting all.
 I use this because the toggle-selections mode makes me turn mad! ;-)

  - Pressing CTRL for a zoom operations (gadgets & function keys) overrides
 zoom contraints.

  - Pressing SHIFT before dropping files toggles copy/move mode.

  - Pressing CTRL before dropping files forces the "Request" copy mode.

  - Shift-DoubleClick on multiple assigns opens a list of assign components.

  - If you hold the shift key down while hitting a window close gadget,
 all windows belonging to directories of the same volume will be closed
 too, except iconified windows.  If you want to get rid of iconified
 windows too, press CTRL key while closing window.

  - Shift-DoubleClick on directories toggles @{"auto-iconify" link WindowOptionsSub} mode.

  - Ctrl-DoubleClick on directories/volumes open a @{"tree with files" link Tree}.

  - Shift-Ctrl-DoubleClick on directories/volumes open a @{"tree without files" link Tree}.

  - See also @{"3 Button Mouse Support" link ThreeButtonMouse}.

@endnode
@node Jauges "BrowserII.guide/Jauges"

Jauges
=

  All windows but Alien have two jauges on their left border.  The leftmost
  one allways displays the disk percentage of occupied space.  And the
  second one, to the right, displays the directory disk usage or the
  percentage of visible data depending on the option you choose (See menu
  BrowserII/Options).

  1. Directory disk usage
  If this option is selected, the rightmost jauge displays the proportion of
  used disk space used by this directory.  For example, is you have a volume
  with no directories (all files are in the root directory), this jauge will
  say that the directory contains 100% of data present on this disk.

  2. Percentage of visible data.
  If this option is selected, the rightmost jauge displays the proportion of
  visible data (in blocks) in this window (If filters hide some entries of
  this dir, not all entries are visible !).  This is usefull for example
  when you hide .info files, a quick look at this jauge help you remembering
  that some files are not visible and you should not forget them.
Jauges of the main window
=

  The leftmost jauge of main window is a copy of the same jauge of active
  window.  If the active window is the main or alien, both main window
  jauges are empty.

  The other jauge will help you to determine if selected files would fit on
  active volume (volume of active window) if a copy/duplicate operation
  would be performed.  Imagine you want to copy some files on a floppy disk,
  and you don't know if there is enough free space on this disk for your
  selected files.  You can examine informations in bottom border of windows
  of course but there is an easier way.  Activate the destination window
  (without deselecting your files), and the second jauge of main window will
  tell you everything:  The leftmost jauge shows the actual disk usage, and
  the other one what it will become after the copy.  Then there is two
  possibilities.  Your files fit on the disk:  no problem.  Or there's not
  enough free space:  then, the second jauge shows of how much selected
  files exceeds disk space by displaying a dash (-).  The jauge height
  allways means the disk size.

  Note: Block  size  between source and destination volumes are assumed to
 be the same.

@endnode
@node SelectRequester "BrowserII.guide/Select Requester"

Select and Filters Requesters
=

  Filters
  ~

  BrowserII tests all files against the criteria set in this requesters, and
  shows those for which the test is positive.
 @{b}Files@{ub}
 Can be set to Yes, No or Match.
 If Match is selected, files will checked against
 the following criteria.

 @{b}Dirs@{ub}
 The same for directories.

 @{b}Pattern@{ub}
 This must be a valid AmigaDOS pattern.
 examples:
 #?.doc shows only the x.doc files
 ~(#?.(o|dbg)) hides the x.o  and x.dbg files

 @{b}Since@{ub}
 Shows files with more recent date than the date entered
 (AmigaDOS Date format)

 @{b}Before@{ub}
 The same in the other direction.

 @{b}Min Size@{ub}
 If the file is smaller, it is hidden

 @{b}Max Size@{ub}
 If the file is bigger, it is hidden

 @{b}Protection bits@{ub}
 Shows only the files with the specified bits.

 Example:


 L C H S P A R W E D

 - hides files which have the script bit set

 +
 shows only files with the archive bit set
 If  you  have  installed  the  whatis.library, you'll be able to match
 files  by  type. If  one  or  more  positive file types are selected
 (without  the  exclude option), entries must match one of them.  If no
 positive  file  types  are  selected, all files types are valid except
 excluded  file  types. For each file type, you can select associated
 subtypes.
  Select Match
  ~
 This requester is the same as precedent one, but with one gadget more,
  "Enter  subdirs".  This enables you to virtually select files in selected
  directories.
 As  we  say  in  french,  a good example is better than a long speech.
  Suppose you want to clear archive bit of all files you have in a disk.

 1.  Open volume's window.
 2.  Call Select Match.
 3.  Put Files to ? and Dirs to N.
 4.  Clear all protection bits and set A to +.
 5.  Switch on "Enter subdirs".
 6.  Validate the requester.

  Result: All files which have their archive bit set are selected, but any
  directories are selected since you set Dirs to N. Now:

 7.  Hold <Shift> key while selecting all dirs of this window.
 8.  Call Set Protect.
 9.  Switch protection bits to:
 L C H S P A R W E D
 _ _ _ _ _ - _ _ _ _
 10. Validate.

  Et voil!

 Each time you click left mouse button over a BrowserII window, if you
  DON'T hold <Shift> at the same time, the file under the mouse pointer, if
  any, becomes selected, all others are deselected, and Enter subdirs bit is
  cleared.  That is to say after each operation with enter subdirs, this
  option is reset (except if you allways hold shift key), and must be set
  again if you want to do another action with this option.
 Within actions with enter subdirs, if a directory pass through the
  filters, the action will take place also on the directory itself once it
  has been examined.  But even if the directory doesn't pass through the
  filters, it will be entered, and files within this dir may be affected by
  the action.

 This is a bit different for Copy action.  If a directory doesn't pass
  through the filters, it won't be entered, and files within this dir will
  never be copied.  But read carefully:  Empty directories may be considered
  useless.  So you can decide not to copy them by switching off this option.
  But Copy process is even more powerfull.  If for example, you decide not
  to copy empty dirs, if you copy a directory with enter subdirs and any
  entries of this dir pass through the filters, the directory will be
  considered as empty and won't be created in destination path.  This makes
  it possible to make selective backups, without useless directories in
  destination volume.

@endnode
@node FileExistsRequester "BrowserII.guide/File Exists Requester"

File Exists Requester
=

  When attempting to copy (or move) a file over an already existing one,
  BrowserII will pop up a sophisticated requester.  A lot of choices are
  then available, from the simple 'Cancel' to more complicated options
  combinations.

  The requester is composed of several parts:  The buttons, the checkmarks,
  the string gadgets, and the requester text.  The string gadgets are present
  only once "New Name" button has been pressed.

  Buttons
  ~
 @{b}Retry @{ub}  Retry operation (You may have changed checkmark states).
 @{b}Open Dir @{ub}  Opens the directory where the problem happened.
 @{b}Version  @{ub}  Reads both files versions (using C:Version command).
 @{b}Update @{ub}  Replace file only if newer than existing one.
 @{b}Overwrite@{ub}  Overwrite the file.
 @{b}NewName  @{ub}  Enter new name for the file to create.
 @{b}Skip @{ub}  IgnoreTR ;  &&,  D[ the file and skip to next one.
 @{b}Cancel @{ub}  Cancels the whole operation.
  Checkmarks:
  ~

 Backup replaced files
 ~
 If "Backup replaced files" is checked, each existing file will be
 renamed to <oldname>~. If <oldname>~ already exists, it is deleted first.

 Repeat action to all existing files
 #~
 This option, when on, affects the following buttons:
 Update, Overwrite, NewName, Skip.

 BEWARE: this option is on by default, then selecting "Skip" will skip
 all existing files. You must remember to uncheck this option before
 hitting "Skip" if you want to perform a 'by file' skip operation.

 Note: for "NewName" to work with the 'all' option, you must also
 perform a pattern rename. (Ex: "#?" -> "#?.new")

@endnode
@node Commodity "BrowserII.guide/Commodity"

Commodity
	=

  BrowserII is a commodity.
  It supports the standard tooltypes:

  CX_POPUP (default is YES) Set to NO or FALSE to start browser
& iconified state.
& Can be set in the (eventual) project
& icon in the SYS:WBStartup drawer.
  CX_POPKEY (default is control esc)
  CX_PRIORITY (default is 0)
  CX_UNIQUE (default is FALSE) Set to YES or TRUE if you do not want
& to run BrowserII several times.
& If set to true, running BrowserII
& while it is already running will
& bring its screen to front.

  There is a new mode for BrowserII's screen which is the frontmost screen,
  if public.  Used with hotkey, you can now pop up browser in the current
  screen when it is @{"iconified" link Iconify}, if you like to!
  Hitting hotkey while BrowserII is running but not iconified will bring
  its screen to front.

@endnode
@node WorkbenchSupport "BrowserII.guide/Workbench Support"

Workbench Support
=

  If Workbench is loaded when you start BrowserII, an @{"AppIcon" link Running} is installed.
  This icon can be used to uniconify BrowserII.
  You can also drop icons over it, and the corresponding directory will be
  open in BrowserII.

  When BrowserII is used in Workbench screen, directory windows, as well as
  Alien and Devices windows are AppWindows.  If you release an icon over a
  BrowserII window, the corresponding directory will be open in that window,
  and the preceding directory will be iconified.

@endnode
@node ExternalCommandBD "BrowserII.guide/External command BD"

External command BD
=

  An external command named BD is provided with BrowserII.  This is an
  interface between shells and BrowserII.  Running BD with no arguments will
  run BrowserII if it is not yet running, and make BrowserII open and scan
  your current shell directory.  You can also specify one or more
  directories as argument to BD.

  Note:  BrowserII must be in your shell Path if it is not yet running.

  BD can also be run from workbench.  If you double-click on the Tool BD,
  BrowserII will open the directory containing BD.  But you can also have
  project icons with BD as default Tool.  In this case, if your project has
  no Tool-Types, the current dir will be open, otherwise, you can edit your
  project Tool-Types, and specify as many directories as you want.  You
  should also specify in the BD Tool Tool-Types the full path to BrowserII,
  that is to say in which directory you have BrowserII.

  In example given, BrowserII should be in SYS:Utilites directory.

  Template:

  Dirs/M,TREE/S,TREEWITHFILES/S,RESCAN/S,ZOOMDIRS/S,ZOOMALL/S,QUIET/S,SCANDEVS/S,SYNC/S

  @{b}Dirs@{ub}
 Several dirs can be asked to be (re)scanned

  @{b}TREE@{ub}
 Tells to open Trees rather than dirs.
 
  @{b}TREEWITHFILES@{ub}
 Tells to open Trees with files rather than dirs.
 
  @{b}RESCAN@{ub}
 Always scans dir. Even if al    = . W  V  U  T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !               ready open.

  @{"ZOOMALL" link ZOOM}
 Zoom window, even with AutoZoom is not active.

  @{"ZOOMDIRS" link ZOOM}
 Same as ZOOMALL, but for dirs only.

  @{b}QUIET@{ub}
 Do not activate window, nor bring screen to front.

  @{b}SCANDEVS@{ub}
 Rescan main window (the one with devices/volumes/assigns)

  @{b}SYNC@{ub}
 Operate synchronously to prevent disk trashing if more than
 one dir asked on the same device unit.

@endnode 
@node BrowserII.menu "BrowserII.guide/User Configured Menus"

User configured menus
=

  BrowserII.menu file format
  ~
 You  will  best  understand what follows if you have in front of you a
 printout of the @{"example config file" link //BrowserII.menu-example/Main} supplied.

 A  configuration  file  looks  like  a structured program.  You should
 indent your lines to make the file as readable as possible.

 The configuration file is named BrowserII.menu and must be in the same
 place as BrowserII.

 The  configuration  file defines the menus you want, and what commands
 they will run.  Comments begin with a #, and continue until the end of
 the line.  Upper and lowercase do not make a difference.
 Keywords:
 	~
 CMDWIN  console_name

 This  will  override  the  default console used for Command output
 which is "CON:0/0011/0640/0100/Command window/AUTO/CLOSE/WAIT".
 This should be placed anywhere in the file but better be at top of
 it.  This console will in 2.0 have a close gadget, a defered open,
 and wait user to hit close gadget before closing window.
 Under 2.0, if you use Command in Simple mode, you MUST specify the
 /WAIT  option  for your console, or it will close before you could
 read it.

 SHELLWIN  console_name

 This  will  override  the  default console used for SHELL commands
 which  is  "CON:0/0011/0640/0100/Shell/Auto/Close/Wait". This
 should be placed anywhere in the file but better be at top of it.
 SHORTCUTQUAL <qualifier string>

 This  can  be  used  to  add keys to access menus short-cuts.  For
 example,  you can use Left-Amiga, ALT, SHIFT or Ctrl.
 In fact usefull values are "lcommand" or "" (nothing).
 The first one allow the left amiga key to work as well as standard
 right amiga key, while "" allow to short cut menus with the single
 letter key.
 Any way, all commodities keywords are working, like:

 lshift
 rshift
 lalt
 ralt
 control
 .
 COLOR n

 This  will  set  the  foreground pen color for new items.  You can
 change this as often as you want.  The arguments is the pen number
 to  use. The  default  is  window  detail pen.
 This feature is active only under AmigaOS 2.x, as NewLookMenus of
 AmigaOS 3.x resets all the pens to system default values.

 MENU menu_name

 Creates  a  new  menu. Each  menu must have at least one item or
 submenu.

 SUBMENU submenu_name

 Creates  a  new submenu.  Each submenu must have at least one item
 and can't have submenus.
 Each SUBMENU must end with an ENDSUBMENU

 ENDSUBMENU

 See SUBMENU.

 ITEM [{short-cut}] <item name> [KEY <hot key>] [KEYTEXT <text>] [WBTF] [REQUEST] <command def>

 Defines  a  new  menu  item. Each  item  definition  must  have an
 item_name  and  an  associated  command.  Each item is linked to the
 current menu or submenu.  An ENDSUBMENU statement tells BrowserII to
 attach  next  items  to  the current menu rather than to the current
 submenu. If  any  of  the menu, submenu and item names may contain
 whitespaces. In  this  case, enclose the name in double quotes.  A
 command  character  may  be defined for the menu item by putting the
 character after the ITEM keyword and surround it with {}'s.

 KEY <hot key>
 Allows more extensive short-cuts for menus.
 <hot key> is a commodities string, such as "control x", "f10",
 or anything you want.

 KEYTEXT <text>  (AmigaOS 3.x only)
 Maybe be any text you want, but intended to help remember menu
 extended short-cuts. You may for example use KEYTEXT "^x" for
 previous KEY "control x".
 This text will be right aligned in the menu strip.

 WBTF
 Brings workbench to front just after running the command.

 REQUEST
 Opens a requester enabling you to modify the command before
 running it. Not available for WB mode.
 Command syntax is decribed below.

 command_def

 Programs  can  be run in three ways:  RUN, SHELL, and WB.
 For  all modes, STACK and PRI are optionnal.  If STACK is less
 than  40  bytes, or if no stack is specified, the stack will
 be  set to the ParM task Stack.  That is to say the stack size
 at  time  ParM  was  run. There's  an exception:  If ParM is
 resident, ParM stack will allways be 40 bytes.
 1) RUN syntax

 RUN [WIN console_window] [STACK n] [PRI n] command [args][;command [args]].

 This  mode creates a background shell.  This mode should be used
 for  scripts. If  the  bit s of your script file is set, it is
 automaticaly sourced (No need of the execute command).
 Redirection can be done in this mode.
 You  can  specify  several commands separated with semicolons ;.
 If  you  want  selected files to be passed as arguments, you may
 place square brackets [] at insertion position.

 There  is  an alternative to get arguments with a full pathname,
 rather  than  a  path  relative to the current directory (active
 window).  Just put [:] instead of [] in the command line.

 But  be  warned.  In most cases, @{b}this is not necessary@{ub},
 and  dangerous! Because  volume names may not be unique, files
 passed  as parameters may not be the ones you selected.  Current
 directory  is  a  lock and IS unique.  Anyway, it can be usefull
 when  giving  file  names  to  and already loaded process with a
 current  dir  different from the selected files' directory.  For
 example,  you  get  two ARexx examples in this archive that need
 full path argumTR <  'g'g,  ?ent, View.adpro, and DeliPlay.rexx.

 There  is another drawback:  arguments have longer names, and as
 a  command line is limited to 512 bytes long, you cannot give as
 many arguments to a command as with current-dir relative path.
 2) SHELL syntax

 SHELL [WIN console_window] [STACK n] [PRI n] command [args][;command [args]].

 This mode now does the same as RUN, but if no window is given,
 the default shell window is taken.
 3) WB syntax

 WB [STACK n] [PRI n] command
 or
 WB [STACK n] [PRI n] command []	 # to take arguments

 Execute  command  in WorkBench mode. To get arguments, add []
 to the command.  Warning:  If STACK is specified here, it will
 override the stack specified in the icon of the command.  Your
 command may crash if you ask a smaller stack than in the icon.
 Do it at your own risk.
 BARLABEL

 Adds a bar between last item and next one.
 For  all  modes  but  WB,  your  command is searched first in resident
 list  and  then in CLI Path at time ParM was run.  To know the path in
 which  ParM  search  its  commands, just issue the Path command in the
 requester of ParM Command command, or open a newcli or shell from ParM
 and issue the Path command.

 A config file is given as an example.
  Limitations:
  ~
 If  a  command  in  RUN or SHELL mode can't be started, you will never
 know, except you won't see it working.
  Known bugs:
  ~

 See notes for external commands.
 RUN PRI 1 NewShell does not work. Pri is allways 0. Not a ParM bug.
  Tutorial:
  	~
 Now you read about all ParM was able to do, I think you'd like to
 know which mode you should use to run your favorite tools.

 First, when you want to add a manu item, you should know:

 1) Does your tool support workbench run ?
 2) Do you want your tool to inherit ParM's current dir, or have its own ?
 3) Do you want your tool to inherit ParM's CLI Path ?
 4) Do you want your tool to use a console window for its output ?
 SHELL mode is now the same as RUN but with a default console
 if not specified.
 So, choice between RUN and WB is easy.
 If you need a console or the Path, use RUN mode.
 Else, you can use WB mode.

@endnode
@node CmdHotKeys "BrowserII.guide/Command Hot-keys"

Command Hot-keys
=

 You can run commands using hot keys. But BrowserII is not a background
  commodity to run or pop up various utilities. Use special tools to do that
  such as Yak, or others. 
  Hot keys in browserII are active only when a Browser window is active.
  In fact, hot keys are configured as menu short cuts, so you may consult
  @{"menu configuration" link BrowserII.menu}, especialy the KEY and KEYTEXT
  keywords.

@endnode
@node AutoCmds "BrowserII.guide/Auto Commands"

Auto Commands
=

 AutoCommands  are  commands that are run when you double click on a file
  depending  on the file type.  File types are recognised by @{"whatis.library" link whatis.library} so
  this feature is available only if you have it in your system.

  File Types configuration is done via @{"whatis.library" link whatis.library} configuration.

 AUTOCMDs are configured in the @{"BrowserII.menu" link BrowserII.menu} file with the
  following syntax:

AUTOCMD <file type> [WITHSUBTYPES][WBTF][REQUEST] <run mode> [STACK] [PRI] [WIN] <command> []
 <file type>  : The file type name (you can see it by setting "File Infos/File Type")
 (i.e: "Text", "Exe", etc.)
 <run mode> : Same as for @{"menu items" link BrowserII.menu} (WB, RUN,.)
 <command> : The command you want to execute for this type of file.
 Same syntax as BrowserII's @{"menu items" link BrowserII.menu}.
 WITHSUBTYPES : AUTOCMD is inherited by subtypes of the type given.
 If an AUTOCMD exists for a subtype of the given
 type, it takes precedence over it.
 

  Example:
 AUTOCMD "Text" WITHSUBTYPES WBTF RUN More []
 AUTOCMD "Source C" RUN Ed []
 If  you DoubleClick on a file and this file is a text file but not
 C Source file (which is a subtype of Text) then "More" will be run
 with the file as argument.  If you DoubleClick on a C Source file,
 then "Ed" will be run instead of "More".

 It is strongly recommanded to have a look at the complete example given
  in BrowserII.menu.  The file is easy to understand.

@endnode
@node whatis.library "BrowserII.guide/File Types and whatis.library"

File Types and whatis.library
=

 This library is responsible of file type identification in BrowserII.
  It now quite know as some other PD software uses it.

 The  whatis.library comes as a separate package, even though the library
  itself  and  a  simple  configuration  file  comes  with  it. The complete
  distribution  can  be  downloaded from aminet, and makes part of our install
  disk.
 Read @{"whatis.library documentation" link "whatis.doc/Main"} for more information about
  configuration.

@endnode
@node "Changes" "BrowserII.guide/Changes"

Changes from versions 2.x
=

  BrowserII.menu
  ~
 The menus configuration file "S:BrowserII.menu" has moved BrowserII's
 home directory.  The installation script detects an existing file in S:
 and moves it to the new location of browserII.

 The crappy ACTIVATEKEY has gone from BrowserII.menu (and ParM.cfg).
 You must remove it. It has definitely been made obsolete by CX_POPKEY.

 You must modify your SHORTCUTQUAL (if any). It now uses commodities
 syntax. For 'left Amiga' key to work as well as standard right amiga for
 menu shortcuts:
 SHORTCUTQUAL "lcommand"
 For direct shortcuts (without any qualifier)
 SHORTCUTQUAL ""

 Browser now requires that each command (either RUN, SHELL or WB) that
 may take arguments include square brakets [] or [:] where to insert
 arguments. Commands that don't have [] won't have selected files passed
 as arguments, and selected files won't be unselected once the command
 has been run.
  Save Config
  ~
 The config file DEVS:BrowserII.cfg has also moved to the same location.
 Although the file format has changed, you will start back from default
 options when first installing version 3 of BrowserII.

 This way, BrowserII has now all its files in a single directory, making
 easier copying, and ready to use floppy disk based installation.

 Note that now, @{"Save Config" link SaveConfigItem} only saves the attributes
 set in the "BrowserII" menu.
  Saving default directory window options
  '~
 Some global window attributes are now local to each window such as
 autozoom features for example.
 These attributes are no more saved with the @{"Save Config" link SaveConfigItem} menus.
 You must now use the @{"Window/Properties/Snapshot" link Snapshots} menu item, which allow
 to save the active window properties as local or default configuration.
  Note to those who had beta 2.9 versions:
  (~
 The MMB-Double-Click feature is back to it's original 2.41 function which
 is "toggle Auto-Iconify" feature. Directory tree opening is now available
 with Control-Double-Click or MMB-Double-LMB, because in fact, auto iconify
 it is much used than opening directory trees, and it's easier this way.
  See the @{"release notes" link "Release Notes"} for new features.

@endnode 
@node "Release Notes" "BrowserII.guide/Release Notes"

Release Notes
=

 1.0: First Release (30-jul-91)

 1.1: Bug fixes.
 Added DiskCopy ability.
 Moving a device over another device calls SYS:System/DiskCopy,
 and Duplicate a single device too.
 Cli arguments are now quoted only when needed.
 A lot of little invisible improvements.

 1.11: Bug fixes.
 With parm.library 3.4 and higher, RUN modes work under 2.0. 

 2.0: Iconification, Zoom, Jauges, Workbench 2.0 look (under 2.0),
 Parametrable Fonts, ASynchronous dir scan, and bug fixes.
 External command BD.

 2.03: Minor bug fix.

 2.04: "Copy->Move" bug fix. (won't delete source file)

 2.05: Bug Fix: A CurrentDir was missing which can cause crash,
 bug in copy when skiping big file. Removed trash of
 prop gadget with autozoom under 2.0

 2.10: 29/5/1992
 Optional whatis capability:  recognize some files (ILBM, PPDATA,
 doc,.), You can define new type ( see docs of whatis.library).
 Auto command (custom command for each filetype ).
 BrowserII can work without  whatis.library.
 AddIcon  and  CheckSize  action added, Back pattern option added
 (KS2.x  only),  should  be custom in future.  Optional automatic
 main window Zoom.  Optional save Main window size/position
 BD has now 3 new option.

 2.11 RunMode was not printed in GetString() title bar when double
 clicking on a file. fixed.
 When changing Sort mode for a window, window was not updated.
 fixed.

 2.12 RunMode on double-click was always Shell with WB 2.0. fixed.
 After closing a window, check-marks for new current window
 was not udated. fixed.
 WBToFront now supported for WBRun too.
 A TAG_DONE was missing for backdrop window open (Pattern Option)
 
 @*
 * THIS WAS THE LAST KICKSTART 1.3 VERSION !
 *
 @*
 2.20: For KS 2.0 only, sorry.
 arp and req libraries no more needed.
 New lovely requesters (Underscored chars are shortcuts).
 Bold gadget is default response (Return key).
 ESC cancels all requesters.
 Processes status windows.
 New screen modes available.
 Virtual autoscroll screens.
 New wonderful Select/Filters requester with file types criteria.
 New look in menus.
 FileInfo options for alien window entries saved in config file.
 OpenDir done relative to current dir (enables opening
 of // for example)
 ShortCuts available when pattern's backdrop window is active.
 BrowserII can be iconified even when processes are running.
 Touch action changed in SetDate (like AmigaDOS command). You
 can then modify the date.
 Added new internal protection bit L to identify links.
 Saving Size/Position of main and alien windows made easier.

 2.21: No more truncate french dates.
 TR =  'M'M,  ʪ[ Works fine with 40 bytes of stack. (2.20 needed 4500 bytes).
 Uses new asl.library V38 screen mode requester.

 2.22: New look menus under AmigaDOS 3.0.
 New action 'WB Info' under AmigaDOS 3.0.
 Bug fix: Mem jauge layout was not correctly handled under V39.
 Backdrop pattern now implemented as a layer hook, and no more
 uses precious chip memory.

 2.23: Bug fix. Replaced ExNext() with MatchNext() to fix problems
 with new V39 DirCache FileSystem.

 2.30: Localized.
 Screen's bitmap made Interleaved under 3.0 (scrolling much nicer)
 Bug fix in WB Info. Did not handle properly .info files.
 You can now run a tool by double-clicking on it's icon. Makes
 it possible to run projects made of only an icon (for example:
 clicking on English.info to run software install in english).
 Uses system busy pointer under WB3.0.
 Bug fix in LoadConfig(). Config revisions were not properly
 handled.

 2.31: Pooled memory under WB3.0
 BrowserII's screen now inherits Workbench3.0's properties.
 (Your prefered pens,.) See note about pens for 3.0 users.

 2.32 Fixed a MungWall hit.
 Added 'Keep Window' features, asked by Gilles Soulet.

 2.33 Bug Fixes. Files where not unghosted on unmounted volumes.
 Memory pools semaphore protected.
 Deleting directories in RAM: was not possible under V37 since
 version 2.23 (due to modif for DCFS). Worked under V39. Fixed.

 2.34 Pooled memory under all system versions, including 2.0!

 2.35 Font & ScreenMode requesters resized.
 Added DEL key as a short-cut for Delete.

 2.36 Deleting links to dirs no more deletes dir contents. Only the
 link is removed.
 Added 'Update' button when asking before overwriting a file.
 BD 'file' now opens file's parent dir.
 Added Affect Volume possibility.
 You can now make a directory (MakeDir) with an icon.
 Turbo directory scan.

 2.37 Drag Selection. (release Shift key to copy/move files).
 Menus available when backdrop window is active.
 Keep modes now keep the same window rather than opening a new
 one and then closing parent.

 2.38 Middle button handling.
 New request mode for copying/moving files (Copy Mode/Request)
 Colors saved in 32 bits under V39 for AGA machines.
 This is usefull only if you edit the palette with a special
 utility. We'll soon release a palette.library which will
 edit colors in 24 bits, using the colorwheel.
 Command line length increased to 512. (You can select more
 files for External Commands in RUN/SHELL mode).
 Added an AppIcon in Workbench.

 2.39 AppWindows. (See 'Workbench Support').
 Keeps window size after checksize. (will become optional)
 Enhanced (faster) scrolling for big windows.
 Added a safety check. If you drag a file and you release
 it less than 350 ms after selecting it, you will be asked
 a confirmation for the copy/move operation. You must be a
 zombie to be faster!
 Arrows associated with scrollbar. Not yet functionnal.
 Another bug fix in LoadConfig().

 2.40 New iconify gadget image.
 Page scrolling (jump) now keeps one common entry between pages.
 Scrolling with new arrows.
 Menu layout no more locks backgroung actions when status
 windows are open.
 When started from WB, BrowserII's process get a copy of the WB
 Path, just like if it were started from a shell.
 Scrolling support in drag-selection.
 Added '[:]' to get full path arguments.
 Pressing MMB while holding LMB no more forces toggle-selection.
 Uses palette.library under V39 if available.
 Better window placement for big screens.
 Added Doc for CTRL key usage. (never been documented before!).
 Bug fix in realtime scroll. (window top and/or bottom borders
 might be trashed).
 Fixed several bugs WB Info.
 Various other optimisations/bug fixes.
 Code cleanup.

 2.41 Little fixes.
 Bumped revision because a lot of 2.40 beta were distributed.

 2.42 - Not released.
 - Modification of the about requester for registered users.
 - Support for different kinds of assigns in the device list.
 - Support for Multiple Assings.
 - Standard Assigns are now unique. If you have an assign and
 a volume with the same names and you double-click on the
 assign, you'll get the assign directory, not the volume.
 This is also true when you drop files over an assign.
 - BrowserII may now run on any public screen. Not only
 Workbench.

 2.43 - Not released.
 - Keep prop gadget position between directory rescan.

 2.44 - Not released.
 - Jauges a bit wider under SuperHires screen modes.
 - New standard 3D scrollbars
 - Delete & Write protection bits no more copied.

 2.9 - 3.0 pre-release. Reserved to beta testers.

 3.0 - Directory Tree.
 - Window snapshots.
 - File comments display.
 - Links support and display.
 - Network / MultiuserFileSystem support.
 - Archive support (Get separate ObjectArchive package)
 - Proportional font in windows.
 - Improved device list display.
 - Delete when dropping files out of a window.
 - Deletion of delete-protected files request
 - Extended menu shortcuts (some kind of hot keys).
 - Enhanced actions and copy requesters.
 - Now a commodity (can start in iconified state)
 - Finds default tools in path.
 - Removed the title bar memory jauge. Use TitleClock or other.
 - And more!.

 3.01 - Added CX_UNIQUE tooltype.
 - Defered ScanDevs()
 - Shilt-Alt-Close_Window replaced by easier Ctrl-Close
 - Background image (under 3.x only) (code by Walter Drwald)

	3.02	- Improved Background image display speed. (Walter Drwald)
	 - Changed NOAPPICON tooltype to APPICON=<filename>
 - 'Move As' on same volume was not working!!
 - New guide (AmigaOS 3.1 and above only) (Walter Drwald)
 - New set of MagicWB icons. Thanks again Walter!
 - Added all available tooltypes in icons as comments.
 - New Italian & Spanish catalogs.
 - Linked with fixed pools.lib from Mike Sinz.

	3.03	- Fixed bugs/enforcer hits in date decoding (select requester).
	 - Added support for Lzx in "Extract" script.
	 - Added missing information for copy process in guide file.

@endnode
@node "Future Plans" "BrowserII.guide/Future Plans"

Future Plans
=

  The next step in BrowserII is a separate preferences editor for lots
  of new options, color settings, menus, auto-commands, and. docks!
  We plan to use toolmanager.library for this feature.
  This version has some new features hidden, disabled, or not finished
  because I'm a bit fed up with BrowserII, after more than one year
  working on the same tool. Don't blame me please!
  Anyway, I will try to make more regular updates than before,
  mainly on Aminet.

@endnode
@node "Updates" "BrowserII.guide/Updates"

Updates
=

  To get the lastest version of BrowserII, download it from an aminet
  site in directory /pub/aminet/util/dir.
  If you do not have an aminet access, you'll then have to wait for
  Fred Fish disks/cdroms, or other diskette collections.

@endnode
@node "Copyright" "BrowserII.guide/Copyright"

Copyright
	=

  BrowserII is copyrighted by @{b}Sylvain Rougier@{ub} and @{b}Pierre Carrette@{ub}.
  It may not be sold in or together with commercial software without written
  approval by the authors.  It may be freely distributed on usual Fish disks
  and cdroms, Aminet servers and CDROM, Pearl, CAM,.
  It cannot be made available for downloading from a server which is a
  commercial operation.  The general principle is that it is forbidden to
  make a profit through the use or distribution of this program without our
  written consent.
  Distribution by "France Festival Distribution" after any sort of translation
  is definitely ILLEGAL.

@endnode
@node "Registration" "BrowserII.guide/Registration"

Registration
=

  BrowserII is shareware.  If you use it consistently, you ought to send us
  a contribution or your conscience will itch.
  Shareware fee is $25.  You will then get a so called key file, which will
  stay valid for ever.  You will continue to get updates from usual fish
  disks and aminet download.

  When you are not registered, the About requester appears from time to time.
  To become a registered user, fill in the @{"Registration Form" LINK "Registration Form/Main"} and send it to
  the address below. If you have an email, we will be able to send you your
  keyfile very fast.
Send registration order form to (except U.S. users):
4~

 Sylvain Rougier
 39 rue Carnot
 860 Poitiers
 France.

 EMail: rougier@ss3.univ-poitiers.fr
 IRC on channel #AmigaFr: Nickname "Un"
North American registration and support site for BrowserII is now
available from:
 Jon Peterson
 P.O. Box 2661
 San Angelo, TX  76902
 Email: FidoNet 1:383/25 or 26 or 30
 InterNet jon.peterson@twisted.com
  j.peterson22@genie.geis.com

You can always FREQ the latest versions of and BrowserII at
Dark Knights (915)944-9283 in the Amiga files section as BrowserII_v3.lha.

@endnode
@node "Bug reports" "BrowserII.guide/Bug reports"

Bug reports
=

  If you have an internet access, the best way to send bug reports
  and enhancement requests is to send an e-mail to:

  bvme@chasseneuil.em.slb.com (Pierre Carrette)
  rougier@ss3.univ-poitiers.fr (Sylvain Rougier)

  Otherwise, send it by postmail to @{"Sylvain Rougier" LINK "Registration"}.

  Several people reported troubles with MFS & CrossDos.
  It sometimes happened that closing a PCx: directory while removing
  an MSDOS disk crash the machine with old version of CrossDos.
  With version 40.19 of CrossDosFileSystem, this bug has gone.
  This definitely is *not* a bug of BrowserII.

  If you encounter a bug we can't reproduce, please send us a bootable
  floppy disk and describe how to get it.
  You will in turn get a free registration for BrowserII.

@endnode
@node "Acknowledgements" "BrowserII.guide/Acknowledgments"

Special thanks to:
=

  Walter Drwald for creating a set of MagicWB icons, new nice formaTR >  &%&%,  oYNted
  guide, and screen backfill hook with datatypes image loading.

  Cedric Beust, Philippe Brand, Gilles Soulet, Gal Marziou, Jean-Baptiste
  Yunes, Eric Totel, Olaf Gschweng, Alessandro Galassi, and all other
  translators, registered users, and beta testers.
@endnode
@Node "Disclaimer" "BrowserII.guide/Disclaimer"

Disclaimer

=

 THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  HOLDER AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
  OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE
  COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY REDISTRIBUTE THE
  PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS
  OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR
  THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
  PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
  POSSIBILITY OF SUCH DAMAGES.
@endnode

 * Ր      espaol>     X  Y-א \  [  Z  Y Ԑ^    BrowserII.guide.info1      9 !   ` X 	 
  9    	P     (     < X
 =  >8
  >8	 >8	 <0|  <<  >6<Q 0<|
 .>6<
 <<
 .>6<
 <<
 <6<
 <<
 +<7>J <<* <6>I <<
 0<<	 <<	 0>4<	 .<<
 <4<  ?<    x    p	   h k `O `   "8d,A  J!B,! 
ALb,# $b,$ d$Zd,$ d$d-'d&,'d	$
D$
/d$(
h `	     `   H  B A  @&   &B  &? 'GA  &A B&bT
Be B'B値BB'ǃB'瀿@  9    	   
P       ,       g> H	  ( >       %  $ 
 Z 
  
     X  <  	  8`  p` DHDB4  5 U\0'S	  0f U S 2  T%B	 ơ　VB 	 &1
U	 1
U	 -2
U2	 n
U2C	 }U2	 nBWU ~AV2	 xR	\4
 0 |  	   ` @ DBCL$ !A UW ]q      U]  !  Q_q  Sq #  	rRq  rR!	1 *!C2R	q k! rR!Sq zC R!S	q kR	 {S!	q |s_ g  
MultiView  % Icon by Martin Huttenloher  FILETYPE=TEXT|ASCII|AMIGAGUIDE      espaol>     ] H ^W                                                                                 ~  }  |  {  z  y  x  w  v  u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^ E^   ,  BrowserII.guide_v402   @DATABASE "BrowserII.guide"
@AUTHOR Pierre Carrette & Sylvain Rougier
@$VER: BrowserII.guide V3.03 (04.03.95)

@MACRO B2 "@{b}BrowserII@{ub}"
@MACRO OA "@{b}ObjectArchive@{ub}"
@MACRO TM "@{b}ToolManager@{ub}"

@MACRO START "@{LINDENT 3}"

@MACRO CHAP  "@{u} $2 @{uu}@{LINDENT $1}@{JLEFT}"
@MACRO SUB "@{SETTABS $1}$2@{TAB}@{LINDENT $1}"
@MACRO END "@{LINDENT $1}"

@MACRO CHAP1 "@{u} $1 @{uu}@{LINDENT 6}@{JLEFT}"
@MACRO SUB1  "@{SUB 6 $1}"
@MACRO END1  "@{END 3}"

@MACRO CHAP2 "@{u} $1 @{uu}@{LINDENT 9}@{JLEFT}"
@MACRO SUB2  "@{SUB 9 $1}"
@MACRO END2  "@{END 6}"

@MACRO CHAP3 "@{u} $1 @{uu}@{LINDENT 12}@{JLEFT}"
@MACRO SUB3  "@{SUB 12 $1}"
@MACRO END3  "@{END 9}"

@MACRO CHAP4 "@{u} $1 @{uu}@{LINDENT 15}@{JLEFT}"
@MACRO SUB4  "@{SUB 15 $1}"
@MACRO END4  "@{END 12}"

@MACRO CHAP5 "@{u} $1 @{uu}@{LINDENT 18}@{JLEFT}"
@MACRO SUB5  "@{SUB 18 $1}"
@MACRO END5  "@{END 15}"

@FONT XHelvetica.font 13
@REM XHelvetica is allowed too ;), why is there no @sysfont 1?
@WORDWRAP
@NODE Main "BrowserII V3.0 Documentation"
@{JCENTER}
Welcome to

@{u} @{B2} @{uu}

The @{i}other@{ui} file manager!

Version 3.03

Copyright  1991-94

Pierre Carrette & Sylvain Rougier
Icons & Graphics by  Walter Drwald
@{CODE}@{u}I @{uu}@{BODY}
@{JLEFT}@{SETTABS 48}@{LINDENT 6}
@{" Read this first! " Link "Read this first"}
@{" System requirements " Link "System requirements"}
@{" Installation " Link "Install"}

@{" Introduction " Link "Introduction"}	Start reading this.
@{" Features " Link "Features"}	Most important features
@{" The history " Link "History"}	Why did we rewrite the original Browser?@{END1}

@{CHAP1 "Using @{B2}"}

@{" Running BrowserII " Link "Running"}	Tooltypes and WBStartup drawer support.
@{" Basic knowledge " Link "BasicKnowledge"}	You @{b}must@{ub} know that.
@{" Common problems " Link "CommonProblems"}	Frequently asked questions.
@{" Directory trees " Link "Tree"}	Opening and using tree windows.
@{" Archive Support " Link "ArchiveSupport"}	Displaying archive contents.
@{" Zooming windows " Link "Zoom"}	Maximize window size.
@{" Snapshotting windows " Link "Snapshots"}	Saving window properties.
@{" Iconify " Link "Iconify"}	How iconification works in @{B2}.
@{" Network/Multiuser " Link "Network"}	Network and MultiuserFS support.
@{" Standard Menus " Link "Menus"}	Builtin menus usage.
@{" Mouse and Keyboard " Link "Keyboard"}	Summarize important keys/qualifiers.
@{" Jauges " Link "Jauges"}	Windows' jauges usage.
@{" Select Requester " Link "SelectRequester"}	Criteria file selection/filtering.
@{" FileExist Requester " Link "FileExistsRequester"}	Important and often used requester.
@{" Commodity " Link "Commodity"}	Popping up @{B2} with a hotkey.
@{" Workbench Support " Link "WorkbenchSupport"}	AppIcon & AppWindows.
@{" External Command BD " Link "ExternalCommandBD"}	Opens dirs from a shell.@{END1}

@{CHAP1 "Configuration"}

@{" User Menus " Link "BrowserII.menu"}	Creating user menus.
@{" Command Hot keys " Link "CmdHotKeys"}	Running commands by hot keys.
@{" Auto Commands " Link "AutoCmds"}	Commands associated to File Types.
@{" File Types " Link "whatis.library"}	Creating new File Types.@{END1}

@{CHAP1 "Miscellaneous"}

@{" Changes since v2.x " Link "Changes"}	v2.x users @{b}must@{ub} read this.
@{" Release Notes " Link "Release Notes"}	Features history since v1.0.
@{" Future Plans " Link "Future Plans"}	What will be the next versions.
@{" Getting Updates " Link "Updates"}	Where and how to get new versions.

@{" Copyright " Link "Copyright"}	Pierre Carrette & Sylvain Rougier!
@{" Registration " Link "Registration"}	Why registering and how.
@{" Bug reports " Link "Bug reports"}	Found some bugs?

@{" Acknowledgements " Link "Acknowledgements"}	We wish to thank.
@{" Disclaimer " Link "Disclaimer"}	Be warned!
@ENDNODE
@NODE "Read this first" "BrowserII.guide/Read this first"
@{START}
@{CHAP1 "Please read this"}

Please, even if you hate reading documentations, read at least the following pages, @{" Introduction " Link Introduction}, @{" Features " link Features} and @{" Basic knowledge " link BasicKnowledge} or you will miss some important things in @{B2}. These chapters are small. It will take you just a few minutes to read them.

For users of @{B2} v2.x, read important @{" Changes " link Changes} from v2.x to v3.0.
@ENDNODE
@NODE "System requirements" "BrowserII.guide/System requirements"
@{START}
@{CHAP1 "System requirements"}

@{B2} requires version 2.0 of the Amiga operating system or higher. To get a full featured @{B2}, you should also install the @{" whatis.library " link "whatis.library"}, and the @{" ObjectArchive " link ArchiveSupport} package.
@ENDNODE
@NODE Install "BrowserII.guide/Install"
@{START}
@{CHAP1 "Installation"}

@{B2} is distributed together with an Installer script, therefore making installation a breeze! Just doubleclick on the Install-BrowserII icon and the installation procedure is on its way.
@ENDNODE
@NODE Introduction "BrowserII.guide/Introduction"
@{START}
@{CHAP1 "Introduction"}

@{B2} is a multi-window file manager, i.e. it is not limited to two scrolling lists! This also means that you can see @{b}all@{ub} informations about a file (several files), size, date, time, protection, file type, comment, . without horizontal scrolling! No need to select a file to follow it horizontally!

It works like Workbench. Copy files by dragging and dropping them over the destination directory.

But @{B2} is not only a usual file manager. Most people use both a shell and a file manager depending on the work they are doing. @{B2} is also a tool making life easier in a shell-like environment.

Where to you spend most of your time in a shell? Typing file names? You think that filename completion is the best help? @{b}You are wrong!@{ub} Imagine that @{B2} is a shell. In each window, you have a directory displayed, so that all files are immediately selectable. You then want to execute a command in one of these.

In a shell, what would you do? Change the current dir, by CD'ing several times? How long does it take?

Now consider your directory iTR ?  , , ,   [
*s here, just in front of you. Activate the window, your CD is done. Select the desired file(s), and then press the E key. A requester appears asking you to complete the command. Press return... Quick, no?

Even better: You use some commands quite often? Create a menu with a shortcut or a more sophisticated hotkey. Select the files, press your hotkey, et voil!

For example, I have Make, BumpRev, CPr, Diff, Indent, ... menus, making my development environment a dream! I can work on different development directories at the same time, without typing even a single shell command! See the last menu named C of my @{" BrowserII.menu " link //BrowserII.menu-example/Main} configuration file subset.

As a last word for this introduction, know that we use @{B2} all the time, for every thing. We (Sylvain and I) even don't load Workbench at boot time! Funny isn't it? ;-) That's why one of the next @{B2} features will be icon display, the only reason why we (sometimes!) run Workbench.

See the @{" Features " link Features} page for a complete detailed list of features.
@ENDNODE


@NODE Features "BrowserII.guide/Features"
@{START}
@{CHAP1 "Features"}

Some features of @{B2} makes it a different and powerful file manager.

@{SUB2 ""}Asynchronous operations:
Several (unlimited) operations can be performed at the same time. Copying files, deleting others, running tools, scanning directories, all at the same time!@{END2}

@{SUB2 ""}Directory trees:
@{B2} has a finder-like @{" directory tree " link Tree}. Examine the whole contents of a floppy disk by just a double click!@{END2}

@{SUB2 ""}Powerful copy and other DOS operations@{END2}

@{SUB2 ""}Networking:
@{B2} has a full @{" Network/MultiuserFileSystem " link Network} support.@{END2}

@{SUB2 ""}Archive support:
It has the most powerful @{" archive support " link ArchiveSupport} using the @{OA} system.@{END2}

@{SUB2 ""}Hard and soft links support@{END2}

@{SUB2 ""}Proportional font support allowing to nicely display lots of informations about files in less space.@{END2}

@{SUB2 ""}Device list with volume statistics@{END2}

@{SUB2 ""}And it is small. About 150 KBytes including its libraries.@{END2}
@ENDNODE


@NODE "History" "BrowserII.guide/History"
@{START}
@{CHAP1 "History"}

We wrote @{B2} after having used the original Browser (version 1.6a) written by Peter Da Silva for two years. We were not fully satisfied because of some of its limitations so, as soon as we felt capable of writing a program which would overcome those limitations, we made a decision to do it. So @{B2} was born... The Return!

We felt the overall layout and display mode of Browser were very good, so we decided to keep them, as well as the name, so that actual users of Browser would immediately feel at home with @{B2}.

As we never had the sources of Browser at hand, we rewrote it from scratch.

A few months ago, I had a chat with Peter, who discovered our piece of work. It was really exciting to speak (by email) with our spiritual father ;-) So, if you read this, Hello Peter!
@ENDNODE


@NODE Running "BrowserII.guide/Running BrowserII"
@{START}
@{CHAP1 "Running @{B2}"}

@{B2} can of course be run just like any other tool. But you should take care to run it from an environment that makes it inherit your default shell path, so that it can run commands without problems.

It can also be run through the separate @{" BD " link ExternalCommandBD} command.

If you want to start @{B2} from your WBStartup drawer, you may create a project icon with the default tool set to BrowserII if @{B2} is in your path, or to the full path to @{B2}. The installation procedure will do it for you if you want.

There are some optional tooltypes:

@{SUB2 ""}APPICON
default is "BrowserII"@{END2}
@{SUB2 ""}ICONXPOS
default is NOICONPOSITION@{END2}
@{SUB2 ""}ICONYPOS
default is NOICONPOSITION@{END2}

If you set APPICON=NONE, the only way to uniconify @{B2} is to use the @{" hotkey " link Commodity} or Commodities Exchange utility. See @{" Commodity " link Commodity} for other tooltypes.
@ENDNODE


@NODE BasicKnowledge "BrowserII.guide/Basic knowledge"
@{START}
@{CHAP1 "Basic knowledge"}

First of all, you should read the @{" Introduction " link Introduction} chapter.

When you first start @{B2}, you get just a simple window, called the @{b}Main@{ub} window, which contains the DOS device list, i.e. by default, the list of mounted volumes and assigns. To adapt the contents of this window, use the BrowserII/@{" Device List " link DeviceListSub} submenu.@{END2}

@{CHAP2 "Window bottom border informations"}

@{SUB3 ""}Main window
When the active window is a directory or @{" tree " link Tree}, volume informations appear in the bottom border of the main window. If the volume is write protected, thoses informations appear in italic.

If the main or alien window is active, the bottom border of the main window contains the statistics about selected files.@{END3}

@{SUB3 ""}Directories/Trees
In the bottom border of windows appear:@{END4}
@{SUB4 ""}If no entries are selected
The total statistics about window contents@{END4}
@{SUB4 ""}If some entries are selected
The selection statistics for that window@{END3}

@{B2} makes heavy usage of menus. It is the best way to preserve most of the screen space available to display directory contents. Compared to other files managers, @{B2} does not have button panels. This will change in a next release as docks are planned using @{TM}.

A lot of people complained that @{B2} opens too many windows. Now, the directories have the @{" Auto-Iconify " link WindowOptionsSub} feature set by default. Then you will get new windows only when you open a new volume. Reset this option to @{" Keep Window " link WindowOptionsSub} if you prefer the old method which consists in opening a new window each time you open a directory.@{END2}

@{CHAP2 "Selecting files"}

File selection in @{B2} works like in Workbench. Selecting a file by default deselects all other selected files. To perform extended selection, you must hold the shift key while selecting files. See also @{" drag selection " link DragSelection}.

For those of you, lucky owners of a @{" 3 button mouse " link ThreeButtonMouse}, there is a special support in @{B2}.@{END2}

@{CHAP2 "Copying files"}

File copying works like Workbench too. Select your files, and while holding the left mouse button (LMB) pressed, release the shift key, drag the files over the target directory, and release the LMB. The @{" copy process " link CopyProcess} is run in the background leaving @{B2} available for other operations.@{END2}

@{CHAP2 "Current Directory"}

The notion of current directory is one of the most important things you must know about @{B2}. It is the base knowledge for a powerful usage.

The current directory only has meaning when running shell commands. Shell commands can be run either with the BrowserII/@{" Execute... " link ExecuteItem} menu item, or with a @{" user configured menu " link BrowserII.menu} in RUN or SHELL mode, or by doubleclicking on an executable file that has no associated icon. See the @{" Extract example " link CommonProblems} for an example usage of the current dir notion.
@ENDNODE


@NODE DragSelection "BrowserII.guide/Drag selection"
@{START}
@{CHAP1 "Drag selection"}

To quickly select a list of files, press the shift key, select the first file by pressing the left mouse button (LMB) over it, and then, without releasing the LMB, move the mouse over the other files. Reaching the bottom or the top of the window will scroll the list. Once the files are selected, you may then want to drag them over the target directory. Release the shift key (but not the LMB). The mouse pointer then change to a crosshair. Drag the mouse, and release the LMB.

There is another possible method to drag select files if you have a @{" 3 button mouse " link ThreeButtonMouse}. The MMB then replaces the shift key. It works the same way.
@ENDNODE


@NODE ThreeButtonMouse "BrowserII.guide/3 button mouse support"
@{START}
@{CHAP1 "3 button mouse"}

For lucky owners of a 3 button mouse, some goodies are available. For most of the features, the mid button acts like the shift key, so it may not conflict with utilities that do a MMB-Shift. By the way, some of those commodities are not programmed with care and may disable or conflict with some MMB features of @{B2}. You'll have to make a choice!

@{SUB2 ""}Extended selection hitting MMB or LMB with MMB Pressed.@{END2}
@{SUB2 ""}Pressing MMB then LMB enables drag selection.@{END2}
@{SUB2 ""}MMB DoubleClick on a dir toggles @{" Auto-Iconify " link WindowOptionsSub} mode:@{END3}
@{SUB3 ""}if AutoIconify is on, MMB DoubleClick opens a new window@{END3}
@{SUB3 ""}if AutoIconify is off, MMB DoubleClick opens the new dir in the same window.@{END2}
@{SUB2 ""}Dragging files with MMB toggles the copy/move mode.
(If Always Copy is on, MMB always moves, else MMB always copies)@{END2}
@{SUB2 ""}Pressing MMB & hitting the Close gadget closes all directories for the volume.@{END2}
@{SUB2 ""}The same holds for the iconify gadget.@{END1}
@ENDNODE


@NODE CopyProcess "BrowserII.guide/Copy process"
@{START}
@{CHAP1 "Copy process"}

When copying files, @{B2} will check whether destination and one of the source concerned volumes are mounted, i.e. one of the source and destination volumes are simultaneously present in their drives (a diskette with a given volume name may not be in a drive).

When copying several files and/or directories, BrowserII always copy icons first, so that further Workbench directory scans will be faster.

If any source or destination volume is mounted (if you have only one drive for instance), @{B2} will use a maximum of 1024 KBytes for copy buffers if enough memory is available. This way, in order to copy some files from a diskette to another one, you don't need to go through the RAM Disk. Buffers are allocated during copy, and in any case @{B2} will not use more than 80% of the available memory at copy startup time for its buffers. This size of 1024 KBytes allows to copy a single DD diskette in a single step, even in PFS format.

If both destination and source directories are mounted, the buffer size will not exceed 512 KBytes.
@ENDNODE


@NODE MenusColors3.0 "BrowserII.guide/Note about menu colors with WB 3.0"
@{START}
@{CHAP1 "Note about menu colors with WB 3.0"}

For people who have AmigaOS 3.0 or 3.1 and have 8 or more colors in their Workbench Screen, you should read this note.

In WB 3.x preferences, you can edit the color pens of the screen's titlebar and menus. If you have a 8 or more color workbench, then you edit these pens using the MultiColored palette. If you don't use standard pens, (Black text on white background), and you run @{B2} in its own screen, you won't get the same colors for @{B2}'s menu. To get the same colors, you have to edit the pens in the system preferences in 4 color mode, since until now, @{B2} screen is a 4 color screen.

@{b}There are 2 independent preferences in the system for pens.@{ub}

Modifying the 4 color pens will not modify the layout of your 8+ color workbench, but will modify @{B2}'s.
@ENDNODE


@NODE CommonProblems "BrowserII.guide/Common problems"
@{START}
@{CHAP1 "Common proTR @  , , ,   L*blems"}

This chapter summerize the most frequently asked questions.

@{SUB2 ""}Extracting archives in a particular directory:
@{B2} comes with a shell script named Extract which detects the format of an archive and then calls the appropriate archiver to extract the archive. Usage of this script in @{B2} is straightforward. @{" Create a menu item " link BrowserII.menu} as follows:

	@{CODE}ITEM {Z} Extract RUN Extract []@{BODY}

It is a good idea to use a shortcut for this menu item as it is often used. Here, it is Amiga-Z, or just Z if you set your @{" SHORTCUTQUAL " link BrowserII.menu} to "".

Then select the archive to extract, activate the target directory window, and press Amiga-Z, or Z. That's it!

See the @{" BrowserII.menu example " link //BrowserII.menu-example/Main} for a more featured Extract menu item.@{END2}

@{SUB2 ""}Giving several arguments to a shell command that accepts only one:
Use the shell command @{" For " link For.doc/Main} included with @{B2}.
Example:

	@{CODE}ITEM {Z} Extract RUN For [] DO Extract %%@{BODY}@{END1}

@{SUB2 ""}The colors of my title bar is not the same as Workbenchs:
See @{" Menu colors under AmigaOS 3.0 " link MenusColors3.0}.
@ENDNODE


@NODE Tree "BrowserII.guide/Directory trees"
@{START}
@{CHAP1 "Directory trees"}

@{B2} can display a whole directory hierarchy in a single window. It has a finder-like layout, with little arrows allowing to fold directories. You can also @{" (un)fold all " link TreeSub} directories in a single keystroke. Scan is reasonably fast in @{" turbo mode " link WindowOptionsSub}, depending on the filesystem.

You can open trees with only the directories, or all directories and files. Note that you can open a tree with files and filter out files from display using the appropriate window filters settings. But opening a directory tree without files uses much less memory and system overhead.

Trees are not limited in the files and directories they can display. I could open a tree with files on a CDROM with 2000 directories and over 36000 files without problems. By the way, it used about 4 MBytes of RAM!@{END2}

@{CHAP2 "Opening Trees"}

@{SUB3 ""}Tree with files:
Ctrl-Double-LMB
MMB-Double-LMB@{END3}
@{SUB3 ""}Tree without files:
Shift-Ctrl-Double-LMB@{END2}

@{CHAP2 "Future"}

In a future release, it will be possible the convert a directory window into a tree window, using the @{" Window/Open/Make Tree " link OpenSub} menu. As only the first level directory will be read, subdirectory scan will be performed on directory unfold.@{END2}

@{CHAP2 "Selecting files in directory trees"}

Imagine the following directory structure:

	@{CODE}include (dir)
		dos (dir)
			dos.h
			dosextens.h
		libraries (dir)
			gadtools.h
			iffparse.h
			intuition.h@{BODY}

Selecting iffparse.h and dropping it in another directory would just copy it as usual. But now, select both iffparse.h and include, and drop them in the target directory. This will create the following structure:

	@{CODE}include (dir)
		libraries (dir)
			iffparse.h@{BODY}

This makes it possible to copy only a part of a directory structure while keeping the structure.

When a directory in a tree is selected, two situations are possible:
@{SUB3 ""}The directory contains selected subentries:
Then only the selected subentries will be processed on next action.@{END3}
@{SUB3 ""}The directory @{b}does not@{ub} contain selected subentries:
The whole directory (with its contents) will be processed if the action is naturally recursive, such as copy or delete.
@ENDNODE


@NODE "ArchiveSupport" "BrowserII.guide/Archive support"
@{START}
@{CHAP1 "Archive support"}

@{B2} can automagically display the contents of an archive in a window, just like it was a normal directory. To make this feature functional, you must get the separate @{OA} package. @{B2} then mounts the archive and opens a directory or directory tree window (depending on the qualifiers used) just like for standards directories.

If you want to override this mechanism for some archive types (in case your have another better archive handler ;-), you can use an @{" autocmd " link Autocmds}. This also means that if you want an archive type to be supported by the @{OA} feature in @{B2}, you must remove the autocommand for this type.
@ENDNODE


@NODE Zoom "BrowserII.guide/Zoom"
@{START}
@{CHAP1 "Zoom"}

Zooming a window consists in showing as much information as possible about window contents. Priority is always given to height first. If it is not possible to display all files in one column, then @{B2} will attempt to display the less possible columns to show all files. If it is not possible within the bounds of the screen, window size will be rounded to the nearest width and height so there's no screen space lost.

Zoom can be performed automatically in response to some events in @{B2}. See the @{" AutoZoom " link AutoZoomSub} submenu in the @{" Window " link WindowMenu} menu.

It can also be performed upon user request: by a menu selection or shortcut or by the two zoom gadgets. These gadgets are invisible. The first one is the Zoom gadget and is the top half of the jauges, while the second one is the UnZoom gadget and is the bottom half of the jauges.

@{CHAP2 "Note"}

If you ask for a zoom while the directory to be zoomed is currently scanning, the zoom is deferred until the end of the scan.@{END2}

@{CHAP2 "Constraints"}

Window zoom can be size constrained.

@{SUB3 ""}Maximum size:
If you don't want your windows to fill most of the screen, you may want to limit the maximum window size for a zoom operation. Maximum width and height can be set separately.@{END3}

@{SUB3 ""}Minimum size:
Some of your windows are too small, or you want more columns ... capture a minimum window size.

Example:
You want your main window (the one with the device list) to be displayed with three columns, but you want it to be autozoom. Enlarge it to 3 columns manually or by using the @{" Window/Zoom/Wider " link ZoomSub} menu item, and snapshot the @{b}Min Width@{ub} of the window. Then the next zooms will keep at least the captured width, making the window wider and less high.

To capture the sizes of a window, use the @{" Window/Properties/Snapshot " link Snapshots} menu item. Whether a window has size contraints or not, the zoom window sizing methods explained before apply. In fact, the default size constraint of a window is the size of the screen.@{END3}

@{SUB3 ""}Limiting the window size to the visible part of a virtual screen:
When you use @{B2} in a virtual screen, the zoomed windows may be larger than the size of the visible part of the screen. To prevent this, size a window to the size of the screens visible part, and @{" snapshot " link Snapshots} the window width and height as default for Directories, Trees, and Trees with files.@{END3}

@{SUB3 ""}Overriding constraints:
Sometimes, you want to override the default contraints you set to window. To do that, control-click on the zoom gagdet of the window (hidden in the top half of the jauges). This will zoom the window with the screen size as bounds limits. As a more general usage, control-zoom overrides contraints. This is true for zoom function keys,...@{END3}

@{SUB3 ""}@{b}Warning:@{ub}
Do not snapshot a default position or all windows will open at the same place!
@ENDNODE


@NODE Snapshots "BrowserII.guide/Snapshots"
@{START}
@{CHAP1 "Snapshots"}

The concept of window snapshot is well known as it exists in the Workbench. But window snapshot in @{B2} is even more powerful.

You can not only snapshot the size and position of the window, but also other local properties. Preferences may not be limited to the window, but to a whole volume, device, or as default preferences for all windows.

@{CHAP2 "Using snapshot"}

When asking for a window snapshot, a big requester appears, with lots of options. You are then prompted to select the information you want to freeze.

@{b}Important:@{ub}
You may save @{b}only the options that differ@{ub} from the default settings. When you open a window, @{B2} follows these rules to get window settings:

@{SUB3 ""}Opening of a root directory:@{END4}
@{SUB4 ""}Obtain default settings.@{END4}
@{SUB4 ""}Obtain device settings that overrides previous ones.@{END4}
@{SUB4 ""}Obtain volume settings that overrides previous ones.@{END4}
@{SUB4 ""}Obtain directory settings that overrides previous ones.@{END3}

@{SUB3 ""}Opening of a window subdirectory:@{END4}
@{SUB4 ""}If the @{b}parent window@{ub} has the @{" local properties " link WindowOptionsSub} option set, the rule is the same as for root directories.@{END4}
@{SUB4 ""}Else@{END5}
@{SUB5 ""}Obtain settings of the parent directory.@{END5}
@{SUB5 ""}Obtain directory settings that overrides previous ones.@{END3}

Example:
You may want to set default values for a particular device and/or volume so that each directory open relative to it, would get those settings. Then imagine you want to snapshot a particular directory on this volume. You should snapshot only the properties that differs from default values (checked by default). This way, if you change one of the volume defaults, even snapshotted directories will inherit the new defaults.@{END2}

@{CHAP2 "Snapshots databases"}

The snapshot files are created in @{B2}'s home directory, in the subdirectory Snapshots. They all have a file comment that summarizes their contents. So no data is written into the snapshotted directory. This won't fill your disks of annoying files, and allows to snapshot directories in write protected disks and CDROMs.

The default preferences for all windows (dirs, trees, alien and main window) are stored in Snapshot-0. All other files are numbered from 1 to ... There is one file for each device defaults (includes dir and trees defaults), and one file for each volume (includes dirs default, trees defaults, and local dir/trees snapshots).

The file comments then says for example Snapshots for device DF0:

Note that volumes are remembered by name and datestamp. This makes it impossible to snapshot variable datestamp volumes, since they will always be identified as different volumes. This is the case for the RAM disk for example.

To remove a snapshot, you may UnSnapshot using the menu item in the Window/Properties submenu. Then, you get again the snapshot requester with, by default, the local directory snapshotted settings set.

If you did snapshot a directory that no more exists, you are not actually be able to remove it from @{B2}'s snapshot database. This will be possible with the future preference editor. The only way to remove old snapshots is to delete a snapshot file! It's not so silly, it's sometimes useful and easy.
@ENDNODE


@NODE Iconify "BrowserII.guide/Iconify"
@{START}
@{CHAP1 "Iconify"}

@{CHAP2 "@{B2} iconification"}

@{B2} can be iconified, so that it closes all its windows, and its screen if it has its own custom screen. However, there must not be any visitors window open in @{B2}'s custom screen, if any. Otherwise, it will complain about. But it is possible to iconify @{B2} while some background jobs are active. The status windows, if open, will be closed, and will continue to process silently.

To iconify @{B2}, hit the little arrow in the TR A  +@+@,  \uleft border of the main window, just below the title bar. You can also activate the main window, and hit the F4 key.@{END2}

@{CHAP2 "Uniconifying @{B2}"}

Several methods are possible to uniconify @{B2}:
@{SUB3 ""}Double click on its @{" AppIcon " link Running} if any.@{END3}
@{SUB3 ""}Use its @{" hotkey " link Commodity}.@{END3}
@{SUB3 ""}Use Commodities Exchange.@{END3}
@{SUB3 ""}Run @{" BD " link ExternalCommandBD}.@{END2}

@{CHAP2 "Directory/Tree windows iconification"}

@{B2} directory and directory tree windows can be iconified too. Using window iconification, you keep directory contents in memory, thus preventing reading them again on next access.

To iconify a directory, hit the little arrow in the left border of the window, just below the close gadget, or hit the F4 key after activating the window. You can iconify all directories of the same volume by shift iconifying a window.

Once iconified, directories appear in the Alien window. Let's call the entries of the alien window @{i}icons@{ui}. The Alien Window can be open using F5 or menu Window/Open/Alien Window.

Icons are directories like any other directories in standard windows, that is to say they support all actions. You can select icons and release them over directories, you can also use icons as destination of a copy, or even rename or why not protect an icon.

@{b}Note@{ub}:
The Alien window is called Alien because it was intended to contain different kinds of entries such as leave-outs and aliases. At this moment, it is not yet implemented.
@ENDNODE
@NODE Network "BrowserII.guide/Network and MultiuserFileSystem support"
@{START}
@{CHAP1 "Network and MultiuserFileSystem support"}

@{B2} supports all multiuser/network packages that provides a standard accounts.library. This actually the case for Envoy, MultiUserFileSystem, and AS225.

This support means the ability to display file Owner/Group names, and protection bits, as well as modifing these attributes.

For display, select from the menu Window/File Infos, Protection, Owner, and Group. Protections bits are composed of owner bits, and, if Group is on, group protection bits as well as group name, and, if Owner is on, others protection bits as well as Owner name.

To modify protection bits, use the Set Protect action. To change owner, use Set Owner action.
@ENDNODE
@NODE Menus "BrowserII.guide/Menus"
@{START}
@{CHAP1 "Menus"}
@{SETTABS 40 75}
@{" BrowserII " link "BrowserIIMenu"}	@{" Window " link "WindowMenu"}	@{" Actions " link "ActionsMenu"}

@{" Update menus " link "UpdateMenusItem"}	@{" Rescan " link "RescanItem"}	@{" Rename " link "RenameItem"}
@{" Last Error " link "LastErrorItem"}	@{" Open " link "OpenSub"}	@{" Make Dir " link "MakeDirItem"}
@{" Execute " link "ExecuteItem"}	@{" Zoom " link "ZoomSub"}	@{" Duplicate " link "DuplicateItem"}
@{" Screen " link "ScreenSub"}	@{" Tree " link "TreeSub"}	@{" Set Date " link "SetDateItem"}
@{" Screen Font " link "Fonts"}	@{" Select Match " link "SelectMatchItem"}	@{" Set Comment " link "SetCommentItem"}
@{" Window Font " link "Fonts"}	@{" Select All " link "SelectAllItem"}	@{" Set Protect " link "SetProtectItem"}
@{" Run Mode " link "RunModeSub"}	@{" Filters " link "FiltersSub"}	@{" Set Owner " link "SetOwnerItem"}
@{" Copy Mode " link "CopyModeSub"}	@{" File Infos " link "FileInfoSub"}	@{" Add Icon " link "AddIconItem"}
@{" Copy Flags " link "CopyFlagsSub"}	@{" Sort By " link "SortSub"}	@{" Check Size " link "CheckSizeItem"}
@{" Device List " link "DeviceListSub"}	@{" AutoZoom " link "AutoZoomSub"}	@{" Information " link "InformationItem"}
@{" Options " link "OptionsSub"}	@{" Options " link "WindowOptionsSub"}	@{" Delete " link "DeleteItem"}
@{" Save Config " link "SaveConfig"}	@{" Properties " link "PropertiesSub"}
@{" Quit " link "QuitItem"}
@ENDNODE
@NODE BrowserIIMenu "BrowserII.guide/Menu: BrowserII"
@{START}
@{CHAP1 "Menu: BrowserII"}

All the options set in this menu can be saved using the Save Config item. The options set in the Window menu are discussed later in this chapter.
@ENDNODE
@NODE UpdateMenusItem "BrowserII.guide/MenuItem: BrowserII/Update Menus"
@{START}
@{CHAP1 "Update Menus"}

Reloads the @{b}User Menus@{ub} @{" configuration file " link "BrowserII.menu"}.
@ENDNODE
@NODE LastErrorItem "BrowserII.guide/MenuItem: BrowserII/Last Error"
@{START}
@{CHAP1 "Last Error"}

This will show you the last message which appeared in the screen title bar.
@ENDNODE
@NODE ExecuteItem "BrowserII.guide/MenuItem: BrowserII/Execute."
@{START}
@{CHAP1 "Execute."}

Pops up a requester allowing to enter a shell command. The command is initialised with the selected files (if any), else it will be the last executed command using this menu item.

@{b}Important@{ub}:
The command is executed in the directory of the active window. For example, entering the command Dir (silly! ;-), the output will be different depending on the active window.@{END1}
@ENDNODE
@NODE ScreenSub "BrowserII.guide/SubMenu: BrowserII/Screen"
@{START}
@{CHAP1 "Screen Options"}

@{SUB 40 "Public Screen"}@{B2} opens its windows in the selected public screen@{END2}
@{SUB 40 "Custom Screen"}@{B2} opens its own screen (which is @{" public " link PublicScreen} too)@{END2}
@{SUB 40 "Workbench Colors"}Clones the colors of the Workbench screen.@{END2}
@{SUB 40 "Custom Colors"}Adjust colors with a color requester.@{END2}
@{SUB 40 "Backdrop pattern"}Install a grey pattern in the screen.@{END2}
@{SUB 40 "Backdrop image"}Not yet implemented!@{END2}

Public Screen pops up a requester showing the list of available public screens. If you plan to save this preference, you must choose a screen which is available each time you run @{B2}. Else, il will fall back to the Workbench screen. There is a special public screen which is called frontmost screen. Used in conjunction with a @{" hotkey " link Commodity}, @{B2} will popup in the current screen.
@ENDNODE
@NODE PublicScreen "BrowserII.guide/MenuItem: BrowserII/Screen/Public Screen"
@{START}
@{CHAP1 "Public Screen"}

@{B2}'s own screen is made public and is named BrowserII. Take care, public screen names are case-sensitive. For example, you can open a console in the @{B2} screen with the following syntax:

	@{CODE}"CON:0/11/640/100/Window Title/CLOSE/WAIT/AUTO/SCREEN BrowserII"@{BODY}

This console has deferred open (AUTO), will also have a close gadget (CLOSE), and will wait for you to hit close gadget before closing (WAIT). Note that if another public screen with the same name exists, @{B2} will name its screen BrowserII0, then BrowserII1,. (this can happen if you have the strange idea to run @{B2} twice!)
@ENDNODE
@NODE Fonts "BrowserII.guide/SubMenu: BrowserII/Fonts"
@{START}
@{CHAP1 "Fonts"}

@{SUB 40 "Default Font"}Use the defaut font@{END2}
@{SUB 40 "Custom Font"}Selects a special font for screen and or windows@{END2}

Proportional fonts are handled for both screen and window text.
@ENDNODE
@NODE RunModeSub "BrowserII.guide/SubMenu: BrowserII/Run Mode"
@{START}
@{CHAP1 "Run Mode"}

This submenu determine the mode to use to run the file you doubleclicked. If other files were selected at the time of the doubleclick, their names become parameters for the doubleclicked file.

If the file has an icon, and is not filtered out by an auto-command or mounted as an archive, it will automatically be run in Workbench mode.

Also note that @{B2} does a CD into the active window before running a command, whether you have doubleclicked on a file, or activated it through a menu selection. This is often @{b}very@{ub} useful.

@{SUB 40 "RunBack"}Run in background (input and output set to NIL:)@{END2}
@{SUB 40 "Shell"}Use SHELLWIN console for program input/output@{END2}
@{SUB 40 "Request"}Pop up a requester to modify/confirm operation.@{END2}
@{SUB 40 "WBToFront"}Brings Workbench screen to front when running program.@{END2}
@ENDNODE
@NODE CopyModeSub "BrowserII.guide/SubMenu: BrowserII/Copy Mode"
@{START}
@{CHAP1 "Copy Mode"}

@{" Context " link ContextItem}
@{" Always Copy " link AlwaysCopyItem}
@{" Always Move " link AlwaysMoveItem}
@{" Link " link LinkItem}
@{" As. " link AsItem}
@{" Reque    H M                                                                                                                                                 ]  st " link CopyRequestItem}

@{" Update " link CopyUpdateItem}
@{" Don't overwrite files " link DontOverwriteFilesItem}
@{" Ask before Overwrite " link AskBeforeOverwriteItem}
@{" Backup replaced files " link BackupFilesItem}

@{" Copy Empty Dirs " link CopyEmptyDirsItem}
@{" Copy Hierarchy " link CopyHierarchyItem}
@ENDNODE
@NODE ContextItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Context"
@{START}
@{CHAP1 "Context Copy Mode"}

If destination and source directory are located one the same volume, the file (or directory) will be moved. Else, it will be copied.
@ENDNODE
@NODE AlwaysCopyItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Always Copy"
@{START}
@{CHAP1 "Always Copy Copy Mode"}

@{B2} will systematically make a copy of the file.
@ENDNODE
@NODE AlwaysMoveItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Always Move"
@{START}
@{CHAP1 "Always Move Copy Mode"}

@{B2} will always move the file. If destination and source directory are on different volumes, the file will be copied to the destination directory and the source file deleted if the whole copy is successful.
@ENDNODE
@NODE LinkItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Link"
@{START}
@{CHAP1 "Link Copy Mode"}

Rather than copying/moving a file or directory, this will create a link. If destination and source directory are on different volumes, @{B2} will create a soft link, else, a hard link.

@{b}Note 1@{ub}:
Links are an advanced features of an operating system and should be used with care.@{END2}

@{b}Note 2@{ub}:
Soft links are not officialy supported by the actual AmigaOS (even 3.1). So, be prepared to encounter problems using some.
@ENDNODE
@NODE AsItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/[.] As."
@{START}
@{CHAP1 "[.] As. Copy Mode"}

As. is an attribute for all previous choices in this submenu. If set, you will be prompted to enter a new file name for every files.
@ENDNODE
@NODE CopyRequestItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Request"
@{START}
@{CHAP1 "Request Copy Mode"}

You'll asked if you want to move, move as, copy, copy as, or create a link before the drop operation takes place.

If you don't want to be requested each time you want to copy/move some files, you may use the Context or Always Copy or Always Move option. Then, if you want to perform a different operation as the default, your can press the Control key before dropping the files. This will force the request mode, and then allow to chose Copy As or Move As for example.
@ENDNODE
@NODE CopTR B  , , ,   5#NyUpdateItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Update"
@{START}
@{CHAP1 "Update Copy Mode"}

@{B2} will copy the file only if the source file is more recent than the destination file, or if the destination file does not exist.
@ENDNODE


@NODE DontOverwriteFilesItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Don't overwrite files"
@{START}
@{CHAP1 "Don't overwrite files Copy Mode"}

@{B2} will not overwrite an existing file. If there exists a destination file with the name you gave for the destination, the copy will not be performed.
@ENDNODE


@NODE AskBeforeOverwriteItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Ask before Overwrite"
@{START}
@{CHAP1 "Ask before Overwrite Copy Mode"}

@{B2} asks for confirmation before overwriting. This option is naturally mutually exclusive with the former one.
@ENDNODE


@NODE BackupFilesItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Backup Replaced Files"
@{START}
@{CHAP1 "Backup Replaced Files Copy Mode"}

Each time a file to be copied/moved already exists, the existing file will be renamed to <oldname>~. If <oldname>~ already exists, it is deleted first.
@ENDNODE


@NODE CopyEmptyDirsItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Copy Empty Dirs"
@{START}
@{CHAP1 "Copy Empty Dirs Copy Mode"}

This option will enable to recreate empty directories in the destination directory. It is particularly useful in its disabled mode, so empty directories are not copied.
@ENDNODE


@NODE CopyHierarchyItem "BrowserII.guide/MenuItem: BrowserII/Copy Mode/Copy Hierarchy"
@{START}
@{CHAP1 "Copy Hierarchy Copy Mode"}

This option is set by default. If not, the contents of source directories and subdirectories will be copied in the destination directory all together.
@ENDNODE


@NODE CopyFlagsSub "BrowserII.guide/MenuItem: BrowserII/Copy Flags"
@{START}
@{CHAP1 "Copy Flags"}

@{SUB 40 "Clone"}Identical sum of the 3 following options.@{END2}
@{SUB 40 "Date"}Copy the date of the source file.@{END2}
@{SUB 40 "Protect"}Copy the protection bits of the source file (reset 'adw').@{END2}
@{SUB 40 "Comment"}Copy the comment of the source file.
@ENDNODE


@NODE DeviceListSub "BrowserII.guide/SubMenu: BrowserII/Device List"
@{START}
@{CHAP1 "Device List"}

The options below affect the contents of the main window. The term device always means here DOS device, and not an exec device.

@{SUB 40 "Devices (Volume)"}Show devices with their mounted volume.@{END2}
@{SUB 40 "Devices"}Show all devices.@{END2}
@{SUB 40 "Volumes (Device)"}Show mounted volumes with their associated device.@{END2}
@{SUB 40 "Mounted Volumes"}Show mounted volumes (mutually exclusive with previous option).@{END2}
@{SUB 40 "Unmounted Volumes"}Show volumes that are not currently inserted in a device. They are displayed in boldface.@{END2}
@{SUB 40 "Standard Assigns"}Show Assigns.@{END2}
@{SUB 40 "Defered Assigns"}Assigns created with the DEFER flag of the C:Assign command.@{END2}
@{SUB 40 "Path Assigns"}Assigns created with the PATH flag of the C:Assign command.@{END2}

@{SUB 40 "Volume Size"}Show size of mounted volumes.@{END2}
@{SUB 40 "Volume Free Space"}Show available free space in mounted volumes.@{END2}
@{SUB 40 "Volume Used Space"}Show space used on mounted volumes.@{END2}
@{SUB 40 "Volume % Used"}Show space used on mounted volumes in %.@{END2}

@{SUB 40 "Alternate"}Switch between the two possible @{" configurations " link AlternateDeviceList}.@{END2}
@{SUB 40 "Zip Window"}Zip the main window on Alternate. The zipped size can be @{" snapshotted " link Snapshots} too.
@ENDNODE


@NODE AlternateDeviceList "BrowserII.guide/Alternate Device List"
@{START}
@{CHAP1 "Alternate Device List"}

You can store two prefered Device List configurations in you want. To switch between the two configurations, use the menu short cut. To edit the alternate configuration, select Alternate menu, and then set the preferences as usual. They will take effect immediately. The next time you Alternate, you will turn back to the other device list configuration, and so on...

The default configuration is the one which is active when you save your configuration. The other one is saved as Alternate.
@ENDNODE


@NODE OptionsSub "BrowserII.guide/SubMenu: BrowserII/Options"
@{START}
@{CHAP1 "General Options"}

@{SUB 60 "Keep selected"}Keep the selected entries after an action@{END2}
@{SUB 60 "Toggle selections"}Clicking a selected entry deselects it.@{END2}
@{SUB 60 "ASynchronous actions"}Let this option ON. This is for debug purpose.@{END2}
@{SUB 60 "Open process status window"}Open an information window for copy, delete...@{END2}
@{SUB 60 "AutoCmds override icon's default tool"}Give priority to @{" AutoCmds " link AutoCmds} rather than default tool.@{END2}
@{SUB 60 "Auto-select associated .info files"}(not yet implemented)@{END2}
@{SUB 60 "Use window font in requesters"}By default, requesters use screen font.@{END2}
@{SUB 60 "Quiet CheckSize"}Don't request at the end of Check Size action.@{END2}
@{SUB 60 "Display directory disk usage"}See @{" Jauges " link Jauges}.@{END2}
@{SUB 60 "Display proportion of visible data"}See @{" Jauges " link Jauges}.@{END2}
@ENDNODE


@NODE SaveConfig "BrowserII.guide/MenuItem: BrowserII/Save Config"
@{START}
@{CHAP1 "Save Config"}

Saves all options relative to first menu BrowserII, as well as the contents of the @{" select requester " link SelectRequester}.

@{b}Note to v2.x users@{ub}:
This no more saves preferences about the Current and Alien window. Use @{" snapshot " link Snapshots} for that.
@ENDNODE


@NODE QuitItem "BrowserII.guide/MenuItem: BrowserII/Quit"
@{START}
@{CHAP1 "Leaving @{B2}"}

We did not plan for implementing this option, but a few crazy guys screamed for it, so here it is... Anyway, you won't be surprised to read that you won't be able to quit @{B2} as long as one (or several) of the Asynchronous actions are still running, or if another application has a window open in @{B2}'s custom screen. By the way, @{" iconifying " link Iconify} @{B2} is possible while some actions are in progress.
@ENDNODE


@NODE WindowMenu "BrowserII.guide/Menu: Window"
@{START}
@{CHAP1 "Window Menu"}

All items and relative options in this menu are relative to the active (current) window. Some items are specialised to some kind of windows, and may be disabled depending on the active window.
@ENDNODE


@NODE RescanItem "BrowserII.guide/MenuItem: Window/Rescan"
@{START}
@{CHAP1 "Rescan"}

Rescans the content of the directory which corresponds to the active window. Since version 2.0, @{B2} scans directories asynchronously. You can iconify a directory while scanning. If you close a window while directory is being scanned, scan is aborted. Except for Alien Window that has no rescan method, this is valid for all other windows, including trees: the whole directory tree is rescanned.
@ENDNODE


@NODE OpenSub "BrowserII.guide/SubMenu: Window/Open"
@{START}
@{CHAP1 "Open SubMenu"}

@{SUB 40 "Open Parent"}Opens the parent directory of the active window (if any).@{END2}
@{SUB 40 "Open Dir..."}Open a directory by entering it's pathname, relative to current window. For example // to go back two levels.@{END2}
@{SUB 40 "Open Alien"}Opens the Alien Window which contains a listing of all @{" iconified " link Iconify} windows.@{END2}
@{SUB 40 "Open Status"}Opens the status window of all background processes.@{END2}
@{SUB 40 "Make Tree"}not yet implemented (Will convert a dir in tree window).@{END2}
@ENDNODE


@NODE ZoomSub "BrowserII.guide/SubMenu: Window/Zoom"
@{START}
@{CHAP1 "Zoom SubMenu"}

@{SUB 40 "UnZoom"}Sizes the window to it's smallest size.@{END2}
@{SUB 40 "Zoom All"}@{" Zoom " link Zoom} the window to show all files.@{END2}
@{SUB 40 "Zoom Dirs"}@{" Zoom " link Zoom} the window to show dirs only.@{END2}

@{SUB 40 "Taller"}Makes the window Taller.@{END2}
@{SUB 40 "Wider"}Display the window with one more column.@{END2}
@{SUB 40 "Thiner"}Remove a column but keep window height.@{END2}

@{SUB 40 "Show MaxSize"}Sizes window to its @{" maximum size " link Zoom}.@{END2}
@{SUB 40 "Show MinSize"}Sizes window to its @{" minimum size " link Zoom}.
@ENDNODE


@NODE TreeSub "BrowserII.guide/SubMenu: Window/Tree"
@{START}
@{CHAP1 "Tree SubMenu"}

@{SUB 40 "Fold All"}Folds all directories in a @{" tree window " link Tree}.@{END2}
@{SUB 40 "Unfold All"}Unfolds all directories in a tree window.
@ENDNODE


@NODE SelectMatchItem "BrowserII.guide/MenuItem: Window/Select Match"
@{START}
@{CHAP1 "Select Match"}

Opens the @{" selection requester " link SelectRequester}, and selects, in the current window, the entries matching the criteria you have given.
@ENDNODE


@NODE SelectAllItem "BrowserII.guide/MenuItem: Window/Select All"
@{START}
@{CHAP1 "Select All"}

Selects all entries in the active window!
@ENDNODE


@NODE FiltersSub "BrowserII.guide/SubMenu: Window/Filters"
@{START}
@{CHAP1 "Filters"}

Another important feature of @{B2}. Only the files which match the criteria you set will be displayed, but all will be counted (look at the information displayed at the bottom of the window).

@{SUB 40 "Set..."}Calls the filters requester.@{END2}
@{SUB 40 "No .info"}Hide .info files. This filter comes on top of the other filters.@{END2}
@{SUB 40 "Clear"}Removes all filters, all files and dirs will be visible.@{END2}
@{SUB 40 "Invert"}Reverses the action of all filters, so all visible files will be hidden and vice-versa. Useful for checking whether a file which you expect to be there has not been hidden through the action of one of the filters. In a directory tree, directories cannot be hidden.
@ENDNODE


@NODE FileInfoSub "BrowserII.guide/SubMenu: Window/File Infos"
@{START}
@{CHAP1 "File Infos"}

@{SUB 40 "Size in Bytes"}Show file size in bytes.@{END2}
@{SUB 40 "Size in blocks"}Show file size in blocks.@{END2}
@{SUB 40 "Protection"}Show protection bits. See @{" multiuser " Link Network} support.
@{B2} defines two more customs bits named C and L.
If bit C is set, file/dir has a comment.
If bit L is set, file/dir is a link.@{END2}
@{SUB 40 "Owner"}Show file owner. Requires @{" accounts.library " Link Network}.@{END2}
@{SUB 40 "Group"}Show file owner group. Requires @{" accounts.library " Link Network}.@{END2}
@{SUB 40 "Date"}Show file date in AmigaDOS format.@{END2}
@{SUB 40 "Time"}Show file time.@{END2}
@{SUB 40 "File Type"}Show @{" file type " link "whatis.library"}. Requires whatis.library.@{END2}
@{SUB 40 "Comment"}Show file comment.@{END2}
@{SUB 40 "Link"}Show link if file is a link. (Not if @{" Turbo Scan " link WindowOptionsSub} is on).@{END2}

@{SUB 40 "Drawer Arrow"}Put an arrow to the left of directories in tree windows.@{END2}
@{SUB 40 "Drawer Jauge"}Display a directory size jauge for each directory in trees.
@ENDNODE


@NODE SortSub "BrowserII.guide/SubMenu: Window/Sort by"
@{START}
@{CHAP1 "Sort"}

@{SUB 40 "Name"}Sort entries by name.@{END2}
@{SUB 40 "Date"}Sort entries by date/time.@{END2}
@{SUB 40 "Size"}Sort entries by size.@{END2}

@{SUB 40 "Entry Type"}Directories are displayed first.@{END2}
@{SUB 40 "File Type"}Sort by @{" file type " link whatis.library} and then by name/date/size.
@ENDNODE


@NODE AutoZoomSub "BrowserII.guide/SubMenu: Window/Auto Zoom"
@{START}
@{CHAP1 "Auto Zoom"}

ThisTR C  , , ,   \2z sub menu concerns the automatic @{" zoom " link Zoom} feature. When some events occurs, it is possible to automatically zoom a window. Just like everything in the Windows menu, these options are relative to the current window.

@{SUB 40 "Zoom All"}Maximum zoom at the end of the @{b}first@{ub} scan.@{END2}
@{SUB 40 "Zoom Dirs"}Like previous but show only directories.@{END2}

@{SUB 40 "Rescan"}Zoom window after each directory rescan.@{END2}
@{SUB 40 "Update"}Zoom window after copying/deleting files.@{END2}
@{SUB 40 "New File Infos"}Zoom window when changing file infos.@{END2}
@{SUB 40 "Tree Folding"}Zoom window when (un)folding dirs in a tree.@{END2}

@{SUB 40 "Only 1 Column"}Constraint the zoom to a single column.@{END2}
@{SUB 40 "Only if Zoomed"}Re-Zoom the window only if it was already before.
@ENDNODE


@NODE WindowOptionsSub "BrowserII.guide/SubMenu: Window/Options"
@{START}
@{CHAP1 "Window Options"}

@{SUB2 ""}Find type by name@{ub}
The @{" file type " link whatis.library} is identified only by pattern matching on the filename. Fast but not very safe since names are not always meaningful for file types. (Requires whatis.library)@{END2}

@{SUB2 ""}Find type by scan@{ub}
The @{" file type " link whatis.library} is not only identified by pattern matching but also by reading the first few bytes of the file. This is much more powerful than the previous option but slows down directory scan. (Requires whatis.library)@{END2}

@{SUB2 ""}Turbo Scan@{ub}
Scans the directory using dos.library/ExAll() instead of Examine()/ExNext(). This is faster, and minimize disk trashing for concurrent accesses. I presume it should be even more faster on remote network directories. The dark side:
@{SUB3 ""}You don't get size in blocks for files. (ExAll() limitation)
(So you get a computed size using size in bytes)@{END3}
@{SUB3 ""}You don't get file types. (For speed condition).
Anyway, types are examined at doubleclick time.@{END3}
@{SUB3 ""}Links are not recognized/read actually. This an AmigaDOS and/or FFS bug.
It may be fixed in a future release of the OS.@{END2}

@{SUB2 ""}Keep Window@{ub}
A new window is opened when you doubleclick on a directory. This mode is forced if you SHIFT-doubleclick or MMB-doubleclick while the default keep mode is Auto Iconify or Auto Close.@{END2}

@{SUB2 ""}Auto Iconify@{ub}
When you doubleclick on a subdirectory, the current directory is iconified and the new one is open in the same window. This mode is forced if you SHIFT-doubleclick or MMB-doubleclick while the default keep mode is Keep Window.@{END2}

@{SUB2 ""}Auto Close@{ub}
When you doubleclick on a subdirectory, the current directory is flushed from memory and the new one is open in the same window.@{END2}

@{SUB2 ""}Auto Disk Load@{ub}
@{b}This is not yet implemented.@{ub}
The window will be associated to a dos device such as DF0:, and will load the directory of the inserted disk in this device automatically.@{END2}

@{SUB2 ""}Local Properties@{ub}
When set, this option prevents sub directories to inherit this directory properties. This is to be used in conjunction with @{" snapshots " link Snapshots}.
@ENDNODE


@NODE PropertiesSub "BrowserII.guide/SubMenu: Window/Properties"
@{START}
@{CHAP1 "Window Properties"}

The properties of a window are the set of local window attributes: Filters, File Infos, Sort, AutoZoom and Options.

@{SUB 40 "Copy"}Stores the properties of current window in an internal buffer for a later Paste operation.@{END2}
@{SUB 40 "Paste"}Pastes the last copied properties to the current window.@{END2}
@{SUB 40 "Affect Volume"}Copies the properties of the current window to all the windows belonging to the same volume.@{END2}
@{SUB 40 "Affect All"}Copies the properties of the current window to all the windows.@{END2}
@{SUB 40 "Restore Prefs"}Restores the @{" preferences " link Snapshots} for this window.@{END2}

@{SUB 40 "Snapshot"}Saves this window settings as @{" preferences... " link Snapshots}.@{END2}
@{SUB 40 "UnSnapshot"}UnSaves window preferences.
@ENDNODE


@NODE ActionsMenu "BrowserII.guide/Menu: Actions"
@{START}
@{CHAP1 "Actions"}

This menu gives access to all basic file operations, except drag and drop ones, ie copy/move/link. They are all executed in the background. This means that even when they pop up a requester, @{B2} is not busy. You can perform some other things if you need before answering the requester.
@ENDNODE


@NODE RenameItem "BrowserII.guide/MenuItem: Actions/Rename"
@{START}
@{CHAP1 "Rename"}

Renames the selected entries. If several entries are selected, you can rename them with jokers  la ARP. If you are not familiar with this, exercise on some files of no value before using this action for good. For example, you can rename mod.#? to #?.mod, or more generally, x#?y to z#?t.

There is a Capitalize option, also available for Copy As and Move As operations which converts file names to lower case, except for the first letter to upper case. Useful when copying files from MSDOS disks.
@ENDNODE


@NODE MakeDirItem "BrowserII.guide/MenuItem: Actions/Make Dir"
@{START}
@{CHAP1 "Make Dir"}

Creates subdirectories in the active window. You can create several of them by separating names with spaces.

Example: Work Games Work/Src

Warning: Games Work/Src Work would not be valid because you attempt to create a subdirectory of Work before having created Work itself.
@ENDNODE


@NODE DuplicateItem "BrowserII.guide/MenuItem: Actions/Duplicate"
@{START}
@{CHAP1 "Duplicate"}

Makes copy of file(s), you will be prompted for new names. The requester is the same as for @{" rename " link RenameItem}, and same rules apply.
@ENDNODE


@NODE SetDateItem "BrowserII.guide/MenuItem: Actions/Set Date"
@{START}
@{CHAP1 "Set Date"}

Changes the date stamp of the selected entry (entries) to the actual date. Since v2.20, date can be modified.
@ENDNODE


@NODE SetCommentItem "BrowserII.guide/MenuItem: Actions/Set Comment"
@{START}
@{CHAP1 "Set Comment"}

Modify/Create a file comment for the selected entries. If file already has a comment, it is displayed as default in the requester. File comments are limited to 80 characters.
@ENDNODE


@NODE SetProtectItem "BrowserII.guide/MenuItem: Actions/Set Protect("
@{START}
@{CHAP1 "Set Protect"}

Change the protection bits of the selected entries.

You cannot set the pseudo C bit, as it is not real a protection bit, it just tells you that the selected entry has a comment. But you can reset it, this will delete the comment. Use with care, it is easy to get a lot of comments gone forever in no time.

The pseudo L bit is not available for the same reason.

You can also set the Other/Group protection bits but has no meaning outside a @{" multiuser/network " link Network} environment. FFS just ignores them.
@ENDNODE


@NODE SetOwnerItem "BrowserII.guide/MenuItem: Actions/Set Owner"
@{START}
@{CHAP1 "Set Owner"}

Changes the owner of the file. This has sense only within a @{" multiuser " link Network} or @{" network " link Network} environment. You must have the rights to do it. See your network/multiuser documentation.
(Requires accounts.library)
@ENDNODE


@NODE AddIconItem "BrowserII.guide/MenuItem: Actions/Add Icon"
@{START}
@{CHAP1 "Add Icon"}

Add an icon to selected file(s) and directories. The Icon is a default icon relative to the file type, and configured in whatis.library database. @{B2} will first search default icons in an assign ICONS:, and in standard ENV:Sys directory. The ICONS: is a workaround the prevent copying KBytes of default icons in ENV:Sys which is by default located in RAM:. The same rule apply to given separate shell command AddIcon.

Of course, requires whatis.library.
@ENDNODE


@NODE CheckSizeItem "BrowserII.guide/MenuItem: Actions/Check Size"
@{START}
@{CHAP1 "Check Size"}

Scans selected files and dirs to compute total size in bytes and blocks of all of them. If you choose to reselect entries, context of selection will be restored (including Enter subdirs) so that next action will be done on same files and dirs. Directories will get their size set. This way, it makes it possible, using rightmost main window @{" jauge " link Jauges}, to determine if a list of files and dirs will fit on destination volume.

In the menu BrowserII/Options, there is an option Quiet CheckSize which disable the requester at the end of the scan. Only directories then get their sizes updated.
@ENDNODE


@NODE InformationItem "BrowserII.guide/MenuItem: Actions/Information"
@{START}
@{CHAP1 "Information"}

Brings up Workbench's info requester. (AmigaDOS 3.0 and higher). Note that currently, workbench must be loaded or nothing will happen.
@ENDNODE


@NODE DeleteItem "BrowserII.guide/MenuItem: Actions/Delete"
@{START}
@{CHAP1 "Delete"}

Deletes the selected entries. You will (fortunately) be asked to confirm. If at least one directory is selected, Delete will delete only empty dirs, while Delete All will delete non-empty selected directories as well.

If the delete process encounters deletion protected files, you will be prompted if you want to override the protection.
@ENDNODE


@NODE Keyboard "BrowserII.guide/Mouse and Keyboard"
@{START}
@{CHAP1 "Mouse and Keyboard"}

@{CHAP2 "Function keys"}

@{SUB 22 "F1"}UnZoom current window.@{END3}
@{SUB 22 "F2"}Zoom current window to see all files and dirs.@{END3}
@{SUB 22 "F3"}Zoom current window to see all directories only.@{END3}
@{SUB 22 "F4"}Iconify current window, or @{B2} if main window is active.@{END3}
@{SUB 22 "F5"}Opens Alien Window.@{END3}
@{SUB 22 "F6"}Opens status window of processes currently running.@{END3}
@{SUB 22 "F7"}Folds all directories in a tree window@{END3}
@{SUB 22 "F8"}Unfolds all directories of a tree@{END3}
@{SUB 22 "S-F1"}Zoom taller@{END3}
@{SUB 22 "S-F2"}Zoom wider@{END3}
@{SUB 22 "S-F3"}Zoom thinner@{END3}
@{SUB 22 "ESC"}Pauses all processes and open their status window.@{END3}
@{SUB 22 "DEL"}Deletes selected files and directories@{END3}
@{SUB 22 "HELP"}Displays the about requester.@{END2}

@{CHAP2 "General mouse with qualifiers usage"}

@{SUB3 ""}Pressing CTRL while selecting files forces Toggle-Select mode. This is important if you do not use the Toggle Selections option. This allow to de-select an entry without de-selecting all. I use this because the toggle-selections mode makes me turn mad! ;-)@{END3}
@{SUB3 ""}Pressing CTRL for a zoom operations (gadgets & function keys) overrides zoom contraints.@{END3}
@{SUB3 ""}Pressing SHIFT before dropping files toggles copy/move mode.@{END3}
@{SUB3 ""}Pressing CTRL before dropping files forces the Request copy mode.@{END3}
@{SUB3 ""}Shift-doubleclick on multiple assigns opens a list of assign components.@{END3}
@{SUB3 ""}If you hold the shift key down while hitting a window close gadget, all windows belonging to directories of the same volume will be closed too, except iconified windows. If you want to get rid of iconified windows too, press CTRL key while closing window.@{END3}
@{SUB3 ""}Shift-doubleclick on directories toggles @{" auto-iconify " link WindowOptionsSub} mode.@{END3}
@{SUB3 ""}Ctrl-doubleclick on directories/volumes open a @{" tree with files " link Tree}.@{END3}
@{SUB3 ""}Shift-Ctrl-doubleclick on TR D  ++,  +K(directories/volumes open a @{" tree without files " link Tree}.@{END3}
@{SUB3 ""}See also @{" 3 button mouse support " link ThreeButtonMouse}.
@ENDNODE
@NODE Jauges "BrowserII.guide/Jauges"
@{START}
@{CHAP1 "Jauges"}

All windows but Alien have two jauges on their left border. The leftmost one always displays the disk percentage of occupied space. And the second one, to the right, displays the directory disk usage or the percentage of visible data depending on the option you choose (See menu BrowserII/Options).

@{SUB 11 "1."}Directory disk usage
If this option is selected, the rightmost jauge displays the proportion of used disk space used by this directory. For example, is you have a volume with no directories (all files are in the root directory), this jauge will say that the directory contains 100% of data present on this disk.@{END2}

@{SUB 11 "2."}Percentage of visible data.
If this option is selected, the rightmost jauge displays the proportion of visible data (in blocks) in this window. (If filters hide some entries of this dir, not all entries are visible!) This is useful for example when you hide .info files, a quick look at this jauge help you remembering that some files are not visible and you should not forget them.@{END2}

@{CHAP2 "Jauges of the main window"}

The leftmost jauge of main window is a copy of the same jauge of active window. If the active window is the main or alien, both main window jauges are empty.

The other jauge will help you to determine if selected files would fit on active volume (volume of active window) if a copy/duplicate operation would be performed. Imagine you want to copy some files on a floppy disk, and you don't know if there is enough free space on this disk for your selected files. You can examine informations in bottom border of windows of course but there is an easier way. Activate the destination window (without deselecting your files), and the second jauge of main window will tell you everything: The leftmost jauge shows the actual disk usage, and the other one what it will become after the copy. Then there is two possibilities. Your files fit on the disk: no problem. Or there's not enough free space: then, the second jauge shows of how much selected files exceeds disk space by displaying a dash (-). The jauge height always means the disk size.

@{b}Note@{ub}: Block size between source and destination volumes are assumed to be the same.
@ENDNODE
@NODE SelectRequester "BrowserII.guide/Select Requester"
@{START}
@{CHAP1 "Select and Filters Requesters"}

@{CHAP2 "Filters"}

@{B2} tests all files against the criteria set in this requesters, and shows those for which the test is positive.@{END3}

@{SUB3 ""}Files
Can be set to Yes, No or Match. If Match is selected, files will be checked against the following criteria.@{END3}

@{SUB3 ""}Dirs
The same for directories.@{END3}

@{SUB3 ""}Pattern
This must be a valid AmigaDOS pattern.
Examples:
@{SUB 35 "#?.doc"}shows only the files ending in .doc.@{END4}
@{SUB 35 "~(#?.(o|dbg))"}hides als files ending in .o or .dbg.@{END3}

@{SUB3 ""}Since
Shows files with more recent date than the date entered (AmigaDOS Date format)@{END3}

@{SUB3 ""}Before
The same in the other direction.@{END3}

@{SUB3 ""}Min Size
If the file is smaller, it is hidden.@{END3}

@{SUB3 ""}Max Size
If the file is bigger, it is hidden.@{END3}

@{SUB3 ""}Protection bits
Shows only the files with the specified bits.

Example:@{SETTABS 16 20 24 28 32 36 40 44 48 52 58}
	L	C	H	S	P	A	R	W	E	D
	-	hides files which have the script bit set
	+	shows only files with the archive bit set

If you have installed the whatis.library, you'll be able to match files by type. If one or more positive file types are selected (without the exclude option), entries must match one of them. If no positive file types are selected, all files types are valid except excluded file types. For each file type, you can select associated subtypes.@{END2}

@{CHAP2 "Select Match"}

This requester is the same as precedent one, but with one gadget more, Enter subdirs. This enables you to virtually select files in selected directories.

As we say in french, a good example is better than a long speech. Suppose you want to clear archive bit of all files you have in a disk.

@{SUB 14 "1."}Open volume's window.@{END3}
@{SUB 14 "2."}Call Select Match.@{END3}
@{SUB 14 "3."}Put Files to ? and Dirs to N.@{END3}
@{SUB 14 "4."}Clear all protection bits and set A to +.@{END3}
@{SUB 14 "5."}Switch on "Enter subdirs".@{END3}
@{SUB 14 "6."}Validate the requester.@{END3}

Result: All files which have their archive bit set are selected, but any directories are selected since you set Dirs to N. Now:

@{SUB 14 "7."}Hold <Shift> key while selecting all dirs of this window.@{END3}
@{SUB 14 "8."}Call Set Protect.@{END3}
@{SUB 14 "9."}Switch protection bits to:@{SETTABS 16 20 24 28 32 36 40 44 48 52 58}
	L	C	H	S	P	A	R	W	E	D
	-	@{END3}
@{SUB 14 "10."}Validate.@{END3}

Et voil!

Each time you click left mouse button over a @{B2} window, if you @{b}don't@{ub} hold <Shift> at the same time, the file under the mouse pointer, if any, becomes selected, all others are deselected, and Enter subdirs bit is cleared. That is to say after each operation with enter subdirs, this option is reset (except if you always hold shift key), and must be set again if you want to do another action with this option.

Within actions with enter subdirs, if a directory pass through the filters, the action will take place also on the directory itself once it has been examined. But even if the directory doesn't pass through the filters, it will be entered, and files within this dir may be affected by the action.

This is a bit different for Copy action. If a directory doesn't pass through the filters, it won't be entered, and files within this dir will never be copied. But read carefully: Empty directories may be considered useless. So you can decide not to copy them by switching off this option. But Copy process is even more powerful. If for example, you decide not to copy empty dirs, if you copy a directory with enter subdirs and any entries of this dir pass through the filters, the directory will be considered as empty and won't be created in destination path. This makes it possible to make selective backups, without useless directories in destination volume.@{END1}
@ENDNODE
@NODE FileExistsRequester "BrowserII.guide/File Exists Requester"
@{START}
@{CHAP1 "File Exists Requester"}

When attempting to copy (or move) a file over an already existing one, @{B2} will pop up a sophisticated requester. A lot of choices are then available, from the simple Cancel to more complicated options combinations.

The requester is composed of several parts: The buttons, the checkmarks, the string gadgets, and the requester text. The string gadgets are present only once New Name button has been pressed.

@{CHAP2 "Buttons"}

@{SUB 40 "Retry"}Retry operation (You may have changed checkmark states).@{END3}
@{SUB 40 "Open Dir"}Opens the directory where the problem happened.@{END3}
@{SUB 40 "Version"}Reads both files versions (using C:Version command).@{END3}
@{SUB 40 "Update"}Replace file only if newer than existing one.@{END3}
@{SUB 40 "Overwrite"}Overwrite the file.@{END3}
@{SUB 40 "NewName"}Enter new name for the file to create.@{END3}
@{SUB 40 "Skip"}Ignore the file and skip to next one.@{END3}
@{SUB 40 "Cancel"}Cancels the whole operation.@{END2}

@{CHAP2 "Checkmarks"}

@{SUB3 ""}Backup replaced files
If Backup replaced files is checked, each existing file will be renamed to <oldname>~. If <oldname>~ already exists, it is deleted first.@{END3}

@{SUB3 ""}Repeat action to all existing files
This option, when on, affects the following buttons:
Update, Overwrite, NewName, Skip.

@{b}Beware@{ub}:
this option is on by default, thus selecting Skip will skip all existing files. You must remember to uncheck this option before hitting Skip if you want to perform a by file skip operation.

@{b}Note@{ub}:
For NewName to work with the all option, you must also perform a pattern rename. (Example: #? -> #?.new)
@ENDNODE
@NODE Commodity "BrowserII.guide/Commodity"
@{START}
@{CHAP1 "Commodity"}

@{B2} is a commodity. It supports the standard tooltypes:

@{SUB 30 "CX_POPUP"}(default is YES) set to NO or FALSE to start @{B2} in iconified state. Can be set in the (eventual) project icon in the SYS:WBStartup drawer.@{END2}
@{SUB 30 "CX_POPKEY"}(default is control esc)@{END2}
@{SUB 30 "CX_PRIORITY"}(default is 0)@{END2}
@{SUB 30 "CX_UNIQUE"}(default is FALSE) Set to YES or TRUE if you do not want to run BrowserII several times. If set to true, running BrowserII while it is already running will bring its screen to front.@{END2}

There is a new mode for @{B2}'s screen which is the frontmost screen, if public. Used with hotkey, you can now pop up browser in the current screen when it is @{" iconified " link Iconify}, if you like to! Hitting hotkey while @{B2} is running but not iconified will bring its screen to front.
@ENDNODE
@NODE WorkbenchSupport "BrowserII.guide/Workbench Support"
@{START}
@{CHAP1 "Workbench Support"}

If Workbench is loaded when you start @{B2}, an @{" AppIcon " link Running} is installed. This icon can be used to uniconify @{B2}. You can also drop icons over it, and the corresponding directory will be open in @{B2}.

When @{B2} is used in Workbench screen, directory windows, as well as Alien and Devices windows are AppWindows. If you release an icon over a @{B2} window, the corresponding directory will be open in that window, and the preceding directory will be iconified.
@ENDNODE
@NODE ExternalCommandBD "BrowserII.guide/External command BD"
@{START}
@{CHAP1 "External command BD"}

An external command named BD is provided with @{B2}. This is an interface between shells and @{B2}. Running BD with no arguments will run @{B2} if it is not yet running, and make @{B2} open and scan your current shell directory. You can also specify one or more directories as argument to BD.

Note: @{B2} must be in your shell Path if it is not yet running.

BD can also be run from workbench. If you doubleclick on the Tool BD, @{B2} will open the directory containing BD. But you can also have project icons with BD as default Tool. In this case, if your project has no Tool-Types, the current dir will be open, otherwise, you can edit your project Tool-Types, and specify as many directories as you want. You should also specify in the BD Tool Tool-Types the full path to @{B2}, that is to say in which directory you have @{B2}.

In example given, @{B2} should be in SYS:Utilites directory.

Template:

	@{CODE}Dirs/M,TREE/S,TREEWITHFILES/S,RESCAN/S,ZOOMDIRS/S,ZOOMALL/S,QUIET/S,SCANDEVS/S,SYNC/S@{BODY}

@{SUB 35 "Dirs"}Several dirs can be asked to be (re)scanned@{END2}
@{SUB 35 "TREE"}Tells to open trees rather than dirs.@{END2}
@{SUB 35 "TREEWITHFILES"}Tells to open trees with files rather than dirs.@{END2}
@{SUB 35 "RESCAN"}Always scans dir. Even if already open.@{END2}
@{SUB 35 "ZOOMALL"}@{" Zoom " LINK ZOOM} window, even with AutoZoom is not active.@{END2}
@{SUB 35 "ZOOMDIRS"}Same as ZOOMALL, but for dirs only.@{END2}
@{SUB 35 "QUIET"TR E  **,  G}Do not activate window, nor bring screen to front.@{END2}
@{SUB 35 "SCANDEVS"}Rescan main window (the one with devices/volumes/assigns)@{END2}
@{SUB 35 "SYNC"}Operate synchronously to prevent disk trashing if more than one dir asked on the same device unit.
@ENDNODE
@NODE BrowserII.menu "BrowserII.guide/User configured menus"
@{START}
@{CHAP1 "User configured menus"}

@{CHAP2 "BrowserII.menu file format"}

You will best understand what follows if you have in front of you a printout of the @{" example con    5 `N $  #  "  !                                               
  	                                                  ] fig file " link //BrowserII.menu-example/Main} supplied.

A configuration file looks like a structured program. You should indent your lines to make the file as readable as possible.

The configuration file is named BrowserII.menu and must be in the same place as @{B2}.

The configuration file defines the menus you want, and what commands they will run. Comments begin with a #, and continue until the end of the line. Upper and lowercase do not make a difference.

@{CHAP3 "Keywords"}

@{SUB4 ""}CMDWIN <console_name>
This will override the default console used for Command output which is

	@{CODE}CON:0/0011/0640/0100/Command window/AUTO/CLOSE/WAIT.@{BODY}

This should be placed anywhere in the file but better be at top of it. This console will in 2.0 have a close gadget, a deferred open, and wait for the user to hit the close gadget before closing the window. Under 2.0, if you use Command in Simple mode, you @{b}must@{ub} specify the WAIT option for your console, or it will close before you could read it.@{END4}

@{SUB4 ""}SHELLWIN <console_name>
This will override the default console used for SHELL commands which is

	@{CODE}CON:0/0011/0640/0100/Shell/Auto/Close/Wait.@{BODY}

This should be placed anywhere in the file but better be at top of it.@{END4}

@{SUB4 ""}SHORTCUTQUAL <qualifier string>
This can be used to add keys to access menus short-cuts. For example, you can use Left-Amiga, ALT, SHIFT or Ctrl. In fact useful values are lcommand or  (nothing). The first one allows the left amiga key to work as well as the standard right amiga key, while  allows to short cut menus with the single letter key. Any way, all commodities keywords are working, like:

	lshift
	rshift
	lalt
	ralt
	control
	.@{END4}

@{SUB4 ""}COLOR <n>
This will set the foreground pen color for new items. You can change this as often as you want. The arguments is the pen number to use. The default is window detail pen.

This feature is active only under AmigaOS 2.x, as NewLookMenus of AmigaOS 3.x resets all the pens to system default values.@{END4}

@{SUB4 ""}MENU <menu_name>
Creates a new menu. Each menu must have at least one item or submenu.@{END4}

@{SUB4 ""}SUBMENU <submenu_name>
Creates a new submenu. Each submenu must have at least one item and can't have submenus. Each SUBMENU must end with an ENDSUBMENU.@{END4}

@{SUB4 ""}ENDSUBMENU
See SUBMENU.@{END4}

@{SUB4 ""}ITEM [{short-cut}] <item name> [KEY <hot key>] [KEYTEXT <text>] [WBTF] [REQUEST] <command def>
Defines a new menu item. Each item definition must have an <item_name> and an associated command. Each item is linked to the current menu or submenu. An ENDSUBMENU statement tells @{B2} to attach the next items to the current menu rather than to the current submenu. Any of the menu, submenu and item names may contain whitespaces. In this case, enclose the name in double quotes. A command character may be defined for the menu item by putting the character after the ITEM keyword and surroundinf it with {}'s.@{END4}

@{SUB4 ""}KEY <hot key>
Allows more extensive short-cuts for menus. <hot key> is a commodities string, such as control x, f10, or anything you want.@{END4}

@{SUB4 ""}KEYTEXT <text>
(AmigaOS 3.x only)
Maybe be any text you want, but intended to help remember menu extended short-cuts. You may for example use KEYTEXT ^x for previous KEY control x. This text will be right aligned in the menu strip.@{END4}

@{SUB4 ""}WBTF
Brings workbench to front just after running the command.@{END4}

@{SUB4 ""}REQUEST
Opens a requester enabling you to modify the command before running it. Not available for WB mode.@{END3}

Command syntax is described below.@{END4}

@{SUB4 ""}<command_def>
Programs can be run in three ways: RUN, SHELL, and WB. For all modes, STACK and PRI are optional. If STACK is less than 40 bytes, or if no stack is specified, the stack will be set to the ParM's task stack. That is to say the stack size at the time ParM was run. There's an exception: If ParM is resident, ParM stack will always be 40 bytes.

@{SUB 20 "1)"}RUN syntax

	@{CODE}RUN [WIN console_window] [STACK n] [PRI n] command [args][;command [args]].@{BODY}

This mode creates a background shell. This mode should be used for scripts. If the bit s of your script file is set, it is automatically sourced (No need for the execute command). Redirection can be done in this mode. You can specify several commands separated with semicolons (;). If you want selected files to be passed as arguments, you may place square brackets [] at insertion position.

There is an alternative to get arguments with a full pathname, rather than a path relative to the current directory (active window). Just put [:] instead of [] in the command line.

But be warned. In most cases, @{b}this is not necessary@{ub}, and dangerous! Because volume names may not be unique, files passed as parameters may not be the ones you selected. Current directory is a lock and @{b}is@{ub} unique. Anyway, it can be useful when giving file names to an already loaded running process with a current dir different from the selected files' directory. For example, you get two ARexx examples in this archive that need full path arguments, View.adpro and DeliPlay.rexx.

There is another drawback: arguments have longer names, and as a command line is limited to 512 bytes, you cannot give as many arguments to a command as with a current-dir relative path.@{END5}

@{SUB 20 "2)"}SHELL syntax

	@{CODE}SHELL [WIN console_window] [STACK n] [PRI n] command [args][;command [args]].@{BODY}

This mode now does the same as RUN, but if no window is given, the default shell window is taken.@{END5}

@{SUB 20 "3)"}WB syntax

	@{CODE}WB [STACK n] [PRI n] command@{BODY}
or
	@{CODE}WB [STACK n] [PRI n] command []@{BODY}

with the second version taking arguments

Executes command in Workbench mode. To get arguments, add [] to the command. Warning: If STACK is specified here, it will override the stack specified in the icon of the command. Your command may crash if you ask a smaller stack than in the icon. Do it at your own risk.@{END4}

@{SUB4 ""}BARLABEL
Adds a bar between last item and next one.@{END3}

For all modes but WB, your command is searched first in the resident list and then in the CLI path at the time ParM was run. To know the path in which ParM searches its commands, just issue the Path command in the requester of ParM Command command, or open a NewCLI or Shell from ParM and issue the Path command.

A config file is given as an example.@{END2}

@{CHAP2 "Limitations"}

If a command in RUN or SHELL mode can't be started, you will never know, except you won't see it working.@{END2}

@{CHAP2 "Known bugs"}

See notes for external commands.

	RUN PRI 1 NewShell

does not work. Pri is always 0. Not a ParM bug.@{END2}

@{CHAP2 "Tutorial"}

Now you've read about all ParM is able to do, I think you'd like to know which mode you should use to run your favorite tools.

First, when you want to add a menu item, you should know:

@{SUB 14 "1)"}Does your tool support workbench run?@{END3}
@{SUB 14 "2)"}Do you want your tool to inherit ParM's current dir, or have its own?@{END3}
@{SUB 14 "3)"}Do you want your tool to inherit ParM's CLI Path?@{END3}
@{SUB 14 "4)"}Do you want your tool to use a console window for its output?@{END3}

SHELL mode is now the same as RUN but with a default console if not specified. So, the choice between RUN and WB is easy. If you need a console or the Path, use RUN mode. Else, you can use WB mode.
@ENDNODE
@NODE CmdHotKeys "BrowserII.guide/Command Hot-keys"
@{START}
@{CHAP1 "Command hot keys"}

You can run commands using hot keys. But @{B2} is not a background commodity to run or pop up various utilities. Use special tools to do that such as Yak, or others. Hot keys in @{B2} are active only when a Browser window is active. In fact, hot keys are configured as menu short cuts, so you may consult @{" menu configuration " link BrowserII.menu}, especialy the KEY and KEYTEXT keywords.
@ENDNODE
@NODE AutoCmds "BrowserII.guide/Auto Commands"
@{START}
@{CHAP1 "Auto Commands"}

AutoCommands are commands that are run when you double click on a file depending on the file type. File types are recognised by @{" whatis.library " link whatis.library} so this feature is available only if you have it in your system.

File types configuration is done via @{" whatis.library " link whatis.library} configuration.

AUTOCMDs are configured in the @{" BrowserII.menu" link BrowserII.menu} file with the following syntax:

	@{CODE}AUTOCMD <file type> [WITHSUBTYPES][WBTF][REQUEST] <run mode> [STACK] [PRI] [WIN] <command> []@{BODY}

with the following options

@{SUB 35 "<file type>"}The file type name (you can see it by setting File Infos/File Type)
(i.e: Text, Exe, etc.)@{END2}
@{SUB 35 "<run mode>"}Same as for @{" menu items " link BrowserII.menu} (WB, RUN,.)@{END2}
@{SUB 35 "<command>"}The command you want to execute for this type of file. Same syntax as @{B2}'s @{" menu items " link BrowserII.menu}.@{END2}
@{SUB 35 "WITHSUBTYPES"}AUTOCMD is inherited by subtypes of the type given. If an AUTOCMD exists for a subtype of the given type, it takes precedence over it.@{END2}

Examples:@{CLEARTABS}
	AUTOCMD "Text" WITHSUBTYPES WBTF RUN More []

	AUTOCMD "Source C" RUN Ed []

If you doubleclick on a file and this file is a text file but not C Source file (which is a subtype of Text) then More will be run with the file as argument. If you DoubleClick on a C Source file, then Ed will be run instead of More.

It is strongly recommended to have a look at the complete example given in BrowserII.menu. The file is easy to understand.
@ENDNODE
@NODE whatis.library "BrowserII.guide/File types and whatis.library"
@{START}
@{CHAP1 "File types and whatis.library"}

This library is responsible of file type identification in @{B2}. It now quite know as some other PD software uses it.

The whatis.library comes as a separate package, even though the library itself and a simple configuration file comes with it. The complete distribution can be downloaded from aminet, and makes part of our install disk.

Read the @{" whatis.library documentation " link "whatis.doc/Main"} for moTR F  , , ,   &cěre information about configuration.
@ENDNODE


@NODE "Changes" "BrowserII.guide/Changes"
@{START}
@{CHAP1 "Changes from versions 2.x"}

@{CHAP2 "BrowserII.menu"}

The menus configuration file S:BrowserII.menu has moved to @{B2}'s home directory. The installation script detects an existing file in S: and moves it to the new location of @{B2}.

The crappy ACTIVATEKEY has gone from BrowserII.menu (and ParM.cfg). You must remove it. It has definitely been made obsolete by CX_POPKEY.

You must modify your SHORTCUTQUAL (if any). It now uses commodities syntax. For left Amiga key to work as well as standard right amiga for menu shortcuts:

	@{CODE}SHORTCUTQUAL "lcommand"@{BODY}

For direct shortcuts (without any qualifier):

	@{CODE}SHORTCUTQUAL ""@{BODY}

Browser now requires that each command (either RUN, SHELL or WB) that may take arguments include square brakets [] or [:] where to insert arguments. Commands that don't have [] won't have selected files passed as arguments, and selected files won't be unselected once the command has been run.@{END2}

@{CHAP2 "Save Config"}

The config file DEVS:BrowserII.cfg has also moved to the same location. Although the file format has changed, you will start back from default options when first installing version 3 of @{B2}.

This way, @{B2} has now all its files in a single directory, making easier copying, and ready to use floppy disk based installation.

Note that now, @{" Save Config " link SaveConfigItem} only saves the attributes set in the BrowserII menu.@{END2}

@{CHAP2 "Saving default directory window options"}

Some global window attributes are now local to each window such as autozoom features for example.

These attributes are no more saved with the @{" Save Config " link SaveConfigItem} menus. You must now use the @{" Window/Properties/Snapshot " link Snapshots} menu item, which allow to save the active window properties as local or default configuration.@{END2}

@{CHAP2 "Note to those who had beta 2.9 versions"}

The MMB-doubleclick feature is back to it's original 2.41 function which is toggle Auto-Iconify feature. Directory tree opening is now available with Control-doubleclick or MMB-Double-LMB, because in fact, auto iconify it is much used than opening directory trees, and it's easier this way.@{END2}

See the @{" release notes " link "Release Notes"} for new features.
@ENDNODE


@NODE "Release Notes" "BrowserII.guide/Release Notes"
@{START}
@{CHAP1 "Release Notes"}

@{SUB 15 "1.0"}First Release (30.6.1991)@{END2}

@{SUB 15 "1.1"}Bug fixes.
Added DiskCopy ability.
Moving a device over another device calls SYS:System/DiskCopy, and Duplicate a single device too.
CLI arguments are now quoted only when needed.
A lot of little invisible improvements.@{END2}

@{SUB 15 "1.11"}Bug fixes.
With parm.library 3.4 and higher, RUN modes work under 2.0.@{END2}

@{SUB 15 "2.0"}New features:
Iconification, zoom, jauges, Workbench 2.0 look (under 2.0), parametrable fonts, asynchronous dir scan, and bug fixes.
External command BD.@{END2}

@{SUB 15 "2.03"}Minor bug fix.@{END2}

@{SUB 15 "2.04"}Copy->Move bug fix. (won't delete source file)@{END2}

@{SUB 15 "2.05"}Bug Fix: A CurrentDir() was missing which can cause crash, bug in copy when skipping big file. Removed trash of prop gadget with autozoom under 2.0@{END2}

@{SUB 15 "2.10"}29.5.1992
Optional whatis capability: recognize some files (ILBM, PPDATA, doc,...), You can define new type (see docs of whatis.library).
Auto command (custom command for each filetype ).
@{B2} can work without whatis.library.
AddIcon and CheckSize action added, Back pattern option added (KS2.x only), should be custom in future.
Optional automatic main window Zoom.
Optional save Main window size/position
BD has now 3 new option.@{END2}

@{SUB 15 "2.11"}RunMode was not printed in GetString() title bar when double clicking on a file. fixed.
When changing Sort mode for a window, window was not updated. fixed.@{END2}

@{SUB 15 "2.12"}RunMode on doubleclick was always Shell with WB 2.0. fixed.
After closing a window, check-marks for new current window was not udated. fixed.
WBToFront now supported for WBRun too.
A TAG_DONE was missing for backdrop window open (Pattern Option)

@{b}This was the last KickStart 1.3 version!@{ub}@{END2}

@{SUB 15 "2.20"}For KS 2.0 only, sorry.
arp and req libraries no more needed.
New lovely requesters (Underscored chars are shortcuts).
Bold gadget is default response (Return key).
ESC cancels all requesters.
Processes status windows.
New screen modes available.
Virtual autoscroll screens.
New wonderful Select/Filters requester with file types criteria.
New look in menus.
FileInfo options for alien window entries saved in config file.
OpenDir done relative to current dir (enables opening of // for example)
ShortCuts available when pattern's backdrop window is active.
@{B2} can be iconified even when processes are running.
Touch action changed in SetDate (like AmigaDOS command). You can then modify the date.
Added new internal protection bit L to identify links.
Saving Size/Position of main and alien windows made easier.@{END2}

@{SUB 15 "2.21"}No more truncates french dates.
Works fine with 4000 bytes of stack. (2.20 needed 4500 bytes).
Uses new asl.library V38 screen mode requester.@{END2}

@{SUB 15 "2.22"}New look menus under AmigaDOS 3.0.
New action WB Info under AmigaDOS 3.0.
Bug fix: Mem jauge layout was not correctly handled under V39.
Backdrop pattern now implemented as a layer hook, and no more uses precious chip memory.@{END2}

@{SUB 15 "2.23"}Bug fix. Replaced ExNext() with MatchNext() to fix problems with new V39 DirCache FileSystem.@{END2}

@{SUB 15 "2.30"}Localized.
Screen's bitmap made Interleaved under 3.0 (scrolling much nicer)
Bug fix in WB Info. Did not handle properly .info files.
You can now run a tool by doubleclicking on it's icon. Makes it possible to run projects made of only an icon (for example: clicking on English.info to run software install in english).
Uses system busy pointer under WB3.0.
Bug fix in LoadConfig(). Config revisions were not properly handled.@{END2}

@{SUB 15 "2.31"}Pooled memory under WB3.0
@{B2}'s screen now inherits Workbench3.0's properties. (Your prefered pens,...) See note about pens for 3.0 users.@{END2}

@{SUB 15 "2.32"}Fixed a MungWall hit.
Added Keep Window features, asked by Gilles Soulet.@{END2}

@{SUB 15 "2.33"}Bug Fixes. Files where not unghosted on unmounted volumes.
Memory pools semaphore protected.
Deleting directories in RAM: was not possible under V37 since version 2.23 (due to modif for DCFS). Worked under V39. Fixed.@{END2}

@{SUB 15 "2.34"}Pooled memory under all system versions, including 2.0!@{END2}

@{SUB 15 "2.35"}Font & ScreenMode requesters resized.
Added DEL key as a short-cut for Delete.@{END2}

@{SUB 15 "2.36"}Deleting links to dirs no more deletes dir contents. Only the link is removed.
Added Update button when asking before overwriting a file.
BD file now opens file's parent dir.
Added Affect Volume possibility.
You can now make a directory (MakeDir) with an icon.
Turbo directory scan.@{END2}

@{SUB 15 "2.37"}Drag Selection. (release Shift key to copy/move files).
Menus available when backdrop window is active.
Keep modes now keep the same window rather than opening a new one and then closing parent.@{END2}

@{SUB 15 "2.38"}Middle button handling.
New request mode for copying/moving files (Copy Mode/Request)
Colors saved in 32 bits under V39 for AGA machines. This is useful only if you edit the palette with a special utility. We'll soon release a palette.library which will edit colors in 24 bits, using the colorwheel.
Command line length increased to 512. (You can select more files for External Commands in RUN/SHELL mode).
Added an AppIcon in Workbench.@{END2}

@{SUB 15 "2.39"}AppWindows. (See @{" Workbench Support " Link "WorkbenchSupport"}).
Keeps window size after checksize. (will become optional)
Enhanced (faster) scrolling for big windows.
Added a safety check. If you drag a file and you release it less than 350 ms after selecting it, you will be asked a confirmation for the copy/move operation. You must be a zombie to be faster!
Arrows associated with scrollbar. Not yet functional.
Another bug fix in LoadConfig().@{END2}

@{SUB 15 "2.40"}New iconify gadget image.
Page scrolling (jump) now keeps one common entry between pages.
Scrolling with new arrows.
Menu layout no more locks backgroung actions when status windows are open.
When started from WB, @{B2}'s process get a copy of the WB path, just like if it were started from a shell.
Scrolling support in drag-selection.
Added [:] to get full path arguments.
Pressing MMB while holding LMB no more forces toggle-selection.
Uses palette.library under V39 if available.
Better window placement for big screens.
Added Doc for CTRL key usage. (never been documented before!)
Bug fix in realtime scroll. (window top and/or bottom borders might be trashed).
Fixed several bugs WB Info.
Various other optimisations/bug fixes.
Code cleanup.@{END2}

@{SUB 15 "2.41"}Little fixes.
Bumped revision because a lot of 2.40 beta were distributed.@{END2}

@{SUB 15 "2.42"}(Not released)
Modification of the about requester for registered users.
Support for different kinds of assigns in the device list.
Support for Multiple Assings.
Standard Assigns are now unique. If you have an assign and a volume with the same names and you doubleclick on the assign, you'll get the assign directory, not the volume. This is also true when you drop files over an assign.
@{B2} may now run on any public screen. Not only Workbench.@{END2}

@{SUB 15 "2.43"}(Not released)
Keep prop gadget position between directory rescan.@{END2}

@{SUB 15 "2.44"}(Not released)
Jauges a bit wider under SuperHires screen modes.
New standard 3D scrollbars
Delete & Write protection bits no more copied.@{END2}

@{SUB 15 "2.9"}3.0 pre-release. Reserved to beta testers.@{END2}

@{SUB 15 "3.0"}Directory tree.
Window snapshots.
File comments display.
Links support and display.
Network/MultiuserFileSystem support.
Archive support (Get separate @{OA} package)
Proportional font in windows.
Improved device list display.
Delete when dropping files out of a window.
Deletion of delete-protected files request
Extended menu shortcuts (some kind of hot keys).
Enhanced actions and copy requesters.
Now a commodity (can start in iconified state)
Finds default tools in path.
Removed the title bar memory jauge. Use TitleClock or other.
And more!...@{END2}

@{SUB 15 "3.01"}Added CX_UNIQUE tooltype.
Defered ScanDevs()
Shilt-Alt-Close_Window replaced by easier Ctrl-Close
Background image (under 3.x only) (code by Walter Drwald)@{END2}

@{SUB 15 "3.02"}Improved Background image display speed. (Walter Drwald)
Changed NOAPPICON tooltype to APPICON=<filename>
'Move As' on same volume was not working!!
New guide (AmigaOS 3.1 and above only)
New set of MagicWB icons. Thanks again Walter!
Added all available tooltypes in icons as comments.
New Italian & Spanish catalogs.
Linked with fixed pools.lib from Mike Sinz.@{END2}

@{SUB 15 "3.03"}Fixed bugs/enforcer hits in date decoding (select requester).
Added support for Lzx in "Extract" script.
Added missing information for copy process in guide file.@{END1}
@ENDNTR G  %%,  6ODE
@NODE "Future Plans" "BrowserII.guide/Future Plans"
@{START}
@{CHAP1 "Future Plans"}

The next step in @{B2} is a separate preferences editor for lots of new options, color settings, menus, auto-commands, and . docks! We plan to use the toolmanager.library for this feature. This version has some new features hidden, disabled, or not finished because I'm a bit fed up with @{B2}, after more than one year working on the same tool. Don't blame me please! Anyway, I will try to make more regular updates than before, mainly on Aminet.
@ENDNODE
@NODE "Updates" "BrowserII.guide/Updates"
@{START}
@{CHAP1 "Updates"}

To get the latest version of @{B2}, download it from an AmiNet site in directory util/dir. If you do not have access to AmiNet, you'll then have to wait for Fred Fish disks/CDROMs, or other diskette collections.
@ENDNODE
@NODE "Copyright" "BrowserII.guide/Copyright"
@{START}
@{CHAP1 "Copyright"}

@{B2} is copyrighted by @{b}Sylvain Rougier@{ub} and @{b}Pierre Carrette@{ub}. It may not be sold in or together with commercial software without written approval by the authors. It may be freely distributed on usual Fish disks and CDROMs, Aminet servers and CDROMs, Pearl, CAM, . It cannot be made available for downloading from a server which is a commercial operation. The general principle is that it is forbidden to make a profit through the use or distribution of this program without our written consent.

Distribution by France Festival Distribution after any sort of translation is definitely @{b}illegal@{ub}.
@ENDNODE
@NODE "Registration" "BrowserII.guide/Registration"
@{START}
@{CHAP1 "Registration"}

@{B2} is shareware. If you use it consistently, you ought to send us a contribution or your conscience will itch. Shareware fee is $25. You will then get a so called key file, which will stay valid for ever. You will continue to get updates from usual fish disks and aminet download.

When you are not registered, the About requester appears from time to time. To become a registered user, fill in the @{" Registration Form " LINK "Registration Form/Main"} and send it to the address below. If you have an email, we will be able to send you your keyfile very fast.

Send registration order form to (except U.S. users):

 Sylvain Rougier
 39 rue Carnot
 860 Poitiers
 France

 EMail: rougier@ss3.univ-poitiers.fr
 IRC on channel #AmigaFr: Nickname "Un"
North American registration and support site for BrowserII
is now available from:
 Jon Peterson
 P.O. Box 2661
 San Angelo, TX  76902
 Email: FidoNet 1:383/25 or 26 or 30
 InterNet jon.peterson@twisted.com
  j.peterson22@genie.geis.com

You can always FREQ the latest versions of and BrowserII at
Dark Knights (915)944-9283 in the Amiga files section as
BrowserII_v3.lha.
@ENDNODE
@NODE "Bug reports" "BrowserII.guide/Bug reports"
@{START}
@{CHAP1 "Bug reports"}

If you have an internet access, the best way to send bug reports and enhancement requests is to send an e-mail to:

bvme@chasseneuil.em.slb.com (Pierre Carrette)
rougier@ss3.univ-poitiers.fr  (Sylvain Rougier)

Otherwise, send it by postmail to @{" Sylvain Rougier " LINK "Registration"}.

Several people reported troubles with MFS & CrossDos. It sometimes happened that closing a PCx: directory while removing an MSDOS disk crash the machine with old version of CrossDos. With version 40.19 of CrossDosFileSystem, this bug has gone.
This definitely is *not* a bug of BrowserII.

If you encounter a bug we can't reproduce, please send us a bootable floppy disk and describe how to get it.
You will in turn get a free registration for BrowserII.

@ENDNODE
@NODE "Acknowledgements" "BrowserII.guide/Acknowledgments"
@{START}
@{CHAP1 "Special thanks to"}

Walter Drwald for creating a set of MagicWB icons, new nice formated guide, and screen backfill hook with datatypes image loading.

Cedric Beust, Philippe Brand, Gilles Soulet, Gal Marziou, Jean-Baptiste Yunes, Eric Totel, Olaf Gschweng, Alessandro Galassi, and all other translators, registered users, and beta testers.
@ENDNODE
@NODE "Disclaimer" "BrowserII.guide/Disclaimer"
@{START}
@{CHAP1 "Disclaimer"}

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDER AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THEIR COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
@ENDNODE
a     italiano=     %  &T+ ,  +  *  )  (  '  & [^ 2  T  
(For.doc>  
" For.doc
 For only works under AmigaOS 2.0 and higher.
 Some features requires whatis.library

 "For"  is  a  foreach command.  For each object (file/dir) which pattern
(name  pattern  or  FileType  pattern)  "For"  execute the specified command
replacing all %% (maximum 5) by the name of the current file.

 Eg:

 For *.doc DO copy %% to DOC:

 Search all file ine current dir which match to *.doc and execute the
command:  "copy file.doc to DOC:"

 For #? ALL Type "Icon" DO Protect %% -e

 Look  in  the  current  dir  and  subdirs for icon (.info) files and
execute the command:  "Protect iconfile -d"

 For can get it's default argument in an environnement variable named
"ENV:For".
Usage: For <Patterns> [Files <MATCH|YES|NO>] [Dirs <MATCH|YES|NO>]
[Since <Date>] [Before <Date>] [MinSize <Number>] [MaxSize <Number>]
[PosProtect <L|C|H|S|P|A|R|W|E|D>] [NegProtect <L|C|H|S|P|A|R|W|E|D>]
[Type <FileType0,FileType9|#=SUB|!=EXLC>] [All] [ASync] [ReadSize]
[ShowBytes] [Deep] [ShowFileType] [FileTypeVar <var name>] [FullPathArgs]
[DO <Command [args] [,Command [args] [,.]]>]

Pattern $Pat1 $Pat2 $Pat255: any number of pattern like
 *.doc
 WB:*.info More MuchMore *.doc

FILES:
 MATCH:  look if file match to current pattern
 YES: include all file encounter
 NO: exclude all file encounter
 default YES
DIRS:
 MATCH:  look if dir match to current pattern
 YES: include all dir encounter
 NO: exclude all dir encounter
 default YES

Since $date: include only file older than $date

Before $date: include only file newer than $date

MinSise $size:  include only file bigger than $size

MaxSise $size:  include only file tyner than $size

bit C and L are special bit (not AmigaDOS)
 C means file have a comment
 L means file is a link
PosProtect $protectbit: only include file which have this bits like
 ae
 srwed

NegProtect $protectbit: only include file which have'nt this bits like
 a
 hs

Type filetype_spec_list:

 for Template reason you must enclose your filetype_spec_list by '"'
and each FileType name must be enclosed by open/close brace ()
FileType  is one of the FileType of whatis.library this is not usable if
have not instaled the whatis.library in your system.

 ~ means exlude this FileType
 # means with its sub types

 "~#Exe"  exclude all executable files
 "Icn Disk,Icn Grbg" only include "Icn Disk" and "Icn Grbg"

ALL: enter in all sub directories

ASYNC:  this runs your command asyncrously  (default to FALSE)

READSIZE $size: $size "For" read to recognise FileType

SHOWBYTES $numbyte: byte to display, meaningfull only when SHOWFILETYPE is set

DEEP: Choose Whatis level of Whatis.library, see whatis.library for more
details.
 0 = LightWhatIs  (Slow FileType Recognition, but do better result)
 1 = DeepWhatIs
 Default is LightWhatIs (0)
 
SHOWFILETYPE:  show the FileType name.

DO: your  command  to  execute, replacing all %% (upto 5) by the current
object and ',' by CR enable you doing multinple command at time.
 if you dont supply a DO, SHOWFILETYPE is automaticaly enable emulating
a WhatIs command.
FILETYPEVAR: Variable name to initialize to the last encoutered file type
 (See Extract script example)

FULLPATHARGS:  Give args to 'DO' command with full path

K     italiano=     -  .'`ː 1  0  /  . ^    For.doc.info9     G 9 !   ۀ ZXG 	 9
   9    	   W g    } {  O߀                  <  􈈀    ܪ Ĝ 5 *EGIE y#* yjUW|U ~?񊪀݀ʪ _J  ߀?j  _*       <0 `          0ED0 `EE  j U  *UT5U * >݀ 0 
   *_߀@ *?     9    	`8     0 *  "x  h     o|  J  @  ?`     `       0 TR H  FF,  _J+            ?߈             _@    5         ?; D   UW$U    U  w U 7Uu "?Tzk Tji (W lQz Q c  J@ [ ` W `   ]݀( D    Uh `   5  UGPU   U*h   (U	 "@   BU2	 
    
T5 *    
T
R	J l    T2	 x    R    	 hP  *  qр@  
 ` ]]݀ SYS:Utilities/More  % Icon by Martin Huttenloher   Variable name to initialize to the last encoutered file type
 (See Extract script example)

FULLPATHARGS:  Give args to 'DO' command with full path

K     italiano=     2  3C8& 6  5  4  3 Y^ /  N  
Registration Form4  

 Registration form

 BrowserII

  Name: 6_

  Address: 6_
 6_
 6_
 6_
  
  E-Mail: 6_

  Computer(s): 0_

  Kickstart version (ROM): '_
  Diskdrives: '_
  Memory Available: '_

  Funds enclosed: _

  The most important things to add/change in BrowserII:

 >_
 >_
 >_
 >_
 >_

  Comments, requests & found bugs:
  
 >_
 >_
 >_
 >_
 >_
 ]]݀ SYS:Utilities/More  % Icon by Martin Huttenloher   Variable name to initialize to the last encoutered file type
 (See Extract script example)

FULLPATHARGS:  Give args to 'DO' command with full path

K     italiano=     7  8ц ;  :  9  8 ^    Registration Form.info/    f  9 !   $C( \N(n b 
   9    	   W g    } {  O߀                  <  􈈀    ܪ Ĝ 5 *EGIE y#* yjUW|U ~?񊪀݀ʪ _J  ߀?j  _*       <0 `          0ED0 `EE  j U  *UT5U * >݀ 0 
   *_߀@ *?     9    	08     0 *  "x  h     o|  J  @  ?`     `       0             ?߈             _@    5         ?; D   UW$U    U  w U 7Uu "?Tzk Tji (W lQz Q c  J@ [ ` W `   ]݀( D    Uh `   5  UGPU   U*h   (U	 "@   BU2	 
    
T5 *    
T
R	J l    T2	 x    R    	 hP  *  qр@  
 ` ]]݀ SYS:Utilities/More  % Icon by Martin Huttenloher   Variable name to initialize to the last encoutered file type
 (See Extract script example)

FULLPATHARGS:  Give args to 'DO' command with full path

K     italiano=     <  =Ds ?  >  = ^ .    L	WBRun.doc<  
" WBRun.doc
 A RunBack style program which use parm.library.  Runs programs
 in  WB  mode  from any CLI.  Programs are fully detached.  The
 program you run must support WB startup.

 Usage:

 WBRun Prog [args] [STACK size] [PRI pri] [DELAY sec] [SYNC]

 if you type:

 WBRun ?

 you will get this command template

 Prog/A,Args/M,STACK/K/N,PRI/K/N,DELAY/K/N,SYNC/S:

 that is to say, Prog must be specified, and other args are optionnal.

 Stack will overide icon stack if specified, so use with great care.
 Pri is 0 by default.
 Delay  is  in seconds.  WBRun will wait this delay once prog is loaded
 and run, and can be used to prevent disk trashing in script files.
	When you set the SYNC flag, WBRun will wait for program to finish
	before return. This may be usefull in scripts, especialy in ParM.

	Example:

		ITEM ADPro RUN Assign ADPRO: Work:ADPro ; WBRun SYNC ADPRO:ADPro ; Assign ADPRO:

		This will make it possible to run ADPro in WB mode even with
		commands runned in SHELL mode before and after.
		If you didn't understand, this item creates the ADPRO: assign,
		runs ADPro in WB mode, and then cancels the assign.

	WBRun is pure and can be made resident.

History:

	1.0:	1st version for both 1.3 & 2.0+
	2.0:	Special 2.0 version.
	2.1:	Added SYNC option.

 Authors: Sylvain Rougier, Pierre Carrette.

 Enjoy.

 3    
BrowserII.catalog4     @  Apu D  C  B  A ^    WBRun.doc.info7    f G 9 !    ^eX b 9
   9    	   W g    } {  O߀                  <  􈈀    ܪ Ĝ 5 *EGIE y#* yjUW|U ~?񊪀݀ʪ _J  ߀?j  _*       <0 `          0ED0 `EE  j U  *UT5U * >݀ 0 
   *_߀@ *?     9    	8     0 *  "x  h     o|  J  @  ?`     `       0             ?߈             _@    5         ?; D   UW$U    U  w U 7Uu "?Tzk Tji (W lQz Q c  J@ [ ` W `   ]݀( D    Uh `   5  UGPU   U*h   (U	 "@   BU2	 
    
T5 *    
T
R	J l    T2	 x    R    	 hP  *  qр@  
 ` ]]݀ SYS:Utilities/More  % Icon by Martin Huttenloher  the assign.

	WBRun is pure and can be made resident.

History:

	1.0:	1st version for both 1.3 & 2.0+
	2.0:	Special 2.0 version.
	2.1:	Added SYNC option.

 Authors: Sylvain Rougier, Pierre Carrette.

 Enjoy.

 3    
BrowserII.catalog4     E  F X  W  V  U  T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F $Ő^ /  M   
WhatIs.doc;  TR I  %F%F,  p WhatIs.library

 Copyright  Sylvain Rougier  &  Pierre Carrette.

 1.Usage
 2.User's documentation
 3.Programmer's documentation
 1)

 What  is  whatis.library ? It  is a shared amiga library which allow
programmers  to easily recognize type of files (ilbm, 8svx, maxiplan, exe,
PP,  etc.) BUT the final user (non-programer user) can define new types
so  all programs which use whatis.library can recognize this new type.  At
this  moment  only  BrowserII,  For  and  AddIcon use whatis.library but I
planned  to  rewrite  Icon (a program which make WorkBench 2.0 recognize
files  which  have  no  icon), and I encourage all programmers to use this
library  so users can define new types only one time and every program can
use it.

 For  example,  you  love  graphics, you digitize lots of image with an
official  commercial  program  which  produce  file  ".img",  and you want
BrowserII  to  recognise it. Well, you define this new type in S:FileTypes
and  whatis.library  know  what  it  is, so you BrowserII can do automatic
action on  your  file ".img", but all program which use whatis.library can
reconised  the  ".img"-type  you  just  defined  and  can do what they are
supposed to do with them.

List  of  type  that  whatis.library reconize without any S:FileType file:
DOS_DEVICE  VOLUME  ASSIGN  DIR EXECUTABLE EXECPP40 EXECPP30 EXECPP SCRIPT
TEXT  OBJECT  LIB  IFF  ILBM  ILBM24  ANIM  8SVX SMUS FTXT PREFS TERM ICON
IMPDATA PPDATA ZOO LHARC MEDMOD
 2)
Well,  user. All  you  need  is  to  know  how  to define a new type.  A
sample/starter  FileTypes  file is provided.  First, have a look at it and
then read what follows, I think there is not much to say.

There are 2 methods to scan a file: DEEP and LIGHT.
The  Light  one  is  only  based on the file name and eventualy protection
bits.  It is fast but unsafe.  if you rename an executable as "File.c" and
you ask  for  a  light  scan  (BrowserII  with  "find  type  by  name"),
WhatIs.library think it is a C language source file.
The  DEEP  one  (currently  only one DEEP mode) is more powerfull, but the
slowest  because  each  file  must be open and the first few bytes scanned
(currently 484 bytes), so this slow down directory scans.
FileTypes syntax:

While not necessary, we recommand use of quotes (") delimiters for strings
to avoid mistakes. The # character can be found in strings while it is the
comment starting char.
The "#" char marks the begining of comment until end of ligne.

# example definition:
TYPE "Src Ada"  # you define a new type, it's IDString (curently 9
 # char max) is "Src Ada", this is the string that
 # WhatIs.library will return and you can see in
 # BrowserII  when you ask the "Show file type", it
 # is also the way you identify this FileType.

 SUBTYPE "Text"  # OPTIONNAL: First, the file MUST be a "Text" type,
 # this means that if the file is not of this type
 # it cannot be a "Src Ada"

 INSERTAFTER "Script" # OPTIONNAL: You want the type "Src Ada" to be
 # put after the "Script" type in list. The
 # type list is not alphabetically-sorted.
 # This determine the order in which you see
 # files when you choose "Sort by file type"
 # in BrowserII

 ICONNAME "def_Src Ada"  # OPTIONNAL: this the name of the default
 # icon file name. These files should be in
 # the "ENV:Sys/" directory, where WB 2.0 put
 # its default icons. This will be used by
 # AddIcon (In BrowserII and given cli command
 # This string is returned by GetIconName()

 # now come the decription of the file, if ANY condition below is
 # not satisfied, the WhatIs.library think it is not this filetype.
 # Exepte for OPNAMEPATTERN which is used for light WhatIs() (only
 # based on the file name)

 NAMEPATTERN "#?.ada" # OPTIONNAL: if given, the filename must match
 # this pattern.
 # it is mutualy exclusive with OPTNAMEPATTERN

 OPTNAMEPATTERN "#?.ada" # OPTIONNAL: same as NAMEPATTERN but it is
 # a DEEP scan may override it.
 # it is mutualy exclusive with NAMEPATTERN

 # NAMEPATTERN vs OPTNAMEPATTERN
 # Imagine you are used to name all your image files with .ilbm
 # extension. This way, a LIGHT scan will identify your ilbm files
 # if your specify NAMEPATTERN "#?.ilbm". But ILBM files can also be
 # internally recognized (using DEEP scan). If you specify
 # NAMEPATTERN "#?.ilbm", all ILBM files not ending with .ilbm will
 # not be recognized by whatis.library. But if you specify
 # OPTNAMEPATTERN "#?.ilbm", the DEEP scan will override the (OPT)
 # name pattern, and all ILBM files will be recognized.

 # Now come the DEEP description. It is the heart of recognition
 # process.  You can specify numbers in decimal (begining with a
 # digit), in hex (begining with $), in binary (begining with "%").
 # Strings begin with a letter or with a quote '"'
 # The search is done within the first (currently 484) few bytes of
 # the file.
 # All these conditions are optional, and are considered as TRUE
 # by LIGHT scan.

 COMPAREBYTE 12 $ABADCAFE # Test if the file contains the bytes
  # $AB $AD $CA $FE at offset 12

 COMPAREBYTE $23 "Hello" # Test if the file contains the string
  # "Hello" (i.e the bytes $48 $65 $6c $6f)
  # at offset $23 (decimal 35)

 # in version 2 of WhatIs.library (only under KS2.x) you have an
 # optionnal CASE modifier, this means "A" is different of "a".

 SEARCHBYTE "Good" # Search for "Good" in the first bytes of file.

 SEARCHBYTE $DEADBEEF # Search for bytes $DE $AD $BE $EF

 SEARCHPATTERN [CASE] "ST-??:" # Search for "ST-??:" pattern in file.

 MATCHPATTERN [CASE] 12 "ST-??:" # Search for "ST-??:" pattern in file
$ # at offset 12.

ENDTYPE # this marks the end of this FileType definition.
 AskReparse  is  a small executable which ask whatis.library to reparse
the  S:FileTypes  file. The  file  will  be  effectively  parsed only if
whatis.library  is  not used except by AskReparse at call time.  Else, the
parse is defered until whatis.library has no user.

 3)
 Look in the WhatIsBase.h, you will find all you want.

 How works WhatIs() ?
 WhatIs is currently based on 2 methods:  light or deep.  The light one
is  only  based  on the information you pass to it.  In deep mode WhatIs()
open  the  file and scans the first few bytes (currently 488:  the size of
an  OldFileSystem  data-block),  so  after  loading these bytes in memory,
WhatIs()  examine them to discover what type it is.  WhatIs() also examine
the FileInfoBlock.
 WhatIs()  return  a PRIVATE ULONG.  You should not make any assumption
about how it is coded, because it may and WILL change in future.  You keep
this  ULONG and give it to the different functions of whatis.library.  All
FileTypes must be first referenced by their IDString "ILBM", "Text", "Exe,
etc., or returned by WhatIs().

For  example you want to check if the file "Amiga" is an ILBM picture, you
should write:

 ULONG Type, ILBMType;

 Type = WhatIsTags("Amiga", WI_Deep, DEEPTYPE, TAG_DONE);
 ILBMType = GedIdType("ILBM");
 if (CmpFileType( Type, ILBMType) == 0)
 {
 /* Yes it is ILBM ! */
 your code here
 }
 else
 {
 /* Not an ILBM */
 your code here
 }

Currently supported tags by WhatIs():

 WI_FIB /* TagItem.ti_data = struct FileInfoBlock *FIB, default = NULL */
 WI_Deep /* TagItem.ti_data = LIGHTTYPE or DEEPTYPE. default = LIGHTTYPE */
 WI_Buffer /* TagItem.ti_data = Buffer ptr WARNING: your buffer MUST be NUL terminated */
 WI_BufLen /* TagItem.ti_data = Buffer Len */
 WI_DLX /* TagItem.ti_data = DLX_numble, found in ArpBase.h */
 /* Version 2.1 or higher */
 WI_DLT /* TagItem.ti_data = DLT_numble, found in DOS 2.0 */
Version history:

 1.0: Version for KickStart 1.3.  Only This Version support 1.3.
 All others need KS2.0
 1.1: Fixed a little bug.

 ALL next versions NEED KS2.0

 2.0: First Version of whatis.library.
 (the 1.0 was a limited version made for 1.3)

 3.0: Fixed a little bug.
 GetParentFileType() Added
 IsSubTypeOf() Added
 DLT support (KS2.0 version of the ARP DLX)

 3.4: 25/12/92
 Fixed a Little Bug: the UNKNOWNFILETYPE was not returned by NextType()

 3.5: 4/1/93
 Fixed a BIG bug born when fixed the preceding bug:
 Forgot subtype of root in FirstType()/NextType().

	3.6:		25/07/93 (Internal)
	Internal: Incorect scan of TagItems. Fixed.
	SEARCHPATTERN don't work it string was not entiled by "#?". Fixed

	3.7:		12/08/93
	Fixed an Enforcer hit in NextType()
	Minor change: change the VERSTRING protocol.

) F ېn     Catalogs= p    Y  ZҐ ]  \  [  Z ^    WhatIs.doc.info6      9 !   .\ `%  
   9    	   W g    } {  O߀                  <  􈈀    ܪ Ĝ 5 *EGIE y#* yjUW|U ~?񊪀݀ʪ _J  ߀?j  _*       <0 `          0ED0 `EE  j U  *UT5U * >݀ 0 
   *_߀@ *?     9    	p8     0 *  "x  h     o|  J  @  ?`     `       0 TR J  ,  ̜?            ?߈             _@    5         ?; D   UW$U    U  w U 7Uu "?Tzk Tji (W lQz Q c  J@ [ ` W `   ]݀( D    Uh `   5  UGPU   U*h   (U	 "@   BU2	 
    
T5 *    
T
R	J l    T2	 x    R    	 hP  *  qр@  
 ` ]]݀ SYS:Utilities/More  % Icon by Martin Huttenloher  protocol.

) F ېn     Catalogs= p    ^  _ Ő a  `  _   ^     
	Help.info< p   z  9     2}` 2h  +=ؐ v  2 * 9 b F  IF buD	 \ D  9   @ ?    /  /UV8  /n.  -UKK / _ % .  %@C /  %? =" . Φ %UD (ob *  0' %U ` 5U]V ?!                         D 0     ? 8p@   01D     $  `@ UQT (   X UR@ n0x UC*  { _ 8 PB!  	{ @    9D UD"Ң\ 
  ˘ U
<  9   8  p  o      UUC    U   / ?C_  ?    ֑ gS U 7   ՐUu_  @  @      @ Ԑ @    @  @  @   @@  @*  Gp" @ ` 
@@  	xB @ 8 @  @ 
@@  UuQ6        	      ?UUA" =E 6U*? =|DCpj ; 
 ? [N : U. *  ̀j U       /  /UP /n -UD3 /  n %s .f %C" /  %?B .   %UD > *   %U  5UV ?!          	   *̈́    a@  Cd 0  t ?z      /       UT2   b CR^ h cF r& w2 m     Icons@ p    c  d2K g  f  e  d ^   dBrowserII_Disks.app.info- b   y M 9 !   =@H nIP u ?
  9    	h ]݀/RU WgU unJU h<%U 5Ґ" kU < 	   p :t Pu%: IY I5 U _ )8 ~~ ?| ;    o 7 '    А  ? | > } 8 }  ?p ؐ ß   t 
 /w  P 1{ <ꀐ u iʐ 5^\   uʀ V# uJ , 
E 3 ݀BU ӐH=U vnU ?BHAxU %/" KAU A     p  @P !|"" 4, 
`y^  8>  \*Ȁ ajUTUU  jd
]݀ j 
 n  9    	 ߐn*ڿ*wwOvw *ʪUCeS *)Ő  *轪rm8  
	Ș   4qȐ : :T] Xp B / X@_ r?| wп  w@  /   :  v @       0 P 0   8  0 : x } | X  }  @~  @p l 8   > ~ ~` 	   XX k n@ d NP Ij/  IUS  Z !҉@ ҡp 1 J
 n*⪀*wywvw **UBU9PU **<(&G *~*	 
T| , 00 l zV U0UU  XB Ua	.U @\UA0U *P@*U  G n ΀UP Q % wwv 	 JUNK  I  H  G ^ {    	`BrowserII_Files.brush0 ;    h  i$# l  k  j  i z^   dBrowserII_Disks.info1 b    M 9 !   L(Mp  h  ?
  9    	      ]ݽ ? UMU^U  UOUTU j7 USoU IˋX U{TU Bۃp EVGw$E Ew  A\  @h   @ 9&t  @ t  @!Y  A5 A _ @8 @~~ @w @h @_uA @?m @ u @ ; 	    @   @ @    `     `   p  ( `  t        `  v      p @  |  8 wА  /    { ݭ  u@  iʠ  ^_Y  w  %R˗  CC  B   ӂb  @   ?]]ހO'UEUe^V'	UIU%PVjr UTyPMVH	vTTVB E#DDFE  A@X  @`|` Hx@ 4 j
`1^@8>j \*UWȀVja]	 ހj( *
 #j) *J {$     9    	P ??.?**ꪀ?ހ*A5cuu*֫%UDd*n+A$ocp!:#6           q   :    p   B  /  @_ ?t@ tп    s  w  w|  @  @  @
  @  @> @@   @x 
  @ݠ   @k  > @6 @ @ @ ݠ @ @k  @  8 6  @  ~   @ ~h  @   @ x @ X @ k  @ D  @  @[ @Hj/ @US@ @:  @MEґ  @J:n  @IQT   >     n ~ *ʪ o 
" 5uu x+ HvD `|*     8  "   T   |    ,0  DL|@E  m  U0UU B  T	.U @\+ AA0 PQ h A `    HU <   (! JUNK ( %(  Icon by Walter Drwald  ) "APPICON=Icons/BrowserII_Disks.app (CX_POPKEY=control esc) (CX_POPUP=NO) (CX_PRIORITY=1) (CX_UNIQUE=TRUE) 
DONOTWAIT (ICONXPOS=<icon x position>) (ICONYPOS=<icon y postition>)-     X	Templates< ;    m  n8 q  p  o  n ^   dBrowserII_Files.app.info- b   y  9 !   GN RUؐ u 
  9    	X ]݀/RU WgU unJU h<%U 5Ґ" kU < 	   p :t Pu%: IY I5 U _ )8 ~~ ?| ;    o 7 '    А  ? | > } 8 }  ?p ؐ ß   t 
 /w  P 1{ <ꀐ u iʐ 5^\   uʀ V# uJ , 
E 3 ݀BU ӐH=U vnU ?BHAxU %/" KAU A     p  @P !|"" 4, 
`y^  8>  \*Ȁ ajUTUU  jd
]݀ j 
 n  9    	 ߐn*ڐא*ꪰ*wwKwU **ʪU(eUUu *Rj*)őQ *UJ *@ U	Ȃ 뀻  qȐ : :T] Xp B / X@_ r?| wп  w@  /     Tv @     0 0 8  x 0 " ~ x Q T|    @  j   ~5 A @  8   ~   ~`    XX k n@ d NP Ij/  IUS  : !҉@ p R1 hN
 n**wwwX *ʀU)9UUe *P*<**A *U
~* *    UHT | , 0 l zV U0UU  XB Ua	.U @\UA0U *P@*U G n ΀UP Q  wwvw P JUNK  %(  Icon by Walter Drwald  ) "APPICON=Icons/BrowserII_Disks.app (CX_POPKEY=control esc) (CX_POPUP=NO) (CX_PRIORITY=1) (CX_UNIQUE=TRUE) 
DONOTWAIT (ICONXPOS=<icon x position>) (ICONYPOS=<icon y postition>)-     X	Templates< ; TR K    ,  t
L   r  s$*j v  u  t  s x^   dBrowserII_Files.info1 b     9 !   S_А VX  
  9    	      ]ݽ  UU`U ? UUUU jQj TTUU HS* T{UE @U
 DwE Aw A @   @ 9&t  @ t  @!Y  A5 A _ @8 @~~ @w @h @_A @?m @  	 @ S 	    @   @   `   `   p    ` D       U  Ӂ    T  j   4  T p   )    @ 	wА  /    { ݭ  u@  iʠ  ^_Y  w  %Ru˗  B#  B   b  @ V  ?]]ހOUeUQV?'>UU%UYjRjrʀTyTUFHT	v*TU@U 
DDDA  B,X  @|` Hx@ 4 j
`1^@8>j \*UWȀVja]	 ހj( *
 #j( * {X      9    	p ??.?*K*?/*ꚪ*5*uj*j֪z$*D**u˛^ wAo
"%r     @     q   :    p   B  /  @_ ?t@ tп    s!  wJ  w| _ @  @   @<  @?  @*A @t @j x  @U    @j ( @U U@ @Cj @ 5@ @B @ @  8   @  ~   @ ~h  @  @ x @ X @ k  @ D  @  @[ @Hj/ @US@ @:  @MOґ  @Jʒn  @IYT   
     n ^ Պʪ o 
"k *5ulU Jxk *vD* u|*[   
   "%c   T   |   ,0  DL|DE  m  U0UU B  T	.U @\+ AA0 PQ h A `    HU 5e  ҂ (` JUNK ( #  Icon by Walter Drwald   "APPICON=Icons/BrowserII_Files.app (CX_POPKEY=control esc) (CX_POPUP=NO) (CX_PRIORITY=1) (CX_UNIQUE=TRUE) 
DONOTWAIT (ICONXPOS=<icon x position>) (ICONYPOS=<icon y postition>)/     Docks@ p    w  xR5W y  x ː^   dBrowserII_Old.info3 b     H    X\ `  z
  H   p 	          ? 0 ̓ 2 @ ̓ 0 ̓ 2T@̓ 0 ̓ 2@̃ 0 ̟ 2  ?	  ? ? ?        l < l  l  l  l  l  l   l  l  |  ` ¢      H   i        @ (      ? 0 ̓ 2 @ ̓ 0 ̓ 2T@̓ 0  2@ 0  2  ?	  ? ?     |  l  l  l < l  l  l  l  l  l   l        ¢       JUNK + p    z  {ܮj }  |  {   ^     
Icons.info; p   $ S 9     2x 2  +>   E 2h B     5 buD	 \ D  9   0 ?    /  /UP /n -UD3 /  n %s .f %C" /  %?B .   %UD > *   %U  5UV ?!          	   *̈́    a@  Cd 0  t ?z      /       UT/   X UP nx UD4  p  _l - PC ܸ @AYl  f UD"Ʃ 
  0 U
  9   (  p  o    UU@  ׃ U  7? ?@u_  ? c !  x U W   ՐUTW  @  @      @   @  @ 	 @ f @@  0@*  d! @ `  @@ E @=@  ~ @  @  UTV      	     ?UU@. =  6U ? 8 |@j: ; 	

 ?A\  :  3|UT *  j U       /  /UP /n -UD3 /  n %s .f %C" /  %?B .   %UD > *   %U  5UV ?!          	   *̈́    a@  Cd 0  t ?z      /       UT2   ~ eǐ      libsA p      धؐ                                   !^ p lRexxDosSupport.library/ ~        f     pNuJ  	 \ t  "  .   	   
 \            t RexxDosSupport.library  RexxDosSupport.library (3.6.94) Copyright  1994 by hartmut Goebel l     Y(o J, gJ f. 8`@. <`8(o J, g*Hl Hx Hy Hx &o /N  (o I .`. (o  l2I "L(W . HHT/<NL"  N   X/W PNuQ(o &L>+ I Ip /L BWJ gV(o >GJp gH// Hx Hy  Hx >/ H/N  (o >G/4p // a 
?@ Jo g0/ `tRW`(o L   H &o Hk Hx Hy Hx >/ H/N  (o  l2I "L(o I  . H(o Hl Hx NL"  N   P/W PNuOBWBo J&g4(o&HTHx Ho &Hx NHo Hx N?@ Ho Hx N`I G Bo Bo (o.>/ HJ4x g 2?o  Q Q 
Q (o.>/ H4x Jf`   ,fRo `   /fFRo (o.>/ H4x  am
 zn   NfP `F MfP 
`: Sf4P `.>/ I &o.</ H3h  am
 zn  p Ro Ro ` \>/ I B4p J/ gQ 
Q J/ 
g(o*>G/4p Ho a ?@ `,J/ f(o*>GJp g(o*>G/4p Ho a ?@ Jo g0/ `
RW` 0/ O/W O NuO// "?< ?< NJ fp` (o " , N~o(o "B 4?|  (o " l ,,m4Nv/@ (o "&l , K./ R N/@ J g R(o ./  
x B |/F R (o "/, 0/<Hy   Hx ./  R/N/@ J lrt ,m$N/@ J g  HW./ /NJg  (o L  H (  o ,m4Nv)@ (o "&l 0"/&/ $,m$N/@ J f.(o  | 8p,m4N(// ",m$N|/ N
z?@ `B(o  | <p,m4N(// "(o &/, 0// /, 4Ho a ?@ "/ ,m$N(o Jf?|  HWNr$/ ,m$N0/ O /W PNuNqU// ?/ < BHo N
J gJg(o &L. G (P`QT/W 
O 
NuNq(o 
 , N>/ HǰmX(o 
>/ GJp(gH(o 
>/ G&tp( am
 zn   Gf(o  ` Lf(o   `Q`P/W 
O 
NuNqOB//?< Ho a pJ g//?< Ho a J g
(oJ ,fp`  (o&l ,"G 
$&<   (,m$Nv/@ J l
//N	*`J   o,m$N|./ gp	`,(oG 
 K / ,m4N((oJfp`//NO
/W PNuYB// ?< Ho a J g
(o J ,fp`l(o &l ,"&l 0$/ l 0,m4Nv"& (,m$N|J g(o  | <p,m4N(`(o  | 8p,m4N((o Jfp`p X/W PNuYB// ?< Ho a J g
(o J ,fp`T(o &l ,"$,m$NpJ g(o  | <p,m4N(`(o  | 8p,m4N((o Jfp`p X/W PNuO(oJ ,fp`  Bo (o , N
R~o(oB 0(o&l ,"Ho $,m$N.(o&l ,HS/<Nj.gp`z"/ (o&l 0$G 
&(<   ,m$N,.Jf//N?@ `@//N*?@ (oG 
 KH Ho Hx NL ,m4N((oJfp`0/ O
/W PNuO// ?< < NHo NJ g,// ?< < PHo NJ g// ?< ?< N*J fp` FJ/ g(o . ,P `  (o &l ,HS/<NbЀT/@ HW// N
Jfp`  J/ g (o &l ,"$&/ ,m$N:J@\ `(o &l ,"$&/ ,m$NJ@\ J/ fHWN
Bp%`  J/ g(W"&o $k 0$
,m$N4@ `(W"&o $k 0$
,m$N@ J/ fHWN	J/ f6,m$N|Jf&(o  | 8p,m4N((o Jfp`,p `(p+`$(o  | <p,m4N((o Jfp`p O /W PNuNqO// ?< < NHo 
NJJ g
(o J ,fp`  (o &l ,HS/<NЀT/@ Ho // N	rJ fp`  J/ g(o &l ,"$/ &/ ,m$N:>`(o &l ,"$/ &/ ,m$N>JWl> %`P(o &o  KH HS/<NvL ,m4N((o Jf> `JWo// NV>`
// N*>Ho N0O /W PNuU(o 
J ,fp`hBW(o 
&l ,",m$NJ g(o  | <p,m4N(`*(o  | 8p,m4N(// 
,m$N|/ NR>(o Jf> 0T/W PNuNqU// 
?< ?< N(J fp`nBW(o 
&l ,"&l 0$,m$NJ g(o  | <p,m4N(`*(o  | 8p,m4N(// 
,m$N|/ N>(o Jf> 0T/W PNuNq](o J ,fp`  BW(o &l ,",m$N/@ (o ̸  g "/ N(o 
 | <p,m4N(`*(o 
 | 8p,m4N(// ,m$N|/ N">(o 
Jf> 0\/W PNuNqU// 
?< ?< NJ fp`nBW(o 
&l ,"&l 0$,m$NLJ g(o  | <p,m4N(`*(o  | 8p,m4N(// 
,m$N|/ N>(o Jf> 0T/W PNuNqU// 
?< ?< NdJ g(o 
 l 0,m4Nv~gp`nBW(o 
&l ,"&l ,$,m$NFJ g(o  | <p,m4N(`*(o  | 8p,m4N(// 
,m$N|/ N >(o Jf> 0T/W PNuH?>O/H NB o /H /Ho Hy HHx N o /@  W / O L|NuTmTm TnDNNJN	NNNNN  UJ4g(m l % l~+G  m NNuUmTm Tn  UNNNNVNNNbNOTR L  ((,  ˺0ܦHWHx Hy 4Hx // $N   o "| DI . HHo Hx N
4L"  N   O /W PNu o "| D < @rN   /W XNu o "| D < 8rN   /W XNu(o Q&o  + Nt>/ 
Hǰm(o >/ 
GJp(fP`2(o >/ 
G&tp( am
 zn  / f
&o PP`Q/W O Nu>/ o n(o GJp(fQ`Ro `P/W PNuNqO&o  BJ $g/$o ( * N(_ gp` Bo >/ HǾ mp`  />/ H&o   rN. $sx HR/<&o 0$k (HR/<Nt(_J@gRo `/&o ( + NZ(_?@ >/ H&o  rN. </ sxm>/ H&o  rN|. sxop`b>/ H&o  rN^. /// (// ($sxN(_H/@ J f,&o  Jf$&o   | 0p ,m4N&&o  Jf~/G  / O /W O NuNqTmPm Pn"N RN&N NN	N	"N  QNuUmPm Pn  QN 8N&N NN	N	NNqTm0m 0nN BNN  1NuUm0m 0n  1N <NPNq.   Nu. |Ά NuNqTm,m ,nN *N   -NuUm,m ,n  -N TN NqTm(m (n>N rNN   )"| p!,mN+@$J$f~+G  m N+m$ NuUm(m (n  )gJ$g"m$,mNbN 8NN NqTmm nN J  "| p%,mN+@NuUmm n  gJg"m,mNbN (NqTmm nNb  +x +mNuUmm n  NNqH0 J[jDJjFDH@HAJ@gJAg < `@H@4HAH@J@fЁkJgDL NuB(o Jg,.|.,m  N|"WN"W(I , N.Nv(o BX/W XNuB~߯ ,m  N| / "- (N:.Jf(o B` (W)o  Hm 0"L _N(o &WG (NvX/W PNu,_""_  _k Skg`H@Wg
H@Qr NNqNuNq*y 
NuN  Q .m  NuNqNINqTm m  nb  +x   +H  B B B B $I+L P B Q I+L ,Q +|  (I 4+L 0I 0+L 8B 4B NuUm m  n  g.+m 0 @(m @+T <J <g"m @(I , ,m  N.+m < @`NuTmm n
N  NuUmm n  NNq o H "$H,x Cp N$ g"BNbp  f"* g J,BNXJLDNuL  a
f o  NuH :$H&Iag,,j  j N(H Ka  f L r NPIp Jg`p
JL\ NuL  L  H?>O$H&I*@&a RgP,j A N"Oa   nB j N(H Ka  Jf2$I$ L N(  L"M a  g L"@ Np `
p
`p`p	 O/ a   O L|NuH00t v N"H LaX$@g6C 0* "	 .WfÉ&
 L a4$@gA Nj gt(`tJg L"JaF L"Ca@"J" LNuH@PRNLg/B 1@ |  B0PHN _@  Nu"	gp) f0) PRNNu/&j "L  H  H  &_Nu"P"i L  H  Nurexxsyslib.library Tm8m 8n(NjNv  9"| p!,m.fNCN+@4NuUm8m 8n  9gJ4g"m4,m.fNCNbN0NDNqpNdO./  Nv/G 
J 
l/o  `/o  B ./  l  Jk eN@&o 3x  am
 zn  F Jk eN@&o 3x  am
 zn  E ENv>JWfJk eN@&o J3x f0`TR Nv` xJ 
l./ Jk eN@&o J3x gp`&J 
o./ Jk eN@&o J3x gp`p O /W O NuNqTmDm DnN~NN  ENuUmDm Dn  ENpNNNq"_  _S" JWg   j NNDp N~BQ/G (//#a (_/@ /G  //#a (_/@ ./  lfB/G . l:Jk eN@&o ,/ Jk  eN@$o $3x 2h fRNvR Nv`. f,/  Nv `
R Nv` pO /W O NupN8BB. lXJk eN@(o J4x gB.Jk eN@(o ,Jk eN@&o 3h  am
 zn  x RNv`X/W PNuTm<m <n
N  =NuUm<m <n  =N$NqTm@m @n
N  ANuUm@m @n  AN NqpNdBBB. l&o J3x gR`,m$N/@ &o ˶  g"/ $/ &Nаg~+G  m NP/W PNuNqTmLm LnN  MI+LHNuUmLm Ln  MNNq~ `~`~`~`
~`~`~H I ,x z (7` w`*7`Q&O&`  PPN  XJg
S/Q"O'S ۫ E ,x NPL`  WO N S n&NuH?>#Ȑ #  <  l"<   ,x N:Jg"# 
*@AN  Pp J9 g 9 L|NuRn  H?>N L|J fRn  `&   NuH?>N L|Sn  f.  fp NuH?>Jn  g
  p `D(N,x "LN/*y 
N  "M <  l,x N.p "_(I0, l N. 9 L|Nu    R  v        f  `  @            H  X    Đ Ȑ   & 
   " * 8 R &       T    X  R  8  2      ,      &      z      b  J  
  
  T  <              h    :       
   "  (  F  Z  b        l  ^    futility.library dos.library rexxsyslib.library %ld 0 1 5 RC 0           \        @    	l  P      (    |  `            l      t          d  8    4# %ld , .%ld .COUNT  Delete  DeleteVar Fault GetVar  MakeDir MatchPattern ParsePattern ReadArgs Rename  SetComment  SetProtection SetVar   P \ h t       Ȑ Ԑ   H T ` l x        ̐      :       FҐ       Locale? p     & ~ݐ                                                                            Kא^   A  LBrowserII.cd9  ;
;	BrowserII.cd - Copyright  1991-93 by S.R. & P.C.
;
;	Created:	21 Jan 1993  19:26:03
;	Modified:	12 Nov 1994  09:37:21
;
;	Make>> smake
;
;	WARNING:
;
;	This file is absolutly READONLY.
;	You may create a .ct skeleton using CatComp or any
;	PD equivalent before translating it.
;	Send us your work please. You'll get a free registration.
;
;	Messages beginning with MSG1L_ MUST NOT include line feeds (\n)
;
;
MSG_RequestTitle (//)
BrowserII Request
;
MSG_About (//)
CopyRight  Sylvain Rougier & Pierre Carrette.\n\
English version by S.R. & P.C.
;
MSG_Demo (//)
This program is ShareWare.\n\
If you like it or use it, send $25 to:\n\
\n\
Sylvain Rougier\n\
39 rue Carnot\n\
860 Poitiers\n\
France\n\
\n\
You will receive the latest registered version\n\
without this automatic popup requester.\n\
Don't forget to give us your actual\n\
BrowserII and ROM/KickStart versions.
;
MSG_RegisteredTo (//)
Registered to: 
;
MSG_AboutTitle (//)
About BrowserII
;
;
MSG_Q_SureDeleteFile (//)
Really delete ALL marked files%s ?\n\n%lD file(s) and  %lD drawer(s)
;
MSG_SkipCancel	(//)
_Skip|_Cancel
;
MSG_ReSelectResume (//)
Re_Select|_Resume
;
MSG_ProjectSkipCancel (//)
_Project|_Skip|_Cancel
;
MSG_ErrReadingDir (//)
Error reading directory \"%s\"\n%s.
;
MSG_NotADir (//)
\"%s\" is not a directory
;
MSG_Selected (//)
There is  %lD Bytes  %lD Blocks selected\n\
in  %lD files and  %lD dirs.
;
MSG_CantCreatIcon (//)
Couldn't create icon for \"%s\"\n%s.
;
MSG_NoIconDefined (//)
No icon defined for %s
;
MSG_CantGetIcon (//)
Couldn't get icon for \"%s\"\n\
File Type: \"%s\"\n\
Icon: \"%s\"\n%s.
;
MSG_UnknownIcon (//)
Type of \"%s\" is unknown.
;
MSG_CantProtect (//)
Couldn't set protect \"%s\"\n%s.
;
MSG_CantComment (//)
Couldn't set comment of \"%s\"\n%s.
;
MSG_CantTouch (//)
Couldn't set date \"%s\"\n%s.
;
MSG_CantRename (//)
Couldn't rename \"%s\" as \"%s\"\n%s.
;
MSG_RenamingAs (//)
\"%s\" as \"%s\"
;
MSG_CantRelabel (//)
Couldn't relabel \"%s\"\n%s.
;
MSG_CantCreateDirHere (//)
Can't create a dir in this window.
;
MSG_CantCreateDir (//)
Couldn't create dir \"%s\"\n%s.
;
MSG_MakeDir_AndSoOn (//)
Makedir(s).
;
MSG1L_Copy (//)
Copy
;
MSG1L_Move (//)
Move
;
MSG1L_Link (//)
Link
;
MSG1L_Duplicate (//)
Duplicate
;
MSG_CantDuplicateMultipleVolume (//)
Can't duplicate multiple volumes.
;
MSG_CantDupMultipleAssignNorVol (//)
Can't duplicate assigns nor volumes.
;
MSG_AddingIcon_AndSoOn (//)
Adding Icon.
;
MSG_CantAddIconToAssign (//)
Can't add icon to assigns.
;
MSG_Deleting_AndSoOn (//)
Deleting.
;
MSG_AndTheirIcon (//)
\nand their icon (.info)
;
MSG_DeleteCancel (//)
_Delete|_Cancel
;
MSG_DeleteDeleteAllCancel (//)
_Delete|Delete _All|_Cancel
;
MSG_CantDeleteVolume (//)
Can't delete Volume.
;
MSG_CantCheckSizeOfVolume (//)
Can't check size of Volumes.
;
MSG_SettingProtection (//)
Setting Protection.
;
MSG_CantProtectVolume (//)
Can't Protect Volumes.
;
MSG_SettingComment_AndSoOn (//)
Setting Comment.
;
MSG_SetComment_AndSoOn (//)
Set Comment.
;
MSG_EnterCommentFmt (//)
Enter comment for \"%s\" .
;
MSG_OkAllSkipGadFmt (//)
 _Ok | _All |_Skip|_Cancel
;
MSG_CantCommentVolume (//)
Can't comment Volumes.
;
MSG_SettingDate_AndSoOn (//)
Setting Date.
;
MSG_SetDate_AndSoOn (//)
Set Date.
;
MSG_CantSetDateVolume (//)
Can't set date Volumes.
;
MSG_Renaming_AndSoOn (//)
Renaming.
;
MSG1L_Rename (//)
Rename
;
MSG1L_As (//)
As
;
MSG1L_Capitalize (//)
Ca_pitalize
;
MSG_FileNameTooLong (//)
Filename too long: \"%s\"
;
MSG_NoMatchRenamePattern (//)
\"%s\" does not match \"%s#?%s\"\n\
Enter new name or modify pattern.
;
MSG_MultipleRenameHelp (//)
For multiple rename, you may enter\n\
patterns with one and only one\n\
occurence of '#?' in both names.\n\
Example: #?.c.bak -> #?.c
;
MSG1L_RelabelTitle (//)
Relabel.
;
MSG1L_VolumeName (//)
Volume name
;
MSG_SelectVolumeInMain (//)
Select volumes in BrowserII window.
;
MSG_CantRenameAssign (//)
Can't rename an assign.
;
MSG_BytesBlocks (//)
 %lD Bytes  %lD Blocks
;
MSG_ReadingIcon_AndSoOn (//)
Reading Icon.
;
MSG_ReallyMoveInto (//)
Really move files into\n\"%s\" ?
;
MSG_RequestCopyMode_GAD (//)
Cop_y|Copy _As|Make _Link\n\
_Move|M_ove As|_Cancel
;
MSG_RootNoParent (//)
Root directory\nNo parent.
;
MSG_CantGetParent (//)
Couldn't get parent dir\n%s.
;
MSG1L_OpenDir_AndSoOn (//)
Open Dir.
;
MSG_OpenDir_GetString_Fmt (//)
_Dir|_Tree|Tree with _files|_Cancel
;
MSG1L_NoProcessRunning (//)
No child processes currently running.
;
MSG_Mem_Fmt (//)
Chip:%6lD  Other:%7lD
;
MSG_ReallyQuit (//)
Really quit BrowserII ?
;
;
MSG_SelectWindowFont (//)
Select Window Font.
;
MSG_SelectScreenFont (//)
Select Screen Font.
;
MSG_CantOpenFont (//)
Couldn't open \"%s\" %ld.
;
MSG_CantSaveConfig (//)
Couldn't save configuration.
;
MSG_ErrorWriting (//)
Error writing \"%s\"\n%s.
;
MSG_CantOpenWrite (//)
Couldn't open \"%s\" for writing\n%s.
;
MSG_DirAlreadyExist (//)
A dir already exists
;
MSG_FileAlreadyExist (//)
A file already exists
;
MSG_CantMoveInto (//)
Couldn't move \"%s\"\n\
into \"%s\"\n\
%s.
;
MSG_CantCreateLink (//)
Couldn't create link \"%s\"\n%s.
;
MSG_FileExistGadFmt (//)
_Retry|Open _Dir|_Versions.|_Update\n\
_Overwrite|New _Name|_Skip|_Cancel
;
MSG1L_BackupReplacedFiles (//)
_Backup replaced files
;
MSG1L_RepeatToExistingFiles (//)
Repeat action to _all existing files
;
MSG_ReplaceExistingFileFmt (//)
File \"%s\" already exists\n\
Old:  %lD Bytes  %s%s\n\
New:  %lD Bytes  %s%s
;
MSG_Q_DeleteBadCopy (//)
File \"%s\" couldn't be copied\nDelete bad copy ?
;
MSG_Writing_AndSoOn (//)
Writing.
;
MSG_ErrorReadingX (//)
Error reading \"%s\"\n%s.
;
MSG_CantOpenXReading (//)
Couldn't open \"%s\" for reading\TR M  , , ,   yn%s.
;
MSG_Reading_AndSoOn (//)
Reading...
;
MSG_ReadingDir_AndSoOn (//)
Reading dir...
;
MSG_CantDelete (//)
Couldn't delete \"%s\"\n%s.
;
MSG_Moving_AndSoOn (//)
Moving...
;
MSG_CreatingLinks_AndSoOn (//)
Creating links...
;
MSG_Q_DeleteSourceAnyway (//)
One or more file(s) not copied\n\
Delete source(s) anyway ?
;
MSG_CantAccess (//)
Couldn't access \"%s\"\n%s.
;
MSG1L_MainBottomSelected_Fmt (//)
%lD Bytes  %lD Blocks  %lD Entries selected
;
MSG1L_MainBottom_Fmt (//)
%s %lD KBytes  %lD Blocks Free
;
MSG1L_DirBottomSelected_Fmt (//)
%lD/%lD Bytes  %lD/%lD Blocks  %lD/%lD Entries selected
;
MSG1L_DirBottom_Fmt (//)
%lD/%lD Files  %lD/%lD Dirs  %lD/%lD Bytes  %lD/%lD Blocks
;
MSG1L_CantMoveFileHere (//)
Can't move files into this window.
;
MSG_RetryCancel (//)
_Retry|_Cancel
;
MSG_CantDeleteBadCopy (//)
Couldn't delete bad copy of \"%s\"\n%s.
;
MSG_Q_DeleteIncompleteX (//)
File \"%s\" wasn't completly copied\nDelete bad copy ?
;
MSG_Q_HiddenSelectedContinue (//)
Some hidden entries were selected\nContinue anyway ?
;
MSG_CantOpenWindow (//)
Couldn't open window.
;
MSG_CantCreateProcess (//)
Couldn't create process.\n%s.
;
MSG1L_TryLaunch (//)
BrowserII: Attempting to load \"%s\"...
;
MSG1L_WaitChildReply (//)
Waiting for process replies. Cancel requesters...
;
MSG_CommandTooLong (//)
Command line too long.
;
MSG1L_Run_FileType (//)
Run...  File Type: %s
;
;
MSG_Resume_NoShortCut_ (//)
Resume
;
MSG_OkCancel (//)
 _Ok |_Cancel
;
MSG_YesNoWay (//)
_Yes|_No Way
;
MSG_OkSkipCancel (//)
 _Ok |_Skip|_Cancel
;
MSG_RetrySkipCancel (//)
_Retry|_Skip|_Cancel
;
MSG_RetryOpenDirSkipCancel (//)
_Retry|Open _Dir|_Skip|_Cancel
;
;
MSG1L_BrowserActionStatus (//)
BrowserII Action status
;
MSG_Stop_GAD (//6)
_Stop
;
MSG_Pause_GAD (//6)
_Pause
;
MSG_CantOpenScreen (//)
Couldn't open screen.
;
MSG_CloseVisitorWindow (//)
Close ALL visitor windows first!
;
MSG_CantOpenMain (//)
Couldn't open main window.
;
MSG_AlienWindow (//)
Alien Window
;
MSG_AdjustColors (//)
Adjust Colors
;
MSG_Dir (/3/)
(dir)
;
MSG_RequiresLibrary (//)
Requires %s V%ld or higher.
;
MSG1L_SetProtectAndSoOn (//)
Set Protect...
;
MSG1L_SetFiltersAndSoOn (//)
Set Filters...
;
MSG1L_SelectAndSoOn (//)
Select...
;
MSG_StringGadsLabel1 (//10)
Pattern
;
MSG_StringGadsLabel2 (//10)
Since
;
MSG_StringGadsLabel3 (//10)
Before
;
MSG_StringGadsLabel4 (//10)
Min size
;
MSG_StringGadsLabel5 (//10)
Max size
;
MSG_TypeFlagsLabel1 (//10)
Exclude
;
MSG_TypeFlagsLabel2 (//10)
& Subtypes
;
MSG_FilesDirsGadLabel1 (//6)
No
;
MSG_FilesDirsGadLabel2 (//6)
Yes
;
MSG_FilesDirsGadLabel3 (//6)
Match
;
MSG_Files_GAD (//11)
Files
;
MSG_Dirs_GAD (//11)
Dirs
;
MSG_AffectSubdirs_GAD (//17)
Enter Subdirs
;
MSG_Clear_GAD (//6)
Clear
;
MSG_FileTypes_GAD (//12)
File Types
;
MSG_Selected_GAD (//12)
Selected
;
MSG_DEL_GAD (//3)
DEL
;
MSG_Ok_GAD (//7)
Ok
;
MSG_Cancel_GAD (//7)
Cancel
;
MSG_Reset_GAD (//7)
Reset
;
MSG1L_Protection (//12)
Protection:
;
MSG_MaximumReached (//)
Maximum reached.
;
MSG_ProcessesStillRunning (//)
Processes still running.
;
MSG_ScanningDirAndSoOn (//)
Scanning \"%s\" ...
;
MSG_OkWithIconCancel_GAD (//)
With_out Icon|With _Icon|_Cancel
;
MSG_SelectPubScreen (//)
Select Public Screen...
;
MSG_CantFindScreen (//)
Couldn't find Public Screen\n\
\"%s\".
;
MSG_SelectAssignDir (//)
Select Dir...
;
MSG_InvalidDate (//)
Invalid
;
MSG_NoUser (//)
Nobody
;
MSG_NoGroup (//)
None
;
MSG_KBytesFmt (//)
%lDK
;
MSG_MBytesFmt (//)
%lDM
;
MSG_DeleteProtectedFmt (//)
_Retry|Override _Protection\n\
_Open Dir|_Skip|_Cancel
;
MSG1L_RepeatProtected (//)
Repeat to _all protected files
;
MSG1L_Path (//)
Path
;
MSG1L_Date (//)
Date
;
MSG_NoVersionInfo (//)
No version information
;
MSG1L_MakeDirGadTitle (//)
Directory(ies)
;
MSG_MakeDir_Help (//)
You can create several directories by separating\n\
names with white spaces. If a directory name\n\
include white spaces, you must use double quotes \".
;
MSG_CantBackup (//)
Couldn't backup \"%s\"\n\
%s.
;
MSG_CantBackupTo (//)
Couldn't backup \"%s\" to \"%s\"\n\
%s.
;
MSG1L_RenameNewObject (//)
Rename object to create
;
;
;	First snapshot box
;
MSG1L_FileInfos_GAD (//)
File _Infos
;
MSG1L_Sort_GAD (//)
_Sort
;
MSG1L_Filters_GAD (//)
_Filters
;
MSG1L_AutoZoom_GAD (//)
Auto_Zoom
;
MSG1L_Options_GAD (//)
_Options
;
;	Second snapshot box
;
MSG1L_Size_GAD (//)
Size
;
MSG1L_Position_GAD (//)
Position
;
MSG1L_AltSize_GAD (//)
Alt. Size
;
MSG1L_AltPos_GAD (//)
Alt. Position
;
MSG1L_MinWidth_GAD (//)
Min Width
;
MSG1L_MinHeight_GAD (//)
Min Height
;
MSG1L_MaxWidth_GAD (//)
Max Width
;
MSG1L_MaxHeight_GAD (//)
Max Height
;
;	Third snapshot box
;
MSG1L_Directory_GAD (//)
Directory
;
MSG1L_Tree_GAD (//)
Tree without files
;
MSG1L_TreeWithFiles_GAD (//)
Tree with files
;
;
MSG1L_SnapshotXTitle (//)
Snapshot \"%s\" ...
;
MSG1L_UnSnapshotXTitle (//)
UnSnapshot \"%s\" ...
;
MSG_SnapshotGadFmt_GAD (//)
Default for _Volume|Default for _Device\n\
_Global Default|_Window|_Cancel
;
MSG_SaveCancel_GAD (//)
_Save|_Cancel
;
MSG1L_DefautSnapshotsFileComment (//79)
Defaults, and Alien & Main windows
;
MSG1L_DeviceSnapshotsFileComment (//49)
Device \"%s\"
;
MSG1L_VolumeSnapshotsFileComment (//30)
Volume \"%s\" (%s)
;
MSG_ErrorReadingSnapshotFile (//)
Error reading snapshot file %s.
;
MSG_SizeSnapshotWithAutoZoomWarning (//)
WARNING: Snapshoting window size may\n\
be useless with auto-zoom option set.\n\
Continue anyway ?
;
MSG_NoWindowDefaultsSet (//)
No defaults was set for window
;
MSG_NoVolumeDefaultsSet (//)
No defaults was set for volume
;
MSG_NoDeviceDefaultsSet (//)
No defaults was set for device
;
MSG_NoGlobalDefaultsSet (//)
No global defaults was set
;
MSG_CliArgsSyntaxError (//)
Syntax error in shell args specification\n\
Allowed chars within [] are: &, |, i, :.
;
MSG_BrowserDescription (//)
File Manager
;
MSG_DefaultPublicScreen (//)
Default Public
;
MSG_FrontmostPublicScreen (//)
Frontmost
;
MSG_CantSetOwnerVolumes (//)
Can't set an owner for volumes
;
MSG_CantSetOwner (//)
Couldn't set owner of \"%s\"\n\%s.
;
MSG_EnterOwnerNameFmt (//)
Enter owner name for \"%s\" ...
;
MSG_SetOwner_AndSoOn (//)
Set Owner...
;
MSG_SettingOwner_AndSoOn (//)
Setting Owner...
;
MSG_UnknownUserName (//)
Unknown user name \"%s\".
;
MSG1L_SelectAssocInfo_GAD (//)
& Associated .info
;
MSG1L_GroupOthers (//)
Group/Others:
;
;	reqtools screen mode requester title for v37 users
MSG1L_SelectScreenMode (//)
Select screen mode...
;
MSG_RequiresAslOrReqTools (//)
Requires either asl.library v38\n\
or reqtools.library v38 or higher.
;
;
;
;
;	Menus
;
MSG_Bro_UpdateMenu_MENU (//)
Update Menus
;
MSG_Bro_LastError_MENU (//)
Last Error
;
MSG_Bro_Command_MENU (//)
_E Execute...
;
MSG_Bro_Scrn_MENU (//)
Screen
;
MSG_Bro_Scrn_Workbench_MENU (//)
Public Screen
;
MSG_Bro_Scrn_Custom_MENU (//)
Custom Screen
;
MSG_Bro_Scrn_WBColor_MENU (//)
Workbench Colors
;
MSG_Bro_Scrn_CustomColors_MENU (//)
Custom Colors
;
MSG_Bro_Scrn_BdropPattern_MENU (//)
Backdrop Pattern
;
MSG_Bro_Scrn_BdropImage_MENU (//)
Backdrop Image
;
MSG_Bro_ScreenFont_MENU (//)
Screen Font
;
MSG_Bro_ScreenFont_DefFont_MENU (//)
Default Font
;
MSG_Bro_ScreenFont_CstFont_MENU (//)
Custom Font
;
MSG_Bro_WindowFont_MENU (//)
Window Font
;
MSG_Bro_WindowFont_DefFont_MENU (//)
Default Font
;
MSG_Bro_WindowFont_CstFont_MENU (//)
Custom Font
;
MSG_Bro_RunMode_MENU (//)
Run Mode
;
MSG_Bro_RunMode_RunBack_MENU (//)
RunBack
;
MSG_Bro_RunMode_Shell_MENU (//)
Shell
;
MSG_Bro_RunMode_Request_MENU (//)
Request
;
MSG_Bro_RunMode_WBToFront_MENU (//)
WBToFront
;
MSG_Bro_CpyM_MENU (//)
Copy Mode
;
MSG_Bro_CpyM_Context_MENU (//)
Context
;
MSG_Bro_CpyM_AlwCopy_MENU (//)
Always Copy
;
MSG_Bro_CpyM_AlwMove_MENU (//)
Always Move
;
MSG_Bro_CpyM_Link_MENU (//)
Link
;
MSG_Bro_CpyM_As_MENU (//)
As...
;
MSG_Bro_CpyM_Request_MENU (//)
Request
;
MSG_Bro_CpyM_Update_MENU (//)
Update
;
MSG_Bro_CpyM_DontOverwFile_MENU (//)
Don't overwrite files
;
MSG_Bro_CpyM_AskBeforeOver_MENU (//)
Ask before overwrite
;
MSG_Bro_CpyM_Backup_MENU (//)
Backup replaced files
;
MSG_Bro_CpyM_CopyEmptyDir_MENU (//)
Copy Empty Dirs
;
MSG_Bro_CpyM_CopyHierarchy_MENU (//)
Copy Hierarchy
;
MSG_Bro_CopyFlags_MENU (//)
Copy Flags
;
MSG_Bro_CopyFlags_Clone_MENU (//)
Clone
;
MSG_Bro_CopyFlags_Dates_MENU (//)
Dates
;
MSG_Bro_CopyFlags_Protect_MENU (//)
Protect
;
MSG_Bro_CopyFlags_Comment_MENU (//)
Comment
;
MSG_Bro_Display_MENU (//)
Device List
;
MSG_Bro_Display_Device_Vol_MENU (//)
Devices (Volume)
;
MSG_Bro_Display_Device_MENU (//)
Devices
;
MSG_Bro_Display_Volumes_Dev_MENU (//)
Volumes (Device)
;
MSG_Bro_Display_Volumes_MENU (//)
Mounted Volumes
;
MSG_Bro_Display_UnMountedVols_MENU (//)
Unmounted Volumes
;
MSG_Bro_Display_Standard_Assigns_MENU (//)
Standard Assigns
;
MSG_Bro_Display_Defered_Assigns_MENU (//)
Defered Assigns
;
MSG_Bro_Display_Path_Assigns_MENU (//)
Path Assigns
;
MSG_Bro_Display_VolSize_MENU (//)
Volume Size
;
MSG_Bro_Display_VolFreeSpace_MENU (//)
Volume Free Space
;
MSG_Bro_Display_VolUsedSpace_MENU (//)
Volume Used Space
;
MSG_Bro_Display_VolPercentUsed_MENU (//)
Volume % Used
;
MSG_Bro_Display_Alternate_MENU (//)
_% Alternate
;
MSG_Bro_Display_ZipWindow_MENU (//)
Zip Window
;
MSG_Bro_Opts_MENU (//)
Options
;
MSG_Bro_Opts_KeepSelected_MENU (//)
Keep selected
;
MSG_Bro_Opts_ToggleSelect_MENU (//)
Toggle selections
;
MSG_Bro_Opts_ASynchronous_MENU (//)
ASynchronous actions
;
MSG_Bro_Opts_OpenStatus_MENU (//)
Open process status window
;
MSG_Bro_Opts_ACOverDefTool_MENU (//)
AutoCmds override icon's default tool
;
MSG_Bro_Opts_SelInfoFiles_MENU (//)
Auto-select associated .info files
;
MSG_Bro_Opts_WinFontInReq_MENU (//)
Use window font in requesters
;
MSG_Bro_Opts_QuietCheckSize_MENU (//)
Quiet CheckSize
;
MSG_Bro_WOptions_DDUsage_MENU (//)
Display directory disk usage
;
MSG_Bro_WOptions_PofVData_MENU (//)
Display proportion of visible data
;
MSG_Bro_SaveConfig_MENU (//)
Save Config
;
MSG_Bro_About_MENU (//)
About
;
MSG_Bro_Quit_MENU (//)
Quit
;
MSG_Window_MENU (//)
Window
;
MSG_Window_Rescan_MENU (//)
_S Rescan
;
MSG_Window_Open_MENU (//)
Open
;
MSG_Window_Open_Parent_MENU (//)
_P Open Parent
;
MSG_Window_Open_Dir_MENU (//)
_O Open Dir...
;
MSG_Window_Open_Alien_MENU (//)
Open Alien
;
MSG_Window_Open_Status_MENU (//)
Open Status
;
MSG_Window_Make_Tree_MENU (//)
_T Make Tree
;
MSG_Window_Zoom_MENU (//)
Zoom
;
MSG_Window_Zoom_UnZoom_MENU (//)
UnZoom
;
MSG_Window_Zoom_ZoomAll_MENU (//)
Zoom All
;
MSG_Window_Zoom_ZoomDirs_MENU (//)
Zoom Dirs
;
MSG_Window_Zoom_Taller_MENU (//)
Taller
;
MSG_Window_Zoom_Wider_MENU (//)
Wider
;
MSG_Window_Zoom_Thiner_MENU (//)
Thiner
;
MSG_Window_Zoom_ShowMax_MENU (//)
Show MaxSize
;
MSG_Window_Zoom_ShowMin_MENU (//)
Show MinSize
;
MSG_Window_Tree_MENU (//)
Tree
;
MSG_Window_Tree_FoldAll_MENU (//)
Fold All
;
MSG_Window_Tree_UnfoldAll_MENU (//)
Unfold All
;
MSG_Window_SelectMatch_MENU (//)
_? Select Match
;
MSG_Window_SelectAll_MENU (//)
_A Select All
;
MSG_Window_Flts_MENU (//)
Filters
;
MSG_Window_Flts_Set_MENU (//)
_F Set...
;
MSG_Window_Flts_NoInfo_MENU (//)
_. No .info
;
MSG_Window_Flts_Clear_MENU (//)
_- Clear
;
MSG_Window_Flts_Invert_MENU (//)
_/ Invert
;
MSG_Window_FileInfo_MENU (//)
File Info
;
MSG_Window_FileInfo_Bytes_MENU (//)
Size in Bytes
;
MSG_Window_FileInfo_Blocks_MENU (//)
Size in Blocks
;
MSG_Window_FileInfo_Prtct_MENU (//)
Protection
;
MSG_Window_FileInfo_Owner_MENU (//)
Owner
;
MSG_TR N    ,  >rLWindow_FileInfo_Group_MENU (//)
Group
;
MSG_Window_FileInfo_Date_MENU (//)
Date
;
MSG_Window_FileInfo_Time_MENU (//)
Time
;
MSG_Window_FileInfo_Type_MENU (//)
File Type
;
MSG_Window_FileInfo_Comment_MENU (//)
Comment
;
MSG_Window_FileInfo_Link_MENU (//)
Link
;
MSG_Window_FileInfo_DrwArraw_MENU (//)
Drawer Arrow
;
MSG_Window_FileInfo_DrwJauge_MENU (//)
Drawer Jauge
;
MSG_Window_SortBy_MENU (//)
Sort by
;
MSG_Window_SortBy_Name_MENU (//)
Name
;
MSG_Window_SortBy_Date_MENU (//)
Date
;
MSG_Window_SortBy_Size_MENU (//)
Size
;
MSG_Window_SortBy_EntryTp_MENU (//)
Entry Type
;
MSG_Window_SortBy_FileTp_MENU (//)
File Type
;
MSG_Window_AutoZoom_MENU (//)
AutoZoom
;
MSG_Window_AutoZ_All_MENU (//)
Zoom All
;
MSG_Window_AutoZ_Dirs_MENU (//)
Zoom Dirs
;
MSG_Window_AutoZ_Rescan_MENU (//)
Rescan
;
MSG_Window_AutoZ_Update_MENU (//)
Update
;
MSG_Window_AutoZ_FileInfos_MENU (//)
New File Infos
;
MSG_Window_AutoZ_Fold_MENU (//)
Tree Folding
;
MSG_Window_AutoZ_1Col_MENU (//)
Only 1 Column
;
MSG_Window_AutoZ_IfZoomed_MENU (//)
Only if Zoomed
;
MSG_Window_Opts_MENU (//)
Options
;
MSG_Window_Opts_FindTpName_MENU (//)
Find Type by Name
;
MSG_Window_Opts_FindTpScan_MENU (//)
Find Type by Scan
;
MSG_Window_Opts_TurboScan_MENU (//)
Turbo Scan
;
MSG_Window_Opts_KeepWin_MENU (//)
Keep Window
;
MSG_Window_Opts_IconifyWin_MENU (//)
Auto Iconify
;
MSG_Window_Opts_CloseWin_MENU (//)
Auto Close
;
MSG_Window_Opts_AutoDiskLoad_MENU (//)
Auto Disk Load
;
MSG_Window_Opts_LocalProps_MENU (//)
Local Properties
;
MSG_Window_Properties_MENU (//)
Properties
;
MSG_Window_Props_Copy_MENU (//)
_C Copy
;
MSG_Window_Props_Paste_MENU (//)
_V Paste
;
MSG_Window_Props_AffectVolume_MENU (//)
Affect Volume
;
MSG_Window_Props_AffectAll_MENU (//)
Affect All
;
MSG_Window_Props_RestoreLocal_MENU (//)
_= Restore Prefs
;
MSG_Window_Props_Snapshot_MENU (//)
_K Snapshot.
;
MSG_Window_Props_UnSnapshot_MENU (//)
UnSnapshot.
;
MSG_Actions_MENU (//)
Actions
;
MSG_Actions_Rename_MENU (//)
_R Rename.
;
MSG_Actions_MakeDir_MENU (//)
_M MakeDir.
;
MSG_Actions_Duplicate_MENU (//)
_2 Duplicate.
;
MSG_Actions_SetDate_MENU (//)
Set Date.
;
MSG_Actions_SetComment_MENU (//)
Set Comment.
;
MSG_Actions_SetProtect_MENU (//)
Set Protect.
;
MSG_Actions_SetOwner_MENU (//)
Set Owner.
;
MSG_Actions_AddIcon_MENU (//)
Add Icon
;
MSG_Actions_CheckSize_MENU (//)
Check Size
;
MSG_Action_WBInfo_MENU (//)
_I Information.
;
MSG_Actions_Delete_MENU (//)
_D Delete
;
;
;
;	ADD _ALL_ NEW CALATOG STRINGS BEFORE THIS LINE
;
NB_CATALOG_STRINGS (//)

;
 ]      	                   ^     ParM.cd>  ;
;	ParM.cd - Copyright  1991-93 by S.R. & P.C.
;
;	Created:	28 Feb 1993  15:20:51
;	Modified:	30 Oct 1994  16:09:47
;
;	Make>> smake
;
;	WARNING:
;
;	This file is absolutly READONLY, if you modify anything in it,
;	next modify in .ct file will be desastrous
;
;	Messages beginning with MSG1L_ MUST NOT include line feeds (\n)
;
;
MSG1L_RequestTitle (//)
ParM Request
;
MSG_LineTooLong (//)
Line too long
;
MSG_LineChar (//)
%s\nLine %ld, Char %ld
;
MSG_UnexpectedMenu (//)
Unexpected MENU
;
MSG_UnexpectedSubMenu (//)
Unexpected SUBMENU
;
MSG_UnexpectedEndSubMenu (//)
Unexpected ENDSUBMENU
;
MSG_UnexpectedItem (//)
Unexpected ITEM
;
MSG_MissingClosingBrace (//)
Missing closing '}'
;
MSG_MissingArgument (//)
Missing argument
;
MSG_AutoCmdNotAllowed (//)
AUTOCMD not allowed in this tool
;
MSG_WinNotAllowedInWBMode (//)
WIN not allowed in WB mode
;
MSG_CouldntOpenRead (//)
Couldn't open/read \"%s\"
;
MSG_CouldntOpenConsole (//)
Couldn't open console\n\"%s\"
;
MSG_CouldntAccess (//)
Couldn't access \"%s\"
;
MSG_CouldntExecute (//)
Couldn't execute \"%s\"\n%s.
;
MSG_CouldntLoad (//)
Couldn't load \"%s\"\n%s.
;
MSG1L_Command (//)
Command
;
MSG_Run (//)
Run.
;
MSG_NoToolFound (//)
No tool found.
;
MSG_InvalidStack (//)
Invalid stack
;
MSG_PriOutOfRange (//)
Priority out of range
;
MSG_WB_RUN_SHELL_CFG_Expected (//)
WB, RUN, SHELL or CFG Expected
;
MSG_InvalidKey (//)
Invalid Key
;
MSG_InvalidQualifier (//)
Invalid qualifier
;
MSG_UnexpectedEndOfLine (//)
Unexpected end of line
;
MSG_KeywordExpected (//)
Keyword expected
;
MSG_KeyAlreadyUsed (//)
Key already used
;
MSG_UnknownFileType (//)
Unknown file type
;
MSG_Cancel_GAD (//9)
Cancel
;
MSG_Resume_GAD (//9)
Resume
;
MSG_OkCancel_GAD (//)
 _Ok |_Cancel
;
MSG_ShellRunBackCancel_GAD (//)
_Shell|_RunBack|_Cancel
;
MSG_ToolNotFound (//)
Tool not found: \"%s\"
;
MSG_ResumeWithShortCut_GAD (//)
_Resume
;
MSG1L_ExecuteCommand (//)
Execute command.
;
MSG_InvalidHotkey (//)
Invalid hotkey
;
;
;
;		ParM
;
;	The 3 following strings are obsolete
;
ParM_MSG_CliHelp (50//)

;
ParM_MSG_ErrorInEnvParMOpt (//)

;
ParM_MSG_ON_OFF_Required (//)

;
ParM_MSG_CouldntGetWindow (//)
Couldn't get window.
;
ParM_MSG_ThisWindowHasMenus (//)
This window already have menus.
;
ParM_MSG_MenusAlreadyInWB (//)
Menus already installed in WorkBench.
;
ParM_MSG_CantFindWorkBench (//)
Can't find WorkBench.
;
ParM_MSG_Mem_Fmt (//)
Chip:%6lD  Other:%7lD
;
ParM_MSG1L_Open (//)
Open.
;
ParM_MSG_EnterNewDir (//)
Enter New Dir.
;
ParM_MSG_PathTooLong (//)
Path too long
;
ParM_MSG_Busy (//)
Busy
;
;
ParM_MSG_ParM_Open_MENU (//)
_O Open
;
ParM_MSG_ParM_Update_MENU (//)
_U Update
;
ParM_MSG_ParM_StdCfg_MENU (//)
Std Cfg
;
ParM_MSG_ParM_Command_MENU (//)
_E Execute.
;
ParM_MSG_ParM_ChangeDir_MENU (//)
Change Dir
;
ParM_MSG_ParM_Quit_MENU (//)
Quit
;
ParM_MSG_RequiresAsl (//)
Requires asl.library V37 or higher.
;
;
;		SetMouse
;
SM_MSG_CouldntSaveConfiguration (80//)
Couldn't save configuration.
;
SM_MSG_InvalidMouseOptsVersion (//)
Invalid MouseOpts version.
;
;
SM_MSG_CheckBoxText1 (//19)
Window to Front
;
SM_MSG_CheckBoxText2 (//19)
Window to Back
;
SM_MSG_CheckBoxText3 (//19)
Screen to Back
;
SM_MSG_CheckBoxText4 (//19)
Auto Activate
;
SM_MSG_CheckBoxText5 (//19)
Sun Mouse
;
SM_MSG_CheckBoxText6 (//19)
RMB Activate
;
SM_MSG_CheckBoxText7 (//19)
MMB Activate
;
SM_MSG_CheckBoxText8 (//19)
MMB Shift
;
SM_MSG_CheckBoxText9 (//19)
Cycle using MMB
;
;
SM_MSG_IntegerText1 (//19)
Screen blank (sec)
;
SM_MSG_IntegerText2 (//19)
Mouse blank  (sec)
;
SM_MSG_IntegerText3 (//19)
Accel Threshold
;
SM_MSG_IntegerText4 (//19)
Accel Factor
;
SM_MSG_IntegerText5 (//19)
SunMouse Threshold
;
SM_MSG_IntegerText6 (//19)
Handler Priority
;
;
SM_MSG_WTFQualLabel1 (//13)
None
;
SM_MSG_WTFQualLabel2 (//13)
Control
;
SM_MSG_WTFQualLabel3 (//13)
Left Shift
;
SM_MSG_WTFQualLabel4 (//13)
Left Alt
;
SM_MSG_WTFQualLabel5 (//13)
Left Amiga
;
SM_MSG_WTFQualLabel6 (//13)
Right Shift
;
SM_MSG_WTFQualLabel7 (//13)
Right Alt
;
SM_MSG_WTFQualLabel8 (//13)
Right Amiga
;
SM_MSG_WTFQualLabel9 (//13)
MMB
;
;
SM_MSG_WindowToFrontQual (//22)
Window to Front Qual
;
SM_MSG_Save_GAD (//9)
Save
;
SM_MSG_Use_GAD (//9)
Use
;
;
;	ADD _ALL_ NEW CALATOG STRINGS BEFORE THIS LINE
;
NB_CATALOG_STRINGS (//)

;
                                
  	                                                  ]    Ð b(   Đ     (RexxA p    Đ  ŗĂ' Ő Ґ^     ,DeliPlay.rexx8 Ð /* DeliTracker - angegebenes Module laden & spielen */

/* Arguments */
parse arg args

call addlib("RexxDosSupport.library",0,-30,2)
if ~ReadArgs(args, "Module/A") then
do
	say Fault(rc, "DeliPlay")
	exit
end

options results
address command 'WaitForPort -i DELITRACKER'
if rc ~= 0 then
do
	address command 'WBRun Tools:Zikmu/DeliTracker_II/DeliTracker2'
	if rc ~= 0 then
		exit
	address command 'WaitForPort DELITRACKER'
end

address 'DELITRACKER'
playmod Module

$     Ɛ  ~ ǐ ^   A  
(
View.adpro; Ð /* View.adpro
**
** $VER: View.adpro 1.1 (10.09.93)
**
**
*/

PARSE ARG FileName

ADDRESS "ADPro"
OPTIONS RESULTS

LFORMAT "UNIVERSAL"
ADPRO_TO_FRONT

LOAD FileName

SFORMAT RETINA

t(rc, "DeliPlay")
	exit
end

options results
address command 'WaitForPort -i DELITRACKER'
if rc ~= 0 then
do
	address command 'WBRun Tools:Zikmu/DeliTracker_II/DeliTracker2'
	if rc ~= 0 then
		exit
	address command 'WaitForPort DELITRACKER'
end

address 'DELITRACKER'
playmod Module

$     Ȑ %
 ΐ ɐ ؐ. ڐZ ː* ֐     >SD p    ɐ   ʐ N^     		AssignVol< Ȑ TR O  ,  Z.key Dir/a
.bra {
.ket }

Set VolName `BaseName {Dir}`
Assign $VolName: {Dir}
L B      HelpA p    ː  ̆Xړ   ̐ :^   u  @Extract> Ȑ .key File/A,Pattern/K
.bra 
.ket 
.def Pattern "#?"

UnSet FileType
For "File" FTV=FileType D=1

IF "$FileType" EQ "LHArc"
	Lha -x -m e "File"
	Set Error $RC
Else
IF "$FileType" EQ "Lzx"
	Lzx -x -m e "File"
	Set Error $RC
Else
IF "$FileType" EQ "Tar"
	gnutar -xf "File"
	Set Error $RC
Else
IF "$FileType" EQ "TarGZ"
	echo Unzip.
	Stack 30
	gzip -dc "File" >tmp_tar_file_$process.tar
	IF $RC EQ 0
		gnutar -xf tmp_tar_file_$process.tar
	EndIF
	Set Error $RC
	delete >NIL: tmp_tar_file_$process.tar
Else
IF "$FileType" EQ "Zoo"
	Zoo x// "File"
	Set Error $RC
Else
	Echo "Unknown archive format '$FileType'"
	Echo >SPEAK: "Extract Failed;"
	Ask "Press RETURN."
	Quit
EndIF
EndIF
EndIF
EndIF
EndIF

IF $Error GT 0
	Echo "Error extracting File."
	Echo >SPEAK: "Extract Failed;"
	Ask "Press RETURN."
EndIF

 ^    WhatIs.doc.info6     ΐ  +[             ϐ O^   t  @	FileTypes< Ȑ #	Syntax

#	TYPE "Source Ada"
#		SUBTYPE "Text"
#		INSERTAFTER "Script"
#		ICONNAME "def_Source Ada"		# path internaly expanded to "ENV:Sys/def_Source Ada.info"
#		NAMEPATTERN *.ada
#	# or OPTNAMEPATTERN *.ada
#	# les 4 lignes si dessus sont optionelles mais l'ordre doit etre conserv
#	# les lignes ci-dessous sont juste pour information sur la syntaxe
#		# COMPAREBYTE OFFSET BYTES
#		COMPAREBYTE 12 $ABADCAFE	# hex bytes, offset decimal
#		COMPAREBYTE $23 "Coucou"	# string bytes, offset in hex
#		SEARCHBYTE	"Salut"
#		SEARCHBYTE	$DEADBEEF
#		SEARCHPATTERN [CASE] "ST-??"
#		MATCHPATTERN [CASE] 45 "ST-??"
#	ENDTYPE
TYPE "Tar"
	NAMEPATTERN "#?.tar"
ENDTYPE

TYPE "TarGZ"
	NAMEPATTERN "#?.(z|gz)"
ENDTYPE

TYPE "Lha SFX"
	SUBTYPE "Exe"
	INSERTAFTER "LhArc"
	OPTNAMEPATTERN "#?.run"
	COMPAREBYTE 44 "SFX!"
ENDTYPE

TYPE "Lzx"
	INSERTAFTER "Lha SFX"
	NAMEPATTERN "#?.lzx"
	COMPAREBYTE 0 "LZX"
ENDTYPE

TYPE "Imploder4"
	SUBTYPE "Exe"
	INSERTAFTER "PP Exe"
	SEARCHBYTE $7A0052464E
#	SEARCHBYTE "z.RFN"
ENDTYPE

TYPE "PPLoadSeg"
	INSERTAFTER "PP Exe"
	COMPAREBYTE 0 "PPLS"
ENDTYPE

TYPE "Source C"
	SUBTYPE		Text
	ICONNAME	def_C
	NAMEPATTERN "#?.c"
ENDTYPE

TYPE "Include C"
	SUBTYPE		Text
	INSERTAFTER	"Source C"
	ICONNAME	def_H
	NAMEPATTERN "#?.h"
ENDTYPE

TYPE Asm
	SUBTYPE		Text
	ICONNAME	def_Asm
	NAMEPATTERN "#?.(asm|s|a)"
ENDTYPE

TYPE "Incld Asm"
	SUBTYPE		Text
	ICONNAME	def_I
	NAMEPATTERN "#?.i"
ENDTYPE

TYPE Doc
	SUBTYPE	Text
	ICONNAME def_Doc
	NAMEPATTERN "#?.Doc~(#?.info)"
ENDTYPE

TYPE "PP Doc"
	SUBTYPE	"PP Data"
	ICONNAME def_Doc
	NAMEPATTERN "#?.(Doc#?.pp|Doc)"
ENDTYPE

TYPE ReadMe
	SUBTYPE Text
	INSERTAFTER Doc
	ICONNAME def_ReadMe
	NAMEPATTERN "Read#?Me~(#?.info)"
ENDTYPE

TYPE "Guide"
	SUBTYPE Text
	INSERTAFTER ReadMe
	ICONNAME def_Guide
	OPTNAMEPATTERN "#?.guide"
	MATCHPATTERN 0 "@database"
ENDTYPE

TYPE "MUIB"
	OPTNAMEPATTERN "#?.MUIB"
	COMPAREBYTE 0 "BUILDER_SAVE_FILE"
ENDTYPE

TYPE "Tex"
	SUBTYPE "Text"
	ICONNAME	def_Tex
	NAMEPATTERN "#?.Tex"
ENDTYPE

TYPE Rexx
	SUBTYPE Text
	ICONNAME def_Rexx
	NAMEPATTERN "#?.(rexx|ced)"
ENDTYPE

TYPE "Tex DVI"
	OPTNAMEPATTERN "#?.dvi"
	COMPAREBYTE 0 $F7020183
ENDTYPE

TYPE "STSong"
	COMPAREBYTE 0 "PACK"
ENDTYPE

TYPE "ST Mod"
	INSERTAFTER "Icon"
	NAMEPATTERN "#?.(mod|mmd)"
ENDTYPE

TYPE "Xpk Mod"
	SUBTYPE "ST Mod"
	COMPAREBYTE 0 "XPKF"
ENDTYPE

TYPE "SQSH Mod"
	SUBTYPE "Xpk Mod"
	COMPAREBYTE 8 "SQSH"
ENDTYPE

TYPE "PP MedMod"
	SUBTYPE "PP Data"
	INSERTAFTER "ST Mod"
	NAMEPATTERN "#?.(mo|mm)(d|d.pp)"
ENDTYPE

TYPE "JPEG"
	INSERTAFTER "ILBM"
	ICONNAME	def_Pic
	OPTNAMEPATTERN "#?.(jpeg|jpg)"
	COMPAREBYTE 0 $FFD8FFE0
ENDTYPE

TYPE "PCX"
	COMPAREBYTE 0 $0a050108
ENDTYPE

TYPE "GIF"
	INSERTAFTER "JPEG"
	ICONNAME	def_Pic
	OPTNAMEPATTERN "#?.gif"
	COMPAREBYTE 0 "GIF8"
ENDTYPE

TYPE "TIFF"
	INSERTAFTER "GIF"
	ICONNAME	def_Pic
	OPTNAMEPATTERN "#?.tif"
	COMPAREBYTE 0 "MM"
ENDTYPE

TYPE "BMP"
	INSERTAFTER "TIFF"
	ICONNAME	def_Pic
	OPTNAMEPATTERN "#?.bmp"
	COMPAREBYTE 0 "BM"
	COMPAREBYTE 6 $0
ENDTYPE

TYPE "Targa"
	INSERTAFTER "BMP"
	ICONNAME	def_Pic
	OPTNAMEPATTERN "#?.tga"
	COMPAREBYTE 0 $0A08002E001
ENDTYPE

TYPE "SunRaster"
	INSERTAFTER "Targa"
	ICONNAME	def_Pic
	COMPAREBYTE 0 $59A66A95
ENDTYPE

TYPE "WAV"
	INSERTAFTER "8SVX"
	ICONNAME	def_Sound
	OPTNAMEPATTERN "#?.wav"
	COMPAREBYTE 0 "RIFF"
	COMPAREBYTE 8 "WAVE"
ENDTYPE
TYPE "DMS"
	OPTNAMEPATTERN "#?.dms"
	COMPAREBYTE 0 "DMS!"
ENDTYPE

W    WhatIs.doc.info6     ֐  Pt א ʐ^   R  LhArcDir= Ȑ .key Dir/A,Destination,Pat/K
.bra {
.ket }
.def Pat="#?"

Set CurrentDir `CD`
IF "{Destination}" EQ ""
	Set Dest $CurrentDir
Else
	Set Dest {Destination}
EndIf

CD "{Dir}"
CD /
Set ArcDir `BaseName "{Dir}"`
Set ArcPathName "`TackOn "$Dest" "$ArcDir"`"

Lha -a -r -x a "$ArcPathName" "$ArcDir/{Pat}"
IF $RC GT 0
	Echo "Error during compression of {Dir}."
	Ask "Press RETURN."
EndIf
CD $CurrentDir
UnSet Dest
UnSet ArcDir
UnSet ArcPathName
UnSet CurrentDir

,     ؐ  P4 ِ ]^ 0  )  LhArcVol= Ȑ .key Dir/a
.bra {
.ket }

Set ArcName `VolName {Dir}`
Lha -a -r -x a $ArcName.lha $ArcName:*
n}" EQ ""
	Set Dest $CurrentDir
Else
	Set Dest {Destination}
EndIf

CD "{Dir}"
CD /
Set ArcDir `BaseName "{Dir}"`
Set ArcPathName "`TackOn "$Dest" "$ArcDir"`"

Lha -a -r -x a "$ArcPathName" "$ArcDir/{Pat}"
IF $RC GT 0
	Echo "Error during compression of {Dir}."
	Ask "Press RETURN."
EndIf
CD $CurrentDir
UnSet Dest
UnSet ArcDir
UnSet ArcPathName
UnSet CurrentDir

,     ڐ  By ې ^ _    
PPDocToCed; Ȑ .key File/a
.bra {
.ket }

Set TFile T:`BaseName {File} .pp`
DeCrunch {File} T:
Ed $TFile
Wait 2	; if Ced is not yet loaded, wait before deleting file
Delete $TFile

 a  `  _ ^     	Help.info< p    ܐ H ES U# \ ݐ <7   Y _r     sSources> p    ݐ  ~ِ    
 	           ސ Ȑ^ 3    	AddIcon.c< ܐ /*
 *  AddIcon.c - Copyright  1994 by S.R. & P.C.
 *
 *	Created:	23 May 1992  12:00:40
 *  Modified: 18 Dec 1994  16:59:33
 *
 *  Make>> rx BumpRev AddIcon 1 3
 *  Make>> sc <file>.c
 *  Make>> slink LIB:cs.o <file>.o SC SD ND BATCH NOICONS TO <file> LIB LIB:c.lib
 */

#include <libraries/WhatIsBase.h>
#include <proto/WhatIs.h>
#include <clib.h>
#include "AddIcon_rev.h"

// Startup Modules.
CliArgs; 

struct Library *WhatIsBase;
struct Library *IconBase;

#define MAXFULLNAMELEN 255

char *Template = "FileName/A,ONLYTYPE/K,FILESONLY/S,DIRSONLY/S,QUIET/S,FLOAT/S,OVERWRITE/S,ALL/S";
char *CliHelp = "AddIcon V"VERSIONREVISION"  1992-94 [32mS.R. & P.C.[31m";
static char Version[] = VERSTAG;

#define ARG_FileName 0
#define ARG_ONLY		1
#define ARG_FILES		2
#define ARG_DIRS		3
#define ARG_QUIET		4
#define ARG_FLOAT		5
#define ARG_OVERWRITE	6
#define ARG_ALL	7
#define ARG_ENDARG		8
static void GetDefIconsDir(char *Buf)
{
	#define DOSLISTFLAGS	(LDF_READ|LDF_VOLUMES|LDF_ASSIGNS)
	struct DosList *dl;
	BOOL Do