Annotation of 43BSDReno/sys/nfs/TEST/pcnfs-tests/testsuit.tar, revision 1.1

1.1     ! root        1: ./   775  20115     11           0  4552136511   4214 ./basic/   775  20115     11           0  4552136061   5275 ./basic/subr.c   664  20115     11       23750  4552130364   6530 /*     @(#)subr.c      1.2 89/01/08 NFS Rev 2 Testsuite        */
        !             2: /*
        !             3:  * Useful subroutines shared by all tests
        !             4:  */
        !             5: 
        !             6: #include "tests.h"
        !             7: 
        !             8: char *Myname;
        !             9: 
        !            10: #ifdef ANSI
        !            11: 
        !            12: int unix_chdir(char * path);
        !            13: 
        !            14: 
        !            15: 
        !            16: #ifdef DOS
        !            17: char *getwd(char * path);
        !            18: #endif
        !            19: 
        !            20: #endif
        !            21: 
        !            22: /*
        !            23:  * Build a directory tree "lev" levels deep
        !            24:  * with "files" number of files in each directory
        !            25:  * and "dirs" fan out.  Starts at the current directory.
        !            26:  * "fname" and "dname" are the base of the names used for
        !            27:  * files and directories.
        !            28:  */
        !            29: void
        !            30: dirtree(lev, files, dirs, fname, dname, totfiles, totdirs)
        !            31:        int lev;
        !            32:        int files;
        !            33:        int dirs;
        !            34:        char *fname;
        !            35:        char *dname;
        !            36:        int *totfiles;
        !            37:        int *totdirs;
        !            38: {
        !            39:        int fd;
        !            40:        int f, d;
        !            41:        char name[MAXPATHLEN];
        !            42: 
        !            43:        if (lev-- == 0) {
        !            44:                return;
        !            45:        }
        !            46:        for ( f = 0; f < files; f++) {
        !            47:                sprintf(name, "%s%d", fname, f);
        !            48:                if ((fd = creat(name, CHMOD_YES)) < 0) {
        !            49:                        error("creat %s failed", name);
        !            50:                        exit(1);
        !            51:                }
        !            52:                (*totfiles)++;
        !            53:                if (close(fd) < 0) {
        !            54:                        error("close %d failed", fd);
        !            55:                        exit(1);
        !            56:                }
        !            57:        }
        !            58:        for ( d = 0; d < dirs; d++) {
        !            59:                sprintf(name, "%s%d", dname, d);
        !            60:                #ifdef DOS
        !            61:                if (mkdir(name) < 0) {
        !            62:                #else
        !            63:                if (mkdir(name, 0777) < 0) {
        !            64:                #endif
        !            65:                        error("mkdir %s failed", name);
        !            66:                        exit(1);
        !            67:                }
        !            68:                (*totdirs)++;
        !            69:                if (unix_chdir(name) < 0) {
        !            70:                        error("chdir %s failed", name);
        !            71:                        exit(1);
        !            72:                }
        !            73:                dirtree(lev, files, dirs, fname, dname, totfiles, totdirs);
        !            74:                if (unix_chdir("..") < 0) {
        !            75:                        error("chdir .. failed");
        !            76:                        exit(1);
        !            77:                }
        !            78:        }
        !            79: }
        !            80: 
        !            81: /*
        !            82:  * Remove a directory tree starting at the current directory.
        !            83:  * "fname" and "dname" are the base of the names used for
        !            84:  * files and directories to be removed - don't remove anything else!
        !            85:  * "files" and "dirs" are used with fname and dname to generate
        !            86:  * the file names to remove.
        !            87:  *
        !            88:  * This routine will fail if, say after removing known files,
        !            89:  * the directory is not empty.
        !            90:  *
        !            91:  * This is used to test the unlink function and to clean up after tests.
        !            92:  */
        !            93: void
        !            94: rmdirtree(lev, files, dirs, fname, dname, totfiles, totdirs, ignore)
        !            95:        int lev;
        !            96:        int files;
        !            97:        int dirs;
        !            98:        char *fname;
        !            99:        char *dname;
        !           100:        int *totfiles;          /* total removed */
        !           101:        int *totdirs;           /* total removed */
        !           102:        int ignore;
        !           103: {
        !           104:        int f, d;
        !           105:        char name[MAXPATHLEN];
        !           106: 
        !           107:        if (lev-- == 0) {
        !           108:                return;
        !           109:        }
        !           110:        for ( f = 0; f < files; f++) {
        !           111:                sprintf(name, "%s%d", fname, f);
        !           112:                if (unlink(name) < 0 && !ignore) {
        !           113:                        error("unlink %s failed", name);
        !           114:                        exit(1);
        !           115:                }
        !           116:                (*totfiles)++;
        !           117:        }
        !           118:        for ( d = 0; d < dirs; d++) {
        !           119:                sprintf(name, "%s%d", dname, d);
        !           120:                if (unix_chdir(name) < 0) {
        !           121:                        if (ignore)
        !           122:                                continue;
        !           123:                        error("chdir %s failed", name);
        !           124:                        exit(1);
        !           125:                }
        !           126:                rmdirtree(lev, files, dirs, fname, dname, totfiles, totdirs, ignore);
        !           127:                if (unix_chdir("..") < 0) {
        !           128:                        error("chdir .. failed");
        !           129:                        exit(1);
        !           130:                }
        !           131:                if (rmdir(name) < 0) {
        !           132:                        error("rmdir %s failed", name);
        !           133:                        exit(1);
        !           134:                }
        !           135:                (*totdirs)++;
        !           136:        }
        !           137: }
        !           138: 
        !           139: /* VARARGS */
        !           140: void
        !           141: error(str, ar1, ar2, ar3, ar4, ar5, ar6, ar7, ar8, ar9)
        !           142:        char *str;
        !           143:        long ar1, ar2, ar3, ar4, ar5, ar6, ar7, ar8, ar9;
        !           144: {
        !           145:        char *ret;
        !           146: 
        !           147:        char path[MAXPATHLEN];
        !           148: 
        !           149:        if ((ret = getwd(path)) == NULL)
        !           150: 
        !           151:                fprintf(stderr, "%s: getwd failed\n", Myname);
        !           152:        else
        !           153:                fprintf(stderr, "\t%s: (%s) ", Myname, path);
        !           154: 
        !           155:        fprintf(stderr, str, ar1, ar2, ar3, ar4, ar5, ar6, ar7, ar8, ar9);
        !           156:        if (errno)
        !           157:                perror(" ");
        !           158:        else
        !           159:                fprintf(stderr, "\n");
        !           160:        fflush(stderr);
        !           161:        if (ret == NULL)
        !           162:                exit(1);
        !           163: }
        !           164: 
        !           165: static struct timeval ts, te;
        !           166: 
        !           167: /*
        !           168:  * save current time in struct ts
        !           169:  */
        !           170: void
        !           171: starttime()
        !           172: {
        !           173:        gettimeofday(&ts, (struct timezone *)0);
        !           174: }
        !           175: 
        !           176: /*
        !           177:  * sets the struct tv to the difference in time between
        !           178:  * current time and the time in struct ts.
        !           179:  */
        !           180: void
        !           181: endtime(tv)
        !           182:        struct timeval *tv;
        !           183: {
        !           184: 
        !           185:        gettimeofday(&te, (struct timezone *)0);
        !           186:        if (te.tv_usec < ts.tv_usec) {
        !           187:                te.tv_sec--;
        !           188:                te.tv_usec += 1000000;
        !           189:        }
        !           190:        tv->tv_usec = te.tv_usec - ts.tv_usec;
        !           191:        tv->tv_sec = te.tv_sec - ts.tv_sec;
        !           192: }
        !           193: 
        !           194: void
        !           195: printtimes(tv, nbytes)
        !           196:        struct timeval *tv;     /* contains the elapsed time */
        !           197:        long nbytes;            /* size * count */
        !           198: {
        !           199:        fprintf(stdout, " in %ld.%-2ld seconds",
        !           200:                tv->tv_sec, tv->tv_usec / 10000L);
        !           201:        if (nbytes > 0 && tv->tv_sec != 0)
        !           202:                fprintf(stdout, " (%ld bytes/sec)", nbytes/tv->tv_sec);
        !           203: }
        !           204: 
        !           205: /*
        !           206:  * Set up and move to a test directory
        !           207:  */
        !           208: void
        !           209: testdir(dir)
        !           210: char *dir;
        !           211: {
        !           212:        struct stat statb;
        !           213:        char str[MAXPATHLEN];
        !           214:        char *getenv();
        !           215: 
        !           216:        /*
        !           217:         *  If dir is non-NULL, use that dir.  If NULL, first
        !           218:         *  check for env variable NFSTESTDIR.  If that is not
        !           219:         *  set, use the compiled-in TESTDIR.
        !           220:         */
        !           221:        if (dir == NULL)
        !           222:                if ((dir = getenv("NFSTESTDIR")) == NULL)
        !           223:                        dir = TESTDIR;
        !           224: 
        !           225:        if (stat(dir, &statb) == 0) {
        !           226:                sprintf(str, "rm -r %s", dir);
        !           227:                if (system(str) != 0) {
        !           228:                        error("can't remove old test directory %s", dir);
        !           229:                        exit(1);
        !           230:                }
        !           231:        }
        !           232: 
        !           233:        #ifdef DOS
        !           234:        if (mkdir(dir) < 0) {
        !           235:        #else
        !           236:        if (mkdir(dir, 0777) < 0) {
        !           237:        #endif
        !           238:                error("can't create test directory %s", dir);
        !           239:                exit(1);
        !           240:        }
        !           241:        if (unix_chdir(dir) < 0) {
        !           242:                error("can't chdir to test directory %s", dir);
        !           243:                exit(1);
        !           244:        }
        !           245: }
        !           246: 
        !           247: /*
        !           248:  * Move to a test directory
        !           249:  */
        !           250: int
        !           251: mtestdir(dir)
        !           252: char *dir;
        !           253: {
        !           254:        char *getenv();
        !           255: 
        !           256:        /*
        !           257:         *  If dir is non-NULL, use that dir.  If NULL, first
        !           258:         *  check for env variable NFSTESTDIR.  If that is not
        !           259:         *  set, use the compiled-in TESTDIR.
        !           260:         */
        !           261:        if (dir == NULL)
        !           262:                if ((dir = getenv("NFSTESTDIR")) == NULL)
        !           263:                        dir = TESTDIR;
        !           264: 
        !           265:        if (unix_chdir(dir) < 0) {
        !           266:                error("can't chdir to test directory %s", dir);
        !           267:                return -1;
        !           268:        }
        !           269:        return 0;
        !           270: }
        !           271: 
        !           272: /*
        !           273:  *  get parameter at parm, convert to int, and make sure that
        !           274:  *  it is at least min.
        !           275:  */
        !           276: long
        !           277: getparm(parm, min, label)
        !           278: char *parm, *label;
        !           279: long min;
        !           280: {
        !           281:        long val = atol(parm);
        !           282:        if (val < min) {
        !           283:                error("Illegal %s parameter %ld, must be at least %ld",
        !           284:                        label, val, min);
        !           285:                exit(1);
        !           286:        }
        !           287:        return val;
        !           288: }
        !           289: 
        !           290: #ifdef DOS
        !           291: 
        !           292: #ifdef ANSI
        !           293: void chdrive(char * path);
        !           294: #endif
        !           295: 
        !           296: /*
        !           297:  * Change to drive specified in path
        !           298:  */
        !           299: 
        !           300: void
        !           301: chdrive(path)
        !           302: char *path;
        !           303: {
        !           304:        int desireddrive, drive;
        !           305:        if (path[1] == ':')
        !           306:                {
        !           307:                desireddrive = toupper(path[0]) - ('A' - 1);
        !           308:                _dos_setdrive(desireddrive, &drive);
        !           309:                _dos_getdrive(&drive);
        !           310:                if (drive != desireddrive)
        !           311:                        {
        !           312:                        error("can't change to drive %c:", path[0]);
        !           313:                        exit(1);
        !           314:                        }
        !           315:                }
        !           316: }
        !           317: 
        !           318: /*
        !           319:  *  exit point for successful test
        !           320:  */
        !           321: void
        !           322: complete()
        !           323: {
        !           324:        fprintf(stdout, "\t%s ok.\n", Myname);
        !           325: #ifdef DOS
        !           326:        chdrive(Myname);
        !           327: #endif
        !           328:        exit(0);
        !           329: }
        !           330: 
        !           331: 
        !           332: int
        !           333: unix_chdir(path)
        !           334: char *path;
        !           335: {
        !           336:        #ifdef DOS
        !           337:        chdrive(path);
        !           338:        #endif
        !           339:        return chdir(path);
        !           340: }
        !           341: 
        !           342: char *
        !           343: getwd(path)
        !           344: char * path;
        !           345: {
        !           346:        return getcwd(path, MAXPATHLEN);
        !           347: }
        !           348: 
        !           349: int
        !           350: unix_chmod(path, mode)
        !           351: char *path;
        !           352: int mode;
        !           353: {
        !           354:        int dosmode = (mode&0500 ? S_IREAD : 0) | (mode&0200 ? S_IWRITE : 0);
        !           355:        return chmod(path, dosmode);
        !           356: }
        !           357: 
        !           358: int
        !           359: lstat(path, buf)
        !           360: char *path;
        !           361: struct stat *buf;
        !           362: {
        !           363:        return stat(path, buf);
        !           364: }
        !           365: 
        !           366: void
        !           367: gettimeofday(struct timeval *TV, struct timezone *TimeZone)
        !           368: {
        !           369:        struct dostime_t dostime;
        !           370:        _dos_gettime(&dostime);
        !           371:        TV->tv_sec = dostime.hour * 3600L
        !           372:                + dostime.minute * 60L
        !           373:                + dostime.second;
        !           374:        TV->tv_usec = dostime.hsecond * 10000L;
        !           375:        TimeZone = TimeZone;    /* shut up compiler/lint */
        !           376: }
        !           377: 
        !           378: int
        !           379: statfs(path, buf)
        !           380: char *path;
        !           381: struct statfs *buf;
        !           382: {
        !           383:        char *p = (char *) buf;
        !           384:        int i;
        !           385:        unsigned drive;
        !           386:        struct diskfree_t diskspace;
        !           387:        
        !           388:        for (i = 0; i < sizeof(*buf); i++)
        !           389:                *p++ = (char) -1;
        !           390:        buf->f_type = 0;        /* that's what the man page says */
        !           391:        if (path[1] == ':')
        !           392:                drive = toupper(path[0]) - ('A' - 1);
        !           393:        else
        !           394:                _dos_getdrive(&drive);
        !           395:        if (_dos_getdiskfree(drive, &diskspace))
        !           396:                return -1;
        !           397:        buf->f_bsize = diskspace.bytes_per_sector;
        !           398:        buf->f_blocks = (long) diskspace.total_clusters
        !           399:                * diskspace.sectors_per_cluster;
        !           400:        buf->f_bfree = (long) diskspace.avail_clusters
        !           401:                * diskspace.sectors_per_cluster;
        !           402:        buf->f_bavail = buf->f_bfree;
        !           403:        return 0;
        !           404: }
        !           405: 
        !           406: /***************************************************************
        !           407: DIRENT EMULATION FOR DOS
        !           408: ***************************************************************/
        !           409: char pattern[MAXNAMLEN];
        !           410: struct find_t findtst;
        !           411: int maxentry;
        !           412: int currententry;
        !           413: int diropen = 0;
        !           414: struct dirent *dirlist;
        !           415: DIR dirst;
        !           416: 
        !           417: #ifdef ANSI
        !           418: static void copynametolower(char *dest, char *src);
        !           419: static void findt_to_dirent(struct find_t *f, struct dirent *d);
        !           420: #endif
        !           421: 
        !           422: DIR *
        !           423: opendir(dirname)
        !           424: char *dirname;
        !           425: {
        !           426:        int i;
        !           427:        unsigned attributes = _A_NORMAL|_A_RDONLY|_A_HIDDEN|_A_SUBDIR;
        !           428:        strcpy(pattern, dirname);
        !           429:        strcat(pattern, "\\*.*");
        !           430:        if (diropen)
        !           431:                return NULL;
        !           432:        diropen = 1;
        !           433:        dirlist = (struct dirent *) malloc(512 * sizeof(struct dirent));
        !           434:        if (dirlist == NULL)
        !           435:                return NULL;
        !           436:        if (_dos_findfirst(pattern, attributes, &findtst))
        !           437:                return NULL;
        !           438:        findt_to_dirent(&findtst, &dirlist[0]);
        !           439:        for (i = 1; ! _dos_findnext(&findtst); i++) {
        !           440:                findt_to_dirent(&findtst, &dirlist[i]);
        !           441:        }
        !           442:        maxentry = i - 1;
        !           443:        currententry = 0;
        !           444:        return &dirst;
        !           445: }
        !           446: 
        !           447: void
        !           448: rewinddir(dirp)
        !           449: DIR *dirp;
        !           450: {
        !           451:        int i;
        !           452:        unsigned attributes = _A_NORMAL|_A_RDONLY|_A_HIDDEN|_A_SUBDIR;
        !           453:        dirp = dirp;    /* shut up compiler */
        !           454:        if (_dos_findfirst(pattern, attributes, &findtst)) {
        !           455:                error("rewind failed");
        !           456:                exit(1);
        !           457:        }
        !           458:        findt_to_dirent(&findtst, &dirlist[0]);
        !           459:        for (i = 1; ! _dos_findnext(&findtst); i++) {
        !           460:                findt_to_dirent(&findtst, &dirlist[i]);
        !           461:        }
        !           462:        maxentry = i - 1;
        !           463:        currententry = 0;
        !           464: }
        !           465: 
        !           466: long
        !           467: telldir(dirp)
        !           468: DIR *dirp;
        !           469: {
        !           470:        dirp = dirp;    /* keep compiler happy */
        !           471:        return (long) currententry;
        !           472: }
        !           473: 
        !           474: void
        !           475: seekdir(dirp, loc)
        !           476: DIR *dirp;
        !           477: long loc;
        !           478: {
        !           479:        dirp = dirp;    /* keep compiler happy */
        !           480:        if (loc <= (long) maxentry)
        !           481:                currententry = (int) loc;
        !           482:        /* else seekdir silently fails */
        !           483: }
        !           484: 
        !           485: struct dirent *
        !           486: readdir(dirp)
        !           487: DIR *dirp;
        !           488: {
        !           489:        dirp = dirp;    /* shut up compiler */
        !           490:        if (currententry > maxentry)
        !           491:                return (struct dirent *) NULL;
        !           492:        else {
        !           493:                return &dirlist[currententry++];
        !           494:        }
        !           495: }
        !           496: 
        !           497: void
        !           498: findt_to_dirent(f, d)
        !           499: struct find_t *f;
        !           500: struct dirent *d;
        !           501: {
        !           502:        copynametolower(d->d_name, f->name);
        !           503: }
        !           504: 
        !           505: static void
        !           506: copynametolower(dest, src)
        !           507: char *dest;
        !           508: char *src;
        !           509: {
        !           510:        int i;
        !           511:        for (i = 0; dest[i] = (char) tolower((int) src[i]); i++) {
        !           512:                /* null body */
        !           513:        }
        !           514: }
        !           515: 
        !           516: void
        !           517: closedir(dirp)
        !           518: DIR *dirp;
        !           519: {
        !           520:        dirp = dirp;    /* keep compiler happy */
        !           521:        diropen = 0;
        !           522: }
        !           523: 
        !           524: #endif /* DOS */
        !           525: 
        !           526: 
        !           527:  * sets the struct tv ./basic/test5a.c   664  20115     11        6656  4552130373   6750 /*       @(#)test5a.c    1.2 89/01/10 NFS Rev 2 Testsuite        */
        !           528: /*
        !           529:  * Test write - DOES NOT VERIFY WRITE CONTENTS
        !           530:  *
        !           531:  * Uses the following important system calls against the server:
        !           532:  *
        !           533:  *     chdir()
        !           534:  *     mkdir()         (for initial directory creation if not -m)
        !           535:  *     creat()
        !           536:  *     write()
        !           537:  *     stat()
        !           538:  *     fstat()
        !           539:  */
        !           540: 
        !           541: #include "tests.h"
        !           542: 
        !           543: #define        BUFSZ   8192
        !           544: #define        DSIZE   1048576L
        !           545: 
        !           546: int Tflag = 0;         /* print timing */
        !           547: int Hflag = 0;         /* print help message */
        !           548: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !           549: int Nflag = 0;         /* Suppress directory operations */
        !           550: 
        !           551: void usage(void);
        !           552: 
        !           553: void
        !           554: usage()
        !           555: {
        !           556:        fprintf(stdout, "usage: %s [-htfn] [size count fname]\n", Myname);
        !           557:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !           558:        fprintf(stdout, "          t    Print execution time statistics\n");
        !           559:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !           560:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !           561: }
        !           562: 
        !           563: void main(int argc,char *argv[]);
        !           564: 
        !           565: void
        !           566: main(argc, argv)
        !           567:        int argc;
        !           568:        char *argv[];
        !           569: {
        !           570:        int count = DCOUNT;     /* times to do each file */
        !           571:        int ct;
        !           572:        long size = DSIZE;
        !           573:        long si;
        !           574:        long i;
        !           575:        int fd;
        !           576:        int bytes;
        !           577:        char *bigfile = "bigfile";
        !           578:        struct timeval time;
        !           579:        struct stat statb;
        !           580:        char *opts;
        !           581:        char buf[BUFSZ];
        !           582: 
        !           583:        umask(0);
        !           584:        setbuf(stdout, NULL);
        !           585:        Myname = *argv++;
        !           586:        argc--;
        !           587:        while (argc && **argv == '-') {
        !           588:                for (opts = &argv[0][1]; *opts; opts++) {
        !           589:                        switch (*opts) {
        !           590:                                case 'h':       /* help */
        !           591:                                        usage();
        !           592:                                        exit(1);
        !           593: 
        !           594:                                case 't':       /* time */
        !           595:                                        Tflag++;
        !           596:                                        break;
        !           597:                                
        !           598:                                case 'f':       /* funtionality */
        !           599:                                        Fflag++;
        !           600:                                        break;
        !           601:                                
        !           602:                                case 'n':       /* No Test Directory create */
        !           603:                                        Nflag++;
        !           604:                                        break;
        !           605: 
        !           606:                                default:
        !           607:                                        error("unknown option '%c'", *opts);
        !           608:                                        usage();
        !           609:                                        exit(1);
        !           610:                        }
        !           611:                }
        !           612:                argc--;
        !           613:                argv++;
        !           614:        }
        !           615: 
        !           616:        if (argc) {
        !           617:                 size = getparm(*argv, 1L, "size");
        !           618:                argv++;
        !           619:                argc--;
        !           620:        }
        !           621:        if (argc) {
        !           622:                 count = (int) getparm(*argv, 1L, "count");
        !           623:                argv++;
        !           624:                argc--;
        !           625:        }
        !           626:        if (argc) {
        !           627:                 bigfile = *argv;
        !           628:                argv++;
        !           629:                argc--;
        !           630:        }
        !           631:        if (argc) {
        !           632:                usage();
        !           633:                exit(1);
        !           634:        }
        !           635:        
        !           636:        if (Fflag) {
        !           637:                Tflag = 0;
        !           638:                count = 1;
        !           639:        }
        !           640: 
        !           641:        fprintf(stdout, "%s: write\n", Myname);
        !           642: 
        !           643:        if (!Nflag)
        !           644:                testdir(NULL);
        !           645:        else
        !           646:                mtestdir(NULL);
        !           647: 
        !           648:        /* Set up contents, however we won't verify. */
        !           649:        for (i=0; i < BUFSZ / sizeof(long); i++) {
        !           650:                ((long *)buf)[i] = i;
        !           651:        }
        !           652: 
        !           653:        if (Tflag) {
        !           654:                starttime();
        !           655:        }
        !           656: 
        !           657:        for (ct = 0; ct < count; ct++) {
        !           658:                if ((fd = creat(bigfile, CHMOD_YES)) < 0) {
        !           659:                        error("can't create '%s'", bigfile);
        !           660:                        exit(1);
        !           661:                }
        !           662:                if (fstat(fd, &statb) < 0) {
        !           663:                        error("can't stat '%s'", bigfile);
        !           664:                        exit(1);
        !           665:                }
        !           666:                if (statb.st_size != 0) {
        !           667:                        error("'%s' has size %ld, should be 0",
        !           668:                            bigfile, statb.st_size);
        !           669:                        exit(1);
        !           670:                }
        !           671:                 for (si = size; si > 0; si -= BUFSZ) {
        !           672:                        bytes = (int) MIN((long) BUFSZ, si);
        !           673:                        if (write(fd, buf, bytes) != bytes) {
        !           674:                                error("'%s' write failed", bigfile);
        !           675:                                exit(1);
        !           676:                        }
        !           677:                }
        !           678:                close(fd);
        !           679:                if (stat(bigfile, &statb) < 0) {
        !           680:                        error("can't stat '%s'", bigfile);
        !           681:                        exit(1);
        !           682:                }
        !           683:                if (statb.st_size != size) {
        !           684:                        error("'%s' has size %ld, should be %ld",
        !           685:                            bigfile, statb.st_size, size);
        !           686:                        exit(1);
        !           687:                }
        !           688:        }
        !           689: 
        !           690:        if (Tflag) {
        !           691:                endtime(&time);
        !           692:        }
        !           693: 
        !           694:        fprintf(stdout, "\twrote %ld byte file %d times", size, count);
        !           695:        if (Tflag) {
        !           696:                printtimes(&time, size * (long) count);
        !           697:        }
        !           698:        fprintf(stdout, "\n");
        !           699: 
        !           700:        complete();
        !           701: }
        !           702: mpiler happy */
        !           703:        diropen = 0;
        !           704: }
        !           705: 
        !           706: #endif /* DOS */
        !           707: 
        !           708: 
        !           709:  * sets the struct tv ./basic/tests.h   664  20115     11        2773  4552130402   6677 /*       @(#)tests.h     1.2 89/01/08 NFS Rev 2 Testsuite        */
        !           710: 
        !           711: /* Do all includes here so you don't have to mess with each file */
        !           712: 
        !           713: #ifndef DOS
        !           714: #include <sys/param.h>
        !           715: #endif
        !           716: #ifndef major
        !           717: #include <sys/types.h>
        !           718: #endif
        !           719: #include <sys/stat.h>
        !           720: #include <stdio.h>
        !           721: #include <errno.h>
        !           722: #ifdef DOS
        !           723: #include <fcntl.h>
        !           724: #include <dos.h>
        !           725: #include <time.h>
        !           726: #include "unixdos.h"
        !           727: #include <direct.h>
        !           728: #include <io.h>
        !           729: #include <stdlib.h>
        !           730: #include <string.h>
        !           731: #include <ctype.h>
        !           732: #endif
        !           733: 
        !           734: #define        TESTDIR "o:\\nfstestd"
        !           735: #define        DNAME   "dir."
        !           736: #define        FNAME   "file."
        !           737: #define        DCOUNT  10
        !           738: #define        DDIRS   2
        !           739: #define        DLEVS   5
        !           740: #define        DFILS   5
        !           741: 
        !           742: #ifdef DOS
        !           743: #define CHMOD_MASK (S_IREAD | S_IWRITE)
        !           744: #define CHMOD_YES CHMOD_MASK
        !           745: #define CHMOD_NO S_IREAD
        !           746: #else
        !           747: #define CHMOD_MASK 0777
        !           748: #define CHMOD_YES 0666
        !           749: #define CHMOD_NO 0
        !           750: #endif
        !           751: 
        !           752: #ifdef ANSI
        !           753: void error(char *str,...);
        !           754: void starttime(void);
        !           755: void endtime(struct timeval *tv);
        !           756: void printtimes(struct timeval *tv, long nbytes);
        !           757: void testdir(char *dir);
        !           758: int mtestdir(char *dir);
        !           759: long getparm(char *parm, long min, char *label);
        !           760: void complete(void);
        !           761: int unix_chdir(char *path);
        !           762: void dirtree(int lev, int files, int dirs, char *fname, char *dname, int *totfiles, int *totdirs);
        !           763: void rmdirtree(int lev, int files, int dirs, char *fname, char *dname, int *totfiles, int *totdirs, int ignore);
        !           764: #ifdef DOS
        !           765: char *getwd(char *path);
        !           766: #endif
        !           767: int unix_chmod(char *path, int mode);
        !           768: #endif
        !           769: 
        !           770: extern int errno;
        !           771: 
        !           772: extern char *Myname;           /* name I was invoked with (for error msgs) */
        !           773: 
        !           774: e 't'./basic/unixdos.h   664  20115     11        6727  4552130404   7233 struct timeval
        !           775: {
        !           776:        long tv_sec;  /* seconds since midnight (unlike Unix) */
        !           777:        long tv_usec; /* and microseconds */
        !           778: };
        !           779: 
        !           780: typedef unsigned char u_char;
        !           781: 
        !           782: #define MAXPATHLEN 256 /* tune later */
        !           783: #define MIN(a, b) (((a) < (b)) ? (a) : (b))
        !           784: 
        !           785: void gettimeofday(struct timeval *TV, struct timezone *TimeZone);
        !           786: int unix_chdir(char * path);
        !           787: char * getwd(char * path);
        !           788: int unix_chmod(char * path, int mode);
        !           789: int lstat(char *path, struct stat *buf);
        !           790: 
        !           791: /************************************************************
        !           792: statfs stuff
        !           793: ************************************************************/
        !           794: 
        !           795:           typedef struct {
        !           796:                  long    val[2];
        !           797:           } fsid_t;
        !           798:           struct statfs {
        !           799:                  long    f_type;     /* type of info, zero for now */
        !           800:                  long    f_bsize;    /* fundamental file system block size */
        !           801:                  long    f_blocks;   /* total blocks in file system */
        !           802:                  long    f_bfree;    /* free blocks */
        !           803:                  long    f_bavail;   /* free blocks available to non-super-user */
        !           804:                  long    f_files;    /* total file nodes in file system */
        !           805:                  long    f_ffree;    /* free file nodes in fs */
        !           806:                  fsid_t  f_fsid;     /* file system id */
        !           807:                  long    f_spare[7]; /* spare for later */
        !           808:           };
        !           809:           
        !           810: int statfs(char *path, struct statfs *buf);
        !           811: 
        !           812: /************************************************************
        !           813: From /usr/include/directory.h, simplified:
        !           814: ************************************************************/
        !           815: 
        !           816: #ifndef        __dirent_h
        !           817: #define        __dirent_h
        !           818: 
        !           819: /*
        !           820:  * Definitions for library routines operating on directories.
        !           821:  */
        !           822: typedef int DIR;       /* just a dummy */
        !           823: 
        !           824: DIR *opendir(char *dirname);
        !           825: struct dirent *readdir(DIR *dirp);
        !           826: void rewinddir(DIR *dirp);
        !           827: void closedir(DIR *dirp);
        !           828: #ifndef        _POSIX_SOURCE
        !           829: void seekdir(DIR *dirp, long loc);
        !           830: long telldir(DIR *dirp);
        !           831: #endif /* POSIX_SOURCE */
        !           832: 
        !           833: #endif /* !__dirent_h */
        !           834: 
        !           835: /*************************************************************
        !           836: From /usr/include/sys/dirent.h:
        !           837: *************************************************************/
        !           838: 
        !           839: /*
        !           840:  * Filesystem-independent directory information.
        !           841:  * Directory entry structures are of variable length.
        !           842:  * Each directory entry is a struct dirent containing its file number, the
        !           843:  * offset of the next entry (a cookie interpretable only the filesystem
        !           844:  * type that generated it), the length of the entry, and the length of the
        !           845:  * name contained in the entry.  These are followed by the name. The
        !           846:  * entire entry is padded with null bytes to a 4 byte boundary. All names
        !           847:  * are guaranteed null terminated. The maximum length of a name in a
        !           848:  * directory is MAXNAMLEN, plus a null byte.
        !           849:  */
        !           850: 
        !           851: #ifndef        __sys_dirent_h
        !           852: #define        __sys_dirent_h
        !           853: 
        !           854: struct dirent {
        !           855:        /* just need d_name field for Cthon tests */
        !           856:        char            d_name[13];     /* name (up to MAXNAMLEN + 1) */
        !           857: };
        !           858: 
        !           859: #ifndef        _POSIX_SOURCE
        !           860: /*
        !           861:  * It's unlikely to change, but make sure that sizeof d_name above is
        !           862:  * at least MAXNAMLEN + 1 (more may be added for padding).
        !           863:  */
        !           864: #define        MAXNAMLEN       255
        !           865: /*
        !           866:  * The macro DIRSIZ(dp) gives the minimum amount of space required to represent
        !           867:  * a directory entry.  For any directory entry dp->d_reclen >= DIRSIZ(dp).
        !           868:  * Specific filesystem types may use this macro to construct the value
        !           869:  * for d_reclen.
        !           870:  */
        !           871: #undef DIRSIZ
        !           872: #define        DIRSIZ(dp) \
        !           873:        (((sizeof(struct dirent) - (MAXNAMLEN+1) + ((dp)->d_namlen+1)) +3) & ~3)
        !           874: 
        !           875: #endif /* !_POSIX_SOURCE */
        !           876: #endif /* !__sys_dirent_h */
        !           877: if /* DOS */
        !           878: 
        !           879: 
        !           880:  * sets the struct tv ./basic/subr.obj   777  20115     11       35434  4552136064   7072 �subr.c%�MS Cn�   �SLIBCE��0s3��&CV7�NDGROUP_TEXTCODE_DATADATACONST_BSSBSS$$TYPESDEBTYP      $$SYMBOLSDEBSYM)�H&�H&��H&
        !           881: �H        &�� o
&�� 
        !           882: &����V�
&&@&E&��
&
        !           883: __acrtused_statfs_fflush_opendir_atol_readdir__ctype
        !           884: _rewinddir_exit_fprintf_error   _closedir
        !           885: _starttime_endtime_seekdir_getenv_telldir_printtimes_chdir_testdir_getcwd     _mtestdir_mkdir_malloc_rmdir_chmod_perror_getparm��_pattern�b��n�   _complete_close$�_findtst�hb,g�   _creat��.   _maxentry��b
_currententry��b_dirlist��b��__chkstk�_dirst��bT�__aNldivE�copynametolowerÌ_dirtree_sprintf_system��findt_to_dirent__dos_findfirst
_gettimeofday__dos_findnext_unlink __aNulmul_unix_chdir__dos_getdrive_getwd
        !           886: _rmdirtree__dos_getdiskfree_unix_chmod_strcat
__dos_gettime��
_Myname��b�B_lstat_chdrive_stat_errno_strcpy__dos_setdrive__iobϐ�&_statfsg�_opendir]   �_readdir5�'
        !           887: _rewinddir?
        !           888: �_error���  _closedir��.
        !           889: _starttime���_endtime���_seekdir�
        !           890: �$_telldir�
        !           891: �"_printtimesl��_testdir���        _mtestdir���_getparm"��      _complete
��Ґ&_diropen����&copynametolower��,d�&_dirtree���&findt_to_dirent{�)��g&
_gettimeofday���_unix_chdirD��_getwdj��
        !           892: _rmdirtree�&��_unix_chmod���_lstat���_chdrive��枈�&Ѡ        %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !           893:       %s: (%s)  
        !           894:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !           895: \*.*y�rewind failed4�P�&�dirtree���V)�&U��&�WV0��V%Y��      �lev�files
        !           896: �dirs
        !           897: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !           898: ��nameΜ�V)�z&&�F�N=t��e&dž��������F9���|�|�����v
        !           899: �P���P�����&P���P�������=|����P�P����&P����^��������=|������P����&P����t�dž��������F9���|������v�%P���P������P���=|����P�*P����&P����^����P���=|����P�:P����&P����v�v�v�v
        !           900: �v�v�v�����JP���=|��MP����&P����9�S�]�nV        �dV�`��RV2�N��-V       �#V���V2��V  ��V��V��V*�ǝ��V   ��VĐ��~V�oV  �eV�a��JV!�;V*�2�B��&��v&à
        !           901: &�&^_��]Æ�&��&�&dirtree���V)��&&��&�&       rmdirtree��V5�&�&U��&�WV���V%Y���        �lev�files
        !           902: �dirs
        !           903: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !           904: ��nameQ��V5�X&&�&�F�N=t��K&dž��������F9���|�S�����v
        !           905: �]P���P������P���=|�"�~t����P�bP����&P����^���dž��������F9���|�������v�sP���P������P���=|�%�~u������P�xP����&P����v�v�v�v�v
        !           906: �v�v�v�������P���=|���P����&P������P���=|����P��P����&P�����N�OV       �EV�A��.V�#V  �V���V2����V       ��V�ѝ��V2��V*Ğ��pV   �fV�b��FV0�;V*�2�d��&+,./50K1f2u45�6�7�9�:�;�=�A�B&D&E&F$&G3&I=&JX&Kj&Lt&N~&O�&_�&k�&l�&n�&o�&p�&q�&r�&tuvw(x>yQzZ{]|l~v�����������f�&��^��*�Z�8&&��\&@�
        !           907: &�^_��]���&�m&�&�       rmdirtree��V5�:&&&���&�error���V6�&�U��&�WV>��V%Y��Q&  �str       �ar1       
        !           908: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !           909: ���path��V8��&�����P����F�=t��6��P�P��������P�6��P�P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !           910: �v�v�v�P���(�>u�
��P������P�P����P����~�t�
        !           911: �&P�����M��V     ��VīVA��V
        !           912: ġVAĝ���VĐ�ćV>��V
        !           913: �|VA�=V
        !           914: �9VA�5��2V:�#V
        !           915: �VA���V:�V4{��&&��U&�8�
        !           916: &�^_��]�?�<&&����errord��V8��&&&���� starttime��V
4�#&�U���WV�P�P���^_��]ü��V.���V%à6�&&���    starttime&&����endtime!�    �V�V
��&�U���WVI��V%Y��tvT��V5�t&��P�P�����9~�#}�       9r��.&��@B��^��+�G�W�^��+
        !           917: ��W��8�i��e��a��]��Q��M��I��E��>��8��3��.��%��������    V.����&;�
        !           918: p٠
        !           919: &f^_��]Þ��&&���fendtime���V5� &&�l�f
        !           920: printtimes     ��V/�&lU���WVǜ�V%Y� 3�tv�nbytes��V1�u&w�'�RP�^�w�w�RP�^�w�7��P�P����~}�<~�     �~w�.�^�Gu�!�^�w�7�v�v�RP��P�P������lV
        !           921: �hVA�d��_V'�'V
        !           922: �#VA���V'�O&&�7q��
        !           923: &�^_��]��&��w�
        !           924: printtimes���V1�Q&&��w�testdir���V-�&�U��&�WV&��V%Y�*j      �dir��statb   ��str���V/��&��~t���P����F=t��F�����P�v���=t�<�v�
        !           925: &P���P������P���=u��v�&P�����&P����v���=|��v�6&P�k����&P����v���=|��v�U&P�C����&P���Ȝ7��V IJ���V2��V      Ċ��yV�pV      �b��QV+�FV*�=��,V=�!��V�
        !           926: �~��&��n� �
        !           927: &�^_��]�E�S&����testdire��V/��&&����mtestdir���V+�&�U���WVn��V%Y��       �dir���V-�8&��~t��v&P����F=t��F�&�v���=|����'V2�!��V�
        !           928: �=��&������������*�A��������������������������"�,�7�O�f�l�w��������������2�D�W�d�n�������������&�&�&�    &�<�&�v��&P�����������Μ�����&���MV�
        !           929: &^_��]���&�^�mtestdir��V-��&&�"�getparml��V%�&"U���WV��V%Y�5�
        !           930: �parm     �min
        !           931: �label      ���valm��V'�Z&-�v����F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !           932: ��&P�����&P����F��V�����HV   �:��V��&G��V"�
        !           933: &�^_��]���&�g-�getparmj��V'�
        !           934: &&��-�chdrive���V<�&�U���WV���V%Y�4#
        !           935: �path���desireddrive���driveJ��V<�w&��^�&:t�g�^������&u��^��- ��^��-@�F��F�P�v�����F�P����F�9F�u��^��P��&P������&P���Ϝ�nV     �`��HV3�>V@�VZ�S&��'s��
        !           936: &^_��]���&���chdrive��V<�U&&�
�complete���V#�;&
U���WV�6��&P�P����6�X����P���^_��]�:��,V �V:�V
        !           937: �VA���
V:�V%��8W&�7>complete&&�D>
        !           938: unix_chdir͜   �V2�V��&DU���WV��V%Y��
        !           939: �pathE��V2�&O�v�4����v�������
Ve��&�����
        !           940: &d^_��]Ý�q&�&Od
        !           941: unix_chdir���V2��&&�jOdgetwd?��V4
�&jU���WVƜ�V%Y��
        !           942: �path��V4�&u�&P�v����1��Vh��&�����
        !           943: &�^_��]�|��&�!u�getwdK��V4� �&&��u�
        !           944: unix_chmod���V7
        !           945: �&�U���WV���V%Y�.�
        !           946: �path
        !           947: �mode
���dosmode��V7�?&��F�u��������F@&u��&��ƉF��v��v������3V8�&@��;/�
        !           948: &�^_��]�0��&�L��
        !           949: unix_chmodb��V7�&&����lstat���V;�&�U���WVY��V%Y�'
        !           950: �path     
        !           951: buf?��V;�&��v�v����S��V=A�B&�+�
        !           952: &�^_��]��&� ��lstat��V;�"D&&����gettimeofday��V.�&�U���WV5��V%Y�0b�TV�TimeZone
��ndostimeu��V.�c&�F�P�����RP�F�*�+�QP��Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F�
�NV1�V1�V9���&��f_��
        !           953: &a^_��]ß� F&�pagettimeofday��V.��&&gastatfs��V?�&gU���WV���V%Y�K�
        !           954: �path     �buf���&p���&i���drive��q     diskspaceǜ�VA�n&r�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������&u��^��- ��^��-@�F��
        !           955: ���GV���&
        !           956: &&
&&&"&-&<&W&p&z &�.&�1&�3&�4&�5&�6&�8&�9&�<&C&
D&F&*H&4I&>N&DQ&OS&XT&dX&jZ&u[&�_&�b&�c&�d&�h&�k&�l&�p&�r&u&v&>w&[x&a|&g&r�&x�&��&��&��&��&��F�P����F�P�v����=u�����V�^�F��G�G+�P�v�+�P�v���^�G�W
        !           957: +�P�v�+�P�v���^�G�W�^�v�D�T�G�W�����XV1�@V1�V6�V3q��&_�����
        !           958: &W    ^_��]è��&�rW        statfs$��VA��&&]      rW     opendir��V=�&]       U���WV͜�V%Y�1
        !           959: 
�dirname���&i���
        !           960: attributes���V?��&h       �F��v�P����P�P����>u����&�P�����>t���~�P�v��P���=u���_�6�P����F�&��F��P���=t�!�F�����������P�P�������F�H����]�^��V&��V#��V"��V,IJV ĮV$��V/ČV �{V,�wV �tV$�_V-�[V�TV �EV$�AV$�;V�2��"��V8�V���
V?� V�7&��q�
        !           961: &9
        !           962: ^_��]�Š�&�h 9
        !           963: opendir���V?�9&&?
        !           964: h      9
        !           965:     rewinddir��V9�&?
        !           966: U���WV��V%Y�.T
        !           967: �dirp���&i���
        !           968: attributes���V;��&J
        !           969: �F��F�F�P�v��P���=u��P�����&P����6�P����F�&��F��P���=t�!�F�����������P�P�������F�H��.�<čV#ĉV"�|V,�xV �tV$�VV/�RV �AV,�=V �:V$�3V       �%��V-�V�V H�~&ϠX�g�
        !           970: &�
        !           971: ^_��]�#�;&�J
        !           972: �
        !           973:     rewinddir��V;��&&"�
        !           974: J
        !           975: �
        !           976: telldir^��V0�&�
        !           977: U���WVL��V%Y��
        !           978: �dirp2��V2�&�
        !           979: �F�F������V#��&���
��
        !           980: &�
        !           981: ^_��]���&"�
        !           982: �
        !           983: telldirn��V2��&&$�
        !           984: �
        !           985: �
        !           986: seekdir[��V2�&�
        !           987: U���WV.��V%Y��
        !           988: �dirp     �loc&��V4�)&
        !           989: �F�F��9V~�}�9Fv��F�S�       �#V#�V"���&m��%b�
        !           990: &/^_��]�Π�&$6
        !           991: /seekdirۜ�V4��&&'5
        !           992: /readdir���V;�&5U���WV���V%Y��&�&��&��&��&&  �&     �&'     �&?     �&Q     �&W     �&]     �&h     �&m     �&z     �&�     �&�     �&�     �&�     �&�     �&�     �&�     �&�     �&�     �&�     �&
        !           993: �&#
        !           994: �&&
        !           995: �&-
        !           996: �&3
        !           997: �&9
        !           998: �&?
        !           999: �&J
        !          1000: �&O
        !          1001: �&U
        !          1002: �&n
        !          1003: �&x
        !          1004: �&�
        !          1005: �&�
        !          1006: �&�
        !          1007: �&�
        !          1008: �&�
        !          1009: �&�
        !          1010: �&�
        !          1011: �&�
        !          1012: �&�
        !          1013: �&�
        !          1014: �&�
        !          1015: �&�
        !          1016: �&
        !          1017: �&�&)�&/�&5���
        !          1018: �dirpМ�V=�9&@�F�F�9�      �������������������0V$� V#�V#�V#�V"��&@��5�
        !          1019: &u^_��]È��&'F@ureaddir"��V=�%&&){@ufindt_to_dirent7��V,�&{U���WV���V%Y�/~&f�&d���V,�&��FP�v���Ĝ�V(R�E&�3�
        !          1020: &�^_��]�g�#&)!��findt_to_dirent8��V,�%G&&,���copynametolowerG��V(�&�U���WV���V%Y�'h
        !          1021: �dest     �src���&i_��V(�K&��F���F��^��v������&&u�
�^��v� ��^��v��^��v�<u������V&��&��lG��
        !          1022: &�^_��]��#I&,X��copynametolower ��V(��&&.���closedirV��V5�&�U���WV8��V%Y��
        !          1023: �dirp#��V7�&��F�F�Ȝ�����&�����
        !          1024: &^_��]���&.�closedirŜ�V7��&��&���C&�&@�&F�&R�&[�&u�&{�&��&��&��&�&����       
        !          1025: j���
        !          1026: �ts�_ctype
        !          1027: �tepatternhfindtst�maxentry�currententry�dirlist
�dirst�Myname
�errno_iob�/̨VA̚V>̋V:�}V&�mV$�XV#�GV"�7V �'V���
V�����&&�&&�&&�&&�&&�&&�&&�&y����      �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          1028: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          1029: diskfree_tià��&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�    �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�頡&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������S�M�
        !          1030: &u��c
        !          1031: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          1032: u���c&��&&�&
        !          1033: ������&
        !          1034: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          1035: u���c&��&��&
        !          1036: u���c&��&&�&&�&&�&����&
        !          1037: u���c��&���
        !          1038: &
        !          1039: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          1040: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          1041: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          1042: u���c&�!&����&u��c�#&&�&��&
        !          1043: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-��t]Ý�q&�&Od
        !          1044: unix_chdir���V2��&&�jOdgetwd?��V4
�&jU���WVƜ�V%Y��
        !          1045: �path��V4�&u�&P�v����1��Vh��&�����
        !          1046: &�^_��]�|��&�!u�getw./basic/test4a.c   664  20115     11        5541  4552130370   6734 /*        @(#)test4a.c    1.2 89/01/10 NFS Rev 2 Testsuite        */
        !          1047: /*
        !          1048:  * Test getattr and lookup
        !          1049:  *
        !          1050:  * Creates the files in the test directory - does not create a directory
        !          1051:  * tree.
        !          1052:  *
        !          1053:  * Uses the following important system calls against the server:
        !          1054:  *
        !          1055:  *     chdir()
        !          1056:  *     mkdir()         (for initial directory creation if not -m)
        !          1057:  *     creat()
        !          1058:  *     stat()
        !          1059:  */
        !          1060: 
        !          1061: #include "tests.h"
        !          1062: 
        !          1063: int Tflag = 0;         /* print timing */
        !          1064: int Hflag = 0;         /* print help message */
        !          1065: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          1066: int Nflag = 0;         /* Suppress directory operations */
        !          1067: 
        !          1068: #ifdef ANSI
        !          1069: void usage(void);
        !          1070: #endif
        !          1071: 
        !          1072: void
        !          1073: usage()
        !          1074: {
        !          1075:        fprintf(stdout, "usage: %s [-htfn] [files count fname]\n", Myname);
        !          1076:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          1077:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          1078:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          1079:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          1080: }
        !          1081: 
        !          1082: #ifdef ANSI
        !          1083: void main(int argc, char *argv[]);
        !          1084: #endif
        !          1085: 
        !          1086: void
        !          1087: main(argc, argv)
        !          1088:        int argc;
        !          1089:        char *argv[];
        !          1090: {
        !          1091:        int files = 10;         /* number of files in each dir */
        !          1092:        int fi;
        !          1093:        int count = 50; /* times to do each file */
        !          1094:        int ct;
        !          1095:        int totfiles = 0;
        !          1096:        int totdirs = 0;
        !          1097:        char *fname = FNAME;
        !          1098:        struct timeval time;
        !          1099:        char str[MAXPATHLEN];
        !          1100:        struct stat statb;
        !          1101:        char *opts;
        !          1102: 
        !          1103:        umask(0);
        !          1104:        setbuf(stdout, NULL);
        !          1105:        Myname = *argv++;
        !          1106:        argc--;
        !          1107:        while (argc && **argv == '-') {
        !          1108:                for (opts = &argv[0][1]; *opts; opts++) {
        !          1109:                        switch (*opts) {
        !          1110:                                case 'h':       /* help */
        !          1111:                                        usage();
        !          1112:                                        exit(1);
        !          1113: 
        !          1114:                                case 't':       /* time */
        !          1115:                                        Tflag++;
        !          1116:                                        break;
        !          1117:                                
        !          1118:                                case 'f':       /* funtionality */
        !          1119:                                        Fflag++;
        !          1120:                                        break;
        !          1121:                                
        !          1122:                                case 'n':       /* suppress initial directory */
        !          1123:                                        Nflag++;
        !          1124:                                        break;
        !          1125:                                
        !          1126:                                default:
        !          1127:                                        error("unknown option '%c'", *opts);
        !          1128:                                        usage();
        !          1129:                                        exit(1);
        !          1130:                        }
        !          1131:                }
        !          1132:                argc--;
        !          1133:                argv++;
        !          1134:        }
        !          1135: 
        !          1136:        if (argc) {
        !          1137:                files = (int) getparm(*argv, 1L, "files");
        !          1138:                argv++;
        !          1139:                argc--;
        !          1140:        }
        !          1141:        if (argc) {
        !          1142:                count = (int) getparm(*argv, 1L, "count");
        !          1143:                argv++;
        !          1144:                argc--;
        !          1145:        }
        !          1146:        if (argc) {
        !          1147:                fname = *argv;
        !          1148:                argc--;
        !          1149:                argv++;
        !          1150:        }
        !          1151:        if (argc) {
        !          1152:                usage();
        !          1153:                exit(1);
        !          1154:        }
        !          1155: 
        !          1156:        if (Fflag) {
        !          1157:                Tflag = 0;
        !          1158:                count = 1;
        !          1159:        }
        !          1160: 
        !          1161:        if (!Nflag)
        !          1162:                testdir(NULL);
        !          1163:        else
        !          1164:                mtestdir(NULL);
        !          1165: 
        !          1166:        dirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs);
        !          1167: 
        !          1168:        fprintf(stdout, "%s: getattr and lookup\n", Myname);
        !          1169: 
        !          1170:        if (Tflag) {
        !          1171:                starttime();
        !          1172:        }
        !          1173: 
        !          1174:        for (ct = 0; ct < count; ct++) {
        !          1175:                for (fi = 0; fi < files; fi++) {
        !          1176:                        sprintf(str, "%s%d", fname, fi);
        !          1177:                        if (stat(str, &statb) < 0) {
        !          1178:                                error("can't stat %s", str);
        !          1179:                                exit(1);
        !          1180:                        }
        !          1181:                }
        !          1182:        }
        !          1183: 
        !          1184:        if (Tflag) {
        !          1185:                endtime(&time);
        !          1186:        }
        !          1187:        fprintf(stdout, "\t%d stats on %d files",
        !          1188:                files * count * 2, files);
        !          1189:        if (Tflag) {
        !          1190:                printtimes(&time, 0L);
        !          1191:        }
        !          1192:        fprintf(stdout, "\n");
        !          1193:        /* XXX REMOVE DIRECTORY TREE? */
        !          1194:        complete();
        !          1195: }
        !          1196:  "tests.h"
        !          1197: 
        !          1198: int Tflag = 0;         /* print timing */
        !          1199: int Hflag = 0;         /* print help message */
        !          1200: int Fflag = 0;         /* test function only;  set count to 1, negate -t *./basic/test1.c   664  20115     11        6216  4552130365   6574 /*   @(#)test1.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          1201: /*
        !          1202:  * Test file and directory creation.
        !          1203:  * Builds a tree on the server.
        !          1204:  *
        !          1205:  * Uses the following important system calls against the server:
        !          1206:  *
        !          1207:  *     chdir()
        !          1208:  *     mkdir()         (if creating directories, level > 1)
        !          1209:  *     creat()
        !          1210:  */
        !          1211: 
        !          1212: #include "tests.h"
        !          1213: 
        !          1214: int Tflag = 0;         /* print timing */
        !          1215: int Hflag = 0;         /* print help message */
        !          1216: int Sflag = 0;         /* don't print non-error messages */
        !          1217: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          1218: int Nflag = 0;         /* Suppress directory operations */
        !          1219: 
        !          1220: #ifdef ANSI
        !          1221: void usage(void);
        !          1222: void main(int argc, char *argv[]);
        !          1223: #endif
        !          1224: 
        !          1225: void
        !          1226: usage()
        !          1227: {
        !          1228:        fprintf(stdout, "usage: %s [-htfn] [levels files dirs fname dname]\n",
        !          1229:            Myname);
        !          1230:        /* -s is a hidden option used by test2 */
        !          1231:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          1232:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          1233:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          1234:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          1235: }
        !          1236: 
        !          1237: void
        !          1238: main(argc, argv)
        !          1239:        int argc;
        !          1240:        char *argv[];
        !          1241: {
        !          1242:        int files = DFILS;      /* number of files in each dir */
        !          1243:        int totfiles = 0;
        !          1244:        int dirs = DDIRS;       /* directories in each dir */
        !          1245:        int totdirs = 0;
        !          1246:        int levels = DLEVS;     /* levels deep */
        !          1247:        char *fname = FNAME;
        !          1248:        char *dname = DNAME;
        !          1249:        struct timeval time;
        !          1250:        char *opts;
        !          1251: 
        !          1252:        setbuf(stdout, NULL);
        !          1253:        Myname = *argv++;
        !          1254:        argc--;
        !          1255:        while (argc && **argv == '-') {
        !          1256:                for (opts = &argv[0][1]; *opts; opts++) {
        !          1257:                        switch (*opts) {
        !          1258:                                case 'h':       /* help */
        !          1259:                                        usage();
        !          1260:                                        exit(1);
        !          1261: 
        !          1262:                                case 's':       /* silent */
        !          1263:                                        Sflag++;
        !          1264:                                        break;
        !          1265: 
        !          1266:                                case 't':       /* time */
        !          1267:                                        Tflag++;
        !          1268:                                        break;
        !          1269: 
        !          1270:                                case 'f':       /* funtionality */
        !          1271:                                        Fflag++;
        !          1272:                                        break;
        !          1273: 
        !          1274:                                case 'n':       /* No Test Directory create */
        !          1275:                                        Nflag++;
        !          1276:                                        break;
        !          1277: 
        !          1278:                                default:
        !          1279:                                        error("unknown option '%c'", *opts);
        !          1280:                                        usage();
        !          1281:                                        exit(1);
        !          1282:                        }
        !          1283:                }
        !          1284:                argc--;
        !          1285:                argv++;
        !          1286:        }
        !          1287: 
        !          1288:        if (argc) {
        !          1289:                levels = (int) getparm(*argv, 1L, "levels");
        !          1290:                argv++;
        !          1291:                argc--;
        !          1292:        }
        !          1293:        if (argc) {
        !          1294:                files = (int) getparm(*argv, 0L, "files");
        !          1295:                argv++;
        !          1296:                argc--;
        !          1297:        }
        !          1298:        if (argc) {
        !          1299:                dirs = (int) getparm(*argv, 0L, "dirs");
        !          1300:                if (dirs == 0 && levels != 1) {
        !          1301:                        error("Illegal dirs parameter, must be at least 1");
        !          1302:                        exit(1);
        !          1303:                }
        !          1304:                argv++;
        !          1305:                argc--;
        !          1306:        }
        !          1307:        if (argc) {
        !          1308:                fname = *argv;
        !          1309:                argc--;
        !          1310:                argv++;
        !          1311:        }
        !          1312:        if (argc) {
        !          1313:                dname = *argv;
        !          1314:                argc--;
        !          1315:                argv++;
        !          1316:        }
        !          1317:        if (argc != 0) {
        !          1318:                error("too many parameters");
        !          1319:                usage();
        !          1320:                exit(1);
        !          1321:        }
        !          1322: 
        !          1323:        if (Fflag) {
        !          1324:                Tflag = 0;
        !          1325:                levels = 2;
        !          1326:                files = 2;
        !          1327:                dirs = 2;
        !          1328:        }
        !          1329: 
        !          1330:        if (!Sflag) {
        !          1331:                fprintf(stdout, "%s: File and directory creation test\n",
        !          1332:                    Myname);
        !          1333:        }
        !          1334: 
        !          1335:        if (!Nflag)
        !          1336:                testdir(NULL);
        !          1337:        else
        !          1338:                mtestdir(NULL);
        !          1339: 
        !          1340:        if (Tflag && !Sflag) {
        !          1341:                starttime();
        !          1342:        }
        !          1343:        dirtree(levels, files, dirs, fname, dname, &totfiles, &totdirs);
        !          1344:        if (Tflag && !Sflag) {
        !          1345:                endtime(&time);
        !          1346:        }
        !          1347:        if (!Sflag) {
        !          1348:                fprintf(stdout,
        !          1349:                    "\tcreated %d files %d directories %d levels deep",
        !          1350:                    totfiles, totdirs, levels);
        !          1351:        }
        !          1352:        if (Tflag && !Sflag) {
        !          1353:                printtimes(&time, 0L);
        !          1354:        }
        !          1355:        if (!Sflag) {
        !          1356:                fprintf(stdout, "\n");
        !          1357:        }
        !          1358:        complete();
        !          1359: }
        !          1360: �&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&./basic/test2.c   664  20115     11        6251  4552130366   6575 /*  @(#)test2.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          1361: /*
        !          1362:  * Test file and directory removal.
        !          1363:  * Builds a tree on the server.
        !          1364:  *
        !          1365:  * Uses the following important system calls against the server:
        !          1366:  *
        !          1367:  *     chdir()
        !          1368:  *     rmdir()         (if removing directories, level > 1)
        !          1369:  *     unlink()
        !          1370:  */
        !          1371: 
        !          1372: #include "tests.h"
        !          1373: 
        !          1374: int Tflag = 0;         /* print timing */
        !          1375: int Hflag = 0;         /* print help message */
        !          1376: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          1377: int Nflag = 0;         /* Suppress directory operations */
        !          1378: 
        !          1379: #ifdef ANSI
        !          1380: void usage(void);
        !          1381: void main(int argc, char *argv[]);
        !          1382: #endif
        !          1383: 
        !          1384: void
        !          1385: usage()
        !          1386: {
        !          1387:        fprintf(stdout, "usage: %s [-htfn] [levels files dirs fname dname]\n",
        !          1388:            Myname);
        !          1389:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          1390:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          1391:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          1392:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          1393: }
        !          1394: 
        !          1395: void
        !          1396: main(argc, argv)
        !          1397:        int argc;
        !          1398:        char *argv[];
        !          1399: {
        !          1400:        int files = DFILS;      /* number of files in each dir */
        !          1401:        int totfiles = 0;
        !          1402:        int dirs = DDIRS;       /* directories in each dir */
        !          1403:        int totdirs = 0;
        !          1404:        int levels = DLEVS;     /* levels deep */
        !          1405:        char *fname = FNAME;
        !          1406:        char *dname = DNAME;
        !          1407:        struct timeval time;
        !          1408:        char *opts;
        !          1409:        char str[256];
        !          1410: 
        !          1411:        setbuf(stdout, NULL);
        !          1412:        Myname = *argv++;
        !          1413:        argc--;
        !          1414:        while (argc && **argv == '-') {
        !          1415:                for (opts = &argv[0][1]; *opts; opts++) {
        !          1416:                        switch (*opts) {
        !          1417:                                case 'h':       /* help */
        !          1418:                                        usage();
        !          1419:                                        exit(1);
        !          1420: 
        !          1421:                                case 't':       /* time */
        !          1422:                                        Tflag++;
        !          1423:                                        break;
        !          1424: 
        !          1425:                                case 'f':       /* funtionality */
        !          1426:                                        Fflag++;
        !          1427:                                        break;
        !          1428: 
        !          1429:                                case 'n':       /* No Test Directory create */
        !          1430:                                        Nflag++;
        !          1431:                                        break;
        !          1432: 
        !          1433:                                default:
        !          1434:                                        error("unknown option '%c'", *opts);
        !          1435:                                        usage();
        !          1436:                                        exit(1);
        !          1437:                        }
        !          1438:                }
        !          1439:                argc--;
        !          1440:                argv++;
        !          1441:        }
        !          1442: 
        !          1443:        if (argc) {
        !          1444:                levels = (int) getparm(*argv, 1L, "levels");
        !          1445:                argv++;
        !          1446:                argc--;
        !          1447:        }
        !          1448:        if (argc) {
        !          1449:                files = (int) getparm(*argv, 0L, "files");
        !          1450:                argv++;
        !          1451:                argc--;
        !          1452:        }
        !          1453:        if (argc) {
        !          1454:                dirs = (int) getparm(*argv, 0L, "dirs");
        !          1455:                if (dirs == 0 && levels != 1) {
        !          1456:                        error("Illegal dirs parameter, must be at least 1");
        !          1457:                        exit(1);
        !          1458:                }
        !          1459:                argv++;
        !          1460:                argc--;
        !          1461:        }
        !          1462:        if (argc) {
        !          1463:                fname = *argv;
        !          1464:                argc--;
        !          1465:                argv++;
        !          1466:        }
        !          1467:        if (argc) {
        !          1468:                dname = *argv;
        !          1469:                argc--;
        !          1470:                argv++;
        !          1471:        }
        !          1472:        if (argc != 0) {
        !          1473:                error("too many parameters");
        !          1474:                usage();
        !          1475:                exit(1);
        !          1476:        }
        !          1477: 
        !          1478:        if (Fflag) {
        !          1479:                Tflag = 0;
        !          1480:                levels = 2;
        !          1481:                files = 2;
        !          1482:                dirs = 2;
        !          1483:        }
        !          1484: 
        !          1485:        fprintf(stdout, "%s: File and directory removal test\n", Myname);
        !          1486: 
        !          1487:        if (mtestdir(NULL)) {
        !          1488:                sprintf(str, "test1 -s %s %d %d %d %s %s",
        !          1489:                        Nflag ? "-n" : "",
        !          1490:                        levels, files, dirs, fname, dname);
        !          1491:                if (system(str) != 0) {
        !          1492:                        error("can't make directroy tree to remove");
        !          1493:                        exit(1);
        !          1494:                }
        !          1495:                if (mtestdir(NULL)) {
        !          1496:                        error("still can't go to test directory");
        !          1497:                        exit(1);
        !          1498:                }
        !          1499:        }
        !          1500: 
        !          1501:        if (Tflag) {
        !          1502:                starttime();
        !          1503:        }
        !          1504:        rmdirtree(levels, files, dirs, fname, dname, &totfiles, &totdirs, 0);
        !          1505:        if (Tflag) {
        !          1506:                endtime(&time);
        !          1507:        }
        !          1508:        fprintf(stdout,
        !          1509:            "\tremoved %d files %d directories %d levels deep",
        !          1510:            totfiles, totdirs, levels);
        !          1511:        if (Tflag) {
        !          1512:                printtimes(&time, 0L);
        !          1513:        }
        !          1514:        fprintf(stdout, "\n");
        !          1515:        complete();
        !          1516: }
        !          1517: calls against the server:
        !          1518:  *
        !          1519:  *     chdir()
        !          1520:  *     rmdir()         (if removing directories, level > 1)
        !          1521:  *     unlink()
        !          1522:  */
        !          1523: 
        !          1524: #include "tests.h"
        !          1525: 
        !          1526: int Tflag = 0;         /* print timing */
        !          1527: int Hflag = 0;         /* print help message */
        !          1528: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          1529: int Nflag = 0;         /* Suppress directory operations */
        !          1530: 
        !          1531: #ifde./basic/test6.c   664  20115     11       13205  4552130375   6616 /*        @(#)test6.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          1532: /*
        !          1533:  * Test readdir
        !          1534:  *
        !          1535:  * Uses the following important system/library calls against the server:
        !          1536:  *
        !          1537:  *     chdir()
        !          1538:  *     mkdir()         (for initial directory creation if not -m)
        !          1539:  *     creat()
        !          1540:  *     unlink()
        !          1541:  *     opendir(), rewinddir(), readdir(), closedir()
        !          1542:  */
        !          1543: 
        !          1544: #include "tests.h"
        !          1545: 
        !          1546: #ifdef ANSI
        !          1547: void usage(void);
        !          1548: void main(int argc, char *argv[]);
        !          1549: #endif
        !          1550: 
        !          1551: int Tflag = 0;         /* print timing */
        !          1552: int Hflag = 0;         /* print help message */
        !          1553: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          1554: int Nflag = 0;         /* Suppress directory operations */
        !          1555: int Iflag = 0;         /* Ignore non-test files dir entries */
        !          1556: 
        !          1557: #define MAXFILES 512           /* maximum files allowed for this test */
        !          1558: #define BITMOD  8              /* bits per u_char */
        !          1559: u_char bitmap[MAXFILES / BITMOD];
        !          1560: #define BIT(x)    (bitmap[(x) / BITMOD] &   (1 << ((x) % BITMOD)) )
        !          1561: #define SETBIT(x) (bitmap[(x) / BITMOD] |=  (1 << ((x) % BITMOD)) )
        !          1562: #define CLRBIT(x) (bitmap[(x) / BITMOD] &= ~(1 << ((x) % BITMOD)) )
        !          1563: 
        !          1564: void
        !          1565: usage()
        !          1566: {
        !          1567:        fprintf(stdout, "usage: %s [-htfni] [files count fname]\n", Myname);
        !          1568:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          1569:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          1570:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          1571:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          1572:        fprintf(stdout, "          i    Ignore non-test files dir entries\n");
        !          1573: }
        !          1574: 
        !          1575: void
        !          1576: main(argc, argv)
        !          1577:        int argc;
        !          1578:        char *argv[];
        !          1579: {
        !          1580: #if defined(DOS) || !defined(vax)
        !          1581:        struct dirent *dp;
        !          1582: #else
        !          1583:        struct direct *dp;
        !          1584: #endif
        !          1585:        char *fname = FNAME;
        !          1586:        int files = 200;        /* number of files in each dir */
        !          1587:        int fi;
        !          1588:        int count = 200;        /* times to read dir */
        !          1589:        int ct;
        !          1590:        int entries = 0;
        !          1591:        int totfiles = 0;
        !          1592:        int totdirs = 0;
        !          1593:        DIR *dir;
        !          1594:        struct timeval time;
        !          1595:        char *p, str[MAXPATHLEN];
        !          1596:        char *opts;
        !          1597:        int err, i, dot, dotdot;
        !          1598:        int nmoffset;
        !          1599: 
        !          1600:        umask(0);
        !          1601:        setbuf(stdout, NULL);
        !          1602:        Myname = *argv++;
        !          1603:        argc--;
        !          1604:        while (argc && **argv == '-') {
        !          1605:                for (opts = &argv[0][1]; *opts; opts++) {
        !          1606:                        switch (*opts) {
        !          1607:                                case 'h':       /* help */
        !          1608:                                        usage();
        !          1609:                                        exit(1);
        !          1610: 
        !          1611:                                case 't':       /* time */
        !          1612:                                        Tflag++;
        !          1613:                                        break;
        !          1614:                                
        !          1615:                                case 'f':       /* funtionality */
        !          1616:                                        Fflag++;
        !          1617:                                        break;
        !          1618:                                
        !          1619:                                case 'n':       /* No Test Directory create */
        !          1620:                                        Nflag++;
        !          1621:                                        break;
        !          1622: 
        !          1623:                                case 'i':       /* ignore spurious files */
        !          1624:                                        Iflag++;
        !          1625:                                        break;
        !          1626: 
        !          1627:                                default:
        !          1628:                                        error("unknown option '%c'", *opts);
        !          1629:                                        usage();
        !          1630:                                        exit(1);
        !          1631:                        }
        !          1632:                }
        !          1633:                argc--;
        !          1634:                argv++;
        !          1635:        }
        !          1636: 
        !          1637:        if (argc) {
        !          1638:                files = (int) getparm(*argv, 1L, "files");
        !          1639:                argv++;
        !          1640:                argc--;
        !          1641:        }
        !          1642:        if (argc) {
        !          1643:                count = (int) getparm(*argv, 1L, "count");
        !          1644:                argv++;
        !          1645:                argc--;
        !          1646:        }
        !          1647:        if (argc) {
        !          1648:                fname = *argv;
        !          1649:                argv++;
        !          1650:                argc--;
        !          1651:        }
        !          1652:        if (argc) {
        !          1653:                usage();
        !          1654:                exit(1);
        !          1655:        }
        !          1656: 
        !          1657:        nmoffset = strlen(fname);
        !          1658: 
        !          1659:        if (Fflag) {
        !          1660:                Tflag = 0;
        !          1661:                count = 1;
        !          1662:        }
        !          1663: 
        !          1664:        if (count > files) {
        !          1665:                error("count (%d) can't be greater than files (%d)",
        !          1666:                        count, files);
        !          1667:                exit(1);
        !          1668:        }
        !          1669: 
        !          1670:        if (files > MAXFILES) {
        !          1671:                error("too many files requested (max is %d)", MAXFILES);
        !          1672:                exit(1);
        !          1673:        }
        !          1674: 
        !          1675:        fprintf(stdout, "%s: readdir\n", Myname);
        !          1676: 
        !          1677:        if (!Nflag)
        !          1678:                testdir(NULL);
        !          1679:        else
        !          1680:                mtestdir(NULL);
        !          1681: 
        !          1682:        dirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs);
        !          1683: 
        !          1684:        if (Tflag) {
        !          1685:                starttime();
        !          1686:        }
        !          1687: 
        !          1688:        if ((dir = opendir(".")) == NULL) {
        !          1689:                error("can't opendir %s", ".");
        !          1690:                exit(1);
        !          1691:        }
        !          1692: 
        !          1693:        for (ct = 0; ct < count; ct++) {
        !          1694:                rewinddir(dir);
        !          1695:                dot = 0;
        !          1696:                dotdot = 0;
        !          1697:                err = 0;
        !          1698:                for (i = 0; i < sizeof(bitmap); i++)
        !          1699:                        bitmap[i] = 0;
        !          1700:                while ((dp = readdir(dir)) != (struct dirent *) NULL) {
        !          1701:                        entries++;
        !          1702:                        if (strcmp(".", dp->d_name) == 0) {
        !          1703:                                if (dot) {
        !          1704:                                        /* already read dot */
        !          1705:                                        error("'.' dir entry read twice");
        !          1706:                                        exit(1);
        !          1707:                                }
        !          1708:                                dot++;
        !          1709:                                continue;
        !          1710:                        } else if (strcmp("..", dp->d_name) == 0) {
        !          1711:                                if (dotdot) {
        !          1712:                                        /* already read dotdot */
        !          1713:                                        error("'..' dir entry read twice");
        !          1714:                                        exit(1);
        !          1715:                                }
        !          1716:                                dotdot++;
        !          1717:                                continue;
        !          1718:                        }
        !          1719: 
        !          1720:                        /*
        !          1721:                         * at this point, should have entry of the form
        !          1722:                         *  fname%d
        !          1723:                         */
        !          1724:                        /* If we don't have our own directory, ignore
        !          1725:                           such errors (if Iflag set). */
        !          1726:                        if (strncmp(dp->d_name, fname, nmoffset)) {
        !          1727:                                if (Iflag)
        !          1728:                                        continue;
        !          1729:                                else {
        !          1730:                                        error("unexpected dir entry '%s'",
        !          1731:                                                dp->d_name);
        !          1732:                                        exit(1);
        !          1733:                                }
        !          1734:                        }
        !          1735: 
        !          1736:                        /* get ptr to numeric part of name */
        !          1737:                        p = dp->d_name + nmoffset;
        !          1738:                        fi = atoi(p);
        !          1739:                        if (fi < 0 || fi >= MAXFILES) {
        !          1740:                                error("unexpected dir entry '%s'",
        !          1741:                                        dp->d_name);
        !          1742:                                exit(1);
        !          1743:                        }
        !          1744:                        if (BIT(fi)) {
        !          1745:                                error("duplicate '%s' dir entry read",
        !          1746:                                        dp->d_name);
        !          1747:                                err++;
        !          1748:                        } else
        !          1749:                                SETBIT(fi);
        !          1750:                }       /* end readdir loop */
        !          1751:                if (!dot) {
        !          1752:                        error("didn't read '.' dir entry, pass %d", ct);
        !          1753:                        err++;
        !          1754:                }
        !          1755:                if (!dotdot) {
        !          1756:                        error("didn't read '..' dir entry, pass %d", ct);
        !          1757:                        err++;
        !          1758:                }
        !          1759:                for (fi = 0; fi < ct; fi++) {
        !          1760:                        if (BIT(fi)) {
        !          1761:                                sprintf(str, "%s%d", fname, fi);
        !          1762:                                error("unlinked '%s' dir entry read pass %d",
        !          1763:                                        str, ct);
        !          1764:                                err++;
        !          1765:                        }
        !          1766:                }
        !          1767:                for (fi = ct; fi < files; fi++) {
        !          1768:                        if (!BIT(fi)) {
        !          1769:                                sprintf(str, "%s%d", fname, fi);
        !          1770:                                error("\
        !          1771: didn't read expected '%s' dir entry, pass %d", str, ct);
        !          1772:                                err++;
        !          1773:                        }
        !          1774:                }
        !          1775:                if (err) {
        !          1776:                        error("Test failed with %d errors", err);
        !          1777:                        exit(1);
        !          1778:                }
        !          1779:                sprintf(str, "%s%d", fname, ct);
        !          1780:                if (unlink(str) < 0) {
        !          1781:                        error("can't unlink %s", str);
        !          1782:                        exit(1);
        !          1783:                }
        !          1784:        }
        !          1785: 
        !          1786:        closedir(dir);
        !          1787: 
        !          1788:        if (Tflag) {
        !          1789:                endtime(&time);
        !          1790:        }
        !          1791:        fprintf(stdout, "\t%d entries read, %d files",
        !          1792:                entries, files);
        !          1793:        if (Tflag) {
        !          1794:                printtimes(&time, 0L);
        !          1795:        }
        !          1796:        fprintf(stdout, "\n");
        !          1797:        rmdirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs, 1);
        !          1798:        complete();
        !          1799: }
        !          1800: �QP��Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F�
�NV1�V1�V9���&��f_��
        !          1801: &a^_��]ß� F&�pagettimeofday��V.��&&gastatfs��V?�&gU���WV���V%Y�K�
        !          1802: �path     �buf���&p���&i���drive��q     diskspaceǜ�VA�n&r�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-./basic/unixdos.c   664  20115     11         477  4552130403   7201 #ifdef DOS
        !          1803: 
        !          1804: #include <dos.h>
        !          1805: #include "unixdos.h"
        !          1806: 
        !          1807: void
        !          1808: gettimeofday(struct timeval *TV, struct timezone *TimeZone)
        !          1809: {
        !          1810:        struct dostime_t DosTime;
        !          1811:        _dos_gettime(&DosTime);
        !          1812:        TV->tv_sec = DosTime.hour * 3600L
        !          1813:                + DosTime.minute * 60L
        !          1814:                + DosTime.second;
        !          1815:        TV->tv_usec = DosTime.hsecond * 10000L;
        !          1816: }
        !          1817: 
        !          1818: #endif
        !          1819: dX�  test2.exe�X� test3.exe�X� test4.exeX� test5.exeTX� test6.exe�X� test7.exe�X� test8.exeX� test9.exe./basic/runtests.bat   664  20115     11        1416  4552130363   7742 echo "Starting BASIC tests: test directory %NFSTESTDIR% (arg: %TESTARG%)"
        !          1820: mkdir %NFSTESTDIR%
        !          1821: if not exist %NFSTESTDIR% exit
        !          1822: 
        !          1823: test1 %TESTARG%
        !          1824: if errorlevel 1 exit
        !          1825: 
        !          1826: test2 %TESTARG%
        !          1827: if errorlevel 1 exit
        !          1828: 
        !          1829: test3 %TESTARG%
        !          1830: if errorlevel 1 exit
        !          1831: 
        !          1832: test4 %TESTARG%
        !          1833: if errorlevel 1 exit
        !          1834: 
        !          1835: rem test4a %TESTARG%
        !          1836: if errorlevel 1 exit
        !          1837: 
        !          1838: test5 %TESTARG%
        !          1839: if errorlevel 1 exit
        !          1840: 
        !          1841: rem test5a %TESTARG%
        !          1842: if errorlevel 1 exit
        !          1843: 
        !          1844: rem test5b %TESTARG%
        !          1845: if errorlevel 1 exit
        !          1846: 
        !          1847: test6 %TESTARG%
        !          1848: if errorlevel 1 exit
        !          1849: 
        !          1850: test7 %TESTARG%
        !          1851: if errorlevel 1 exit
        !          1852: 
        !          1853: rem test7a %TESTARG%
        !          1854: if errorlevel 1 exit
        !          1855: 
        !          1856: rem test7b %TESTARG%
        !          1857: if errorlevel 1 exit
        !          1858: 
        !          1859: test8 %TESTARG%
        !          1860: if errorlevel 1 exit
        !          1861: 
        !          1862: test9 %TESTARG%
        !          1863: if errorlevel 1 exit
        !          1864: 
        !          1865: echo "Congratulations, you passed the basic tests!"
        !          1866: map[MAXFILES / BITMOD];
        !          1867: #define BIT(x)    (bitmap[(x) / BITMOD] &   (1 << ((x) % BITMOD)) )
        !          1868: #define SETBIT(x) (bitmap[(x) / BITMOD] |=  (1 << ((x) % BITMOD)) )
        !          1869: #define CLRBIT(x) (bitmap[(x) / BITMOD] &= ~(1 << ((x) % BITMOD)) )
        !          1870: 
        !          1871: void
        !          1872: us./basic/test5.c   664  20115     11       11145  4552130371   6612 /*   @(#)test5.c     1.4 89/01/13 NFS Rev 2 Testsuite        */
        !          1873: /*
        !          1874:  * Test read and write
        !          1875:  *
        !          1876:  * Uses the following important system calls against the server:
        !          1877:  *
        !          1878:  *     chdir()
        !          1879:  *     mkdir()         (for initial directory creation if not -m)
        !          1880:  *     creat()
        !          1881:  *     open()
        !          1882:  *     read()
        !          1883:  *     write()
        !          1884:  *     stat()
        !          1885:  *     fstat()
        !          1886:  *     unlink()
        !          1887:  */
        !          1888: 
        !          1889: #include "tests.h"
        !          1890: 
        !          1891: #define        BUFSZ   8192
        !          1892: #define        DSIZE   1048576L
        !          1893: 
        !          1894: int Tflag = 0;         /* print timing */
        !          1895: int Hflag = 0;         /* print help message */
        !          1896: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          1897: int Nflag = 0;         /* Suppress directory operations */
        !          1898: 
        !          1899: 
        !          1900: #ifdef ANSI
        !          1901: void usage(void);
        !          1902: #endif
        !          1903: 
        !          1904: void
        !          1905: usage()
        !          1906: {
        !          1907:        fprintf(stdout, "usage: %s [-htfn] [size count fname]\n", Myname);
        !          1908:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          1909:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          1910:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          1911:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          1912: }
        !          1913: 
        !          1914: #ifdef ANSI
        !          1915: void main(int argc, char *argv[]);
        !          1916: #endif
        !          1917: 
        !          1918: void
        !          1919: main(argc, argv)
        !          1920:        int argc;
        !          1921:        char *argv[];
        !          1922: {
        !          1923:        int count = DCOUNT;     /* times to do each file */
        !          1924:        int ct;
        !          1925:        long size = DSIZE;
        !          1926:        long si;
        !          1927:        long i;
        !          1928:        int fd;
        !          1929:        int bytes;
        !          1930:        char *bigfile = "bigfile";
        !          1931:        struct timeval time;
        !          1932:        struct stat statb;
        !          1933:        char *opts;
        !          1934:        char buf[BUFSZ];
        !          1935: 
        !          1936:        umask(0);
        !          1937:        setbuf(stdout, NULL);
        !          1938:        Myname = *argv++;
        !          1939:        argc--;
        !          1940:        while (argc && **argv == '-') {
        !          1941:                for (opts = &argv[0][1]; *opts; opts++) {
        !          1942:                        switch (*opts) {
        !          1943:                                case 'h':       /* help */
        !          1944:                                        usage();
        !          1945:                                        exit(1);
        !          1946: 
        !          1947:                                case 't':       /* time */
        !          1948:                                        Tflag++;
        !          1949:                                        break;
        !          1950:                                
        !          1951:                                case 'f':       /* funtionality */
        !          1952:                                        Fflag++;
        !          1953:                                        break;
        !          1954:                                
        !          1955:                                case 'n':       /* No Test Directory create */
        !          1956:                                        Nflag++;
        !          1957:                                        break;
        !          1958: 
        !          1959:                                default:
        !          1960:                                        error("unknown option '%c'", *opts);
        !          1961:                                        usage();
        !          1962:                                        exit(1);
        !          1963:                        }
        !          1964:                }
        !          1965:                argc--;
        !          1966:                argv++;
        !          1967:        }
        !          1968: 
        !          1969:        if (argc) {
        !          1970:                 size = getparm(*argv, 1L, "size");
        !          1971:                argv++;
        !          1972:                argc--;
        !          1973:        }
        !          1974:        if (argc) {
        !          1975:                 count = (int) getparm(*argv, 1L, "count");
        !          1976:                argv++;
        !          1977:                argc--;
        !          1978:        }
        !          1979:        if (argc) {
        !          1980:                 bigfile = *argv;
        !          1981:                argv++;
        !          1982:                argc--;
        !          1983:        }
        !          1984:        if (argc) {
        !          1985:                usage();
        !          1986:                exit(1);
        !          1987:        }
        !          1988:        
        !          1989:        if (Fflag) {
        !          1990:                Tflag = 0;
        !          1991:                count = 1;
        !          1992:        }
        !          1993: 
        !          1994:        fprintf(stdout, "%s: read and write\n", Myname);
        !          1995: 
        !          1996:        if (!Nflag)
        !          1997:                testdir(NULL);
        !          1998:        else
        !          1999:                mtestdir(NULL);
        !          2000: 
        !          2001:        for (i=0; i < BUFSZ / sizeof(long); i++) {
        !          2002:                ((long *)buf)[i] = i;
        !          2003:        }
        !          2004: 
        !          2005:        if (Tflag) {
        !          2006:                starttime();
        !          2007:        }
        !          2008: 
        !          2009:        for (ct = 0; ct < count; ct++) {
        !          2010:                if ((fd = creat(bigfile, CHMOD_YES)) < 0) {
        !          2011:                        error("can't create '%s'", bigfile);
        !          2012:                        exit(1);
        !          2013:                }
        !          2014:                if (fstat(fd, &statb) < 0) {
        !          2015:                        error("can't stat '%s'", bigfile);
        !          2016:                        exit(1);
        !          2017:                }
        !          2018:                if (statb.st_size != 0) {
        !          2019:                        error("'%s' has size %ld, should be 0",
        !          2020:                            bigfile, statb.st_size);
        !          2021:                        exit(1);
        !          2022:                }
        !          2023:                 for (si = size; si > 0; si -= (long) BUFSZ) {
        !          2024:                        bytes = (int) MIN((long) BUFSZ, si);
        !          2025:                        if (write(fd, buf, bytes) != bytes) {
        !          2026:                                error("'%s' write failed", bigfile);
        !          2027:                                exit(1);
        !          2028:                        }
        !          2029:                }
        !          2030:                close(fd);
        !          2031:                if (stat(bigfile, &statb) < 0) {
        !          2032:                        error("can't stat '%s'", bigfile);
        !          2033:                        exit(1);
        !          2034:                }
        !          2035:                if (statb.st_size != size) {
        !          2036:                        error("'%s' has size %ld, should be %ld",
        !          2037:                            bigfile, statb.st_size, size);
        !          2038:                        exit(1);
        !          2039:                }
        !          2040:        }
        !          2041: 
        !          2042:        if (Tflag) {
        !          2043:                endtime(&time);
        !          2044:        }
        !          2045: 
        !          2046:        if ((fd = open(bigfile, 0)) < 0) {
        !          2047:                error("can't open '%s'", bigfile);
        !          2048:                exit(1);
        !          2049:        }
        !          2050:        for (si = size; si > 0; si -= (long) BUFSZ) {
        !          2051:                bytes = (int) MIN((long) BUFSZ, si);
        !          2052:                if (read(fd, buf, bytes) != bytes) {
        !          2053:                        error("'%s' read failed", bigfile);
        !          2054:                        exit(1);
        !          2055:                }
        !          2056:                for (i = 0; i < bytes / sizeof(long); i++) {
        !          2057:                        if (((long *)buf)[i] != i) {
        !          2058:                                error("bad data in '%s'", bigfile);
        !          2059:                                exit(1);
        !          2060:                        }
        !          2061:                }
        !          2062:        }
        !          2063:        close(fd);
        !          2064: 
        !          2065:        fprintf(stdout, "\twrote %ld byte file %d times", size, count);
        !          2066:        if (Tflag) {
        !          2067:                fprintf(stdout, " in %d.%-2d seconds (%ld bytes/sec)",
        !          2068:                    time.tv_sec, time.tv_usec / 10000, size*count/time.tv_sec);
        !          2069:        }
        !          2070:        fprintf(stdout, "\n");
        !          2071:        if (Tflag) {
        !          2072:                starttime();
        !          2073:        }
        !          2074: 
        !          2075:        for (ct = 0; ct < count; ct++) {
        !          2076:                if ((fd = open(bigfile, 0)) < 0) {
        !          2077:                        error("can't open '%s'", bigfile);
        !          2078:                        exit(1);
        !          2079:                }
        !          2080:                for (si = size; si > 0; si -= (long) BUFSZ) {
        !          2081:                        bytes = (int) MIN((long) BUFSZ, si);
        !          2082:                        if (read(fd, buf, bytes) != bytes) {
        !          2083:                                error("'%s' read failed", bigfile);
        !          2084:                                exit(1);
        !          2085:                        }
        !          2086:                }
        !          2087:                close(fd);
        !          2088:        }
        !          2089: 
        !          2090:        if (Tflag) {
        !          2091:                endtime(&time);
        !          2092:        }
        !          2093:        fprintf(stdout, "\tread %ld byte file %d times", size, 2*count);
        !          2094:        if (Tflag) {
        !          2095:                printtimes(&time, size * (long) count);
        !          2096:        }
        !          2097:        fprintf(stdout, "\n");
        !          2098: 
        !          2099:        if (unlink(bigfile) < 0) {
        !          2100:                error("can't unlink '%s'", bigfile);
        !          2101:                exit(1);
        !          2102:        }
        !          2103:        complete();
        !          2104: }
        !          2105: IT(fi);
        !          2106:                }       /* end readdir loop */
        !          2107:                if (!dot) {
        !          2108:                        error("didn't read '.' dir entry, pass %d", ct);
        !          2109:                        err++;
        !          2110:                }
        !          2111:                if (!dotdot) {
        !          2112:                        error("didn't read '..' dir entry, pass %d", ct);
        !          2113:                        err++;
        !          2114:                }
        !          2115:                for (fi = 0; fi < ct; fi++) {
        !          2116:                        if (BIT(fi)) {
        !          2117:                                sprintf(str, "%s%d", fname, fi);
        !          2118:                                error("unlinked '%s' dir entry read pass %d",
        !          2119:                                        str, ct);
        !          2120:                                err++;
        !          2121:                        }
        !          2122:                }
        !          2123:                for (fi = ct; fi < f./basic/doit.bat   664  20115     11         107  4552130357   6771 :loop
        !          2124: 
        !          2125: o:
        !          2126: cd \
        !          2127: rmdir nfstestd
        !          2128: k:
        !          2129: test1
        !          2130: k:
        !          2131: test2
        !          2132: 
        !          2133: goto loop
        !          2134: �test5b.c&xX�makefile.mak&�X�test7.c&�X�test8.c&�X�test7a.c&�X�test7b.c&�X�test9.cX�  test1.exedX� test2.exe�X� test3.exe�X� test4.exeX� test5.exeTX� test6.exe�X� test7.exe�X� test8.exeX� test9.exePX�
        !          2135: test4a.exe�X�
        !          2136: test5a.exe�X�
        !          2137: test5b.exe./basic/test3.c   664  20115     11        4577  4552130367   6610 /* @(#)test3.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          2138: /*
        !          2139:  * Test lookup up and down across mount points
        !          2140:  *
        !          2141:  * Uses the following important system calls against the server:
        !          2142:  *
        !          2143:  *     chdir()
        !          2144:  *     getwd()
        !          2145:  *     stat()
        !          2146:  */
        !          2147: 
        !          2148: #include "tests.h"
        !          2149: 
        !          2150: int Tflag = 0;         /* print timing */
        !          2151: int Hflag = 0;         /* print help message */
        !          2152: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          2153: int Nflag = 0;         /* Suppress directory operations */
        !          2154: 
        !          2155: #ifdef ANSI
        !          2156: void usage(void);
        !          2157: void main(int argc, char *argv[]);
        !          2158: #endif
        !          2159: 
        !          2160: void
        !          2161: usage()
        !          2162: {
        !          2163:        fprintf(stdout, "usage: %s [-htfn] [count]\n", Myname);
        !          2164:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          2165:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          2166:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          2167:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          2168: }
        !          2169: 
        !          2170: void
        !          2171: main(argc, argv)
        !          2172:        int argc;
        !          2173:        char *argv[];
        !          2174: {
        !          2175:        int count = 250;                /* times to do test */
        !          2176:        int ct;
        !          2177:        struct timeval time;
        !          2178: /*     struct statfs sfsb; */
        !          2179:        struct stat statb;
        !          2180:        char *opts;
        !          2181:        char path[MAXPATHLEN];
        !          2182: 
        !          2183:        umask(0);
        !          2184:        setbuf(stdout, NULL);
        !          2185:        Myname = *argv++;
        !          2186:        argc--;
        !          2187:        while (argc && **argv == '-') {
        !          2188:                for (opts = &argv[0][1]; *opts; opts++) {
        !          2189:                        switch (*opts) {
        !          2190:                                case 'h':       /* help */
        !          2191:                                        usage();
        !          2192:                                        exit(1);
        !          2193: 
        !          2194:                                case 't':       /* time */
        !          2195:                                        Tflag++;
        !          2196:                                        break;
        !          2197:                                
        !          2198:                                case 'f':       /* funtionality */
        !          2199:                                        Fflag++;
        !          2200:                                        break;
        !          2201:                                
        !          2202:                                case 'n':       /* No Test Directory create */
        !          2203:                                        Nflag++;
        !          2204:                                        break;
        !          2205: 
        !          2206:                                default:
        !          2207:                                        error("unknown option '%c'", *opts);
        !          2208:                                        usage();
        !          2209:                                        exit(1);
        !          2210:                        }
        !          2211:                }
        !          2212:                argc--;
        !          2213:                argv++;
        !          2214:        }
        !          2215: 
        !          2216:        if (argc) {
        !          2217:                count = (int) getparm(*argv, 1L, "count");
        !          2218:                argv++;
        !          2219:                argc--;
        !          2220:        }
        !          2221:        if (argc) {
        !          2222:                usage();
        !          2223:                exit(1);
        !          2224:        }
        !          2225: 
        !          2226:        if (Fflag) {
        !          2227:                Tflag = 0;
        !          2228:                count = 1;
        !          2229:        }
        !          2230: 
        !          2231:        fprintf(stdout, "%s: lookups across mount point\n", Myname);
        !          2232: 
        !          2233:        if (!Nflag)
        !          2234:                testdir(NULL);
        !          2235:        else
        !          2236:                mtestdir(NULL);
        !          2237: 
        !          2238:        if (Tflag) {
        !          2239:                starttime();
        !          2240:        }
        !          2241: 
        !          2242:        for (ct = 0; ct < count; ct++) {
        !          2243:                if (getwd(path) == NULL) {
        !          2244:                        fprintf(stderr, "%s: getwd failed\n", Myname);
        !          2245:                        exit(1);
        !          2246:                }
        !          2247:                if (stat(path, &statb) < 0) {
        !          2248:                        error("can't stat %s after getwd", path);
        !          2249:                        exit(1);
        !          2250:                }
        !          2251:        }
        !          2252: 
        !          2253:        if (Tflag) {
        !          2254:                endtime(&time);
        !          2255:        }
        !          2256:        fprintf(stdout, "\t%d getwd and stat calls", count * 2);
        !          2257:        if (Tflag) {
        !          2258:                printtimes(&time, 0L);
        !          2259:        }
        !          2260:        fprintf(stdout, "\n");
        !          2261:        complete();
        !          2262: }
        !          2263: long *)buf)[i] = i;
        !          2264:        }
        !          2265: 
        !          2266:        if (Tflag) {
        !          2267:                starttime();
        !          2268:        }
        !          2269: 
        !          2270:        for (ct = 0; ct < count; ct++) {
        !          2271:                if ((fd = creat(bigfile, CHM./basic/test4.c   664  20115     11        6735  4552130367   6607 /*  @(#)test4.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          2272: /*
        !          2273:  * Test setattr, getattr and lookup
        !          2274:  *
        !          2275:  * Creates the files in the test directory - does not create a directory
        !          2276:  * tree.
        !          2277:  *
        !          2278:  * Uses the following important system calls against the server:
        !          2279:  *
        !          2280:  *     chdir()
        !          2281:  *     mkdir()         (for initial directory creation if not -m)
        !          2282:  *     creat()
        !          2283:  *     chmod()
        !          2284:  *     stat()
        !          2285:  */
        !          2286: 
        !          2287: #include "tests.h"
        !          2288: 
        !          2289: 
        !          2290: int Tflag = 0;         /* print timing */
        !          2291: int Hflag = 0;         /* print help message */
        !          2292: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          2293: int Nflag = 0;         /* Suppress directory operations */
        !          2294: 
        !          2295: #ifdef ANSI
        !          2296: void usage(void);
        !          2297: #endif
        !          2298: 
        !          2299: void
        !          2300: usage()
        !          2301: {
        !          2302:        fprintf(stdout, "usage: %s [-htfn] [files count]\n", Myname);
        !          2303:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          2304:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          2305:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          2306:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          2307: }
        !          2308: 
        !          2309: #ifdef ANSI
        !          2310: void main(int argc, char *argv[]);
        !          2311: #endif
        !          2312: void
        !          2313: main(argc, argv)
        !          2314:        int argc;
        !          2315:        char *argv[];
        !          2316: {
        !          2317:        int files = 10;         /* number of files in each dir */
        !          2318:        int fi;
        !          2319:        int count = 50; /* times to do each file */
        !          2320:        int ct;
        !          2321:        int totfiles = 0;
        !          2322:        int totdirs = 0;
        !          2323:        char *fname = FNAME;
        !          2324:        struct timeval time;
        !          2325:        char str[MAXPATHLEN];
        !          2326:        struct stat statb;
        !          2327:        char *opts;
        !          2328: 
        !          2329:        umask(0);
        !          2330:        setbuf(stdout, NULL);
        !          2331:        Myname = *argv++;
        !          2332:        argc--;
        !          2333:        while (argc && **argv == '-') {
        !          2334:                for (opts = &argv[0][1]; *opts; opts++) {
        !          2335:                        switch (*opts) {
        !          2336:                                case 'h':       /* help */
        !          2337:                                        usage();
        !          2338:                                        exit(1);
        !          2339: 
        !          2340:                                case 't':       /* time */
        !          2341:                                        Tflag++;
        !          2342:                                        break;
        !          2343:                                
        !          2344:                                case 'f':       /* funtionality */
        !          2345:                                        Fflag++;
        !          2346:                                        break;
        !          2347:                                
        !          2348:                                case 'n':       /* suppress initial directory */
        !          2349:                                        Nflag++;
        !          2350:                                        break;
        !          2351:                                
        !          2352:                                default:
        !          2353:                                        error("unknown option '%c'", *opts);
        !          2354:                                        usage();
        !          2355:                                        exit(1);
        !          2356:                        }
        !          2357:                }
        !          2358:                argc--;
        !          2359:                argv++;
        !          2360:        }
        !          2361: 
        !          2362:        if (argc) {
        !          2363:                files = (int) getparm(*argv, 1L, "files");
        !          2364:                argv++;
        !          2365:                argc--;
        !          2366:        }
        !          2367:        if (argc) {
        !          2368:                count = (int) getparm(*argv, 1L, "count");
        !          2369:                argv++;
        !          2370:                argc--;
        !          2371:        }
        !          2372:        if (argc) {
        !          2373:                fname = *argv;
        !          2374:                argc--;
        !          2375:                argv++;
        !          2376:        }
        !          2377:        if (argc) {
        !          2378:                usage();
        !          2379:                exit(1);
        !          2380:        }
        !          2381: 
        !          2382:        if (Fflag) {
        !          2383:                Tflag = 0;
        !          2384:                count = 1;
        !          2385:        }
        !          2386: 
        !          2387:        if (!Nflag)
        !          2388:                testdir(NULL);
        !          2389:        else
        !          2390:                mtestdir(NULL);
        !          2391: 
        !          2392:        dirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs);
        !          2393: 
        !          2394:        fprintf(stdout, "%s: setattr, getattr, and lookup\n", Myname);
        !          2395: 
        !          2396:        if (Tflag) {
        !          2397:                starttime();
        !          2398:        }
        !          2399: 
        !          2400:        for (ct = 0; ct < count; ct++) {
        !          2401:                for (fi = 0; fi < files; fi++) {
        !          2402:                        sprintf(str, "%s%d", fname, fi);
        !          2403:                        if (chmod(str, CHMOD_NO) < 0) {
        !          2404:                                error("can't chmod 0 %s", str);
        !          2405:                                exit(0);
        !          2406:                        }
        !          2407:                        if (stat(str, &statb) < 0) {
        !          2408:                                error("can't stat %s", str);
        !          2409:                                exit(1);
        !          2410:                        }
        !          2411:                        if ((statb.st_mode & CHMOD_MASK) != CHMOD_NO) {
        !          2412:                                error("%s has mode %o after chmod 0",
        !          2413:                                    str, (statb.st_mode & CHMOD_MASK));
        !          2414:                                exit(1);
        !          2415:                        }
        !          2416:                        if (chmod(str, CHMOD_YES) < 0) {
        !          2417:                                error("can't chmod 0666 %s", str);
        !          2418:                                exit(0);
        !          2419:                        }
        !          2420:                        if (stat(str, &statb) < 0) {
        !          2421:                                error("can't stat %s", str);
        !          2422:                                exit(1);
        !          2423:                        }
        !          2424:                        if ((statb.st_mode & CHMOD_MASK) != CHMOD_YES) {
        !          2425:                                error("%s has mode %o after chmod 0666",
        !          2426:                                    str, (statb.st_mode & CHMOD_MASK));
        !          2427:                                exit(1);
        !          2428:                        }
        !          2429:                }
        !          2430:        }
        !          2431: 
        !          2432:        if (Tflag) {
        !          2433:                endtime(&time);
        !          2434:        }
        !          2435:        fprintf(stdout, "\t%d chmods and stats on %d files",
        !          2436:                files * count * 2, files);
        !          2437:        if (Tflag) {
        !          2438:                printtimes(&time, 0L);
        !          2439:        }
        !          2440:        fprintf(stdout, "\n");
        !          2441:        /* XXX REMOVE DIRECTORY TREE? */
        !          2442:        complete();
        !          2443: }
        !          2444: bytes) != bytes) {
        !          2445:                        error("'%s' ./basic/test5b.c   664  20115     11        5620  4552130374   6740 /*  @(#)test5b.c    1.2 89/01/10 NFS Rev 2 Testsuite        */
        !          2446: /*
        !          2447:  * Test read - will read a file of specified size, contents not looked at
        !          2448:  *
        !          2449:  * Uses the following important system calls against the server:
        !          2450:  *
        !          2451:  *     chdir()
        !          2452:  *     mkdir()         (for initial directory creation if not -m)
        !          2453:  *     open()
        !          2454:  *     read()
        !          2455:  *     unlink()
        !          2456:  */
        !          2457: 
        !          2458: #include "tests.h"
        !          2459: 
        !          2460: #define        BUFSZ   8192
        !          2461: #define        DSIZE   1048576L
        !          2462: 
        !          2463: int Tflag = 0;         /* print timing */
        !          2464: int Hflag = 0;         /* print help message */
        !          2465: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          2466: int Nflag = 0;         /* Suppress directory operations */
        !          2467: 
        !          2468: #ifdef ANSI
        !          2469: void usage(void);
        !          2470: void main(int argc, char *argv[]);
        !          2471: #endif
        !          2472: 
        !          2473: void
        !          2474: usage()
        !          2475: {
        !          2476:        fprintf(stdout, "usage: %s [-htfn] [size count fname]\n", Myname);
        !          2477:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          2478:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          2479:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          2480:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          2481: }
        !          2482: 
        !          2483: void
        !          2484: main(argc, argv)
        !          2485:        int argc;
        !          2486:        char *argv[];
        !          2487: {
        !          2488:        int count = DCOUNT;     /* times to do each file */
        !          2489:        int ct;
        !          2490:        long size = DSIZE;
        !          2491:        long si;
        !          2492:        int fd;
        !          2493:        int bytes;
        !          2494:        char *bigfile = "bigfile";
        !          2495:        struct timeval time;
        !          2496:        char *opts;
        !          2497:        char buf[BUFSZ];
        !          2498: 
        !          2499:        umask(0);
        !          2500:        setbuf(stdout, NULL);
        !          2501:        Myname = *argv++;
        !          2502:        argc--;
        !          2503:        while (argc && **argv == '-') {
        !          2504:                for (opts = &argv[0][1]; *opts; opts++) {
        !          2505:                        switch (*opts) {
        !          2506:                                case 'h':       /* help */
        !          2507:                                        usage();
        !          2508:                                        exit(1);
        !          2509: 
        !          2510:                                case 't':       /* time */
        !          2511:                                        Tflag++;
        !          2512:                                        break;
        !          2513:                                
        !          2514:                                case 'f':       /* funtionality */
        !          2515:                                        Fflag++;
        !          2516:                                        break;
        !          2517:                                
        !          2518:                                case 'n':       /* No Test Directory create */
        !          2519:                                        Nflag++;
        !          2520:                                        break;
        !          2521: 
        !          2522:                                default:
        !          2523:                                        error("unknown option '%c'", *opts);
        !          2524:                                        usage();
        !          2525:                                        exit(1);
        !          2526:                        }
        !          2527:                }
        !          2528:                argc--;
        !          2529:                argv++;
        !          2530:        }
        !          2531: 
        !          2532:        if (argc) {
        !          2533:                 size = getparm(*argv, 1L, "size");
        !          2534:                argv++;
        !          2535:                argc--;
        !          2536:        }
        !          2537:        if (argc) {
        !          2538:                 count = (int) getparm(*argv, 1L, "count");
        !          2539:                argv++;
        !          2540:                argc--;
        !          2541:        }
        !          2542:        if (argc) {
        !          2543:                 bigfile = *argv;
        !          2544:                argv++;
        !          2545:                argc--;
        !          2546:        }
        !          2547:        if (argc) {
        !          2548:                usage();
        !          2549:                exit(1);
        !          2550:        }
        !          2551:        
        !          2552:        if (Fflag) {
        !          2553:                Tflag = 0;
        !          2554:                count = 1;
        !          2555:        }
        !          2556: 
        !          2557:        fprintf(stdout, "%s: read\n", Myname);
        !          2558: 
        !          2559:        mtestdir(NULL);
        !          2560: 
        !          2561:        if (Tflag) {
        !          2562:                starttime();
        !          2563:        }
        !          2564: 
        !          2565:        for (ct = 0; ct < count; ct++) {
        !          2566:                if ((fd = open(bigfile, 0)) < 0) {
        !          2567:                        error("can't open '%s'", bigfile);
        !          2568:                        exit(1);
        !          2569:                }
        !          2570:                for (si = size; si > 0; si -= (long) BUFSZ) {
        !          2571:                        bytes = (int) MIN((long) BUFSZ, si);
        !          2572:                        if (read(fd, buf, bytes) != bytes) {
        !          2573:                                error("'%s' read failed", bigfile);
        !          2574:                                exit(1);
        !          2575:                        }
        !          2576:                }
        !          2577:                close(fd);
        !          2578:        }
        !          2579: 
        !          2580:        if (Tflag) {
        !          2581:                endtime(&time);
        !          2582:        }
        !          2583:        fprintf(stdout, "\tread %ld byte file %d times", size, count);
        !          2584:        if (Tflag) {
        !          2585:                printtimes(&time, size * (long) count);
        !          2586:        }
        !          2587:        fprintf(stdout, "\n");
        !          2588: 
        !          2589:        if (unlink(bigfile) < 0) {
        !          2590:                error("can't unlink '%s'", bigfile);
        !          2591:                exit(1);
        !          2592:        }
        !          2593:        complete();
        !          2594: }
        !          2595: yname);
        !          2596: 
        !          2597:        if (Tflag) {
        !          2598:                starttime();
        !          2599:        }
        !          2600: 
        !          2601:        for (ct = 0; ct < count; ct++) {
        !          2602:                for (fi = 0; fi < files; fi./basic/makefile.mak   664  20115     11        4475  4552130360   7637 #
        !          2603: #       @(#)Makefile   1.4 89/01/13 NFS Rev 2 Testsuite
        !          2604: #
        !          2605: # to make tests, use 'make'
        !          2606: # to copy tests to another directory, use 'make copy DESTDIR=dir'
        !          2607: # to copy source to another directory, use 'make dist DESTDIR=dir'
        !          2608: 
        !          2609: CC = cl
        !          2610: TESTS = test1$(EXE) test2$(EXE) test3$(EXE) test4$(EXE) test5$(EXE) \
        !          2611:        test6$(EXE) test7$(EXE) test8$(EXE) test9$(EXE)
        !          2612: AUXTESTS = test4a$(EXE) test5a$(EXE) test5b$(EXE) test7a$(EXE) test7b$(EXE)
        !          2613: DESTDIR = /no/such/path
        !          2614: #  Define NFS3_2 for NFS 3.2 compatibility - Comment out if not NFS 3.2
        !          2615: #COMPAT = -DNFS3_2
        !          2616: DEBUG = /Zi /Od
        !          2617: CFLAGS = $(COMPAT) $(DEBUG) -DDOS -DANSI -F 4000 /Fm /W3 /Ze
        !          2618: LINKFLAGS = /link /NOE
        !          2619: OBJ = .obj     # .o for Unix
        !          2620: EXE = .exe     # null for Unix
        !          2621: COMMONOBJ = subr$(OBJ) d:\msc\5.1\lib\binmode.obj
        !          2622: all: origtests auxtests
        !          2623: 
        !          2624: origtests: $(TESTS)
        !          2625: auxtests: $(AUXTESTS)
        !          2626: 
        !          2627: subr$(OBJ): subr.c unixdos.h tests.h
        !          2628:        $(CC) $(CFLAGS) -c $*.c
        !          2629: 
        !          2630: test1.exe: $*.c $(COMMONOBJ)
        !          2631:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2632: 
        !          2633: test2.exe: $*.c $(COMMONOBJ)
        !          2634:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2635: 
        !          2636: test3.exe: $*.c $(COMMONOBJ)
        !          2637:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2638: 
        !          2639: test4.exe: $*.c $(COMMONOBJ)
        !          2640:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2641: 
        !          2642: test4a.exe: $*.c $(COMMONOBJ)
        !          2643:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2644: 
        !          2645: test5.exe: $*.c $(COMMONOBJ)
        !          2646:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2647: 
        !          2648: test5a.exe: $*.c $(COMMONOBJ)
        !          2649:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2650: 
        !          2651: test5b.exe: $*.c $(COMMONOBJ)
        !          2652:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2653: 
        !          2654: test6.exe: $*.c $(COMMONOBJ)
        !          2655:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2656: 
        !          2657: test7.exe: $*.c $(COMMONOBJ)
        !          2658:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2659: 
        !          2660: test7a.exe: $*.c $(COMMONOBJ)
        !          2661:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2662: 
        !          2663: test7b.exe: $*.c $(COMMONOBJ)
        !          2664:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2665: 
        !          2666: test8.exe: $*.c $(COMMONOBJ)
        !          2667:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2668: 
        !          2669: test9.exe: $*.c $(COMMONOBJ)
        !          2670:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          2671: 
        !          2672: clean:
        !          2673:        -rm *$(OBJ) $(TESTS) $(AUXTESTS)
        !          2674: 
        !          2675: copy: $(TESTS)
        !          2676:        cp runtests $(TESTS) $(AUXTESTS) $(DESTDIR)
        !          2677: 
        !          2678: dist:
        !          2679:        cp runtests Makefile *.c *.h $(DESTDIR)
        !          2680:  < 0) {
        !          2681:                error("can't unlink '%s'", bigfile);
        !          2682:                exit(1);
        !          2683:        }
        !          2684:        complete();
        !          2685: }
        !          2686: yname);
        !          2687: 
        !          2688:        if (Tflag) {
        !          2689:                starttime();
        !          2690:        }
        !          2691: 
        !          2692:        for (ct = 0; ct < count; ct++) {
        !          2693:                for (fi = 0; fi < files; fi./basic/test7.c   664  20115     11       10725  4552130375   6623 /*   @(#)test7.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          2694: /*
        !          2695:  * Test rename, link
        !          2696:  *
        !          2697:  * Uses the following important system calls against the server:
        !          2698:  *
        !          2699:  *     chdir()
        !          2700:  *     creat()
        !          2701:  *     stat()
        !          2702:  *     rename()
        !          2703:  *     link()
        !          2704:  *     unlink()
        !          2705:  */
        !          2706: 
        !          2707: #include "tests.h"
        !          2708: 
        !          2709: #ifdef ANSI
        !          2710: void usage(void);
        !          2711: void main(int argc, char *argv[]);
        !          2712: #endif
        !          2713: 
        !          2714: int Tflag = 0;         /* print timing */
        !          2715: int Hflag = 0;         /* print help message */
        !          2716: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          2717: int Nflag = 0;         /* Suppress directory operations */
        !          2718: 
        !          2719: #define NNAME "newfile."       /* new filename for rename and link */
        !          2720: 
        !          2721: void
        !          2722: usage()
        !          2723: {
        !          2724:        fprintf(stdout, "usage: %s [-htfn] [files count fname nname]\n", Myname);
        !          2725:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          2726:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          2727:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          2728:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          2729: }
        !          2730: 
        !          2731: void
        !          2732: main(argc, argv)
        !          2733:        int argc;
        !          2734:        char *argv[];
        !          2735: {
        !          2736:        int files = 10;         /* number of files in each dir */
        !          2737:        int fi;
        !          2738:        int count = 10; /* times to do each file */
        !          2739:        int ct;
        !          2740:        int totfiles = 0;
        !          2741:        int totdirs = 0;
        !          2742:        char *fname = FNAME;
        !          2743:        char *nname = NNAME;
        !          2744:        struct timeval time;
        !          2745:        char str[MAXPATHLEN];
        !          2746:        char new[MAXPATHLEN];
        !          2747:        struct stat statb;
        !          2748:        char *opts;
        !          2749: 
        !          2750:        umask(0);
        !          2751:        setbuf(stdout, NULL);
        !          2752:        Myname = *argv++;
        !          2753:        argc--;
        !          2754:        while (argc && **argv == '-') {
        !          2755:                for (opts = &argv[0][1]; *opts; opts++) {
        !          2756:                        switch (*opts) {
        !          2757:                                case 'h':       /* help */
        !          2758:                                        usage();
        !          2759:                                        exit(1);
        !          2760: 
        !          2761:                                case 't':       /* time */
        !          2762:                                        Tflag++;
        !          2763:                                        break;
        !          2764:                                
        !          2765:                                case 'f':       /* funtionality */
        !          2766:                                        Fflag++;
        !          2767:                                        break;
        !          2768:                                
        !          2769:                                case 'n':       /* No Test Directory create */
        !          2770:                                        Nflag++;
        !          2771:                                        break;
        !          2772: 
        !          2773:                                default:
        !          2774:                                        error("unknown option '%c'", *opts);
        !          2775:                                        usage();
        !          2776:                                        exit(1);
        !          2777:                        }
        !          2778:                }
        !          2779:                argc--;
        !          2780:                argv++;
        !          2781:        }
        !          2782: 
        !          2783:        if (argc) {
        !          2784:                files = (int) getparm(*argv, 1L, "files");
        !          2785:                argv++;
        !          2786:                argc--;
        !          2787:        }
        !          2788:        if (argc) {
        !          2789:                count = (int) getparm(*argv, 1L, "count");
        !          2790:                argv++;
        !          2791:                argc--;
        !          2792:        }
        !          2793:        if (argc) {
        !          2794:                fname = *argv;
        !          2795:                argv++;
        !          2796:                argc--;
        !          2797:        }
        !          2798:        if (argc) {
        !          2799:                nname = *argv;
        !          2800:                argv++;
        !          2801:                argc--;
        !          2802:        }
        !          2803:        if (argc) {
        !          2804:                usage();
        !          2805:                exit(1);
        !          2806:        }
        !          2807: 
        !          2808:        if (Fflag) {
        !          2809:                Tflag = 0;
        !          2810:                count = 1;
        !          2811:        }
        !          2812: 
        !          2813:        fprintf(stdout, "%s: link and rename\n", Myname);
        !          2814:        #ifdef DOS
        !          2815:        fprintf(stdout, "\t(abbreviated because DOS doesn't support links)\n");
        !          2816:        #endif
        !          2817: 
        !          2818:        if (!Nflag)
        !          2819:                testdir(NULL);
        !          2820:        else
        !          2821:                mtestdir(NULL);
        !          2822: 
        !          2823:        dirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs);
        !          2824: 
        !          2825:        if (Tflag) {
        !          2826:                starttime();
        !          2827:        }
        !          2828: 
        !          2829:        for (ct = 0; ct < count; ct++) {
        !          2830:                for (fi = 0; fi < files; fi++) {
        !          2831:                        sprintf(str, "%s%d", fname, fi);
        !          2832:                        sprintf(new, "%s%d", nname, fi);
        !          2833:                        if (rename(str, new) < 0) {
        !          2834:                                error("can't rename %s to %s", str, new);
        !          2835:                                exit(1);
        !          2836:                        }
        !          2837:                        if (stat(str, &statb) == 0) {
        !          2838:                                error("%s exists after rename", str);
        !          2839:                                exit(1);
        !          2840:                        }
        !          2841:                        if (stat(new, &statb) < 0) {
        !          2842:                                error("can't stat %s after rename", new);
        !          2843:                                exit(1);
        !          2844:                        }
        !          2845:                        if (statb.st_nlink != 1) {
        !          2846:                                error("%s has %d links after rename (expect 1)",
        !          2847:                                        new, statb.st_nlink);
        !          2848:                                exit(1);
        !          2849:                        }
        !          2850:                        #ifdef DOS      /* just rename back to orig name */
        !          2851:                        if (rename(new, str) < 0) {
        !          2852:                                error("can't rename %s to %s", new, str);
        !          2853:                                exit(1);
        !          2854:                        }
        !          2855:                        #else
        !          2856:                        if (link(new, str) < 0) {
        !          2857:                                error("can't link %s to %s", new, str);
        !          2858:                                exit(1);
        !          2859:                        }
        !          2860:                        if (stat(new, &statb) < 0) {
        !          2861:                                error("can't stat %s after link", new);
        !          2862:                                exit(1);
        !          2863:                        }
        !          2864:                        if (statb.st_nlink != 2) {
        !          2865:                                error("%s has %d links after link (expect 2)",
        !          2866:                                        new, statb.st_nlink);
        !          2867:                                exit(1);
        !          2868:                        }
        !          2869:                        if (stat(str, &statb) < 0) {
        !          2870:                                error("can't stat %s after link", str);
        !          2871:                                exit(1);
        !          2872:                        }
        !          2873:                        if (statb.st_nlink != 2) {
        !          2874:                                error("%s has %d links after link (expect 2)",
        !          2875:                                        str, statb.st_nlink);
        !          2876:                                exit(1);
        !          2877:                        }
        !          2878: 
        !          2879:                        if (unlink(new) < 0) {
        !          2880:                                error("can't unlink %s", new);
        !          2881:                                exit(1);
        !          2882:                        }
        !          2883:                        #endif /* DOS */
        !          2884:                        if (stat(str, &statb) < 0) {
        !          2885:                                error("can't stat %s after unlink %s",
        !          2886:                                        str, new);
        !          2887:                                exit(1);
        !          2888:                        }
        !          2889:                        if (statb.st_nlink != 1) {
        !          2890:                                error("%s has %d links after unlink (expect 1)",
        !          2891:                                        str, statb.st_nlink);
        !          2892:                                exit(1);
        !          2893:                        }
        !          2894:                }
        !          2895:        }
        !          2896: 
        !          2897:        if (Tflag) {
        !          2898:                endtime(&time);
        !          2899:        }
        !          2900:        fprintf(stdout, "\t%d renames and links on %d files",
        !          2901:                files * count * 2, files);
        !          2902:        if (Tflag) {
        !          2903:                printtimes(&time, 0L);
        !          2904:        }
        !          2905:        fprintf(stdout, "\n");
        !          2906: 
        !          2907:        /* Cleanup files left around */
        !          2908:        rmdirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs, 1);
        !          2909: 
        !          2910:        complete();
        !          2911: }
        !          2912: unt; ct++) {
        !          2913:                for (fi = 0; fi < files; fi./basic/test8.c   664  20115     11        7472  4552130400   6576 /*   @(#)test8.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          2914: /*
        !          2915:  * Test symlink, readlink
        !          2916:  *
        !          2917:  * Uses the following important system calls against the server:
        !          2918:  *
        !          2919:  *     chdir()
        !          2920:  *     mkdir()         (for initial directory creation if not -m)
        !          2921:  *     creat()
        !          2922:  *     symlink()
        !          2923:  *     readlink()
        !          2924:  *     lstat()
        !          2925:  *     unlink()
        !          2926:  */
        !          2927: 
        !          2928: #include "tests.h"
        !          2929: 
        !          2930: 
        !          2931: #ifdef ANSI
        !          2932: void usage(void);
        !          2933: void main(int argc, char *argv[]);
        !          2934: #endif
        !          2935: 
        !          2936: int Tflag = 0;         /* print timing */
        !          2937: int Hflag = 0;         /* print help message */
        !          2938: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          2939: int Nflag = 0;         /* Suppress directory operations */
        !          2940: 
        !          2941: #define SNAME "/this/is/a/symlink"     /* symlink prefix */
        !          2942: 
        !          2943: void
        !          2944: usage()
        !          2945: {
        !          2946:        fprintf(stdout, "usage: %s [-htfn] [files count fname sname]\n", Myname);
        !          2947:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          2948:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          2949:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          2950:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          2951: }
        !          2952: 
        !          2953: void
        !          2954: main(argc, argv)
        !          2955:        int argc;
        !          2956:        char *argv[];
        !          2957: {
        !          2958:        int files = 10;         /* number of files in each dir */
        !          2959:        int fi;
        !          2960:        int count = 20; /* times to do each file */
        !          2961:        int ct;
        !          2962:        int totfiles = 0;
        !          2963:        int totdirs = 0;
        !          2964:        char *fname = FNAME;
        !          2965:        char *sname = SNAME;
        !          2966:        struct timeval time;
        !          2967:        char str[MAXPATHLEN];
        !          2968:        char new[MAXPATHLEN];
        !          2969:        char buf[MAXPATHLEN];
        !          2970:        int ret;
        !          2971:        struct stat statb;
        !          2972:        char *opts;
        !          2973: 
        !          2974:        umask(0);
        !          2975:        setbuf(stdout, NULL);
        !          2976:        Myname = *argv++;
        !          2977: #ifndef S_IFLNK
        !          2978:        fprintf(stdout, "\
        !          2979: %s: symlink and readlink not supported on this client\n", Myname);
        !          2980: #else /* S_IFLNK */
        !          2981:        argc--;
        !          2982:        while (argc && **argv == '-') {
        !          2983:                for (opts = &argv[0][1]; *opts; opts++) {
        !          2984:                        switch (*opts) {
        !          2985:                                case 'h':       /* help */
        !          2986:                                        usage();
        !          2987:                                        exit(1);
        !          2988: 
        !          2989:                                case 't':       /* time */
        !          2990:                                        Tflag++;
        !          2991:                                        break;
        !          2992:                                
        !          2993:                                case 'f':       /* funtionality */
        !          2994:                                        Fflag++;
        !          2995:                                        break;
        !          2996:                                
        !          2997:                                case 'n':       /* No Test Directory create */
        !          2998:                                        Nflag++;
        !          2999:                                        break;
        !          3000: 
        !          3001:                                default:
        !          3002:                                        error("unknown option '%c'", *opts);
        !          3003:                                        usage();
        !          3004:                                        exit(1);
        !          3005:                        }
        !          3006:                }
        !          3007:                argc--;
        !          3008:                argv++;
        !          3009:        }
        !          3010: 
        !          3011:        if (argc) {
        !          3012:                files = (int) getparm(*argv, 1L, "files");
        !          3013:                argv++;
        !          3014:                argc--;
        !          3015:        }
        !          3016:        if (argc) {
        !          3017:                count = (int) getparm(*argv, 1L, "count");
        !          3018:                argv++;
        !          3019:                argc--;
        !          3020:        }
        !          3021:        if (argc) {
        !          3022:                fname = *argv;
        !          3023:                argv++;
        !          3024:                argc--;
        !          3025:        }
        !          3026:        if (argc) {
        !          3027:                sname = *argv;
        !          3028:                argv++;
        !          3029:                argc--;
        !          3030:        }
        !          3031:        if (argc) {
        !          3032:                usage();
        !          3033:                exit(1);
        !          3034:        }
        !          3035: 
        !          3036:        if (Fflag) {
        !          3037:                Tflag = 0;
        !          3038:                count = 1;
        !          3039:        }
        !          3040: 
        !          3041:        if (!Nflag)
        !          3042:                testdir(NULL);
        !          3043:        else
        !          3044:                mtestdir(NULL);
        !          3045: 
        !          3046:        fprintf(stdout, "%s: symlink and readlink\n", Myname);
        !          3047: 
        !          3048:        if (Tflag) {
        !          3049:                starttime();
        !          3050:        }
        !          3051: 
        !          3052:        for (ct = 0; ct < count; ct++) {
        !          3053:                for (fi = 0; fi < files; fi++) {
        !          3054:                        sprintf(str, "%s%d", fname, fi);
        !          3055:                        sprintf(new, "%s%d", sname, fi);
        !          3056:                        if (symlink(new, str) < 0) {
        !          3057:                                error("can't make symlink %s", str);
        !          3058:                                if (errno == EOPNOTSUPP)
        !          3059:                                        complete();
        !          3060:                                else
        !          3061:                                        exit(1);
        !          3062:                        }
        !          3063:                         if (lstat(str, &statb) < 0) {
        !          3064:                                 error("can't stat %s after symlink", str);
        !          3065:                                 exit(1);
        !          3066:                         }
        !          3067:                        if ((statb.st_mode & S_IFMT) != S_IFLNK) {
        !          3068:                                error("mode of %s not symlink");
        !          3069:                                exit(1);
        !          3070:                        }
        !          3071:                        if ((ret = readlink(str, buf, MAXPATHLEN))
        !          3072:                             != strlen(new)) {
        !          3073:                                error("readlink %s ret %d, expect %d",
        !          3074:                                        str, ret, strlen(new));
        !          3075:                                exit(1);
        !          3076:                        }
        !          3077:                        if (strncmp(new, buf, ret) != NULL) {
        !          3078:                                error("readlink %s returned bad linkname",
        !          3079:                                        str);
        !          3080:                                exit(1);
        !          3081:                        }
        !          3082:                        if (unlink(str) < 0) {
        !          3083:                                error("can't unlink %s", str);
        !          3084:                                exit(1);
        !          3085:                        }
        !          3086:                }
        !          3087:        }
        !          3088: 
        !          3089:        if (Tflag) {
        !          3090:                endtime(&time);
        !          3091:        }
        !          3092:        fprintf(stdout, "\t%d symlinks and readlinks on %d files",
        !          3093:                files * count * 2, files);
        !          3094:        if (Tflag) {
        !          3095:                printtimes(&time, 0L);
        !          3096:        }
        !          3097:        fprintf(stdout, "\n");
        !          3098: #endif /* S_IFLNK */
        !          3099:        complete();
        !          3100: }
        !          3101: d.%-2d seconds (%ld bytes/sec)",
        !          3102:                    time.tv_sec, time.tv_usec / 10000, size*count/time.tv_sec);
        !          3103:        }
        !          3104:        fprintf(stdout, "\n");
        !          3105:        if (Tflag) {
        !          3106:                starttime();
        !          3107:        }
        !          3108: 
        !          3109:        for (ct = 0; ct < count; ct++)./basic/test7a.c   664  20115     11        6772  4552130376   6754 /*        @(#)test7a.c    1.2 89/01/10 NFS Rev 2 Testsuite        */
        !          3110: /*
        !          3111:  * Test rename
        !          3112:  *
        !          3113:  * Uses the following important system calls against the server:
        !          3114:  *
        !          3115:  *     chdir()
        !          3116:  *     mkdir()         (for initial directory creation if not -m)
        !          3117:  *     creat()
        !          3118:  *     stat()
        !          3119:  *     rename()
        !          3120:  *     unlink()
        !          3121:  */
        !          3122: 
        !          3123: #include "tests.h"
        !          3124: 
        !          3125: #ifdef ANSI
        !          3126: void usage(void);
        !          3127: void main(int argc, char *argv[]);
        !          3128: #endif
        !          3129: 
        !          3130: int Tflag = 0;         /* print timing */
        !          3131: int Hflag = 0;         /* print help message */
        !          3132: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          3133: int Nflag = 0;         /* Suppress directory operations */
        !          3134: 
        !          3135: #define NNAME "newfile."       /* new filename for rename */
        !          3136: 
        !          3137: void
        !          3138: usage()
        !          3139: {
        !          3140:        fprintf(stdout, "usage: %s [-htfn] [files count fname nname]\n", Myname);
        !          3141:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          3142:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          3143:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          3144:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          3145: }
        !          3146: 
        !          3147: void
        !          3148: main(argc, argv)
        !          3149:        int argc;
        !          3150:        char *argv[];
        !          3151: {
        !          3152:        int files = 10;         /* number of files in each dir */
        !          3153:        int fi;
        !          3154:        int count = 10; /* times to do each file */
        !          3155:        int ct;
        !          3156:        int totfiles = 0;
        !          3157:        int totdirs = 0;
        !          3158:        char *fname = FNAME;
        !          3159:        char *nname = NNAME;
        !          3160:        struct timeval time;
        !          3161:        char str[MAXPATHLEN];
        !          3162:        char new[MAXPATHLEN];
        !          3163:        struct stat statb;
        !          3164:        char *opts;
        !          3165: 
        !          3166:        umask(0);
        !          3167:        setbuf(stdout, NULL);
        !          3168:        Myname = *argv++;
        !          3169:        argc--;
        !          3170:        while (argc && **argv == '-') {
        !          3171:                for (opts = &argv[0][1]; *opts; opts++) {
        !          3172:                        switch (*opts) {
        !          3173:                                case 'h':       /* help */
        !          3174:                                        usage();
        !          3175:                                        exit(1);
        !          3176: 
        !          3177:                                case 't':       /* time */
        !          3178:                                        Tflag++;
        !          3179:                                        break;
        !          3180:                                
        !          3181:                                case 'f':       /* funtionality */
        !          3182:                                        Fflag++;
        !          3183:                                        break;
        !          3184:                                
        !          3185:                                case 'n':       /* No Test Directory create */
        !          3186:                                        Nflag++;
        !          3187:                                        break;
        !          3188: 
        !          3189:                                default:
        !          3190:                                        error("unknown option '%c'", *opts);
        !          3191:                                        usage();
        !          3192:                                        exit(1);
        !          3193:                        }
        !          3194:                }
        !          3195:                argc--;
        !          3196:                argv++;
        !          3197:        }
        !          3198: 
        !          3199:        if (argc) {
        !          3200:                files = (int) getparm(*argv, 1L, "files");
        !          3201:                argv++;
        !          3202:                argc--;
        !          3203:        }
        !          3204:        if (argc) {
        !          3205:                count = (int) getparm(*argv, 1L, "count");
        !          3206:                argv++;
        !          3207:                argc--;
        !          3208:        }
        !          3209:        if (argc) {
        !          3210:                fname = *argv;
        !          3211:                argv++;
        !          3212:                argc--;
        !          3213:        }
        !          3214:        if (argc) {
        !          3215:                nname = *argv;
        !          3216:                argv++;
        !          3217:                argc--;
        !          3218:        }
        !          3219:        if (argc) {
        !          3220:                usage();
        !          3221:                exit(1);
        !          3222:        }
        !          3223: 
        !          3224:        if (Fflag) {
        !          3225:                Tflag = 0;
        !          3226:                count = 1;
        !          3227:        }
        !          3228: 
        !          3229:        fprintf(stdout, "%s: rename\n", Myname);
        !          3230: 
        !          3231:        if (!Nflag)
        !          3232:                testdir(NULL);
        !          3233:        else
        !          3234:                mtestdir(NULL);
        !          3235: 
        !          3236:        dirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs);
        !          3237: 
        !          3238:        if (Tflag) {
        !          3239:                starttime();
        !          3240:        }
        !          3241: 
        !          3242:        for (ct = 0; ct < count; ct++) {
        !          3243:                for (fi = 0; fi < files; fi++) {
        !          3244:                        sprintf(str, "%s%d", fname, fi);
        !          3245:                        sprintf(new, "%s%d", nname, fi);
        !          3246:                        if (rename(str, new) < 0) {
        !          3247:                                error("can't rename %s to %s", str, new);
        !          3248:                                exit(1);
        !          3249:                        }
        !          3250:                        if (stat(str, &statb) == 0) {
        !          3251:                                error("%s exists after rename", str);
        !          3252:                                exit(1);
        !          3253:                        }
        !          3254:                        if (stat(new, &statb) < 0) {
        !          3255:                                error("can't stat %s after rename", new);
        !          3256:                                exit(1);
        !          3257:                        }
        !          3258:                        if (rename(new, str) < 0) {
        !          3259:                                error("can't rename %s to %s", new, str);
        !          3260:                                exit(1);
        !          3261:                        }
        !          3262:                        if (stat(new, &statb) == 0) {
        !          3263:                                error("%s exists after rename", new);
        !          3264:                                exit(1);
        !          3265:                        }
        !          3266:                        if (stat(str, &statb) < 0) {
        !          3267:                                error("can't stat %s after rename", str);
        !          3268:                                exit(1);
        !          3269:                        }
        !          3270:                }
        !          3271:        }
        !          3272: 
        !          3273:        if (Tflag) {
        !          3274:                endtime(&time);
        !          3275:        }
        !          3276:        fprintf(stdout, "\t%d renames on %d files",
        !          3277:                files * count * 2, files);
        !          3278:        if (Tflag) {
        !          3279:                printtimes(&time, 0L);
        !          3280:        }
        !          3281:        fprintf(stdout, "\n");
        !          3282: 
        !          3283:        /* Cleanup files left around */
        !          3284:        rmdirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs, 1);
        !          3285: 
        !          3286:        complete();
        !          3287: }
        !          3288: n't st./basic/test7b.c   664  20115     11        7561  4552130377   6753 /*      @(#)test7b.c    1.2 89/01/10 NFS Rev 2 Testsuite        */
        !          3289: /*
        !          3290:  * Test link
        !          3291:  *
        !          3292:  * Uses the following important system calls against the server:
        !          3293:  *
        !          3294:  *     chdir()
        !          3295:  *     mkdir()         (for initial directory creation if not -m)
        !          3296:  *     creat()
        !          3297:  *     stat()
        !          3298:  *     link()
        !          3299:  *     unlink()
        !          3300:  */
        !          3301: 
        !          3302: #include "tests.h"
        !          3303: 
        !          3304: #ifdef ANSI
        !          3305: void usage(void);
        !          3306: void main(int argc, char *argv[]);
        !          3307: #endif
        !          3308: 
        !          3309: int Tflag = 0;         /* print timing */
        !          3310: int Hflag = 0;         /* print help message */
        !          3311: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          3312: int Nflag = 0;         /* Suppress directory operations */
        !          3313: 
        !          3314: #define NNAME "newfile."       /* new filename for link */
        !          3315: 
        !          3316: void
        !          3317: usage()
        !          3318: {
        !          3319:        fprintf(stdout, "usage: %s [-htfn] [files count fname nname]\n", Myname);
        !          3320:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          3321:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          3322:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          3323:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          3324: }
        !          3325: 
        !          3326: void
        !          3327: main(argc, argv)
        !          3328:        int argc;
        !          3329:        char *argv[];
        !          3330: {
        !          3331:        int files = 10;         /* number of files in each dir */
        !          3332:        int fi;
        !          3333:        int count = 10; /* times to do each file */
        !          3334:        int ct;
        !          3335:        int totfiles = 0;
        !          3336:        int totdirs = 0;
        !          3337:        char *fname = FNAME;
        !          3338:        char *nname = NNAME;
        !          3339:        struct timeval time;
        !          3340:        char str[MAXPATHLEN];
        !          3341:        char new[MAXPATHLEN];
        !          3342:        struct stat statb;
        !          3343:        char *opts;
        !          3344: 
        !          3345:        umask(0);
        !          3346:        setbuf(stdout, NULL);
        !          3347:        Myname = *argv++;
        !          3348:        #ifdef DOS
        !          3349:        fprintf(stdout, "%s: links not supported under DOS\n", Myname);
        !          3350:        #else
        !          3351: 
        !          3352:        argc--;
        !          3353:        while (argc && **argv == '-') {
        !          3354:                for (opts = &argv[0][1]; *opts; opts++) {
        !          3355:                        switch (*opts) {
        !          3356:                                case 'h':       /* help */
        !          3357:                                        usage();
        !          3358:                                        exit(1);
        !          3359: 
        !          3360:                                case 't':       /* time */
        !          3361:                                        Tflag++;
        !          3362:                                        break;
        !          3363:                                
        !          3364:                                case 'f':       /* funtionality */
        !          3365:                                        Fflag++;
        !          3366:                                        break;
        !          3367:                                
        !          3368:                                case 'n':       /* No Test Directory create */
        !          3369:                                        Nflag++;
        !          3370:                                        break;
        !          3371: 
        !          3372:                                default:
        !          3373:                                        error("unknown option '%c'", *opts);
        !          3374:                                        usage();
        !          3375:                                        exit(1);
        !          3376:                        }
        !          3377:                }
        !          3378:                argc--;
        !          3379:                argv++;
        !          3380:        }
        !          3381: 
        !          3382:        if (argc) {
        !          3383:                files = (int) getparm(*argv, 1L, "files");
        !          3384:                argv++;
        !          3385:                argc--;
        !          3386:        }
        !          3387:        if (argc) {
        !          3388:                count = (int) getparm(*argv, 1L, "count");
        !          3389:                argv++;
        !          3390:                argc--;
        !          3391:        }
        !          3392:        if (argc) {
        !          3393:                fname = *argv;
        !          3394:                argv++;
        !          3395:                argc--;
        !          3396:        }
        !          3397:        if (argc) {
        !          3398:                nname = *argv;
        !          3399:                argv++;
        !          3400:                argc--;
        !          3401:        }
        !          3402:        if (argc) {
        !          3403:                usage();
        !          3404:                exit(1);
        !          3405:        }
        !          3406: 
        !          3407:        if (Fflag) {
        !          3408:                Tflag = 0;
        !          3409:                count = 1;
        !          3410:        }
        !          3411: 
        !          3412:        fprintf(stdout, "%s: link\n", Myname);
        !          3413: 
        !          3414:        if (!Nflag)
        !          3415:                testdir(NULL);
        !          3416:        else
        !          3417:                mtestdir(NULL);
        !          3418: 
        !          3419:        dirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs);
        !          3420: 
        !          3421:        if (Tflag) {
        !          3422:                starttime();
        !          3423:        }
        !          3424: 
        !          3425:        for (ct = 0; ct < count; ct++) {
        !          3426:                for (fi = 0; fi < files; fi++) {
        !          3427:                        sprintf(str, "%s%d", fname, fi);
        !          3428:                        sprintf(new, "%s%d", nname, fi);
        !          3429:                        if (link(str, new) < 0) {
        !          3430:                                error("can't link %s to %s", str, new);
        !          3431:                                exit(1);
        !          3432:                        }
        !          3433:                        if (stat(new, &statb) < 0) {
        !          3434:                                error("can't stat %s after link", new);
        !          3435:                                exit(1);
        !          3436:                        }
        !          3437:                        if (statb.st_nlink != 2) {
        !          3438:                                error("%s has %d links after link (expect 2)",
        !          3439:                                        new, statb.st_nlink);
        !          3440:                                exit(1);
        !          3441:                        }
        !          3442:                        if (stat(str, &statb) < 0) {
        !          3443:                                error("can't stat %s after link", str);
        !          3444:                                exit(1);
        !          3445:                        }
        !          3446:                        if (statb.st_nlink != 2) {
        !          3447:                                error("%s has %d links after link (expect 2)",
        !          3448:                                        str, statb.st_nlink);
        !          3449:                                exit(1);
        !          3450:                        }
        !          3451:                        if (unlink(new) < 0) {
        !          3452:                                error("can't unlink %s", new);
        !          3453:                                exit(1);
        !          3454:                        }
        !          3455:                        if (stat(str, &statb) < 0) {
        !          3456:                                error("can't stat %s after unlink %s",
        !          3457:                                        str, new);
        !          3458:                                exit(1);
        !          3459:                        }
        !          3460:                        if (statb.st_nlink != 1) {
        !          3461:                                error("%s has %d links after unlink (expect 1)",
        !          3462:                                        str, statb.st_nlink);
        !          3463:                                exit(1);
        !          3464:                        }
        !          3465:                }
        !          3466:        }
        !          3467: 
        !          3468:        if (Tflag) {
        !          3469:                endtime(&time);
        !          3470:        }
        !          3471:        fprintf(stdout, "\t%d links on %d files",
        !          3472:                files * count, files);
        !          3473:        if (Tflag) {
        !          3474:                printtimes(&time, 0L);
        !          3475:        }
        !          3476:        fprintf(stdout, "\n");
        !          3477: 
        !          3478:        /* Cleanup files left around */
        !          3479:        rmdirtree(1, files, 0, fname, DNAME, &totfiles, &totdirs, 1);
        !          3480: 
        !          3481:        #endif
        !          3482:        complete();
        !          3483: }
        !          3484: me.tv_usec / 10000, size*count/time.tv_sec);
        !          3485:        }
        !          3486:        fprintf(stdout, "\n");
        !          3487:        if (Tflag) {
        !          3488:                starttime();
        !          3489:        }
        !          3490: 
        !          3491:        for (ct = 0; ct < count; ct++)./basic/test9.c   664  20115     11        5135  4552130401   6572 /*        @(#)test9.c     1.3 89/01/10 NFS Rev 2 Testsuite        */
        !          3492: /*
        !          3493:  * Test statfs
        !          3494:  *
        !          3495:  * Uses the following important system calls against the server:
        !          3496:  *
        !          3497:  *     chdir()
        !          3498:  *     mkdir()         (for initial directory creation if not -m)
        !          3499:  *     statfs()
        !          3500:  */
        !          3501: 
        !          3502: #include "tests.h"
        !          3503: 
        !          3504: #ifdef ANSI
        !          3505: void usage(void);
        !          3506: void main(int argc, char *argv[]);
        !          3507: #endif
        !          3508: 
        !          3509: int Tflag = 0;         /* print timing */
        !          3510: int Hflag = 0;         /* print help message */
        !          3511: int Fflag = 0;         /* test function only;  set count to 1, negate -t */
        !          3512: int Nflag = 0;         /* Suppress directory operations */
        !          3513: 
        !          3514: void
        !          3515: usage()
        !          3516: {
        !          3517:        fprintf(stdout, "usage: %s [-htfn] [count]\n", Myname);
        !          3518:        fprintf(stdout, "  Flags:  h    Help - print this usage info\n");
        !          3519:        fprintf(stdout, "          t    Print execution time statistics\n");
        !          3520:        fprintf(stdout, "          f    Test function only (negate -t)\n");
        !          3521:        fprintf(stdout, "          n    Suppress test directory create operations\n");
        !          3522: }
        !          3523: 
        !          3524: void
        !          3525: main(argc, argv)
        !          3526:        int argc;
        !          3527:        char *argv[];
        !          3528: {
        !          3529:        int count = 1500;       /* times to do statfs call */
        !          3530:        int ct;
        !          3531:        struct timeval time;
        !          3532:        struct statfs sfsb;
        !          3533:        char *opts;
        !          3534: 
        !          3535:        umask(0);
        !          3536:        setbuf(stdout, NULL);
        !          3537:        Myname = *argv++;
        !          3538:        argc--;
        !          3539:        while (argc && **argv == '-') {
        !          3540:                for (opts = &argv[0][1]; *opts; opts++) {
        !          3541:                        switch (*opts) {
        !          3542:                                case 'h':       /* help */
        !          3543:                                        usage();
        !          3544:                                        exit(1);
        !          3545: 
        !          3546:                                case 't':       /* time */
        !          3547:                                        Tflag++;
        !          3548:                                        break;
        !          3549:                                
        !          3550:                                case 'f':       /* funtionality */
        !          3551:                                        Fflag++;
        !          3552:                                        break;
        !          3553:                                
        !          3554:                                case 'n':       /* No Test Directory create */
        !          3555:                                        Nflag++;
        !          3556:                                        break;
        !          3557: 
        !          3558:                                default:
        !          3559:                                        error("unknown option '%c'", *opts);
        !          3560:                                        usage();
        !          3561:                                        exit(1);
        !          3562:                        }
        !          3563:                }
        !          3564:                argc--;
        !          3565:                argv++;
        !          3566:        }
        !          3567: 
        !          3568:        if (argc) {
        !          3569:                count = (int) getparm(*argv, 1L, "count");
        !          3570:                argv++;
        !          3571:                argc--;
        !          3572:        }
        !          3573:        if (argc) {
        !          3574:                usage();
        !          3575:                exit(1);
        !          3576:        }
        !          3577: 
        !          3578:        if (Fflag) {
        !          3579:                Tflag = 0;
        !          3580:                count = 1;
        !          3581:        }
        !          3582: 
        !          3583:        if (!Nflag)
        !          3584:                testdir(NULL);
        !          3585:        else
        !          3586:                mtestdir(NULL);
        !          3587: 
        !          3588:        fprintf(stdout, "%s: statfs\n", Myname);
        !          3589: 
        !          3590:        if (Tflag) {
        !          3591:                starttime();
        !          3592:        }
        !          3593: 
        !          3594:        for (ct = 0; ct < count; ct++) {
        !          3595:                if (statfs(".", &sfsb) < 0) {
        !          3596:                        error("can't do statfs on \".\"");
        !          3597:                        exit(1);
        !          3598:                }
        !          3599:        }
        !          3600: 
        !          3601:        if (Tflag) {
        !          3602:                endtime(&time);
        !          3603:        }
        !          3604: #ifdef DEBUG
        !          3605:        fprintf(stdout, "\ttype=%d, bsize=%d, blocks=%d, bfree=%d\n\
        !          3606: \t  bavail=%d, files=%d, ffree=%d, fsid=%d %d\n",
        !          3607:                sfsb.f_type, sfsb.f_bsize, sfsb.f_blocks, sfsb.f_bfree,
        !          3608:                sfsb.f_bavail, sfsb.f_files, sfsb.f_ffree,
        !          3609: #ifdef NFS3_2
        !          3610:                sfsb.f_fsid.val[0], sfsb.f_fsid.val[1]);
        !          3611: #else  /* NFS3_2 */
        !          3612:                sfsb.f_fsid[0], sfsb.f_fsid[1]);
        !          3613: #endif /* NFS3_2 */
        !          3614: #endif /* DEBUG */
        !          3615:        fprintf(stdout, "\t%d statfs calls", count);
        !          3616:        if (Tflag) {
        !          3617:                printtimes(&time, 0L);
        !          3618:        }
        !          3619:        fprintf(stdout, "\n");
        !          3620:        complete();
        !          3621: }
        !          3622:  0; fi < files; fi++) {
        !          3623:                        sprintf(str, "%s%d", fname, fi);
        !          3624:                        sprintf(new, "%s%d", nname, fi);
        !          3625:                        if (link(str, new) < 0) {
        !          3626:                                error("can't link %s to %s", str, new);
        !          3627:                                exit(1);
        !          3628:                        }
        !          3629:                        if (stat(new, &statb) < 0) {
        !          3630:                                error("can't stat %s after link", new);
        !          3631:                                exit(1);
        !          3632:                        }
        !          3633:                        if (statb.st_nlink != 2) {
        !          3634:                                error("%s has %d links after link (expect 2)",
        !          3635:                                        new, statb.st_nlink);
        !          3636:                                exit(1);
        !          3637:                ./basic/test1.exe   777  20115     11      101776  4552131514   7204 MZ�$ x���@=��&�����d �h     �U���WV�6��BP��P����uP��P�����P��P�t����P��P�f���&&P��P�X��^_��]�U���0WV�F��F��F��F��F��F�F&�F�L&�P��P����^�F����N�~u��^��?-t��^�@�F���F��^��?u��^����J���&P�����@&�a�<&�Z�B&�S�D&�L�^���P�Q&P�>������&P�����+=fu���=hu��=nu���=su��=tu�����q��N�F�E��~u�!�e&P�&�RP�^�7����F��F�N�~u��l&P+�PP�^�7�����F��F�N�~u�C�r&P+�PP�^�7����F��~�t��~�&u��w&P�k���&P�����F�N�~u��^��F��N�F�~u��^��F��N�F�~u���&P������&P����>B&u��<&�F��F��F��>@&t��6���&P��P�%���>D&t�
�P����
        !          3638: �P�~���><&u�
�>@&t��l�F�P�F�P�v��v��v��v��v�����><&u��>@&t�
        !          3639: �F�P�S���>@&t��v��v��v��&P��P���
        !          3640: �><&u��>@&t�+�PP�F�P����>@&t��P��P�W���^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          3641: �P���P������&P���P�7������=|����P�P����&P�
���^������k��=|������#P�S���&P�����t�dž��������F9���|������v�3P���P�[�����P�n��=|����P�8P��&���&P����^����P�+��=|����P�HP��&���&P�N���v�v�v�v
        !          3642: �v�v�v�����XP����=|��[P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          3643: �kP���P�i�����P���=|�"�~t����P�pP�����&P����^���dž��������F9���|�������v��P���P�������P����=|�%�~u������P��P����&P����v�v�v�v�v
        !          3644: �v�v�v�������P���=|���P�G���&P��
        !          3645: �����P���=|����P��P����&P�
        !          3646: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6���P��P�&�������P�6���P��P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          3647: �v�v�v��P��
        !          3648: ��(�>�u�
��P������P��P�
        !          3649: ����P��
        !          3650: ���~�t�
        !          3651: �&P��        ��^_��]�U���_
        !          3652: WV�P��
        !          3653: P���^_��]�U���@
        !          3654: WV�P��
        !          3655: P������
        !          3656: ��
        !          3657: 9�
        !          3658: ~�#}�       9�
        !          3659: r��.�
        !          3660: &��
        !          3661: ��
        !          3662: @B��
        !          3663: �^��
        !          3664: ��
        !          3665: +�
        !          3666: �
        !          3667: �G�W�^��
        !          3668: ��
        !          3669: +�
        !          3670: �
        !          3671: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7��P��P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�ZRP��P��P�e    ��^_��]�U��&�=       WV�~t��&P��
        !          3672: ���F=t��F����P�v����=t�<�v�P���P�������P�Z��=u��v�!P�����&P����v����=|��v�DP�k����&P�����v�&��=|��v�cP�C����&P����^_��]�U���gWV�~t���P�
        !          3673: ���F=t��F��v�L&��=|��v��P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          3674: ��P�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v��H���F�P����F�9F�u��^��P��P������&P���^_��]�U���WV�6��P��P�#���6��X����P�M��^_��]�U����WV�v�4����v��
        !          3675: ���^_��]�U����WV�&P�v����^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�g
        !          3676: ���^_��]�U���TWV�v�v����^_��]�U���4WV�F�P��
����RP�F�*�+�QP��Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP�|�^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          3677: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v��
�^�G�W
        !          3678: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P�7���P��P�����>u����&�P������>�t���~��P�v���P����=u���_�6���P�&���F�&��F���P���=t�!�F������������P��P�[&������F�H������
        !          3679: �^_��]�U����WV�F��F�F��P�v���P�A��=u��P�����&P�        ���6���P�����F�&��F���P��
        !          3680: ��=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9�� �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F�^_��]Ð�0�!<s� ���6+���r���ׁ�.�s��
        !          3681: 3�P�.
��L�!���6�&,6�&(�Ʊ��H6�&��6��+��۴J�!6�����
        !          3682: �0+�3���;�J�
        !          3683: 3��6��6��6��Y�P�����ظ6�*�P�I
        !          3684: ���P�*�0�!���5�!�����%��!�� �.��&�6,��  ��3�6��        s�
        !          3685: 6��   �ڻ6��       ��&�,�6��3�&�=t,��~�t��3��u������������t&H���������D�!r
        !          3686: �€t���@Ky��        ��      ���   ��      ��U���
        !          3687: ��
        !          3688: �}��  ��      �t�U���      ��      �f��   ��      �l�q   �t�~u�F������&t�>�!C����F�L�!��        ����        ���%�!�>�t
�����%�!�;�s
        !          3689: OO�
�������;�s���Et�����Y��+�r
        !          3690: ;�r����3��k�U���WV�F�F��v�
�����FP�v�v������vV�z
����^_��]ÐU���WV�v+��D$<uF�Du�ށ��������������p&t'�+D�F��~P�t�D�P�#��;F�t�L ����D��D��^_��]�U��^;�r�      ���>�!rƇ��
        !          3691: U��^�t�O�&��]�U��VW���?u)��%u3���$@$�������&���D����6��N�؎��_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]���U���WV�6��tF�~t@�v����������<t*�4�m��;�~��9=u�W�vS�s���u֋�A&��+�^_��]�U���WV�v��t&�<t!V�%�PV��P�����P��P��P����>�|     ��9�|������㋷�V����PVW�Q���&P��PW�B��^_��]ÐU���V�v��-�����������p�F�V����V�X
        !          3692: ���~u�L�d��^����@�D��G&��B�d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�%�����Mx*������W+�P�k����^_��]�U���v�P�v�����]�U�����P�1����F��~u+�P�v������u�&�Z+��V�F��F�F��F��~�t&�6��F�P�v�+�P�c���F�@u�>�t�F���F��6��F�P�P+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          3693: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V�������u �����~9v�~
        !          3694: ��"+���F�PW�h���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1�PW�����t�PW�����t�PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~�#PV�����t
������Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th�&PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��@����F�+��FЉF��F�!�F��
��v�� ����+�+��E�E
        !          3695: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u���V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          3696: �}G�V�����F
        !          3697: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          3698: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          3699: ؋^u�F���]���ȋF�f
        !          3700: ȋF��ы�]�U���P�e�>*t�*��P�S��]ø��V3��B2���2�����Ut
����&P�,�&^Ï,�8�t)��&�,��3����3��u�GG�>������ыѿ&�����< t�<  t�<
to
        !          3701: �tkGN�< t�<    t�<
t\
        !          3702: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          3703: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>��G��׀��+�ģ����6�?CC�6���
        !          3704: �u���6���3���< t�< t�<
u�
        !          3705: �u�y�6�?CCN�< t�<     t�<
tb
        !          3706: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          3707: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&,U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.���3�I��<;Ct�~EE��
        !          3708: �u���N]��]�U��VW�V��    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          3709: �u#�>�r
<"s
< r���<v��.ט��Ê���U���WV�v�D��F���-�����������p�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ��������������p&uF���t���u3�v�����u-�B���u��
        !          3710: �����D��^��G�&��V����Du�ށ��������������p&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���� t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v�B���u�F��
        !          3711: �����u$�F���Du�ށ��������������p&t+��5��-�����������p�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�t�~�uv�^�G�P����td�F-�����������p�F��v�G���^���G�^��+���G�*��^��
        !          3712: t��u�G�P����t        �v���^��]�U��d&��WV�v������
        !          3713: �F��
        !          3714: �F��
        !          3715: ��
        !          3716: ��
        !          3717: �|�<%t�X��
        !          3718: &+���
        !          3719: ��
        !          3720: ��
        !          3721: ��
        !          3722: ��
        !          3723: ��
        !          3724: ��
        !          3725: ��
        !          3726: ��
        !          3727: ��
        !          3728:  �|&0u<F��
        !          3729: 0�3�<+u
��
        !          3730: ��
        !          3731: �"��< u
�>�
        !          3732: u��
        !          3733: ���
        !          3734: �      �<-u���
        !          3735: F��P�����u�V��
        !          3736: P�f�����>�
        !          3737: }��
        !          3738: ��
        !          3739: �أ�
        !          3740: �<.u#��
        !          3741: FV��
        !          3742: P�<�����>�
        !          3743: }
        !          3744: ��
        !          3745: &��
        !          3746: ��=Ft2=Nt5=ht =lu��
        !          3747: �>�
        !          3748: u�<Lu&F�<u�&��
        !          3749: &����
        !          3750: ����
        !          3751: �ӊ�����=Et
        !          3752: =Gt=Xu      ��
        !          3753: ���� ����-c=v�&��.���"��
        !          3754: ���
        !          3755: ���
        !          3756: �i&���
        !          3757: ��
        !          3758: �
        !          3759: P�&���Q&������
        !          3760: ��
        !          3761: �>�
        !          3762: u     ��
        !          3763: &����
        !          3764: ��
        !          3765: ��
        !          3766: �>�
        !          3767: u�+���
        !          3768: �F�9�
        !          3769: t'��
        !          3770: �F��>�
        !          3771: t     ��
        !          3772: ���.�
        !          3773: ��
        !          3774: �}+���
        !          3775: ��
        !          3776: �P�����:P�����~�t"�>�
        !          3777: t�F�-��
        !          3778: �}+���
        !          3779: ����
        !          3780: �.�
        !          3781: �P�������/�+�P��&�*���&����������>�
        !          3782: t��N��G�=t�=%u���+�PV�������<t�|��>�
        !          3783: uY��
        !          3784: �G tO����Mr"�!x"x"x"�"�!�"�"�"�"v!�!�!�"�"h"�"�!�"�"b"�>�
        !          3785: t�>�
        !          3786: u��
        !          3787: �G u��F뙐��
        !          3788: ^_��]ÐU���WV�~
        !          3789: t��
        !          3790: �>�
        !          3791: t�>�
        !          3792: u��
        !          3793: ��W�F��V���
        !          3794: �*�>�
        !          3795: t��
        !          3796: ��F��F�����
        !          3797: ���F��V���
        !          3798: �>�
        !          3799: t
�F�F�t�F�+���
        !          3800: �6�
        !          3801: �>�
        !          3802: u*�~�}$�~
        !          3803: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>�
        !          3804: t!W� ����
        !          3805: +ȉN����0F��I���N��
        !          3806: ���t<a|�, FG�}�u�>�
        !          3807: u��
        !          3808: �
        !          3809: t�~�u�&�+�P���^_��]ÐU���WV�~t�&��
        !          3810: �F��^���
        !          3811: ��>�
        !          3812: u��
        !          3813: ��W�F��V���
        !          3814: ����
        !          3815: ��F��F��^���
        !          3816: �>�
        !          3817: u
�F�F�u�D�        �~�u   �K�F��^��F��V��F�V�+�96�
        !          3818: t��
        !          3819: ���^��F�&�?tF;�~��F�^��F�&�?u�>�
        !          3820: +��>�
        !          3821: uW�&��V�v��v��o&���>�
        !          3822: tW�&��^_��]�U�����
        !          3823: �F��~gt�~Gu�&�*��F��>�
        !          3824: u��
        !          3825: �~�t
�>�
        !          3826: u��
        !          3827: &�6�
        !          3828: �6�
        !          3829: �v�6�
        !          3830: �v�����
        !          3831: �~�t�>�
        !          3832: u�6�
        !          3833: �����>�
        !          3834: t�>�
        !          3835: u�6�
        !          3836: ������
        !          3837: ��
        !          3838: ��
        !          3839: �
        !          3840: t�v��       ���t�&�+�P�&��]�U��V�>�
        !          3841: u/��
        !          3842: �Ox�F�7��*���S�v�A���@u��
        !          3843: ����
        !          3844: ^]ÐU���WV�>�
        !          3845: uI�v�~B��6�
        !          3846: �6�
        !          3847: �      ���@u��
        !          3848: ��N�~��
        !          3849: �Ox۠�
        !          3850: �?��*��܃>�
        !          3851: u�F&�
        !          3852: ^_��]�U���WV�v�>�
        !          3853: uP��6�
        !          3854: �^&��P����@u��
        !          3855: �F��N�t��
        !          3856: �Ox��^&���
        !          3857: �?��*��҃>�
        !          3858: u�F&�
        !          3859: ^_��]�U���
        !          3860: WV�6�
        !          3861: +��F��F��>�
        !          3862: 0u9�
        !          3863: t9�
        !          3864: t9�
        !          3865: u��
        !          3866:  �>�
        !          3867: V����F�+�+~�>�
        !          3868: u�<-u�>�
        !          3869: 0u��P�����N��>�
        !          3870: 0t�~�>�
        !          3871: t�~t�F��_�>�
        !          3872: t�F��j�>�
        !          3873: u&W�����~t        �~�u�5�>�
        !          3874: t     �~�u�=�v�V������>�
        !          3875: t
��
        !          3876:  W�a���^_��]Ã>�
        !          3877: t�+�� P����Ð�0P������>�
        !          3878: u�>�
        !          3879: t�X���xP�����ÐU���WV�v�F�&�<*u��
        !          3880: �?��
        !          3881: F�H��<-u�F���F+��<0|5�<909>�
        !          3882: u�<0u��
        !          3883: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V�R�N��F�<t
        !          3884: :u��&��+�^��]ÐU���2��~��F���F���u�@u�%�u�F���V$
        !          3885: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          3886: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          3887: �>�!����
        !          3888: N���&����Ë�]�2��ܡ���#�3ɨ�u��&�U����^;�r�  ������ t�B3ɋ��!r�����tn�V3��F��F��WV����f��N�T�
        !          3889: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          3890: t;�t����#�a�
;�u���
        !          3891: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ����@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u����@t
        !          3892: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�\��&�b=��t%���&t��H;�s����&t�����D���G�t���&�bt�،�;�t&�X�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�\��G3���Q�E��&t+�IAA��&;^v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          3893: �!W�~��]�M�U�u�E
        !          3894: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿        �ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          3895: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF����H        �J     &F�V�DP�F��FH�F��F
        !          3896: �F�>L t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          3897: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          3898: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌���WV�v�~u�v
        !          3899: �vV� ���&+�P��t�P�F�P�F�P�v
        !          3900: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z����PVW�y��P�2�����v���t�PW�v�����F��>�u+��P�.PW�q���P�:���v���t�PW�v����F�W����v��}���F�^_��]ÐU�����WV��(����v
        !          3901: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          3902: �t�&:t��P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW����vW����v
        !          3903: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
������,r59&s%P�ر��ً�+���ËشJ�!Xr$�H�&��.,&,Ë���U���WV��+����D�tV�r߃�@t&G��96�s��^_��]�U���V�F-�����������p�F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;�r�  �*�F�tH�~
        !          3904: t3ɋѸ&B�!rK�F
        !          3905: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          3906: �B�!r������Y��;�s+�����3���U��VW�~u8�,�V�FHu�Sr'�H�6|Ht;�t
�D�FV�:^s0����|s�u������ڃ��۱��H�!r钉�T�6|3�_^��]ËN��9Lt����|u���?��r9�ӎ�;�u9&s&����������;�u ١�+؎��J�!r
;�u�&�����U��WV�~�v�ߋN��
        !          3907: �t���2���^_��]�U��VW��U��^;�}��|���@t�&�3���]��>�
        !          3908: u���
        !          3909: ÐU���WV�<   P�ރ����u��<u��PV�6N        �k�����RP��V�Qރ�RP�7�H   �J     +���ހ?t��ފ������u      ��ހ?-uG��|؋�ހ?t�P���P�6P    �       �����P       ��P  �?&�@�L        ^_��]�U���WV�v�|}��|   ~��|~      �|     }��|
        !          3910: ��l���~�|u�\�㋇"       �
        !          3911: ��\�㋇$      �F���u�F��|
        !          3912: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu���F�~t)�F�F����^��F��7�^���@��^��?t���vࡤ�F��t�^����u�N�u�~�t�F���~t�v�����F�v���v����
        !          3913: ����&��6^�^�F��F�P�ۃ��F��u!�v��qۃ����u�����6^뷋~��6^�^�~��?��$��F��^
        !          3914: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P��     PW�xۃ�P�������F��G+��N����t�������GF��N��G�G�~t�&G�G�vW�,ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v�����
        !          3915: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�������k�VW�؋^
        !          3916: ���ã�       �F��   ��     �6�   F��     �&)�!�&)��      �!U�>�}!.��8.�&�8�.�5.�6�8�u.�6�8.��8�� �~t�3��2��P��!X��&�V�K�!P�P�0�!<X[}!.��8.�&�8�..��8.�6�8�u.�6�8�5����]_^r�M�!����      ���������N
        !          3917: �F�V�~W��
        !          3918: �t��
        !          3919: u�y
        !          3920: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [levels files dirs fname dname]
        !          3921:   Flags:  h    Help - print this usage info
        !          3922:           t    Print execution time statistics
        !          3923:           f    Test function only (negate -t)
        !          3924:           n    Suppress test directory create operations
        !          3925: file.dir.unknown option '%c'levelsfilesdirsIllegal dirs parameter, must be at least 1too many parameters%s: File and directory creation test
        !          3926:       created %d files %d directories %d levels deep
        !          3927: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          3928:       %s: (%s)  
        !          3929:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          3930: \*.*rewind failed��,;C_FILE_INFO���&&��C0��&&�&h         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          3931: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown errordlm����������������-./0HIJKLZkl�%.com.exePATH\�������;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&@      D       SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFOj       �z     �l2<<NMSG>>R6000
        !          3932: - stack overflow
        !          3933: R6003
        !          3934: - integer divide by 0
        !          3935:       R6009
        !          3936: - not enough space for environment
        !          3937: �
        !          3938: �run-time error R6002
        !          3939: - floating point not loaded
        !          3940: &R6001
        !          3941: - null pointer assignment
        !          3942: ���NB00�6`       TEST1.OBJpSUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm4o&&dos\crt0dat.asm�&
        !          3943: chkstk.asm�>& fprintf.c�&_file.c�n&fflush.cf &
dos\close.asm�X&nmalloc.asm�?&
        !          3944: strcat.asm2&
        !          3945: strcpy.asmP&atol.asmT&    ctype.asmT^&getenv.c�~&perror.c0x&setbuf.c�V&    sprintf.c�&   creat.asm�&system.c�$&
dos\chmod.asm�<&dos\dir.asm�&dos\getcwd.c�<&
        !          3946: dos\stat.c�
&dos\unlink.asm
        !          3947: (&dos\d_find.asm2+&dos\diskfree.asm^&dos\getdrive.asmr&dos\gettime.asm�&dos\setdrive.asm��&ldiv.asm>4&lmul.asmr &dos\crt0msg.asm�&
        !          3948: crt0fp.asm�"&
        !          3949: chksum.asm��&&dos\stdargv.asmHn&dos\stdenvp.asm�T&dos\nmsghdr.asm
        !          3950: T&dos\dosret.asm^&_cflush.asm^V&&   _flsbuf.c�.&
        !          3951: _freebuf.c�&& _sftbuf.c��&output.c�(�&&dos\open.asmh*(&&     write.asm�+a&&amalloc.asm�,&
        !          3952: strlen.asm-:&strncmp.asmH-T&atox.asm�-&dos\bdos.asm�-G&dos\intdos.asm�-&&
        !          3953: dtoxtime.c/B&stricmp.asmN/+&strrchr.asmz/X&strpbrk.asm�/&syserr.c�/D&&
dos\spawnve.c1�&
        !          3954: spawnvpe.c
        !          3955: 2&dos\access.asm*2B&dos\stdalloc.asml22&
        !          3956: flushall.c�2l& _getbuf.c
        !          3957: 3z&
dos\lseek.asm�3&stackava.asm�3�&dos\brkctl.asmZ4(&strncpy.asm�4
        !          3958: &        ultoa.asm�4&cmiscdat.asm�4#&
        !          3959: isatty.asm�4&days.c�4�&&tzset.c:6&  timeset.c:6*&
        !          3960: strchr.asmd6'&
dos\cenvarg.c�8�&dos\dospawn.asmx9&dos\execload.asm�9_&xtoa.asm<&��_Tflag>&��_Hflag@&��_SflagB&��_FflagD&��_Nflag�_usagek�_main��_pattern��h_findtst���       _maxentry���
_currententry���_dirlist�
        !          3961: ��_dirst���_Myname�_statfs�_opendir�'_readdir�

        !          3962: _rewinddird�_errord.  _closedir<�
        !          3963: _starttime[�_endtimeo$_seekdirQ"_telldir��_printtimes^�_testdir4      �    _mtestdir�      �_getparm}
        !          3964: �   _complete��_diropenp�_dirtreeg�
_gettimeofday�
        !          3965: �_unix_chdir�
        !          3966: �_getwd��
        !          3967: _rmdirtree�
        !          3968: �_unix_chmodG�_lstat� �_chdrive$�__fmode$�__iomode�
        !          3969: �_edata0�_end*�__aexit_rtn|�__abrkp,�__abrktb&�__asizds�__astart(�__atopsp|�       __abrktbe __cintDIVv�&
        !          3970: __acrtused%__amsg_exit��__osversion��_errno__exit��__child��__nfile4__cinit��___argc��__intno��
__dosvermajor��__oserr��___argv��
__dosverminor��_environ��__osfile��__osmode��__pspadr�        �__fpinit��__ovlvec��__pgmptr~�       __acfinfo�� __ovlflag�� __aintdiv�� __osmajor�� __osminor��
        !          3971: __umaskvalT
        !          3972: __ctermsub��
        !          3973: __doserrno��__fac�_exit��__psp��STKHQQ�__chkstk�_fprintf��__bufin�
        !          3974: �__bufout��__buferrp�__iob2��        __lastiob��__iob�_fflushf_close�_malloc�__nfree��__asegds�       __nmalloc�_free�_strcat_strcpyP_atol��__ctype��__ctype_T_getenv�_perror0_setbuf�_sprintf�_creat_system�_chmod�_chdir�_mkdir�_rmdir_getcwd  __getdcwdt_stat�_remove�_unlink
        !          3975: __dos_findnext__dos_findfirst2__dos_getdiskfree^__dos_getdriver
__dos_gettime�__dos_setdrive�__aNldiv>__aNlmul>   __aNulmulr__FF_MSGBANNER*�    __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargvH __setenvp�__NMSG_TEXT�__NMSG_WRITE
        !          3976:   __dosret0*
        !          3977: __maperror
        !          3978: __dosretax__dosreturnB�__cflush^__flsbuf�       __freebuff__ftbuf�__stbuf�__output�(
        !          3979: __copensub�(_openW*__cXENIXtoDOSmodeh*_write�,__amallocbrkX�__aseg1`�__aseghZ�__asegn\�__asegr�,__amlink`�    __QChdata�+ __amallocv,
        !          3980: __amexpand^�
        !          3981: __amblksiz�,_strlen-_strncmpH-__catox�-_bdos�-_intdos�-
        !          3982: __dtoxtime/_stricmp/_strcmpiN/_strrchrz/_strpbrk��   _sys_nerr��_sys_errlist�/_spawnve1       _spawnvpe
        !          3983: 2_access*2    __myallocl2 _flushall�2__getbuf
        !          3984: 3_lseek�3_stackavail�3_brkctlZ4_strncpy�4_ultoa��
__cfltcvt_tab  �__asizeC  �__asizeD  �__sigintoff       �__sigintseg�4_isatty" �__days    �__lpdaysp5     __isindst�4___tzset�4_tzseth  �    ___mnamesL      �    _daylightH      �    _timezoneN      �_tznameR   �    ___dnames:6_strchrd6   __cenvarg�8 __dospawnx9
        !          3985: __execload�9__cxtoa�9
        !          3986: __cltoasub&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x��&��&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x0��&x(��&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x8��&x�X&��&x�0&��&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&y����   �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          3987: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          3988: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          3989: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          3990: u���c&��&&�&
        !          3991: ������&
        !          3992: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          3993: u���c&��&��&
        !          3994: u���c&��&&�&&�&&�&����&
        !          3995: u���c��&���
        !          3996: &
        !          3997: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          3998: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          3999: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          4000: u���c&�!&����&u��c�#&&�&��&
        !          4001: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�fYmainv�
        !          4002: �argc
        !          4003: +argv���files���totfiles
        !          4004: ���dirs
���totdirs���levels���fname���dname
        !          4005: ���time
        !          4006: ���opts&&���Myname��_iob&p��&�&dirtree{v&        �lev�files
        !          4007: �dirs
        !          4008: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          4009: ��name&&&��m&�&�  rmdirtree\& �lev�files
        !          4010: �dirs
        !          4011: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          4012: ��name&&&d����erroro�      �str       �ar1       
        !          4013: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          4014: ���path&&&<���  starttime&&[���fendtimefp�tv&&&���w�
        !          4015: printtimes�q�tv�nbytes&&&^����testdiri�        �dir��statb   ��str&&&4        �^�mtestdir? M      �dir&&&�        �g-�getparm�  V
        !          4016: �parm     �min
        !          4017: �label      ���val&&&�        ���chdrive
        !          4018: s
        !          4019: �path���desireddrive���drive&&&}
        !          4020: �7>complete&&�
        !          4021: �&Od
        !          4022: unix_chdir�
        !          4023: 
        !          4024: �path&&&�
        !          4025: �!u�getwd�
        !          4026: 
        !          4027: �path&&&�
        !          4028: �L��
        !          4029: unix_chmod;
        !          4030: �path
        !          4031: �mode
���dosmode&&&G� ��lstatR
        !          4032: �path     
        !          4033: buf&&&g�pagettimeofdayr_�TV�TimeZone
��ndostime&&&��rW       statfs��
        !          4034: �path     �buf���&p���&i���drive��q     diskspace&&&��h  9
        !          4035: opendir��
�dirname���&i���
        !          4036: attributes&&&�
�J
        !          4037: �
        !          4038:     rewinddir�
�
        !          4039: �dirp���&i���
        !          4040: attributes&&&Q"�
        !          4041: �
        !          4042: telldir\

        !          4043: �dirp&&&o$6
        !          4044: /seekdirz%
        !          4045: �dirp     �loc&&&�'F@ureaddir�5
        !          4046: �dirp&&&�)!��findt_to_dirent�~&f�&d&&&,X��copynametolowerG
        !          4047: �dest     �src���&i&&&d.�closediro
        !          4048: �dirp&&
        !          4049: �
        !          4050: ��ts���_ctype
        !          4051: �
        !          4052: ��te��pattern��hfindtst���maxentry���currententry���dirlist
�
        !          4053: ��dirst���Myname
���errno��_iobtest1.cY -!;"I#W$e(k+v,{-�.�/�0�1�5�6�7�8�9�:�<�=�@�A&D&E&H
        !          4054: &I&L&M&P&Q)&R,&S6&Td&Ug&Vj&Wn&Yq&Zz&[�&\�&^�&_�&`�&a�&c�&d�&e�&f�&g�&ij
        !          4055: l
mno!q%r.s6t9v=wFxPyS|]}g~mr�w�|�����������������&���,�@�N�X�f�isubr.c�p+{,�.�/�0�1�2�4�5�679:!;:=PAcBrD|E�F�G�I�J�K�L�N�O�_�klno,pBq^rmtwu|vw�x�y�z�{�|�~��� �*�=�L�V�[�^�d�o�������������#�,�6�<�G�U�[�f�t����������������7�X�^�i�r�������������������  �     �$     �.     �4     &?     &H     &]             &b      
        !          4056: &s     &�     
&�     &�     &�     &�     &�     &�     &�     &�      &�     .&�     1&
        !          4057: 3&
        !          4058: 4&:
        !          4059: 5&G
        !          4060: 6&Q
        !          4061: 8&\
        !          4062: 9&m
        !          4063: <&w
        !          4064: C&}
        !          4065: D&�
        !          4066: F&�
        !          4067: H&�
        !          4068: I&�
        !          4069: N&�
        !          4070: Q&�
        !          4071: S&�
        !          4072: T&�
        !          4073: X&�
        !          4074: Z&�
        !          4075: [&�
        !          4076: _&�
        !          4077: b&c&2d&Ah&Gk&Rl&ap&gr&ru&|v&�w&�x&�|&�&��&��&��&�&�&�&L�&V�&k�&q�&�&��&��&��&��&��&��&��&��&��&
�&
�&
�&
�&%
�&+
�&D
�&J
�&X
�&u
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�&�&;�&>�&E�&K�&Q�&\�&b�&i�&o�&z�&��&��&��&��&��&��&��&��&��&��&��&�&�&&[^do   u
        !          4078: {
        !          4079: SLIBCE.LIB�&&&&&Z&&��&&�)�&&�1n&&&&��&&�&k*o&H3�&&3'&�        &&Z&�     �&&s&�
        !          4080: �&&&�&W&&�&s&&�&�U&&     �&       �&&
        !          4081: �&
        !          4082: �
&&�&�G&&&&9
&&
.&&
G
&&E&&U
&&Z&&a
&&p&&~
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�
&&�&&�

&&
        !          4083: &�
'&&"&&&;&$&&R&0&&m&L+&&�&w&&�&�&&�&�&&�&�&& �& �&&!&!�&&"%&"�5&&#A&#0&&$X&$?&&%o&%Q&&&�&&a&&'�&'q%&&(�&(�D&&)�&)�&&*�&*�&&+&+�&&,#&,&&-9&-$&&.N&.35&&/g&/h
&&0}&0u�&&1�&1&&2�&2&&3�&3.&&4�&4<&&5�&5H&&6
&6V&&7$&7g&&8<&8�&&9T&9�&&:l&:�#&&;�&;�&&<�&<�&&=�&=�&&>�&>�&&?�&?&&@&&@&&A&A"
&&B1&B/&&CJ&CA&&De&DO&&E}&E^
&&F�&FkV&&G�&G�&&H�&H�&&I�&I�,&&J�&JN&&K&Ke&&L&Ls&&M1&M�&&NM&N�&&Oj&O�&�6NB00Y=&&./basic/test2.exe   777  20115     11      102351  4552131566   7202 MZG&$ x���@�S�&P��O���     ��     �U����WV�6R�BP�:P�����uP�:P�����P�:P�����P�:P����&&P�:P���^_��]�U��&�hWV�F�dž���F�dž��dž���F�D&�F�J&�P�:P�����^�F��R�N�~u��^��?-t��^�@�F���F��^��?u�r�^����C���&P�4���<&�R�@&�K�B&�D�^���P�O&P�z������&P�&���#=fu���=hu��=nu���=tu�������N�F�T��~u�"�c&P�&�RP�^�7�H�������F�N�~u��j&P+�PP�^�7�!���F��F�N�~u�D�p&P+�PP�^�7�����F��~�t�����&u��u&P����&P�7���F�N�~u��^��F��N�F�~u��^��F��N�F�~u���&P�Y������&P�����>@&u��<&dž���F��F��6R��&P�:P�p���P����=u��v��v��v��v������>B&u���&���&P��&P����P�������P�|��=u���&P����&P�B���P�t��=u��P����&P����><&u��P�P����P����P�v��v��v��v�������&���><&u�����P�9���������������=P�:P�~��
        !          4084: �><&u�+�PP����P����mP�:P�W���^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          4085: �pP���P������&P���P�7������=|����P�uP����&P�
���^������k��=|�������P�S���&P�����t�dž��������F9���|������v��P���P�[�����P�n��=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          4086: �v�v�v������P����=|���P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          4087: ��P���P�i�����P���=|�"�~t����P��P�����&P����^���dž��������F9���|�������v��P���P�������P����=|�%�~u������P��P����&P����v�v�v�v�v
        !          4088: �v�v�v�������P���=|���P�G���&P��
        !          4089: �����P���=|����P�P����&P�
        !          4090: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6R�P�BP�&�������P�6R�-P�BP����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          4091: �v�v�v�BP��
        !          4092: ��(�>�u�
�8P�����:P�BP�
        !          4093: ���BP��
        !          4094: ���~�t�
        !          4095: �&P��        ��^_��]�U���_
        !          4096: WV�P� P���^_��]�U���@
        !          4097: WV�P�P�����$�&9~�#}�    9r��.&��@B��^��+$&�G�W�^��+ "��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7�<P�:P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�ZRP�RP�:P�e    ��^_��]�U��&�=       WV�~t��cP��
        !          4098: ���F=t��Fn����P�v����=t�<�v�zP���P�������P�Z��=u��v��P�����&P����v����=|��v��P�k����&P�����v�&��=|��v��P�C����&P����^_��]�U���gWV�~t���P�
        !          4099: ���F=t��F��v�L&��=|��v��P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          4100: �P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������Wu��^��- ��^��-@�F��F�P�v��H���F�P����F�9F�u��^��P�MP������&P���^_��]�U���WV�6R�gP�:P�#���6R�X����P�M��^_��]�U����WV�v�4����v��
        !          4101: ���^_��]�U����WV�&P�v����^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�g
        !          4102: ���^_��]�U���TWV�v�v����^_��]�U���4WV�F�P��
����RP�F�*�+�QP��Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP�|�^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������Wu��^��- ��^��-@�F��
        !          4103: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v��
�^�G�W
        !          4104: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�VP�7���pP�VP�����>vu����v&�P����X�>Xt���~�ZP�v��VP����=u���_�6X�ZP�&���F�&��F��ZP���=t�!�F�����������XP�ZP�[&������F�H�V�T�P�^_��]�U����WV�F��F�F�ZP�v��VP�A��=u��xP�����&P� ���6X�ZP�����F�&��F��ZP��
        !          4105: ��=t�!�F�����������XP�ZP�������F�H�V�T^_��]�U���JWV�F�F�T��^_��]�U���,WV�F�F�V�9V~�}�9Fv��F�T^_��]�U����WV�F�F�V9T� ����T�T����������X�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������W&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F�v^_��]Ð�0�!<s� ���6+���r���ׁĎ�s��
        !          4106: 3�P�.
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6������+�3���;�J�
        !          4107: 3��6 �6�6�!�P�����ظ6��0P�I
        !          4108: ���P���0�!�&�5�!�����%�N�!�0
        !          4109: �.��&�6,�2
        !          4110: ��3�6�.
        !          4111: s�
        !          4112: 6�6
        !          4113: �ڻ6�.
        !          4114: ��&�,�6��3�&�=t,����t��3��u�����������t&H��������D�!r
        !          4115: �€t��@Ky�:
        !          4116: �:
        !          4117: ��:
        !          4118: �:
        !          4119: ��U��P�P�}�:
        !          4120: �<
        !          4121: �t�U��<
        !          4122: �<
        !          4123: �f�<
        !          4124: �<
        !          4125: �l�q  �t�~u�F�����&t�>�!C����F�L�!�0
        !          4126: ���.
        !          4127: ���%�!�>*t
�+�,�%�!�;�s
        !          4128: OO�
�������;�s���Et�����Y��+�r
        !          4129: ;0r����3��k�U���WV�F�F��v�
�����FP�v�v������vV�z
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�2�������������&t'�+D�F��~P�t�D�P�#��;F�t�L ����D��D��^_��]�U��^;r�      ���>�!rƇ�
        !          4130: U��^�t�O�&��]�U��VW�L�?u)��%u3���$@$��L�N��&���D����6R�N�؎��_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]���U���WV�6 �tF�~t@�v����������<t*�4�m��;�~��9=u�W�vS�s���u֋�A&��+�^_��]�U���WV�v��t&�<t!V�%�PV��P�����P�XP��P����>�|     �F      9�|�F       ����㋷�V����PVW�Q���&P�[PW�B��^_��]ÐU���V�v��-2������������F�V����V�X
        !          4131: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�%�����Mx*������W+�P�k����^_��]�U���v�P�v�����]�U����^P�1����F��~u+�P�v������u�&�Z+��V�F�f�F�F��F��~�t&�6 �F�P�v�+�P�c���F�@u�>�t�F���F�i�6 �F�P�iP+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          4132: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V�������u �����~9v�~
        !          4133: ��"+���F�PW�h���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1�vPW�����t�{PW�����t��PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
������Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u������W&t� ����-`�+�PP�P���*�@�F�~�th��PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��@����F�+��FЉF��F�!�F��
��v�� ����+�+��E�E
        !          4134: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u���V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          4135: �}G�V�����F
        !          4136: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          4137: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          4138: ؋^u�F���]���ȋF�f
        !          4139: ȋF��ы�]�U���P�e�>�t����P�S��]ø��V3��B2���2�����Ut
����&P�,�&^Ï��8&t)��&�,�$3����3��u�GG�>"�����ыѿ&�����< t�<  t�<
to
        !          4140: �tkGN�< t�<    t�<
t\
        !          4141: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          4142: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>�G��׀��+�ģ���6�?CC�6"��
        !          4143: �u���6���3���< t�< t�<
u�
        !          4144: �u�y�6�?CCN�< t�<     t�<
tb
        !          4145: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          4146: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���. ��3�I��<;Ct�~EE��
        !          4147: �u���N]��]�U��VW�V�F
        !          4148: �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â
        !          4149: �u#�>&r
<"s
< r���<v���ט��Ê���U���WV�v�D��F���-2������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�2�������������&uF��:t��Bu3�v�����u-����:u�R���Z�D��^��G�&��V����Du�ށ�2�������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^��� t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v����:u�F�R����Bu$�F�Z�Du�ށ�2�������������&t+��5��-2������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~:t�~Buv�^�G�P����td�F-2������������F��v�G���^���G�^��+���G�*��^�Rt�Zu�G�P����t      �v���^��]�U��d&��WV�v�����F�F�6�F�*�@�>�|�<%t�X�B&+��2�.�<�0�:�8�,�(�4�L �|&0u<F�L0�3�<+u
�2�8�"��< u
�>2u�8��(� �<-u��4F��P�����u�V�HP�f�����>H}�4�H�أH�<.u#�:FV�BP�<�����>B}
        !          4150: �B&�:��=Ft2=Nt5=ht =lu�0�>0u�<Lu&F�<u�&�0&���0���0�ӊ�����=Et
        !          4151: =Gt=Xu      �.���� ����-c=v�&��.���"�6��>��6�i&��<�(�
        !          4152: P�&���Q&�����,�.�>:u       �D&���D�:�B�>0u�+��0�F�9Ht'�H�F��>4t   �H���.H�H�}+��H�6�P�����:P�����~�t"�>4t�F�-�H�}+��H���H�.6�P�������/�+�P��&�*���&����������>0t��N��G�=t�=%u���+�PV�������<t�|��>>uY�*�G tO����M�"�!�"�"�"�"�!�"�"�"�"�!�!�!�"�"�"�"�!�"�"�"�>@t�>>u�*�G u��F뙐�>^_��]ÐU���WV�~
        !          4153: t�<�>0t�>0u�6��W�F��V��6�*�><t�6��F��F����6���F��V��6�>(t
�F�F�t�F�+��J�6F�><u*�~�}$�~
        !          4154: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>:t!W�   ���B+ȉN����0F��I���N�.���t<a|�, FG�}�u�><u�28t�~�u�&�+�P���^_��]ÐU���WV�~t�&�6�F��^��6��>0u�6��W�F��V��6���6��F��F��^��6�>0u
�F�F�u���      �~�u   ���F��^��F��V��F�V�+�96:t�B���^��F�&�?tF;�~��F�^��F�&�?u�>H+��>4uW�&��V�v��v��o&���>4tW�&��^_��]�U����6�F��~gt�~Gu�&�*��F��>:u�B�~�t
�>Bu�B&�6.�6B�v�6F�v��Z        ��
        !          4155: �~�t�>(u�6F�\   ���>(t�>Bu�6F�`        ���6�J�28t�v��b   ���t�&�+�P�&��]�U��V�>@u/�*�Ox�F�7��*���S�v�A���@u�@���>^]ÐU���WV�>@uI�v�~B��6*�6L�   ���@u�@��N�~�*�Ox۠L�?��*��܃>@u�F&>^_��]�U���WV�v�>@uP��6*�^&��P����@u�@�F��N�t�*�Ox��^&��*�?��*��҃>@u�F&>^_��]�U���
        !          4156: WV�6F+��F��F��>L0u9:t9,t9Du�L �>HV����F�+�+~�>4u�<-u�>L0u��P�����N��>L0t�~�>4t�~t�F��_�>Jt�F��j�>4u&W�����~t  �~�u�5�>Jt �~�u�=�v�V������>4t
�L W�a���^_��]Ã>2t�+�� P����Ð�0P������>Ju�>.t�X���xP�����ÐU���WV�v�F�&�<*u�6�?�6F�H��<-u�F���F+��<0|5�<909>:u�<0u�L0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          4157: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          4158: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          4159: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;r
        !          4160: �>�!����
        !          4161: N���&���Ë�]�2��ܡ���#�3ɨ�u��&�U����^;r�  ����� t�B3ɋ��!r����tn�V3��F��F��WV����f��N�T�
        !          4162: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          4163: t;�t����#�a�
;�u���
        !          4164: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���@t
        !          4165: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          4166: �!W�~��]�M�U�u�E
        !          4167: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿�       �ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          4168: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�����        ��     &F�V�DP�F��FH�F��F
        !          4169: �F�>� t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          4170: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          4171: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌���WV�v�~u�v
        !          4172: �vV� ���&+�P��t�P�F�P�F�P�v
        !          4173: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z���H     PVW�y��P�2�����v���t�PW�v�����F��>�u+�M    P�.PW�q���P�:���v���t�PW�v����F�W����v��}���F�^_��]ÐU�����WV��(����v
        !          4174: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          4175: �t�&:t�R    P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�W     PW����vW����v
        !          4176: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������r59�s%P�ر��ً�+���ËشJ�!Xr$�H����.�&�Ë���U���WV�2+����D�tV�r߃�@t&G��96Js��^_��]�U���V�F-2������������F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;r�  �*�F�tH�~
        !          4177: t3ɋѸ&B�!rK�F
        !          4178: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          4179: �B�!r�����Y�0;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١�+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          4180: �t���2���^_��]�U��VW��U��^;}��|��@t�&�3���]��>Nu��NÐU���WV��     P�ރ����u��<u��PV�6�        �k�����RP��V�Qރ�RP�7壪   ��     +���ހ?t��ފ�����Wu      ��ހ?-uG��|؋�ހ?t�P���P�6�    �       ������       ���  �?&�@��        ^_��]�U���WV�v�|}��|   ~��|~      �|     }��|
        !          4181: ��l���~�|u�\�㋇�       �
        !          4182: ��\�㋇�      �F���u�F��|
        !          4183: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu� �F�~t)�F�F����^��F��7�^���@��^��?t���v��F��t�^���u�N�u�~�t�F���~t�v�����F�v���v���
        !          4184: ����&��6����F��F�P�ۃ��F��u!�v��qۃ����u����6�뷋~��6��^�~��?��$��F��^
        !          4185: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P��     PW�xۃ�P�������F��G+��N���t������GF��N��G�G�~t�&G�G�vW�,ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v����
        !          4186: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�������k�VW�؋^
        !          4187: ���ã�       �F�
        !          4188: �
        !          4189: �6
        !          4190: F�
        !          4191: �&)�!�&)�
        !          4192: �!U�>&}!.��8.�&�8�.�5.�6�8�u.�6�8.��8��        �~t�3��2��P��!X�(&�V�K�!P�P�0�!<X[}!.��8.�&�8�..��8.�6�8�u.�6�8�5���(]_^r�M�!���<
        !          4193: ���������N
        !          4194: �F�V�~W��
        !          4195: �t��
        !          4196: u�y
        !          4197: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [levels files dirs fname dname]
        !          4198:   Flags:  h    Help - print this usage info
        !          4199:           t    Print execution time statistics
        !          4200:           f    Test function only (negate -t)
        !          4201:           n    Suppress test directory create operations
        !          4202: file.dir.unknown option '%c'levelsfilesdirsIllegal dirs parameter, must be at least 1too many parameters%s: File and directory removal test
        !          4203: -ntest1 -s %s %d %d %d %s %scan't make directroy tree to removestill can't go to test directory  removed %d files %d directories %d levels deep
        !          4204: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          4205:       %s: (%s)  
        !          4206:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          4207: \*.*rewind failed�G��;C_FILE_INFO���&&&�C�R
R
&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          4208: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error���������!"#3EFGHTfghiz{�������������%.com.exePATH\�������;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&�      �       SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�       ��     ��2<<NMSG>>R6000
        !          4209: - stack overflow
        !          4210: R6003
        !          4211: - integer divide by 0
        !          4212:       R6009
        !          4213: - not enough space for environment
        !          4214: �
        !          4215: �run-time error R6002
        !          4216: - floating point not loaded
        !          4217: &R6001
        !          4218: - null pointer assignment
        !          4219: ���NB00&7�       TEST2.OBJ�SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asmlo&&dos\crt0dat.asm�&
        !          4220: chkstk.asm�>& fprintf.c0&_file.c0n&fflush.c� &
dos\close.asm�X&nmalloc.asm?&
        !          4221: strcat.asmV2&
        !          4222: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.c�~&perror.chx&setbuf.c�V&    sprintf.c6&   creat.asmN�&system.c�$&
dos\chmod.asm�<&dos\dir.asm:�&dos\getcwd.c�<&
        !          4223: dos\stat.c4
&dos\unlink.asmB(&dos\d_find.asmj+&dos\diskfree.asm�&dos\getdrive.asm�&dos\gettime.asm�&dos\setdrive.asm��&ldiv.asmv4&lmul.asm� &dos\crt0msg.asm�&
        !          4224: crt0fp.asm�"&
        !          4225: chksum.asm��&&dos\stdargv.asm�n&dos\stdenvp.asm�T&dos\nmsghdr.asmBT&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c�.&
        !          4226: _freebuf.c&& _sftbuf.c4 �&output.c�(�&&dos\open.asm�*(&&     write.asm�+a&&amalloc.asm*-&
        !          4227: strlen.asmF-:&strncmp.asm�-T&atox.asm�-&dos\bdos.asm�-G&dos\intdos.asm..&&
        !          4228: dtoxtime.cD/B&stricmp.asm�/+&strrchr.asm�/X&strpbrk.asm
        !          4229: 0&syserr.c
        !          4230: 0D&&
dos\spawnve.cN1�&
        !          4231: spawnvpe.cB2&dos\access.asmb2B&dos\stdalloc.asm�22&
        !          4232: flushall.c�2l& _getbuf.cB3z&
dos\lseek.asm�3&stackava.asm�3�&dos\brkctl.asm�4(&strncpy.asm�4
        !          4233: &        ultoa.asm�4&cmiscdat.asm�4#&
        !          4234: isatty.asm�4&days.c�4�&&tzset.cr6&  timeset.cr6*&
        !          4235: strchr.asm�6'&
dos\cenvarg.c�8�&dos\dospawn.asm�9&dos\execload.asm�9_&xtoa.asm<&��_Tflag>&��_Hflag@&��_FflagB&��_Nflag�_usagek�_mainV�_patternZ�h_findtstV��    _maxentryT��
_currententryX��_dirlistP��_dirstR��_Myname_statfs
_opendir�'_readdir�

        !          4236: _rewinddir��_error�.  _closedirt�
        !          4237: _starttime��_endtime�$_seekdir�"_telldir�_printtimes��_testdirl      �    _mtestdir�      �_getparm�
        !          4238: �   _completev��_diropen��_dirtree��
_gettimeofday�
        !          4239: �_unix_chdir�_getwd/�
        !          4240: _rmdirtree3�_unix_chmod�_lstat1
        !          4241: �_chdrive��__fmode��__iomode�_edata��_end��__aexit_rtn��__abrkp��__abrktb��__asizds�__astart��__atopsp��   __abrktbeN __cintDIVv�&
        !          4242: __acrtused]__amsg_exit&�__osversion��_errnoG__exit(�__child�__nfilel__cinit�___argc+�__intno&�
__dosvermajor�__oserr�___argv�
__dosverminor �_environ�__osfile�__osmode��__pspadr.
        !          4243: �__fpinit,�__ovlvec"�__pgmptr��      __acfinfo*� __ovlflag�� __aintdiv&� __osmajor� __osminor��
        !          4244: __umaskval�
        !          4245: __ctermsub�
        !          4246: __doserrno��__fac0_exit��__psp0�STKHQQ�__chkstk�_fprintfR
�__bufinR�__bufoutZ�__buferr��__iob2J�       __lastiob2�__iob0_fflush�_close�_malloc�__nfreeL�__asegds�       __nmalloc�_free_strcatV_strcpy�_atolV�__ctypeV�__ctype_�_getenv�_perrorh_setbuf�_sprintf6_creatN_system�_chmod_chdir�_mkdir_rmdir:_getcwdN  __getdcwd�_stat4_remove4_unlinkB__dos_findnextL__dos_findfirstj__dos_getdiskfree�__dos_getdrive�
__dos_gettime�__dos_setdrive�__aNldivv__aNlmulv  __aNulmul�__FF_MSGBANNER��    __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargv� __setenvp�__NMSG_TEXT__NMSG_WRITEB    __dosret0b
        !          4247: __maperrorU
        !          4248: __dosretaxJ__dosreturn��__cflush�__flsbuf�       __freebuf�__ftbuf__stbuf4 __output)
        !          4249: __copensub�(_open�*__cXENIXtoDOSmode�*_write
        !          4250: -__amallocbrk��__aseg1��__asegh��__asegn��__asegr�,__amlink��        __QChdata�+ __amalloc�,
        !          4251: __amexpand��
        !          4252: __amblksiz*-_strlenF-_strncmp�-__catox�-_bdos�-_intdos..
        !          4253: __dtoxtimeD/_stricmpD/_strcmpi�/_strrchr�/_strpbrkF        �    _sys_nerr��_sys_errlist
        !          4254: 0_spawnveN1   _spawnvpeB2_accessb2   __myalloc�2 _flushall�2__getbufB3_lseek�3_stackavail�3_brkctl�4_strncpy�4_ultoaZ      �
__cfltcvt_tabh     �__asizeCi  �__asizeDf  �__sigintoffd       �__sigintseg�4_isatty� �__daysj    �__lpdays�5     __isindst�4___tzset�4_tzset�  �    ___mnames�      �    _daylight�      �    _timezone�      �_tzname�   �    ___dnamesr6_strchr�6   __cenvarg�8 __dospawn�9
        !          4255: __execload�9__cxtoa�9
        !          4256: __cltoasub&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x��&��&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x0��&x(��&x���&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x8��&x�X&��&x�(&��&&�&&�&&�&&�&x����&x��&x��&&�&&�&&�&x� &��&x�&��&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&y����       �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          4257: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          4258: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          4259: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          4260: u���c&��&&�&
        !          4261: ������&
        !          4262: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          4263: u���c&��&��&
        !          4264: u���c&��&&�&&�&&�&����&
        !          4265: u���c��&���
        !          4266: &
        !          4267: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          4268: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          4269: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          4270: u���c&�!&����&u��c�#&&�&��&
        !          4271: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�<f�mainv+
        !          4272: �argc
        !          4273: +argv���files���totfiles
        !          4274: ���dirs
���totdirs���levels���fname���dname
        !          4275: ���time
        !          4276: ���opts     ���str&&R��Myname2�_iob&���&�&dirtree�v&  �lev�files
        !          4277: �dirs
        !          4278: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          4279: ��name&&&/�m&�&�  rmdirtree:\& �lev�files
        !          4280: �dirs
        !          4281: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          4282: ��name&&&�����error��      �str       �ar1       
        !          4283: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          4284: ���path&&&t���  starttime&&����fendtime�p�tv&&&��w�
        !          4285: printtimesq�tv�nbytes&&&�����testdir��        �dir��statb   ��str&&&l        �^�mtestdirw M      �dir&&&�        �g-�getparm�  V
        !          4286: �parm     �min
        !          4287: �label      ���val&&&1
        !          4288: ���chdrive<
        !          4289: s
        !          4290: �path���desireddrive���drive&&&�
        !          4291: �7>complete&&�
        !          4292: �&Od
        !          4293: unix_chdir�
        !          4294: 
        !          4295: �path&&&�!u�getwd
        !          4296: �path&&&3�L��
        !          4297: unix_chmod>;
        !          4298: �path
        !          4299: �mode
���dosmode&&&� ��lstat�
        !          4300: �path     
        !          4301: buf&&&��pagettimeofday�_�TV�TimeZone
��ndostime&&&�rW       statfs�
        !          4302: �path     �buf���&p���&i���drive��q     diskspace&&&
�h  9
        !          4303: opendir
�
�dirname���&i���
        !          4304: attributes&&&�
�J
        !          4305: �
        !          4306:     rewinddir�
�
        !          4307: �dirp���&i���
        !          4308: attributes&&&�"�
        !          4309: �
        !          4310: telldir�

        !          4311: �dirp&&&�$6
        !          4312: /seekdir�%
        !          4313: �dirp     �loc&&&�'F@ureaddir�5
        !          4314: �dirp&&&#)!��findt_to_dirent.~&f�&d&&&D,X��copynametolowerOG
        !          4315: �dest     �src���&i&&&�.�closedir�
        !          4316: �dirp&&
        !          4317:  ��tsV��_ctype
        !          4318: ��teV�patternZ�hfindtstV��maxentryT��currententryX��dirlist
P��dirstR��Myname
���errno2�_iobtest2.cY-; I!W"e&k)v*{+�,�-�.�/�4�5�6�7�8�9�;�<�?�@&C&D
        !          4319: &G
&H&K&L%&M(&N2&OX&P[&Q^&Rb&Te&Un&V�&W�&Y�&Z�&[�&\�&^�&_�&`�&a�&b�&d�&eghijlm$n,o/q3r<sFtIwSx]yczi{n~s��������������
��!�$�H�R�]�w��������subr.c��+�,�.�/�0�124'5,6>7L9V:Y;r=�A�B�D�E�F�G�I�JKLN&O)_/k:lHnKodpzq�r�t�u�v�w�x�y�z{|~<�N�X�b�u�������������������,�6�C�Q�[�d�n�t���������������������K�o�������������������      �     �'     �4     �>     �O     �\     �f     �l     &w     &�     &�             &�      
        !          4320: &�     &�     
&�     &�     &�     &�     &�     &�     &
        !          4321: &"
        !          4322:  &+
        !          4323: .&1
        !          4324: 1&<
        !          4325: 3&H
        !          4326: 4&r
        !          4327: 5&
        !          4328: 6&�
        !          4329: 8&�
        !          4330: 9&�
        !          4331: <&�
        !          4332: C&�
        !          4333: D&�
        !          4334: F&�
        !          4335: H&�
        !          4336: I&�
        !          4337: N&�
        !          4338: Q&�
        !          4339: S&T&X&Z&[&-_&3b&>c&jd&yh&k&�l&�p&�r&�u&�v&�w&x& |&&�& �&4�&@�&K�&W�&��&��&��&��&��&��&��&��&��&
�&
�&
�&"
�&0
�&:
�&@
�&F
�&S
�&]
�&c
�&|
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�& �&*�&8�&U�&s�&v�&}�&��&��&��&��&��&��&��&��&��&��&��&��&��&��&�&�&#�&.�&>�&D�&O&����   �
        !          4340: �
        !          4341: SLIBCE.LIB�&&&&&M&&�&&�)�&&#2n&&&&��&&�&�*o&�3�&&3'&�        &&Z&�     �&&s&�
        !          4342: �&&&�&J&&�&f&&�&uU&&     �&       �&&
        !          4343: �&
        !          4344: �
&&�&�G&&&&,
&&
.&&
:
&&E&&H
&&Z&&T
&&p&&q
&&�&&
&&�&&�
&&�&&�
&&�&&�

&&�&&�
&&�&&�

&&
        !          4345: &�
'&&"&�
&&;&&&R&#&&m&?+&&�&j&&�&�&&�&�&&�&�&& �& �&&!&!�&&"%&"�5&&#A&##&&$X&$2&&%o&%D&&&�&&T&&'�&'d%&&(�&(�D&&)�&)�&&*�&*�&&+&+�&&,#&,�&&-9&-&&.N&.&5&&/g&/[
&&0}&0h�&&1�&1&&2�&2&&3�&3!&&4�&4/&&5�&5;&&6
&6I&&7$&7Z&&8<&8x&&9T&9�&&:l&:�#&&;�&;�&&<�&<�&&=�&=�&&>�&>�&&?�&?�&&@&&@&&A&A
&&B1&B"&&CJ&C4&&De&DB&&E}&EQ
&&F�&F^V&&G�&G�&&H�&H�&&I�&I�,&&J�&J
        !          4346: N&&K&KX&&L&Lf&&M1&Mv&&NM&N�&&Oj&O�&7NB00�=�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�rese./basic/test3.exe   777  20115     11      101544  4552131641   7200 MZ�&# x���@�L�&���]"�      �     �U����WV�6��BP�xP�����]P�xP������P�xP�����P�xP�����P�xP���^_��]�U��,&�vWV�F���P�����P�xP�����^�F����N�~u��^��?-t��^�@�F���F��^��?u�r�^����C�2��&P�Y���$&�R�(&�K�*&�D�^���P�,&P�������&P�&���#=fu���=hu��=nu���=tu�������N�F�T��~u�!�@&P�&�RP�^�7�m���F��F�N�~u�
���&P����>(&u��$&�F�&�6��F&P�xP�N���>*&t�
�P�����
        !          4347: �P����>$&u���F���F��F�9F�|�c����P���=t��6��f&P��P�����&P�������P����P���=|�����P�x&P�^���&P��
�����>$&u�����P�3���F���P��&P�xP�~���>$&u�+�PP����P�����&P�xP�W���^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          4348: ��&P���P������&P���P�7������=|����P��&P����&P�
���^������k��=|�������&P�S���&P�����t�dž��������F9���|������v��&P���P�[�����P���=|����P��&P��&���&P����^����P�+��=|����P��&P��&���&P�N���v�v�v�v
        !          4349: �v�v�v������&P����=|���&P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          4350: �P���P�i�����P����=|�"�~t����P�P�����&P����^���dž��������F9���|�������v�!P���P�������P����=|�%�~u������P�&P����&P����v�v�v�v�v
        !          4351: �v�v�v������6P���=|��9P�G���&P��
        !          4352: �����P���=|����P�IP����&P�
        !          4353: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6��YP��P�&�������P�6��kP��P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          4354: �v�v�v��P��
        !          4355: ��(�>7u�
�vP�����xP��P�
        !          4356: ����P��
        !          4357: ���~�t�
        !          4358: �&P��        ��^_��]�U���_
        !          4359: WV�P�^
        !          4360: P���^_��]�U���@
        !          4361: WV�P�V
        !          4362: P�����b
        !          4363: �d
        !          4364: 9\
        !          4365: ~�#}�       9Z
        !          4366: r��.V
        !          4367: &�X
        !          4368: �Z
        !          4369: @B�\
        !          4370: �^�Z
        !          4371: �\
        !          4372: +b
        !          4373: d
        !          4374: �G�W�^�V
        !          4375: �X
        !          4376: +^
        !          4377: `
        !          4378: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7�zP�xP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�lRP��P�xP�e    ��^_��]�U��&�=       WV�~t���P��
        !          4379: ���F=t��F�����P�v����=t�<�v��P���P�������P�l��=u��v��P�����&P����v����=|��v��P�k����&P�����v�&��=|��v�P�C����&P����^_��]�U���gWV�~t��$P�
        !          4380: ���F=t��F/�v�L&��=|��v�;P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          4381: �\P�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v��Z���F�P�"���F�9F�u��^��P��P������&P���^_��]�U���WV�6���P�xP�#���6��X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          4382: ���^_��]�U���TWV�v�v�+���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          4383: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          4384: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P�7����P��P�����>�u�����&�P������>�t���~��P�v���P����=u���_�6���P�&���F�&��F���P���=t�!�F������������P��P�[&������F�H������
        !          4385: �^_��]�U����WV�F��F�F��P�v���P�S��=u���P�����&P�        ���6���P�����F�&��F���P�
        !          4386: ��=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9��        �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁ���s��
        !          4387: 3�P�@
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�=��V
        !          4388: ��+�3���;�\��
        !          4389: 3��6^�6\�6Z��P�����ظ6��>P�[
        !          4390: ����P���0�!�?�5�!�+�-�%�\�!�n �.�=&�6,�p  ��3�6�l        s�-
        !          4391: 6�t   �ڻ6�l       �=&�,�6��3�&�=t,���t��3��u�����F������t&H������F��D�!r
        !          4392: �€t��F@Ky�x        �x      ��x   �x      ��U�쾎
        !          4393: ��
        !          4394: �}�x  �z      �t�U��z      �z      �f�z   �z      �l�   �t�~u�F�����F&t�>�!C����F�L�!�n        ���l        �+�%�!�>ht
�i�j�%�!�;�s
        !          4395: OO�
�������;�s���Et�����Y��+�r
        !          4396: ;nr����3��k�U���WV�F�F��v�&
�����FP�v�v�.�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�p������������&t'�+D�F��~P�t�D�P�5��;F�t�L ����D��D��^_��]�U��^;Dr�      ���>�!rƇF�
        !          4397: U��^�t�O�&��]�U��VW���?u)��7u3���$@$�������&���D����6��N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6^�tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�7�PV��P�����P��P��P����>7|     ��97|����7�㋷8V����PVW�c���&P��PW�T��^_��]ÐU���V�v��-p�����������F�V����V�j
        !          4398: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v������]�U��F%�&�9��]�U�����P�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6^�F�P�v�+�P�c���F�@u�>7t�F���F���6^�F�P��P+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          4399: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V��������u �7���~9v�~
        !          4400: �7"+���F�PW�V���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1��PW�����t��PW�����t��PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�7����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th��PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��.����F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          4401: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u�7�V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          4402: �}G�V�����F
        !          4403: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          4404: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          4405: ؋^u�F���]���ȋF�f
        !          4406: ȋF��ы�]�U���P�e�>�t����P�S��]ø�{�V3��B2���2�����Ut
����&P�,�&^Ï��8?t)�=&�,�b3����3��u�GG�>`�����ыѿ&���=�< t�<  t�<
to
        !          4407: �tkGN�< t�<    t�<
t\
        !          4408: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          4409: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>Z�G��׀��+�ģ\���6�?CC�6`��
        !          4410: �u���6�=�3���< t�< t�<
u�
        !          4411: �u�y�6�?CCN�< t�<     t�<
tb
        !          4412: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          4413: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�=3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.^��3�I��<;Ct�~EE��
        !          4414: �u���N]��]�U��VW�V��    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&âB
        !          4415: �u#�>?r
<"s
< r���<v���ט�7Ê���U���WV�v�D��F���-p�����������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�p������������&uF��xt���u3�v�����u-����xu��
        !          4416: �����D��^��G�&��V����Du�ށ�p������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���F t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v����xu�F��
        !          4417: �����u$�F���Du�ށ�p������������&t+��5��-p�����������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~xt�~�uv�^�G�P����td�F-p�����������F��v�5���^���G�^��+���G�*��^��
        !          4418: t��u�G�P����t        �v����^��]�U��d&��WV�v������
        !          4419: �F�t
        !          4420: �F�h
        !          4421: �~
        !          4422: �|
        !          4423: �|�<%t�X��
        !          4424: &+��p
        !          4425: �l
        !          4426: �z
        !          4427: �n
        !          4428: �x
        !          4429: �v
        !          4430: �j
        !          4431: �f
        !          4432: �r
        !          4433: ��
        !          4434:  �|&0u<F��
        !          4435: 0�3�<+u
�p
        !          4436: �v
        !          4437: �"��< u
�>p
        !          4438: u�v
        !          4439: ��f
        !          4440: �      �<-u��r
        !          4441: F��P�����u�V��
        !          4442: P�f�����>�
        !          4443: }�r
        !          4444: ��
        !          4445: �أ�
        !          4446: �<.u#�x
        !          4447: FV��
        !          4448: P�<�����>�
        !          4449: }
        !          4450: ��
        !          4451: &�x
        !          4452: ��=Ft2=Nt5=ht =lu�n
        !          4453: �>n
        !          4454: u�<Lu&F�<u�&�n
        !          4455: &���n
        !          4456: ���n
        !          4457: �ӊ�����=Et
        !          4458: =Gt=Xu      �l
        !          4459: ���� ����-c=v�&��.��"�t
        !          4460: ��|
        !          4461: ��t
        !          4462: �i&��z
        !          4463: �f
        !          4464: �
        !          4465: P�&���Q&�����j
        !          4466: �l
        !          4467: �>x
        !          4468: u     ��
        !          4469: &����
        !          4470: �x
        !          4471: ��
        !          4472: �>n
        !          4473: u�+��n
        !          4474: �F�9�
        !          4475: t'��
        !          4476: �F��>r
        !          4477: t     ��
        !          4478: ���.�
        !          4479: ��
        !          4480: �}+���
        !          4481: �t
        !          4482: �P�����:P�����~�t"�>r
        !          4483: t�F�-��
        !          4484: �}+���
        !          4485: ����
        !          4486: �.t
        !          4487: �P�������/�+�P��&�*���&����������>n
        !          4488: t��N��G�=t�=%u���+�PV�������<t�|��>|
        !          4489: uY�h
        !          4490: �G tO����M�!� �!�!�!�!� �!�!�!�!� � !�!�!�!�!� �!�!�!�>~
        !          4491: t�>|
        !          4492: u�h
        !          4493: �G u��F뙐�|
        !          4494: ^_��]ÐU���WV�~
        !          4495: t�z
        !          4496: �>n
        !          4497: t�>n
        !          4498: u�t
        !          4499: ��W�F��V��t
        !          4500: �*�>z
        !          4501: t�t
        !          4502: ��F��F����t
        !          4503: ���F��V��t
        !          4504: �>f
        !          4505: t
�F�F�t�F�+���
        !          4506: �6�
        !          4507: �>z
        !          4508: u*�~�}$�~
        !          4509: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>x
        !          4510: t!W� ����
        !          4511: +ȉN����0F��I���N�l
        !          4512: ���t<a|�, FG�}�u�>z
        !          4513: u�p
        !          4514: v
        !          4515: t�~�u�&�+�P���^_��]ÐU���WV�~t�&�t
        !          4516: �F��^��t
        !          4517: ��>n
        !          4518: u�t
        !          4519: ��W�F��V��t
        !          4520: ���t
        !          4521: ��F��F��^��t
        !          4522: �>n
        !          4523: u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96x
        !          4524: t��
        !          4525: ���^��F�&�?tF;�~��F�^��F�&�?u�>�
        !          4526: +��>r
        !          4527: uW�&��V�v��v��o&���>r
        !          4528: tW�&��^_��]�U����t
        !          4529: �F��~gt�~Gu�&�*��F��>x
        !          4530: u��
        !          4531: �~�t
�>�
        !          4532: u��
        !          4533: &�6l
        !          4534: �6�
        !          4535: �v�6�
        !          4536: �v�����
        !          4537: �~�t�>f
        !          4538: u�6�
        !          4539: �����>f
        !          4540: t�>�
        !          4541: u�6�
        !          4542: �����t
        !          4543: ��
        !          4544: �p
        !          4545: v
        !          4546: t�v������t�&�+�P�&��]�U��V�>~
        !          4547: u/�h
        !          4548: �Ox�F�7��*���S�v�A���@u�~
        !          4549: ���|
        !          4550: ^]ÐU���WV�>~
        !          4551: uI�v�~B��6h
        !          4552: �6�
        !          4553: �      ���@u�~
        !          4554: ��N�~�h
        !          4555: �Ox۠�
        !          4556: �?��*��܃>~
        !          4557: u�F&|
        !          4558: ^_��]�U���WV�v�>~
        !          4559: uP��6h
        !          4560: �^&��P����@u�~
        !          4561: �F��N�t�h
        !          4562: �Ox��^&��h
        !          4563: �?��*��҃>~
        !          4564: u�F&|
        !          4565: ^_��]�U���
        !          4566: WV�6�
        !          4567: +��F��F��>�
        !          4568: 0u9x
        !          4569: t9j
        !          4570: t9�
        !          4571: u��
        !          4572:  �>�
        !          4573: V����F�+�+~�>r
        !          4574: u�<-u�>�
        !          4575: 0u��P�����N��>�
        !          4576: 0t�~�>r
        !          4577: t�~t�F��_�>�
        !          4578: t�F��j�>r
        !          4579: u&W�����~t        �~�u�5�>�
        !          4580: t     �~�u�=�v�V������>r
        !          4581: t
��
        !          4582:  W�a���^_��]Ã>p
        !          4583: t�+�� P����Ð�0P������>�
        !          4584: u�>l
        !          4585: t�X���xP�����ÐU���WV�v�F�&�<*u�t
        !          4586: �?�t
        !          4587: F�H��<-u�F���F+��<0|5�<909>x
        !          4588: u�<0u��
        !          4589: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          4590: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          4591: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          4592: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;Dr
        !          4593: �>�!����
        !          4594: N���&��F�Ë�]�2��ܡ9��#�3ɨ�u��&�U����^;Dr�  �����F t�B3ɋ��!r���F�tn�V3��F��F��WV����f��N�T�
        !          4595: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          4596: t;�t����#�a�
;�u���
        !          4597: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���F@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���F@t
        !          4598: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&�=��t%���&t��H;�s����&t�����D���G�t���&�t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          4599: �!W�~��]�M�U�u�E
        !          4600: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          4601: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�������&F�V�DP�F��FH�F��F
        !          4602: �F�>�t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          4603: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          4604: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          4605: �vV� ���&+�P��t�P�F�P�F�P�v
        !          4606: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z����PVW�g��P� ���7�v���t�PW�v�����F��>7u+��P�.PW�q���P�(���v���t�PW�v����F�W�t���v��k���F�^_��]ÐU����s�WV��(����v
        !          4607: �v�v�v������|�@u2�>7u+�^���&�</t<\t
        !          4608: �t�&:t��P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW����vW������v
        !          4609: �vW�v�������|�@u��>7u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������r59�s%P�ر��ً=+���ËشJ�!Xr$�H����.�&�Ë���U���WV�p+����D�tV�`߃�@t&G��96�s��^_��]�U���V�F-p�����������F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;Dr�  �*�F�tH�~
        !          4610: t3ɋѸ&B�!rK�F
        !          4611: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          4612: �B�!r��F���Y�n;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6Ht;�t
�D�FV�:^s0����s�u������ڃ��۱��H�!r钉�T�63�_^��]ËN��9Lt����u���?��r9�ӎ�;�u9�s&����������;�u ١=+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          4613: �t���2���^_��]�U��VW��U��^;D}��|��F@t�&�3���]��>�
        !          4614: u���
        !          4615: ÐU���WV��P�sރ����u��<u��PV�6��k�����RP��V�?ރ�RP�7����+���ހ?t��ފ������u     ��ހ?-uG��|؋�ހ?t�P���P�6��  ����������?&�@��^_��]�U���WV�v�|}��| ~��|~      �|     }��|
        !          4616: ��l���~�|u�\�㋇��
        !          4617: ��\�㋇��F���u�F��|
        !          4618: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�^�F�~t)�F�F����^��F��7�^���@��^��?t���v�D�F��t�^���Eu�N�u�~�t�F���~t�v�����F�v���v�7�B
        !          4619: ����&��6����F��F�P�oۃ��F��u!�v��_ۃ����u�7�B�6�뷋~��6��^�~��?��$��F��^
        !          4620: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P�.     PW�fۃ�P�������F��G+��N���Ft��F����GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v��7�B
        !          4621: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�7�����k�VW�؋^
        !          4622: ���ã<       �F�>   �@     �6>   F�J     �&)�!�&)�Z      �!U�>?}!.��7.�&�7�.�5.�6�7�u.�6�7.��7�< �~t�3��2��P��!X�f&�V�K�!P�P�0�!<X[}!.��7.�&�7�..��7.�6�7�u.�6�7�5���f]_^r�M�!���z      ������7��N
        !          4623: �F�V�~W��
        !          4624: �t��
        !          4625: u�y
        !          4626: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [count]
        !          4627:   Flags:  h    Help - print this usage info
        !          4628:           t    Print execution time statistics
        !          4629:           f    Test function only (negate -t)
        !          4630:           n    Suppress test directory create operations
        !          4631: unknown option '%c'count%s: lookups across mount point
        !          4632: %s: getwd failed
        !          4633: can't stat %s after getwd    %d getwd and stat calls
        !          4634: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          4635:       %s: (%s)  
        !          4636:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          4637: \*.*rewind failed�U��;C_FILE_INFO���&&d�C���&&�&         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          4638: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error
'()*+=O_`aq���������������������*%.com.exePATH\�������;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO
        !          4639:        �     ��1<<NMSG>>R6000
        !          4640: - stack overflow
        !          4641: R6003
        !          4642: - integer divide by 0
        !          4643:       R6009
        !          4644: - not enough space for environment
        !          4645: �
        !          4646: �run-time error R6002
        !          4647: - floating point not loaded
        !          4648: &R6001
        !          4649: - null pointer assignment
        !          4650: ���NB00/7�       TEST3.OBJ�SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asmzo&&dos\crt0dat.asm�&
        !          4651: chkstk.asm>& fprintf.c>&_file.c>n&fflush.c� &
dos\close.asm�X&nmalloc.asm$?&
        !          4652: strcat.asmd2&
        !          4653: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.c�~&perror.cvx&setbuf.c�V&    sprintf.cD&   creat.asm\&   umask.asmn�&system.c�$&
dos\chmod.asm<&dos\dir.asmZ�&dos\getcwd.c<&
        !          4654: dos\stat.cT
&dos\unlink.asmb(&dos\d_find.asm�+&dos\diskfree.asm�&dos\getdrive.asm�&dos\gettime.asm�&dos\setdrive.asm��&ldiv.asm�4&lmul.asm� &dos\crt0msg.asm�&
        !          4655: crt0fp.asm�"&
        !          4656: chksum.asm�&&dos\stdargv.asm�n&dos\stdenvp.asmT&dos\nmsghdr.asmbT&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c.&
        !          4657: _freebuf.c:&& _sftbuf.cT�&output.c(�&&dos\open.asm�)(&&     write.asm�*a&&amalloc.asmJ,&
        !          4658: strlen.asmf,:&strncmp.asm�,T&atox.asm�,&dos\bdos.asm-G&dos\intdos.asmN-&&
        !          4659: dtoxtime.cd.B&stricmp.asm�.+&strrchr.asm�.X&strpbrk.asm*/&syserr.c*/D&&
dos\spawnve.cn0�&
        !          4660: spawnvpe.cb1&dos\access.asm�1B&dos\stdalloc.asm�12&
        !          4661: flushall.c�1l& _getbuf.cb2z&
dos\lseek.asm�2&stackava.asm�2�&dos\brkctl.asm�3(&strncpy.asm�3
        !          4662: &        ultoa.asm�3&cmiscdat.asm�3#&
        !          4663: isatty.asm4&days.c4�&&tzset.c�5&  timeset.c�5*&
        !          4664: strchr.asm�5'&
dos\cenvarg.c�7�&dos\dospawn.asm�8&dos\execload.asm�8_&xtoa.asm$&��_Tflag&&��_Hflag(&��_Fflag*&��_Nflag�_usagek�_main��_pattern��h_findtst���    _maxentry���
_currententry���_dirlist�
        !          4665: ��_dirst���_Myname_statfs_opendir�
'_readdir�
        !          4666: _rewinddir��_error�.  _closedir��
        !          4667: _starttime��_endtime�
$_seekdir�
"_telldir"�_printtimes��_testdirz� _mtestdir��_getparm�       �    _complete���_diropen��_dirtree�
        !          4668: �
_gettimeofday�    �_unix_chdir 
        !          4669: �_getwd=�
        !          4670: _rmdirtreeA
        !          4671: �_unix_chmod�
        !          4672: �_lstat?   �_chdrive��__fmode��__iomodeV
        !          4673: �_edata��_end��__aexit_rtn�__abrkp��__abrktb��__asizds�__astart��__atopsp�       __abrktbe\ __cintDIVv�&
        !          4674: __acrtusedk__amsg_exit?�__osversion7�_errnoU__exitf�__childD�__nfilez__cinitZ�___argci�__intno?�
__dosvermajorB�__oserr\�___argv@�
__dosverminor^�_environF�__osfileA�__osmode;�__pspadrl        �__fpinitj�__ovlvec`�__pgmptr�       __acfinfoh� __ovlflag+� __aintdiv?� __osmajor@� __osminor9�
        !          4675: __umaskval�
        !          4676: __ctermsubB�
        !          4677: __doserrno/�__fac>_exit=�__pspn�STKHQQ�__chkstk_fprintf��__bufin�
        !          4678: �__bufout��__buferr�__iob2��        __lastiobp�__iob>_fflush�_close�_malloc�__nfree��__asegds�       __nmalloc�_free$_strcatd_strcpy�_atol��__ctype��__ctype_�_getenv�_perrorv_setbuf�_sprintfD_creat\_umaskn_system�_chmod%_chdir_mkdir2_rmdirZ_getcwdn     __getdcwd�_statT_removeT_unlinkb__dos_findnextl__dos_findfirst�__dos_getdiskfree�__dos_getdrive�
__dos_gettime�__dos_setdrive�__aNldiv�__aNlmul�  __aNulmul�__FF_MSGBANNER��    __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck        __setargv� __setenvp__NMSG_TEXT9__NMSG_WRITEb    __dosret0�
        !          4679: __maperroru
        !          4680: __dosretaxj__dosreturn��__cflush�__flsbuf       __freebuf�__ftbuf:__stbufT__output$(
        !          4681: __copensub(_open�)__cXENIXtoDOSmode�)_write*,__amallocbrk��__aseg1�__asegh��__asegn��__asegr,__amlink�    __QChdata�* __amalloc�+
        !          4682: __amexpand��
        !          4683: __amblksizJ,_strlenf,_strncmp�,__catox�,_bdos-_intdosN-
        !          4684: __dtoxtimed._stricmpd._strcmpi�._strrchr�._strpbrk��   _sys_nerr8�_sys_errlist*/_spawnven0       _spawnvpeb1_access�1   __myalloc�1 _flushall�1__getbufb2_lseek�2_stackavail�2_brkctl�3_strncpy�3_ultoa��
__cfltcvt_tab��__asizeC��__asizeD��__sigintoff��__sigintseg�3_isatty��__days��__lpdays�4 __isindst4___tzset4_tzset  �    ___mnames�� _daylight�� _timezone��_tzname��   ___dnames�5_strchr�5   __cenvarg�7 __dospawn�8
        !          4685: __execload�8__cxtoa�8
        !          4686: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          4687: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x����&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x0��&x�&��&&�&&�&&�&x����&&�&&�&x����&&�&&�&x����&&�&x��&&�&&�&&�&&�&&�&&�&&�&y���� �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          4688: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          4689: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          4690: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          4691: u���c&��&&�&
        !          4692: ������&
        !          4693: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          4694: u���c&��&��&
        !          4695: u���c&��&&�&&�&&�&����&
        !          4696: u���c��&���
        !          4697: &
        !          4698: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          4699: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          4700: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          4701: u���c&�!&����&u��c�#&&�&��&
        !          4702: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�Jf�mainv9
        !          4703: �argc
        !          4704: +argv���count���ct
        !          4705: ���time��statb
        !          4706: ���opts
        !          4707: ���path&&���Mynamep�_iob&���&�&dirtree�v&        �lev�files
        !          4708: �dirs
        !          4709: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          4710: ��name&&&=�m&�&�  rmdirtreeH\& �lev�files
        !          4711: �dirs
        !          4712: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          4713: ��name&&&�����error��      �str       �ar1       
        !          4714: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          4715: ���path&&&����  starttime&&����fendtime�p�tv&&&"��w�
        !          4716: printtimes-q�tv�nbytes&&&�����testdir��        �dir��statb   ��str&&&z�^�mtestdir�M     �dir&&&��g-�getparm�V
        !          4717: �parm     �min
        !          4718: �label      ���val&&&?        ���chdriveJ  s
        !          4719: �path���desireddrive���drive&&&�       �7>complete&&�       �&Od
        !          4720: unix_chdir
        !          4721: 
        !          4722: �path&&& 
        !          4723: �!u�getwd+
        !          4724: 
        !          4725: �path&&&A
        !          4726: �L��
        !          4727: unix_chmodL
        !          4728: ;
        !          4729: �path
        !          4730: �mode
���dosmode&&&�
        !          4731: � ��lstat�
        !          4732: 
        !          4733: �path     
        !          4734: buf&&&�
        !          4735: �pagettimeofday�
        !          4736: _�TV�TimeZone
��ndostime&&&�rW        statfs(�
        !          4737: �path     �buf���&p���&i���drive��q     diskspace&&&�h  9
        !          4738: opendir�
�dirname���&i���
        !          4739: attributes&&&��J
        !          4740: �
        !          4741:     rewinddir
�
        !          4742: �dirp���&i���
        !          4743: attributes&&&�
"�
        !          4744: �
        !          4745: telldir�


        !          4746: �dirp&&&�
$6
        !          4747: /seekdir�
%
        !          4748: �dirp     �loc&&&�
'F@ureaddir�
5
        !          4749: �dirp&&&1)!��findt_to_dirent<~&f�&d&&&R,X��copynametolower]G
        !          4750: �dest     �src���&i&&&�.�closedir�
        !          4751: �dirp&&
        !          4752: ^
        !          4753: ��ts���_ctype
        !          4754: V
        !          4755: ��te��pattern��hfindtst���maxentry���currententry���dirlist
�
        !          4756: ��dirst���Myname
7��errnop�_iobtest3.c@-;IW e$k'v/{0�1�2�3�4�5�7�8�;�<�?�@�C�D�G�H&I&J&KA&LD&MG&NK&PN&QW&Rq&Su&Ux&V�&W�&Z�&[�&\�&_�&a�&b�&d�&f�&g�&j�&k�&lmo(p@qOsYu\vfxqy�z�|�}�~�subr.c��+�,�.�/�0&12+455:6L7Z9d:g;�=�A�B�D�E�F�G�I�JK L*N4O7_=kHlVnYorp�q�r�t�u�v�w�x�yz{|"~,J�\�f�p���������������������:�D�Q�_�i�r�|���������������������"�-�Y�}�����������������
��$�5�B�L�]�j�t�z&�&�&�    &�
        !          4757: &�&�
&�&�&�&�&�&
 &&     &0      &9     .&?     1&J     3&V     4&�     5&�     6&�     8&�     9&�     <&�     C&�     D&�     F&�     H&�     I&�     N&�     Q&
        !          4758: S&
        !          4759: T&
        !          4760: X& 
        !          4761: Z&+
        !          4762: [&;
        !          4763: _&A
        !          4764: b&L
        !          4765: c&x
        !          4766: d&�
        !          4767: h&�
        !          4768: k&�
        !          4769: l&�
        !          4770: p&�
        !          4771: r&�
        !          4772: u&�
        !          4773: v&�
        !          4774: w&x&|&&(�&.�&B�&N�&Y�&e�&��&��&��&��&��&��&��&�&
�&�&�&#�&0�&>�&H�&N�&T�&a�&k�&q�&��&��&��&��&��&��&��&��&��&��&
�&
�&
�&$
�&.
�&8
�&F
�&c
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�&�&+�&1�&<�&L�&R�&]&����   �
        !          4775: �
        !          4776: SLIBCE.LIB�&&&&&�M&&��&&x*�&&�2
        !          4777: &&&&��&&x&!+o&�3�&&3'&�     &&Z&�     �&&s&�
        !          4778: �&&&�&`&&�&|&&�&�U&&     �&       �&&
        !          4779: �&
        !          4780: �
&&�&�G&&&&B
&&
.&&
P
&&E&&^
&&Z&&j
&&p&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&�

&& &�
'&&8&&&Q&:&&h&F&&�&b+&&�&�&&�&�&&�&�&& �& �&&!&!�&&"&&"�&&#;&#5&&$W&$F&&%n&%U&&&�&&g&&'�&'w&&(�&(�%&&)�&)�D&&*�&*�&&+&+�&&,"&,&&-9&-&&.O&.:&&/d&/I5&&0}&0~
&&1�&1��&&2�&2'&&3�&35&&4�&4D&&5�&5R&&6&6^&&7#&7l&&8:&8}&&9R&9�&&:j&:�&&;�&;�#&&<�&<�&&=�&=�&&>�&>�&&?�&?  &&@&@&&A&A)&&B-&B8
&&CG&CE&&D`&DW&&E{&Ee&&F�&Ft
&&G�&G�V&&H�&H�&&I�&I�&&J�&J&,&&K&K-N&&L&L{&&M-&M�&&NG&N�&&Oc&O�&&P�&P�&#7NB00�=�_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&./basic/test4.exe   777  20115     11      103031  4552131714   7173 MZ�&$ y���@zF@&�K���|  ��     �U���IWV�6�BP��P�N���cP��P�@����P��P�2����P��P�$����P��P���^_��]�U��6&��WV�F�
        !          4781: dž��2dž��dž���F�2&�P�;���P��P�G���^�F���N�~u��^��?-t��^�@�F���F��^��?u�r�^����C���&P����*&�R�.&�K�0&�D�^���P�8&P�������&P����#=fu���=hu��=nu���=tu�������N�F�T��~u�!�L&P�&�RP�^�7�����F��F�N�~u�"�R&P�&�RP�^�7��������F�N�~u��^��F��N�F�~u�
�2��&P�����>.&u��*&dž��&�>0&t�
�P�
���
        !          4782: �P��������P����P�X&P�v��P�v��&P��&���6�]&P��P�(���>*&u���F���F�����9F�|�W&dž��������F�9���|�;&�����v��&P����P�����&P����P����=|�����P��&P�Y���P��������P����P�a��=|�����P��&P�(���&P�������%�&=&u�!����%�&P����P��&P�����&P�����&P����P�/��=|�����P��&P�����P�R������P����P����=|�����P��&P����&P�!������%�&=�&u�!����%�&P����P��&P�g���&P��
�������>*&u�����P�9���v��F�������P�P��P�}���>*&u�+�PP����P����#P��P�V���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          4783: �&P���P������&P���P�7������=|����P�+P����&P�
���^������k��=|������;P�S���&P�����t�dž��������F9���|������v�KP���P�[�����P���=|����P�PP��&���&P����^����P�+��=|����P�`P��&���&P�N���v�v�v�v
        !          4784: �v�v�v�����pP����=|��sP�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          4785: ��P���P�i�����P����=|�"�~t����P��P�����&P����^���dž��������F9���|�������v��P���P�������P����=|�%�~u������P��P����&P����v�v�v�v�v
        !          4786: �v�v�v�������P���=|���P�G���&P��
        !          4787: �����P���=|����P��P����&P�
        !          4788: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6��P��P�&�������P�6��P��P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          4789: �v�v�v��P��
        !          4790: ��(�>�u�
��P������P��P�
        !          4791: ����P��
        !          4792: ���~�t�
        !          4793: �&P��        ��^_��]�U���_
        !          4794: WV�P��
        !          4795: P���^_��]�U���@
        !          4796: WV�P��
        !          4797: P������
        !          4798: ��
        !          4799: 9�
        !          4800: ~�#}�       9�
        !          4801: r��.�
        !          4802: &��
        !          4803: ��
        !          4804: @B��
        !          4805: �^��
        !          4806: ��
        !          4807: +�
        !          4808: �
        !          4809: �G�W�^��
        !          4810: ��
        !          4811: +�
        !          4812: �
        !          4813: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7��P��P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�lRP�P��P�e    ��^_��]�U��&�=       WV�~t��P��
        !          4814: ���F=t��F$����P�v����=t�<�v�0P���P�������P�l��=u��v�9P�����&P����v����=|��v�\P�k����&P�����v�&��=|��v�{P�C����&P����^_��]�U���gWV�~t���P�
        !          4815: ���F=t��F��v�L&��=|��v��P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          4816: ��P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������
u��^��- ��^��-@�F��F�P�v��Z���F�P�"���F�9F�u��^��P�P������&P���^_��]�U���WV�6�P��P�#���6�X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          4817: ���^_��]�U���TWV�v�v�+���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������
u��^��- ��^��-@�F��
        !          4818: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          4819: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�P�7���&P�P�����>,u����,&�P�����>t���~�P�v��P����=u���_�6�P�&���F�&��F��P���=t�!�F�����������P�P�[&������F�H����^_��]�U����WV�F��F�F�P�v��P�S��=u��.P�����&P� ���6�P�����F�&��F��P�
        !          4820: ��=t�!�F�����������P�P�������F�H��^_��]�U���JWV�F�F���^_��]�U���,WV�F�F��9V~�}�9Fv��F�^_��]�U����WV�F�F�9�        ����������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������
&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F�,^_��]Ð�0�!<s� ���6+���r���ׁ�N�s��
        !          4821: 3�P�@
��L�!���6�&D6�&@�Ʊ��H6�>��6��+��۴J�!6�����
        !          4822: �P+�3���;�\��
        !          4823: 3��6��6��6���P�����ظ6�B�P�[
        !          4824: ����P�B�0�!���5�!�����%���!�� �.��&�6,��  ��3�6��        s�-
        !          4825: 6��   �ڻ6��       ��&�,�6��3�&�=t,����t��3��u������������t&H���������D�!r
        !          4826: �€t���@Ky��        ��      ���   ��      ��U����}��      ��      �t�U���      ��      �f��   ��      �l�   �t�~u�F������&t�>�!C����F�L�!��        ����        ���%�!�>�t
�����%�!�;�s
        !          4827: OO�
�������;�s���Et�����Y��+�r
        !          4828: ;�r����3��k�U���WV�F�F��v�&
�����FP�v�v�.�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ���������������&t'�+D�F��~P�t�D�P�5��;F�t�L ����D��D��^_��]�U��^;�r�      ���>�!rƇ��
        !          4829: U��^�t�O�&��]�U��VW��?u)��7u3���$@$�����&���D����6�N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6��tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�7�PV��P�����P�P��P����>�|     ��9�|������㋷�V����PVW�c���&P�PW�T��^_��]ÐU���V�v��-�������������F�V����V�j
        !          4830: ���~u�L�d��^����@�D��G&��Z�d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v������]�U��F%�&����]�U����P�����F��~u+�P�v������u�&�Z+��V�F��F�F��F��~�t&�6��F�P�v�+�P�c���F�@u�>�t�F���F��6��F�P�P+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          4831: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V��������u �����~9v�~
        !          4832: ��"+���F�PW�V���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1�,PW�����t�1PW�����t�6PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~�;PV�����t
������Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u������
&t� ����-`�+�PP�P���*�@�F�~�th�>PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��.����F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          4833: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u���V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          4834: �}G�V�����F
        !          4835: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          4836: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          4837: ؋^u�F���]���ȋF�f
        !          4838: ȋF��ы�]�U���P�e�>Bt�B��P�S��]ø�{�V3��B2���2�����Ut
����&P�,�&^ÏD�8�t)��&�,��3����3��u�GG�>������ыѿ&�����< t�<  t�<
to
        !          4839: �tkGN�< t�<    t�<
t\
        !          4840: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          4841: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>��G��׀��+�ģ����6�?CC�6���
        !          4842: �u���6���3���< t�< t�<
u�
        !          4843: �u�y�6�?CCN�< t�<     t�<
tb
        !          4844: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          4845: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&DU��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.���3�I��<;Ct�~EE��
        !          4846: �u���N]��]�U��VW�V��    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          4847: �u#�>�r
<"s
< r���<v��Fט��Ê���U���WV�v�D��F���-�������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ���������������&uF���t���u3�v�����u-�Z���u�����D��^��G�&��V����Du�ށ���������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���� t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v�Z���u�F������u$�F��Du�ށ���������������&t+��5��-�������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�t�~�uv�^�G�P����td�F-�������������F��v�5���^���G�^��+���G�*��^�t�u�G�P����t      �v����^��]�U��d&��WV�v������
        !          4848: �F��
        !          4849: �F��
        !          4850: ��
        !          4851: ��
        !          4852: �|�<%t�X��
        !          4853: &+���
        !          4854: ��
        !          4855: ��
        !          4856: ��
        !          4857: ��
        !          4858: ��
        !          4859: ��
        !          4860: ��
        !          4861: ��
        !          4862: � �|&0u<F�0�3�<+u
��
        !          4863: ��
        !          4864: �"��< u
�>�
        !          4865: u��
        !          4866: ���
        !          4867: �      �<-u���
        !          4868: F��P�����u�V��
        !          4869: P�f�����>�
        !          4870: }��
        !          4871: ��
        !          4872: �أ�
        !          4873: �<.u#��
        !          4874: FV��
        !          4875: P�<�����>�
        !          4876: }
        !          4877: ��
        !          4878: &��
        !          4879: ��=Ft2=Nt5=ht =lu��
        !          4880: �>�
        !          4881: u�<Lu&F�<u�&��
        !          4882: &����
        !          4883: ����
        !          4884: �ӊ�����=Et
        !          4885: =Gt=Xu      ��
        !          4886: ���� ����-c=v�&��.���#��
        !          4887: ���
        !          4888: ���
        !          4889: �i&���
        !          4890: ��
        !          4891: �
        !          4892: P�&���Q&������
        !          4893: ��
        !          4894: �>�
        !          4895: u     ��
        !          4896: &����
        !          4897: ��
        !          4898: ��
        !          4899: �>�
        !          4900: u�+���
        !          4901: �F�9�
        !          4902: t'��
        !          4903: �F��>�
        !          4904: t     ��
        !          4905: ���.�
        !          4906: ��
        !          4907: �}+���
        !          4908: ��
        !          4909: �P�����:P�����~�t"�>�
        !          4910: t�F�-��
        !          4911: �}+���
        !          4912: ����
        !          4913: �.�
        !          4914: �P�������/�+�P��&�*���&����������>�
        !          4915: t��N��G�=t�=%u���+�PV�������<t�|��>�
        !          4916: uY��
        !          4917: �G tO����MB#^"H#H#H#R#^"R#R#R#R#F"r"x"R#R#8#R#Z"R#R#2#�>�
        !          4918: t�>�
        !          4919: u��
        !          4920: �G u��F뙐��
        !          4921: ^_��]ÐU���WV�~
        !          4922: t��
        !          4923: �>�
        !          4924: t�>�
        !          4925: u��
        !          4926: ��W�F��V���
        !          4927: �*�>�
        !          4928: t��
        !          4929: ��F��F�����
        !          4930: ���F��V���
        !          4931: �>�
        !          4932: t
�F�F�t�F�+���6�
        !          4933: �>�
        !          4934: u*�~�}$�~
        !          4935: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>�
        !          4936: t!W� ����
        !          4937: +ȉN����0F��I���N��
        !          4938: ���t<a|�, FG�}�u�>�
        !          4939: u��
        !          4940: �
        !          4941: t�~�u�&�+�P���^_��]ÐU���WV�~t�&��
        !          4942: �F��^���
        !          4943: ��>�
        !          4944: u��
        !          4945: ��W�F��V���
        !          4946: ����
        !          4947: ��F��F��^���
        !          4948: �>�
        !          4949: u
�F�F�u�\�        �~�u   �c�F��^��F��V��F�V�+�96�
        !          4950: t��
        !          4951: ���^��F�&�?tF;�~��F�^��F�&�?u�>�
        !          4952: +��>�
        !          4953: uW�&��V�v��v��o&���>�
        !          4954: tW�&��^_��]�U�����
        !          4955: �F��~gt�~Gu�&�*��F��>�
        !          4956: u��
        !          4957: �~�t
�>�
        !          4958: u��
        !          4959: &�6�
        !          4960: �6�
        !          4961: �v�6�
        !          4962: �v�� ��
        !          4963: �~�t�>�
        !          4964: u�6�
        !          4965: �    ���>�
        !          4966: t�>�
        !          4967: u�6�
        !          4968: �    ����
        !          4969: ���
        !          4970: �
        !          4971: t�v��       ���t�&�+�P�&��]�U��V�>�
        !          4972: u/��
        !          4973: �Ox�F�7��*���S�v�A���@u��
        !          4974: ����
        !          4975: ^]ÐU���WV�>�
        !          4976: uI�v�~B��6�
        !          4977: �6�  ���@u��
        !          4978: ��N�~��
        !          4979: �Ox۠�?��*��܃>�
        !          4980: u�F&�
        !          4981: ^_��]�U���WV�v�>�
        !          4982: uP��6�
        !          4983: �^&��P����@u��
        !          4984: �F��N�t��
        !          4985: �Ox��^&���
        !          4986: �?��*��҃>�
        !          4987: u�F&�
        !          4988: ^_��]�U���
        !          4989: WV�6�
        !          4990: +��F��F��>0u9�
        !          4991: t9�
        !          4992: t9�
        !          4993: u� �>�
        !          4994: V����F�+�+~�>�
        !          4995: u�<-u�>0u��P�����N��>0t�~�>�
        !          4996: t�~t�F��_�>t�F��j�>�
        !          4997: u&W�����~t        �~�u�5�>t �~�u�=�v�V������>�
        !          4998: t
� W�a���^_��]Ã>�
        !          4999: t�+�� P����Ð�0P������>u�>�
        !          5000: t�X���xP�����ÐU���WV�v�F�&�<*u��
        !          5001: �?��
        !          5002: F�H��<-u�F���F+��<0|5�<909>�
        !          5003: u�<0u�0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V�j�N��F�<t
        !          5004: :u��&��+�^��]ÐU���2��~��F���F���u�@u�=�u�F���V$
        !          5005: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          5006: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          5007: �>�!����
        !          5008: N���&����Ë�]�2��ܡ���#�3ɨ�u��&�U����^;�r�  ������ t�B3ɋ��!r�����tn�V3��F��F��WV����f��N�T�
        !          5009: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          5010: t;�t����#�a�
;�u���
        !          5011: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ����@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u����@t
        !          5012: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�t��&�z=��t%���&t��H;�s����&t�����D���G�t���&�zt�،�;�t&�p�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�t��G3���Q�E��&t+�IAA��&;vv��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          5013: �!W�~��]�M�U�u�E
        !          5014: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿8       �ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          5015: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF����`        �b     &F�V�DP�F��FH�F��F
        !          5016: �F�>d t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          5017: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          5018: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          5019: �vV� ���&+�P��t�P�F�P�F�P�v
        !          5020: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z����PVW�g��P� �����v���t�PW�v�����F��>�u+�        P�.PW�q���P�(���v���t�PW�v����F�W�t���v��k���F�^_��]ÐU����s�WV��(����v
        !          5021: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          5022: �t�&:t�    P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�
     PW����vW������v
        !          5023: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
������Dr59>s%P�ر��ً�+���ËشJ�!Xr$�H�>��.D&DË���U���WV��+����D�tV�`߃�@t&G��96s��^_��]�U���V�F-�������������F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;�r�  �*�F�tH�~
        !          5024: t3ɋѸ&B�!rK�F
        !          5025: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          5026: �B�!r������Y��;�s+�����3���U��VW�~u8�D�V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9>s&����������;�u ١�+؎��J�!r
;�u�>�����U��WV�~�v�ߋN��
        !          5027: �t���2���^_��]�U��VW��U��^;�}��|���@t�&�3���]��>u��ÐU���WV�T     P�sރ����u��<u��PV�6f        �k�����RP��V�?ރ�RP�7�`   �b     +���ހ?t��ފ�����
u      ��ހ?-uG��|؋�ހ?t�P���P�6h    �       �����h       ��h  �?&�@�d        ^_��]�U���WV�v�|}��|   ~��|~      �|     }��|
        !          5028: ��l���~�|u�\�㋇:       �
        !          5029: ��\�㋇<      �F���u�F��|
        !          5030: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu���F�~t)�F�F����^��F��7�^���@��^��?t���vࡼ�F��t�^����u�N�u�~�t�F���~t�v�����F�v���v����
        !          5031: ����&��6v�v�F��F�P�oۃ��F��u!�v��_ۃ����u�����6v뷋~��6v�^�~��?��$��F��^
        !          5032: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P��     PW�fۃ�P�������F��G+��N����t�������GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v�����
        !          5033: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�������k�VW�؋^
        !          5034: ���ã�       �F��   ��     �6�   F��     �&)�!�&)��      �!U�>�}!.�^9.�&\9�.�5.�6`9�u.�6b9.�d9�� �~t�3��2��P��!X��&�V�K�!P�P�0�!<X[}!.�^9.�&\9�..�d9.�6b9�u.�6`9�5����]_^r�M�!����      ���������N
        !          5035: �F�V�~W��
        !          5036: �t��
        !          5037: u�y
        !          5038: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [files count]
        !          5039:   Flags:  h    Help - print this usage info
        !          5040:           t    Print execution time statistics
        !          5041:           f    Test function only (negate -t)
        !          5042:           n    Suppress test directory create operations
        !          5043: file.unknown option '%c'filescountdir.%s: setattr, getattr, and lookup
        !          5044: %s%dcan't chmod 0 %scan't stat %s%s has mode %o after chmod 0can't chmod 0666 %scan't stat %s%s has mode %o after chmod 0666   %d chmods and stats on %d files
        !          5045: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          5046:       %s: (%s)  
        !          5047:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          5048: \*.*rewind failed���D;C_FILE_INFO���&&��CP

&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          5049: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error|�����������������
        !          5050: 01EFGH`abcdr���%.com.exePATH\bbbbb��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&X     \       SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�       ��     �<3<<NMSG>>R6000
        !          5051: - stack overflow
        !          5052: R6003
        !          5053: - integer divide by 0
        !          5054:       R6009
        !          5055: - not enough space for environment
        !          5056: �
        !          5057: �run-time error R6002
        !          5058: - floating point not loaded
        !          5059: &R6001
        !          5060: - null pointer assignment
        !          5061: ���NB00�7       TEST4.OBJ.SUBR.OBJ@D:\MSC\5.1\LIB\BINMODE.OBJ@�&dos\crt0.asm�o&&dos\crt0dat.asmb&
        !          5062: chkstk.asmx>& fprintf.c�&_file.c�n&fflush.c$ &
dos\close.asmDX&nmalloc.asm�?&
        !          5063: strcat.asm�2&
        !          5064: strcpy.asm&atol.asm&    ctype.asm^&getenv.cp~&perror.c�x&setbuf.cfV&    sprintf.c�&   creat.asm�&   umask.asm��&system.cr$&
dos\chmod.asm�<&dos\dir.asm��&dos\getcwd.c�<&
        !          5065: dos\stat.c�
&dos\unlink.asm�(&dos\d_find.asm+&dos\diskfree.asm.&dos\getdrive.asmB&dos\gettime.asm\&dos\setdrive.asmr�&ldiv.asm4&lmul.asmB &dos\crt0msg.asmb&
        !          5066: crt0fp.asmh"&
        !          5067: chksum.asm��&&dos\stdargv.asmn&dos\stdenvp.asm�T&dos\nmsghdr.asm�T&dos\dosret.asm.&_cflush.asm.V&&  _flsbuf.c�.&
        !          5068: _freebuf.c�&& _sftbuf.c� �&output.c�)�&&dos\open.asm8+(&&     write.asm`,a&&amalloc.asm�-&
        !          5069: strlen.asm�-:&strncmp.asm.T&atox.asml.&dos\bdos.asm~.G&dos\intdos.asm�.&&
        !          5070: dtoxtime.c�/B&stricmp.asm0+&strrchr.asmJ0X&strpbrk.asm�0&syserr.c�0D&&
dos\spawnve.c�1�&
        !          5071: spawnvpe.c�2&dos\access.asm�2B&dos\stdalloc.asm<32&
        !          5072: flushall.cn3l& _getbuf.c�3z&
dos\lseek.asmT4&stackava.asmf4�&dos\brkctl.asm*5(&strncpy.asmR5
        !          5073: &        ultoa.asm\5&cmiscdat.asm\5#&
        !          5074: isatty.asm�5&days.c�5�&&tzset.c
        !          5075: 7&      timeset.c
        !          5076: 7*&
        !          5077: strchr.asm47'&
dos\cenvarg.c\9�&dos\dospawn.asmH:&dos\execload.asm\:_&xtoa.asm*&��_Tflag,&��_Hflag.&��_Fflag0&��_Nflag�_usagek�_main�_pattern�h_findtst��    _maxentry��
_currententry��_dirlist��_dirst��_Myname�_statfs�
_opendirc'_readdirm
        !          5078: _rewinddir"�_error".  _closedir��
        !          5079: _starttime�_endtime-$_seekdir"_telldir��_printtimes     �_testdir�  �    _mtestdirP
        !          5080: �_getparm;�    _complete,��_diropen.�_dirtree%�
_gettimeofdayr�_unix_chdir��_getwd��
        !          5081: _rmdirtree��_unix_chmod�_lstat�
        !          5082: �_chdrive<�__fmode<�__iomode�
        !          5083: �_edataP�_endB�__aexit_rtn��__abrkpD�__abrktb>�__asizds@__astart@�__atopsp��       __abrktbe� __cintDIVv�&
        !          5084: __acrtused�__amsg_exit��__osversion��_errno�__exit��__child��__nfile�__cinit��___argc��__intno��
__dosvermajor��__oserr��___argv��
__dosverminor��_environ��__osfile��__osmode��__pspadr�        �__fpinit��__ovlvec��__pgmptr��       __acfinfo�� __ovlflag�� __aintdiv�� __osmajor�� __osminor��
        !          5085: __umaskval
        !          5086: __ctermsub��
        !          5087: __doserrno��__fac�_exit��__psp��STKHQQb__chkstkx_fprintf
�__bufin�__bufout�__buferr��__iob2�       __lastiob��__iob�_fflush$_closeV_mallocD__nfree�__asegdsV       __nmallocD_free�_strcat�_strcpy_atol�__ctype�__ctype__getenvp_perror�_setbuff_sprintf�_creat�_umask�_systemr_chmod�_chdir�_mkdir�_rmdir�_getcwd�     __getdcwdD_stat�_remove�_unlink�__dos_findnext�__dos_findfirst__dos_getdiskfree.__dos_getdriveB
__dos_gettime\__dos_setdriver__aNldiv__aNlmul  __aNulmulB__FF_MSGBANNERB�    __adbgmsgv�& __acrtmsgb__fptraph__nullcheck�        __setargv __setenvp�__NMSG_TEXT�__NMSG_WRITE�    __dosret0�
        !          5088: __maperror�
        !          5089: __dosretax�__dosreturnZ�__cflush.__flsbuf�       __freebuf6 __ftbuf�__stbuf� __output�)
        !          5090: __copensub�)_open'+__cXENIXtoDOSmode8+_write�-__amallocbrkp�__aseg1x�__aseghr�__asegnt�__asegr�-__amlinkx�    __QChdatac, __amallocF-
        !          5091: __amexpandv�
        !          5092: __amblksiz�-_strlen�-_strncmp.__catoxl._bdos~._intdos�.
        !          5093: __dtoxtime�/_stricmp�/_strcmpi0_strrchrJ0_strpbrk��   _sys_nerr��_sys_errlist�0_spawnve�1       _spawnvpe�2_access�2   __myalloc<3 _flushalln3__getbuf�3_lseekT4_stackavailf4_brkctl*5_strncpyR5_ultoa      �
__cfltcvt_tab     �__asizeC  �__asizeD  �__sigintoff       �__sigintseg\5_isatty: �__days     �__lpdays@6     __isindst�5___tzset�5_tzset�  �    ___mnamesd      �    _daylight`      �    _timezonef      �_tznamej   �    ___dnames
        !          5094: 7_strchr47    __cenvargf9 __dospawnH:
        !          5095: __execloadh:__cxtoa\:
        !          5096: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          5097: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�&��&x�h&��&x��&��&x�x&��&x��&��&&�&&�&&�&���+&u��c��&x0��&x���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&&�&&�&&�&x(��&x�&��&&�&&�&&�&&�&x����&&�&&�&xp��&x����&x�&��&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&y���� �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          5098: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          5099: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          5100: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          5101: u���c&��&&�&
        !          5102: ������&
        !          5103: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          5104: u���c&��&��&
        !          5105: u���c&��&&�&&�&&�&����&
        !          5106: u���c��&���
        !          5107: &
        !          5108: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          5109: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          5110: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          5111: u���c&�!&����&u��c�#&&�&��&
        !          5112: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k��fmainv�
        !          5113: �argc
        !          5114: +argv���files���fi���count���ct���totfiles
���totdirs���fname
        !          5115: ���time     ���str��statb
        !          5116: ���opts&&��Myname��_iob&.��&�&dirtree9v&        �lev�files
        !          5117: �dirs
        !          5118: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          5119: ��name&&&��m&�&�  rmdirtree�\& �lev�files
        !          5120: �dirs
        !          5121: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          5122: ��name&&&"����error-�      �str       �ar1       
        !          5123: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          5124: ���path&&&����  starttime&&���fendtime$p�tv&&&���w�
        !          5125: printtimes�q�tv�nbytes&&&  ����testdir'  �      �dir��statb   ��str&&&�        �^�mtestdir� M      �dir&&&P
        !          5126: �g-�getparm[
        !          5127: V
        !          5128: �parm     �min
        !          5129: �label      ���val&&&�
        !          5130: ���chdrive�
        !          5131: s
        !          5132: �path���desireddrive���drive&&&;�7>complete&&r�&Od
        !          5133: unix_chdir}
        !          5134: �path&&&��!u�getwd�
        !          5135: �path&&&��L��
        !          5136: unix_chmod�;
        !          5137: �path
        !          5138: �mode
���dosmode&&&� ��lstat
        !          5139: �path     
        !          5140: buf&&&%�pagettimeofday0_�TV�TimeZone
��ndostime&&&��rW       statfs��
        !          5141: �path     �buf���&p���&i���drive��q     diskspace&&&�
�h  9
        !          5142: opendir�
�
�dirname���&i���
        !          5143: attributes&&&m�J
        !          5144: �
        !          5145:     rewinddirx�
        !          5146: �dirp���&i���
        !          5147: attributes&&&"�
        !          5148: �
        !          5149: telldir

        !          5150: �dirp&&&-$6
        !          5151: /seekdir8%
        !          5152: �dirp     �loc&&&c'F@ureaddirn5
        !          5153: �dirp&&&�)!��findt_to_dirent�~&f�&d&&&�,X��copynametolower�G
        !          5154: �dest     �src���&i&&&".�closedir-
        !          5155: �dirp&&
        !          5156: �
        !          5157: ��ts��_ctype
        !          5158: �
        !          5159: ��te�pattern�hfindtst��maxentry��currententry��dirlist
��dirst��Myname
���errno��_iobtest4.c\ !-";#I$W%e,k/v1{3�4�5�;�<�=�>�?�@�A�C�D�G�H&K&L
        !          5160: &O
&P&S&T%&U(&V2&WX&X[&Y^&Zb&\e&]n&^�&_�&a�&b�&c�&d�&f�&g�&h�&i�&k�&l�&m�&p�&q�&r�&u�&vxz|A~S]�`�w�����������������-�7�N�]�g������������������������%�(subr.c�.+9,G.J/c0y1�2�4�5�6�7�9�:�;�=A!B0D:E?FRGaIkJ�K�L�N�O�_�k�l�n�o�pqr+t5u:v=wVxlyz�{�|�~�����������
        !          5161: ����"�-�C�X�o��������������������$�2�P�Z�e�}�����������   �     �'     �0     �E     �J     �`     �r     ��     ��     ��     ��     ��     ��     ��     ��     ��     ��     &�     &
        !          5162: &
        !          5163:        & 
        !          5164: 
        !          5165: &1
        !          5166: &>
        !          5167: 
&D
        !          5168: &J
        !          5169: &P
        !          5170: &[
        !          5171: &j
        !          5172: &�
        !          5173: &�
        !          5174: &�
        !          5175:  &�
        !          5176: .&�
        !          5177: 1&�
        !          5178: 3&�
        !          5179: 4&�
        !          5180: 5&6&8&9&+<&5C&;D&FF&XH&bI&lN&rQ&}S&�T&�X&�Z&�[&�_&�b&�c&�d&�h&k&l&p&%r&0u&:v&lw&�x&�|&�&��&��&��&��&��&��&
        !          5181: 
�&
�&)
�&/
�&=
�&U
�&m
�&
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�&�&�&3�&Q�&T�&[�&a�&g�&m�&x�&}�&��&��&��&��&��&��&��&��&�&    �&�&�& �&'�&-�&8�&>�&W�&]�&c�&n�&t�&��&��&��&��&��&��&��&�&"-       3
        !          5182: 9
        !          5183: SLIBCE.LIB�&&&&&�M&&��&&�*�&&�2z&&&&��&&�&~+o&g4�&&3'&�        &&Z&�     �&&s&�
        !          5184: �&&&�&`&&�&|&&�&�U&&     �&       �&&
        !          5185: �&
        !          5186: �
&&�&�G&&&&B
&&
.&&
P
&&E&&^
&&Z&&j
&&p&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&�

&& &�
'&&8&&&Q&:&&h&F&&�&b+&&�&�&&�&�&&�&�&& �& �&&!&!�&&"&&"�&&#;&#5&&$W&$F&&%n&%U&&&�&&g&&'�&'w&&(�&(�%&&)�&)�D&&*�&*�&&+&+�&&,"&,&&-9&-&&.O&.:&&/d&/I5&&0}&0~
&&1�&1��&&2�&2'&&3�&35&&4�&4D&&5�&5R&&6&6^&&7#&7l&&8:&8}&&9R&9�&&:j&:�&&;�&;�#&&<�&<�&&=�&=�&&>�&>�&&?�&?  &&@&@&&A&A)&&B-&B8
&&CG&CE&&D`&DW&&E{&Ee&&F�&Ft
&&G�&G�V&&H�&H�&&I�&I�&&J�&J&,&&K&K-N&&L&L{&&M-&M�&&NG&N�&&Oc&O�&&P�&P�&�7NB00�>&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�     dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          5187: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cl./basic/test5.exe   777  20115     11      106452  4552131770   7210 MZU&' x��-@��^&�i�2
        !          5188: 
        !          5189: U���gWV�6��BP��P�l���hP��P�^����P��P�P����P��P�B����P��P�4��^_��]�U��> �WV�F�
        !          5190: �F��F��F�6&�P����P��P����^�F����N�~u��^��?-t��^�@�F���F��^��?u�r�^����C�#��&P�����.&�R�2&�K�4&�D�^���P�>&P�&        ������&P����#=fu���=hu��=nu���=tu�������N�F�T��~u�$�R&P�&�RP�^�7�����F�V�F�N�~u�!�W&P�&�RP�^�7�����F�F�N�~u��^��F��F�N�~u�
�8��&P�����>2&u��.&�F�&�6��]&P��P����>4&t�
�P� 
        !          5191: ���
        !          5192: �P��
        !          5193: ����F��F���F�&�V��~�~�'}�
        !          5194: �~�r��v�����F�V����߉�������>.&u���F���F��F�9F�|�&��&P�v������F�=|��v��q&P����&P�������P�v�����=|��v���&P�`���&P�����������u����������v���&P�4���&P����F�V�F�V��    �n� �^��~�}�e~�  �~�w�W�F�V��}�~�= w��� �F��v�����P�v��j��;F�u��v���&P����&P�;�����v��������P�v����=|��v���&P�x���&P����F�V�9���t�    9���u�%�v��v����������v���&P�;���&P�����n��>.&u�����P����P�v��.���F�=|��v���&P�����&P�~���F�V�F�V��     �n� �^��~�}��~�  �~�w���F�V��}�~�= w��� �F��v�����P�v��L��;F�u��v��P�q���&P������F��F���F�&�V��F��3�+¹��3�+™;V�}�F~�;F�w�9�v�����F�V�9���t�   9���u��v��P����&P��������v������v��v��v�'P��P�&��
        !          5195: �>.&u�I�������ߋF�RP�v��v��rRP��RP�'�RP���������RP�������߸EP��P�����iP��P�����>.&u��7�F���F��F�9F�|���P�v��a���F�=|��v��kP�'���&P����F�V�F�V��       �n� �^��~�}�e~�  �~�w�W�F�V��}�~�= w��� �F��v�����P�v����;F�u��v��{P����&P�.�����v�����1��>.&u�����P�m���F���P�v��v츌P��P���
        !          5196: �>.&u��v��v�F�RP�RP����P�����P��P�~���v����=|��v���P�
        !          5197: ���&P�
���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          5198: ��P���P�����&P���P��������=|����P��P����&P�
���^������k��=|�������P�S���&P�����t�dž��������F9���|������v��P���P������P�*��=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          5199: �v�v�v�����P����=|��P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          5200: �P���P������P���=|�"�~t����P� P�����&P����^���dž��������F9���|�������v�1P���P������P����=|�%�~u������P�6P����&P����v�v�v�v�v
        !          5201: �v�v�v������FP���=|��IP�G���&P��
        !          5202: �����P�d��=|����P�YP����&P�
        !          5203: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6��iP��P�&�������P�6��{P��P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          5204: �v�v�v��P��
        !          5205: ��(�>Gu�
��P�W�����P��P�
        !          5206: ����P��
        !          5207: ���~�t�
        !          5208: �&P��        ��^_��]�U���_
        !          5209: WV�P�nP���^_��]�U���@
        !          5210: WV�P�fP�����r�t9l~�#}�    9jr��.f&�h�j@B�l�^�j�l+rt�G�W�^�f�h+np��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7��P��P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�FRP��P��P�e    ��^_��]�U��&�=       WV�~t���P����F=t��F�����P�v����=t�<�v��P���P������P���=u��v��P�����&P����v���=|��v��P�k����&P�����v�&��=|��v�P�C����&P����^_��]�U���gWV�~t��4P�
���F=t��F?�v�L&��=|��v�KP�����������^_��]�U���      WV�v�W
���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          5211: �lP�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v��4���F�P�����F�9F�u��^��P��P������&P���^_��]�U���WV�6���P��P�#���6��X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�����^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�#���^_��]�U���TWV�v�v����^_��]�U���4WV�F�P������RP�F�*�+�QP��Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP�h�^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          5212: �F�P�����F�P�v����=u�����V�^�F��G�G+�P�v�+�P�v���^�G�W
        !          5213: +�P�v�+�P�v���^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P��        ����P��P�   ���>�u�����&�P�- �����>�t���~��P�v���P����=u���_�6���P�&���F�&��F���P���=t�!�F������������P��P�[&������F�H�������^_��]�U����WV�F��F�F��P�v���P�-��=u���P�����&P�        ���6���P�����F�&��F���P����=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9��      �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁ���s�3�P���L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�M��f��+�3���;�6�3��6n�6l�6j�}�P�����ظ6���P�5���P���0�!�O�5�!�;�=�%���!�~
        !          5214: �.�M&�6,��
        !          5215: ��3�6�|
        !          5216: s�6��
        !          5217: �ڻ6�|
        !          5218: �M&�,�6��3�&�=t,��.�t��3��u�����V������t&H������V��D�!r
        !          5219: �€t��V@Ky羈
        !          5220: ��
        !          5221: ���
        !          5222: ��
        !          5223: ��U�쾞���}��
        !          5224: ��
        !          5225: �t�U�쾊
        !          5226: ��
        !          5227: �f��
        !          5228: ��
        !          5229: �l�]�t�~u�F�����V&t�>�!C����F�L�!�~
        !          5230: ���|
        !          5231: �;�%�!�>xt
�y�z�%�!�;�s
        !          5232: OO�
�������;�s���Et�����Y��+�r
        !          5233: ;~r����3��k�U���WV�F�F��v������FP�v�v������vV�f����^_��]ÐU���WV�v+��D$<uF�Du�ށ������������� &t'�+D�F��~P�t�D�P����;F�t�L ����D��D��^_��]�U��^;Tr�      ���>�!rƇV�pU���2��~��F���F���u�@u���u�F���V$
        !          5234: Ǵ=�!s=u    ��&t���;���%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�u��F��u�Fu0�>�!�F$
        !          5235: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;Tr
        !          5236: �>�!����
        !          5237: N���&��V�Ë�]�2��ܡI��#�3ɨ�u��&�U����^;Tr�� �\3��N�U��VuN�N�V�?�!s�   �>��V�t7��V�VW�������%�
�<
        !          5238: u��V�:�t<u��V��G���+�_^�k
��&t�<
        !          5239: t�����V@t�D�!�� u  �V��?�!r԰
        !          5240: �,�F��V��?�!r��t�~&t����Ѹ&B�!�&�~�
        !          5241: t�
�V떋V딀~�
        !          5242: u��U����^;Tr� �����V t�B3ɋ��!r���V�tn�V3��F��F��WV����f��N�T�
        !          5243: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          5244: t;�t����#�a�
;�u���
        !          5245: �F����
��^_�U�E3��w�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���V@t�^�?u������F�+F��f�^_�
�N�u���&�V�@�!s�  ���u���V@t
        !          5246: �ڀ?u�������U��^�t�O�&��]�U��VW���?u)��'u3���$@$�������&���D����6��N�؎��_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]���U���WV�6n�tF�~t@�v����������<t*�4�o��;�~��9=u�W�vS�u���u֋�A&��+�^_��]�U���WV�v��t&�<t!V�'�PV��P������P��P��P�w����>G|     ��      9G|��       ��G�㋷H     V����PVW�G����&P��PW�8���^_��]ÐU���V�v��-����������� �F�V�����V����~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�g�����Mx*������W+�P�        ����^_��]�U���v�P�v�������]�U��F%�&�I��]�U�����P�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6n�F�P�v�+�P�S���F�@u�>Gt�F���F���6n�F�P��P+�P�k����]�U��V�C�!r�F�t������&�&C�!�tU��9�U��;�V�!�`U��:�V�!s�=u쒓�C<t
        !          5247: <?t<*u�����U���"WV�v�~�F�D�v��F�P�F�P�{���~�t������F�%��FދF�%?��E+��E�E
        !          5248: �E�u�E&��Vt�$&����&    E�F�W�F�P�F�P�"���F�%��P�F���%?P�F���%P�F�%P�F���%P�F�      ��%P�(���E�U�E�U�E�U�~�t+��E�E�5�u�M �>�&P+�PPV�����F��V��P+�PPV�����E�U+�P�v��v�V�����M�+�^_��]�U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�%��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P����F�P�@��@�F��~�u;�~��V��������u   �G���~9v�~
        !          5249: �G"+���F�PW�&���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�������t1��PW����t��PW����t��PW����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV����t
�G����Y&�+�P�F�P�P����F�N�F�7�v��F�P�F�P����|&:u�������&t� ����-`�+�PP�P�g��*�@�F�~�th��PV�.���t����P+�P�v�������F��u�j�V�l���@t)�v��`����v�������F�+��FЉF��F�!�F��
��v�������+�+��E�E
        !          5250: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P�����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u�G�V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          5251: �}G�V�����F
        !          5252: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          5253: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          5254: ؋^u�F���]���ȋF�f
        !          5255: ȋF��ы�]�U���P�e�>�t����P�S��]ø��V3��B2���2�����Ut
����&P�,�&^Ï��8Ot)�M&�,�r3����3��u�GG�>p�����ыѿ&���M�< t�<  t�<
to
        !          5256: �tkGN�< t�<    t�<
t\
        !          5257: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          5258: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>j�G��׀��+�ģl���6�?CC�6p��
        !          5259: �u���6�M�3���< t�< t�<
u�
        !          5260: �u�y�6�?CCN�< t�<     t�<
tb
        !          5261: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          5262: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�M3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �e_�ϋ���.n��3�I��<;Ct�~EE��
        !          5263: �u���N]��]�U��VW�V��
        !          5264: �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&âR
        !          5265: �u#�>Or
<"s
< r���<v���ט�GÊ���U���WV�v�D��F���-����������� �F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ������������� &uF���t���u3�v������u-�����u�������D��^��G�&��V�F���Du�ށ������������� &tP�<+|�D@��^��GH�D�~W�t�v�����F����^���V t�P+�PPS�H
        !          5266: ���\�F����&��P�FP�v�����F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t�w���d�+���D�D^]ÐU���V�v�����u�F�������u$�F���Du�ށ������������� &t+��5��-����������� �F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�t�~�uv�^�G�P�4���td�F-����������� �F��v�[���^���G�^��+���G�*��^��t��u�G�P�����t      �v���^��]�U��d&��WV�v�������F���F�x�����|�<%t�X��&+����|���~�����z�v���� �|&0u<F��0�3�<+u
�����"��< u
�>�u����v� �<-u���F��P�����u�V��P�f�����>�}�����أ��<.u#��FV��P�<�����>�}
        !          5267: ��&����=Ft2=Nt5=ht =lu�~�>~u�<Lu&F�<u�&�~&���~���~�ӊ�����=Et
        !          5268: =Gt=Xu      �|���� ����-c=v�&��.���+���������i&����v�
        !          5269: P�&���Q&�����z�|�>�u       ��&���������>~u�+��~�F�9�t'���F��>�t   �����.����}+������P�����:P�����~�t"�>�t�F�-���}+��������.��P�������/�+�P��&�*���&����������>~t��N��G�=t�=%u���+�PV�������<t�|��>�uY�x�G tO����M:+V*@+@+@+J+V*J+J+J+J+>*j*p*J+J+0+J+R*J+J+*+�>�t�>�u�x�G u��F뙐��^_��]ÐU���WV�~
        !          5270: t���>~t�>~u����W�F��V����*�>�t����F��F��������F��V����>vt
�F�F�t�F�+����6��>�u*�~�}$�~
        !          5271: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v���
���>�t!W������+ȉN����0F��I���N�|���t<a|�, FG�}�u�>�u���t�~�u�&�+�P���^_��]ÐU���WV�~t�&���F��^�����>~u����W�F��V���������F��F��^����>~u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96�t�����^��F�&�?tF;�~��F�^��F�&�?u�>�+��>�uW�&��V�v��v��o&���>�tW�&��^_��]�U������F��~gt�~Gu�&�*��F��>�u���~�t
�>�u��&�6|�6��v�6��v���        ��
        !          5272: �~�t�>vu�6���   ���>vt�>�u�6���        ���������t�v���   ���t�&�+�P�&��]�U��V�>�u/�x�Ox�F�7��*���S�v�A���@u������^]ÐU���WV�>�uI�v�~B��6x�6��   ���@u����N�~�x�Ox۠��?��*��܃>�u�F&�^_��]�U���WV�v�>�uP��6x�^&��P����@u���F��N�t�x�Ox��^&��x�?��*��҃>�u�F&�^_��]�U���
        !          5273: WV�6�+��F��F��>�0u9�t9zt9�u�� �>�V����F�+�+~�>�u�<-u�>�0u��P�����N��>�0t�~�>�t�~t�F��_�>�t�F��j�>�u&W�����~t  �~�u�5�>�t �~�u�=�v�V������>�t
�� W�a���^_��]Ã>�t�+�� P����Ð�0P������>�u�>|t�X���xP�����ÐU���WV�v�F�&�<*u���?��F�H��<-u�F���F+��<0|5�<909>�u�<0u��0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V��N��F�<t
        !          5274: :u��&��+�^��]ÐU����^;Tr�    �*�F�tH�~
        !          5275: t3ɋѸ&B�!rK�F
        !          5276: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          5277: �B�!r��V����Y�~;�s+�����3�����At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&���&�=��t%���&t��H;�s����&t�����D���G�t���&�t�،�;�t&��7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&���G3���Q�E��&t+�IAA��&;v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�'�����Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          5278: �!W�~��]�M�U�u�E
        !          5279: r3����&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP�^�F�V�^�㋿�       �ƙ����u�~~&G�<�RP�F�RP�-�+�SQ�ȋF
        !          5280: �ڙRP�N�^��Q�&SQ�ȸm&����ЋF�ǙRP�N��^����F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF��b��        ��     &F�V�DP�F��FH�F��F
        !          5281: �F�>� t�F�P�����t        �n��^��F�V�^_��]�U��֋v�^��
        !          5282: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          5283: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          5284: �vV�����&+�P��t�P�F�P�F�P�v
        !          5285: �v����@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�V���t�v���t�PV�v����F���V�v���P������u
�v������z����     PVW�w��P�0���G�v���t�PW�v�F���F��>Gu+��    P�.PW�q���P�8���v���t�PW�v����F�W����v��{���F�^_��]ÐU������WV��(����v
        !          5286: �v�v�v������|�@u2�>Gu+�^���&�</t<\t
        !          5287: �t�&:t��    P�������u��|����PV�F�P�H�����F����<;t��FG�<u��O��z���(�����z��?\t�?/t��     PW����vW����v
        !          5288: �vW�v�������|�@u��>Gu��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
��!����r59�s%P�ر��ًM+���ËشJ�!Xr$�H����.�&�Ë��
�U���WV��+����D�tV��܃�@t&G��96�s��^_��]�U���V�F-����������� �F��P������^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U��VW�~u8���V�FHu�Sr'�H�6,Ht;�t
�D�FV�:^s0����,s�u������ڃ��۱��H�!r钉�T�6,3�_^��]ËN��9Lt����,u���?��r9�ӎ�;�u9�s&����������;�u     ١M+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          5289: �t���2���^_��]�U��VW��U��^;T}��|��V@t�&�3���]��>�u���ÐU���WV��     P�������u��<u��PV�6�        �k�����RP��V��߃�RP���   ��     +���ހ?t��ފ������u      ��ހ?-uG��|؋�ހ?t�P���P�6
        !          5290: �      �����
        !          5291: ��
        !          5292: �?&�@��       ^_��]�U���WV�v�|}��|   ~��|~      �|     }��|
        !          5293: ��l���~�|u�\�㋇�       �
        !          5294: ��\�㋇�      �F���u�F��|
        !          5295: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�n�F�~t)�F�F����^��F��7�����@��^��?t���v�T�F��t�^���Uu�N�u�~�t�F���~t�v�����F�v���v�G�R
        !          5296: ����&��6��F��F�P�݃��F��u!�v���܃����u�G�R�6뷋~��6�^�~��?��$��F��^
        !          5297: ���?�~t-�F�F��+�P�^��7W�,݃�P����@���F��^��?uۃ~�t>+�P�>
        !          5298: PW�݃�P�������F��G+��N���Vt��V����GF��N��G�G�~t�&G�G�vW�܃�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W�܃�P�������F��^��?t� GF�^��?t,�7�/����F��=}v��G�R
        !          5299: �^�7�ۃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�G�����7�VW�؋^
        !          5300: ���ãL
        !          5301: �F�N
        !          5302: �P
        !          5303: �6N
        !          5304: F�Z
        !          5305: �&)�!�&)�j
        !          5306: �!U�>O}!.��>.�&�>�.�5.�6�>�u.�6�>.��>�L
        !          5307: �~t�3��2��P��!X�v&�V�K�!P�P�0�!<X[}!.��>.�&�>�..��>.�6�>�u.�6�>�5���v]_^r�M�!�r���
        !          5308: ������G�]�N
        !          5309: �F�V�~W��
        !          5310: �t��
        !          5311: u�y
        !          5312: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [size count fname]
        !          5313:   Flags:  h    Help - print this usage info
        !          5314:           t    Print execution time statistics
        !          5315:           f    Test function only (negate -t)
        !          5316:           n    Suppress test directory create operations
        !          5317: bigfileunknown option '%c'sizecount%s: read and write
        !          5318: can't create '%s'can't stat '%s''%s' has size %ld, should be 0'%s' write failedcan't stat '%s''%s' has size %ld, should be %ldcan't open '%s''%s' read failedbad data in '%s'        wrote %ld byte file %d times in %d.%-2d seconds (%ld bytes/sec)
        !          5319: can't open '%s''%s' read failed     read %ld byte file %d times
        !          5320: can't unlink '%s'%s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          5321:       %s: (%s)  
        !          5322:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          5323: \*.*rewind failed����;C_FILE_INFO���&&t�C��
�
&&�&         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          5324: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error789:;M_opq���������������������
        !          5325:                      :       %.com.exePATH\Z#Z#Z#Z#Z#��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&�     �       SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO
        !          5326: *
        !          5327: �8<<NMSG>>R6000
        !          5328: - stack overflow
        !          5329: R6003
        !          5330: - integer divide by 0
        !          5331:       R6009
        !          5332: - not enough space for environment
        !          5333: �
        !          5334: �run-time error R6002
        !          5335: - floating point not loaded
        !          5336: &R6001
        !          5337: - null pointer assignment
        !          5338: ���NB009<       TEST5.OBJLSUBR.OBJ^D:\MSC\5.1\LIB\BINMODE.OBJ^�&dos\crt0.asmo&&dos\crt0dat.asm�&
        !          5339: chkstk.asm�>& fprintf.c�&_file.c�n&fflush.cB &
dos\close.asmb�&&dos\open.asm�&dos\read.asm�(&&      write.asmX&nmalloc.asmd?&
        !          5340: strcat.asm�2&
        !          5341: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.c8~&perror.c�x&setbuf.c.V&    sprintf.c�&   creat.asm�&   umask.asm��&system.c:$&
dos\chmod.asm^<&dos\dir.asm�0&&dos\fstat.c��&dos\getcwd.c�<&
        !          5342: dos\stat.c�!
&dos\unlink.asm�!(&dos\d_find.asm�!+&dos\diskfree.asm&"&dos\getdrive.asm:"&dos\gettime.asmT"&dos\setdrive.asmj"�&ldiv.asm#4&lmul.asm:# &dos\crt0msg.asmZ#&
        !          5343: crt0fp.asm`#"&
        !          5344: chksum.asm�#�&&dos\stdargv.asm%n&dos\stdenvp.asm~%T&dos\nmsghdr.asm�%T&dos\dosret.asm&&&_cflush.asm&&V&&  _flsbuf.c|'.&
        !          5345: _freebuf.c�'&& _sftbuf.c�(�&output.c�1z&
dos\lseek.asm2&stackava.asm2a&&amalloc.asmz3&
        !          5346: strlen.asm�3:&strncmp.asm�3T&atox.asm$4&dos\bdos.asm64G&dos\intdos.asm~4&&
        !          5347: dtoxtime.c�5B&stricmp.asm�5+&strrchr.asm6X&strpbrk.asmZ6&syserr.cZ6D&&
dos\spawnve.c�7�&
        !          5348: spawnvpe.c�8&dos\access.asm�8B&dos\stdalloc.asm�82&
        !          5349: flushall.c&9l& _getbuf.c�9�&dos\brkctl.asmV:(&strncpy.asm~:
        !          5350: &        ultoa.asm�:&cmiscdat.asm�:#&
        !          5351: isatty.asm�:&days.c�:�&&tzset.c6<&  timeset.c6<*&
        !          5352: strchr.asm`<'&
dos\cenvarg.c�>�&dos\dospawn.asmt?&dos\execload.asm�?_&xtoa.asm.&��_Tflag0&��_Hflag2&��_Fflag4&��_Nflag�_usagek�_main��_pattern��h_findtst���    _maxentry���
_currententry���_dirlist���_dirst���_Myname�_statfs�_opendir�'_readdir�
        !          5353: _rewinddir@
        !          5354: �_error@.      _closedir�
        !          5355: _starttime7�_endtimeK$_seekdir-"_telldir��_printtimes:�_testdir
� _mtestdirn
�_getparmY�  _complete���_diropenL�_dirtreeC�
_gettimeofday��_unix_chdir��_getwd��
        !          5356: _rmdirtree��_unix_chmod#�_lstat�
�_chdrive��__fmode��__iomodef�_edata��_end��__aexit_rtn,�__abrkp��__abrktb��__asizds^__astart��__atopsp,�        __abrktbe� __cintDIVv�&
        !          5357: __acrtused&__amsg_exitO�__osversionG�_errno�__exitv�__childT�__nfile__cinitj�___argcy�__intnoO�
__dosvermajorR�__oserrl�___argvP�
__dosverminorn�_environV�__osfileQ�__osmodeK�__pspadr|
        !          5358: �__fpinitz�__ovlvecp�__pgmptr.�      __acfinfox� __ovlflag;� __aintdivO� __osmajorP� __osminorI�
        !          5359: __umaskval0
        !          5360: __ctermsubR�
        !          5361: __doserrno?�__fac�_exitM�__psp~�STKHQQ�__chkstk�_fprintf�
�__bufin��__bufout��__buferr �__iob2��       __lastiob��__iob�_fflushB_closej
        !          5362: __copensubb_open�__cXENIXtoDOSmode_read�_write_malloc__nfree��__asegds       __nmalloc_freed_strcat�_strcpy�_atol��__ctype��__ctype_�_getenv8_perror�_setbuf._sprintf�_creat�_umask�_system:_chmode_chdir^_mkdirr_rmdir�_fstat�_getcwd�        __getdcwd< _stat�!_remove�!_unlink�!__dos_findnext�!__dos_findfirst�!__dos_getdiskfree&"__dos_getdrive:"
__dos_gettimeT"__dos_setdrivej"__aNldiv#__aNlmul#  __aNulmul:#__FF_MSGBANNER��    __adbgmsgv�& __acrtmsgZ#__fptrap`#__nullcheck�#        __setargv% __setenvp~%__NMSG_TEXT�%__NMSG_WRITE�%    __dosret0�%
        !          5363: __maperror�%
        !          5364: __dosretax�%__dosreturn��__cflush&&__flsbuf|'       __freebuf.(__ftbuf�'__stbuf�(__output�1_lseek2_stackavailZ3__amallocbrk�__aseg1�__asegh
        !          5365: �__asegn�__asegr83__amlink�       __QChdata2 __amalloc�2
        !          5366: __amexpand�
        !          5367: __amblksizz3_strlen�3_strncmp�3__catox$4_bdos64_intdos~4
        !          5368: __dtoxtime�5_stricmp�5_strcmpi�5_strrchr6_strpbrk�        �    _sys_nerrH      �_sys_errlistZ6_spawnve�7  _spawnvpe�8_access�8   __myalloc�8 _flushall&9__getbuf�9_brkctlV:_strncpy~:_ultoa�     �
__cfltcvt_tab�     �__asizeC�  �__asizeD�  �__sigintoff�       �__sigintseg�:_isatty� �__days�    �__lpdaysl;     __isindst�:___tzset�:_tzset
        !          5369: �   ___mnames�      �    _daylight�      �    _timezone�      �_tzname
        !          5370: �   ___dnames6<_strchr`<   __cenvarg�> __dospawnt?
        !          5371: __execload�?__cxtoa�?
        !          5372: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          5373: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�0&��&x�h&��&x��&��&x�x&��&x��&��&&�&&�&&�&���+&u��c��&x@��&    x�&��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x(��&x0��&&�&&�&&�&x����&&�&&�&&�&&�&x����&x����&&�&&�&&�&&�&x�&��&&�&&�&&�&&�&&�&x����&x����&x� &��&x��&x����&&�&&�&&�&&�&&�&&�&&�&y����    �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          5374: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          5375: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          5376: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          5377: u���c&��&&�&
        !          5378: ������&
        !          5379: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          5380: u���c&��&��&
        !          5381: u���c&��&&�&&�&&�&����&
        !          5382: u���c��&���
        !          5383: &
        !          5384: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          5385: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          5386: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          5387: u���c&�!&����&u��c�#&&�&��&
        !          5388: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k��f6mainv�
        !          5389: �argc
        !          5390: +argv���count���ct
        !          5391: ���size���si���&i���fd���bytes
���bigfile
        !          5392: ���time��statb
        !          5393: ���opts     �ߪbuf&&���Myname��_iob&L��&�&dirtreeWv&  �lev�files
        !          5394: �dirs
        !          5395: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          5396: ��name&&&��m&�&�  rmdirtree�\& �lev�files
        !          5397: �dirs
        !          5398: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          5399: ��name&&&@
        !          5400: ����errorK
        !          5401: �     �str       �ar1       
        !          5402: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          5403: ���path&&&���  starttime&&7���fendtimeBp�tv&&&���w�
        !          5404: printtimes�q�tv�nbytes&&&:����testdirE�        �dir��statb   ��str&&&
�^�mtestdir
M     �dir&&&n
�g-�getparmy
V
        !          5405: �parm     �min
        !          5406: �label      ���val&&&�
���chdrive�
s
        !          5407: �path���desireddrive���drive&&&Y�7>complete&&��&Od
        !          5408: unix_chdir�
        !          5409: �path&&&��!u�getwd�
        !          5410: �path&&&��L��
        !          5411: unix_chmod�;
        !          5412: �path
        !          5413: �mode
���dosmode&&&#� ��lstat.
        !          5414: �path     
        !          5415: buf&&&C�pagettimeofdayN_�TV�TimeZone
��ndostime&&&��rW       statfs��
        !          5416: �path     �buf���&p���&i���drive��q     diskspace&&&��h  9
        !          5417: opendir��
�dirname���&i���
        !          5418: attributes&&&��J
        !          5419: �
        !          5420:     rewinddir��
        !          5421: �dirp���&i���
        !          5422: attributes&&&-"�
        !          5423: �
        !          5424: telldir8

        !          5425: �dirp&&&K$6
        !          5426: /seekdirV%
        !          5427: �dirp     �loc&&&�'F@ureaddir�5
        !          5428: �dirp&&&�)!��findt_to_dirent�~&f�&d&&&�,X��copynametolower�G
        !          5429: �dest     �src���&i&&&@.�closedirK
        !          5430: �dirp&&
        !          5431: n��ts���_ctype
        !          5432: f��te��pattern��hfindtst���maxentry���currententry���dirlist
���dirst���Myname
G��errno��_iobtest5.c�#$%-&;'I(W)e1k4v6{;�A�B�C�D�E�F�G�I�J�M�N�Q�R&U&V       &Y&Z&[ &\*&]P&^S&_V&`Z&b]&cf&d�&e�&g�&h�&i�&j�&l�&m�&n�&o�&q�&r�&s�&v�&w�&x�&{�&} ~� �*�V�k�n�x�{�������������������H�l�����������������������*�B�O�Y������������6�C�M�P�S�\�s�}�������������&�U�y���������������������
��,�9�C�Fsubr.c�L+W,e.h/�0�1�2�4�5�6�7�9�:�;=,A?BNDXE]FpGI�J�K�L�N�O�_�k�l�n�o       p     q:     rI     tS     uX     v[     wt     x�     y�     z�     {�     |�     ~�     �     ��     ��     �
        !          5433: �
        !          5434: �(
        !          5435: �2
        !          5436: �7
        !          5437: �:
        !          5438: �@
        !          5439: �K
        !          5440: �a
        !          5441: �v
        !          5442: ��
        !          5443: ��
        !          5444: ��
        !          5445: ��
        !          5446: ��
        !          5447: ��
        !          5448: ����#�1�7�B�P�n�x��������������4�:�E�N�c�h�~�����������������
�
        !          5449: 
�
&
&$
&9
      &>
        !          5450: &O
&\

&b
&h
&n
&y
&�
&�
&�
&�
 &�
.&�
1&�
3&�
4&5&#6&-8&89&I<&SC&YD&dF&vH&�I&�N&�Q&�S&�T&�X&�Z&�[&�_&�b&�c&d&h&#k&.l&=p&Cr&Nu&Xv&�w&�x&�|&�&��&��&��&��&��&��&(�&2�&G�&M�&[�&s�&��&��&��&��&��&��&��&��&��&��&��&��&&�&�& �&&�&4�&Q�&o�&r�&y�&�&��&��&��&��&��&��&��&��&��&��&�&�&!�&'�&-�&8�&>�&E�&K�&V�&\�&u�&{�&��&��&��&��&��&��&��&��&��&��&�&7:@K        Q
        !          5451: W
        !          5452: SLIBCE.LIB�&&&&&�M&&#�&&+�&&r3&&&�&&&,o&�5�&&3'&�        &&Z&
        !          5453: �&&s&�
        !          5454: �&&&�&�&&�&�&&�&�U&&     �&       
&&
        !          5455: �&
        !          5456: 

&&�&,
5&&&&a
&&
1&&
m

&&G&&z
G&&_&&�
&&v&&�
&&�&&�
&&�&&�
&&�&&&&�&&&&�&&"&&�&&0&&
&?
&&#&L
&&9&Y&&N&g
&&h&t'&&�&�
&&�&�&&�&�&&�&�&& �& �+&&!�&!&&"&"1&&#8&#F&&$T&$Z&&%q&%o&&&�&&~&&'�&'�5&&(�&(�&&)�&)�&&*�&*�&&+&&+&&,&,%&&-9&-8D&&.T&.|&&/l&/�&&0�&0�&&1�&1�&&2�&2�&&3�&3�
&&4�&4�&&5�&5��&&6&6�&&7&&7�&&8>&8�&&9S&9�&&:l&:�&&;�&;�&&<�&<�&&=�&=&&>�&>&&?�&?"#&&@�&@E&&A&AT&&B,&Bd&&CG&Cr&&Dd&D�&&E{&E�&&F�&F�&&G�&G�&&H�&H�
&&I�&I�V&&J�&J!&&K
        !          5457: &K/&&L&LK,&&M1&MwN&&NG&N�&&O^&O�&&Px&P�&&Q�&Q�&&R�&R&9NB00�?�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�       dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          5458: diskfre./basic/test6.exe   777  20115     11      106075  4552132044   7205 MZ�&& |��@
        !          5459: &j�����
        !          5460: ��
        !          5461: �U���WV�6��BP�TP����jP�TP�
        !          5462: ����P�TP������P�TP������P�TP�����0&P�TP����^_��]�U��*&�WV�F�l&�F��dž���dž��dž��dž���P�w���P�TP����^�F����N�~u��^��?-t��^�@�F���F��^��?u��^����J���&P�p���b&�a�f&�Z�h&�S�j&�L�^���P�r&P�������&P�6���+=fu���=hu��=iu���=nu��=tu�����q��N�F�E��~u�!��&P�&�RP�^�7�u���F��F�N�~u�"��&P�&�RP�^�7�K�������F�N�~u��^��F��F�N�~u�
���&P�x���v������F��>f&u��b&dž��&�F�9�����v�������&P����&P�/���~���P��&P����&P�
���6���&P�TP����>h&t�
�P�M      ���
        !          5463: �P�
        !          5464: ������P����P��&P�v�P�v��&P�0���>b&u�����&P�v
������=t���&P��&P�����&P�}���F���F���9F�|�Q��������F�dž���F��F���F�~�@|��^�Ƈr������������F�=u�q&�����v��
        !          5465: P�_��=t�&�~�u��P�X���&P�����F����:�v��%P�$��=t�%����u��(P����&P��������r��v��v��v��0��=u�'�>j&u��N���v��BP�����&P�a���F�F��F��v��)����������}�����}��v��\P����&P������������ʸ&���ȋ����ٙ3�+¹��3�+‹���r*��u��v��vP�H���F��,���������ʰ&���ȋ����ٙ3�+¹��3�+‹��r�z��~�t��v�P�����F샾��t��v�P�����F�dž��������F�9���|�d���������ʸ&���ȋ����ٙ3�+¹��3�+‹���r*��u�+�����v��P����P�E���v���P��P�i���F����F���������F�9���|�d���������ʸ&���ȋ����ٙ3�+¹��3�+‹���r*��t�+�����v�P����P�����v���P�
        !          5466: P�����F����~�u��v�7P�����&P�Y���v��v�RP����P�z������P����=|�����P�WP����&P����������w���>b&u�����P�Y���v������gP�TP����>b&u�+�PP����P�����P�TP�|���&P����P����P��P�v�P�v��&P�&���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          5467: ��P���P�v����&P���P�������=|����P��P����&P�
���^������k��=|�������P�S���&P�����t�dž��������F9���|������v��P���P�������P���=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          5468: �v�v�v������P����=|���P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          5469: ��P���P�������P�J��=|�"�~t����P��P�����&P����^���dž��������F9���|�������v��P���P������P����=|�%�~u������P�P����&P����v�v�v�v�v
        !          5470: �v�v�v������P���=|��P�G���&P��
        !          5471: �����P�@��=|����P�%P����&P�
        !          5472: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6��5P�\P�&�������P�6��GP�\P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          5473: �v�v�v�\P��
        !          5474: ��(�>u�
�RP�3
����TP�\P�
        !          5475: ���\P��
        !          5476: ���~�t�
        !          5477: �&P��        ��^_��]�U���_
        !          5478: WV�P�:P���^_��]�U���@
        !          5479: WV�P�2P�����>�@98~�#}�    96r��.2&�4�6@B�8�^�6�8+>@�G�W�^�2�4+:<��W^_��]�U���    WV�'�RP�^�w�w�?RP�^�w�7�VP�TP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v��RP�lP�TP�e    ��^_��]�U��&�=       WV�~t��}P�a���F=t��F�����P�v�u��=t�<�v��P���P�}�����P����=u��v��P�����&P����v�z
��=|��v��P�k����&P�����v�&��=|��v��P�C����&P����^_��]�U���gWV�~t��P�
        !          5480: ���F=t��F�v�L&��=|��v�P�����������^_��]�U���     WV�v�3
        !          5481: ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          5482: �8P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������qu��^��- ��^��-@�F��F�P�v������F�P����F�9F�u��^��P�gP������&P���^_��]�U���WV�6���P�TP�#���6��X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v����^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v��
        !          5483: ���^_��]�U���TWV�v�v����^_��]�U���4WV�F�P�����RP�F�*�+�QP�F�Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������qu��^��- ��^��-@�F��
        !          5484: �F�P�
���F�P�v��j
��=u�����V�^�F��G�G+�P�v�+�P�v��H�^�G�W
        !          5485: +�P�v�+�P�v��0�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P�7����P��P�����>�u�����&�P������>�t���~��P�v���P�s��=u���_�6���P�&���F�&��F���P�8��=t�!�F������������P��P�[&������F�H�����p�^_��]�U����WV�F��F�F��P�v���P����=u���P�����&P� ���6���P�����F�&��F���P���=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9��      �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������q&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁ���s�]3�P��
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6���2��+�3���;���Q3��6:�68�66���P�����ظ6���P��
        !          5486: �M
��P���0�!��5�!��  �%���!�J�.�&�6,�L��3�6�Hs�
        !          5487: 6�P�ڻ6�H�&�,�6��3�&�=t,����t��3��u�����"������t&H������"��D�!r
        !          5488: �€t��"@Ky�T�T��T�T��U��j�j�}�T�V�t�U��V�V�f�V�V�l�  
        !          5489: �t�~u�F�����"&t�>�!C����F�L�!�J���H��%�!�>Dt
�E�F�%�!�;�s
        !          5490: OO�
�������;�s���Et�����Y��+�r
        !          5491: ;Jr����3��k�U���WV�F�F��v�
�����FP�v�v������vV�����^_��]ÐU���WV�v+��D$<uF�Du�ށ�L�������������&t'�+D�F��~P�t�D�P���;F�t�L ����D��D��^_��]�U��^; r�      ���>�!rƇ"�U��^�t�O�&��]�U��VW�f�?u)��u3���$@$��f�h��&���D����6l�N�؎��S_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]�U��׋ތ؎��v�~3�������+��t������]�U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]���U���WV�6:�tF�~t@�v�����������<t*�4�q���;�~��9=u�W�vS�w����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�)��PV��P�����P�rP��P����>|       �`
        !          5492: 9|�`
        !          5493: ���㋷
        !          5494: V�����PVW�c���&P�uPW�T��^_��]ÐU���V�v��-L������������F�V����V�j
        !          5495: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v������]�U��F%�&���]�U����xP�����F��~u+�P�v��|���u�&�Z+��V�F���F�F��F��~�t&�6:�F�P�v�+�P�
���F�@u�>t�F���F���6:�F�P��P+�P�%����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          5496: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P���*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�����F�P�r���@�F��~�u;�~��V�v������u ����~9v�~
        !          5497: �"+���F�PW�����^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�������t1��PW����t��PW�{���t��PW�l���u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV����t
�����Y&�+�P�F�P�P����F�N�F�7�v��F�P�F�P����|&:u������q&t� ����-`�+�PP�P�Q��*�@�F�~�th��PV����t����P+�P�v�������F��u�j�V����@t)�v������v������F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          5498: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P�����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u��V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          5499: �}G�V�����F
        !          5500: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          5501: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          5502: ؋^u�F���]���ȋF�f
        !          5503: ȋF��ы�]�U���P�e�>�t����P�S��]ø���V3��B2���2�����Ut
����&P�,�&^Ï��8t)�&�,�>3����3��u�GG�><�����ыѿ&����< t�<  t�<
to
        !          5504: �tkGN�< t�<    t�<
t\
        !          5505: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          5506: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>6�G��׀��+�ģ8���6�?CC�6<��
        !          5507: �u���6��3���< t�< t�<
u�
        !          5508: �u�y�6�?CCN�< t�<     t�<
tb
        !          5509: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          5510: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �O_�ϋ���.:��3�I��<;Ct�~EE��
        !          5511: �u���N]��]�U��VW�V�`�;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â
        !          5512: �u#�>r
<"s
< r���<v���ט�Ê���U���WV�v�D��F���-L������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�L�������������&uF��Tt��\u3�v��O���u-����Tu�������D��^��G�&��V�0���Du�ށ�L�������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���" t�P+�PPS�8���\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t�!���d�+���D�D^]ÐU���V�v����Tu�F������\u$�F���Du�ށ�L�������������&t+��5��-L������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~Tt�~\uv�^�G�P����td�F-L������������F��v����^���G�^��+���G�*��^��t��u�G�P�O���t      �v�l��^��]�U��d&��WV�v�����`�F�P�F�D�Z�X�|�<%t�X�\&+��L�H�V�J�T�R�F�B�N�f �|&0u<F�f0�3�<+u
�L�R�"��< u
�>Lu�R��B� �<-u��NF��P�����u�V�bP�f�����>b}�N�b�أb�<.u#�TFV�\P�<�����>\}
        !          5513: �\&�T��=Ft2=Nt5=ht =lu�J�>Ju�<Lu&F�<u�&�J&���J���J�ӊ�����=Et
        !          5514: =Gt=Xu      �H���� ����-c=v�&��.���&�P��X��P�i&��V�B�
        !          5515: P�&���Q&�����F�H�>Tu       �^&���^�T�\�>Ju�+��J�F�9bt'�b�F��>Nt   �b���.b�b�}+��b�P�P�����:P�����~�t"�>Nt�F�-�b�}+��b���b�.P�P�������/�+�P��&�*���&����������>Jt��N��G�=t�=%u���+�PV�������<t�|��>XuY�D�G tO����M�&�%�&�&�&�&�%�&�&�&�&�%�%�%�&�&�&�&�%�&�&�&�>Zt�>Xu�D�G u��F뙐�X^_��]ÐU���WV�~
        !          5516: t�V�>Jt�>Ju�P��W�F��V��P�*�>Vt�P��F��F����P���F��V��P�>Bt
�F�F�t�F�+��d�6`�>Vu*�~�}$�~
        !          5517: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v��M���>Tt!W�����\+ȉN����0F��I���N�H���t<a|�, FG�}�u�>Vu�LRt�~�u�&�+�P���^_��]ÐU���WV�~t�&�P�F��^��P��>Ju�P��W�F��V��P���P��F��F��^��P�>Ju
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96Tt�\���^��F�&�?tF;�~��F�^��F�&�?u�>b+��>NuW�&��V�v��v��o&���>NtW�&��^_��]�U����P�F��~gt�~Gu�&�*��F��>Tu�\�~�t
�>\u�\&�6H�6\�v�6`�v��t
        !          5518: ��
        !          5519: �~�t�>Bu�6`�v
        !          5520: ���>Bt�>\u�6`�z
        !          5521: ���P�d�LRt�v��|
        !          5522: ���t�&�+�P�&��]�U��V�>Zu/�D�Ox�F�7��*���S�v�A���@u�Z���X^]ÐU���WV�>ZuI�v�~B��6D�6f�  ���@u�Z��N�~�D�Ox۠f�?��*��܃>Zu�F&X^_��]�U���WV�v�>ZuP��6D�^&��P����@u�Z�F��N�t�D�Ox��^&��D�?��*��҃>Zu�F&X^_��]�U���
        !          5523: WV�6`+��F��F��>f0u9Tt9Ft9^u�f �>bV����F�+�+~�>Nu�<-u�>f0u��P�����N��>f0t�~�>Nt�~t�F��_�>dt�F��j�>Nu&W�����~t  �~�u�5�>dt �~�u�=�v�V������>Nt
�f W�a���^_��]Ã>Lt�+�� P����Ð�0P������>du�>Ht�X���xP�����ÐU���WV�v�F�&�<*u�P�?�PF�H��<-u�F���F+��<0|5�<909>Tu�<0u�f0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          5524: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          5525: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          5526: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ; r
        !          5527: �>�!����
        !          5528: N���&��"�Ë�]�2��ܡ��#�3ɨ�u��&�U����^; r�  �����" t�B3ɋ��!r���"�tn�V3��F��F��WV����f��N�T�
        !          5529: �uJ�r=�vH���ܺ=(s��+�ԋ��N�<
        !          5530: t;�t����#�a�
;�u���
        !          5531: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���"@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���"@t
        !          5532: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�]�����Z[t��U��WV�v3��3۬< t�<  t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          5533: �!W�~��]�M�U�u�E
        !          5534: r3����&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP�t�F�V�^�㋿�
        !          5535: �ƙ����u�~~&G�<�RP�F�RP�C�+�SQ�ȋF
        !          5536: �ڙRP�N�^��)칀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�����
        !          5537: ��
        !          5538: &F�V�DP�F��FH�F��F
        !          5539: �F�>�
        !          5540: t�F�P����t       �n��^��F�V�^_��]�U��֋v�^��
        !          5541: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          5542: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          5543: �vV� ���&+�P��t�P�F�P�F�P�v
        !          5544: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V���P�������u
�v�����z���b
        !          5545: PVW�7��P������v���t�PW�v�����F��>u+�g
        !          5546: P�.PW�q���P�����v���t�PW�v����F�W�D���v��;���F�^_��]ÐU����C�WV��(����v
        !          5547: �v�v�v������|�@u2�>u+�^���&�</t<\t
        !          5548: �t�&:t�l
        !          5549: P�/�����u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�q
        !          5550: PW������vW������v
        !          5551: �vW�v�������|�@u��>u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
��7����r59�s%P�ر��ً+���ËشJ�!Xr$�H����.�&�Ë��w�U���WV�L+����D�tV�0߃�@t&G��96ds��^_��]�U���V�F-L������������F��P�߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^; r�  �*�F�tH�~
        !          5552: t3ɋѸ&B�!rK�F
        !          5553: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          5554: �B�!r��"����Y�J;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          5555: �t���2���^_��]�U��VW��U��^; }��|��"@t�&�3���]��>hu��hÐU���WV��
        !          5556: P��ރ����u��<u��PV�6�
        !          5557: �k�����RP��V�ރ�RP���
        !          5558: ��
        !          5559: +���ހ?t��ފ�����qu     ��ހ?-uG��|؋�ހ?t�P���P�6�
        !          5560: �      ������
        !          5561: ���
        !          5562: �?&�@��
        !          5563: ^_��]�U���WV�v�|}��|  ~��|~      �|     }��|
        !          5564: ��l���~�|u�\�㋇�
        !          5565: �
        !          5566: ��\�㋇�
        !          5567: �F���u�F��|
        !          5568: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�:�F�~t)�F�F����^��F��7�܃�@��^��?t���v� �F��t�^���!u�N�u�~�t�F���~t�v�_܃��F�v���v��
        !          5569: ����&��6����F��F�P�?ۃ��F��u!�v��/ۃ����u���6�뷋~��6��^�~��?��$��F��^
        !          5570: ���?�~t-�F�F��+�P�^��7W�`ۃ�P����@���F��^��?uۃ~�t>+�P�
        !          5571: PW�6ۃ�P�������F��G+��N���"t��"����GF��N��G�G�~t�&G�G�vW��ڃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W�ڃ�P�������F��^��?t� GF�^��?t,�7��ڃ��F��=}v���
        !          5572: �^�7��ك����
�^�ƈ�F�^_��]ÐU��~&t�~t
��������VW�؋^
        !          5573: ���ã�F���6F�&�&)�!�&)�6�!U�>}!.�X<.�&V<�.�5.�6Z<�u.�6\<.�^<��~t�3��2��P��!X�B&�V�K�!P�P�0�!<X[}!.�X<.�&V<�..�^<.�6\<�u.�6Z<�5���B]_^r�M�!����V���������N
        !          5574: �F�V�~W��
        !          5575: �t��
        !          5576: u�y
        !          5577: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfni] [files count fname]
        !          5578:   Flags:  h    Help - print this usage info
        !          5579:           t    Print execution time statistics
        !          5580:           f    Test function only (negate -t)
        !          5581:           n    Suppress test directory create operations
        !          5582:           i    Ignore non-test files dir entries
        !          5583: file.unknown option '%c'filescountcount (%d) can't be greater than files (%d)too many files requested (max is %d)%s: readdir
        !          5584: dir...can't opendir %s.'.' dir entry read twice..'..' dir entry read twiceunexpected dir entry '%s'unexpected dir entry '%s'duplicate '%s' dir entry readdidn't read '.' dir entry, pass %ddidn't read '..' dir entry, pass %d%s%dunlinked '%s' dir entry read pass %d%s%ddidn't read expected '%s' dir entry, pass %dTest failed with %d errors%s%dcan't unlink %s       %d entries read, %d files
        !          5585: dir.%s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          5586:       %s: (%s)  
        !          5587:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          5588: \*.*rewind failed����;C_FILE_INFO���&&@�C���&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          5589: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error���                                         +       ;       <       =       M       _       `       a       b       n       �       �       �       �       �       �       �       �       �       �       �       �       �       �       �       �       �       �       
        !          5590: %.com.exePATH\�������;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&�
        !          5591: �
        !          5592: SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�
        !          5593: ��
        !          5594: �66<<NMSG>>R6000
        !          5595: - stack overflow
        !          5596: R6003
        !          5597: - integer divide by 0
        !          5598:       R6009
        !          5599: - not enough space for environment
        !          5600: �
        !          5601: �run-time error R6002
        !          5602: - floating point not loaded
        !          5603: &R6001
        !          5604: - null pointer assignment
        !          5605: ���NB00�9�       TEST6.OBJ�SUBR.OBJ
        !          5606: D:\MSC\5.1\LIB\BINMODE.OBJ
        !          5607: �&dos\crt0.asm�o&&dos\crt0dat.asm,&
        !          5608: chkstk.asmB>& fprintf.c�&_file.c�n&fflush.c� &
dos\close.asmX&nmalloc.asmf?&
        !          5609: strcat.asm�2&
        !          5610: strcpy.asm�+&
        !          5611: strcmp.asm&
        !          5612: strlen.asm :&strncmp.asmZ&atoi.asm^&atol.asmb&       ctype.asmb^&getenv.c�~&perror.c>x&setbuf.c�V&    sprintf.c&   creat.asm$&   umask.asm6�&system.c�$&
dos\chmod.asm�<&dos\dir.asm"�&dos\getcwd.c�<&
        !          5613: dos\stat.c
&dos\unlink.asm*(&dos\d_find.asmR+&dos\diskfree.asm~&dos\getdrive.asm�&dos\gettime.asm�&dos\setdrive.asm��&ldiv.asm^4&lmul.asm� &dos\crt0msg.asm�&
        !          5614: crt0fp.asm�"&
        !          5615: chksum.asm��&&dos\stdargv.asmh n&dos\stdenvp.asm� T&dos\nmsghdr.asm*!T&dos\dosret.asm~!&_cflush.asm~!V&&  _flsbuf.c�".&
        !          5616: _freebuf.c#&& _sftbuf.c$�&output.c�,�&&dos\open.asm�.(&&     write.asm�/a&&amalloc.asm1T&atox.asmf1&dos\bdos.asmx1G&dos\intdos.asm�1&&
        !          5617: dtoxtime.c�2B&stricmp.asm3+&strrchr.asmD3X&strpbrk.asm�3&syserr.c�3D&&
dos\spawnve.c�4�&
        !          5618: spawnvpe.c�5&dos\access.asm�5B&dos\stdalloc.asm662&
        !          5619: flushall.ch6l& _getbuf.c�6z&
dos\lseek.asmN7&stackava.asm`7�&dos\brkctl.asm$8(&strncpy.asmL8
        !          5620: &        ultoa.asmV8&cmiscdat.asmV8#&
        !          5621: isatty.asmz8&days.cz8�&&tzset.c:&  timeset.c:*&
        !          5622: strchr.asm.:'&
dos\cenvarg.cV<�&dos\dospawn.asmB=&dos\execload.asmV=_&xtoa.asmr��_bitmap�_usagey�_mainb&��_Tflagd&��_Hflagf&��_Fflagh&��_Nflagj&��_Iflag��_pattern��h_findtst��� _maxentry���
_currententry���_dirlistp��_dirst���_Myname__statfsU_opendir-'_readdir7
        !          5623: _rewinddir�    �_error�.       _closedir�
        !          5624: �
        !          5625: _starttime�
        !          5626: �_endtime�$_seekdir�"_telldird�_printtimes��_testdir��     _mtestdir
�_getparm�  _complete���_diropen��_dirtree��
_gettimeofday<�_unix_chdirb�_getwd�
        !          5627: _rmdirtree��_unix_chmod��_lstat�
�_chdrive��__fmode��__iomode2�_edata��_end��__aexit_rtn��__abrkp��__abrktb��__asizds
        !          5628: __astart��__atopsp��    __abrktbe� __cintDIVv�&
        !          5629: __acrtused�__amsg_exit�__osversion�_errno�__exitB�__child �__nfile�__cinit6�___argcE�__intno�
__dosvermajor�__oserr8�___argv�
__dosverminor:�_environ"�__osfile�__osmode�__pspadrH�__fpinitF�__ovlvec<�__pgmptr��      __acfinfoD� __ovlflag� __aintdiv� __osmajor� __osminor�
        !          5630: __umaskval�
        !          5631: __ctermsub�
        !          5632: __doserrno�__fac�_exit�__pspJ�STKHQQ,__chkstkB_fprintf��__bufin��__bufout��__buferr��__iob2d�       __lastiobL�__iob�_fflush�_close _malloc__nfreef�__asegds        __nmalloc_freef_strcat�_strcpy�_strcmp_strlen _strncmpZ_atoi^_atolp�__ctypep�__ctype_b_getenv�_perror>_setbuf�_sprintf_creat$_umask6_system�_chmod�_chdir�_mkdir�_rmdir"_getcwd6      __getdcwd�_stat_remove_unlink*__dos_findnext4__dos_findfirstR__dos_getdiskfree~__dos_getdrive�
__dos_gettime�__dos_setdrive�__aNldiv^__aNlmul^  __aNulmul�__FF_MSGBANNER��    __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargvh  __setenvp� __NMSG_TEXT&!__NMSG_WRITE*!    __dosret0J!
        !          5633: __maperror=!
        !          5634: __dosretax2!__dosreturn��__cflush~!__flsbuf�"       __freebuf�#__ftbuf#__stbuf$__output�,
        !          5635: __copensub�,_openw.__cXENIXtoDOSmode�._write�0__amallocbrk��__aseg1��__asegh��__asegn��__asegr�0__amlink��    __QChdata�/ __amalloc�0
        !          5636: __amexpand��
        !          5637: __amblksiz1__catoxf1_bdosx1_intdos�1
        !          5638: __dtoxtime�2_stricmp�2_strcmpi3_strrchrD3_strpbrk`
        !          5639: �   _sys_nerr
        !          5640: �_sys_errlist�3_spawnve�4 _spawnvpe�5_access�5   __myalloc66 _flushallh6__getbuf�6_lseekN7_stackavail`7_brkctl$8_strncpyL8_ultoat
        !          5641: �
__cfltcvt_tab�
        !          5642: �__asizeC�
        !          5643: �__asizeD�
        !          5644: �__sigintoff~
        !          5645: �__sigintsegV8_isatty�
        !          5646: �__days�
        !          5647: �__lpdays:9    __isindstz8___tzset�8_tzset�
        !          5648: �   ___mnames�
        !          5649: �   _daylight�
        !          5650: �   _timezone�
        !          5651: �_tzname�
        !          5652: �   ___dnames:_strchr.:   __cenvarg`< __dospawnB=
        !          5653: __execloadb=__cxtoaV=
        !          5654: __cltoasub&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&xh��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x���&&�&u��c�&&�&&�&&�&&�&x�@&��&x�h&��&x��&��&x�x&��&x��&��&x��&��&���+&u��c��&x0��&x���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&&�&&�&&�&x�`&��&x�(&��&xh��&&�&&�&&�&x(��&&�&x��&x����&&�&&�&&�&&�&&�&x����&x��&x����&&�&&�&&�&&�&x����&x�&��&x� &��&&�&&�&&�&x����&x����&&�&&�&&�&&�&&�&&�&&�&y����       �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          5655: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          5656: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          5657: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          5658: u���c&��&&�&
        !          5659: ������&
        !          5660: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          5661: u���c&��&��&
        !          5662: u���c&��&&�&&�&&�&����&
        !          5663: u���c��&���
        !          5664: &
        !          5665: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          5666: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          5667: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          5668: u���c&�!&����&u��c�#&&�&��&
        !          5669: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�icusage&&y�t�main�n
        !          5670: �argc
        !          5671: +argv���dp���fname���files���fi���count���ct
���entries���totfiles
���totdirs   ���dir
        !          5672: ���time���&p     ���str
        !          5673: ���opts     ���err���&i       ���dot���dotdot���nmoffset&&���Mynamer��bitmapL�_iob&���&�&dirtreev&       �lev�files
        !          5674: �dirs
        !          5675: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          5676: ��name&&&�m&�&�  rmdirtree�\& �lev�files
        !          5677: �dirs
        !          5678: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          5679: ��name&&&�      ����error�    �      �str       �ar1       
        !          5680: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          5681: ���path&&&�
        !          5682: ���    starttime&&�
        !          5683: ���fendtime�
        !          5684: p�tv&&&d��w�
        !          5685: printtimesoq�tv�nbytes&&&�����testdir��        �dir��statb   ��str&&&��^�mtestdir�M     �dir&&&
�g-�getparm%
V
        !          5686: �parm     �min
        !          5687: �label      ���val&&&�
���chdrive�
s
        !          5688: �path���desireddrive���drive&&&�7>complete&&<�&Od
        !          5689: unix_chdirG
        !          5690: �path&&&b�!u�getwdm
        !          5691: �path&&&��L��
        !          5692: unix_chmod�;
        !          5693: �path
        !          5694: �mode
���dosmode&&&�� ��lstat�
        !          5695: �path     
        !          5696: buf&&&��pagettimeofday�_�TV�TimeZone
��ndostime&&&_�rW       statfsj�
        !          5697: �path     �buf���&p���&i���drive��q     diskspace&&&U�h  9
        !          5698: opendir`�
�dirname���&i���
        !          5699: attributes&&&7�J
        !          5700: �
        !          5701:     rewinddirB�
        !          5702: �dirp���&i���
        !          5703: attributes&&&�"�
        !          5704: �
        !          5705: telldir�

        !          5706: �dirp&&&�$6
        !          5707: /seekdir%
        !          5708: �dirp     �loc&&&-'F@ureaddir85
        !          5709: �dirp&&&s)!��findt_to_dirent~~&f�&d&&&�,X��copynametolower�G
        !          5710: �dest     �src���&i&&&�.�closedir�
        !          5711: �dirp&&
        !          5712: :��tsp��_ctype
        !          5713: 2��te��pattern��hfindtst���maxentry���currententry���dirlist
p��dirst���Myname
��errnoL�_iobtest6.c�$%&-';(I)W*e+s/y7�8�:�<�=�>�F�G�H�I�J�K�L�N&O       &R&S&V&W&Z!&[%&^(&_,&b/&c@&dC&eM&f{&g~&h�&i�&k�&l�&m�&n�&p�&q�&r�&s�&u�&v�&w�&x�&z�&{�&|&��!�'�-�9�J�T�^�l�v���������������������'�,�2�7�K�V�k�o������������������������������"�+�8�M�Z�d���������������������(�^�t���������������
        !          5714: �� �*�?�R�a�k&n&x&�&�&�&�
        !          5715: &�&�&�
&�subr.c��+,./-0C1^2m4w5|6�7�9�:�;�=�A�B�DE FG+I5JPKbLlNvOy_k�l�n�o�p�q�r�t�u        v     w      x6     yI     zR     {U     |d     ~n     �     ��     ��     ��     ��     ��     ��     ��     ��     ��     ��     �
        !          5716: �"
        !          5717: �9
        !          5718: �|
        !          5719: ��
        !          5720: ��
        !          5721: ��
        !          5722: ��
        !          5723: ��
        !          5724: ��
        !          5725: ��
        !          5726: ��
        !          5727: ��
        !          5728: ��
        !          5729: ��
        !          5730: ��
        !          5731: ��$�/�G�^�d�o���������������*�<�O�\�f�w������������&�&�&�       &�
        !          5732: &�&

&
&
&
&%
&4
&O
&h
&r
 &{
.&�
1&�
3&�
4&�
5&�
6&�
8&�
9&�
<&�
C&D&F&"H&,I&6N&<Q&GS&PT&\X&bZ&m[&}_&�b&�c&�d&�h&�k&�l&�p&�r&�u&v&6w&Sx&Y|&_&j�&p�&��&��&��&��&��&��&��&��&�&�&7�&I�&O�&U�&`�&e�&r�&��&��&��&��&��&��&��&��&��&��&��&�&�&%�&+�&1�&7�&B�&G�&M�&f�&p�&z�&��&��&��&��&��&��&��&��&��&��&��&�&�&!�&'�&-�&8�&>�&J�&S�&m�&s�&~�&��&��&�&����        �
        !          5733: 
        !          5734: SLIBCE.LIB�&&&&&�h&&:�&&�*J&&&�3V&&&)�&&�&:,o&�5�&&3'&
        !          5735: &&Z&*
        !          5736: �&&s&�
        !          5737: �&&&�&�&&�&�&&�&�U&&     �&       '
&&
        !          5738: �&
        !          5739: 5

&&�&B
G&&&&�
&&
.&&
�
&&E&&�
&&\&&�
&&s&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&&&�&&&&�&&!&&
        !          5740: &/&& &>
&&6&K
&&L&X&&a&f
&&{&s'&&�&�&&�&�&&�&�&& �& �+&&!�&!&&"&"#&&#3&#8&&$O&$L&&%l&%a&&&�&&p&&'�&'�5&&(�&(�&&)�&)�&&*�&*�&&+�&+�&&,&,%&&-4&-*D&&.O&.n&&/g&/}&&0}&0�&&1�&1�&&2�&2�&&3�&3�5&&4�&4�
&&5�&5      �&&6&6�&&7&7�&&84&8�&&9O&9�&&:f&:�&&;~&;�&&<�&<&&=�&=#&&>�&>=&&?�&?L&&@�&@\&&A&Aj&&B,&Bz&&CC&C�&&DY&D�
&&Es&E�&&F�&F�&&G�&G�&&H�&H�
&&I�&I�V&&J�&J8&&K&KF&&L&Lb,&&M,&M�N&&NB&N�&&OY&O�&&Ps&P�&&Q�&Q
        !          5741: &&R�&R&�9NB00L@minute�&�second��hsecond�&y@�r�s�
        !          5742: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&./basic/test7.exe   777  20115     11      104000  4552132117   7171 MZ�% y���@��&���o,�
        !          5743: �
        !          5744: �U����WV�6��BP��P�����oP��P������P��P������P��P�����P��P���^_��]�U��8�WV�F�
        !          5745: dž��
        !          5746: dž��dž���F�>&dž��D&�P�����P��P�����^�F����N�~u��^��?-t��^�@�F���F��^��?u�r�^����C���&P�N���6&�R�:&�K�<&�D�^���P�M&P�������&P����#=fu���=hu��=nu���=tu�������N�F�T��~u�!�a&P�&�RP�^�7�b        ���F��F�N�~u�"�g&P�&�RP�^�7�8       �������F�N�~u��^��F��F�N�~u��^������F�N�~u�
���&P�L���>:&u��6&dž��&�6��m&P��P������&P��P�����><&t�
�P�h���
        !          5747: �P�1������P����P��&P�v��P�v��&P�K���>6&u���F���F�����9F�|�&dž��������F�9���|�&�����v���&P����P�0������������&P����P�������P����P�3��=|�����P����P��&P����&P�3������P����P����=t�����P��&P�x���&P�������P����P���=|�����P��&P�G���&P��������&u���������P�P� ���&P�������P����P�t��=|�����P����P�3P�����&P�t������P����P���=|�����P����P�IP����&P�>������&u���������P�gP����&P����n��S��>6&u�����P�_���v��F�������P��P��P����>6&u�+�PP����P�����P��P�|���&P����P����P��P�v��P�v��&P�&���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          5748: ��P���P������&P���P�7������=|����P��P����&P�
���^������k��=|�������P�S���&P�����t�dž��������F9���|������v��P���P�[�����P���=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          5749: �v�v�v�����P����=|��P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          5750: �P���P�i�����P����=|�"�~t����P�P�����&P����^���dž��������F9���|�������v�+P���P�������P����=|�%�~u������P�0P����&P����v�v�v�v�v
        !          5751: �v�v�v������@P���=|��CP�G���&P��
        !          5752: �����P���=|����P�SP����&P�
        !          5753: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6��cP��P�&�������P�6��uP��P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          5754: �v�v�v��P��
        !          5755: ��(�>Au�
��P������P��P�
        !          5756: ����P��
        !          5757: ���~�t�
        !          5758: �&P��        ��^_��]�U���_
        !          5759: WV�P�hP���^_��]�U���@
        !          5760: WV�P�`P�����l�n9f~�#}�    9dr��.`&�b�d@B�f�^�d�f+ln�G�W�^�`�b+hj��W^_��]�U���    WV�'�RP�^�w�w��RP�^�w�7��P��P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�RP��P��P�e    ��^_��]�U��&�=       WV�~t���P��
        !          5761: ���F=t��F�����P�v���=t�<�v��P���P�������P�l��=u��v��P�����&P����v����=|��v��P�k����&P�����v�&��=|��v�
P�C����&P����^_��]�U���gWV�~t��.P�
        !          5762: ���F=t��F9�v�L&��=|��v�EP�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          5763: �fP�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v��n���F�P�6���F�9F�u��^��P��P������&P���^_��]�U���WV�6���P��P�#���6��X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          5764: ���^_��]�U���TWV�v�v�?���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          5765: �F�P�1
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          5766: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P�7����P��P�����>�u�����&�P������>�t���~��P�v���P�&��=u���_�6���P�&���F�&��F���P����=t�!�F������������P��P�[&������F�H�������^_��]�U����WV�F��F�F��P�v���P�g��=u���P�����&P� ���6���P�����F�&��F���P���=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9��      �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁ���s��
        !          5767: 3�P�T
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�G��`��+�3���;�p��
        !          5768: 3��6h�6f�6d�&�P�����ظ6��PP�o
        !          5769: ����P���0�!�I�5�!�5�7�%�n�!�x
        !          5770: �.�G&�6,�z
        !          5771: ��3�6�v
        !          5772: s�A
        !          5773: 6�~
        !          5774: �ڻ6�v
        !          5775: �G&�,�6��3�&�=t,��(�t��3��u�����P������t&H������P��D�!r
        !          5776: �€t��P@Ky羂
        !          5777: ��
        !          5778: ���
        !          5779: ��
        !          5780: ��U�쾘���}��
        !          5781: ��
        !          5782: �t�U�쾄
        !          5783: ��
        !          5784: �f��
        !          5785: ��
        !          5786: �l�  �t�~u�F�����P&t�>�!C����F�L�!�x
        !          5787: ���v
        !          5788: �5�%�!�>rt
�s�t�%�!�;�s
        !          5789: OO�
�������;�s���Et�����Y��+�r
        !          5790: ;xr����3��k�U���WV�F�F��v�:
�����FP�v�v�B�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�z������������&t'�+D�F��~P�t�D�P�I��;F�t�L ����D��D��^_��]�U��^;Nr�      ���>�!rƇP�
        !          5791: U��^�t�O�&��]�U��VW���?u)��Ku3���$@$�������&���D����6��N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6h�tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�K�PV��P�����P��P��P����>A|     ��      9A|��       ��A�㋷B     V�
        !          5792: ��PVW�w���&P��PW�h��^_��]ÐU���V�v��-z�����������F�V����V�~
        !          5793: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�K�����Mx*������W+�P�����^_��]�U���v�P�v������]�U��F%�&�C��]�U�����P�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6h�F�P�v�+�P�w���F�@u�>At�F���F���6h�F�P��P+�P�����]�U��V�C�!r�F�t������&�&C�!�XU��9�U��;�V�!�DU��:�V�!s�=u쒓�C<t
        !          5794: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�y��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�Z���F�P���@�F��~�u;�~��V��������u �A���~9v�~
        !          5795: �A"+���F�PW�V���^_��]ÐU��W�V�~�V�!_�JU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1��PW�����t��PW�����t��PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�A����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th��PV�n���t����P+�P�v�������F��u�j�V����@t)�v��|����v������F�+��FЉF��F�!�F��
��v�������+�+��E�E
        !          5796: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u�A�V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          5797: �}G�V�����F
        !          5798: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          5799: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          5800: ؋^u�F���]���ȋF�f
        !          5801: ȋF��ы�]�U���P�e�>�t����P�S��]ø�g�V3��B2���2�����Ut
����&P�,�&^Ï��8It)�G&�,�l3����3��u�GG�>j�����ыѿ&���G�< t�<  t�<
to
        !          5802: �tkGN�< t�<    t�<
t\
        !          5803: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          5804: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>d�G��׀��+�ģf���6�?CC�6j��
        !          5805: �u���6�G�3���< t�< t�<
u�
        !          5806: �u�y�6�?CCN�< t�<     t�<
tb
        !          5807: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          5808: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�G3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.h��3�I��<;Ct�~EE��
        !          5809: �u���N]��]�U��VW�V��
        !          5810: �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&âL
        !          5811: �u#�>Ir
<"s
< r���<v���ט�AÊ���U���WV�v�D��F���-z�����������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�z������������&uF���t���u3�v�����u-�����u�������D��^��G�&��V����Du�ށ�z������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���P t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v�����u�F�������u$�F���Du�ށ�z������������&t+��5��-z�����������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�t�~�uv�^�G�P����td�F-z�����������F��v�!���^���G�^��+���G�*��^��t��u�G�P����t      �v����^��]�U��d&�y�WV�v�������F�~�F�r�����|�<%t�X��&+��z�v���x�����t�p�|�� �|&0u<F��0�3�<+u
�z���"��< u
�>zu����p� �<-u��|F��P�����u�V��P�f�����>�}�|���أ��<.u#��FV��P�<�����>�}
        !          5812: ��&����=Ft2=Nt5=ht =lu�x�>xu�<Lu&F�<u�&�x&���x���x�ӊ�����=Et
        !          5813: =Gt=Xu      �v���� ����-c=v�&��.��D$�~�����~�i&����p�
        !          5814: P�&���Q&�����t�v�>�u       ��&���������>xu�+��x�F�9�t'���F��>|t   �����.����}+����~�P�����:P�����~�t"�>|t�F�-���}+��������.~�P�������/�+�P��&�*���&����������>xt��N��G�=t�=%u���+�PV�������<t�|��>�uY�r�G tO����M�##�#�#�#$#$$$$�" #&#$$�#$#$$�#�>�t�>�u�r�G u��F뙐��^_��]ÐU���WV�~
        !          5815: t���>xt�>xu�~��W�F��V��~�*�>�t�~��F��F����~���F��V��~�>pt
�F�F�t�F�+����6��>�u*�~�}$�~
        !          5816: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>�t!W�   ����+ȉN����0F��I���N�v���t<a|�, FG�}�u�>�u�z�t�~�u�&�+�P���^_��]ÐU���WV�~t�&�~�F��^��~��>xu�~��W�F��V��~���~��F��F��^��~�>xu
�F�F�u���      �~�u   ���F��^��F��V��F�V�+�96�t�����^��F�&�?tF;�~��F�^��F�&�?u�>�+��>|uW�&��V�v��v��o&���>|tW�&��^_��]�U����~�F��~gt�~Gu�&�*��F��>�u���~�t
�>�u��&�6v�6��v�6��v���        ��
        !          5817: �~�t�>pu�6���   ���>pt�>�u�6���        ���~���z�t�v���   ���t�&�+�P�&��]�U��V�>�u/�r�Ox�F�7��*���S�v�A���@u������^]ÐU���WV�>�uI�v�~B��6r�6��   ���@u����N�~�r�Ox۠��?��*��܃>�u�F&�^_��]�U���WV�v�>�uP��6r�^&��P����@u���F��N�t�r�Ox��^&��r�?��*��҃>�u�F&�^_��]�U���
        !          5818: WV�6�+��F��F��>�0u9�t9tt9�u�� �>�V����F�+�+~�>|u�<-u�>�0u��P�����N��>�0t�~�>|t�~t�F��_�>�t�F��j�>|u&W�����~t  �~�u�5�>�t �~�u�=�v�V������>|t
�� W�a���^_��]Ã>zt�+�� P����Ð�0P������>�u�>vt�X���xP�����ÐU���WV�v�F�&�<*u�~�?�~F�H��<-u�F���F+��<0|5�<909>�u�<0u��0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          5819: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          5820: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          5821: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;Nr
        !          5822: �>�!����
        !          5823: N���&��P�Ë�]�2��ܡC��#�3ɨ�u��&�U����^;Nr�  �����P t�B3ɋ��!r���P�tn�V3��F��F��WV����f��N�T�
        !          5824: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          5825: t;�t����#�a�
;�u���
        !          5826: �F����
��^_�U�E3����PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���P@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���P@t
        !          5827: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&���&�=��t%���&t��H;�s����&t�����D���G�t���&�t�،�;�t&��7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&���G3���Q�E��&t+�IAA��&;v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          5828: �!W�~��]�M�U�u�E
        !          5829: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿�       �ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          5830: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�����        ��     &F�V�DP�F��FH�F��F
        !          5831: �F�>� t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          5832: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          5833: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          5834: �vV� ���&+�P��t�P�F�P�F�P�v
        !          5835: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P�������u
�v������z����     PVW�S��P����A�v���t�PW�v�����F��>Au+��    P�.PW�q���P����v���t�PW�v����F�W�`���v��W���F�^_��]ÐU����_�WV��(����v
        !          5836: �v�v�v������|�@u2�>Au+�^���&�</t<\t
        !          5837: �t�&:t��    P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t��     PW������vW������v
        !          5838: �vW�v�������|�@u��>Au��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������r59�s%P�ر��ًG+���ËشJ�!Xr$�H����.�&�Ë���U���WV�z+����D�tV�L߃�@t&G��96�s��^_��]�U���V�F-z�����������F��P�߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;Nr�  �*�F�tH�~
        !          5839: t3ɋѸ&B�!rK�F
        !          5840: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          5841: �B�!r��P���Y�x;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6&Ht;�t
�D�FV�:^s0����&s�u������ڃ��۱��H�!r钉�T�6&3�_^��]ËN��9Lt����&u���?��r9�ӎ�;�u9�s&����������;�u ١G+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          5842: �t���2���^_��]�U��VW��U��^;N}��|��P@t�&�3���]��>�u���ÐU���WV��     P�_ރ����u��<u��PV�6�        �k�����RP��V�+ރ�RP�7��   ��     +���ހ?t��ފ������u      ��ހ?-uG��|؋�ހ?t�P���P�6�    �       ������       ���  �?&�@��        ^_��]�U���WV�v�|}��|   ~��|~      �|     }��|
        !          5843: ��l���~�|u�\�㋇�       �
        !          5844: ��\�㋇�      �F���u�F��|
        !          5845: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�h�F�~t)�F�F����^��F��7�^���@��^��?t���v�N�F��t�^���Ou�N�u�~�t�F���~t�v�����F�v���v�A�L
        !          5846: ����&��6��F��F�P�[ۃ��F��u!�v��Kۃ����u�A�L�6뷋~��6�^�~��?��$��F��^
        !          5847: ���?�~t-�F�F��+�P�^��7W�|ۃ�P����@���F��^��?uۃ~�t>+�P�8
        !          5848: PW�Rۃ�P�������F��G+��N���Pt��P����GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v��A�L
        !          5849: �^�7��ك����
�^�ƈ�F�^_��]ÐU��~&t�~t
�A�����k�VW�؋^
        !          5850: ���ãF
        !          5851: �F�H
        !          5852: �J
        !          5853: �6H
        !          5854: F�T
        !          5855: �&)�!�&)�d
        !          5856: �!U�>I}!.�:.�&
        !          5857: :�.�5.�6:�u.�6:.�:�F
        !          5858: �~t�3��2��P��!X�p&�V�K�!P�P�0�!<X[}!.�:.�&
        !          5859: :�..�:.�6:�u.�6:�5���p]_^r�M�!����
        !          5860: ������A��N
        !          5861: �F�V�~W��
        !          5862: �t��
        !          5863: u�y
        !          5864: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [files count fname nname]
        !          5865:   Flags:  h    Help - print this usage info
        !          5866:           t    Print execution time statistics
        !          5867:           f    Test function only (negate -t)
        !          5868:           n    Suppress test directory create operations
        !          5869: file.newfile.unknown option '%c'filescount%s: link and rename
        !          5870:       (abbreviated because DOS doesn't support links)
        !          5871: dir.%s%d%s%dcan't rename %s to %s%s exists after renamecan't stat %s after rename%s has %d links after rename (expect 1)can't rename %s to %scan't stat %s after unlink %s%s has %d links after unlink (expect 1)   %d renames and links on %d files
        !          5872: dir.%s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          5873:       %s: (%s)  
        !          5874:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          5875: \*.*rewind failed�g��;C_FILE_INFO���&&n�C��
�
&&�&         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          5876: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error12345GYijk{��������������������                      4       %.com.exePATH\��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&�     �       SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO
        !          5877: �$
        !          5878: ��3<<NMSG>>R6000
        !          5879: - stack overflow
        !          5880: R6003
        !          5881: - integer divide by 0
        !          5882:       R6009
        !          5883: - not enough space for environment
        !          5884: �
        !          5885: �run-time error R6002
        !          5886: - floating point not loaded
        !          5887: &R6001
        !          5888: - null pointer assignment
        !          5889: ���NB00�8�       TEST7.OBJ�SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm�o&&dos\crt0dat.asm�&
        !          5890: chkstk.asm>& fprintf.cP&_file.cPn&fflush.c� &
dos\close.asm�X&nmalloc.asm6?&
        !          5891: strcat.asmv2&
        !          5892: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.c
        !          5893: ~&perror.c�x&setbuf.cV&    sprintf.cV&   creat.asmn&   umask.asm��&system.c$&
dos\chmod.asm0<&dos\dir.asml�&dos\getcwd.c*&dos\rename.asm><&
        !          5894: dos\stat.cz
&dos\unlink.asm�(&dos\d_find.asm�+&dos\diskfree.asm�&dos\getdrive.asm�&dos\gettime.asm
        !          5895: &dos\setdrive.asm �&ldiv.asm�4&lmul.asm� &dos\crt0msg.asm&
        !          5896: crt0fp.asm"&
        !          5897: chksum.asm8�&&dos\stdargv.asm�n&dos\stdenvp.asm4T&dos\nmsghdr.asm�T&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c2 .&
        !          5898: _freebuf.c` && _sftbuf.cz!�&output.cB*�&&dos\open.asm�+(&&     write.asm-a&&amalloc.asmp.&
        !          5899: strlen.asm�.:&strncmp.asm�.T&atox.asm/&dos\bdos.asm,/G&dos\intdos.asmt/&&
        !          5900: dtoxtime.c�0B&stricmp.asm�0+&strrchr.asm�0X&strpbrk.asmP1&syserr.cP1D&&
dos\spawnve.c�2�&
        !          5901: spawnvpe.c�3&dos\access.asm�3B&dos\stdalloc.asm�32&
        !          5902: flushall.c4l& _getbuf.c�4z&
dos\lseek.asm5&stackava.asm5�&dos\brkctl.asm�5(&strncpy.asm6
        !          5903: &        ultoa.asm
        !          5904: 6&cmiscdat.asm
        !          5905: 6#&
        !          5906: isatty.asm.6&days.c.6�&&tzset.c�7&  timeset.c�7*&
        !          5907: strchr.asm�7'&
dos\cenvarg.c
        !          5908: :�&dos\dospawn.asm�:&dos\execload.asm
        !          5909: ;_&xtoa.asm�_usagek�_main6&��_Tflag8&��_Hflag:&��_Fflag<&��_Nflag��_pattern��h_findtst���    _maxentry���
_currententry���_dirlist���_dirst���_Myname/
_statfs%_opendir�'_readdir
        !          5910: _rewinddir��_error�.  _closedir��
        !          5911: _starttime��_endtime�$_seekdir�"_telldir4       �_printtimes�       �_testdir�
        !          5912: �   _mtestdir�
        !          5913: �_getparm��    _complete���_diropen��_dirtree��
_gettimeofday�_unix_chdir2�_getwdO�
        !          5914: _rmdirtreeS�_unix_chmod��_lstatQ�_chdrive��__fmode��__iomode`�_edata��_end��__aexit_rtn&�__abrkp��__abrktb��__asizds�__astart��__atopsp&�        __abrktben __cintDIVv�&
        !          5915: __acrtused}__amsg_exitI�__osversionA�_errnog__exitp�__childN�__nfile�__cinitd�___argcs�__intnoI�
__dosvermajorL�__oserrf�___argvJ�
__dosverminorh�_environP�__osfileK�__osmodeE�__pspadrv
        !          5916: �__fpinitt�__ovlvecj�__pgmptr(�      __acfinfor� __ovlflag5� __aintdivI� __osmajorJ� __osminorC�
        !          5917: __umaskval�
        !          5918: __ctermsubL�
        !          5919: __doserrno9�__facP_exitG�__pspx�STKHQQ�__chkstk_fprintf�
�__bufin��__bufout��__buferr�__iob2��       __lastiobz�__iobP_fflush�_close�_malloc�__nfree��__asegds�       __nmalloc�_free6_strcatv_strcpy�_atol��__ctype��__ctype_�_getenv
        !          5920: _perror�_setbuf_sprintfV_creatn_umask�_system_chmod7_chdir0_mkdirD_rmdirl_getcwd�     __getdcwd*_rename�_statz_removez_unlink�__dos_findnext�__dos_findfirst�__dos_getdiskfree�__dos_getdrive�
__dos_gettime
        !          5921: __dos_setdrive __aNldiv�__aNlmul�       __aNulmul�__FF_MSGBANNER��    __adbgmsgv�& __acrtmsg__fptrap__nullcheck8        __setargv� __setenvp4__NMSG_TEXT___NMSG_WRITE�    __dosret0�
        !          5922: __maperror�
        !          5923: __dosretax�__dosreturn��__cflush�__flsbuf2        __freebuf� __ftbuf` __stbufz!__outputJ*
        !          5924: __copensubB*_open�+__cXENIXtoDOSmode�+_writeP.__amallocbrk�__aseg1
        !          5925: �__asegh�__asegn�__asegr..__amlink
        !          5926: �  __QChdata- __amalloc�-
        !          5927: __amexpand�
        !          5928: __amblksizp._strlen�._strncmp�.__catox/_bdos,/_intdost/
        !          5929: __dtoxtime�0_stricmp�0_strcmpi�0_strrchr�0_strpbrk�        �    _sys_nerrB      �_sys_errlistP1_spawnve�2  _spawnvpe�3_access�3   __myalloc�3 _flushall4__getbuf�4_lseek5_stackavail5_brkctl�5_strncpy6_ultoa�      �
__cfltcvt_tab�     �__asizeC�  �__asizeD�  �__sigintoff�       �__sigintseg
        !          5930: 6_isatty� �__days�    �__lpdays�6     __isindst.6___tzset>6_tzset
        !          5931: �   ___mnames�      �    _daylight�      �    _timezone�      �_tzname�   �    ___dnames�7_strchr�7   __cenvarg: __dospawn�:
        !          5932: __execload;__cxtoa
        !          5933: ;
        !          5934: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          5935: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x0��&xH��&x���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x����&x��&��&&�&&�&&�&x(��&&�&&�&&�&&�&&�&&�&x����&&�&&�&x����&x����&x�@&��&x����&&�&&�&x�&��&&�&x��&&�&&�&&�&&�&&�&&�&&�&y����   �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          5936: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          5937: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          5938: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          5939: u���c&��&&�&
        !          5940: ������&
        !          5941: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          5942: u���c&��&��&
        !          5943: u���c&��&&�&&�&&�&����&
        !          5944: u���c��&���
        !          5945: &
        !          5946: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          5947: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          5948: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          5949: u���c&�!&����&u��c�#&&�&��&
        !          5950: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�]f�mainvL
        !          5951: �argc
        !          5952: +argv���files���fi���count���ct���totfiles
���totdirs���fname���nname
        !          5953: ���time     ���str       ���new��statb
        !          5954: ���opts&&���Mynamez�_iob&���&�&dirtree�v&        �lev�files
        !          5955: �dirs
        !          5956: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          5957: ��name&&&O�m&�&�  rmdirtreeZ\& �lev�files
        !          5958: �dirs
        !          5959: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          5960: ��name&&&�����error��      �str       �ar1       
        !          5961: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          5962: ���path&&&����  starttime&&����fendtime�p�tv&&&4        ��w�
        !          5963: printtimes?  q�tv�nbytes&&&� ����testdir�  �      �dir��statb   ��str&&&�
        !          5964: �^�mtestdir�
        !          5965: M     �dir&&&�
        !          5966: �g-�getparm�
        !          5967: V
        !          5968: �parm     �min
        !          5969: �label      ���val&&&Q���chdrive\s
        !          5970: �path���desireddrive���drive&&&��7>complete&&�&Od
        !          5971: unix_chdir
        !          5972: �path&&&2�!u�getwd=
        !          5973: �path&&&S�L��
        !          5974: unix_chmod^;
        !          5975: �path
        !          5976: �mode
���dosmode&&&�� ��lstat�
        !          5977: �path     
        !          5978: buf&&&��pagettimeofday�_�TV�TimeZone
��ndostime&&&/
�rW       statfs:
�
        !          5979: �path     �buf���&p���&i���drive��q     diskspace&&&%�h  9
        !          5980: opendir0�
�dirname���&i���
        !          5981: attributes&&&�J
        !          5982: �
        !          5983:     rewinddir�
        !          5984: �dirp���&i���
        !          5985: attributes&&&�"�
        !          5986: �
        !          5987: telldir�

        !          5988: �dirp&&&�$6
        !          5989: /seekdir�%
        !          5990: �dirp     �loc&&&�'F@ureaddir5
        !          5991: �dirp&&&C)!��findt_to_direntN~&f�&d&&&d,X��copynametoloweroG
        !          5992: �dest     �src���&i&&&�.�closedir�
        !          5993: �dirp&&
        !          5994: h��ts���_ctype
        !          5995: `��te��pattern��hfindtst���maxentry���currententry���dirlist
���dirst���Myname
A��errnoz�_iobtest7.cg !-";#I$W%e)k,v.{0�1�2�3�:�;�<�=�>�?�@�B�C�F&G   &J&K&N&O&R&S+&T.&U8&V^&Wa&Xd&Yh&[k&\t&]�&^�&`�&a�&b�&c�&e�&f�&g�&h�&j�&k�&l�&m�&o�&p�&q�&tuvy{/~=G�T�^����������������� �8�G�Q�i�x��������������������2�<�?�B�L�W�r�|��������subr.c��+�,�.�/�01.2=4G5L6^7l9v:y;�=�A�B�D�E�F�G�IJ K2L<NFOI_OkZlhnko�p�q�r�t�u�v�w�xyz"{%|4~>\�n�x���������������������        �L�V�c�q�{�����������������������    �.     �4     �?     �k     ��     ��     ��     ��     ��     ��     ��     ��     �
        !          5996: �
        !          5997: �,
        !          5998: �6
        !          5999: �G
        !          6000: �T
        !          6001: �^
        !          6002: �o
        !          6003: �|
        !          6004: ��
        !          6005: ��
        !          6006: &�
        !          6007: &�
        !          6008: &�
        !          6009:        &�
        !          6010: 
        !          6011: &�
        !          6012: &�
        !          6013: 
&�
        !          6014: &�
        !          6015: &�
        !          6016: &�
        !          6017: &&&8&B &K.&Q1&\3&h4&�5&�6&�8&�9&�<&�C&�D&�F&�H&�I&N&Q&S& T&,X&2Z&=[&M_&Sb&^c&�d&�h&�k&�l&�p&�r&�u&�v&
w&#
x&)
|&/
&:
�&@
�&T
�&`
�&k
�&w
�&�
�&�
�&�
�&�
�&�
�&�
�&�&�&�&%�&0�&5�&B�&P�&Z�&`�&f�&s�&}�&��&��&��&��&��&��&��&��&��&&�&�&�&�&�&6�&@�&J�&X�&u�&��&��&��&��&��&��&��&��&��&��&��&��&��&��&�&�&�&#�&=�&C�&N�&^�&d�&o&����       �
        !          6018: �
        !          6019: SLIBCE.LIB�&&&&&�M&&�&&�*�&&R3�&&&&��&&�&�+o&�4�&&3'&�        &&Z&�     �&&s&�
        !          6020: �&&&�&{&&�&�&&�&�U&&     �&       �&&
        !          6021: �&
        !          6022:       

&&�&
G&&&&]
&&
.&&
k
&&E&&y
&&Z&&�
&&p&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&
&& &'&&8&7&&Q&U&&l&c&&�&o&&�&�+&&�&�&&�&�&& �& �&&!&!�&&",&"&&#A&#&&$V&$:5&&%r&%o&&&�&&~&&'�&'�&&(�&(�&&)�&)�%&&*�&*�D&&+&+&&,'&,(&&-=&-7&&.T&.G&&/j&/c&&0&0r5&&1�&1�
&&2�&2��&&3�&3P&&4�&4^&&5�&5m&&6
        !          6023: &6{&&7#&7�&&8>&8�&&9U&9�&&:m&:�&&;�&;�&&<�&<�#&&=�&=&&>�&>&&?�&?$&&@�&@2&&A&AB&&B2&BR&&CH&Ca
&&Db&Dn&&E{&E�&&F�&F�&&G�&G�
&&H�&H�V&&I�&I&&J�&J&&K&K*,&&L&LVN&&M1&M�&&NH&N�&&Ob&O�&&P~&P�&&Q�&Q�&�8NB001?./basic/test8.exe   777  20115     11      100263  4552132173   7203 MZ�&" x���@�~�&n{�}
{�{�{U����WV�6r�BP�XP�����oP�XP������P�XP������P�XP������P�XP���^_��]�U��:�WV�F�
        !          6024: dž��dž��dž���F�>&�F�D&�P�����P�XP�����^�F��r�6r�W&P�XP�V���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          6025: ��&P���P������&P���P�7������=|����P��&P����&P�
���^������k��=|�������&P�S���&P�����t�dž��������F9���|������v��&P���P�[�����P���=|����P��&P��&���&P����^����P�+��=|����P��&P��&���&P�N���v�v�v�v
        !          6026: �v�v�v������&P����=|���&P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          6027: ��&P���P�i�����P����=|�"�~t����P��&P�����&P����^���dž��������F9���|�������v�&P���P�������P����=|�%�~u������P�P����&P����v�v�v�v�v
        !          6028: �v�v�v������P���=|��P�G���&P��
        !          6029: �����P���=|����P�)P����&P�
        !          6030: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6r�9P�`P�&�������P�6r�KP�`P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          6031: �v�v�v�`P��
        !          6032: ��(�>u�
�VP�����XP�`P�
        !          6033: ���`P��
        !          6034: ���~�t�
        !          6035: �&P��        ��^_��]�U���_
        !          6036: WV�P�>
        !          6037: P���^_��]�U���@
        !          6038: WV�P�6
        !          6039: P�����B
        !          6040: �D
        !          6041: 9<
        !          6042: ~�#}�       9:
        !          6043: r��.6
        !          6044: &�8
        !          6045: �:
        !          6046: @B�<
        !          6047: �^�:
        !          6048: �<
        !          6049: +B
        !          6050: D
        !          6051: �G�W�^�6
        !          6052: �8
        !          6053: +>
        !          6054: @
        !          6055: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7�ZP�XP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�lRP�pP�XP�e    ��^_��]�U��&�=       WV�~t���P��
        !          6056: ���F=t��F�����P�v����=t�<�v��P���P�������P�l��=u��v��P�����&P����v����=|��v��P�k����&P�����v�&��=|��v��P�C����&P����^_��]�U���gWV�~t��P�
        !          6057: ���F=t��F�v�L&��=|��v�P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          6058: �<P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������uu��^��- ��^��-@�F��F�P�v��Z���F�P�"���F�9F�u��^��P�kP������&P���^_��]�U���WV�6r��P�XP�#���6r�X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          6059: ���^_��]�U���TWV�v�v�+���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������uu��^��- ��^��-@�F��
        !          6060: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          6061: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�vP�7����P�vP�����>�u�����&�P����x�>xt���~�zP�v��vP����=u���_�6x�zP�&���F�&��F��zP���=t�!�F�����������xP�zP�[&������F�H�v�t�p
        !          6062: �^_��]�U����WV�F��F�F�zP�v��vP�S��=u���P�����&P�        ���6x�zP�����F�&��F��zP�
        !          6063: ��=t�!�F�����������xP�zP�������F�H�v�t^_��]�U���JWV�F�F�t��^_��]�U���,WV�F�F�v�9V~�}�9Fv��F�t^_��]�U����WV�F�F�v9t�        ����t�t����������x�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������u&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� �w�6+���r���ׁĮ�s��
        !          6064: 3�P�@
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6���6
        !          6065: ��+�3���;�\��
        !          6066: 3��6>�6<�6:���P���w�ظ6��^P�[
        !          6067: ����P���0�!��5�!��
�%�|
�!�N �.�&�6,�P  ��3�6�L        s�-
        !          6068: 6�T   �ڻ6�L       �&�,�6��3�&�=t,����t��3��u�����&������t&H������&��D�!r
        !          6069: �€t��&@Ky�X        �X      ��X   �X      ��U��n
        !          6070: �n
        !          6071: �}�X  �Z      �t�U��Z      �Z      �f�Z   �Z      �l�   �t�~u�F�����&&t�>�!C����F�L�!�N        ���L        ��%�!�>Ht
�I�J�%�!�;�s
        !          6072: OO�
�������;�s���Et�����Y��+�r
        !          6073: ;Nr����3��k�U���WV�F�F��v�&
�����FP�v�v�.�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�P�������������&t'�+D�F��~P�t�D�P�5��;F�t�L ����D��D��^_��]�U��^;$r�      ���>�!rƇ&�
        !          6074: U��^�t�O�&��]�U��VW�j�?u)��7u3���$@$��j�l��&���D����6p�N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6>�tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�7�PV��P�����P�vP��P����>|     �d9|�d���㋷V����PVW�c���&P�yPW�T��^_��]ÐU���V�v��-P������������F�V����V�j
        !          6075: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v������]�U��F%�&���]�U����|P�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6>�F�P�v�+�P�c���F�@u�>t�F���F���6>�F�P��P+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          6076: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V��������u ����~9v�~
        !          6077: �"+���F�PW�V���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1��PW�����t��PW�����t��PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u������u&t� ����-`�+�PP�P���*�@�F�~�th��PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��.����F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          6078: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u��V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          6079: �}G�V�����F
        !          6080: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          6081: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          6082: ؋^u�F���]���ȋF�f
        !          6083: ȋF��ы�]�U���P�e�>�t����P�S��]ø�{�V3��B2���2�����Ut
����&P�,�&^Ï��8t)�&�,�B3����3��u�GG�>@�����ыѿ&����< t�<  t�<
to
        !          6084: �tkGN�< t�<    t�<
t\
        !          6085: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          6086: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>:�G��׀��+�ģ<���6�?CC�6@��
        !          6087: �u���6��3���< t�< t�<
u�
        !          6088: �u�y�6�?CCN�< t�<     t�<
tb
        !          6089: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          6090: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.>��3�I��<;Ct�~EE��
        !          6091: �u���N]��]�U��VW�V�d    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â"
        !          6092: �u#�>r
<"s
< r���<v���ט�Ê���U���WV�v�D��F���-P������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�P�������������&uF��Xt��`u3�v�����u-����Xu�r
        !          6093: ���z�D��^��G�&��V����Du�ށ�P�������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���& t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v����Xu�F�r
        !          6094: ����`u$�F�z�Du�ށ�P�������������&t+��5��-P������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~Xt�~`uv�^�G�P����td�F-P������������F��v�5���^���G�^��+���G�*��^�r
        !          6095: t�zu�G�P����t        �v����^��]�U��d&��WV�v�����d
        !          6096: �F�T
        !          6097: �F�H
        !          6098: �^
        !          6099: �\
        !          6100: �|�<%t�X�`
        !          6101: &+��P
        !          6102: �L
        !          6103: �Z
        !          6104: �N
        !          6105: �X
        !          6106: �V
        !          6107: �J
        !          6108: �F
        !          6109: �R
        !          6110: �j
        !          6111:  �|&0u<F�j
        !          6112: 0�3�<+u
�P
        !          6113: �V
        !          6114: �"��< u
�>P
        !          6115: u�V
        !          6116: ��F
        !          6117: �      �<-u��R
        !          6118: F��P�����u�V�f
        !          6119: P�f�����>f
        !          6120: }�R
        !          6121: �f
        !          6122: �أf
        !          6123: �<.u#�X
        !          6124: FV�`
        !          6125: P�<�����>`
        !          6126: }
        !          6127: �`
        !          6128: &�X
        !          6129: ��=Ft2=Nt5=ht =lu�N
        !          6130: �>N
        !          6131: u�<Lu&F�<u�&�N
        !          6132: &���N
        !          6133: ���N
        !          6134: �ӊ�����=Et
        !          6135: =Gt=Xu      �L
        !          6136: ���� ����-c=v�&��.��> �T
        !          6137: ��\
        !          6138: ��T
        !          6139: �i&��Z
        !          6140: �F
        !          6141: �
        !          6142: P�&���Q&�����J
        !          6143: �L
        !          6144: �>X
        !          6145: u     �b
        !          6146: &���b
        !          6147: �X
        !          6148: �`
        !          6149: �>N
        !          6150: u�+��N
        !          6151: �F�9f
        !          6152: t'�f
        !          6153: �F��>R
        !          6154: t     �f
        !          6155: ���.f
        !          6156: �f
        !          6157: �}+��f
        !          6158: �T
        !          6159: �P�����:P�����~�t"�>R
        !          6160: t�F�-�f
        !          6161: �}+��f
        !          6162: ���f
        !          6163: �.T
        !          6164: �P�������/�+�P��&�*���&����������>N
        !          6165: t��N��G�=t�=%u���+�PV�������<t�|��>\
        !          6166: uY�H
        !          6167: �G tO����M���������� ��������>^
        !          6168: t�>\
        !          6169: u�H
        !          6170: �G u��F뙐�\
        !          6171: ^_��]ÐU���WV�~
        !          6172: t�Z
        !          6173: �>N
        !          6174: t�>N
        !          6175: u�T
        !          6176: ��W�F��V��T
        !          6177: �*�>Z
        !          6178: t�T
        !          6179: ��F��F����T
        !          6180: ���F��V��T
        !          6181: �>F
        !          6182: t
�F�F�t�F�+��h
        !          6183: �6d
        !          6184: �>Z
        !          6185: u*�~�}$�~
        !          6186: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>X
        !          6187: t!W� ���`
        !          6188: +ȉN����0F��I���N�L
        !          6189: ���t<a|�, FG�}�u�>Z
        !          6190: u�P
        !          6191: V
        !          6192: t�~�u�&�+�P���^_��]ÐU���WV�~t�&�T
        !          6193: �F��^��T
        !          6194: ��>N
        !          6195: u�T
        !          6196: ��W�F��V��T
        !          6197: ���T
        !          6198: ��F��F��^��T
        !          6199: �>N
        !          6200: u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96X
        !          6201: t�`
        !          6202: ���^��F�&�?tF;�~��F�^��F�&�?u�>f
        !          6203: +��>R
        !          6204: uW�&��V�v��v��o&���>R
        !          6205: tW�&��^_��]�U����T
        !          6206: �F��~gt�~Gu�&�*��F��>X
        !          6207: u�`
        !          6208: �~�t
�>`
        !          6209: u�`
        !          6210: &�6L
        !          6211: �6`
        !          6212: �v�6d
        !          6213: �v��x��
        !          6214: �~�t�>F
        !          6215: u�6d
        !          6216: �z���>F
        !          6217: t�>`
        !          6218: u�6d
        !          6219: �~���T
        !          6220: �h
        !          6221: �P
        !          6222: V
        !          6223: t�v������t�&�+�P�&��]�U��V�>^
        !          6224: u/�H
        !          6225: �Ox�F�7��*���S�v�A���@u�^
        !          6226: ���\
        !          6227: ^]ÐU���WV�>^
        !          6228: uI�v�~B��6H
        !          6229: �6j
        !          6230: �      ���@u�^
        !          6231: ��N�~�H
        !          6232: �Ox۠j
        !          6233: �?��*��܃>^
        !          6234: u�F&\
        !          6235: ^_��]�U���WV�v�>^
        !          6236: uP��6H
        !          6237: �^&��P����@u�^
        !          6238: �F��N�t�H
        !          6239: �Ox��^&��H
        !          6240: �?��*��҃>^
        !          6241: u�F&\
        !          6242: ^_��]�U���
        !          6243: WV�6d
        !          6244: +��F��F��>j
        !          6245: 0u9X
        !          6246: t9J
        !          6247: t9b
        !          6248: u�j
        !          6249:  �>f
        !          6250: V����F�+�+~�>R
        !          6251: u�<-u�>j
        !          6252: 0u��P�����N��>j
        !          6253: 0t�~�>R
        !          6254: t�~t�F��_�>h
        !          6255: t�F��j�>R
        !          6256: u&W�����~t        �~�u�5�>h
        !          6257: t     �~�u�=�v�V������>R
        !          6258: t
�j
        !          6259:  W�a���^_��]Ã>P
        !          6260: t�+�� P����Ð�0P������>h
        !          6261: u�>L
        !          6262: t�X���xP�����ÐU���WV�v�F�&�<*u�T
        !          6263: �?�T
        !          6264: F�H��<-u�F���F+��<0|5�<909>X
        !          6265: u�<0u�j
        !          6266: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          6267: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          6268: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          6269: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;$r
        !          6270: �>�!����
        !          6271: N���&��&�Ë�]�2��ܡ��#�3ɨ�u��&�U����^;$r�  �����& t�B3ɋ��!r���&�tn�V3��F��F��WV����f��N�T�
        !          6272: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          6273: t;�t����#�a�
;�u���
        !          6274: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���&@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���&@t
        !          6275: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          6276: �!W�~��]�M�U�u�E
        !          6277: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          6278: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�������&F�V�DP�F��FH�F��F
        !          6279: �F�>�t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          6280: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          6281: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          6282: �vV� ���&+�P��t�P�F�P�F�P�v
        !          6283: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z���fPVW�g��P� ����v���t�PW�v�����F��>u+�kP�.PW�q���P�(���v���t�PW�v����F�W�t���v��k���F�^_��]ÐU����s�WV��(����v
        !          6284: �v�v�v������|�@u2�>u+�^���&�</t<\t
        !          6285: �t�&:t�pP�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�uPW����vW������v
        !          6286: �vW�v�������|�@u��>u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������r59�s%P�ر��ً+���ËشJ�!Xr$�H����.�&�Ë���U���WV�P+����D�tV�`߃�@t&G��96hs��^_��]�U���V�F-P������������F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;$r�  �*�F�tH�~
        !          6287: t3ɋѸ&B�!rK�F
        !          6288: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          6289: �B�!r��&���Y�N;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          6290: �t���2���^_��]�U��VW��U��^;$}��|��&@t�&�3���]��>l
        !          6291: u��l
        !          6292: ÐU���WV��P�sރ����u��<u��PV�6��k�����RP��V�?ރ�RP�7����+���ހ?t��ފ�����uu     ��ހ?-uG��|؋�ހ?t�P���P�6��  ����������?&�@��^_��]�U���WV�v�|}��| ~��|~      �|     }��|
        !          6293: ��l���~�|u�\�㋇��
        !          6294: ��\�㋇��F���u�F��|
        !          6295: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�>�F�~t)�F�F����^��F��7�^���@��^��?t���v�$�F��t�^���%u�N�u�~�t�F���~t�v�����F�v���v��"
        !          6296: ����&��6����F��F�P�oۃ��F��u!�v��_ۃ����u��"�6�뷋~��6��^�~��?��$��F��^
        !          6297: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P�     PW�fۃ�P�������F��G+��N���&t��&����GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v���"
        !          6298: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
������k�VW�؋^
        !          6299: ���ã       �F�   �      �6   F�*     �&)�!�&)�:      �!U�>}!.�6.�&6�.�5.�66�u.�6
        !          6300: 6.�6�       �~t�3��2��P��!X�F&�V�K�!P�P�0�!<X[}!.�6.�&6�..�6.�6
        !          6301: 6�u.�66�5���F]_^r�M�!���Z  ��������N
        !          6302: �F�V�~W��
        !          6303: �t��
        !          6304: u�y
        !          6305: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [files count fname sname]
        !          6306:   Flags:  h    Help - print this usage info
        !          6307:           t    Print execution time statistics
        !          6308:           f    Test function only (negate -t)
        !          6309:           n    Suppress test directory create operations
        !          6310: file./this/is/a/symlink%s: symlink and readlink not supported on this client
        !          6311: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          6312:       %s: (%s)  
        !          6313:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          6314: \*.*rewind failed�uw�;C_FILE_INFO���&&DwC�rr&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          6315: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error���   
        !          6316: /?@AQcdefr������������������
        !          6317: %.com.exePATH\
        !          6318: 
        !          6319: 
        !          6320: 
        !          6321: 
        !          6322: ��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�{�{�/<<NMSG>>R6000
        !          6323: - stack overflow
        !          6324: R6003
        !          6325: - integer divide by 0
        !          6326:       R6009
        !          6327: - not enough space for environment
        !          6328: �
        !          6329: �run-time error R6002
        !          6330: - floating point not loaded
        !          6331: &R6001
        !          6332: - null pointer assignment
        !          6333: ���NB00~6�       TEST8.OBJ�SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm�
o&&dos\crt0dat.asm
        !          6334: &
        !          6335: chkstk.asm >& fprintf.c^&_file.c^n&fflush.c� &
dos\close.asm�X&nmalloc.asmD?&
        !          6336: strcat.asm�2&
        !          6337: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.c~&perror.c�x&setbuf.cV&    sprintf.cd&   creat.asm|&   umask.asm��&system.c$&
dos\chmod.asm><&dos\dir.asmz�&dos\getcwd.c8<&
        !          6338: dos\stat.ct
&dos\unlink.asm�(&dos\d_find.asm�+&dos\diskfree.asm�&dos\getdrive.asm�&dos\gettime.asm&dos\setdrive.asm�&ldiv.asm�4&lmul.asm� &dos\crt0msg.asm
        !          6339: &
        !          6340: crt0fp.asm"&
        !          6341: chksum.asm2�&&dos\stdargv.asm�n&dos\stdenvp.asm.T&dos\nmsghdr.asm�T&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c,.&
        !          6342: _freebuf.cZ&& _sftbuf.ct�&output.c<&�&&dos\open.asm�'(&&     write.asm)a&&amalloc.asmj*&
        !          6343: strlen.asm�*:&strncmp.asm�*T&atox.asm+&dos\bdos.asm&+G&dos\intdos.asmn+&&
        !          6344: dtoxtime.c�,B&stricmp.asm�,+&strrchr.asm�,X&strpbrk.asmJ-&syserr.cJ-D&&
dos\spawnve.c�.�&
        !          6345: spawnvpe.c�/&dos\access.asm�/B&dos\stdalloc.asm�/2&
        !          6346: flushall.c0l& _getbuf.c�0z&
dos\lseek.asm�0&stackava.asm1�&dos\brkctl.asm�1(&strncpy.asm�1
        !          6347: &        ultoa.asm2&cmiscdat.asm2#&
        !          6348: isatty.asm(2&days.c(2�&&tzset.c�3&  timeset.c�3*&
        !          6349: strchr.asm�3'&
dos\cenvarg.c6�&dos\dospawn.asm�6&dos\execload.asm7_&xtoa.asm�_usagek�_main6&w�_Tflag8&w�_Hflag:&w�_Fflag<&w�_Nflagvw_patternzwh_findtstvw�    _maxentrytw�
_currententryxw�_dirlistp
        !          6350: w�_dirstrw�_Myname=     _statfs3
        !          6351: _opendir'_readdir
        !          6352: _rewinddir��_error�.  _closedir��
        !          6353: _starttime��_endtime�$_seekdir�"_telldirB�_printtimes��_testdir�� _mtestdir��_getparm��  _complete�w�_diropen��_dirtree��
_gettimeofday�_unix_chdir@�_getwd]�
        !          6354: _rmdirtreea�_unix_chmod��_lstat_�_chdrive�w__fmode�w__iomode6
        !          6355: w_edata�w_end�w__aexit_rtn�w__abrkp�w__abrktb�w__asizds�__astart�w__atopsp�w       __abrktbe|
 __cintDIVv�&
        !          6356: __acrtused�
__amsg_exitw__osversionw_errnou__exitFw__child$w__nfile�
__cinit:w___argcIw__intnow
__dosvermajor"w__oserr<w___argv w
__dosverminor>w_environ&w__osfile!w__osmodew__pspadrL        w__fpinitJw__ovlvec@w__pgmptr�w       __acfinfoHw __ovlflagw __aintdivw __osmajor w __osminorw
        !          6357: __umaskval�
        !          6358: __ctermsub"w
        !          6359: __doserrnow__fac^_exitw__pspNwSTKHQQ
        !          6360: __chkstk _fprintfrw__bufinr
        !          6361: w__bufoutzw__buferr�w__iob2hw        __lastiobPw__iob^_fflush�_close�_malloc�__nfreejw__asegds�       __nmalloc�_freeD_strcat�_strcpy�_atoltw__ctypetw__ctype_�_getenv_perror�_setbuf_sprintfd_creat|_umask�_system_chmodE_chdir>_mkdirR_rmdirz_getcwd�     __getdcwd�_statt_removet_unlink�__dos_findnext�__dos_findfirst�__dos_getdiskfree�__dos_getdrive�
__dos_gettime__dos_setdrive__aNldiv�__aNlmul�  __aNulmul�__FF_MSGBANNER�w    __adbgmsgv�& __acrtmsg
        !          6362: __fptrap__nullcheck2 __setargv� __setenvp.__NMSG_TEXTY__NMSG_WRITE�    __dosret0�
        !          6363: __maperror�
        !          6364: __dosretax�__dosreturn�w__cflush�__flsbuf,       __freebuf�__ftbufZ__stbuft__outputD&
        !          6365: __copensub<&_open�'__cXENIXtoDOSmode�'_writeJ*__amallocbrk�w__aseg1�w__asegh�w__asegn�w__asegr(*__amlink�w    __QChdata) __amalloc�)
        !          6366: __amexpand�w
        !          6367: __amblksizj*_strlen�*_strncmp�*__catox+_bdos&+_intdosn+
        !          6368: __dtoxtime�,_stricmp�,_strcmpi�,_strrchr�,_strpbrkdw   _sys_nerrw_sys_errlistJ-_spawnve�.       _spawnvpe�/_access�/   __myalloc�/ _flushall0__getbuf�0_lseek�0_stackavail1_brkctl�1_strncpy�1_ultoaxw
__cfltcvt_tab�w__asizeC�w__asizeD�w__sigintoff�w__sigintseg2_isatty�w__days�w__lpdays�2 __isindst(2___tzset82_tzset�w     ___mnames�w _daylight�w _timezone�w_tzname�w   ___dnames�3_strchr�3   __cenvarg6 __dospawn�6
        !          6369: __execload7__cxtoa7
        !          6370: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          6371: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x0��&x����&x���&&�&&�&&�&&�&&�&&�&x��&��&&�&&�&&�&&�&&�&&�&&�&y���� �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          6372: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          6373: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          6374: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          6375: u���c&��&&�&
        !          6376: ������&
        !          6377: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          6378: u���c&��&��&
        !          6379: u���c&��&&�&&�&&�&����&
        !          6380: u���c��&���
        !          6381: &
        !          6382: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          6383: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          6384: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          6385: u���c&�!&����&u��c�#&&�&��&
        !          6386: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�kf�mainvZ
        !          6387: �argc
        !          6388: +argv���files���fi���count���ct���totfiles
���totdirs���fname���sname
        !          6389: ���time     ���str       ���new       ���buf       ���ret��statb
        !          6390: ���opts&&rw�MynamePw_iob&���&�&dirtree�v&        �lev�files
        !          6391: �dirs
        !          6392: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          6393: ��name&&&]�m&�&�  rmdirtreeh\& �lev�files
        !          6394: �dirs
        !          6395: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          6396: ��name&&&�����error��      �str       �ar1       
        !          6397: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          6398: ���path&&&����  starttime&&����fendtime�p�tv&&&B��w�
        !          6399: printtimesMq�tv�nbytes&&&�����testdir��        �dir��statb   ��str&&&��^�mtestdir�M     �dir&&&��g-�getparmV
        !          6400: �parm     �min
        !          6401: �label      ���val&&&_���chdrivejs
        !          6402: �path���desireddrive���drive&&&��7>complete&&�&Od
        !          6403: unix_chdir%
        !          6404: �path&&&@�!u�getwdK
        !          6405: �path&&&a�L��
        !          6406: unix_chmodl;
        !          6407: �path
        !          6408: �mode
���dosmode&&&�� ��lstat�
        !          6409: �path     
        !          6410: buf&&&��pagettimeofday�_�TV�TimeZone
��ndostime&&&=       �rW statfsH   �
        !          6411: �path     �buf���&p���&i���drive��q     diskspace&&&3
        !          6412: �h  9
        !          6413: opendir>
        !          6414: �
�dirname���&i���
        !          6415: attributes&&&�J
        !          6416: �
        !          6417:     rewinddir �
        !          6418: �dirp���&i���
        !          6419: attributes&&&�"�
        !          6420: �
        !          6421: telldir�

        !          6422: �dirp&&&�$6
        !          6423: /seekdir�%
        !          6424: �dirp     �loc&&&'F@ureaddir5
        !          6425: �dirp&&&Q)!��findt_to_dirent\~&f�&d&&&r,X��copynametolower}G
        !          6426: �dest     �src���&i&&&�.�closedir�
        !          6427: �dirp&&
        !          6428: >
        !          6429: w�tstw�_ctype
        !          6430: 6
        !          6431: w�tevwpatternzwhfindtstvw�maxentrytw�currententryxw�dirlist
p
        !          6432: w�dirstrw�Myname
w�errnoPw_iobtest8.c!"#-$;%I&W'e+k.v0{2�3�4�5�>�?�@�B�����subr.c��+�,�.�/&0!&1<&2K&4U&5Z&6l&7z&9�&:�&;�&=�&A�&B�&D�&E�&F�&G  IJ.K@LJNTOW_]khlvnyo�p�q�r�t�u�v�w�xy'z0{3|B~Lj�|�����������������������Z�d�q�����������������������
�%�<�B�M�y�����������������-�:�D�U�b�l�}������&�&�&�   &�
        !          6433: &�&�
&�&�&�&&&-&F&P &Y.&_1&j3&v4&�5&�6&�8&�9&�<&�C&�D&�F&H&
        !          6434: I&N&Q&%S&.T&:X&@Z&K[&[_&ab&lc&�d&�h&�k&�l&�p&�r&�u&�v&   w&1     x&7     |&=     &H     �&N     �&b     �&n     �&y     �&�     �&�     �&�     �&�     �&�     �&�     �&�     �&
        !          6435: �&'
        !          6436: �&-
        !          6437: �&3
        !          6438: �&>
        !          6439: �&C
        !          6440: �&P
        !          6441: �&^
        !          6442: �&h
        !          6443: �&n
        !          6444: �&t
        !          6445: �&�
        !          6446: �&�
        !          6447: �&�
        !          6448: �&�
        !          6449: �&�
        !          6450: �&�
        !          6451: �&�
        !          6452: �&�
        !          6453: �&�
        !          6454: �&�& �&�&�& �&%�&+�&D�&N�&X�&f�&��&��&��&��&��&��&��&��&��&��&��&��&��&�&�&�&�&(�&1�&K�&Q�&\�&l�&r�&}&����       �
        !          6455: �
        !          6456: SLIBCE.LIB�&&&&&�M&&�7&&*&&&�2Z&&&��&&& +o&�2�&&3'&�        &&Z&�     �&&s&�
        !          6457: �&&&�&`&&�&|&&�&�U&&     �&       �&&
        !          6458: �&
        !          6459: �
&&�&�G&&&&B
&&
.&&
P
&&E&&^
&&Z&&j
&&p&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&�

&& &�
'&&8&&&Q&:&&h&F&&�&b+&&�&�&&�&�&&�&�&& �& �&&!&!�&&"&&"�&&#;&#5&&$W&$F&&%n&%U&&&�&&g&&'�&'w&&(�&(�%&&)�&)�D&&*�&*�&&+&+�&&,"&,&&-9&-&&.O&.:&&/d&/I5&&0}&0~
&&1�&1��&&2�&2'&&3�&35&&4�&4D&&5�&5R&&6&6^&&7#&7l&&8:&8}&&9R&9�&&:j&:�&&;�&;�#&&<�&<�&&=�&=�&&>�&>�&&?�&?  &&@&@&&A&A)&&B-&B8
&&CG&CE&&D`&DW&&E{&Ee&&F�&Ft
&&G�&G�V&&H�&H�&&I�&I�&&J�&J&,&&K&K-N&&L&L{&&M-&M�&&NG&N�&&Oc&O�&&P�&P�&r6NB00=���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&./basic/test9.exe   777  20115     11      101303  4552132245   7200 MZ5&# x���@C��&^��!������U���WV�6b�BP�HP����]P�HP�����P�HP�~����P�HP�p����P�HP�b��^_��]�U��N�:WV�F���P����P�HP����^�F��b�N�~u��^��?-t��^�@�F���F��^��?u�r�^����C�2��&P����$&�R�(&�K�*&�D�^���P�,&P�c������&P�����#=fu���=hu��=nu���=tu�������N�F�T��~u�!�@&P�&�RP�^�7�1���F��F�N�~u�
���&P�w���>(&u��$&�F�&�>*&t�
�P����
        !          6460: �P�}���6b�F&P�HP�����>$&u��c�F���F��F�9F�|�-�F�P�R&P����=|��T&P�X���&P��
������>$&u�
        !          6461: �F�P�.���v��k&P�HP�|���>$&u�+�PP�F�P����|&P�HP�V���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          6462: �~&P���P������&P���P�7������=|����P��&P����&P�
���^������k��=|�������&P�S���&P�����t�dž��������F9���|������v��&P���P�[�����P���=|����P��&P��&���&P����^����P�+��=|����P��&P��&���&P�N���v�v�v�v
        !          6463: �v�v�v������&P����=|���&P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          6464: ��&P���P�i�����P����=|�"�~t����P��&P�����&P����^���dž��������F9���|�������v��&P���P�������P����=|�%�~u������P��&P����&P����v�v�v�v�v
        !          6465: �v�v�v������P���=|��     P�G���&P��
        !          6466: �����P���=|����P�P����&P�
        !          6467: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6b�)P�PP�&�������P�6b�;P�PP����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          6468: �v�v�v�PP��
        !          6469: ��(�>u�
�FP�����HP�PP�
        !          6470: ���PP��
        !          6471: ���~�t�
        !          6472: �&P��        ��^_��]�U���_
        !          6473: WV�P�.
        !          6474: P���^_��]�U���@
        !          6475: WV�P�&
        !          6476: P�����2
        !          6477: �4
        !          6478: 9,
        !          6479: ~�#}�       9*
        !          6480: r��.&
        !          6481: &�(
        !          6482: �*
        !          6483: @B�,
        !          6484: �^�*
        !          6485: �,
        !          6486: +2
        !          6487: 4
        !          6488: �G�W�^�&
        !          6489: �(
        !          6490: +.
        !          6491: 0
        !          6492: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7�JP�HP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�lRP�`P�HP�e    ��^_��]�U��&�=       WV�~t��qP��
        !          6493: ���F=t��F|����P�v����=t�<�v��P���P�������P�l��=u��v��P�����&P����v����=|��v��P�k����&P�����v�&��=|��v��P�C����&P����^_��]�U���gWV�~t���P�
        !          6494: ���F=t��F��v�L&��=|��v�P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          6495: �,P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������eu��^��- ��^��-@�F��F�P�v��Z���F�P�"���F�9F�u��^��P�[P������&P���^_��]�U���WV�6b�uP�HP�#���6b�X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          6496: ���^_��]�U���TWV�v�v�+���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������eu��^��- ��^��-@�F��
        !          6497: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          6498: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�fP�7���~P�fP�����>�u�����&�P����h�>ht���~�jP�v��fP����=u���_�6h�jP�&���F�&��F��jP���=t�!�F�����������hP�jP�[&������F�H�f�d�`
        !          6499: �^_��]�U����WV�F��F�F�jP�v��fP�S��=u���P�����&P�        ���6h�jP�����F�&��F��jP�
        !          6500: ��=t�!�F�����������hP�jP�������F�H�f�d^_��]�U���JWV�F�F�d��^_��]�U���,WV�F�F�f�9V~�}�9Fv��F�d^_��]�U����WV�F�F�f9d�        ����d�d����������h�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������e&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁĞ�s��
        !          6501: 3�P�@
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�
��&
        !          6502: ��+�3���;�\��
        !          6503: 3��6.�6,�6*�O�P�����ظ6��P�[
        !          6504: ����P���0�!��5�!�����%� �!�> �.�
&�6,�@  ��3�6�<        s�-
        !          6505: 6�D   �ڻ6�<       �
&�,�6��3�&�=t,����t��3��u�����������t&H��������D�!r
        !          6506: �€t��@Ky�H        �H      ��H   �H      ��U��^
        !          6507: �^
        !          6508: �}�H  �J      �t�U��J      �J      �f�J   �J      �l�   �t�~u�F�����&t�>�!C����F�L�!�>        ���<        ���%�!�>8t
�9�:�%�!�;�s
        !          6509: OO�
�������;�s���Et�����Y��+�r
        !          6510: ;>r����3��k�U���WV�F�F��v�&
�����FP�v�v�.�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�@�������������&t'�+D�F��~P�t�D�P�5��;F�t�L ����D��D��^_��]�U��^;r�      ���>�!rƇ�
        !          6511: U��^�t�O�&��]�U��VW�Z�?u)��7u3���$@$��Z�\��&���D����6`�N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6.�tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�7�PV��P�����P�fP��P����>|     �T9|�T���㋷V����PVW�c���&P�iPW�T��^_��]ÐU���V�v��-@������������F�V����V�j
        !          6512: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v������]�U��F%�&�  ��]�U����lP�����F��~u+�P�v������u�&�Z+��V�F�t�F�F��F��~�t&�6.�F�P�v�+�P�c���F�@u�>t�F���F�w�6.�F�P�wP+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          6513: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V��������u ����~9v�~
        !          6514: �"+���F�PW�V���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1��PW�����t��PW�����t��PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u������e&t� ����-`�+�PP�P���*�@�F�~�th��PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��.����F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          6515: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u��V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          6516: �}G�V�����F
        !          6517: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          6518: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          6519: ؋^u�F���]���ȋF�f
        !          6520: ȋF��ы�]�U���P�e�>�t����P�S��]ø�{�V3��B2���2�����Ut
����&P�,�&^��8t)�
&�,�23����3��u�GG�>0�����ыѿ&���
�< t�<  t�<
to
        !          6521: �tkGN�< t�<    t�<
t\
        !          6522: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          6523: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>*�G��׀��+�ģ,���6�?CC�60��
        !          6524: �u���6�
�3���< t�< t�<
u�
        !          6525: �u�y�6�?CCN�< t�<     t�<
tb
        !          6526: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          6527: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�
3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���..��3�I��<;Ct�~EE��
        !          6528: �u���N]��]�U��VW�V�T    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â
        !          6529: �u#�>r
<"s
< r���<v���ט�Ê���U���WV�v�D��F���-@������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�@�������������&uF��Ht��Pu3�v�����u-����Hu�b
        !          6530: ���j�D��^��G�&��V����Du�ށ�@�������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^��� t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v����Hu�F�b
        !          6531: ����Pu$�F�j�Du�ށ�@�������������&t+��5��-@������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~Ht�~Puv�^�G�P����td�F-@������������F��v�5���^���G�^��+���G�*��^�b
        !          6532: t�ju�G�P����t        �v����^��]�U��d&��WV�v�����T
        !          6533: �F�D
        !          6534: �F�8
        !          6535: �N
        !          6536: �L
        !          6537: �|�<%t�X�P
        !          6538: &+��@
        !          6539: �<
        !          6540: �J
        !          6541: �>
        !          6542: �H
        !          6543: �F
        !          6544: �:
        !          6545: �6
        !          6546: �B
        !          6547: �Z
        !          6548:  �|&0u<F�Z
        !          6549: 0�3�<+u
�@
        !          6550: �F
        !          6551: �"��< u
�>@
        !          6552: u�F
        !          6553: ��6
        !          6554: �      �<-u��B
        !          6555: F��P�����u�V�V
        !          6556: P�f�����>V
        !          6557: }�B
        !          6558: �V
        !          6559: �أV
        !          6560: �<.u#�H
        !          6561: FV�P
        !          6562: P�<�����>P
        !          6563: }
        !          6564: �P
        !          6565: &�H
        !          6566: ��=Ft2=Nt5=ht =lu�>
        !          6567: �>>
        !          6568: u�<Lu&F�<u�&�>
        !          6569: &���>
        !          6570: ���>
        !          6571: �ӊ�����=Et
        !          6572: =Gt=Xu      �<
        !          6573: ���� ����-c=v�&��.���!�D
        !          6574: ��L
        !          6575: ��D
        !          6576: �i&��J
        !          6577: �6
        !          6578: �
        !          6579: P�&���Q&�����:
        !          6580: �<
        !          6581: �>H
        !          6582: u     �R
        !          6583: &���R
        !          6584: �H
        !          6585: �P
        !          6586: �>>
        !          6587: u�+��>
        !          6588: �F�9V
        !          6589: t'�V
        !          6590: �F��>B
        !          6591: t     �V
        !          6592: ���.V
        !          6593: �V
        !          6594: �}+��V
        !          6595: �D
        !          6596: �P�����:P�����~�t"�>B
        !          6597: t�F�-�V
        !          6598: �}+��V
        !          6599: ���V
        !          6600: �.D
        !          6601: �P�������/�+�P��&�*���&����������>>
        !          6602: t��N��G�=t�=%u���+�PV�������<t�|��>L
        !          6603: uY�8
        !          6604: �G tO����M�!� �!�!�!�!� �!�!�!�!� � � �!�!�!�!� �!�!~!�>N
        !          6605: t�>L
        !          6606: u�8
        !          6607: �G u��F뙐�L
        !          6608: ^_��]ÐU���WV�~
        !          6609: t�J
        !          6610: �>>
        !          6611: t�>>
        !          6612: u�D
        !          6613: ��W�F��V��D
        !          6614: �*�>J
        !          6615: t�D
        !          6616: ��F��F����D
        !          6617: ���F��V��D
        !          6618: �>6
        !          6619: t
�F�F�t�F�+��X
        !          6620: �6T
        !          6621: �>J
        !          6622: u*�~�}$�~
        !          6623: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>H
        !          6624: t!W� ���P
        !          6625: +ȉN����0F��I���N�<
        !          6626: ���t<a|�, FG�}�u�>J
        !          6627: u�@
        !          6628: F
        !          6629: t�~�u�&�+�P���^_��]ÐU���WV�~t�&�D
        !          6630: �F��^��D
        !          6631: ��>>
        !          6632: u�D
        !          6633: ��W�F��V��D
        !          6634: ���D
        !          6635: ��F��F��^��D
        !          6636: �>>
        !          6637: u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96H
        !          6638: t�P
        !          6639: ���^��F�&�?tF;�~��F�^��F�&�?u�>V
        !          6640: +��>B
        !          6641: uW�&��V�v��v��o&���>B
        !          6642: tW�&��^_��]�U����D
        !          6643: �F��~gt�~Gu�&�*��F��>H
        !          6644: u�P
        !          6645: �~�t
�>P
        !          6646: u�P
        !          6647: &�6<
        !          6648: �6P
        !          6649: �v�6T
        !          6650: �v��h��
        !          6651: �~�t�>6
        !          6652: u�6T
        !          6653: �j���>6
        !          6654: t�>P
        !          6655: u�6T
        !          6656: �n���D
        !          6657: �X
        !          6658: �@
        !          6659: F
        !          6660: t�v��p���t�&�+�P�&��]�U��V�>N
        !          6661: u/�8
        !          6662: �Ox�F�7��*���S�v�A���@u�N
        !          6663: ���L
        !          6664: ^]ÐU���WV�>N
        !          6665: uI�v�~B��68
        !          6666: �6Z
        !          6667: �      ���@u�N
        !          6668: ��N�~�8
        !          6669: �Ox۠Z
        !          6670: �?��*��܃>N
        !          6671: u�F&L
        !          6672: ^_��]�U���WV�v�>N
        !          6673: uP��68
        !          6674: �^&��P����@u�N
        !          6675: �F��N�t�8
        !          6676: �Ox��^&��8
        !          6677: �?��*��҃>N
        !          6678: u�F&L
        !          6679: ^_��]�U���
        !          6680: WV�6T
        !          6681: +��F��F��>Z
        !          6682: 0u9H
        !          6683: t9:
        !          6684: t9R
        !          6685: u�Z
        !          6686:  �>V
        !          6687: V����F�+�+~�>B
        !          6688: u�<-u�>Z
        !          6689: 0u��P�����N��>Z
        !          6690: 0t�~�>B
        !          6691: t�~t�F��_�>X
        !          6692: t�F��j�>B
        !          6693: u&W�����~t        �~�u�5�>X
        !          6694: t     �~�u�=�v�V������>B
        !          6695: t
�Z
        !          6696:  W�a���^_��]Ã>@
        !          6697: t�+�� P����Ð�0P������>X
        !          6698: u�><
        !          6699: t�X���xP�����ÐU���WV�v�F�&�<*u�D
        !          6700: �?�D
        !          6701: F�H��<-u�F���F+��<0|5�<909>H
        !          6702: u�<0u�Z
        !          6703: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          6704: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          6705: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          6706: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;r
        !          6707: �>�!����
        !          6708: N���&���Ë�]�2��ܡ   ��#�3ɨ�u��&�U����^;r�        ����� t�B3ɋ��!r����tn�V3��F��F��WV����f��N�T�
        !          6709: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          6710: t;�t����#�a�
;�u���
        !          6711: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���@t
        !          6712: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          6713: �!W�~��]�M�U�u�E
        !          6714: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          6715: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�������&F�V�DP�F��FH�F��F
        !          6716: �F�>�t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          6717: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          6718: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          6719: �vV� ���&+�P��t�P�F�P�F�P�v
        !          6720: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z���VPVW�g��P� ����v���t�PW�v�����F��>u+�[P�.PW�q���P�(���v���t�PW�v����F�W�t���v��k���F�^_��]ÐU����s�WV��(����v
        !          6721: �v�v�v������|�@u2�>u+�^���&�</t<\t
        !          6722: �t�&:t�`P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�ePW����vW������v
        !          6723: �vW�v�������|�@u��>u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������r59�s%P�ر��ً
+���ËشJ�!Xr$�H����.�&�Ë���U���WV�@+����D�tV�`߃�@t&G��96Xs��^_��]�U���V�F-@������������F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;r�  �*�F�tH�~
        !          6724: t3ɋѸ&B�!rK�F
        !          6725: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          6726: �B�!r�����Y�>;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١
+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          6727: �t���2���^_��]�U��VW��U��^;}��|��@t�&�3���]��>\
        !          6728: u��\
        !          6729: ÐU���WV��P�sރ����u��<u��PV�6��k�����RP��V�?ރ�RP�7壸��+���ހ?t��ފ�����eu     ��ހ?-uG��|؋�ހ?t�P���P�6��  ����������?&�@��^_��]�U���WV�v�|}��| ~��|~      �|     }��|
        !          6730: ��l���~�|u�\�㋇��
        !          6731: ��\�㋇��F���u�F��|
        !          6732: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�.�F�~t)�F�F����^��F��7�^���@��^��?t���v��F��t�^���u�N�u�~�t�F���~t�v�����F�v���v��
        !          6733: ����&��6����F��F�P�oۃ��F��u!�v��_ۃ����u���6�뷋~��6��^�~��?��$��F��^
        !          6734: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P��PW�fۃ�P�������F��G+��N���t������GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v���
        !          6735: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
������k�VW�؋^
        !          6736: ���ã       �F�   �     �6   F�     �&)�!�&)�*      �!U�>}!.��7.�&�7�.�5.�6�7�u.�6�7.��7� �~t�3��2��P��!X�6&�V�K�!P�P�0�!<X[}!.��7.�&�7�..��7.�6�7�u.�6�7�5���6]_^r�M�!���J      ��������N
        !          6737: �F�V�~W��
        !          6738: �t��
        !          6739: u�y
        !          6740: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [count]
        !          6741:   Flags:  h    Help - print this usage info
        !          6742:           t    Print execution time statistics
        !          6743:           f    Test function only (negate -t)
        !          6744:           n    Suppress test directory create operations
        !          6745: unknown option '%c'count%s: statfs
        !          6746: .can't do statfs on "."     %d statfs calls
        !          6747: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          6748:       %s: (%s)  
        !          6749:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          6750: \*.*rewind failed���;C_FILE_INFO���&&4�C�bb&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          6751: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error��������
/01ASTUVbtuvw���������������%.com.exePATH\�������;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�����1<<NMSG>>R6000
        !          6752: - stack overflow
        !          6753: R6003
        !          6754: - integer divide by 0
        !          6755:       R6009
        !          6756: - not enough space for environment
        !          6757: �
        !          6758: �run-time error R6002
        !          6759: - floating point not loaded
        !          6760: &R6001
        !          6761: - null pointer assignment
        !          6762: ���NB00�6j       TEST9.OBJzSUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm>o&&dos\crt0dat.asm�&
        !          6763: chkstk.asm�>& fprintf.c&_file.cn&fflush.cp &
dos\close.asm�X&nmalloc.asm�?&
        !          6764: strcat.asm(2&
        !          6765: strcpy.asmZ&atol.asm^&    ctype.asm^^&getenv.c�~&perror.c:x&setbuf.c�V&    sprintf.c&   creat.asm &   umask.asm2�&system.c�$&
dos\chmod.asm�<&dos\dir.asm�&dos\getcwd.c�<&
        !          6766: dos\stat.c
&dos\unlink.asm&(&dos\d_find.asmN+&dos\diskfree.asmz&dos\getdrive.asm�&dos\gettime.asm�&dos\setdrive.asm��&ldiv.asmZ4&lmul.asm� &dos\crt0msg.asm�&
        !          6767: crt0fp.asm�"&
        !          6768: chksum.asm��&&dos\stdargv.asmdn&dos\stdenvp.asm�T&dos\nmsghdr.asm&T&dos\dosret.asmz&_cflush.asmzV&&  _flsbuf.c�.&
        !          6769: _freebuf.c�&& _sftbuf.c�&output.c�'�&&dos\open.asm�)(&&     write.asm�*a&&amalloc.asm,&
        !          6770: strlen.asm*,:&strncmp.asmd,T&atox.asm�,&dos\bdos.asm�,G&dos\intdos.asm-&&
        !          6771: dtoxtime.c(.B&stricmp.asmj.+&strrchr.asm�.X&strpbrk.asm�.&syserr.c�.D&&
dos\spawnve.c20�&
        !          6772: spawnvpe.c&1&dos\access.asmF1B&dos\stdalloc.asm�12&
        !          6773: flushall.c�1l& _getbuf.c&2z&
dos\lseek.asm�2&stackava.asm�2�&dos\brkctl.asmv3(&strncpy.asm�3
        !          6774: &        ultoa.asm�3&cmiscdat.asm�3#&
        !          6775: isatty.asm�3&days.c�3�&&tzset.cV5&  timeset.cV5*&
        !          6776: strchr.asm�5'&
dos\cenvarg.c�7�&dos\dospawn.asm�8&dos\execload.asm�8_&xtoa.asm�_usagek�_main$&��_Tflag&&��_Hflag(&��_Fflag*&��_Nflagf�_patternj�h_findtstf��    _maxentryd��
_currententryh��_dirlist`
        !          6777: ��_dirstb��_Myname�
        !          6778: _statfs�_opendir�
'_readdir�
        !          6779: _rewinddirn�_errorn.  _closedirF�
        !          6780: _starttimee�_endtimey
$_seekdir[
"_telldir��_printtimesh�_testdir>� _mtestdir��_getparm�       �    _complete���_diropenz�_dirtreeq
        !          6781: �
_gettimeofday�    �_unix_chdir�       �_getwd&�
        !          6782: _rmdirtree
        !          6783: �_unix_chmodQ
        !          6784: �_lstat   �_chdrive��__fmode��__iomode&
        !          6785: �_edata��_end��__aexit_rtn��__abrkp��__abrktb��__asizds�__astart��__atopsp��       __abrktbe  __cintDIVv�&
        !          6786: __acrtused/__amsg_exit�__osversion�_errno__exit6�__child�__nfile>__cinit*�___argc9�__intno�
__dosvermajor�__oserr,�___argv�
__dosverminor.�_environ�__osfile�__osmode�__pspadr<        �__fpinit:�__ovlvec0�__pgmptr��       __acfinfo8� __ovlflag�� __aintdiv� __osmajor� __osminor       �
        !          6787: __umaskval^
        !          6788: __ctermsub�
        !          6789: __doserrno��__fac_exit
�__psp>�STKHQQ�__chkstk�_fprintfb�__bufinb
        !          6790: �__bufoutj�__buferr��__iob2X�        __lastiob@�__iob_fflushp_close�_malloc�__nfreeZ�__asegds�       __nmalloc�_free�_strcat(_strcpyZ_atold�__ctyped�__ctype_^_getenv�_perror:_setbuf�_sprintf_creat _umask2_system�_chmod�_chdir�_mkdir�_rmdir_getcwd2     __getdcwd�_stat_remove_unlink&__dos_findnext0__dos_findfirstN__dos_getdiskfreez__dos_getdrive�
__dos_gettime�__dos_setdrive�__aNldivZ__aNlmulZ  __aNulmul�__FF_MSGBANNER��    __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargvd __setenvp�__NMSG_TEXT�__NMSG_WRITE&    __dosret0F
        !          6791: __maperror9
        !          6792: __dosretax.__dosreturn��__cflushz__flsbuf�       __freebuf�__ftbuf�__stbuf__output�'
        !          6793: __copensub�'_opens)__cXENIXtoDOSmode�)_write�+__amallocbrk��__aseg1��__asegh��__asegn��__asegr�+__amlink��    __QChdata�* __amalloc�+
        !          6794: __amexpand��
        !          6795: __amblksiz,_strlen*,_strncmpd,__catox�,_bdos�,_intdos-
        !          6796: __dtoxtime(._stricmp(._strcmpij._strrchr�._strpbrkT�   _sys_nerr�_sys_errlist�._spawnve20       _spawnvpe&1_accessF1   __myalloc�1 _flushall�1__getbuf&2_lseek�2_stackavail�2_brkctlv3_strncpy�3_ultoah�
__cfltcvt_tabv�__asizeCw�__asizeDt�__sigintoffr�__sigintseg�3_isatty��__daysx�__lpdays�4 __isindst�3___tzset�3_tzset��     ___mnames�� _daylight�� _timezone��_tzname��   ___dnamesV5_strchr�5   __cenvarg�7 __dospawn�8
        !          6797: __execload�8__cxtoa�8
        !          6798: __cltoasub&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�       �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x����&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x0��&&�&&�&x`��&&�&x��&&�&x����&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&y���� �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          6799: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          6800: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          6801: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          6802: u���c&��&&�&
        !          6803: ������&
        !          6804: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          6805: u���c&��&��&
        !          6806: u���c&��&&�&&�&&�&����&
        !          6807: u���c��&���
        !          6808: &
        !          6809: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          6810: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          6811: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          6812: u���c&�!&����&u��c�#&&�&��&
        !          6813: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�fdmainv�&
        !          6814: �argc
        !          6815: +argv���count���ct
        !          6816: ���time
        !          6817: ���sfsb
        !          6818: ���opts&&b��Myname@�_iob&z��&�&dirtree�v&        �lev�files
        !          6819: �dirs
        !          6820: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          6821: ��name&&&&�m&�&�  rmdirtree\& �lev�files
        !          6822: �dirs
        !          6823: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          6824: ��name&&&n����errory�      �str       �ar1       
        !          6825: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          6826: ���path&&&F���  starttime&&e���fendtimepp�tv&&&���w�
        !          6827: printtimes�q�tv�nbytes&&&h����testdirs�        �dir��statb   ��str&&&>�^�mtestdirIM     �dir&&&��g-�getparm�V
        !          6828: �parm     �min
        !          6829: �label      ���val&&&        ���chdrive  s
        !          6830: �path���desireddrive���drive&&&�       �7>complete&&�       �&Od
        !          6831: unix_chdir�  
        !          6832: �path&&&�      �!u�getwd�    
        !          6833: �path&&&
        !          6834: �L��
        !          6835: unix_chmod
        !          6836: ;
        !          6837: �path
        !          6838: �mode
���dosmode&&&Q
        !          6839: � ��lstat\
        !          6840: 
        !          6841: �path     
        !          6842: buf&&&q
        !          6843: �pagettimeofday|
        !          6844: _�TV�TimeZone
��ndostime&&&�
        !          6845: �rW        statfs�
        !          6846: �
        !          6847: �path     �buf���&p���&i���drive��q     diskspace&&&��h  9
        !          6848: opendir��
�dirname���&i���
        !          6849: attributes&&&��J
        !          6850: �
        !          6851:     rewinddir��
        !          6852: �dirp���&i���
        !          6853: attributes&&&[
"�
        !          6854: �
        !          6855: telldirf


        !          6856: �dirp&&&y
$6
        !          6857: /seekdir�
%
        !          6858: �dirp     �loc&&&�
'F@ureaddir�
5
        !          6859: �dirp&&&�
)!��findt_to_dirent~&f�&d&&&,X��copynametolower!G
        !          6860: �dest     �src���&i&&&n.�closediry
        !          6861: �dirp&&
        !          6862: .
        !          6863: ��tsd��_ctype
        !          6864: &
        !          6865: ��tef�patternj�hfindtstf��maxentryd��currententryh��dirlist
`
        !          6866: ��dirstb��Myname
��errno@�_iobtest9.c=-;IW e$k'v-{.�/�0�1�2�3�5�6�9�:�=�>�A�B�E�F&G&H&IA&JD&KG&LK&NN&OW&Pq&Qu&Sx&T�&U�&X�&Y�&Z�&]�&^�&`�&b�&d�&e�&h�&i�&jkm#o&p0}:~KU�c�q�tsubr.c�z+�,�.�/�0�1�2�4�5�679(:+;D=ZAmB|D�E�F�G�I�J�K�L�N�O�_&klno6pLqhrwt�u�v�w�x�y�z�{�|�~�� �*�4�G�V�`�e�h�n�y�����������#�-�6�@�F�Q�_�e�p�~����������������A�b�h�s�|�������������������!�.�8�>&I&R&g        &l
        !          6867: &}&�
&�&�&�&�&�&�&�&� &�.& 1&     3&     4&D     5&Q     6&[     8&f     9&w     <&�     C&�     D&�     F&�     H&�     I&�     N&�     Q&�     S&�     T&�     X&�     Z&�     [&�     _&
        !          6868: b&
        !          6869: c&<
        !          6870: d&K
        !          6871: h&Q
        !          6872: k&\
        !          6873: l&k
        !          6874: p&q
        !          6875: r&|
        !          6876: u&�
        !          6877: v&�
        !          6878: w&�
        !          6879: x&�
        !          6880: |&�
        !          6881: &�
        !          6882: �&�
        !          6883: �&�&�&�&)�&V�&`�&u�&{�&��&��&��&��&��&��&��&��&��&�&�&�&�&%�&/�&5�&N�&T�&b�&�&��&��&��&��&��&��&��&��&��&��&��&��&
        !          6884: 
�&'
�&E
�&H
�&O
�&U
�&[
�&f
�&l
�&s
�&y
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�&�&�&!&ehny  
        !          6885: �
        !          6886: SLIBCE.LIB�&&&&&�M&&��&&_*�&&k2�&&&��&&_&�*o&i3�&&3'&�        &&Z&�     �&&s&�
        !          6887: �&&&�&`&&�&|&&�&�U&&     �&       �&&
        !          6888: �&
        !          6889: �
&&�&�G&&&&B
&&
.&&
P
&&E&&^
&&Z&&j
&&p&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&�

&& &�
'&&8&&&Q&:&&h&F&&�&b+&&�&�&&�&�&&�&�&& �& �&&!&!�&&"&&"�&&#;&#5&&$W&$F&&%n&%U&&&�&&g&&'�&'w&&(�&(�%&&)�&)�D&&*�&*�&&+&+�&&,"&,&&-9&-&&.O&.:&&/d&/I5&&0}&0~
&&1�&1��&&2�&2'&&3�&35&&4�&4D&&5�&5R&&6&6^&&7#&7l&&8:&8}&&9R&9�&&:j&:�&&;�&;�#&&<�&<�&&=�&=�&&>�&>�&&?�&?  &&@&@&&A&A)&&B-&B8
&&CG&CE&&D`&DW&&E{&Ee&&F�&Ft
&&G�&G�V&&H�&H�&&I�&I�&&J�&J&,&&K&K-N&&L&L{&&M-&M�&&NG&N�&&Oc&O�&&P�&P�&�6NB00�=_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�./basic/test4a.exe   777  20115     11      102127  4552132317   7341 MZ$ y���@�P&��[����     �U���YWV�6��BP�pP�^���iP�pP�P����P�pP�B����P�pP�4����P�pP�&��^_��]�U��6&��WV�F�
        !          6890: dž��2dž��dž���F�8&�P�K���P�pP�W���^�F����N�~u��^��?-t��^�@�F���F��^��?u�r�^����C���&P�����0&�R�4&�K�6&�D�^���P�>&P�������&P����#=fu���=hu��=nu���=tu�������N�F�T��~u�!�R&P�&�RP�^�7�����F��F�N�~u�"�X&P�&�RP�^�7��������F�N�~u��^��F��N�F�~u�
�2��&P�����>4&u��0&dž��&�>6&t�
�P����
        !          6891: �P��������P����P�^&P�v��P�v��&P�&���6��c&P�pP�8���>0&u���F���F�����9F�|�fdž��������F�9���|�J�����v��{&P����P��������P����P���=|�����P��&P�h���&P��
�������>0&u�����P�:���v��F�������P��&P�pP�~���>0&u�+�PP����P�����&P�pP�W���^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          6892: ��&P���P������&P���P�7������=|����P��&P����&P�
���^������k��=|�������&P�S���&P�����t�dž��������F9���|������v��&P���P�[�����P���=|����P��&P��&���&P����^����P�+��=|����P��&P��&���&P�N���v�v�v�v
        !          6893: �v�v�v������&P����=|���&P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          6894: �P���P�i�����P����=|�"�~t����P�P�����&P����^���dž��������F9���|�������v�P���P�������P����=|�%�~u������P�P����&P����v�v�v�v�v
        !          6895: �v�v�v������.P���=|��1P�G���&P��
        !          6896: �����P���=|����P�AP����&P�
        !          6897: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6��QP�xP�&�������P�6��cP�xP����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          6898: �v�v�v�xP��
        !          6899: ��(�>/u�
�nP�����pP�xP�
        !          6900: ���xP��
        !          6901: ���~�t�
        !          6902: �&P��        ��^_��]�U���_
        !          6903: WV�P�V
        !          6904: P���^_��]�U���@
        !          6905: WV�P�N
        !          6906: P�����Z
        !          6907: �\
        !          6908: 9T
        !          6909: ~�#}�       9R
        !          6910: r��.N
        !          6911: &�P
        !          6912: �R
        !          6913: @B�T
        !          6914: �^�R
        !          6915: �T
        !          6916: +Z
        !          6917: \
        !          6918: �G�W�^�N
        !          6919: �P
        !          6920: +V
        !          6921: X
        !          6922: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7�rP�pP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�lRP��P�pP�e    ��^_��]�U��&�=       WV�~t���P��
        !          6923: ���F=t��F�����P�v����=t�<�v��P���P�������P�l��=u��v��P�����&P����v����=|��v��P�k����&P�����v�&��=|��v��P�C����&P����^_��]�U���gWV�~t��P�
        !          6924: ���F=t��F'�v�L&��=|��v�3P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          6925: �TP�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v��Z���F�P�"���F�9F�u��^��P��P������&P���^_��]�U���WV�6���P�pP�#���6��X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          6926: ���^_��]�U���TWV�v�v�+���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          6927: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          6928: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P�7����P��P�����>�u�����&�P������>�t���~��P�v���P����=u���_�6���P�&���F�&��F���P���=t�!�F������������P��P�[&������F�H������
        !          6929: �^_��]�U����WV�F��F�F��P�v���P�S��=u���P�����&P�        ���6���P�����F�&��F���P�
        !          6930: ��=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9��        �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁ���s��
        !          6931: 3�P�@
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�5��N
        !          6932: ��+�3���;�\��
        !          6933: 3��6V�6T�6R��P�����ظ6���P�[
        !          6934: ����P���0�!�7�5�!�#�%�%���!�f �.�5&�6,�h  ��3�6�d        s�-
        !          6935: 6�l   �ڻ6�d       �5&�,�6��3�&�=t,���t��3��u�����>������t&H������>��D�!r
        !          6936: �€t��>@Ky�p        �p      ��p   �p      ��U�쾆
        !          6937: ��
        !          6938: �}�p  �r      �t�U��r      �r      �f�r   �r      �l�   �t�~u�F�����>&t�>�!C����F�L�!�f        ���d        �#�%�!�>`t
�a�b�%�!�;�s
        !          6939: OO�
�������;�s���Et�����Y��+�r
        !          6940: ;fr����3��k�U���WV�F�F��v�&
�����FP�v�v�.�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�h������������&t'�+D�F��~P�t�D�P�5��;F�t�L ����D��D��^_��]�U��^;<r�      ���>�!rƇ>�
        !          6941: U��^�t�O�&��]�U��VW���?u)��7u3���$@$�������&���D����6��N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6V�tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�7�PV��P�����P��P��P����>/|     �|9/|�|��/�㋷0V����PVW�c���&P��PW�T��^_��]ÐU���V�v��-h�����������F�V����V�j
        !          6942: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v������]�U��F%�&�1��]�U�����P�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6V�F�P�v�+�P�c���F�@u�>/t�F���F���6V�F�P��P+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          6943: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V��������u �/���~9v�~
        !          6944: �/"+���F�PW�V���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1��PW�����t��PW�����t��PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�/����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th��PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��.����F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          6945: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u�/�V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          6946: �}G�V�����F
        !          6947: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          6948: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          6949: ؋^u�F���]���ȋF�f
        !          6950: ȋF��ы�]�U���P�e�>�t����P�S��]ø�{�V3��B2���2�����Ut
����&P�,�&^Ï��87t)�5&�,�Z3����3��u�GG�>X�����ыѿ&���5�< t�<  t�<
to
        !          6951: �tkGN�< t�<    t�<
t\
        !          6952: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          6953: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>R�G��׀��+�ģT���6�?CC�6X��
        !          6954: �u���6�5�3���< t�< t�<
u�
        !          6955: �u�y�6�?CCN�< t�<     t�<
tb
        !          6956: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          6957: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�53ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.V��3�I��<;Ct�~EE��
        !          6958: �u���N]��]�U��VW�V�|    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â:
        !          6959: �u#�>7r
<"s
< r���<v���ט�/Ê���U���WV�v�D��F���-h�����������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�h������������&uF��pt��xu3�v�����u-����pu��
        !          6960: �����D��^��G�&��V����Du�ށ�h������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���> t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v����pu�F��
        !          6961: ����xu$�F���Du�ށ�h������������&t+��5��-h�����������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~pt�~xuv�^�G�P����td�F-h�����������F��v�5���^���G�^��+���G�*��^��
        !          6962: t��u�G�P����t        �v����^��]�U��d&��WV�v�����|
        !          6963: �F�l
        !          6964: �F�`
        !          6965: �v
        !          6966: �t
        !          6967: �|�<%t�X�x
        !          6968: &+��h
        !          6969: �d
        !          6970: �r
        !          6971: �f
        !          6972: �p
        !          6973: �n
        !          6974: �b
        !          6975: �^
        !          6976: �j
        !          6977: ��
        !          6978:  �|&0u<F��
        !          6979: 0�3�<+u
�h
        !          6980: �n
        !          6981: �"��< u
�>h
        !          6982: u�n
        !          6983: ��^
        !          6984: �      �<-u��j
        !          6985: F��P�����u�V�~
        !          6986: P�f�����>~
        !          6987: }�j
        !          6988: �~
        !          6989: �أ~
        !          6990: �<.u#�p
        !          6991: FV�x
        !          6992: P�<�����>x
        !          6993: }
        !          6994: �x
        !          6995: &�p
        !          6996: ��=Ft2=Nt5=ht =lu�f
        !          6997: �>f
        !          6998: u�<Lu&F�<u�&�f
        !          6999: &���f
        !          7000: ���f
        !          7001: �ӊ�����=Et
        !          7002: =Gt=Xu      �d
        !          7003: ���� ����-c=v�&��.���"�l
        !          7004: ��t
        !          7005: ��l
        !          7006: �i&��r
        !          7007: �^
        !          7008: �
        !          7009: P�&���Q&�����b
        !          7010: �d
        !          7011: �>p
        !          7012: u     �z
        !          7013: &���z
        !          7014: �p
        !          7015: �x
        !          7016: �>f
        !          7017: u�+��f
        !          7018: �F�9~
        !          7019: t'�~
        !          7020: �F��>j
        !          7021: t     �~
        !          7022: ���.~
        !          7023: �~
        !          7024: �}+��~
        !          7025: �l
        !          7026: �P�����:P�����~�t"�>j
        !          7027: t�F�-�~
        !          7028: �}+��~
        !          7029: ���~
        !          7030: �.l
        !          7031: �P�������/�+�P��&�*���&����������>f
        !          7032: t��N��G�=t�=%u���+�PV�������<t�|��>t
        !          7033: uY�`
        !          7034: �G tO����MR"n!X"X"X"b"n!b"b"b"b"V!�!�!b"b"H"b"j!b"b"B"�>v
        !          7035: t�>t
        !          7036: u�`
        !          7037: �G u��F뙐�t
        !          7038: ^_��]ÐU���WV�~
        !          7039: t�r
        !          7040: �>f
        !          7041: t�>f
        !          7042: u�l
        !          7043: ��W�F��V��l
        !          7044: �*�>r
        !          7045: t�l
        !          7046: ��F��F����l
        !          7047: ���F��V��l
        !          7048: �>^
        !          7049: t
�F�F�t�F�+���
        !          7050: �6|
        !          7051: �>r
        !          7052: u*�~�}$�~
        !          7053: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>p
        !          7054: t!W� ���x
        !          7055: +ȉN����0F��I���N�d
        !          7056: ���t<a|�, FG�}�u�>r
        !          7057: u�h
        !          7058: n
        !          7059: t�~�u�&�+�P���^_��]ÐU���WV�~t�&�l
        !          7060: �F��^��l
        !          7061: ��>f
        !          7062: u�l
        !          7063: ��W�F��V��l
        !          7064: ���l
        !          7065: ��F��F��^��l
        !          7066: �>f
        !          7067: u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96p
        !          7068: t�x
        !          7069: ���^��F�&�?tF;�~��F�^��F�&�?u�>~
        !          7070: +��>j
        !          7071: uW�&��V�v��v��o&���>j
        !          7072: tW�&��^_��]�U����l
        !          7073: �F��~gt�~Gu�&�*��F��>p
        !          7074: u�x
        !          7075: �~�t
�>x
        !          7076: u�x
        !          7077: &�6d
        !          7078: �6x
        !          7079: �v�6|
        !          7080: �v�����
        !          7081: �~�t�>^
        !          7082: u�6|
        !          7083: �����>^
        !          7084: t�>x
        !          7085: u�6|
        !          7086: �����l
        !          7087: ��
        !          7088: �h
        !          7089: n
        !          7090: t�v������t�&�+�P�&��]�U��V�>v
        !          7091: u/�`
        !          7092: �Ox�F�7��*���S�v�A���@u�v
        !          7093: ���t
        !          7094: ^]ÐU���WV�>v
        !          7095: uI�v�~B��6`
        !          7096: �6�
        !          7097: �      ���@u�v
        !          7098: ��N�~�`
        !          7099: �Ox۠�
        !          7100: �?��*��܃>v
        !          7101: u�F&t
        !          7102: ^_��]�U���WV�v�>v
        !          7103: uP��6`
        !          7104: �^&��P����@u�v
        !          7105: �F��N�t�`
        !          7106: �Ox��^&��`
        !          7107: �?��*��҃>v
        !          7108: u�F&t
        !          7109: ^_��]�U���
        !          7110: WV�6|
        !          7111: +��F��F��>�
        !          7112: 0u9p
        !          7113: t9b
        !          7114: t9z
        !          7115: u��
        !          7116:  �>~
        !          7117: V����F�+�+~�>j
        !          7118: u�<-u�>�
        !          7119: 0u��P�����N��>�
        !          7120: 0t�~�>j
        !          7121: t�~t�F��_�>�
        !          7122: t�F��j�>j
        !          7123: u&W�����~t        �~�u�5�>�
        !          7124: t     �~�u�=�v�V������>j
        !          7125: t
��
        !          7126:  W�a���^_��]Ã>h
        !          7127: t�+�� P����Ð�0P������>�
        !          7128: u�>d
        !          7129: t�X���xP�����ÐU���WV�v�F�&�<*u�l
        !          7130: �?�l
        !          7131: F�H��<-u�F���F+��<0|5�<909>p
        !          7132: u�<0u��
        !          7133: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          7134: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          7135: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          7136: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;<r
        !          7137: �>�!����
        !          7138: N���&��>�Ë�]�2��ܡ1��#�3ɨ�u��&�U����^;<r�  �����> t�B3ɋ��!r���>�tn�V3��F��F��WV����f��N�T�
        !          7139: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          7140: t;�t����#�a�
;�u���
        !          7141: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���>@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���>@t
        !          7142: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          7143: �!W�~��]�M�U�u�E
        !          7144: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          7145: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�������&F�V�DP�F��FH�F��F
        !          7146: �F�>�t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          7147: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          7148: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          7149: �vV� ���&+�P��t�P�F�P�F�P�v
        !          7150: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z���~PVW�g��P� ���/�v���t�PW�v�����F��>/u+��P�.PW�q���P�(���v���t�PW�v����F�W�t���v��k���F�^_��]ÐU����s�WV��(����v
        !          7151: �v�v�v������|�@u2�>/u+�^���&�</t<\t
        !          7152: �t�&:t��P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW����vW������v
        !          7153: �vW�v�������|�@u��>/u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������r59�s%P�ر��ً5+���ËشJ�!Xr$�H����.�&�Ë���U���WV�h+����D�tV�`߃�@t&G��96�s��^_��]�U���V�F-h�����������F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;<r�  �*�F�tH�~
        !          7154: t3ɋѸ&B�!rK�F
        !          7155: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          7156: �B�!r��>���Y�f;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6Ht;�t
�D�FV�:^s0����s�u������ڃ��۱��H�!r钉�T�63�_^��]ËN��9Lt����u���?��r9�ӎ�;�u9�s&����������;�u ١5+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          7157: �t���2���^_��]�U��VW��U��^;<}��|��>@t�&�3���]��>�
        !          7158: u���
        !          7159: ÐU���WV��P�sރ����u��<u��PV�6��k�����RP��V�?ރ�RP�7����+���ހ?t��ފ������u     ��ހ?-uG��|؋�ހ?t�P���P�6��  ����������?&�@��^_��]�U���WV�v�|}��| ~��|~      �|     }��|
        !          7160: ��l���~�|u�\�㋇��
        !          7161: ��\�㋇��F���u�F��|
        !          7162: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�V�F�~t)�F�F����^��F��7�^���@��^��?t���v�<�F��t�^���=u�N�u�~�t�F���~t�v�����F�v���v�/�:
        !          7163: ����&��6����F��F�P�oۃ��F��u!�v��_ۃ����u�/�:�6�뷋~��6��^�~��?��$��F��^
        !          7164: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P�&     PW�fۃ�P�������F��G+��N���>t��>����GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v��/�:
        !          7165: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�/�����k�VW�؋^
        !          7166: ���ã4       �F�6   �8     �66   F�B     �&)�!�&)�R      �!U�>7}!.�n8.�&l8�.�5.�6p8�u.�6r8.�t8�4 �~t�3��2��P��!X�^&�V�K�!P�P�0�!<X[}!.�n8.�&l8�..�t8.�6r8�u.�6p8�5���^]_^r�M�!���r      ������/��N
        !          7167: �F�V�~W��
        !          7168: �t��
        !          7169: u�y
        !          7170: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [files count fname]
        !          7171:   Flags:  h    Help - print this usage info
        !          7172:           t    Print execution time statistics
        !          7173:           f    Test function only (negate -t)
        !          7174:           n    Suppress test directory create operations
        !          7175: file.unknown option '%c'filescountdir.%s: getattr and lookup
        !          7176: %s%dcan't stat %s   %d stats on %d files
        !          7177: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          7178:       %s: (%s)  
        !          7179:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          7180: \*.*rewind failed����;C_FILE_INFO���&&\�C���&&�&         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          7181: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error� !"#5GWXYi{|}~�����������������"%.com.exePATH\rrrrr��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO  �     �L2<<NMSG>>R6000
        !          7182: - stack overflow
        !          7183: R6003
        !          7184: - integer divide by 0
        !          7185:       R6009
        !          7186: - not enough space for environment
        !          7187: �
        !          7188: �run-time error R6002
        !          7189: - floating point not loaded
        !          7190: &R6001
        !          7191: - null pointer assignment
        !          7192: ���NB00�7.
        !          7193: TEST4A.OBJ>SUBR.OBJPD:\MSC\5.1\LIB\BINMODE.OBJP�&dos\crt0.asmo&&dos\crt0dat.asmr&
        !          7194: chkstk.asm�>& fprintf.c�&_file.c�n&fflush.c4 &
dos\close.asmTX&nmalloc.asm�?&
        !          7195: strcat.asm�2&
        !          7196: strcpy.asm&atol.asm"&    ctype.asm"^&getenv.c�~&perror.c�x&setbuf.cvV&    sprintf.c�&   creat.asm�&   umask.asm��&system.c�$&
dos\chmod.asm�<&dos\dir.asm��&dos\getcwd.c�<&
        !          7197: dos\stat.c�
&dos\unlink.asm�(&dos\d_find.asm+&dos\diskfree.asm>&dos\getdrive.asmR&dos\gettime.asml&dos\setdrive.asm��&ldiv.asm4&lmul.asmR &dos\crt0msg.asmr&
        !          7198: crt0fp.asmx"&
        !          7199: chksum.asm��&&dos\stdargv.asm(n&dos\stdenvp.asm�T&dos\nmsghdr.asm�T&dos\dosret.asm>&_cflush.asm>V&&  _flsbuf.c�.&
        !          7200: _freebuf.c�&& _sftbuf.c��&output.c�(�&&dos\open.asmH*(&&     write.asmp+a&&amalloc.asm�,&
        !          7201: strlen.asm�,:&strncmp.asm(-T&atox.asm|-&dos\bdos.asm�-G&dos\intdos.asm�-&&
        !          7202: dtoxtime.c�.B&stricmp.asm./+&strrchr.asmZ/X&strpbrk.asm�/&syserr.c�/D&&
dos\spawnve.c�0�&
        !          7203: spawnvpe.c�1&dos\access.asm
        !          7204: 2B&dos\stdalloc.asmL22&
        !          7205: flushall.c~2l& _getbuf.c�2z&
dos\lseek.asmd3&stackava.asmv3�&dos\brkctl.asm:4(&strncpy.asmb4
        !          7206: &        ultoa.asml4&cmiscdat.asml4#&
        !          7207: isatty.asm�4&days.c�4�&&tzset.c6&  timeset.c6*&
        !          7208: strchr.asmD6'&
dos\cenvarg.cl8�&dos\dospawn.asmX9&dos\execload.asml9_&xtoa.asm0&��_Tflag2&��_Hflag4&��_Fflag6&��_Nflag�_usagek�_main��_pattern��h_findtst���    _maxentry���
_currententry���_dirlist�
        !          7209: ��_dirst���_Myname�_statfs�_opendirs'_readdir}

        !          7210: _rewinddir2�_error2.  _closedir
        !          7211: �
        !          7212: _starttime)�_endtime=$_seekdir"_telldir��_printtimes,�_testdir      �    _mtestdir`      �_getparmK
        !          7213: �   _complete���_diropen>�_dirtree5�
_gettimeofday�
        !          7214: �_unix_chdir�
        !          7215: �_getwd��
        !          7216: _rmdirtree�
        !          7217: �_unix_chmod�_lstat� �_chdrive��__fmode��__iomodeN
        !          7218: �_edata��_end��__aexit_rtn�__abrkp��__abrktb��__asizdsP__astart��__atopsp�       __abrktbe� __cintDIVv�&
        !          7219: __acrtused�__amsg_exit7�__osversion/�_errno�__exit^�__child<�__nfile__cinitR�___argca�__intno7�
__dosvermajor:�__oserrT�___argv8�
__dosverminorV�_environ>�__osfile9�__osmode3�__pspadrd        �__fpinitb�__ovlvecX�__pgmptr�       __acfinfo`� __ovlflag#� __aintdiv7� __osmajor8� __osminor1�
        !          7220: __umaskval"
        !          7221: __ctermsub:�
        !          7222: __doserrno'�__fac�_exit5�__pspf�STKHQQr__chkstk�_fprintf��__bufin�
        !          7223: �__bufout��__buferr�__iob2��        __lastiobh�__iob�_fflush4_closef_mallocT__nfree��__asegdsf       __nmallocT_free�_strcat�_strcpy_atol��__ctype��__ctype_"_getenv�_perror�_setbufv_sprintf�_creat�_umask�_system�_chmod�_chdir�_mkdir�_rmdir�_getcwd�     __getdcwdT_stat�_remove�_unlink�__dos_findnext�__dos_findfirst__dos_getdiskfree>__dos_getdriveR
__dos_gettimel__dos_setdrive�__aNldiv__aNlmul  __aNulmulR__FF_MSGBANNER��    __adbgmsgv�& __acrtmsgr__fptrapx__nullcheck�        __setargv( __setenvp�__NMSG_TEXT�__NMSG_WRITE�    __dosret0
        !          7224: 
        !          7225: __maperror�
        !          7226: __dosretax�__dosreturn��__cflush>__flsbuf�       __freebufF__ftbuf�__stbuf�__output�(
        !          7227: __copensub�(_open7*__cXENIXtoDOSmodeH*_write�,__amallocbrk��__aseg1��__asegh��__asegn��__asegr�,__amlink��    __QChdatas+ __amallocV,
        !          7228: __amexpand��
        !          7229: __amblksiz�,_strlen�,_strncmp(-__catox|-_bdos�-_intdos�-
        !          7230: __dtoxtime�._stricmp�._strcmpi./_strrchrZ/_strpbrk|�   _sys_nerr0�_sys_errlist�/_spawnve�0       _spawnvpe�1_access
        !          7231: 2  __myallocL2 _flushall~2__getbuf�2_lseekd3_stackavailv3_brkctl:4_strncpyb4_ultoa��
__cfltcvt_tab��__asizeC��__asizeD��__sigintoff��__sigintsegl4_isatty��__days��__lpdaysP5 __isindst�4___tzset�4_tzset  �    ___mnames�� _daylight�� _timezone��_tzname��   ___dnames6_strchrD6   __cenvargv8 __dospawnX9
        !          7232: __execloadx9__cxtoal9
        !          7233: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          7234: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�8&��&x�h&��&x��&��&x�x&��&x��&��&&�&&�&&�&���+&u��c��&x0��&x���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&&�&&�&&�&x(��&x����&&�&&�&&�&&�&&�&xp��&&�&&�&x����&&�&x��&&�&&�&&�&&�&&�&&�&&�&y���� �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          7235: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          7236: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          7237: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          7238: u���c&��&&�&
        !          7239: ������&
        !          7240: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          7241: u���c&��&��&
        !          7242: u���c&��&&�&&�&&�&����&
        !          7243: u���c��&���
        !          7244: &
        !          7245: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          7246: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          7247: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          7248: u���c&�!&����&u��c�#&&�&��&
        !          7249: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k��f'mainv�
        !          7250: �argc
        !          7251: +argv���files���fi���count���ct���totfiles
���totdirs���fname
        !          7252: ���time     ���str��statb
        !          7253: ���opts&&���Mynameh�_iob&>��&�&dirtreeIv&        �lev�files
        !          7254: �dirs
        !          7255: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          7256: ��name&&&��m&�&�  rmdirtree�\& �lev�files
        !          7257: �dirs
        !          7258: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          7259: ��name&&&2����error=�      �str       �ar1       
        !          7260: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          7261: ���path&&&
        !          7262: ���   starttime&&)���fendtime4p�tv&&&���w�
        !          7263: printtimes�q�tv�nbytes&&&,����testdir7�        �dir��statb   ��str&&&        �^�mtestdir
 M      �dir&&&`        �g-�getparmk  V
        !          7264: �parm     �min
        !          7265: �label      ���val&&&�        ���chdrive�  s
        !          7266: �path���desireddrive���drive&&&K
        !          7267: �7>complete&&�
        !          7268: �&Od
        !          7269: unix_chdir�
        !          7270: 
        !          7271: �path&&&�
        !          7272: �!u�getwd�
        !          7273: 
        !          7274: �path&&&�
        !          7275: �L��
        !          7276: unix_chmod�
        !          7277: ;
        !          7278: �path
        !          7279: �mode
���dosmode&&&� ��lstat 
        !          7280: �path     
        !          7281: buf&&&5�pagettimeofday@_�TV�TimeZone
��ndostime&&&��rW       statfs��
        !          7282: �path     �buf���&p���&i���drive��q     diskspace&&&��h  9
        !          7283: opendir��
�dirname���&i���
        !          7284: attributes&&&}
�J
        !          7285: �
        !          7286:     rewinddir�
�
        !          7287: �dirp���&i���
        !          7288: attributes&&&"�
        !          7289: �
        !          7290: telldir*

        !          7291: �dirp&&&=$6
        !          7292: /seekdirH%
        !          7293: �dirp     �loc&&&s'F@ureaddir~5
        !          7294: �dirp&&&�)!��findt_to_dirent�~&f�&d&&&�,X��copynametolower�G
        !          7295: �dest     �src���&i&&&2.�closedir=
        !          7296: �dirp&&
        !          7297: V
        !          7298: ��ts���_ctype
        !          7299: N
        !          7300: ��te��pattern��hfindtst���maxentry���currententry���dirlist
�
        !          7301: ��dirst���Myname
/��errnoh�_iobtest4a.cM- ;!I"W#e+k.v0{2�3�4�:�;�<�=�>�?�@�B�C�F�G&J&K
        !          7302: &N
&O&R&S%&T(&U2&VX&W[&X^&Yb&[e&\n&]�&^�&`�&a�&b�&c�&e�&f�&g�&h�&j�&k�&l�&o�&p�&q�&t�&uwy{A}S~]�`�w�������������������
��&�4�7subr.c�>+I,W.Z/s0�1�2�4�5�6�7�9�:�;=A1B@DJEOFbGqI{J�K�L�N�O�_�k�l�n�o�pq,r;tEuJvMwfx|y�z�{�|�~�����������$�)�,�2�=�S�h���������������
        !          7303: ��#�)�4�B�`�j�u������������&�,�7�@�U�Z�p���������������������       &
     &     &+             &0      
        !          7304: &A     &N     
&T     &Z     &`     &k     &z     &�     &�     &�      &�     .&�     1&�     3&�     4&
        !          7305: 5&
        !          7306: 6&
        !          7307: 8&*
        !          7308: 9&;
        !          7309: <&E
        !          7310: C&K
        !          7311: D&V
        !          7312: F&h
        !          7313: H&r
        !          7314: I&|
        !          7315: N&�
        !          7316: Q&�
        !          7317: S&�
        !          7318: T&�
        !          7319: X&�
        !          7320: Z&�
        !          7321: [&�
        !          7322: _&�
        !          7323: b&�
        !          7324: c&d&h&k& l&/p&5r&@u&Jv&|w&�x&�|&�&��&��&��&��&��&��&�&$�&9�&?�&M�&e�&}�&��&��&��&��&��&��&��&��&��&��&��&��&��&
�&
�&&
�&C
�&a
�&d
�&k
�&q
�&w
�&}
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&     �&�&�&�&�&*�&0�&7�&=�&H�&N�&g�&m�&s�&~�&��&��&��&��&��&��&��&��&�&),2=   C
        !          7325: I
        !          7326: SLIBCE.LIB�&&&&&�M&&��&&�*�&&�2?&&&&��&&�&g+o&4�&&4'&�        &&[&�     �&&t&�
        !          7327: �&&&�&a&&�&}&&�&�U&&     �&       �&&
        !          7328: �&
        !          7329: �
&&&&�G&&&&C
&&
/&&
Q
&&F&&_
&&[&&k
&&q&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&�

&&!&�
'&&9&&&R&;&&i&G&&�&c+&&�&�&&�&�&&�&�&& �& �&&!&!�&&"'&"�&&#<&#5&&$X&$G&&%o&%V&&&�&&h&&'�&'x&&(�&(�%&&)�&)�D&&*�&*�&&+
&+&&,#&,&&-:&-&&.P&.;&&/e&/J5&&0~&0
&&1�&1��&&2�&2(&&3�&36&&4�&4E&&5�&5S&&6        &6_&&7$&7m&&8;&8~&&9S&9�&&:k&:�&&;�&;�#&&<�&<�&&=�&=�&&>�&>�&&?�&?
        !          7330: &&@&&@&&A&A*&&B.&B9
&&CH&CF&&Da&DX&&E|&Ef&&F�&Fu
&&G�&G�V&&H�&H�&&I�&I�&&J�&J,&&K&&K.N&&L&L|&&M.&M�&&NH&N�&&Od&O�&&P�&P�&�7NB00:>&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p� dostime_ti&
��������&(�hour��minut./basic/test5a.exe   777  20115     11      103733  4552132371   7346 MZ�% x���@ޯ�&���%��b    �f     �U���WV�6��BP��P����hP��P�����P��P�����P��P�t����P��P�f��^_��]�U��> �>WV�F�
        !          7331: �F��F��F�6&�P����P��P�����^�F����N�~u��^��?-t��^�@�F���F��^��?u�r�^����C�#��&P����.&�R�2&�K�4&�D�^���P�>&P�X������&P�����#=fu���=hu��=nu���=tu�������N�F�T��~u�$�R&P�&�RP�^�7�&        ���F�V�F�N�~u�!�W&P�&�RP�^�7�����F�F�N�~u��^��F��F�N�~u�
�8��&P�'���>2&u��.&�F�&�6��]&P��P�����>4&t�
�P�R���
        !          7332: �P�����F��F���F�&�V��~�~�'}�
        !          7333: �~�r��v�����F�V����߉�������>.&u����F���F��F�9F�|�&��&P�v�����F�=|��v��h&P����&P�I������P�v����=|��v��z&P����&P����������u����������v���&P�f���&P�����F�V�F�V��    �n� �^��~�}�e~�  �~�w�W�F�V��}�~�= w��� �F��v�����P�v����;F�u��v���&P�����&P�m�����v���������P�v��9��=|��v���&P����&P�4���F�V�9���t�    9���u�%�v��v����������v���&P�m���&P��
���n��>.&u�����P�B���v��v��v��&P��P���
        !          7334: �>.&u��v��v�F�RP�\RP����P����
        !          7335: P��P�V���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          7336: �P���P�����&P���P�_������=|����P�P����&P�
���^������k��=|������!P�S���&P�����t�dž��������F9���|������v�1P���P������P���=|����P�6P��&���&P����^����P�+��=|����P�FP��&���&P�N���v�v�v�v
        !          7337: �v�v�v�����VP����=|��YP�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          7338: �iP���P������P���=|�"�~t����P�nP�����&P����^���dž��������F9���|�������v�P���P�%�����P����=|�%�~u������P��P����&P����v�v�v�v�v
        !          7339: �v�v�v�������P���=|���P�G���&P��
        !          7340: �����P����=|����P��P����&P�
        !          7341: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6���P��P�&�������P�6���P��P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          7342: �v�v�v��P��
        !          7343: ��(�>�u�
��P��
�����P��P�
        !          7344: ����P��
        !          7345: ���~�t�
        !          7346: �&P��        ��^_��]�U���_
        !          7347: WV�P��
        !          7348: P���^_��]�U���@
        !          7349: WV�P��
        !          7350: P������
        !          7351: ��
        !          7352: 9�
        !          7353: ~�#}�       9�
        !          7354: r��.�
        !          7355: &��
        !          7356: ��
        !          7357: @B��
        !          7358: �^��
        !          7359: ��
        !          7360: +�
        !          7361: �
        !          7362: �G�W�^��
        !          7363: ��
        !          7364: +�
        !          7365: �
        !          7366: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7��P��P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v��RP��P��P�e    ��^_��]�U��&�=       WV�~t���P����F=t��F
        !          7367: ����P�v�G��=t�<�v�P���P�
�����P�
��=u��v�P�����&P����v���=|��v�BP�k����&P�����v�&��=|��v�aP�C����&P����^_��]�U���gWV�~t���P�-���F=t��F��v�L&��=|��v��P�����������^_��]�U��� WV�v��
        !          7368: ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          7369: ��P�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v�����F�P�z���F�9F�u��^��P��P������&P���^_��]�U���WV�6��P��P�#���6��X����P�M��^_��]�U����WV�v�4����v�9���^_��]�U����WV�&P�v�}
���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v����^_��]�U���TWV�v�v����^_��]�U���4WV�F�P�c����RP�F�*�+�QP��Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP���^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          7370: �F�P�u���F�P�v��<��=u�����V�^�F��G�G+�P�v�+�P�v���^�G�W
        !          7371: +�P�v�+�P�v���^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P�_���P��P����>u����&�P������>�t���~��P�v���P�E��=u���_�6���P�&���F�&��F���P�
        !          7372: ��=t�!�F������������P��P�[&������F�H������
        !          7373: �^_��]�U����WV�F��F�F��P�v���P�
��=u��P�����&P�        ���6���P�����F�&��F���P�b
��=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9��      �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F�^_��]Ð�0�!<s� ���6+���r���ׁ�.�s�/
3�P���L�!���6�&*6�&&�Ʊ��H6�$��6��+��۴J�!6�����
        !          7374: �0+�3���;��#
3��6��6��6��K�P�����ظ6�(P����P�(�0�!���5�!�����%�$�!��   �.��&�6,��  ��3�6��        s�6��     �ڻ6��       ��&�,�6��3�&�=t,��|�t��3��u������������t&H���������D�!r
        !          7375: �€t���@Ky��        ��      ���   ��      ��U���
        !          7376: ��
        !          7377: �}��  ��      �t�U���      ��      �f��   ��      �l���t�~u�F������&t�>�!C����F�L�!��  ����        ���%�!�>�t
�����%�!�;�s
        !          7378: OO�
�������;�s���Et�����Y��+�r
        !          7379: ;�r����3��k�U���WV�F�F��v�~�����FP�v�v������vV������^_��]ÐU���WV�v+��D$<uF�Du�ށ��������������n&t'�+D�F��~P�t�D�P�A��;F�t�L ����D��D��^_��]�U��^;�r�      ���>�!rƇ���U����^;�r�      ������ t�B3ɋ��!r�����tn�V3��F��F��WV����f��N�T�
        !          7380: �uJ�r=�vH���ܺ=(s��+�ԋ��N�<
        !          7381: t;�t����#�a�
;�u���
        !          7382: �F����
��^_�U�E3����PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ����@t�^�?u������F�+F��f�^_�
�N�u���&�V�@�!s�  ���u����@t
        !          7383: �ڀ?u�������U��^�t�O�&��]�U��VW���?u)���u3���$@$�������&���D����6��N�؎��a_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6��tF�~t@�v�(���������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V���PV��P������P��P��P�w����>�|     ��9�|������㋷�V���PVW�G����&P��PW�8���^_��]ÐU���V�v��-�����������n�F�V�{���V����~u�L�d��^����@�D��G&��@�d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�g�����Mx*������W+�P�       ����^_��]�U���v�P�v�r����]�U��F%�&����]�U�����P�����F��~u+�P�v��f���u�&�Z+��V�F��F�F��F��~�t&�6��F�P�v�+�P�����F�@u�>�t�F���F��6��F�P�P+�P�����]�U��V�C�!r�F�t������&�&C�!�tU��9�U��;�V�!�`U��:�V�!s�=u쒓�C<t
        !          7384: <?t<*u�����U���"WV�v�~�F�D�v��F�P�F�P����~�t������F�%��FދF�%?��E+��E�E
        !          7385: �E�u�E&���t�$&����&    E�F�W�F�P�F�P�����F�%��P�F���%?P�F���%P�F�%P�F���%P�F�      ��%P�����E�U�E�U�E�U�~�t+��E�E�5�u�M �>�&P+�PPV�����F��V��P+�PPV�����E�U+�P�v��v�V�����M�+�^_��]�U���v�v+�P���]�U���`WV�v�F����~u+�PP�P����*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P����F�P����@�F��~�u;�~��V��������u   �����~9v�~
        !          7386: ��"+���F�PW�&���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v������t1�PW�D���t�PW�5���t�PW�&���u��@��%�&������%�&������^_��]ÐU���LWV�v�~�!PV�T���t
������Y&�+�P�F�P�P�T���F�N�F�7�v��F�P�F�P�L���|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th�$PV�����t����P+�P�v�������F��u�j�V�l���@t)�v��`����v�������F�+��FЉF��F�!�F��
��v�������+�+��E�E
        !          7387: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P�{���E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u���V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          7388: �}G�V�����F
        !          7389: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          7390: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          7391: ؋^u�F���]���ȋF�f
        !          7392: ȋF��ы�]�U���P�e�>(t�(��P�S��]ø�#�V3��B2���2�����Ut
����&P�,�&^Ï*�8�t)��&�,��3����3��u�GG�>������ыѿ&�����< t�<  t�<
to
        !          7393: �tkGN�< t�<    t�<
t\
        !          7394: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          7395: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>��G��׀��+�ģ����6�?CC�6���
        !          7396: �u���6���3���< t�< t�<
u�
        !          7397: �u�y�6�?CCN�< t�<     t�<
tb
        !          7398: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          7399: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&*U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �      _�ϋ���.���3�I��<;Ct�~EE��
        !          7400: �u���N]��]�U��VW�V��    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          7401: �u#�>�r
<"s
< r���<v��,ט��Ê���U���WV�v�D��F���-�����������n�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ��������������n&uF���t���u3�v��}���u-�@���u��
        !          7402: �����D��^��G�&��V�����Du�ށ��������������n&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���� t�P+�PPS�H
        !          7403: ���\�F����&��P�FP�v�����F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t�w���d�+���D�D^]ÐU���V�v�@���u�F��
        !          7404: �����u$�F���Du�ށ��������������n&t+��5��-�����������n�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�t�~�uv�^�G�P�����td�F-�����������n�F��v�����^���G�^��+���G�*��^��
        !          7405: t��u�G�P�}���t        �v���^��]�U��d&�5�WV�v������
        !          7406: �F��
        !          7407: �F��
        !          7408: ��
        !          7409: ��
        !          7410: �|�<%t�X��
        !          7411: &+���
        !          7412: ��
        !          7413: ��
        !          7414: ��
        !          7415: ��
        !          7416: ��
        !          7417: ��
        !          7418: ��
        !          7419: ��
        !          7420: ��
        !          7421:  �|&0u<F��
        !          7422: 0�3�<+u
��
        !          7423: ��
        !          7424: �"��< u
�>�
        !          7425: u��
        !          7426: ���
        !          7427: �      �<-u���
        !          7428: F��P�����u�V��
        !          7429: P�f�����>�
        !          7430: }��
        !          7431: ��
        !          7432: �أ�
        !          7433: �<.u#��
        !          7434: FV��
        !          7435: P�<�����>�
        !          7436: }
        !          7437: ��
        !          7438: &��
        !          7439: ��=Ft2=Nt5=ht =lu��
        !          7440: �>�
        !          7441: u�<Lu&F�<u�&��
        !          7442: &����
        !          7443: ����
        !          7444: �ӊ�����=Et
        !          7445: =Gt=Xu      ��
        !          7446: ���� ����-c=v�&��.��>&��
        !          7447: ���
        !          7448: ���
        !          7449: �i&���
        !          7450: ��
        !          7451: �
        !          7452: P�&���Q&������
        !          7453: ��
        !          7454: �>�
        !          7455: u     ��
        !          7456: &����
        !          7457: ��
        !          7458: ��
        !          7459: �>�
        !          7460: u�+���
        !          7461: �F�9�
        !          7462: t'��
        !          7463: �F��>�
        !          7464: t     ��
        !          7465: ���.�
        !          7466: ��
        !          7467: �}+���
        !          7468: ��
        !          7469: �P�����:P�����~�t"�>�
        !          7470: t�F�-��
        !          7471: �}+���
        !          7472: ����
        !          7473: �.�
        !          7474: �P�������/�+�P��&�*���&����������>�
        !          7475: t��N��G�=t�=%u���+�PV�������<t�|��>�
        !          7476: uY��
        !          7477: �G tO����M�%%�%�%�%�%%�%�%�%�%�$% %�%�%�%�%%�%�%�%�>�
        !          7478: t�>�
        !          7479: u��
        !          7480: �G u��F뙐��
        !          7481: ^_��]ÐU���WV�~
        !          7482: t��
        !          7483: �>�
        !          7484: t�>�
        !          7485: u��
        !          7486: ��W�F��V���
        !          7487: �*�>�
        !          7488: t��
        !          7489: ��F��F�����
        !          7490: ���F��V���
        !          7491: �>�
        !          7492: t
�F�F�t�F�+���
        !          7493: �6�
        !          7494: �>�
        !          7495: u*�~�}$�~
        !          7496: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v��{���>�
        !          7497: t!W�i����
        !          7498: +ȉN����0F��I���N��
        !          7499: ���t<a|�, FG�}�u�>�
        !          7500: u��
        !          7501: �
        !          7502: t�~�u�&�+�P���^_��]ÐU���WV�~t�&��
        !          7503: �F��^���
        !          7504: ��>�
        !          7505: u��
        !          7506: ��W�F��V���
        !          7507: ����
        !          7508: ��F��F��^���
        !          7509: �>�
        !          7510: u
�F�F�u�B�        �~�u   �I�F��^��F��V��F�V�+�96�
        !          7511: t��
        !          7512: ���^��F�&�?tF;�~��F�^��F�&�?u�>�
        !          7513: +��>�
        !          7514: uW�&��V�v��v��o&���>�
        !          7515: tW�&��^_��]�U�����
        !          7516: �F��~gt�~Gu�&�*��F��>�
        !          7517: u��
        !          7518: �~�t
�>�
        !          7519: u��
        !          7520: &�6�
        !          7521: �6�
        !          7522: �v�6�
        !          7523: �v�����
        !          7524: �~�t�>�
        !          7525: u�6�
        !          7526: �����>�
        !          7527: t�>�
        !          7528: u�6�
        !          7529: ������
        !          7530: ��
        !          7531: ��
        !          7532: �
        !          7533: t�v������t�&�+�P�&��]�U��V�>�
        !          7534: u/��
        !          7535: �Ox�F�7��*���S�v�A���@u��
        !          7536: ����
        !          7537: ^]ÐU���WV�>�
        !          7538: uI�v�~B��6�
        !          7539: �6�
        !          7540: �      ���@u��
        !          7541: ��N�~��
        !          7542: �Ox۠�
        !          7543: �?��*��܃>�
        !          7544: u�F&�
        !          7545: ^_��]�U���WV�v�>�
        !          7546: uP��6�
        !          7547: �^&��P����@u��
        !          7548: �F��N�t��
        !          7549: �Ox��^&���
        !          7550: �?��*��҃>�
        !          7551: u�F&�
        !          7552: ^_��]�U���
        !          7553: WV�6�
        !          7554: +��F��F��>�
        !          7555: 0u9�
        !          7556: t9�
        !          7557: t9�
        !          7558: u��
        !          7559:  �>�
        !          7560: V�#���F�+�+~�>�
        !          7561: u�<-u�>�
        !          7562: 0u��P�����N��>�
        !          7563: 0t�~�>�
        !          7564: t�~t�F��_�>�
        !          7565: t�F��j�>�
        !          7566: u&W�����~t        �~�u�5�>�
        !          7567: t     �~�u�=�v�V������>�
        !          7568: t
��
        !          7569:  W�a���^_��]Ã>�
        !          7570: t�+�� P����Ð�0P������>�
        !          7571: u�>�
        !          7572: t�X���xP�����ÐU���WV�v�F�&�<*u��
        !          7573: �?��
        !          7574: F�H��<-u�F���F+��<0|5�<909>�
        !          7575: u�<0u��
        !          7576: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V�P�N��F�<t
        !          7577: :u��&��+�^��]ÐU����^;�r�    �*�F�tH�~
        !          7578: t3ɋѸ&B�!rK�F
        !          7579: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          7580: �B�!r�������U���2��~��F���F���u�@u�#�u�F���V$
        !          7581: Ǵ=�!s=u    ��&t�����%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s����F��u�Fu0�>�!�F$
        !          7582: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          7583: �>�!����
        !          7584: N���&����Ë�]�2��ܡ���#�3ɨ�u��&�Y��;�s+�����3�����At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�Z��&�`=��t%���&t��H;�s����&t�����D���G�t���&�`t�،�;�t&�V�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�Z��G3���Q�E��&t+�IAA��&;\v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�'�����Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<      t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          7585: �!W�~��]�M�U�u�E
        !          7586: r3�����&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿       �ƙ����u�~~&G�<�RP�F�RP��+�SQ�ȋF
        !          7587: �ڙRP�N�^��o칀Q�&SQ�ȸm&����ЋF�ǙRP�N��^��I�F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF��b�F        �H     &F�V�DP�F��FH�F��F
        !          7588: �F�>J t�F�P�����t        �n��^��F�V�^_��]�U��֋v�^��
        !          7589: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          7590: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌���WV�v�~u�v
        !          7591: �vV�����&+�P��t�P�F�P�F�P�v
        !          7592: �v����@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�V���t�v���t�PV�v����F���V�v���P�l�����u
�v��K���z����PVW����P������v���t�PW�v�F���F��>�u+��P�.PW�q���P����v���t�PW�v����F�W������v�������F�^_��]ÐU�����WV��(����v
        !          7593: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          7594: �t�&:t��P�E�����u��|����PV�F�P�H�����F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW�r����vW�h����v
        !          7595: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
��}���*r59$s%P�ر��ً�+���ËشJ�!Xr$�H�$��.*&*Ë����U���WV��+����D�tV�݃�@t&G��96�s��^_��]�U���V�F-�����������n�F��P�.߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U��VW�~u8�*�V�FHu�Sr'�H�6zHt;�t
�D�FV�:^s0����zs�u������ڃ��۱��H�!r钉�T�6z3�_^��]ËN��9Lt����zu���?��r9�ӎ�;�u9$s&����������;�u     ١�+؎��J�!r
;�u�$�����U��WV�~�v�ߋN��
        !          7596: �t���2���^_��]�U��VW��U��^;�}��|���@t�&�3���]��>�
        !          7597: u���
        !          7598: ÐU���WV�:   P�kރ����u��<u��PV�6L        �k�����RP��V�7ރ�RP�_�F   �H     +���ހ?t��ފ������u      ��ހ?-uG��|؋�ހ?t�P���P�6N    �       �����N       ��N  �?&�@�J        ^_��]�U���WV�v�|}��|   ~��|~      �|     }��|
        !          7599: ��l���~�|u�\�㋇        �
        !          7600: ��\�㋇"      �F���u�F��|
        !          7601: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu���F�~t)�F�F����^��F��7�����@��^��?t���vࡢ�F��t�^����u�N�u�~�t�F���~t�v�����F�v���v����
        !          7602: ����&��6\�\�F��F�P�gۃ��F��u!�v��Wۃ����u�����6\뷋~��6\�^�~��?��$��F��^
        !          7603: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P��     PW�^ۃ�P�������F��G+��N����t�������GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7�/����F��=}v�����
        !          7604: �^�7��ك����
�^�ƈ�F�^_��]ÐU��~&t�~t
��������VW�؋^
        !          7605: ���ã�       �F��   ��     �6�   F��     �&)�!�&)��      �!U�>�}!.��:.�&�:�.�5.�6�:�u.�6�:.��:�� �~t�3��2��P��!X��&�V�K�!P�P�0�!<X[}!.��:.�&�:�..��:.�6�:�u.�6�:�5����]_^r�M�!�����      ���������N
        !          7606: �F�V�~W��
        !          7607: �t��
        !          7608: u�y
        !          7609: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [size count fname]
        !          7610:   Flags:  h    Help - print this usage info
        !          7611:           t    Print execution time statistics
        !          7612:           f    Test function only (negate -t)
        !          7613:           n    Suppress test directory create operations
        !          7614: bigfileunknown option '%c'sizecount%s: write
        !          7615: can't create '%s'can't stat '%s''%s' has size %ld, should be 0'%s' write failedcan't stat '%s''%s' has size %ld, should be %ld  wrote %ld byte file %d times
        !          7616: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          7617:       %s: (%s)  
        !          7618:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          7619: \*.*rewind failed��*;C_FILE_INFO���&&��C0��&&�&f         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          7620: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown errorbjk����������������+,-.FGHIJXij�%.com.exePATH\
        !          7621: 
        !          7622: 
        !          7623: 
        !          7624: 
        !          7625: ��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&> B       SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFOh       �x     �H5<<NMSG>>R6000
        !          7626: - stack overflow
        !          7627: R6003
        !          7628: - integer divide by 0
        !          7629:       R6009
        !          7630: - not enough space for environment
        !          7631: �
        !          7632: �run-time error R6002
        !          7633: - floating point not loaded
        !          7634: &R6001
        !          7635: - null pointer assignment
        !          7636: ���NB00D8n
        !          7637: TEST5A.OBJ~SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asmBo&&dos\crt0dat.asm�&
        !          7638: chkstk.asm�>& fprintf.c&_file.cn&fflush.ct &
dos\close.asm�(&&        write.asm�X&nmalloc.asm?&
        !          7639: strcat.asmT2&
        !          7640: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.c�~&perror.cfx&setbuf.c�V&    sprintf.c4&   creat.asmL&   umask.asm^�&system.c�$&
dos\chmod.asm<&dos\dir.asmJ0&&dos\fstat.cz�&dos\getcwd.c8<&
        !          7641: dos\stat.ct
&dos\unlink.asm�(&dos\d_find.asm�+&dos\diskfree.asm�&dos\getdrive.asm�&dos\gettime.asm&dos\setdrive.asm�&ldiv.asm�4&lmul.asm� &dos\crt0msg.asm
        !          7642: &
        !          7643: crt0fp.asm"&
        !          7644: chksum.asm2�&&dos\stdargv.asm�n&dos\stdenvp.asm. T&dos\nmsghdr.asm� T&dos\dosret.asm� &_cflush.asm� V&&  _flsbuf.c,".&
        !          7645: _freebuf.cZ"&& _sftbuf.ct#�&output.c<,z&
dos\lseek.asm�,�&&dos\open.asmZ.&stackava.asml.a&&amalloc.asm�/&
        !          7646: strlen.asm�/:&strncmp.asm$0T&atox.asmx0&dos\bdos.asm�0G&dos\intdos.asm�0&&
        !          7647: dtoxtime.c�1B&stricmp.asm*2+&strrchr.asmV2X&strpbrk.asm�2&syserr.c�2D&&
dos\spawnve.c�3�&
        !          7648: spawnvpe.c�4&dos\access.asm5B&dos\stdalloc.asmH52&
        !          7649: flushall.cz5l& _getbuf.c�5�&dos\brkctl.asm�6(&strncpy.asm�6
        !          7650: &        ultoa.asm�6&cmiscdat.asm�6#&
        !          7651: isatty.asm7&days.c7�&&tzset.c�8&  timeset.c�8*&
        !          7652: strchr.asm�8'&
dos\cenvarg.c�:�&dos\dospawn.asm�;&dos\execload.asm�;_&xtoa.asm.&��_Tflag0&��_Hflag2&��_Fflag4&��_Nflag�_usagek�_main��_pattern��h_findtst���    _maxentry���
_currententry���_dirlist�
        !          7653: ��_dirst���_Myname�_statfs�
_opendir�'_readdir�
        !          7654: _rewinddirr�_errorr.  _closedirJ�
        !          7655: _starttimei�_endtime}$_seekdir_"_telldir��_printtimesl     �_testdirB
        !          7656: �   _mtestdir�
        !          7657: �_getparm��    _complete��_diropen~�_dirtreeu�
_gettimeofday��_unix_chdir��_getwd�
        !          7658: _rmdirtree     �_unix_chmodU�_lstat�_chdrive"�__fmode"�__iomode�
        !          7659: �_edata0�_end(�__aexit_rtnz�__abrkp*�__abrktb$�__asizds�__astart&�__atopspz�       __abrktbe$ __cintDIVv�&
        !          7660: __acrtused3__amsg_exit��__osversion��_errno__exit��__child��__nfileB__cinit��___argc��__intno��
__dosvermajor��__oserr��___argv��
__dosverminor��_environ��__osfile��__osmode��__pspadr�        �__fpinit��__ovlvec��__pgmptr|�       __acfinfo�� __ovlflag�� __aintdiv�� __osmajor�� __osminor��
        !          7661: __umaskvalb
        !          7662: __ctermsub��
        !          7663: __doserrno��__fac_exit��__psp��STKHQQ�__chkstk�_fprintf��__bufin�
        !          7664: �__bufout��__buferrn�__iob2��        __lastiob��__iob_fflusht_close�_write�_malloc�__nfree��__asegds�  __nmalloc�_free_strcatT_strcpy�_atol��__ctype��__ctype_�_getenv�_perrorf_setbuf�_sprintf4_creatL_umask^_system�_chmod_chdir_mkdir"_rmdirJ_fstatz_getcwd�        __getdcwd�_statt_removet_unlink�__dos_findnext�__dos_findfirst�__dos_getdiskfree�__dos_getdrive�
__dos_gettime__dos_setdrive__aNldiv�__aNlmul�  __aNulmul�__FF_MSGBANNER(�    __adbgmsgv�& __acrtmsg
        !          7665: __fptrap__nullcheck2 __setargv� __setenvp. __NMSG_TEXTY __NMSG_WRITE�     __dosret0� 
        !          7666: __maperror� 
        !          7667: __dosretax� __dosreturn@�__cflush� __flsbuf,"       __freebuf�"__ftbufZ"__stbuft#__output<,_lseek�,
        !          7668: __copensub�,_openI.__cXENIXtoDOSmodeZ._stackavail�/__amallocbrkV�__aseg1^�__aseghX�__asegnZ�__asegr�/__amlink^�       __QChdatao. __amallocR/
        !          7669: __amexpand\�
        !          7670: __amblksiz�/_strlen�/_strncmp$0__catoxx0_bdos�0_intdos�0
        !          7671: __dtoxtime�1_stricmp�1_strcmpi*2_strrchrV2_strpbrk��   _sys_nerr��_sys_errlist�2_spawnve�3       _spawnvpe�4_access5   __myallocH5 _flushallz5__getbuf�5_brkctl�6_strncpy�6_ultoa��
__cfltcvt_tab �__asizeC  �__asizeD  �__sigintoff       �__sigintseg�6_isatty  �__days    �__lpdays�7     __isindst7___tzset7_tzsetf  �    ___mnamesJ      �    _daylightF      �    _timezoneL      �_tznameP   �    ___dnames�8_strchr�8   __cenvarg�: __dospawn�;
        !          7672: __execload�;__cxtoa�;
        !          7673: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          7674: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�0&��&x�h&��&x��&��&x�x&��&x��&��&&�&&�&&�&���+&u��c��&x@��&    x�&��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x(��&x0��&xX��&&�&&�&&�&x����&&�&&�&&�&&�&x����&x����&&�&&�&&�&&�&x�&��&&�&&�&x����&&�&x��&&�&&�&&�&&�&&�&&�&&�&y����  �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          7675: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          7676: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          7677: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          7678: u���c&��&&�&
        !          7679: ������&
        !          7680: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          7681: u���c&��&��&
        !          7682: u���c&��&&�&&�&&�&����&
        !          7683: u���c��&���
        !          7684: &
        !          7685: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          7686: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          7687: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          7688: u���c&�!&����&u��c�#&&�&��&
        !          7689: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�fhmainv
        !          7690: �argc
        !          7691: +argv���count���ct
        !          7692: ���size���si���&i���fd���bytes
���bigfile
        !          7693: ���time��statb
        !          7694: ���opts     �ߪbuf&&���Myname��_iob&~��&�&dirtree�v&  �lev�files
        !          7695: �dirs
        !          7696: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          7697: ��name&&&�m&�&�  rmdirtree\& �lev�files
        !          7698: �dirs
        !          7699: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          7700: ��name&&&r����error}�      �str       �ar1       
        !          7701: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          7702: ���path&&&J���  starttime&&i���fendtimetp�tv&&&���w�
        !          7703: printtimes�q�tv�nbytes&&&l  ����testdirw  �      �dir��statb   ��str&&&B
        !          7704: �^�mtestdirM
        !          7705: M     �dir&&&�
        !          7706: �g-�getparm�
        !          7707: V
        !          7708: �parm     �min
        !          7709: �label      ���val&&&���chdrives
        !          7710: �path���desireddrive���drive&&&��7>complete&&��&Od
        !          7711: unix_chdir�
        !          7712: �path&&&��!u�getwd�
        !          7713: �path&&&       �L��
        !          7714: unix_chmod;
        !          7715: �path
        !          7716: �mode
���dosmode&&&U� ��lstat`
        !          7717: �path     
        !          7718: buf&&&u�pagettimeofday�_�TV�TimeZone
��ndostime&&&��rW       statfs��
        !          7719: �path     �buf���&p���&i���drive��q     diskspace&&&�
�h  9
        !          7720: opendir�
�
�dirname���&i���
        !          7721: attributes&&&��J
        !          7722: �
        !          7723:     rewinddir��
        !          7724: �dirp���&i���
        !          7725: attributes&&&_"�
        !          7726: �
        !          7727: telldirj

        !          7728: �dirp&&&}$6
        !          7729: /seekdir�%
        !          7730: �dirp     �loc&&&�'F@ureaddir�5
        !          7731: �dirp&&&�)!��findt_to_dirent~&f�&d&&&,X��copynametolower%G
        !          7732: �dest     �src���&i&&&r.�closedir}
        !          7733: �dirp&&
        !          7734: �
        !          7735: ��ts���_ctype
        !          7736: �
        !          7737: ��te��pattern��hfindtst���maxentry���currententry���dirlist
�
        !          7738: ��dirst���Myname
���errno��_iobtest5a.c]- ;!I"W#e)k,v.{3�9�:�;�<�=�>�?�A�B�E�F�I�J&M&N  &Q&R&S &T*&UP&VS&WV&XZ&Z]&[f&\�&]�&_�&`�&a�&b�&d�&e�&f�&g�&i�&j�&k�&n�&o�&p�&s�&u vx {*|V}kn�x�{�������������������H�l�����������������������*�A�K�g�u�xsubr.c�~+�,�.�/�0�1�2�4�567"9,:/;H=^AqB�D�E�F�G�I�J�K�L�N�O�_kln!o:pPqlr{t�u�v�w�x�y�z�{�|�~��$�.�8�K�Z�d�i�l�r�}����������'�1�:�D�J�U�c�i�t�����������������!       �E     �f     �l     �w     ��     ��     ��     ��     ��     ��     ��     ��     ��     �
        !          7739: 
        !          7740: �
        !          7741: �%
        !          7742: �2
        !          7743: �<
        !          7744: �B
        !          7745: &M
        !          7746: &V
        !          7747: &k
        !          7748:        &p
        !          7749: 
        !          7750: &�
        !          7751: &�
        !          7752: 
&�
        !          7753: &�
        !          7754: &�
        !          7755: &�
        !          7756: &�
        !          7757: &�
        !          7758: &�
        !          7759: &�
        !          7760:  &&.&1&3&4&H5&U6&_8&j9&{<&�C&�D&�F&�H&�I&�N&�Q&�S&�T&�X&�Z&�[&_&     b&c&@d&Oh&Uk&`l&op&ur&�u&�v&�w&�x&�|&�&��&��&
        !          7761: 
�&
�&!
�&-
�&Z
�&d
�&y
�&
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�&�&�&�&)�&3�&9�&R�&X�&f�&��&��&��&��&��&��&��&��&��&��&��&��&�&�&+�&I�&L�&S�&Y�&_�&j�&p�&w�&}�&��&��&��&��&��&��&��&��&��&��&��&�&�&�&%&ilr}  �
        !          7762: �
        !          7763: SLIBCE.LIB�&&&&&�M&&��&&�*�&&03&&&&��&&�&�+o&�4�&&4'&�        &&[&�     �&&t&�
        !          7764: �&&&�&y&&�&�&&�&�U&&     �&       �&&
        !          7765: �&
        !          7766: 

&&&&

&&&&!
G&&
.&&
h
&&E&&v
&&\&&�
&&q&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&&&&&
&&7&'&&O&B
&&g&O&&�&m&&�&y&&�&�+&&�&�&& �& �&&!&!�&&"#&"&&&#@&#&&$U&$%&&%j&%D5&&&�&&y&&'�&'�&&(�&(�&&)�&)�&&*�&*�%&&+&+�D&&,#&,#&&-;&-2&&.Q&.A&&/h&/Q&&0~&0m&&1�&1|
&&2�&2�5&&3�&3�&&4�&4��&&5�&5l&&6&6z&&7&&7�&&8;&8�&&9T&9�&&:o&:�&&;�&;�&&<�&<�&&=�&=�&&>�&>�#&&?�&?!&&@�&@0&&A&A@&&B/&BN&&CL&C^&&Dc&Dn&&Ey&E}&&F�&F�&&G�&G�
&&H�&H�V&&I�&I�&&J�&J&&K&K',&&L&LSN&&M/&M�&&NF&N�&&O`&O�&&P|&P�&&Q�&Q�&88NB00�>�&&�&&�&&�&&�&&�&&�&&�&&�&&./basic/test5b.exe   777  20115     11      102504  4552132444   7343 MZa&$ x���@#�&���/.�      �     �U���WV�6��BP��P����hP��P�����P��P�����P��P�~����P��P�p��^_��]�U�� �HWV�F�
        !          7767: �F��F��F�6&�P����P��P�+���^�F����N�~u��^��?-t��^�@�F���F��^��?u�r�^����C�#��&P����.&�R�2&�K�4&�D�^���P�>&P�b������&P�����#=fu���=hu��=nu���=tu�������N�F�T��~u�$�R&P�&�RP�^�7�0���F��V�F�N�~u�!�W&P�&�RP�^�7����F��F�N�~u��^��F��F�N�~u�
�8��&P�1���>2&u��.&�F�&�6��]&P��P�����P�<���>.&u��4�F���F��F�9F�|���P�v��^���F�=|��v��g&P�$���&P����F��V�F�V��       �n� �^��~�}�e~�  �~�w�W�F�V��}�~�= w��� �F��v�����P�v��|��;F�u��v��w&P����&P�+�����v�����1��>.&u�����P�j���v��v��v�&P��P���
        !          7768: �>.&u��v��v��F��RP�RP����P�����&P��P�~���v��K��=|��v���&P�
        !          7769: ���&P�
���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          7770: ��&P���P�r����&P���P�������=|����P��&P����&P�
���^������k��=|�������&P�S���&P�����t�dž��������F9���|������v��&P���P�������P���=|����P��&P��&���&P����^����P�+��=|����P��&P��&���&P�N���v�v�v�v
        !          7771: �v�v�v�����P����=|��P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          7772: �P���P�������P�F��=|�"�~t����P�P�����&P����^���dž��������F9���|�������v�-P���P������P����=|�%�~u������P�2P����&P����v�v�v�v�v
        !          7773: �v�v�v������BP���=|��EP�G���&P��
        !          7774: �����P�<��=|����P�UP����&P�
        !          7775: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6��eP��P�&�������P�6��wP��P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          7776: �v�v�v��P��
        !          7777: ��(�>Cu�
��P�/�����P��P�
        !          7778: ����P��
        !          7779: ���~�t�
        !          7780: �&P��        ��^_��]�U���_
        !          7781: WV�P�j
        !          7782: P���^_��]�U���@
        !          7783: WV�P�b
        !          7784: P�����n
        !          7785: �p
        !          7786: 9h
        !          7787: ~�#}�       9f
        !          7788: r��.b
        !          7789: &�d
        !          7790: �f
        !          7791: @B�h
        !          7792: �^�f
        !          7793: �h
        !          7794: +n
        !          7795: p
        !          7796: �G�W�^�b
        !          7797: �d
        !          7798: +j
        !          7799: l
        !          7800: ��W^_��]�U���    WV�'�RP�^�w�w�;RP�^�w�7��P��P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v��RP��P��P�e    ��^_��]�U��&�=       WV�~t���P�]
���F=t��F�����P�v�q��=t�<�v��P���P�y�����P����=u��v��P�����&P����v�v��=|��v��P�k����&P�����v�&��=|��v�P�C����&P����^_��]�U���gWV�~t��0P����F=t��F;�v�L&��=|��v�GP�����������^_��]�U���      WV�v�/���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          7801: �hP�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v������F�P����F�9F�u��^��P��P������&P���^_��]�U���WV�6���P��P�#���6��X����P�M��^_��]�U����WV�v�4����v�
���^_��]�U����WV�&P�v�
���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�����^_��]�U���TWV�v�v����^_��]�U���4WV�F�P�����RP�F�*�+�QP�B�Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          7802: �F�P����F�P�v��f��=u�����V�^�F��G�G+�P�v�+�P�v��D�^�G�W
        !          7803: +�P�v�+�P�v��,�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v��P�����P��P�k���>�u�����&�P������>�t���~��P�v���P�o��=u���_�6���P�&���F�&��F���P�4��=t�!�F������������P��P�[&������F�H������
        !          7804: �^_��]�U����WV�F��F�F��P�v���P��
��=u���P�����&P�        ���6���P�����F�&��F���P�
��=t�!�F������������P��P�������F�H����^_��]�U���JWV�F�F����^_��]�U���,WV�F�F���9V~�}�9Fv��F��^_��]�U����WV�F�F��9��      �������������������^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁ���s�Y
3�P����L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�I��b
        !          7805: ��+�3���;���M
3��6j�6h�6f�A�P�����ظ6��P���I��P���0�!�K�5�!�7�9�%�.�!�z   �.�I&�6,�|  ��3�6�x        s�6��     �ڻ6�x       �I&�,�6��3�&�=t,��*�t��3��u�����R������t&H������R��D�!r
        !          7806: �€t��R@Ky羄        ��      ���   ��      ��U�쾚
        !          7807: ��
        !          7808: �}��  ��      �t�U�쾆      ��      �f��   ��      �l��t�~u�F�����R&t�>�!C����F�L�!�z  ���x        �7�%�!�>tt
�u�v�%�!�;�s
        !          7809: OO�
�������;�s���Et�����Y��+�r
        !          7810: ;zr����3��k�U���WV�F�F��v������FP�v�v������vV�����^_��]ÐU���WV�v+��D$<uF�Du�ށ�|������������&t'�+D�F��~P�t�D�P���;F�t�L ����D��D��^_��]�U��^;Pr�      ���>�!rƇR�
U���2��~��F���F���u�@u���u�F���V$
        !          7811: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s���F��u�Fu0�>�!�F$
        !          7812: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;Pr
        !          7813: �>�!����
        !          7814: N���&��R�Ë�]�2��ܡE��#�3ɨ�u��&�U����^;Pr�� �\3��N�U��RuN�N�V�?�!s�   �>��R�t7��R�VW�������%�
�<
        !          7815: u��R�:�t<u��R��G���+�_^���&t�<
        !          7816: t�����R@t�D�!�� u  �V��?�!r԰
        !          7817: �,�F��V��?�!r��t�~&t����Ѹ&B�!�&�~�
        !          7818: t�
�V떋V딀~�
        !          7819: u��U��^�t�O�&��]�U��VW���?u)��u3���$@$�������&���D����6��N�؎��)_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��cU���WV�6j�tF�~t@�v�����������<t*�4����;�~��9=u�W�vS�����u֋�A&��+�^_��]�U���WV�v��t&�<t!V��PV��P������P��P��P�����>C|        ��9C|����C�㋷DV�R��PVW����&P��PW���^_��]ÐU���V�v��-|�����������F�V�!���V�j
        !          7820: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v�������]�U��F%�&�E��]�U�����P�����F��~u+�P�v��.���u�&�Z+��V�F���F�F��F��~�t&�6j�F�P�v�+�P����F�@u�>Ct�F���F���6j�F�P��P+�P������]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          7821: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P����*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P����F�P����@�F��~�u;�~��V��������u �C���~9v�~
        !          7822: �C"+���F�PW�V���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v������t1��PW�<���t��PW�-���t��PW����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�L���t
�C����Y&�+�P�F�P�P�L���F�N�F�7�v��F�P�F�P�D���|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th��PV�����t����P+�P�v�������F��u�j�V����@t)�v������v��.����F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          7823: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P�s���E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u�C�V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          7824: �}G�V�����F
        !          7825: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          7826: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          7827: ؋^u�F���]���ȋF�f
        !          7828: ȋF��ы�]�U���P�e�>�t����P�S��]ø���V3��B2���2�����Ut
����&P�,�&^Ï��8Kt)�I&�,�n3����3��u�GG�>l�����ыѿ&���I�< t�<  t�<
to
        !          7829: �tkGN�< t�<    t�<
t\
        !          7830: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          7831: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>f�G��׀��+�ģh���6�?CC�6l��
        !          7832: �u���6�I�3���< t�< t�<
u�
        !          7833: �u�y�6�?CCN�< t�<     t�<
tb
        !          7834: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          7835: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�I3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �&_�ϋ���.j��3�I��<;Ct�~EE��
        !          7836: �u���N]��]�U��VW�V��    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&âN
        !          7837: �u#�>Kr
<"s
< r���<v���ט�CÊ���U���WV�v�D��F���-|�����������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�|������������&uF���t���u3�v��&���u-�����u��
        !          7838: �����D��^��G�&��V�����Du�ށ�|������������&tP�<+|�D@��^��GH�D�~W�t�v��g
        !          7839: ���F����^���R t�P+�PPS�����\�F����&��P�FP�v��*
        !          7840: ���F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v�����u�F��
        !          7841: �����u$�F���Du�ށ�|������������&t+��5��-|�����������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�t�~�uv�^�G�P�\���td�F-|�����������F��v����^���G�^��+���G�*��^��
        !          7842: t��u�G�P�&���t        �v�p��^��]�U��d&��WV�v������
        !          7843: �F��
        !          7844: �F�t
        !          7845: ��
        !          7846: ��
        !          7847: �|�<%t�X��
        !          7848: &+��|
        !          7849: �x
        !          7850: ��
        !          7851: �z
        !          7852: ��
        !          7853: ��
        !          7854: �v
        !          7855: �r
        !          7856: �~
        !          7857: ��
        !          7858:  �|&0u<F��
        !          7859: 0�3�<+u
�|
        !          7860: ��
        !          7861: �"��< u
�>|
        !          7862: u��
        !          7863: ��r
        !          7864: �      �<-u��~
        !          7865: F��P�����u�V��
        !          7866: P�f�����>�
        !          7867: }�~
        !          7868: ��
        !          7869: �أ�
        !          7870: �<.u#��
        !          7871: FV��
        !          7872: P�<�����>�
        !          7873: }
        !          7874: ��
        !          7875: &��
        !          7876: ��=Ft2=Nt5=ht =lu�z
        !          7877: �>z
        !          7878: u�<Lu&F�<u�&�z
        !          7879: &���z
        !          7880: ���z
        !          7881: �ӊ�����=Et
        !          7882: =Gt=Xu      �x
        !          7883: ���� ����-c=v�&��.��r%��
        !          7884: ���
        !          7885: ���
        !          7886: �i&���
        !          7887: �r
        !          7888: �
        !          7889: P�&���Q&�����v
        !          7890: �x
        !          7891: �>�
        !          7892: u     ��
        !          7893: &����
        !          7894: ��
        !          7895: ��
        !          7896: �>z
        !          7897: u�+��z
        !          7898: �F�9�
        !          7899: t'��
        !          7900: �F��>~
        !          7901: t     ��
        !          7902: ���.�
        !          7903: ��
        !          7904: �}+���
        !          7905: ��
        !          7906: �P�����:P�����~�t"�>~
        !          7907: t�F�-��
        !          7908: �}+���
        !          7909: ����
        !          7910: �.�
        !          7911: �P�������/�+�P��&�*���&����������>z
        !          7912: t��N��G�=t�=%u���+�PV�������<t�|��>�
        !          7913: uY�t
        !          7914: �G tO����M%:$$%$%$%.%:$.%.%.%.%"$N$T$.%.%%.%6$.%.%%�>�
        !          7915: t�>�
        !          7916: u�t
        !          7917: �G u��F뙐��
        !          7918: ^_��]ÐU���WV�~
        !          7919: t��
        !          7920: �>z
        !          7921: t�>z
        !          7922: u��
        !          7923: ��W�F��V���
        !          7924: �*�>�
        !          7925: t��
        !          7926: ��F��F�����
        !          7927: ���F��V���
        !          7928: �>r
        !          7929: t
�F�F�t�F�+���
        !          7930: �6�
        !          7931: �>�
        !          7932: u*�~�}$�~
        !          7933: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v������>�
        !          7934: t!W�a����
        !          7935: +ȉN����0F��I���N�x
        !          7936: ���t<a|�, FG�}�u�>�
        !          7937: u�|
        !          7938: �
        !          7939: t�~�u�&�+�P���^_��]ÐU���WV�~t�&��
        !          7940: �F��^���
        !          7941: ��>z
        !          7942: u��
        !          7943: ��W�F��V���
        !          7944: ����
        !          7945: ��F��F��^���
        !          7946: �>z
        !          7947: u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96�
        !          7948: t��
        !          7949: ���^��F�&�?tF;�~��F�^��F�&�?u�>�
        !          7950: +��>~
        !          7951: uW�&��V�v��v��o&���>~
        !          7952: tW�&��^_��]�U�����
        !          7953: �F��~gt�~Gu�&�*��F��>�
        !          7954: u��
        !          7955: �~�t
�>�
        !          7956: u��
        !          7957: &�6x
        !          7958: �6�
        !          7959: �v�6�
        !          7960: �v�����
        !          7961: �~�t�>r
        !          7962: u�6�
        !          7963: �����>r
        !          7964: t�>�
        !          7965: u�6�
        !          7966: ������
        !          7967: ��
        !          7968: �|
        !          7969: �
        !          7970: t�v������t�&�+�P�&��]�U��V�>�
        !          7971: u/�t
        !          7972: �Ox�F�7��*���S�v�A���@u��
        !          7973: ����
        !          7974: ^]ÐU���WV�>�
        !          7975: uI�v�~B��6t
        !          7976: �6�
        !          7977: �      ���@u��
        !          7978: ��N�~�t
        !          7979: �Ox۠�
        !          7980: �?��*��܃>�
        !          7981: u�F&�
        !          7982: ^_��]�U���WV�v�>�
        !          7983: uP��6t
        !          7984: �^&��P����@u��
        !          7985: �F��N�t�t
        !          7986: �Ox��^&��t
        !          7987: �?��*��҃>�
        !          7988: u�F&�
        !          7989: ^_��]�U���
        !          7990: WV�6�
        !          7991: +��F��F��>�
        !          7992: 0u9�
        !          7993: t9v
        !          7994: t9�
        !          7995: u��
        !          7996:  �>�
        !          7997: V����F�+�+~�>~
        !          7998: u�<-u�>�
        !          7999: 0u��P�����N��>�
        !          8000: 0t�~�>~
        !          8001: t�~t�F��_�>�
        !          8002: t�F��j�>~
        !          8003: u&W�����~t        �~�u�5�>�
        !          8004: t     �~�u�=�v�V������>~
        !          8005: t
��
        !          8006:  W�a���^_��]Ã>|
        !          8007: t�+�� P����Ð�0P������>�
        !          8008: u�>x
        !          8009: t�X���xP�����ÐU���WV�v�F�&�<*u��
        !          8010: �?��
        !          8011: F�H��<-u�F���F+��<0|5�<909>�
        !          8012: u�<0u��
        !          8013: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          8014: :u��&��+�^��]ÐU����^;Pr�    ��C���R t�B3ɋ��!r���R�tn�V3��F��F��WV����f��N�T�
        !          8015: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          8016: t;�t����#�a�
;�u���
        !          8017: �F����
��^_�U�E3��'�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���R@t�^�?u������F�+F��f�^_�e�N�u���Y�V�@�!s�  ���u���R@t
        !          8018: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&���&�=��t%���&t��H;�s����&t�����D���G�t���&�t�،�;�t&��7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&���G3���Q�E��&t+�IAA��&;
        !          8019: v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<      t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          8020: �!W�~��]�M�U�u�E
        !          8021: r3�����&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP���F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          8022: �ڙRP�N�^��w���Q�&SQ�ȸm&����ЋF�ǙRP�N��^��Q�F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�������&F�V�DP�F��FH�F��F
        !          8023: �F�>�t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          8024: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          8025: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌���WV�v�~u�v
        !          8026: �vV� ���&+�P��t�P�F�P�F�P�v
        !          8027: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v�����z����PVW���P�����C�v���t�PW�v�����F��>Cu+��P�.PW�q���P�����v���t�PW�v����F�W����v�����F�^_��]ÐU�����WV��(����v
        !          8028: �v�v�v������|�@u2�>Cu+�^���&�</t<\t
        !          8029: �t�&:t��P�}�����u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW����vW����v
        !          8030: �vW�v�������|�@u��>Cu��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
������r59�s%P�ر��ًI+���ËشJ�!Xr$�H����.�&�Ë����U���WV�|+����D�tV�ރ�@t&G��96�s��^_��]�U���V�F-|�����������F��P�f���^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;Pr�  �*�F�tH�~
        !          8031: t3ɋѸ&B�!rK�F
        !          8032: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          8033: �B�!r��R��=�Y�z;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6(Ht;�t
�D�FV�:^s0����(s�u������ڃ��۱��H�!r钉�T�6(3�_^��]ËN��9Lt����(u���?��r9�ӎ�;�u9�s&����������;�u ١I+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          8034: �t���2���^_��]�U��VW��U��^;P}��|��R@t�&�3���]��>�
        !          8035: u���
        !          8036: ÐU���WV��P�������u��<u��PV�6��k�����RP��V��߃�RP������+���ހ?t��ފ������u     ��ހ?-uG��|؋�ހ?t�P���P�6��  ����������?&�@��^_��]�U���WV�v�|}��| ~��|~      �|     }��|
        !          8037: ��l���~�|u�\�㋇��
        !          8038: ��\�㋇��F���u�F��|
        !          8039: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu�j�F�~t)�F�F����^��F��7�^���@��^��?t���v�P�F��t�^���Qu�N�u�~�t�F���~t�v�����F�v���v�C�N
        !          8040: ����&��6
        !          8041: �
        !          8042: �F��F�P�݃��F��u!�v��݃����u�C�N�6
        !          8043: 뷋~��6
        !          8044: �^�~��?��$��F��^
        !          8045: ���?�~t-�F�F��+�P�^��7W�4݃�P����@���F��^��?uۃ~�t>+�P�:     PW�
        !          8046: ݃�P�������F��G+��N���Rt��R����GF��N��G�G�~t�&G�G�vW�܃�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W�܃�P�������F��^��?t� GF�^��?t,�7����F��=}v��C�N
        !          8047: �^�7�ۃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�C������VW�؋^
        !          8048: ���ãH       �F�J   �L     �6J   F�V     �&)�!�&)�f      �!U�>K}!.��9.�&�9�.�5.�6�9�u.�6�9.��9�H �~t�3��2��P��!X�r&�V�K�!P�P�0�!<X[}!.��9.�&�9�..��9.�6�9�u.�6�9�5���r]_^r�M�!�J���      ������C�5�N
        !          8049: �F�V�~W��
        !          8050: �t��
        !          8051: u�y
        !          8052: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [size count fname]
        !          8053:   Flags:  h    Help - print this usage info
        !          8054:           t    Print execution time statistics
        !          8055:           f    Test function only (negate -t)
        !          8056:           n    Suppress test directory create operations
        !          8057: bigfileunknown option '%c'sizecount%s: read
        !          8058: can't open '%s''%s' read failed     read %ld byte file %d times
        !          8059: can't unlink '%s'%s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          8060:       %s: (%s)  
        !          8061:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          8062: \*.*rewind failed�'��;C_FILE_INFO���&&p�C���&&�&         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          8063: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error34567I[klm}��������������������6%.com.exePATH\>>>>>��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO  �&     �t3<<NMSG>>R6000
        !          8064: - stack overflow
        !          8065: R6003
        !          8066: - integer divide by 0
        !          8067:       R6009
        !          8068: - not enough space for environment
        !          8069: �
        !          8070: �run-time error R6002
        !          8071: - floating point not loaded
        !          8072: &R6001
        !          8073: - null pointer assignment
        !          8074: ���NB00?7x
        !          8075: TEST5B.OBJ�SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asmLo&&dos\crt0dat.asm�&
        !          8076: chkstk.asm�>& fprintf.c&_file.cn&fflush.c~ &
dos\close.asm��&&dos\open.asmB�&dos\read.asm X&nmalloc.asmx?&
        !          8077: strcat.asm�2&
        !          8078: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.cL~&perror.c�x&setbuf.cBV&    sprintf.c�&   creat.asm�&   umask.asm��&system.cN$&
dos\chmod.asmr<&dos\dir.asm��&dos\getcwd.cl<&
        !          8079: dos\stat.c�
&dos\unlink.asm�(&dos\d_find.asm�+&dos\diskfree.asm
        !          8080: &dos\getdrive.asm&dos\gettime.asm8&dos\setdrive.asmN�&ldiv.asm�4&lmul.asm &dos\crt0msg.asm>&
        !          8081: crt0fp.asmD"&
        !          8082: chksum.asmf�&&dos\stdargv.asm�n&dos\stdenvp.asmbT&dos\nmsghdr.asm�T&dos\dosret.asm
        !          8083:  &_cflush.asm
        !          8084:  V&&      _flsbuf.c`!.&
        !          8085: _freebuf.c�!&& _sftbuf.c�"�&output.cp+(&&      write.asm�,a&&amalloc.asm�-&
        !          8086: strlen.asm.:&strncmp.asmP.T&atox.asm�.&dos\bdos.asm�.G&dos\intdos.asm�.&&
        !          8087: dtoxtime.c0B&stricmp.asmV0+&strrchr.asm�0X&strpbrk.asm�0&syserr.c�0D&&
dos\spawnve.c2�&
        !          8088: spawnvpe.c3&dos\access.asm23B&dos\stdalloc.asmt32&
        !          8089: flushall.c�3l& _getbuf.c4z&
dos\lseek.asm�4&stackava.asm�4�&dos\brkctl.asmb5(&strncpy.asm�5
        !          8090: &        ultoa.asm�5&cmiscdat.asm�5#&
        !          8091: isatty.asm�5&days.c�5�&&tzset.cB7&  timeset.cB7*&
        !          8092: strchr.asml7'&
dos\cenvarg.c�9�&dos\dospawn.asm�:&dos\execload.asm�:_&xtoa.asm.&��_Tflag0&��_Hflag2&��_Fflag4&��_Nflag�_usagek�_main��_pattern��h_findtst���    _maxentry���
_currententry���_dirlist�
        !          8093: ��_dirst���_Myname�_statfs�_opendir�'_readdir�

        !          8094: _rewinddir|�_error|.  _closedirT�
        !          8095: _starttimes�_endtime�$_seekdiri"_telldir��_printtimesv�_testdirL      �    _mtestdir�      �_getparm�
        !          8096: �   _complete���_diropen��_dirtree�
_gettimeofday�
        !          8097: �_unix_chdir�
        !          8098: �_getwd�
        !          8099: _rmdirtree�_unix_chmod_�_lstat
        !          8100: �_chdrive��__fmode��__iomodeb
        !          8101: �_edata��_end��__aexit_rtn(�__abrkp��__abrktb��__asizds�__astart��__atopsp(�       __abrktbe. __cintDIVv�&
        !          8102: __acrtused=__amsg_exitK�__osversionC�_errno'__exitr�__childP�__nfileL__cinitf�___argcu�__intnoK�
__dosvermajorN�__oserrh�___argvL�
__dosverminorj�_environR�__osfileM�__osmodeG�__pspadrx        �__fpinitv�__ovlvecl�__pgmptr*�       __acfinfot� __ovlflag7� __aintdivK� __osmajorL� __osminorE�
        !          8103: __umaskvall
        !          8104: __ctermsubN�
        !          8105: __doserrno;�__fac_exitI�__pspz�STKHQQ�__chkstk�_fprintf��__bufin�
        !          8106: �__bufout��__buferr�__iob2��        __lastiob|�__iob_fflush~_close�
        !          8107: __copensub�_open1__cXENIXtoDOSmodeB_read2_malloc __nfree��__asegds2    __nmalloc _freex_strcat�_strcpy�_atol��__ctype��__ctype_�_getenvL_perror�_setbufB_sprintf�_creat�_umask�_systemN_chmody_chdirr_mkdir�_rmdir�_getcwd�     __getdcwd _stat�_remove�_unlink�__dos_findnext�__dos_findfirst�__dos_getdiskfree
        !          8108: __dos_getdrive
__dos_gettime8__dos_setdriveN__aNldiv�__aNlmul�      __aNulmul__FF_MSGBANNER��    __adbgmsgv�& __acrtmsg>__fptrapD__nullcheckf        __setargv� __setenvpb__NMSG_TEXT�__NMSG_WRITE�    __dosret0�
        !          8109: __maperror�
        !          8110: __dosretax�__dosreturn��__cflush
        !          8111:  __flsbuf`!   __freebuf"__ftbuf�!__stbuf�"__outputp+_write�-__amallocbrk�__aseg1�__asegh�__asegn�__asegr�-__amlink�       __QChdata�, __amalloc~-
        !          8112: __amexpand
        !          8113: �
        !          8114: __amblksiz�-_strlen._strncmpP.__catox�._bdos�._intdos�.
        !          8115: __dtoxtime0_stricmp0_strcmpiV0_strrchr�0_strpbrk��   _sys_nerrD�_sys_errlist�0_spawnve2       _spawnvpe3_access23   __myalloct3 _flushall�3__getbuf4_lseek�4_stackavail�4_brkctlb5_strncpy�5_ultoa��
__cfltcvt_tab��__asizeC��__asizeD��__sigintoff��__sigintseg�5_isatty��__days��__lpdaysx6 __isindst�5___tzset�5_tzset  �    ___mnames�� _daylight�� _timezone��_tzname��   ___dnamesB7_strchrl7   __cenvarg�9 __dospawn�:
        !          8116: __execload�:__cxtoa�:
        !          8117: __cltoasub&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�0&��&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x@��&    x�&��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x(��&x0��&xP��&&�&&�&&�&&�&x����&&�&&�&&�&x����&&�&&�&x����&&�&x��&&�&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&y����        �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          8118: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          8119: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          8120: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          8121: u���c&��&&�&
        !          8122: ������&
        !          8123: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          8124: u���c&��&��&
        !          8125: u���c&��&&�&&�&&�&����&
        !          8126: u���c��&���
        !          8127: &
        !          8128: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          8129: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          8130: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          8131: u���c&�!&����&u��c�#&&�&��&
        !          8132: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�frmainv
        !          8133: �argc
        !          8134: +argv���count���ct
        !          8135: ���size���si���fd���bytes
���bigfile
        !          8136: ���time
        !          8137: ���opts     �ߪbuf&&���Myname|�_iob&���&�&dirtree�v&  �lev�files
        !          8138: �dirs
        !          8139: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          8140: ��name&&&�m&�&�  rmdirtree\& �lev�files
        !          8141: �dirs
        !          8142: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          8143: ��name&&&|����error��      �str       �ar1       
        !          8144: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          8145: ���path&&&T���  starttime&&s���fendtime~p�tv&&&���w�
        !          8146: printtimes�q�tv�nbytes&&&v����testdir��        �dir��statb   ��str&&&L        �^�mtestdirW M      �dir&&&�        �g-�getparm�  V
        !          8147: �parm     �min
        !          8148: �label      ���val&&&
        !          8149: ���chdrive
        !          8150: s
        !          8151: �path���desireddrive���drive&&&�
        !          8152: �7>complete&&�
        !          8153: �&Od
        !          8154: unix_chdir�
        !          8155: 
        !          8156: �path&&&�
        !          8157: �!u�getwd�
        !          8158: 
        !          8159: �path&&&�L��
        !          8160: unix_chmod;
        !          8161: �path
        !          8162: �mode
���dosmode&&&_� ��lstatj
        !          8163: �path     
        !          8164: buf&&&�pagettimeofday�_�TV�TimeZone
��ndostime&&&��rW       statfs��
        !          8165: �path     �buf���&p���&i���drive��q     diskspace&&&��h  9
        !          8166: opendir��
�dirname���&i���
        !          8167: attributes&&&�
�J
        !          8168: �
        !          8169:     rewinddir�
�
        !          8170: �dirp���&i���
        !          8171: attributes&&&i"�
        !          8172: �
        !          8173: telldirt

        !          8174: �dirp&&&�$6
        !          8175: /seekdir�%
        !          8176: �dirp     �loc&&&�'F@ureaddir�5
        !          8177: �dirp&&&)!��findt_to_dirent~&f�&d&&&$,X��copynametolower/G
        !          8178: �dest     �src���&i&&&|.�closedir�
        !          8179: �dirp&&
        !          8180: j
        !          8181: ��ts���_ctype
        !          8182: b
        !          8183: ��te��pattern��hfindtst���maxentry���currententry���dirlist
�
        !          8184: ��dirst���Myname
C��errno|�_iobtest5b.cO !-";#I$W%e)k,v.{2�7�8�9�:�;�<�=�?�@�C�D�G�H&K&L  &O&P&Q &R*&SP&TS&UV&VZ&X]&Yf&Z�&[�&]�&^�&_�&`�&b�&c�&d�&e�&g�&h�&i�&l�&m�&n�&q�&s uvy z6{N|[~e����������������&��#�-�I�W�h�u���subr.c��+�,�.�/�0�1�2�4567,96:9;R=hA{B�D�E�F�G�I�J�K�L�NO    _kl(n+oDpZqvr�t�u�v�w�x�y�z�{�|�~��.�8�B�U�d�n�s�v�|�����������#�1�;�D�N�T�_�m�s�~�����������������+�O�p�v�������������������        �     �     �/     �<     �F     �L     &W     &`     &u             &z      
        !          8185: &�     &�     
&�     &�     &�     &�     &�     &�     &�     &
        !          8186:  &
        !          8187: .&
        !          8188: 1&
        !          8189: 3&(
        !          8190: 4&R
        !          8191: 5&_
        !          8192: 6&i
        !          8193: 8&t
        !          8194: 9&�
        !          8195: <&�
        !          8196: C&�
        !          8197: D&�
        !          8198: F&�
        !          8199: H&�
        !          8200: I&�
        !          8201: N&�
        !          8202: Q&�
        !          8203: S&�
        !          8204: T&�
        !          8205: X&�
        !          8206: Z&�
        !          8207: [&
_&b&c&Jd&Yh&_k&jl&yp&r&�u&�v&�w&�x&�|&�&��&�&�& �&+�&7�&d�&n�&��&��&��&��&��&��&��&��&��&��&
�&
�&
�& 
�&&
�&3
�&=
�&C
�&\
�&b
�&p
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�&
        !          8208: �&�&5�&S�&V�&]�&c�&i�&t�&z�&��&��&��&��&��&��&��&��&��&��&��&��&�&�&�&$�&/&sv|�      �
        !          8209: �
        !          8210: SLIBCE.LIB�&&&&&�M&&�"&&!*�&&c2G&&&&��&&!&�*o&�3�&&4'&�        &&[&�     �&&t&�
        !          8211: �&&&�&z&&�&�&&�&�U&&     �&       �&&
        !          8212: �&
        !          8213: 

&&&&
5&&&&J
&&
2&&
V
G&&J&&�
&&a&&�
&&x&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&&&�&&
&&&(
&&$&5&&9&C
&&S&P'&&k&w&&�&�&&�&�&&�&�+&&�&�&& �& &&!&!&&"'&")&&#D&#>&&$Y&$M&&%n&%l5&&&�&&�&&'�&'�&&(�&(�&&)�&)�&&*�&*�%&&+&+D&&,'&,K&&-?&-Z&&.U&.i&&/l&/y&&0�&0�&&1�&1�
&&2�&2��&&3�&3M&&4�&4[&&5�&5j&&6        &6x&&7"&7�&&8=&8�&&9T&9�&&:l&:�&&;�&;�&&<�&<�#&&=�&=&&>�&>&&?�&?!&&@�&@/&&A&A?&&B1&BO&&CG&C^
&&Da&Dk&&Ez&E}&&F�&F�&&G�&G�
&&H�&H�V&&I�&I�&&J�&J&&K&K',&&L&LSN&&M0&M�&&NG&N�&&Oa&O�&&P}&P�&&Q�&Q�&37NB00�=�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&./basic/test7a.exe   777  20115     11      103442  4552132517   7347 MZ% y���@;��&��?���        ��     �U���WV�6"�BP�P����oP�P�����P�P�����P�P�����P�P���^_��]�U��8�XWV�F�
        !          8214: dž��
        !          8215: dž��dž���F�>&dž��D&�P����P�P����^�F��"�N�~u��^��?-t��^�@�F���F��^��?u�r�^����C���&P����6&�R�:&�K�<&�D�^���P�M&P�d������&P�����#=fu���=hu��=nu���=tu�������N�F�T��~u�!�a&P�&�RP�^�7�2        ���F��F�N�~u�"�g&P�&�RP�^�7�       �������F�N�~u��^��F��F�N�~u��^������F�N�~u�
���&P����>:&u��6&dž��&�6"�m&P�P����><&t�
�P�F���
        !          8216: �P�������P����P�y&P�v��P�v��&P�)���>6&u����F���F�����9F�|�|&dž��������F�9���|�`&�����v��~&P����P�������������&P����P��������P����P���=|�����P����P��&P����&P�������P����P���=t�����P��&P�V���&P��������P����P�r��=|�����P��&P�%���&P�������P����P�y��=|�����P����P��&P�����&P�y������P����P���=t�����P��&P����&P�H������P����P����=|�����P��&P����&P������u��>6&u�����P�_���v��F�������P�P�P����>6&u�+�PP����P����0P�P�|���&P����P����P�2P�v��P�v��&P�&���^_��]�U��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          8217: �8P���P������&P���P�7������=|����P�=P����&P�
���^������k��=|������MP�S���&P�����t�dž��������F9���|������v�]P���P�[�����P���=|����P�bP��&���&P����^����P�+��=|����P�rP��&���&P�N���v�v�v�v
        !          8218: �v�v�v������P����=|���P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          8219: ��P���P�i�����P����=|�"�~t����P��P�����&P����^���dž��������F9���|�������v��P���P�������P����=|�%�~u������P��P����&P����v�v�v�v�v
        !          8220: �v�v�v�������P���=|���P�G���&P��
        !          8221: �����P���=|����P��P����&P�
        !          8222: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6"��P�
        !          8223: P�&�������P�6"��P�
        !          8224: P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          8225: �v�v�v�
        !          8226: P��
        !          8227: ��(�>�u�
�P�����P�
        !          8228: P�
        !          8229: ���
        !          8230: P��
        !          8231: ���~�t�
        !          8232: �&P��        ��^_��]�U���_
        !          8233: WV�P��
        !          8234: P���^_��]�U���@
        !          8235: WV�P��
        !          8236: P������
        !          8237: ��
        !          8238: 9�
        !          8239: ~�#}�       9�
        !          8240: r��.�
        !          8241: &��
        !          8242: ��
        !          8243: @B��
        !          8244: �^��
        !          8245: ��
        !          8246: +�
        !          8247: �
        !          8248: �G�W�^��
        !          8249: ��
        !          8250: +�
        !          8251: �
        !          8252: ��W^_��]�U���    WV�'�RP�^�w�w��RP�^�w�7�P�P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�RP�P�P�e    ��^_��]�U��&�=       WV�~t��+P��
        !          8253: ���F=t��F6����P�v���=t�<�v�BP���P�������P�l��=u��v�KP�����&P����v����=|��v�nP�k����&P�����v�&��=|��v��P�C����&P����^_��]�U���gWV�~t���P�
        !          8254: ���F=t��F��v�L&��=|��v��P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          8255: ��P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������u��^��- ��^��-@�F��F�P�v��n���F�P�6���F�9F�u��^��P�P������&P���^_��]�U���WV�6"�/P�P�#���6"�X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          8256: ���^_��]�U���TWV�v�v�?���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������u��^��- ��^��-@�F��
        !          8257: �F�P�1
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          8258: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�&P�7���8P�&P�����>>u����>&�P����(�>(t���~�*P�v��&P�&��=u���_�6(�*P�&���F�&��F��*P����=t�!�F�����������(P�*P�[&������F�H�&�$� �^_��]�U����WV�F��F�F�*P�v��&P�g��=u��@P�����&P� ���6(�*P�����F�&��F��*P���=t�!�F�����������(P�*P�������F�H�&�$^_��]�U���JWV�F�F�$��^_��]�U���,WV�F�F�&�9V~�}�9Fv��F�$^_��]�U����WV�F�F�&9$�      ����$�$����������(�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F�>^_��]Ð�0�!<s� ���6+���r���ׁ�^�s��
        !          8259: 3�P�T
��L�!���6�&V6�&R�Ʊ��H6�P��6��+��۴J�!6�����
        !          8260: �`+�3���;�p��
        !          8261: 3��6��6��6��1�P�����ظ6�T P�o
        !          8262: ����P�T�0�!���5�!�����%�>�!�� �.��&�6,��  ��3�6��        s�A
        !          8263: 6��   �ڻ6��       ��&�,�6��3�&�=t,����t��3��u������������t&H���������D�!r
        !          8264: �€t���@Ky�
        !          8265: �
        !          8266: ��
        !          8267: �
        !          8268: ��U����}�
        !          8269: �
        !          8270: �t�U��
        !          8271: �
        !          8272: �f�
        !          8273: �
        !          8274: �l�  �t�~u�F������&t�>�!C����F�L�!��        ����        ���%�!�>�t
�����%�!�;�s
        !          8275: OO�
�������;�s���Et�����Y��+�r
        !          8276: ;�r����3��k�U���WV�F�F��v�:
�����FP�v�v�B�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ���������������&t'�+D�F��~P�t�D�P�I��;F�t�L ����D��D��^_��]�U��^;�r�      ���>�!rƇ��
        !          8277: U��^�t�O�&��]�U��VW��?u)��Ku3���$@$�����&���D����6�N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6��tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�K�PV��P�����P� P��P����>�|     �      9�|�       ����㋷�V�
        !          8278: ��PVW�w���&P�#PW�h��^_��]ÐU���V�v��-�������������F�V����V�~
        !          8279: ���~u�L�d��^����@�D��G&��l�d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�K�����Mx*������W+�P�����^_��]�U���v�P�v������]�U��F%�&����]�U����&P�����F��~u+�P�v������u�&�Z+��V�F�.�F�F��F��~�t&�6��F�P�v�+�P�w���F�@u�>�t�F���F�1�6��F�P�1P+�P�����]�U��V�C�!r�F�t������&�&C�!�XU��9�U��;�V�!�DU��:�V�!s�=u쒓�C<t
        !          8280: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�y��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�Z���F�P���@�F��~�u;�~��V��������u �����~9v�~
        !          8281: ��"+���F�PW�V���^_��]ÐU��W�V�~�V�!_�JU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1�>PW�����t�CPW�����t�HPW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~�MPV�����t
������Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u������&t� ����-`�+�PP�P���*�@�F�~�th�PPV�n���t����P+�P�v�������F��u�j�V����@t)�v��|����v������F�+��FЉF��F�!�F��
��v�������+�+��E�E
        !          8282: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u���V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          8283: �}G�V�����F
        !          8284: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          8285: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          8286: ؋^u�F���]���ȋF�f
        !          8287: ȋF��ы�]�U���P�e�>Tt�T��P�S��]ø�g�V3��B2���2�����Ut
����&P�,�&^ÏV�8�t)��&�,��3����3��u�GG�>������ыѿ&�����< t�<  t�<
to
        !          8288: �tkGN�< t�<    t�<
t\
        !          8289: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          8290: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>��G��׀��+�ģ����6�?CC�6���
        !          8291: �u���6���3���< t�< t�<
u�
        !          8292: �u�y�6�?CCN�< t�<     t�<
tb
        !          8293: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          8294: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&VU��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.���3�I��<;Ct�~EE��
        !          8295: �u���N]��]�U��VW�V�
        !          8296: �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          8297: �u#�>�r
<"s
< r���<v��Xט��Ê���U���WV�v�D��F���-�������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ���������������&uF��t��
        !          8298: u3�v�����u-�l��u�"���*�D��^��G�&��V����Du�ށ���������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^���� t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v�l��u�F�"����
        !          8299: u$�F�*�Du�ށ���������������&t+��5��-�������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~t�~
        !          8300: uv�^�G�P����td�F-�������������F��v�!���^���G�^��+���G�*��^�"t�*u�G�P����t        �v����^��]�U��d&�y�WV�v������F��
        !          8301: �F��
        !          8302: ���|�<%t�X�
        !          8303: &+���
        !          8304: ��
        !          8305: ���
        !          8306: ����
        !          8307: ��
        !          8308: ��
        !          8309: � �|&0u<F�0�3�<+u
��
        !          8310: ��"��< u
�>�
        !          8311: u����
        !          8312: �      �<-u���
        !          8313: F��P�����u�V�P�f�����>}��
        !          8314: ��أ�<.u#�FV�
        !          8315: P�<�����>
        !          8316: }
        !          8317: �
        !          8318: &���=Ft2=Nt5=ht =lu��
        !          8319: �>�
        !          8320: u�<Lu&F�<u�&��
        !          8321: &����
        !          8322: ����
        !          8323: �ӊ�����=Et
        !          8324: =Gt=Xu      ��
        !          8325: ���� ����-c=v�&��.��$��
        !          8326: �����
        !          8327: �i&����
        !          8328: �
        !          8329: P�&���Q&������
        !          8330: ��
        !          8331: �>u �&�����
        !          8332: �>�
        !          8333: u�+���
        !          8334: �F�9t'��F��>�
        !          8335: t     ����.��}+����
        !          8336: �P�����:P�����~�t"�>�
        !          8337: t�F�-��}+������.�
        !          8338: �P�������/�+�P��&�*���&����������>�
        !          8339: t��N��G�=t�=%u���+�PV�������<t�|��>uY��
        !          8340: �G tO����M�#�"�#�#�#�#�"�#�#�#�#�"�"�"�#�#�#�#�"�#�#�#�>t�>u��
        !          8341: �G u��F뙐�^_��]ÐU���WV�~
        !          8342: t��>�
        !          8343: t�>�
        !          8344: u��
        !          8345: ��W�F��V���
        !          8346: �*�>t��
        !          8347: ��F��F�����
        !          8348: ���F��V���
        !          8349: �>�
        !          8350: t
�F�F�t�F�+���6�>u*�~�}$�~
        !          8351: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>t!W�   ���
        !          8352: +ȉN����0F��I���N��
        !          8353: ���t<a|�, FG�}�u�>u��
        !          8354: t�~�u�&�+�P���^_��]ÐU���WV�~t�&��
        !          8355: �F��^���
        !          8356: ��>�
        !          8357: u��
        !          8358: ��W�F��V���
        !          8359: ����
        !          8360: ��F��F��^���
        !          8361: �>�
        !          8362: u
�F�F�u�n�        �~�u   �u�F��^��F��V��F�V�+�96t�
        !          8363: ���^��F�&�?tF;�~��F�^��F�&�?u�>+��>�
        !          8364: uW�&��V�v��v��o&���>�
        !          8365: tW�&��^_��]�U�����
        !          8366: �F��~gt�~Gu�&�*��F��>u�
        !          8367: �~�t
�>
        !          8368: u�
        !          8369: &�6�
        !          8370: �6
        !          8371: �v�6�v��" ��
        !          8372: �~�t�>�
        !          8373: u�6�$     ���>�
        !          8374: t�>
        !          8375: u�6�(    ����
        !          8376: ���
        !          8377: t�v��*   ���t�&�+�P�&��]�U��V�>u/��
        !          8378: �Ox�F�7��*���S�v�A���@u����^]ÐU���WV�>uI�v�~B��6�
        !          8379: �6�  ���@u���N�~��
        !          8380: �Ox۠�?��*��܃>u�F&^_��]�U���WV�v�>uP��6�
        !          8381: �^&��P����@u��F��N�t��
        !          8382: �Ox��^&���
        !          8383: �?��*��҃>u�F&^_��]�U���
        !          8384: WV�6+��F��F��>0u9t9�
        !          8385: t9u� �>V����F�+�+~�>�
        !          8386: u�<-u�>0u��P�����N��>0t�~�>�
        !          8387: t�~t�F��_�>t�F��j�>�
        !          8388: u&W�����~t        �~�u�5�>t �~�u�=�v�V������>�
        !          8389: t
� W�a���^_��]Ã>�
        !          8390: t�+�� P����Ð�0P������>u�>�
        !          8391: t�X���xP�����ÐU���WV�v�F�&�<*u��
        !          8392: �?��
        !          8393: F�H��<-u�F���F+��<0|5�<909>u�<0u�0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V�|�N��F�<t
        !          8394: :u��&��+�^��]ÐU���2��~��F���F���u�@u�O�u�F���V$
        !          8395: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          8396: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          8397: �>�!����
        !          8398: N���&����Ë�]�2��ܡ���#�3ɨ�u��&�U����^;�r�  ������ t�B3ɋ��!r�����tn�V3��F��F��WV����f��N�T�
        !          8399: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          8400: t;�t����#�a�
;�u���
        !          8401: �F����
��^_�U�E3����PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ����@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u����@t
        !          8402: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          8403: �!W�~��]�M�U�u�E
        !          8404: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿J       �ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          8405: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF����r        �t     &F�V�DP�F��FH�F��F
        !          8406: �F�>v t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          8407: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          8408: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          8409: �vV� ���&+�P��t�P�F�P�F�P�v
        !          8410: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P�������u
�v������z���     PVW�S��P������v���t�PW�v�����F��>�u+�    P�.PW�q���P����v���t�PW�v����F�W�`���v��W���F�^_��]ÐU����_�WV��(����v
        !          8411: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          8412: �t�&:t�    P�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�     PW������vW������v
        !          8413: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
������Vr59Ps%P�ر��ً�+���ËشJ�!Xr$�H�P��.V&VË���U���WV��+����D�tV�L߃�@t&G��96s��^_��]�U���V�F-�������������F��P�߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;�r�  �*�F�tH�~
        !          8414: t3ɋѸ&B�!rK�F
        !          8415: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          8416: �B�!r������Y��;�s+�����3���U��VW�~u8�V�V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9Ps&����������;�u ١�+؎��J�!r
;�u�P�����U��WV�~�v�ߋN��
        !          8417: �t���2���^_��]�U��VW��U��^;�}��|���@t�&�3���]��>u��ÐU���WV�f     P�_ރ����u��<u��PV�6x        �k�����RP��V�+ރ�RP�7�r   �t     +���ހ?t��ފ�����u      ��ހ?-uG��|؋�ހ?t�P���P�6z    �       �����z       ��z  �?&�@�v        ^_��]�U���WV�v�|}��|   ~��|~      �|     }��|
        !          8418: ��l���~�|u�\�㋇L       �
        !          8419: ��\�㋇N      �F���u�F��|
        !          8420: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu���F�~t)�F�F����^��F��7�^���@��^��?t���v���F��t�^����u�N�u�~�t�F���~t�v�����F�v���v����
        !          8421: ����&��6����F��F�P�[ۃ��F��u!�v��Kۃ����u�����6�뷋~��6��^�~��?��$��F��^
        !          8422: ���?�~t-�F�F��+�P�^��7W�|ۃ�P����@���F��^��?uۃ~�t>+�P��     PW�Rۃ�P�������F��G+��N����t�������GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v�����
        !          8423: �^�7��ك����
�^�ƈ�F�^_��]ÐU��~&t�~t
�������k�VW�؋^
        !          8424: ���ã�       �F��   ��     �6�   F��     �&)�!�&)��      �!U�>�}!.��9.�&�9�.�5.�6�9�u.�6�9.��9�� �~t�3��2��P��!X��&�V�K�!P�P�0�!<X[}!.��9.�&�9�..��9.�6�9�u.�6�9�5����]_^r�M�!���
        !          8425: ���������N
        !          8426: �F�V�~W��
        !          8427: �t��
        !          8428: u�y
        !          8429: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [files count fname nname]
        !          8430:   Flags:  h    Help - print this usage info
        !          8431:           t    Print execution time statistics
        !          8432:           f    Test function only (negate -t)
        !          8433:           n    Suppress test directory create operations
        !          8434: file.newfile.unknown option '%c'filescount%s: rename
        !          8435: dir.%s%d%s%dcan't rename %s to %s%s exists after renamecan't stat %s after renamecan't rename %s to %s%s exists after renamecan't stat %s after rename       %d renames on %d files
        !          8436: dir.%s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          8437:       %s: (%s)  
        !          8438:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          8439: \*.*rewind failed�7�V;C_FILE_INFO���&&��C`"
"
&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          8440: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error��������������
./01BCWXYZrstuv����%.com.exePATH\�������;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&j      n       SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�       ��     ��3<<NMSG>>R6000
        !          8441: - stack overflow
        !          8442: R6003
        !          8443: - integer divide by 0
        !          8444:       R6009
        !          8445: - not enough space for environment
        !          8446: �
        !          8447: �run-time error R6002
        !          8448: - floating point not loaded
        !          8449: &R6001
        !          8450: - null pointer assignment
        !          8451: ���NB00_8�
        !          8452: TEST7A.OBJ�SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm\o&&dos\crt0dat.asm�&
        !          8453: chkstk.asm�>& fprintf.c &_file.c n&fflush.c� &
dos\close.asm�X&nmalloc.asm?&
        !          8454: strcat.asmF2&
        !          8455: strcpy.asmx&atol.asm|&    ctype.asm|^&getenv.c�~&perror.cXx&setbuf.c�V&    sprintf.c&&   creat.asm>&   umask.asmP�&system.c�$&
dos\chmod.asm<&dos\dir.asm<�&dos\getcwd.c�&dos\rename.asm<&
        !          8456: dos\stat.cJ
&dos\unlink.asmX(&dos\d_find.asm�+&dos\diskfree.asm�&dos\getdrive.asm�&dos\gettime.asm�&dos\setdrive.asm��&ldiv.asm�4&lmul.asm� &dos\crt0msg.asm�&
        !          8457: crt0fp.asm�"&
        !          8458: chksum.asm�&&dos\stdargv.asm�n&dos\stdenvp.asmT&dos\nmsghdr.asmXT&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c .&
        !          8459: _freebuf.c0 && _sftbuf.cJ!�&output.c*�&&dos\open.asm�+(&&     write.asm�,a&&amalloc.asm@.&
        !          8460: strlen.asm\.:&strncmp.asm�.T&atox.asm�.&dos\bdos.asm�.G&dos\intdos.asmD/&&
        !          8461: dtoxtime.cZ0B&stricmp.asm�0+&strrchr.asm�0X&strpbrk.asm 1&syserr.c 1D&&
dos\spawnve.cd2�&
        !          8462: spawnvpe.cX3&dos\access.asmx3B&dos\stdalloc.asm�32&
        !          8463: flushall.c�3l& _getbuf.cX4z&
dos\lseek.asm�4&stackava.asm�4�&dos\brkctl.asm�5(&strncpy.asm�5
        !          8464: &        ultoa.asm�5&cmiscdat.asm�5#&
        !          8465: isatty.asm�5&days.c�5�&&tzset.c�7&  timeset.c�7*&
        !          8466: strchr.asm�7'&
dos\cenvarg.c�9�&dos\dospawn.asm�:&dos\execload.asm�:_&xtoa.asm�_usagek�_main6&��_Tflag8&��_Hflag:&��_Fflag<&��_Nflag&�_pattern*�h_findtst&��    _maxentry$��
_currententry(��_dirlist ��_dirst"��_Myname�_statfs�
_opendir�'_readdir�
        !          8467: _rewinddir��_error�.  _closedird�
        !          8468: _starttime��_endtime�$_seekdiry"_telldir       �_printtimes�       �_testdir\
        !          8469: �   _mtestdir�
        !          8470: �_getparm��    _complete>��_diropen��_dirtree��
_gettimeofday��_unix_chdir�_getwd�
        !          8471: _rmdirtree#�_unix_chmodo�_lstat!�_chdriveN�__fmodeN�__iomode�
        !          8472: �_edata`�_endT�__aexit_rtn��__abrkpV�__abrktbP�__asizds�__astartR�__atopsp��       __abrktbe> __cintDIVv�&
        !          8473: __acrtusedM__amsg_exit��__osversion��_errno7__exit��__child��__nfile\__cinit��___argc��__intno��
__dosvermajor��__oserr��___argv��
__dosverminor��_environ��__osfile��__osmode��__pspadr�        �__fpinit��__ovlvec��__pgmptr��       __acfinfo�� __ovlflag�� __aintdiv�� __osmajor�� __osminor��
        !          8474: __umaskval|
        !          8475: __ctermsub��
        !          8476: __doserrno��__fac _exit��__psp��STKHQQ�__chkstk�_fprintf"
�__bufin"�__bufout*�__buferr��__iob2�       __lastiob��__iob _fflush�_close�_malloc�__nfree�__asegds�       __nmalloc�_free_strcatF_strcpyx_atol�__ctype�__ctype_|_getenv�_perrorX_setbuf�_sprintf&_creat>_umaskP_system�_chmod_chdir_mkdir_rmdir<_getcwdP     __getdcwd�_rename�_statJ_removeJ_unlinkX__dos_findnextb__dos_findfirst�__dos_getdiskfree�__dos_getdrive�
__dos_gettime�__dos_setdrive�__aNldiv�__aNlmul�    __aNulmul�__FF_MSGBANNERT�    __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck        __setargv� __setenvp__NMSG_TEXT/__NMSG_WRITEX    __dosret0x
        !          8477: __maperrork
        !          8478: __dosretax`__dosreturnl�__cflush�__flsbuf        __freebuf� __ftbuf0 __stbufJ!__output*
        !          8479: __copensub*_open�+__cXENIXtoDOSmode�+_write .__amallocbrk��__aseg1��__asegh��__asegn��__asegr�-__amlink��    __QChdata�, __amalloc�-
        !          8480: __amexpand��
        !          8481: __amblksiz@._strlen\._strncmp�.__catox�._bdos�._intdosD/
        !          8482: __dtoxtimeZ0_stricmpZ0_strcmpi�0_strrchr�0_strpbrk        �    _sys_nerr��_sys_errlist 1_spawnved2       _spawnvpeX3_accessx3   __myalloc�3 _flushall�3__getbufX4_lseek�4_stackavail�4_brkctl�5_strncpy�5_ultoa"      �
__cfltcvt_tab0     �__asizeC1  �__asizeD.  �__sigintoff,       �__sigintseg�5_isattyL �__days2    �__lpdays�6     __isindst�5___tzset6_tzset�  �    ___mnamesv      �    _daylightr      �    _timezonex      �_tzname|   �    ___dnames�7_strchr�7   __cenvarg�9 __dospawn�:
        !          8483: __execload�:__cxtoa�:
        !          8484: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          8485: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x0��&xH��&x���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x`��&&�&&�&&�&x(��&&�&&�&&�&&�&&�&&�&x����&&�&&�&x����&x����&&�&&�&x����&&�&x��&&�&&�&&�&&�&&�&&�&&�&y����   �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          8486: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          8487: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          8488: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          8489: u���c&��&&�&
        !          8490: ������&
        !          8491: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          8492: u���c&��&��&
        !          8493: u���c&��&&�&&�&&�&����&
        !          8494: u���c��&���
        !          8495: &
        !          8496: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          8497: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          8498: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          8499: u���c&�!&����&u��c�#&&�&��&
        !          8500: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�-f�mainv
        !          8501: �argc
        !          8502: +argv���files���fi���count���ct���totfiles
���totdirs���fname���nname
        !          8503: ���time     ���str       ���new��statb
        !          8504: ���opts&&"��Myname��_iob&���&�&dirtree�v&        �lev�files
        !          8505: �dirs
        !          8506: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          8507: ��name&&&�m&�&�  rmdirtree*\& �lev�files
        !          8508: �dirs
        !          8509: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          8510: ��name&&&�����error��      �str       �ar1       
        !          8511: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          8512: ���path&&&d���  starttime&&����fendtime�p�tv&&&        ��w�
        !          8513: printtimes  q�tv�nbytes&&&� ����testdir�  �      �dir��statb   ��str&&&\
        !          8514: �^�mtestdirg
        !          8515: M     �dir&&&�
        !          8516: �g-�getparm�
        !          8517: V
        !          8518: �parm     �min
        !          8519: �label      ���val&&&!���chdrive,s
        !          8520: �path���desireddrive���drive&&&��7>complete&&��&Od
        !          8521: unix_chdir�
        !          8522: �path&&&�!u�getwd

        !          8523: �path&&&#�L��
        !          8524: unix_chmod.;
        !          8525: �path
        !          8526: �mode
���dosmode&&&o� ��lstatz
        !          8527: �path     
        !          8528: buf&&&��pagettimeofday�_�TV�TimeZone
��ndostime&&&��rW       statfs
        !          8529: 
�
        !          8530: �path     �buf���&p���&i���drive��q     diskspace&&&�
�h  9
        !          8531: opendir�
�dirname���&i���
        !          8532: attributes&&&��J
        !          8533: �
        !          8534:     rewinddir��
        !          8535: �dirp���&i���
        !          8536: attributes&&&y"�
        !          8537: �
        !          8538: telldir�

        !          8539: �dirp&&&�$6
        !          8540: /seekdir�%
        !          8541: �dirp     �loc&&&�'F@ureaddir�5
        !          8542: �dirp&&&)!��findt_to_dirent~&f�&d&&&4,X��copynametolower?G
        !          8543: �dest     �src���&i&&&�.�closedir�
        !          8544: �dirp&&
        !          8545: �
        !          8546: ��ts��_ctype
        !          8547: �
        !          8548: ��te&�pattern*�hfindtst&��maxentry$��currententry(��dirlist
 ��dirst"��Myname
���errno��_iobtest7a.cc !-";#I$W%e)k,v.{0�1�2�3�:�;�<�=�>�?�@�B�C�F&G     &J&K&N&O&R&S+&T.&U8&V^&Wa&Xd&Yh&[k&\t&]�&^�&`�&a�&b�&c�&e�&f�&g�&h�&j�&k�&l�&m�&o�&p�&q�&tuvy{/|9~F�P�r�|��������������*�9�C�[�j�t��������������������'�B�L�[�i����subr.c��+�,�.�/�0�1�2
456.7<9F:I;b=xA�B�D�E�F�G�I�J�KLNO_k*l8n;oTpjq�r�t�u�v�w�x�y�z�{�|~,�>�H�R�e�t�~����������������&�3�A�K�T�^�d�o�}�����������������   �     �;     �_     ��     ��     ��     ��     ��     ��     ��     ��     ��     ��     �
        !          8549: �
        !          8550: �$
        !          8551: �.
        !          8552: �?
        !          8553: �L
        !          8554: �V
        !          8555: �\
        !          8556: &g
        !          8557: &p
        !          8558: &�
        !          8559:        &�
        !          8560: 
        !          8561: &�
        !          8562: &�
        !          8563: 
&�
        !          8564: &�
        !          8565: &�
        !          8566: &�
        !          8567: &�
        !          8568: &�
        !          8569: && &.&!1&,3&84&b5&o6&y8&�9&�<&�C&�D&�F&�H&�I&�N&�Q&�S&�T&�X&Z&
[&_&#b&.c&Zd&ih&ok&zl&�p&�r&�u&�v&�w&�x&�|&�&
        !          8570: 
�&
�&$
�&0
�&;
�&G
�&t
�&~
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�
�&�&�&�& �&*�&0�&6�&C�&M�&S�&l�&r�&��&��&��&��&��&��&��&��&��&��&��&�&�&�&(�&E�&c�&f�&m�&s�&y�&��&��&��&��&��&��&��&��&��&��&��&��&��&
�&�&�&.�&4�&?&����  �
        !          8571: �
        !          8572: SLIBCE.LIB�&&&&&�M&&�&&�*�&&33�&&&&��&&�&�+o&�4�&&4'&�        &&[&�     �&&t&�
        !          8573: �&&&�&|&&�&�&&�&�U&&     �&       �&&
        !          8574: �&
        !          8575: 
        !          8576: 

&&&&
G&&&&^
&&
/&&
l
&&F&&z
&&[&&�
&&q&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&
&&!&'&&9&8&&R&V&&m&d&&�&p&&�&�+&&�&�&&�&�&& �& �&&!&!�&&"-&"
&&#B&#&&$W&$;5&&%s&%p&&&�&&&&'�&'�&&(�&(�&&)�&)�%&&*�&*�D&&+&+&&,(&,)&&->&-8&&.U&.H&&/k&/d&&0�&0s5&&1�&1�
&&2�&2��&&3�&3Q&&4�&4_&&5�&5n&&6&6|&&7$&7�&&8?&8�&&9V&9�&&:n&:�&&;�&;�&&<�&<�#&&=�&=&&>�&>&&?�&?%&&@�&@3&&A&AC&&B3&BS&&CI&Cb
&&Dc&Do&&E|&E�&&F�&F�&&G�&G�
&&H�&H�V&&I�&I&&&J�&J&&K&K+,&&L&LWN&&M2&M�&&NI&N�&&Oc&O�&&P&P�&&Q�&Q�&S8NB00?�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name./basic/test7b.exe   777  20115     11      100201  4552132572   7337 MZ�&" x���@k��&P{�
�{�{�{U����WV�6R�BP�:P�����oP�:P������P�:P������P�:P������P�:P����^_��]�U��8�WV�F�
        !          8577: dž��
        !          8578: dž��dž���F�>&dž��D&�P�����P�:P�����^�F��R�6R�M&P�:P�W���^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          8579: �p&P���P������&P���P�7������=|����P�u&P����&P�
���^������k��=|�������&P�S���&P�����t�dž��������F9���|������v��&P���P�[�����P���=|����P��&P��&���&P����^����P�+��=|����P��&P��&���&P�N���v�v�v�v
        !          8580: �v�v�v������&P����=|���&P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          8581: ��&P���P�i�����P����=|�"�~t����P��&P�����&P����^���dž��������F9���|�������v��&P���P�������P����=|�%�~u������P��&P����&P����v�v�v�v�v
        !          8582: �v�v�v�������&P���=|���&P�G���&P��
        !          8583: �����P���=|����P�P����&P�
        !          8584: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6R�P�BP�&�������P�6R�-P�BP����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          8585: �v�v�v�BP��
        !          8586: ��(�>�u�
�8P�����:P�BP�
        !          8587: ���BP��
        !          8588: ���~�t�
        !          8589: �&P��        ��^_��]�U���_
        !          8590: WV�P� 
        !          8591: P���^_��]�U���@
        !          8592: WV�P�
        !          8593: P�����$
        !          8594: �&
        !          8595: 9
        !          8596: ~�#}�       9
        !          8597: r��.
        !          8598: &�
        !          8599: �
        !          8600: @B�
        !          8601: �^�
        !          8602: �
        !          8603: +$
        !          8604: &
        !          8605: �G�W�^�
        !          8606: �
        !          8607: + 
        !          8608: "
        !          8609: ��W^_��]�U���    WV�'�RP�^�w�w�RP�^�w�7�<P�:P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�lRP�RP�:P�e    ��^_��]�U��&�=       WV�~t��cP��
        !          8610: ���F=t��Fn����P�v����=t�<�v�zP���P�������P�l��=u��v��P�����&P����v����=|��v��P�k����&P�����v�&��=|��v��P�C����&P����^_��]�U���gWV�~t���P�
        !          8611: ���F=t��F��v�L&��=|��v��P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          8612: �P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������Wu��^��- ��^��-@�F��F�P�v��Z���F�P�"���F�9F�u��^��P�MP������&P���^_��]�U���WV�6R�gP�:P�#���6R�X����P�M��^_��]�U����WV�v�4����v����^_��]�U����WV�&P�v�%���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�y
        !          8613: ���^_��]�U���TWV�v�v�+���^_��]�U���4WV�F�P�����RP�F�*�+�QP���Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������Wu��^��- ��^��-@�F��
        !          8614: �F�P�
���F�P�v�����=u�����V�^�F��G�G+�P�v�+�P�v���
�^�G�W
        !          8615: +�P�v�+�P�v��
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�VP�7���pP�VP�����>vu����v&�P����X�>Xt���~�ZP�v��VP����=u���_�6X�ZP�&���F�&��F��ZP���=t�!�F�����������XP�ZP�[&������F�H�V�T�P
        !          8616: �^_��]�U����WV�F��F�F�ZP�v��VP�S��=u��xP�����&P�        ���6X�ZP�����F�&��F��ZP�
        !          8617: ��=t�!�F�����������XP�ZP�������F�H�V�T^_��]�U���JWV�F�F�T��^_��]�U���,WV�F�F�V�9V~�}�9Fv��F�T^_��]�U����WV�F�F�V9T�        ����T�T����������X�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������W&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F�v^_��]Ð�0�!<s� �w�6+���r���ׁĎ�s��
        !          8618: 3�P�@
��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6����
        !          8619: ��+�3���;�\��
        !          8620: 3��6 �6�6���P���w�ظ6��`P�[
        !          8621: ����P���0�!�&�5�!�����%�~
�!�0 �.��&�6,�2  ��3�6�.        s�-
        !          8622: 6�6   �ڻ6�.       ��&�,�6��3�&�=t,����t��3��u�����������t&H��������D�!r
        !          8623: �€t��@Ky�:        �:      ��:   �:      ��U��P
        !          8624: �P
        !          8625: �}�:  �<      �t�U��<      �<      �f�<   �<      �l�   �t�~u�F�����&t�>�!C����F�L�!�0        ���.        ���%�!�>*t
�+�,�%�!�;�s
        !          8626: OO�
�������;�s���Et�����Y��+�r
        !          8627: ;0r����3��k�U���WV�F�F��v�&
�����FP�v�v�.�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�2�������������&t'�+D�F��~P�t�D�P�5��;F�t�L ����D��D��^_��]�U��^;r�      ���>�!rƇ�
        !          8628: U��^�t�O�&��]�U��VW�L�?u)��7u3���$@$��L�N��&���D����6R�N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��U���WV�6 �tF�~t@�v����������<t*�4���;�~��9=u�W�vS����u֋�A&��+�^_��]�U���WV�v��t&�<t!V�7�PV��P�����P�XP��P����>�|     �F9�|�F����㋷�V����PVW�c���&P�[PW�T��^_��]ÐU���V�v��-2������������F�V����V�j
        !          8629: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�7�����Mx*������W+�P�}����^_��]�U���v�P�v������]�U��F%�&����]�U����^P�����F��~u+�P�v������u�&�Z+��V�F�f�F�F��F��~�t&�6 �F�P�v�+�P�c���F�@u�>�t�F���F�i�6 �F�P�iP+�P�{����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          8630: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�e��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�F���F�P���@�F��~�u;�~��V��������u �����~9v�~
        !          8631: ��"+���F�PW�V���^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�3�����t1�vPW�����t�{PW�����t��PW�����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
������Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u������W&t� ����-`�+�PP�P���*�@�F�~�th��PV�n���t����P+�P�v�������F��u�j�V����@t)�v������v��.����F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          8632: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u���V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          8633: �}G�V�����F
        !          8634: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          8635: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          8636: ؋^u�F���]���ȋF�f
        !          8637: ȋF��ы�]�U���P�e�>�t����P�S��]ø�{�V3��B2���2�����Ut
����&P�,�&^Ï��8&t)��&�,�$3����3��u�GG�>"�����ыѿ&�����< t�<  t�<
to
        !          8638: �tkGN�< t�<    t�<
t\
        !          8639: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          8640: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>�G��׀��+�ģ���6�?CC�6"��
        !          8641: �u���6���3���< t�< t�<
u�
        !          8642: �u�y�6�?CCN�< t�<     t�<
tb
        !          8643: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          8644: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���. ��3�I��<;Ct�~EE��
        !          8645: �u���N]��]�U��VW�V�F    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â
        !          8646: �u#�>&r
<"s
< r���<v���ט��Ê���U���WV�v�D��F���-2������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�2�������������&uF��:t��Bu3�v�����u-����:u�R
        !          8647: ���Z�D��^��G�&��V����Du�ށ�2�������������&tP�<+|�D@��^��GH�D�~W�t�v�����F����^��� t�P+�PPS����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t����d�+���D�D^]ÐU���V�v����:u�F�R
        !          8648: ����Bu$�F�Z�Du�ށ�2�������������&t+��5��-2������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~:t�~Buv�^�G�P����td�F-2������������F��v�5���^���G�^��+���G�*��^�R
        !          8649: t�Zu�G�P����t        �v����^��]�U��d&��WV�v�����F
        !          8650: �F�6
        !          8651: �F�*
        !          8652: �@
        !          8653: �>
        !          8654: �|�<%t�X�B
        !          8655: &+��2
        !          8656: �.
        !          8657: �<
        !          8658: �0
        !          8659: �:
        !          8660: �8
        !          8661: �,
        !          8662: �(
        !          8663: �4
        !          8664: �L
        !          8665:  �|&0u<F�L
        !          8666: 0�3�<+u
�2
        !          8667: �8
        !          8668: �"��< u
�>2
        !          8669: u�8
        !          8670: ��(
        !          8671: �      �<-u��4
        !          8672: F��P�����u�V�H
        !          8673: P�f�����>H
        !          8674: }�4
        !          8675: �H
        !          8676: �أH
        !          8677: �<.u#�:
        !          8678: FV�B
        !          8679: P�<�����>B
        !          8680: }
        !          8681: �B
        !          8682: &�:
        !          8683: ��=Ft2=Nt5=ht =lu�0
        !          8684: �>0
        !          8685: u�<Lu&F�<u�&�0
        !          8686: &���0
        !          8687: ���0
        !          8688: �ӊ�����=Et
        !          8689: =Gt=Xu      �.
        !          8690: ���� ����-c=v�&��.��@ �6
        !          8691: ��>
        !          8692: ��6
        !          8693: �i&��<
        !          8694: �(
        !          8695: �
        !          8696: P�&���Q&�����,
        !          8697: �.
        !          8698: �>:
        !          8699: u     �D
        !          8700: &���D
        !          8701: �:
        !          8702: �B
        !          8703: �>0
        !          8704: u�+��0
        !          8705: �F�9H
        !          8706: t'�H
        !          8707: �F��>4
        !          8708: t     �H
        !          8709: ���.H
        !          8710: �H
        !          8711: �}+��H
        !          8712: �6
        !          8713: �P�����:P�����~�t"�>4
        !          8714: t�F�-�H
        !          8715: �}+��H
        !          8716: ���H
        !          8717: �.6
        !          8718: �P�������/�+�P��&�*���&����������>0
        !          8719: t��N��G�=t�=%u���+�PV�������<t�|��>>
        !          8720: uY�*
        !          8721: �G tO����M����������"��������>@
        !          8722: t�>>
        !          8723: u�*
        !          8724: �G u��F뙐�>
        !          8725: ^_��]ÐU���WV�~
        !          8726: t�<
        !          8727: �>0
        !          8728: t�>0
        !          8729: u�6
        !          8730: ��W�F��V��6
        !          8731: �*�><
        !          8732: t�6
        !          8733: ��F��F����6
        !          8734: ���F��V��6
        !          8735: �>(
        !          8736: t
�F�F�t�F�+��J
        !          8737: �6F
        !          8738: �><
        !          8739: u*�~�}$�~
        !          8740: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>:
        !          8741: t!W� ���B
        !          8742: +ȉN����0F��I���N�.
        !          8743: ���t<a|�, FG�}�u�><
        !          8744: u�2
        !          8745: 8
        !          8746: t�~�u�&�+�P���^_��]ÐU���WV�~t�&�6
        !          8747: �F��^��6
        !          8748: ��>0
        !          8749: u�6
        !          8750: ��W�F��V��6
        !          8751: ���6
        !          8752: ��F��F��^��6
        !          8753: �>0
        !          8754: u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96:
        !          8755: t�B
        !          8756: ���^��F�&�?tF;�~��F�^��F�&�?u�>H
        !          8757: +��>4
        !          8758: uW�&��V�v��v��o&���>4
        !          8759: tW�&��^_��]�U����6
        !          8760: �F��~gt�~Gu�&�*��F��>:
        !          8761: u�B
        !          8762: �~�t
�>B
        !          8763: u�B
        !          8764: &�6.
        !          8765: �6B
        !          8766: �v�6F
        !          8767: �v��Z��
        !          8768: �~�t�>(
        !          8769: u�6F
        !          8770: �\���>(
        !          8771: t�>B
        !          8772: u�6F
        !          8773: �`���6
        !          8774: �J
        !          8775: �2
        !          8776: 8
        !          8777: t�v��b���t�&�+�P�&��]�U��V�>@
        !          8778: u/�*
        !          8779: �Ox�F�7��*���S�v�A���@u�@
        !          8780: ���>
        !          8781: ^]ÐU���WV�>@
        !          8782: uI�v�~B��6*
        !          8783: �6L
        !          8784: �      ���@u�@
        !          8785: ��N�~�*
        !          8786: �Ox۠L
        !          8787: �?��*��܃>@
        !          8788: u�F&>
        !          8789: ^_��]�U���WV�v�>@
        !          8790: uP��6*
        !          8791: �^&��P����@u�@
        !          8792: �F��N�t�*
        !          8793: �Ox��^&��*
        !          8794: �?��*��҃>@
        !          8795: u�F&>
        !          8796: ^_��]�U���
        !          8797: WV�6F
        !          8798: +��F��F��>L
        !          8799: 0u9:
        !          8800: t9,
        !          8801: t9D
        !          8802: u�L
        !          8803:  �>H
        !          8804: V����F�+�+~�>4
        !          8805: u�<-u�>L
        !          8806: 0u��P�����N��>L
        !          8807: 0t�~�>4
        !          8808: t�~t�F��_�>J
        !          8809: t�F��j�>4
        !          8810: u&W�����~t        �~�u�5�>J
        !          8811: t     �~�u�=�v�V������>4
        !          8812: t
�L
        !          8813:  W�a���^_��]Ã>2
        !          8814: t�+�� P����Ð�0P������>J
        !          8815: u�>.
        !          8816: t�X���xP�����ÐU���WV�v�F�&�<*u�6
        !          8817: �?�6
        !          8818: F�H��<-u�F���F+��<0|5�<909>:
        !          8819: u�<0u�L
        !          8820: 0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          8821: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          8822: Ǵ=�!s=u    ��&t�������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�K��F��u�Fu0�>�!�F$
        !          8823: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;r
        !          8824: �>�!����
        !          8825: N���&���Ë�]�2��ܡ���#�3ɨ�u��&�U����^;r�  ����� t�B3ɋ��!r����tn�V3��F��F��WV����f��N�T�
        !          8826: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          8827: t;�t����#�a�
;�u���
        !          8828: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���@t�^�?u������F�+F��f�^_���N�u����V�@�!s�  ���u���@t
        !          8829: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          8830: �!W�~��]�M�U�u�E
        !          8831: r3���C�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP��F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          8832: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�������&F�V�DP�F��FH�F��F
        !          8833: �F�>�t�F�P����t        �n��^��F�V�^_��]�U��֋v�^��
        !          8834: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          8835: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌��WV�v�~u�v
        !          8836: �vV� ���&+�P��t�P�F�P�F�P�v
        !          8837: �v�U��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�(���F���V�v���P������u
�v������z���HPVW�g��P� �����v���t�PW�v�����F��>�u+�MP�.PW�q���P�(���v���t�PW�v����F�W�t���v��k���F�^_��]ÐU����s�WV��(����v
        !          8838: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          8839: �t�&:t�RP�������u��|����PV�F�P�������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�WPW����vW������v
        !          8840: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������r59�s%P�ر��ً�+���ËشJ�!Xr$�H����.�&�Ë���U���WV�2+����D�tV�`߃�@t&G��96Js��^_��]�U���V�F-2������������F��P��߃��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;r�  �*�F�tH�~
        !          8841: t3ɋѸ&B�!rK�F
        !          8842: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          8843: �B�!r�����Y�0;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١�+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          8844: �t���2���^_��]�U��VW��U��^;}��|��@t�&�3���]��>N
        !          8845: u��N
        !          8846: ÐU���WV��P�sރ����u��<u��PV�6��k�����RP��V�?ރ�RP�7壪��+���ހ?t��ފ�����Wu     ��ހ?-uG��|؋�ހ?t�P���P�6��  ����������?&�@��^_��]�U���WV�v�|}��| ~��|~      �|     }��|
        !          8847: ��l���~�|u�\�㋇��
        !          8848: ��\�㋇��F���u�F��|
        !          8849: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu� �F�~t)�F�F����^��F��7�^���@��^��?t���v��F��t�^���u�N�u�~�t�F���~t�v�����F�v���v���
        !          8850: ����&��6����F��F�P�oۃ��F��u!�v��_ۃ����u����6�뷋~��6��^�~��?��$��F��^
        !          8851: ���?�~t-�F�F��+�P�^��7W�ۃ�P����@���F��^��?uۃ~�t>+�P��PW�fۃ�P�������F��G+��N���t������GF��N��G�G�~t�&G�G�vW�ۃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ڃ�P�������F��^��?t� GF�^��?t,�7����F��=}v����
        !          8852: �^�7�ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�������k�VW�؋^
        !          8853: ���ã��F� �     �6   F�     �&)�!�&)�      �!U�>&}!.�6.�&6�.�5.�6
        !          8854: 6�u.�66.�6���~t�3��2��P��!X�(&�V�K�!P�P�0�!<X[}!.�6.�&6�..�6.�66�u.�6
        !          8855: 6�5���(]_^r�M�!���<  ���������N
        !          8856: �F�V�~W��
        !          8857: �t��
        !          8858: u�y
        !          8859: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [-htfn] [files count fname nname]
        !          8860:   Flags:  h    Help - print this usage info
        !          8861:           t    Print execution time statistics
        !          8862:           f    Test function only (negate -t)
        !          8863:           n    Suppress test directory create operations
        !          8864: file.newfile.%s: links not supported under DOS
        !          8865: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          8866:       %s: (%s)  
        !          8867:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          8868: \*.*rewind failed�ww�;C_FILE_INFO���&&&wC�RR&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          8869: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error���������!"#3EFGHTfghiz{�������������%.com.exePATH\��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�{�{�/<<NMSG>>R6000
        !          8870: - stack overflow
        !          8871: R6003
        !          8872: - integer divide by 0
        !          8873:       R6009
        !          8874: - not enough space for environment
        !          8875: �
        !          8876: �run-time error R6002
        !          8877: - floating point not loaded
        !          8878: &R6001
        !          8879: - null pointer assignment
        !          8880: ���NB00j6�
        !          8881: TEST7B.OBJ�SUBR.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm�
o&&dos\crt0dat.asm&
        !          8882: chkstk.asm">& fprintf.c`&_file.c`n&fflush.c� &
dos\close.asm�X&nmalloc.asmF?&
        !          8883: strcat.asm�2&
        !          8884: strcpy.asm�&atol.asm�&    ctype.asm�^&getenv.c~&perror.c�x&setbuf.cV&    sprintf.cf&   creat.asm~&   umask.asm��&system.c$&
dos\chmod.asm@<&dos\dir.asm|�&dos\getcwd.c:<&
        !          8885: dos\stat.cv
&dos\unlink.asm�(&dos\d_find.asm�+&dos\diskfree.asm�&dos\getdrive.asm�&dos\gettime.asm&dos\setdrive.asm�&ldiv.asm�4&lmul.asm� &dos\crt0msg.asm&
        !          8886: crt0fp.asm"&
        !          8887: chksum.asm4�&&dos\stdargv.asm�n&dos\stdenvp.asm0T&dos\nmsghdr.asm�T&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c..&
        !          8888: _freebuf.c\&& _sftbuf.cv�&output.c>&�&&dos\open.asm�'(&&     write.asm
        !          8889: )a&&amalloc.asml*&
        !          8890: strlen.asm�*:&strncmp.asm�*T&atox.asm+&dos\bdos.asm(+G&dos\intdos.asmp+&&
        !          8891: dtoxtime.c�,B&stricmp.asm�,+&strrchr.asm�,X&strpbrk.asmL-&syserr.cL-D&&
dos\spawnve.c�.�&
        !          8892: spawnvpe.c�/&dos\access.asm�/B&dos\stdalloc.asm�/2&
        !          8893: flushall.c0l& _getbuf.c�0z&
dos\lseek.asm�0&stackava.asm1�&dos\brkctl.asm�1(&strncpy.asm�1
        !          8894: &        ultoa.asm2&cmiscdat.asm2#&
        !          8895: isatty.asm*2&days.c*2�&&tzset.c�3&  timeset.c�3*&
        !          8896: strchr.asm�3'&
dos\cenvarg.c6�&dos\dospawn.asm�6&dos\execload.asm7_&xtoa.asm�_usagek�_main6&w�_Tflag8&w�_Hflag:&w�_Fflag<&w�_NflagVw_patternZwh_findtstVw�    _maxentryTw�
_currententryXw�_dirlistP
        !          8897: w�_dirstRw�_Myname?     _statfs5
        !          8898: _opendir
'_readdir
        !          8899: _rewinddir��_error�.  _closedir��
        !          8900: _starttime��_endtime�$_seekdir�"_telldirD�_printtimes��_testdir�� _mtestdir��_getparm��  _completevw�_diropen��_dirtree��
_gettimeofday�_unix_chdirB�_getwd_�
        !          8901: _rmdirtreec�_unix_chmod��_lstata�_chdrive�w__fmode�w__iomode
        !          8902: w_edata�w_end�w__aexit_rtn�w__abrkp�w__abrktb�w__asizds�__astart�w__atopsp�w       __abrktbe~
 __cintDIVv�&
        !          8903: __acrtused�
__amsg_exit&w__osversion�w_errnow__exit(w__childw__nfile�
__cinitw___argc+w__intno&w
__dosvermajorw__oserrw___argvw
__dosverminor w_environw__osfilew__osmode�w__pspadr.        w__fpinit,w__ovlvec"w__pgmptr�w       __acfinfo*w __ovlflag�w __aintdiv&w __osmajorw __osminor�w
        !          8904: __umaskval�
        !          8905: __ctermsubw
        !          8906: __doserrno�w__fac`_exit�w__psp0wSTKHQQ__chkstk"_fprintfRw__bufinR
        !          8907: w__bufoutZw__buferr�w__iob2Jw        __lastiob2w__iob`_fflush�_close_malloc�__nfreeLw__asegds       __nmalloc�_freeF_strcat�_strcpy�_atolVw__ctypeVw__ctype_�_getenv_perror�_setbuf_sprintff_creat~_umask�_system_chmodG_chdir@_mkdirT_rmdir|_getcwd�     __getdcwd�_statv_removev_unlink�__dos_findnext�__dos_findfirst�__dos_getdiskfree�__dos_getdrive�
__dos_gettime__dos_setdrive__aNldiv�__aNlmul�  __aNulmul�__FF_MSGBANNER�w    __adbgmsgv�& __acrtmsg__fptrap__nullcheck4        __setargv� __setenvp0__NMSG_TEXT[__NMSG_WRITE�    __dosret0�
        !          8908: __maperror�
        !          8909: __dosretax�__dosreturn�w__cflush�__flsbuf.       __freebuf�__ftbuf\__stbufv__outputF&
        !          8910: __copensub>&_open�'__cXENIXtoDOSmode�'_writeL*__amallocbrk�w__aseg1�w__asegh�w__asegn�w__asegr**__amlink�w    __QChdata
) __amalloc�)
        !          8911: __amexpand�w
        !          8912: __amblksizl*_strlen�*_strncmp�*__catox+_bdos(+_intdosp+
        !          8913: __dtoxtime�,_stricmp�,_strcmpi�,_strrchr�,_strpbrkFw   _sys_nerr�w_sys_errlistL-_spawnve�.       _spawnvpe�/_access�/   __myalloc�/ _flushall0__getbuf�0_lseek�0_stackavail1_brkctl�1_strncpy�1_ultoaZw
__cfltcvt_tabhw__asizeCiw__asizeDfw__sigintoffdw__sigintseg2_isatty�w__daysjw__lpdays�2 __isindst*2___tzset:2_tzset�w     ___mnames�w _daylight�w _timezone�w_tzname�w   ___dnames�3_strchr�3   __cenvarg6 __dospawn�6
        !          8914: __execload7__cxtoa7
        !          8915: __cltoasub&&�&&�&&�&&�&&�&&�&&�&y����     �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          8916: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&u��c�&&�&&�&&�&&�&x�h&��&x��&��&x�x&��&x��&��&���+&u��c��&x0��&xH��&x���&&�&&�&&�&&�&&�&&�&x�&��&&�&&�&&�&&�&&�&&�&&�&y����   �stati&"����������������������&z�st_dev��st_ino��st_mode��st_nlink��st_uid��st_gid�
        !          8917: �st_rdev��st_size��st_atime��st_mtime��st_ctime�&zt��stat&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xh��&y�`&�i�j�find_ti&�f���������g&=�reserved��attrib��wr_time��wr_date��size��name�&&�&&�&&�&y �o�p�    dostime_ti&
��������&(�hour��minute�&�second��hsecond�&y@�r�s�
        !          8918: diskfree_ti&
��������&P�total_clusters��avail_clusters��sectors_per_cluster��bytes_per_sector�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&
zt�h�find_t&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@�����timevali&����&�tv_sec��tv_usec�&&�&zt���timeval&zt���timezone&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x@��&y@&�����i&��&�val�&&�&x����&y�   �����statfsi&������������������&d�f_type��f_bsize��f_blocks��f_bfree��f_bavail��f_files��f_ffree��f_fsid��f_spare�$&
zt���statfs&&�&&�&&�&&�&&�&
zt���dirent&yh&���direnti&&�&&�&&�&&�&&�&&�&&�&&�&�g&�d_name�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��������������&u��c��&x���&&�&&�&&�&x(��&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x��&����������������&u��c��&&�&&�&&�&x����&&�&&�&&�&��������������������&u��c
        !          8919: ��&&�&&�&&�&&�&&�&x����&xX��&&�&&�&&�&x��&&�&&�&&�&u��c�&&�&&�&��&u��c&��&����&u��c��&x����&��&u��c&��&&�&&�&&�&&�&x`��&&�&&�&xH��&x�&��&x����&x�&��&��&
        !          8920: u���c&��&&�&
        !          8921: ������&
        !          8922: u���c��&&�&&�&&�&x�x&��&��&u��c&��&&�&&�&&�&&�&&�&&�&x����&u��c�&&�&��&
        !          8923: u���c&��&��&
        !          8924: u���c&��&&�&&�&&�&����&
        !          8925: u���c��&���
        !          8926: &
        !          8927: u���c��&����&u��c��&&�&&�&&�&&�&����&
        !          8928: u���c�&&&�&&�&&�&&�&x����&u��c� &����&u��c�&�~��&&�&��&
        !          8929: u���c&�
&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&��&u��c&�&xp��&��&
        !          8930: u���c&�!&����&u��c�#&&�&��&
        !          8931: u���c&�&&�~��&u��c�(&&�&����&u��c�+&��&u��c&�-&�[Uusage&&k�lf�mainv[
        !          8932: �argc
        !          8933: +argv���files���fi���count���ct���totfiles
���totdirs���fname���nname
        !          8934: ���time     ���str       ���new��statb
        !          8935: ���opts&&Rw�Myname2w_iob&���&�&dirtree�v&        �lev�files
        !          8936: �dirs
        !          8937: �fname�dname�totfiles
�totdirs���fd���&f���&d
        !          8938: ��name&&&_�m&�&�  rmdirtreej\& �lev�files
        !          8939: �dirs
        !          8940: �fname�dname�totfiles
�totdirs�ignore���&f���&d
        !          8941: ��name&&&�����error��      �str       �ar1       
        !          8942: �ar2        �ar3       �ar4       �ar5       �ar6       �ar7       "�ar8       &�ar9       ���ret
        !          8943: ���path&&&����  starttime&&����fendtime�p�tv&&&D��w�
        !          8944: printtimesOq�tv�nbytes&&&�����testdir��        �dir��statb   ��str&&&��^�mtestdir�M     �dir&&&��g-�getparmV
        !          8945: �parm     �min
        !          8946: �label      ���val&&&a���chdrivels
        !          8947: �path���desireddrive���drive&&&��7>complete&&�&Od
        !          8948: unix_chdir'
        !          8949: �path&&&B�!u�getwdM
        !          8950: �path&&&c�L��
        !          8951: unix_chmodn;
        !          8952: �path
        !          8953: �mode
���dosmode&&&�� ��lstat�
        !          8954: �path     
        !          8955: buf&&&��pagettimeofday�_�TV�TimeZone
��ndostime&&&?       �rW statfsJ   �
        !          8956: �path     �buf���&p���&i���drive��q     diskspace&&&5
        !          8957: �h  9
        !          8958: opendir@
        !          8959: �
�dirname���&i���
        !          8960: attributes&&&�J
        !          8961: �
        !          8962:     rewinddir"�
        !          8963: �dirp���&i���
        !          8964: attributes&&&�"�
        !          8965: �
        !          8966: telldir�

        !          8967: �dirp&&&�$6
        !          8968: /seekdir�%
        !          8969: �dirp     �loc&&&
'F@ureaddir5
        !          8970: �dirp&&&S)!��findt_to_dirent^~&f�&d&&&t,X��copynametolowerG
        !          8971: �dest     �src���&i&&&�.�closedir�
        !          8972: �dirp&&
        !          8973:  
        !          8974: w�tsVw�_ctype
        !          8975: 
        !          8976: w�teVwpatternZwhfindtstVw�maxentryTw�currententryXw�dirlist
P
        !          8977: w�dirstRw�Myname
�w�errno2w_iobtest7b.c !-";#I$W%e)k,v.{0�1�2�3�:�;�<�>�����subr.c��+�,�.�/
&0#&1>&2M&4W&5\&6n&7|&9�&:�&;�&=�&A�&B�&D�&E�&F�&GIJ0KBLLNVOY__kjlxn{o�p�q�r�t�u�v�wxy)z2{5|D~Nl�~�����������������������\�f�s�������������������������'�>�D�O�{���������������
        !          8978: ��/�<�F�W�d�n�������&�&�&�      &�
        !          8979: &�&�
&�&�&�&&&/&H&R &[.&a1&l3&x4&�5&�6&�8&�9&�<&�C&�D&�F&H&I&N&Q&'S&0T&<X&BZ&M[&]_&cb&nc&�d&�h&�k&�l&�p&�r&�u&�v&     w&3     x&9     |&?     &J     �&P     �&d     �&p     �&{     �&�     �&�     �&�     �&�     �&�     �&�     �&�     �&
        !          8980: �&)
        !          8981: �&/
        !          8982: �&5
        !          8983: �&@
        !          8984: �&E
        !          8985: �&R
        !          8986: �&`
        !          8987: �&j
        !          8988: �&p
        !          8989: �&v
        !          8990: �&�
        !          8991: �&�
        !          8992: �&�
        !          8993: �&�
        !          8994: �&�
        !          8995: �&�
        !          8996: �&�
        !          8997: �&�
        !          8998: �&�
        !          8999: �&�&�&�&�&"�&'�&-�&F�&P�&Z�&h�&��&��&��&��&��&��&��&��&��&��&��&��&&�&�&
�&�&�&*�&3�&M�&S�&^�&n�&t�&&����       �
        !          9000: �
        !          9001: SLIBCE.LIB�&&&&&�M&&�5&&*�&&z2[&&&��&&&+o&�2�&&4'&�        &&[&�     �&&t&�
        !          9002: �&&&�&a&&�&}&&�&�U&&     �&       �&&
        !          9003: �&
        !          9004: �
&&&&�G&&&&C
&&
/&&
Q
&&F&&_
&&[&&k
&&q&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&�

&&!&�
'&&9&&&R&;&&i&G&&�&c+&&�&�&&�&�&&�&�&& �& �&&!&!�&&"'&"�&&#<&#5&&$X&$G&&%o&%V&&&�&&h&&'�&'x&&(�&(�%&&)�&)�D&&*�&*�&&+
&+&&,#&,&&-:&-&&.P&.;&&/e&/J5&&0~&0
&&1�&1��&&2�&2(&&3�&36&&4�&4E&&5�&5S&&6        &6_&&7$&7m&&8;&8~&&9S&9�&&:k&:�&&;�&;�#&&<�&<�&&=�&=�&&>�&>�&&?�&?
        !          9005: &&@&&@&&A&A*&&B.&B9
&&CH&CF&&Da&DX&&E|&Ef&&F�&Fu
&&G�&G�V&&H�&H�&&I�&I�&&J�&J,&&K&&K.N&&L&L|&&M.&M�&&NH&N�&&Od&O�&&P�&P�&^6NB00�<�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&./special/   775  20115     11           0  4552137242   5636 ./special/dupreq.c   664  20115     11        2661  4552130546   7374 /*   @(#)dupreq.c    1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9006: /*
        !          9007:  *  check for lost reply on non-idempotent resuests
        !          9008:  */
        !          9009: #include <tests.h>
        !          9010: 
        !          9011: void main(int argc, char *argv[]);
        !          9012: 
        !          9013: void
        !          9014: main(argc, argv)
        !          9015:        int argc;
        !          9016:        char *argv[];
        !          9017: {
        !          9018:        int count, i;
        !          9019:        int fd;
        !          9020:        int cfail, lfail, u1fail, u2fail;
        !          9021:        char name1[256];
        !          9022:        char name2[256];
        !          9023: 
        !          9024:        if (argc != 3) {
        !          9025:                fprintf(stderr, "usage: %s count name\n", argv[0]);
        !          9026:                exit(1);
        !          9027:        }
        !          9028:        setbuf(stdout, NULL);
        !          9029:        count = atoi(argv[1]);
        !          9030:        sprintf(name1, "%s1", argv[2]);
        !          9031:        sprintf(name2, "%s2", argv[2]);
        !          9032:        cfail = lfail = u1fail = u2fail = 0;
        !          9033:        for (i=count; i; i--) {
        !          9034:                if ((fd = creat(name1, CHMOD_YES)) < 0) {
        !          9035:                        cfail++;
        !          9036:                        fprintf(stderr, "create ");
        !          9037:                        perror(name1);
        !          9038:                        continue;
        !          9039:                }
        !          9040:                close(fd);
        !          9041:                #ifndef DOS
        !          9042:                if (link(name1, name2) < 0) {
        !          9043:                        lfail++;
        !          9044:                        fprintf(stderr, "link %s %s", name1, name2);
        !          9045:                        perror(" ");
        !          9046:                }
        !          9047:                if (unlink(name2) < 0) {
        !          9048:                        u1fail++;
        !          9049:                        fprintf(stderr, "unlink %s", name2);
        !          9050:                        perror(" ");
        !          9051:                }
        !          9052:                #endif  /* DOS */
        !          9053:                if (unlink(name1) < 0) {
        !          9054:                        u2fail++;
        !          9055:                        fprintf(stderr, "unlink %s", name1);
        !          9056:                        perror(" ");
        !          9057:                }
        !          9058:        }
        !          9059:        fprintf(stdout, "%d tries\n", count);
        !          9060:        if (cfail) {
        !          9061:                fprintf(stdout, "%d bad create\n", cfail);
        !          9062:        }
        !          9063:        #ifndef DOS
        !          9064:        if (lfail) {
        !          9065:                fprintf(stdout, "%d bad link\n", lfail);
        !          9066:        }
        !          9067:        if (u1fail) {
        !          9068:                fprintf(stdout, "%d bad unlink 1\n", u1fail);
        !          9069:        }
        !          9070:        #endif
        !          9071:        if (u2fail) {
        !          9072:                fprintf(stdout, "%d bad unlink 2\n", u2fail);
        !          9073:        }
        !          9074:        exit(0);
        !          9075: }
        !          9076: �&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&./special/excltest.c   664  20115     11        1265  4552130547   7727 /*     @(#)excltest.c  1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9077: /*
        !          9078:  * test exclusive create
        !          9079:  */
        !          9080: 
        !          9081: #include <tests.h>
        !          9082: void main(int argc, char *argv[]);
        !          9083: 
        !          9084: void
        !          9085: main(argc, argv)
        !          9086:        int argc;
        !          9087:        char *argv[];
        !          9088: {
        !          9089:        if (argc > 2) {
        !          9090:                fprintf(stderr, "usage: %s [count]\n", argv[0]);
        !          9091:                exit(1);
        !          9092:        }
        !          9093:        if (argc == 2) {
        !          9094:                int count = atoi(argv[1]);
        !          9095:                for (; count; count--) {
        !          9096:                        open("exctest.fil", O_CREAT | O_EXCL, CHMOD_YES);
        !          9097:                }
        !          9098:                exit(0);
        !          9099:        }
        !          9100:        unlink("exctest.fil");
        !          9101:        if (open("exctest.fil", O_CREAT | O_EXCL, CHMOD_YES) < 0) {
        !          9102:                perror("exctest.fil");
        !          9103:                exit(1);
        !          9104:        }
        !          9105:        if (open("exctest.fil", O_CREAT | O_EXCL, CHMOD_YES) < 0) {
        !          9106:                perror("exctest.fil 2");
        !          9107:                exit(0);
        !          9108:        }
        !          9109:        exit(0);
        !          9110: }
        !          9111: 
        !          9112:                        perror(name1);
        !          9113:                        continue;
        !          9114:                }
        !          9115:                close(fd);
        !          9116:                #ifndef DOS
        !          9117:                if (link(name1, name2) < 0) {
        !          9118:                        lfail++;
        !          9119:                        fprintf(stderr, "link %s %s", name1, name2);
        !          9120:                        perror(" ");
        !          9121:                }
        !          9122:                if (unlink(name2) < 0) {
        !          9123:                        u1fail++;
        !          9124:                        fprintf(stderr, "unlink %s", name2);
        !          9125:                        perror(" ");
        !          9126:                }
        !          9127:                #endif  /* DOS */
        !          9128:                if (unlink(name1) ./special/fstat.c   664  20115     11        1075  4552130547   7214 /*    @(#)fstat.c     1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9129: /*
        !          9130:  * test statfs for file count
        !          9131:  */
        !          9132: #include <tests.h>
        !          9133: 
        !          9134: #ifdef ANSI
        !          9135: void
        !          9136: main(int argc, char *argv[]);
        !          9137: #endif
        !          9138: 
        !          9139: void
        !          9140: main(argc, argv)
        !          9141:        int argc;
        !          9142:        char *argv[];
        !          9143: {
        !          9144:        struct statfs fs;
        !          9145:        char *name = ".";
        !          9146: 
        !          9147:        if (argc > 2) {
        !          9148:                fprintf(stderr, "usage: %s [path]\n", argv[0]);
        !          9149:                exit(1);
        !          9150:        }
        !          9151:        if (argc == 2) {
        !          9152:                name = argv[1];
        !          9153:        }
        !          9154:        fs.f_files = 0;
        !          9155:        fs.f_ffree = 0;
        !          9156:        if (statfs(name, &fs) < 0) {
        !          9157:                perror(argv[1]);
        !          9158:                exit(1);
        !          9159:        }
        !          9160:        printf("inodes %d free %d\n", fs.f_files, fs.f_ffree);
        !          9161:        exit(0);
        !          9162: }
        !          9163: if (open("exctest.fil", O_CREAT | O_EXCL, CHMOD_YES) < 0) {
        !          9164:                perror("exctest.fil 2");
        !          9165:                exit(0);
        !          9166:        }
        !          9167:        exit(0);
        !          9168: }
        !          9169: 
        !          9170:                        perror(name1);
        !          9171:                        continue;
        !          9172:                }
        !          9173:                close(fd);
        !          9174:                #ifndef DOS
        !          9175:                if (link(name1, name2) < 0) {
        !          9176:                        lfail++;
        !          9177:                        fprintf(stderr, "link %s %s", name1, name2);
        !          9178:                        perror(" ");
        !          9179:                }
        !          9180:                if (unlink(name2) < 0) {
        !          9181:                        u1fail++;
        !          9182:                        fprintf(stderr, "unlink %s", name2);
        !          9183:                        perror(" ");
        !          9184:                }
        !          9185:                #endif  /* DOS */
        !          9186:                if (unlink(name1) ./special/holey.c   664  20115     11        7745  4552130550   7217 /*    @(#)holey.c     1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9187: /*
        !          9188:  * test read/write of holey files
        !          9189:  */
        !          9190: 
        !          9191: #include <tests.h>
        !          9192: 
        !          9193: #define BUFSZ   8192
        !          9194: #define FILESZ 70000L
        !          9195: #define DATASZ 4321
        !          9196: #define HOLESZ 9012
        !          9197: #define FILENM  "holefile"
        !          9198: int Debug = 0;
        !          9199: char *Prog;
        !          9200: 
        !          9201: #ifdef ANSI
        !          9202: void main(int argc, char *argv[]);
        !          9203: #endif
        !          9204: 
        !          9205: void
        !          9206: main(argc, argv)
        !          9207: int argc;
        !          9208: char *argv[];
        !          9209: {
        !          9210:        int fd, i, tot, ct, bytes, ret;
        !          9211:        long sz;
        !          9212:        char *filenm = FILENM;
        !          9213:        char buf[BUFSZ];
        !          9214:        extern int errno;
        !          9215:        long filesz = FILESZ;
        !          9216:        int datasz = DATASZ;
        !          9217:        int holesz = HOLESZ;
        !          9218: 
        !          9219:        Prog = argv[0];
        !          9220:        if (argc > 1 && !strcmp(argv[1], "-d")) {
        !          9221:                Debug = 1;
        !          9222:                argc--;
        !          9223:                argv++;
        !          9224:        }
        !          9225:        if (argc > 5 || (argc > 1 && !strcmp(argv[1], "-h"))) {
        !          9226:                fprintf(stderr, "\
        !          9227: usage: %s [filename filesize datasize holesize]\n", Prog);
        !          9228:                exit(1);
        !          9229:        }
        !          9230:        if (argc > 1 && strcmp(argv[1], "-"))
        !          9231:                filenm =       argv[1];
        !          9232:        if (argc > 2 && strcmp(argv[2], "-"))
        !          9233:                filesz =  atol(argv[2]);
        !          9234:        if (argc > 3 && strcmp(argv[3], "-"))
        !          9235:                datasz =  atoi(argv[3]);
        !          9236:        if (argc > 4 && strcmp(argv[4], "-"))
        !          9237:                holesz =  atoi(argv[4]);
        !          9238: 
        !          9239:        umask(0);
        !          9240:        if (datasz > BUFSZ) {
        !          9241:                fprintf(stderr, "%s: datasize (%d) greater than maximum (%d)\n",
        !          9242:                        Prog, datasz, BUFSZ);
        !          9243:                exit(1);
        !          9244:        }
        !          9245:        if ((fd = creat(filenm, CHMOD_YES)) < 0) {
        !          9246:                sprintf(buf, "%s: creat of %s", Prog, filenm);
        !          9247:                perror(buf);
        !          9248:                exit(1);
        !          9249:        }
        !          9250:        if (close(fd)) {
        !          9251:                sprintf(buf, "%s: close of %s after creat", Prog, filenm);
        !          9252:                perror(buf);
        !          9253:                exit(1);
        !          9254:        }
        !          9255: #ifdef DOS
        !          9256:        if ((fd = open(filenm, O_RDWR)) < 0) {
        !          9257: #else
        !          9258:        if ((fd = open(filenm, 2)) < 0) {
        !          9259: #endif
        !          9260:                sprintf(buf, "%s: open of %s", Prog, filenm);
        !          9261:                perror(buf);
        !          9262:                exit(1);
        !          9263:        }
        !          9264:        for (i=0; i < BUFSZ / sizeof(int); i++)
        !          9265:                ((int *)buf)[i] = i;
        !          9266: 
        !          9267:        for (sz = filesz; sz; ) {
        !          9268:                if (datasz || sz) {
        !          9269:                        bytes = (int) MIN(sz, (long) datasz);
        !          9270:                        if (bytes == 0)
        !          9271:                                bytes = 1;
        !          9272:                        if ((ret = write(fd, buf, bytes)) != bytes) {
        !          9273:                                fprintf(stderr, "write ret %d (expect %d)\n",
        !          9274:                                        ret, bytes);
        !          9275:                                if (errno) perror("write");
        !          9276:                                exit(1);
        !          9277:                        }
        !          9278:                        sz -= bytes;
        !          9279:                }
        !          9280:                if (sz && holesz) {
        !          9281:                        bytes = (int) MIN(sz - 1, (long) holesz);
        !          9282:                        if (lseek(fd, (long) bytes, SEEK_CUR) == -1) {
        !          9283:                                perror("lseek (write)");
        !          9284:                                exit(1);
        !          9285:                        }
        !          9286:                        sz -= bytes;
        !          9287:                }
        !          9288:        }
        !          9289:        if (lseek(fd, 0L, SEEK_SET) == -1) {
        !          9290:                perror("lseek (rewind)");
        !          9291:                exit(1);
        !          9292:        }
        !          9293: 
        !          9294:        for (sz = filesz; sz; ) {
        !          9295:                if (datasz || sz == 1) {
        !          9296:                        bytes = (int) MIN(sz, (long) datasz);
        !          9297:                        if (bytes == 0)
        !          9298:                                bytes = 1;
        !          9299:                        sz -= bytes;
        !          9300:                        for ( ; bytes; bytes -= ret) {
        !          9301:                                if (Debug) 
        !          9302:                                        fprintf(stderr, "\
        !          9303: --data read: offset %ld, sz = %ld, bytes = %d\n", filesz - sz - bytes, sz, bytes);
        !          9304:                                if ((ret = read(fd, buf, bytes)) <= 0) {
        !          9305:                                        fprintf(stderr, "\
        !          9306: read (data) offset %ld, sz = %ld, bytes = %d (ret = %d), datasz = %d\n",
        !          9307: filesz - sz - bytes, sz, bytes, ret, datasz);
        !          9308:                                        if (ret < 0)
        !          9309:                                                perror("read");
        !          9310:                                        exit(1);
        !          9311:                                }
        !          9312:                                ct = bytes - (bytes % sizeof(int));
        !          9313:                                if (Debug)
        !          9314:                                        fprintf(stderr, "\
        !          9315:   ret = %d, ct = %d\n", ret, ct);
        !          9316:                                for (i=0; i < ct / sizeof(int); i++) {
        !          9317:                                        if (((int *)buf)[i] != i) {
        !          9318:                                                fprintf(stderr, "\
        !          9319: bad data in %s\n", filenm);
        !          9320:                                                exit(1);
        !          9321:                                        }
        !          9322:                                }
        !          9323:                        }
        !          9324:                }
        !          9325:                if (sz && holesz) {
        !          9326:                        tot = (int) MIN((long) holesz, sz - 1);
        !          9327:                        sz -= tot;
        !          9328:                        for (ct = 0; tot; tot -= ret, ct += ret) {
        !          9329:                                bytes = MIN(tot, BUFSZ);
        !          9330:                                if (Debug)
        !          9331:                                        fprintf(stderr, "\
        !          9332: ++hole read: offset %ld, sz = %ld, tot = %d, bytes = %d\n",
        !          9333:                                        filesz - sz - tot, sz, tot, bytes);
        !          9334:                                if ((ret = read(fd, buf, bytes)) <= 0) {
        !          9335:                                        fprintf(stderr, "\
        !          9336: read (hole) offset %ld, sz = %ld, bytes = %d (ret %d), holesz = %d\n",
        !          9337: filesz - sz - tot, sz, bytes, ret, holesz);
        !          9338:                                        if (ret < 0)
        !          9339:                                                perror("read");
        !          9340:                                        exit(1);
        !          9341:                                }
        !          9342:                                if (Debug)
        !          9343:                                        fprintf(stderr, "  ret = %d\n", ret);
        !          9344:                                for (i = 0; i < ret; i++) {
        !          9345:                                        if (buf[i] != '\0') {
        !          9346:                                                fprintf(stderr, "\
        !          9347: non-zero data read back from hole (offset %ld)\n", filesz - sz + ct + i);
        !          9348:                                                exit(1);
        !          9349:                                        }
        !          9350:                                }
        !          9351:                        }
        !          9352:                }
        !          9353:        }
        !          9354:        printf("\nHoley file test ok\n");
        !          9355:        exit(0);
        !          9356: }
        !          9357: ����������������&./special/negseek.c   664  20115     11        1315  4552130552   7505 /* @(#)negseek.c   1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9358: /*
        !          9359:  * test seek to negative offset
        !          9360:  */
        !          9361: 
        !          9362: #include <tests.h>
        !          9363: 
        !          9364: #ifdef ANSI
        !          9365: void main(int argc, char *argv[]);
        !          9366: #endif
        !          9367: 
        !          9368: void
        !          9369: main(argc, argv)
        !          9370:        int argc;
        !          9371:        char *argv[];
        !          9372: {
        !          9373:        int fd;
        !          9374:        long i;
        !          9375:        char buf[8192];
        !          9376:        extern int errno;
        !          9377: 
        !          9378:        if (argc != 2) {
        !          9379:                fprintf(stderr, "usage: negseek filename\n");
        !          9380:                exit(1);
        !          9381:        }
        !          9382:        fd = open(argv[1], O_CREAT|O_RDONLY, CHMOD_YES);
        !          9383:        if (fd < 0) {
        !          9384:                perror(argv[1]);
        !          9385:                exit(1);
        !          9386:        }
        !          9387: 
        !          9388:        for ( i = 0L; i>-10240L ;i -= 1024L ) {
        !          9389:                if (lseek(fd, i, SEEK_SET) < 0) {
        !          9390:                        perror("lseek");
        !          9391:                        exit(1);
        !          9392:                }
        !          9393:                if (read(fd, buf, sizeof buf) < 0) {
        !          9394:                        perror("read");
        !          9395:                        exit(0);
        !          9396:                }
        !          9397:        }
        !          9398:        unlink(argv[1]);
        !          9399:        exit(0);
        !          9400: }
        !          9401: ;
        !          9402:        }
        !          9403:        if ((fd = creat(filenm, CHMOD_YES)) < 0) {
        !          9404:                sprintf(buf, "%s: creat of %s", Prog, filenm);
        !          9405:                perror(buf);
        !          9406:                exit(1);
        !          9407:        }
        !          9408:        if (close(fd)) {
        !          9409:                sprintf(buf, "%s: close of %s after creat", Prog, filenm);
        !          9410:                perror(buf);
        !          9411:                exit(1);
        !          9412:        }
        !          9413: #ifdef DOS
        !          9414:        if ((fd = open(filenm, O_RDWR)) < 0) {
        !          9415: #else
        !          9416: ./special/nstat.c   664  20115     11        1743  4552130553   7223 /*     @(#)nstat.c     1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9417: /*
        !          9418:  * Stat a file n times
        !          9419:  */
        !          9420: 
        !          9421: int stats = 0;
        !          9422: int readdirs = 0;
        !          9423: 
        !          9424: #include <tests.h>
        !          9425: 
        !          9426: #ifdef ANSI
        !          9427: void main(int argc, char *argv[]);
        !          9428: #endif
        !          9429: 
        !          9430: void
        !          9431: main(argc, argv)
        !          9432:        int argc;
        !          9433:        char *argv[];
        !          9434: {
        !          9435:        struct timeval stim, etim;
        !          9436:        float elapsed;
        !          9437:        register int count;
        !          9438:        register int i;
        !          9439:        struct stat statb;
        !          9440: 
        !          9441:        if (argc != 2) {
        !          9442:                fprintf(stderr, "usage: %s count\n", argv[0]);
        !          9443:                exit(1);
        !          9444:        }
        !          9445: 
        !          9446:        count = atoi(argv[1]);
        !          9447:        gettimeofday(&stim, 0);
        !          9448:        for (i=0; i<count; i++) {
        !          9449:                stat(argv[0], &statb);
        !          9450:                stats++;
        !          9451:        }
        !          9452:        gettimeofday(&etim, 0);
        !          9453:        elapsed = (float) (etim.tv_sec - stim.tv_sec) +
        !          9454:            (float)(etim.tv_usec - stim.tv_usec) / 1000000.0;
        !          9455:        if (elapsed == (float) 0.0) {
        !          9456:                fprintf(stdout, "%d calls 0.0 seconds\n", count);
        !          9457:        } else {
        !          9458:                fprintf(stdout,
        !          9459:                    "%d calls %.2f seconds %.2f calls/sec %.2f msec/call\n",
        !          9460:                    count, elapsed, (float)count / elapsed,
        !          9461:                    1000.0 * elapsed / (float)count);
        !          9462:        }
        !          9463:        exit(0);
        !          9464: }
        !          9465: enm, O_RDWR)) < 0) {
        !          9466: #else
        !          9467: ./special/op-chmod.c   664  20115     11        4507  4552130553   7601 /*     @(#)open-chmod.c        1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9468: /*
        !          9469:  *  tests operation on open file which has been chmod'd to 0.
        !          9470:  *  steps taken:
        !          9471:  *     1.  create file
        !          9472:  *     2.  open for read/write
        !          9473:  *     3.  chmod 0
        !          9474:  *     4.  write data
        !          9475:  *     5.  rewind
        !          9476:  *     6.  read data back
        !          9477:  */
        !          9478: 
        !          9479: #include <tests.h>
        !          9480: 
        !          9481: extern errno;
        !          9482: #define TBUFSIZ 100
        !          9483: char wbuf[TBUFSIZ], rbuf[TBUFSIZ];
        !          9484: char buf[BUFSIZ];
        !          9485: #define TMSG "This is a test message written to the chmod'd file\n"
        !          9486: 
        !          9487: #ifdef ANSI
        !          9488: void xxit(char *s);
        !          9489: void main(void);
        !          9490: #endif
        !          9491: 
        !          9492: void
        !          9493: main()
        !          9494: {
        !          9495:        int fd, ret;
        !          9496:        char *tname = "nfstXXXX";
        !          9497:        int errcount = 0;
        !          9498: 
        !          9499:        setbuf(stdout, NULL);
        !          9500:        mktemp(tname);
        !          9501: #ifdef O_RDWR
        !          9502:        if ((fd = open(tname, O_CREAT|O_TRUNC|O_RDWR, CHMOD_YES)) < 0) {
        !          9503:                fprintf(stderr, "can't create %s: ", tname);
        !          9504:                xxit("open");
        !          9505:        }
        !          9506: #else
        !          9507:        if ((fd = creat(tname, CHMOD_YES)) < 0) {
        !          9508:                fprintf(stderr, "can't create %s: ", tname);
        !          9509:                xxit("creat");
        !          9510:        }
        !          9511:        close(fd);
        !          9512:        if ((fd = open(tname, 2)) < 0) {
        !          9513:                fprintf(stderr, "can't reopen %s: ", tname);
        !          9514:                unlink(tname);
        !          9515:                xxit("open");
        !          9516:        }
        !          9517: #endif /* O_RDWR */
        !          9518:        printf("testfile before chmod:\n  ");
        !          9519:        sprintf(buf, "attrib %s", tname);
        !          9520:        system(buf);
        !          9521:        ret = chmod(tname, CHMOD_NO);
        !          9522:        printf("%s open; chmod ret = %d\n", tname, ret);
        !          9523:        if (ret)
        !          9524:                xxit(" chmod");
        !          9525:        printf("testfile after chmod:\n  ");
        !          9526:        system(buf);
        !          9527:        strcpy(wbuf, TMSG);
        !          9528:        if ((ret = write(fd, wbuf, TBUFSIZ)) != TBUFSIZ) {
        !          9529:                fprintf(stderr, "write ret %d; expected %d\n", ret, TBUFSIZ);
        !          9530:                if (ret < 0)
        !          9531:                        perror(" write");
        !          9532:                exit(1);
        !          9533:        }
        !          9534:        if ((ret = (int) lseek(fd, 0L, SEEK_SET)) != 0) {
        !          9535:                fprintf(stderr, "lseek ret %d; expected 0\n", ret);
        !          9536:                if (ret < 0)
        !          9537:                        perror(" lseek");
        !          9538:                exit(1);
        !          9539:        }
        !          9540:        if ((ret = read(fd, rbuf, TBUFSIZ)) != TBUFSIZ) {
        !          9541:                fprintf(stderr, "read ret %d; expected %d\n", ret, TBUFSIZ);
        !          9542:                if (ret < 0)
        !          9543:                        perror(" read");
        !          9544:                exit(1);
        !          9545:        }
        !          9546:        if (strcmp(wbuf, rbuf) != NULL) {
        !          9547:                errcount++;
        !          9548:                printf("read data not same as written data\n");
        !          9549:                printf(" written: '%s'\n read:    '%s'\n", wbuf, rbuf);
        !          9550:        } else {
        !          9551:                printf("data compare ok\n");
        !          9552:        }
        !          9553: 
        !          9554:        printf("testfile after write/read:\n  ");
        !          9555:        system(buf);
        !          9556: 
        !          9557:        if (close(fd))
        !          9558:                xxit("error on close");
        !          9559: 
        !          9560:        if (unlink(tname) < 0) {
        !          9561:                fprintf(stderr, "can't unlink %s", tname);
        !          9562:                xxit(" ");
        !          9563:        }
        !          9564: 
        !          9565:        printf("test completed successfully.\n");
        !          9566:        exit(0);
        !          9567: }
        !          9568: 
        !          9569: void
        !          9570: xxit(s)
        !          9571: char *s;
        !          9572: {
        !          9573:        perror(s);
        !          9574:        exit(1);
        !          9575: }
        !          9576:  ((ret = write(fd, buf, bytes)) != bytes) {
        !          9577:                                fprintf(stderr, "write ret %d (expect %d)\n",
        !          9578:                                        ret, bytes);
        !          9579:                                if (errno) perror("write");
        !          9580:                                exit(1);
        !          9581:                        }
        !          9582:                        sz -= bytes;
        !          9583: ./special/rename.c   664  20115     11        1560  4552130555   7340 /*     @(#)rename.c    1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9584: /*
        !          9585:  * rename a file n times
        !          9586:  */
        !          9587: 
        !          9588: #include <tests.h>
        !          9589: 
        !          9590: #ifdef ANSI
        !          9591: void main(int argc, char *argv[]);
        !          9592: #endif
        !          9593: 
        !          9594: void
        !          9595: main(argc, argv)
        !          9596:        int argc;
        !          9597:        char *argv[];
        !          9598: {
        !          9599:        int count;
        !          9600:        int i;
        !          9601:        int fd;
        !          9602: 
        !          9603:        if (argc != 2) {
        !          9604:                fprintf(stderr, "usage: %s <count>\n", argv[0]);
        !          9605:                exit(1);
        !          9606:        }
        !          9607:        if ((fd = open("rename1", O_CREAT, CHMOD_YES)) < 0) {
        !          9608:                perror("rename1");
        !          9609:                exit(1);
        !          9610:        }
        !          9611:        close(fd);
        !          9612: 
        !          9613:        count = atoi(argv[1]);
        !          9614:        for (i=0; i<count; i++) {
        !          9615:                if (rename("rename1", "rename2") < 0) {
        !          9616:                        perror("rename rename1 to rename2");
        !          9617:                        fprintf(stderr, "%d of %d\n", i, count);
        !          9618:                        exit(1);
        !          9619:                }
        !          9620:                if (rename("rename2", "rename1") < 0) {
        !          9621:                        perror("rename rename2 to rename1");
        !          9622:                        fprintf(stderr, "%d of %d\n", i, count);
        !          9623:                        exit(1);
        !          9624:                }
        !          9625:        }
        !          9626: /* cleanup: */
        !          9627:        unlink("rename1");
        !          9628:        unlink("rename2");
        !          9629:        exit(0);
        !          9630: }
        !          9631: intf("read data not same as written data\n");
        !          9632:                printf(" written: '%s'\n read:    '%s'\n", wbuf, rbuf);
        !          9633:        } else {
        !          9634:                printf("data compare ok\n./special/stat.c   664  20115     11        3076  4552130557   7052 /*     @(#)stat.c      1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9635: /*
        !          9636:  * stat all of the files in a directory tree
        !          9637:  */
        !          9638: 
        !          9639: #include <tests.h>
        !          9640: 
        !          9641: int stats = 0;
        !          9642: int readdirs = 0;
        !          9643: 
        !          9644: 
        !          9645: #ifdef ANSI
        !          9646: void statit(char *name);
        !          9647: void main(int argc, char *argv[]);
        !          9648: #endif
        !          9649: 
        !          9650: void
        !          9651: main(argc, argv)
        !          9652:        int argc;
        !          9653:        char *argv[];
        !          9654: {
        !          9655:        struct timeval stim, etim;
        !          9656:        float elapsed;
        !          9657: 
        !          9658:        if (argc != 2) {
        !          9659:                fprintf(stderr, "usage: %s dir\n", argv[0]);
        !          9660:                exit(1);
        !          9661:        }
        !          9662: 
        !          9663:        gettimeofday(&stim, 0);
        !          9664:        statit(argv[1]);
        !          9665:        gettimeofday(&etim, 0);
        !          9666:        elapsed = (float) (etim.tv_sec - stim.tv_sec) +
        !          9667:            (float)(etim.tv_usec - stim.tv_usec) / 1000000.0;
        !          9668:        fprintf(stdout, "%d calls in %f seconds (%f calls/sec)\n",
        !          9669:            stats, elapsed, (float)stats / elapsed);
        !          9670:        exit(0);
        !          9671: }
        !          9672: 
        !          9673: void
        !          9674: statit(name)
        !          9675:        char *name;
        !          9676: {
        !          9677:        struct stat statb;
        !          9678: #ifdef DOS
        !          9679:        struct dirent *di;
        !          9680: #else
        !          9681:        struct direct *di;
        !          9682: #endif
        !          9683:        DIR *dirp;
        !          9684:        long loc;
        !          9685: 
        !          9686:        if (lstat(name, &statb) < 0) {
        !          9687:                perror(name);
        !          9688:        }
        !          9689:        if ((statb.st_mode & S_IFDIR) != S_IFDIR) {
        !          9690:                return;
        !          9691:        }
        !          9692: 
        !          9693:        if ((dirp = opendir(name)) == NULL) {
        !          9694:                perror(name);
        !          9695:                return;
        !          9696:        }
        !          9697:        stats++;
        !          9698:        chdir(name);
        !          9699: 
        !          9700:        while ((di = readdir(dirp)) != NULL) {
        !          9701:                if (strcmp(di->d_name, ".") == 0 || strcmp(di->d_name, "..") == 0)
        !          9702:                    continue;
        !          9703:                if (lstat(di->d_name, &statb) < 0) {
        !          9704:                        perror(di->d_name);
        !          9705:                }
        !          9706:                stats++;
        !          9707:                if ((statb.st_mode & S_IFDIR) == S_IFDIR) {
        !          9708:                        loc = telldir(dirp);
        !          9709:                        closedir(dirp);
        !          9710:                        statit(di->d_name);
        !          9711:                        if ((dirp = opendir(".")) == NULL) {
        !          9712:                                perror(name);
        !          9713:                                chdir("..");
        !          9714:                                return;
        !          9715:                        }
        !          9716:                        seekdir(dirp, loc);
        !          9717:                }
        !          9718:        }
        !          9719:        chdir("..");
        !          9720:        return;
        !          9721: }
        !          9722: ) holesz);
        !          9723:                        if (lseek(fd, (long) bytes, SEEK_CUR) == -1) {
        !          9724:                                perror("lseek (write)");
        !          9725:                                exit(1);
        !          9726:                        }
        !          9727:                        sz -= bytes;
        !          9728:                }
        !          9729:        }
        !          9730:        if (lseek(fd, 0L, SEEK_SET) == -1) {
        !          9731:                perror("lseek (rewind)");
        !          9732:                exit(1);
        !          9733:        }
        !          9734: 
        !          9735:        for (sz = filesz; sz; ) {
        !          9736:                if (datasz || sz == 1) {
        !          9737:                        bytes = (int) MIN(sz, (long) datasz);
        !          9738:                        if (bytes == 0)
        !          9739:                                bytes = 1;
        !          9740:                        sz -= bytes;
        !          9741:                        for ( ; bytes; bytes -= ret) {
        !          9742:                                if (Debug) 
        !          9743:                                        fprintf(stderr, "./special/stat2.c   664  20115     11        2426  4552130557   7132 /*     @(#)stat2.c     1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9744: /*
        !          9745:  * create a bunch of files and stat them repeatedly
        !          9746:  */
        !          9747: 
        !          9748: #include <tests.h>
        !          9749: 
        !          9750: int stats = 0;
        !          9751: int readdirs = 0;
        !          9752: 
        !          9753: #ifdef ANSI
        !          9754: void main(int argc, char *argv[]);
        !          9755: #endif
        !          9756: 
        !          9757: void
        !          9758: main(argc, argv)
        !          9759:        int argc;
        !          9760:        char *argv[];
        !          9761: {
        !          9762:        struct timeval stim, etim;
        !          9763:        float elapsed;
        !          9764:        int files, count;
        !          9765:        register int i, j;
        !          9766:        char name[256];
        !          9767:        struct stat statb;
        !          9768: 
        !          9769:        if (argc != 4) {
        !          9770:                fprintf(stderr, "usage: %s dir files count\n", argv[0]);
        !          9771:                exit(1);
        !          9772:        }
        !          9773: 
        !          9774: #ifdef DOS
        !          9775:        if (mkdir(argv[1]) < 0) {
        !          9776: #else
        !          9777:        if (mkdir(argv[1], CHMOD_YES) < 0) {
        !          9778: #endif
        !          9779:                perror(argv[1]);
        !          9780:        }
        !          9781:        unix_chdir(argv[1]);
        !          9782:        files = atoi(argv[2]);
        !          9783:        count = atoi(argv[3]);
        !          9784:        for (i=0; i<files; i++) {
        !          9785:                sprintf(name, "%d", i);
        !          9786:                close(creat(name, CHMOD_YES));
        !          9787:        }
        !          9788: 
        !          9789:        gettimeofday(&stim, 0);
        !          9790:        for (i=0; i<count; i++) {
        !          9791:                for (j=0; j<files; j++) {
        !          9792:                        sprintf(name, "%d", i);
        !          9793:                        stat(name, &statb);
        !          9794:                        stats++;
        !          9795:                }
        !          9796:        }
        !          9797:        gettimeofday(&etim, 0);
        !          9798:        elapsed = (float) (etim.tv_sec - stim.tv_sec) +
        !          9799:            (float)(etim.tv_usec - stim.tv_usec) / 1000000.0;
        !          9800:        if (elapsed == (float) 0.0)
        !          9801:                fprintf(stdout, "%d calls in 0 seconds\n", stats);
        !          9802:        else
        !          9803:                fprintf(stdout, "%d calls in %f seconds (%f calls/sec)\n",
        !          9804:                        stats, elapsed, (float)stats / elapsed);
        !          9805:        exit(0);
        !          9806: }
        !          9807: );
        !          9808:                }
        !          9809:                stats++;
        !          9810:                if ((statb.st_mode & S_IFDIR) == S_IFDIR) {
        !          9811:                        loc = telldir(dirp);
        !          9812:                        closedir(dirp);
        !          9813:                        statit(di->d_name);
        !          9814:                        if ((dirp = opendir(".")) == NULL) {
        !          9815:                                perror(name);
        !          9816:                                chdir("..");
        !          9817:                                return;
        !          9818:                        }
        !          9819: ./special/touchn.c   664  20115     11         672  4552130560   7350 /*     @(#)touchn.c    1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9820: /*
        !          9821:  *  touch n files
        !          9822:  */
        !          9823: 
        !          9824: #include <tests.h>
        !          9825: 
        !          9826: #ifdef ANSI
        !          9827: void main(int argc, char *argv[]);
        !          9828: #endif
        !          9829: 
        !          9830: void
        !          9831: main(argc,argv)
        !          9832: int argc;
        !          9833: char **argv;
        !          9834: {
        !          9835:        int n;
        !          9836:        char buf[1024];
        !          9837: 
        !          9838:        if (argc != 2) {
        !          9839:                printf("usage: %s count\n", argv[0]);
        !          9840:                exit(1);
        !          9841:        }
        !          9842:        n = atoi(argv[1]);
        !          9843:        for (; n; n--) {
        !          9844:                sprintf(buf, "name%d", n);
        !          9845:                close(creat(buf, CHMOD_YES));
        !          9846:        }
        !          9847:        exit(0);
        !          9848: }
        !          9849: ntf(stderr, "usage: %s dir files count\n", argv[0]);
        !          9850:                exit(1);
        !          9851:        }
        !          9852: ./special/makefile.mak   664  20115     11        4376  4552130551  10200 #
        !          9853: #       @(#)Makefile   derived from 1.4 89/01/13 NFS Rev 2 Testsuite
        !          9854: #
        !          9855: # to make tests, use 'make'
        !          9856: # to copy tests to another directory, use 'make copy DESTDIR=dir'
        !          9857: # to copy source to another directory, use 'make dist DESTDIR=dir'
        !          9858: 
        !          9859: CC = cl
        !          9860: TESTS = dupreq$(EXE) excltest$(EXE) fstat$(EXE) \
        !          9861:        holey$(EXE) negseek$(EXE) nstat$(EXE) \
        !          9862:        op-chmod$(EXE) op-unlk$(EXE) rename$(EXE) \
        !          9863:        stat$(EXE) stat2$(EXE) touchn$(EXE)
        !          9864: 
        !          9865: 
        !          9866: DESTDIR = /no/such/path
        !          9867: #  Define NFS3_2 for NFS 3.2 compatibility - Comment out if not NFS 3.2
        !          9868: #COMPAT = -DNFS3_2
        !          9869: DEBUG = /Zi /Od
        !          9870: CFLAGS = -I..\basic $(COMPAT) $(DEBUG) -DDOS -DANSI -F 4000 /Fm /W3 /Ze
        !          9871: LINKFLAGS = /link /NOE
        !          9872: OBJ = .obj     # .o for Unix
        !          9873: EXE = .exe     # null for Unix
        !          9874: COMMONOBJ = d:\msc\5.1\lib\binmode.obj
        !          9875: 
        !          9876: all: origtests
        !          9877:        
        !          9878: origtests: $(TESTS)
        !          9879: 
        !          9880: dupreq.exe: $*.c $(COMMONOBJ)
        !          9881:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9882: 
        !          9883: excltest.exe: $*.c $(COMMONOBJ)
        !          9884:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9885: 
        !          9886: holey.exe: $*.c $(COMMONOBJ)
        !          9887:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9888: 
        !          9889: negseek.exe: $*.c $(COMMONOBJ)
        !          9890:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9891: 
        !          9892: # break following into two lines so command line not too long
        !          9893: nstat.exe: $*.c $(COMMONOBJ) ..\basic\subr.obj
        !          9894:        $(CC) $(CFLAGS) -c $*.c
        !          9895:        $(CC) $*$(OBJ) ..\basic\subr.obj $(COMMONOBJ) $(LINKFLAGS)
        !          9896: 
        !          9897: op-chmod.exe: $*.c $(COMMONOBJ)
        !          9898:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9899: 
        !          9900: op-unlk.exe: $*.c $(COMMONOBJ)
        !          9901:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9902: 
        !          9903: rename.exe: $*.c $(COMMONOBJ)
        !          9904:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9905: 
        !          9906: stat.exe: $*.c $(COMMONOBJ) ..\basic\subr.obj
        !          9907:        $(CC) $(CFLAGS) -c $*.c
        !          9908:        $(CC) $*$(OBJ) ..\basic\subr.obj $(COMMONOBJ) $(LINKFLAGS)
        !          9909: 
        !          9910: fstat.exe: $*.c $(COMMONOBJ) ..\basic\subr.obj
        !          9911:        $(CC) $(CFLAGS) -c $*.c
        !          9912:        $(CC) $*$(OBJ) ..\basic\subr.obj $(COMMONOBJ) $(LINKFLAGS)
        !          9913: 
        !          9914: stat2.exe: $*.c $(COMMONOBJ) ..\basic\subr.obj
        !          9915:        $(CC) $(CFLAGS) -c $*.c
        !          9916:        $(CC) $*$(OBJ) ..\basic\subr.obj $(COMMONOBJ) $(LINKFLAGS)
        !          9917: 
        !          9918: touchn.exe: $*.c $(COMMONOBJ)
        !          9919:        $(CC) $(CFLAGS) -o $*$(EXE) $*.c $(COMMONOBJ) $(LINKFLAGS)
        !          9920: 
        !          9921: clean:
        !          9922:        -rm *$(OBJ) $(TESTS)
        !          9923: 
        !          9924: copy: $(TESTS)
        !          9925:        cp runtests $(TESTS) $(DESTDIR)
        !          9926: 
        !          9927: dist:
        !          9928:        cp runtests Makefile *.c *.h $(DESTDIR)
        !          9929: z, bytes, ret, datasz);
        !          9930:                                        if (ret < 0)
        !          9931:                                                perror("read");
        !          9932:                                        exit(1);
        !          9933:                                }
        !          9934:                                ct = bytes - (bytes % sizeof(int));
        !          9935:                                if (Debug)
        !          9936:                                        fprintf(stderr, "\
        !          9937:   ret = %d, ct = %d\n", ret, ct);
        !          9938:                                for (i=0; i < ct / sizeof(int); i++) {
        !          9939:                                        if ./special/op-unlk.c   664  20115     11        5211  4552130554   7452 /*   @(#)open-unlk.c 1.1 88/10/12 NFS Rev 2 Testsuite        */
        !          9940: /*
        !          9941:  *  tests operation on open file which has been unlinked.
        !          9942:  *  steps taken:
        !          9943:  *     1.  create file
        !          9944:  *     2.  open for read/write
        !          9945:  *     3.  unlink file
        !          9946:  *     4.  write data
        !          9947:  *     5.  rewind
        !          9948:  *     6.  read data back
        !          9949:  */
        !          9950: 
        !          9951: #include <tests.h>
        !          9952: 
        !          9953: extern errno;
        !          9954: #define TBUFSIZ 100
        !          9955: char wbuf[TBUFSIZ], rbuf[TBUFSIZ];
        !          9956: #define TMSG "This is a test message written to the unlinked file\n"
        !          9957: 
        !          9958: #ifdef ANSI
        !          9959: void xxit(char *s);
        !          9960: void main(void);
        !          9961: #endif
        !          9962: 
        !          9963: void
        !          9964: main()
        !          9965: {
        !          9966:        int fd, ret;
        !          9967:        char *tname = "nfstXXXX";
        !          9968:        int errcount = 0;
        !          9969: 
        !          9970:        setbuf(stdout, NULL);
        !          9971:        mktemp(tname);
        !          9972: #ifdef O_RDWR
        !          9973:        if ((fd = open(tname, O_CREAT|O_TRUNC|O_RDWR, CHMOD_YES)) < 0) {
        !          9974:                fprintf(stderr, "can't create %s: ", tname);
        !          9975:                xxit("open");
        !          9976:        }
        !          9977: #else
        !          9978:        if ((fd = creat(tname, 0777)) < 0) {
        !          9979:                fprintf(stderr, "can't create %s: ", tname);
        !          9980:                xxit("creat");
        !          9981:        }
        !          9982:        close(fd);
        !          9983:        if ((fd = open(tname, 2)) < 0) {
        !          9984:                fprintf(stderr, "can't reopen %s: ", tname);
        !          9985:                unlink(tname);
        !          9986:                xxit("open");
        !          9987:        }
        !          9988: #endif /* O_RDWR */
        !          9989:        printf("nfsjunk files before unlink:\n  ");
        !          9990:        system("attrib nfst*.*");
        !          9991:        ret = unlink(tname);
        !          9992:        printf("%s open; unlink ret = %d\n", tname, ret);
        !          9993:        if (ret)
        !          9994:                xxit(" unlink");
        !          9995:        printf("nfsjunk files after unlink:\n  ");
        !          9996:        system("attrib nfst*.*");
        !          9997:        strcpy(wbuf, TMSG);
        !          9998:        if ((ret = write(fd, wbuf, TBUFSIZ)) != TBUFSIZ) {
        !          9999:                fprintf(stderr, "write ret %d; expected %d\n", ret, TBUFSIZ);
        !          10000:                if (ret < 0)
        !          10001:                        perror(" write");
        !          10002:                exit(1);
        !          10003:        }
        !          10004:        if ((ret = (int) lseek(fd, 0L, SEEK_SET)) != 0) {
        !          10005:                fprintf(stderr, "lseek ret %d; expected 0\n", ret);
        !          10006:                if (ret < 0)
        !          10007:                        perror(" lseek");
        !          10008:                exit(1);
        !          10009:        }
        !          10010:        if ((ret = read(fd, rbuf, TBUFSIZ)) != TBUFSIZ) {
        !          10011:                fprintf(stderr, "read ret %d; expected %d\n", ret, TBUFSIZ);
        !          10012:                if (ret < 0)
        !          10013:                        perror(" read");
        !          10014:                exit(1);
        !          10015:        }
        !          10016:        if (strcmp(wbuf, rbuf) != NULL) {
        !          10017:                errcount++;
        !          10018:                printf("read data not same as written data\n");
        !          10019:                printf(" written: '%s'\n read:    '%s'\n", wbuf, rbuf);
        !          10020:        } else {
        !          10021:                printf("data compare ok\n");
        !          10022:        }
        !          10023: 
        !          10024:        if (unlink(tname) == 0) {
        !          10025:                errcount++;
        !          10026:                printf("Error: second unlink succeeded!??\n");
        !          10027:        } else if (errno != ENOENT) {
        !          10028:                errcount++;
        !          10029:                perror("unexpected error on second unlink");
        !          10030:        }
        !          10031: 
        !          10032:        if (ret = close(fd)) {
        !          10033: #ifndef DOS    /* DOS does not like the following close */
        !          10034:                errcount++;
        !          10035:                perror("error on close");
        !          10036: #endif
        !          10037:        }
        !          10038: 
        !          10039:        printf("nfsjunk files after close:\n  ");
        !          10040:        system("attrib nfst*.*");
        !          10041: 
        !          10042:        if ((ret = close(fd)) == 0) {
        !          10043:                errcount++;
        !          10044:                fprintf(stderr, "second close didn't return error!??\n");
        !          10045:        }
        !          10046: 
        !          10047:        if (errcount == 0)
        !          10048:                printf("test completed successfully.\n");
        !          10049:        exit(errcount);
        !          10050: }
        !          10051: 
        !          10052: void
        !          10053: xxit(s)
        !          10054: char *s;
        !          10055: {
        !          10056:        perror(s);
        !          10057:        exit(1);
        !          10058: }
        !          10059: lesz) {
        !          10060:                        tot = (int) MIN((long) holesz, sz - 1);
        !          10061:                        sz -= tot;
        !          10062:                        for (ct = 0; tot; tot -= ret, ct += ret) {
        !          10063:                                bytes = MIN(tot, BUFSZ);
        !          10064:                                if (Debug)
        !          10065:                                        fprintf(stderr, "\
        !          10066: ++hole read: offset %ld, sz = %ld, tot = %d, bytes = %d\n",
        !          10067:                                        filesz - sz - tot, sz, tot, bytes);
        !          10068:                                if ((ret = read(fd, buf, bytes)) <= 0) {
        !          10069:                                        fprintf(stderr, "\
        !          10070: read (hole) off./special/runtests.bat   664  20115     11        1123  4552130556  10300 rem 
        !          10071: rem        @(#)runtests.work   1.1 88/10/12 NFS Rev 2 testsuite
        !          10072: rem 
        !          10073: 
        !          10074: rem "check for proper open/unlink operation"
        !          10075: op-unlk
        !          10076: 
        !          10077: rem "check for proper open/chmod 0 operation"
        !          10078: op-chmod
        !          10079: 
        !          10080: rem "check for lost reply on non-idempotent requests"
        !          10081: dupreq 5 testfile
        !          10082: 
        !          10083: rem "test exclusive create, should get: exctest.file2: File exists"
        !          10084: excltest
        !          10085: 
        !          10086: rem "fstat returns -1 in all fields checked in DOS"
        !          10087: fstat
        !          10088: 
        !          10089: rem "test negative seek, with Microsoft C"
        !          10090: rem "under DOS should get: lseek: Invalid argument"
        !          10091: negseek testfile
        !          10092: 
        !          10093: echo "test rename"
        !          10094: .\rename 5
        !          10095: 
        !          10096: echo "Special tests complete"
        !          10097: heck for proper open/unlink operation"
        !          10098: op-unlk
        !          10099: 
        !          10100: rem "check for proper open/chmod 0 operation"
        !          10101: op-chmod
        !          10102: 
        !          10103: rem "check for lost reply on non-idempotent requests"
        !          10104: dupreq 5 testfile
        !          10105: 
        !          10106: rem "test exclusive create, should get: exctest.file2: File exists"
        !          10107: excltest
        !          10108: 
        !          10109: rem "fstat returns -1 in all fields checked in DOS"
        !          10110: fstat
        !          10111: 
        !          10112: rem "test negative seek, with Microsoft C"
        !          10113: rem "under DOS should get: lseek: Invalid argument"
        !          10114: neg./special/dupreq.exe   777  20115     11       35340  4552135712   7760 MZ9& c��v@w}�&&h�&�&!��&U���WV�~u��^�7�BP�Z&P����&P�����P�R&P�X���^�w���������^�w�XP���P����^�w�\P����P�������������������������������������u�|��&P���P�������=|� �����`P�Z&P�������P�<��������������P���=|�!�������P�hP�Z&P����rP�����v������tP�R&P�������u������~P�R&P�h������u�������P�R&P�L���P�&��^_��]Ð�0�!<s� ��&�6+���r���ׁ�N�s��3�P�J��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�&��*�P+�3���;�f��3��68&�66&�64&���P����&�ظ6��P�e����P���0�!�&�5�!�&�&�%� �!�D�.�&&�6,�F��3�6�Bs�76�J�ڻ6�B�&&�,�6��3�&�=t,����t��3��u����� &������t&H������ &��D�!r
        !          10115: �€t�� &@Ky�N�N��N�N��U��P�P�}�N�P�t�U��P�P�f�P�P�l��t�~u�F����� &&t�>�!C����F�L�!�D���B�&�%�!�>B&t
�C&�D&�%�!�;�s
        !          10116: OO�
�������;�s���Et�����Y��+�r
        !          10117: ;H&r����3��k�U���WV�F�F��v�0�����FP�v�v������vV�����^_��]ÐU��^;&r�    ���>�!rƇ &��U���WV�v��t&�<t!V���PV��P�����P�dP��P����>&|     �9&|���&�㋷�V���PVW�q���&P�gPW�b��^_��]ÐU���V�v��-J&�����������&�F�V�Y��V�
        !          10118: ���~u�L�d��^����@�D��G&����d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW�E�����Mx*������W+�P�����^_��]�U���v�P�v������]�U��V�A�!�U���P�e�>jt�j��P�S��]ø�q�V3��B2���2�����Ut
����&P�,�&^Ïl�8&t)�&&�,�<&3����3��u�GG�>:&�����ыѿ&���&�< t�<        t�<
to
        !          10119: �tkGN�< t�<    t�<
t\
        !          10120: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          10121: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>4&�G��׀��+�ģ6&���6�?CC�6:&��
        !          10122: �u���6�&�3���< t�< t�<
u�
        !          10123: �u�y�6�?CCN�< t�<     t�<
tb
        !          10124: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          10125: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&lU��U�&3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     ��_�ϋ���.8&��3�I��<;Ct�~EE��
        !          10126: �u���N]��]�U��VW�V�X�;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â&
        !          10127: �u#�>&r
<"s
< r���<v��nט�&Ê���U���WV�v�D��F���-J&�����������&�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�J&�������������&&uF��R&t��Z&u3�v��U���u-����R&u�P���P   �D��^��G�&��V�����Du�ށ�J&�������������&&tP�<+|�D@��^��GH�D�~W�t�v��y���F����^��� & t�P+�PPS�����\�F����&��P�FP�v��<���F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t�
���d�+���D�D^]ÐU���V�v����R&u�F�P����Z&u$�F�P �Du�ށ�J&�������������&&t+��5��-J&�����������&�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~R&t�~Z&uv�^�G�P����td�F-J&�����������&�F��v�K���^���G�^��+���G�*��^�Pt�P     u�G�P�U���t        �v���^��]�U���WV�v+��D$<uF�Du�ށ�J&�������������&&t'�+D�F��~P�t�D�P�
        !          10128: ��;F�t�L ����D��D��^_��]�U��d&��WV�v�����H�F�8�F�,�B�@�|�<%t�X�D&+��4�0�>�2�<�:�.�*�6�N �|&0u<F�N0�3�<+u
�4�:�"��< u
�>4u�:��*�     �<-u��6F��P�����u�V�JP�f�����>J}�6�J�أJ�<.u#�<FV�DP�<�����>D}
        !          10129: �D&�<��=Ft2=Nt5=ht =lu�2�>2u�<Lu&F�<u�&�2&���2���2�ӊ�����=Et
        !          10130: =Gt=Xu      �0���� ����-c=v�&��.��Z�8��@��8�i&��>�*�
        !          10131: P�&���Q&�����.�0�><u       �F&���F�<�D�>2u�+��2�F�9Jt'�J�F��>6t   �J���.J�J�}+��J�8�P�����:P�����~�t"�>6t�F�-�J�}+��J���J�.8�P�������/�+�P��&�*���&����������>2t��N��G�=t�=%u���+�PV�������<t�|��>@uY�,�G tO����M"
"

        !          10132: 
6
<
�

�
�>Bt�>@u�,�G u��F뙐�@^_��]ÐU���WV�~
        !          10133: t�>�>2t�>2u�8��W�F��V��8�*�>>t�8��F��F����8���F��V��8�>*t
�F�F�t�F�+��L�6H�>>u*�~�}$�~
        !          10134: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v��� ���><t!W����D+ȉN����0F��I���N�0���t<a|�, FG�}�u�>>u�4:t�~�u�&�+�P���^_��]ÐU���WV�~t�&�8�F��^��8��>2u�8��W�F��V��8���8��F��F��^��8�>2u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96<t�D���^��F�&�?tF;�~��F�^��F�&�?u�>J+��>6uW�&��V�v��v��o&���>6tW�&��^_��]�U����8�F��~gt�~Gu�&�*��F��><u�D�~�t
�>Du�D&�60�6D�v�6H�v��$��
        !          10135: �~�t�>*u�6H�&���>*t�>Du�6H�*���8�L�4:t�v��,���t�&�+�P�&��]�U��V�>Bu/�,�Ox�F�7��*���S�v�����@u�B���@^]ÐU���WV�>BuI�v�~B��6,�6N����@u�B��N�~�,�Ox۠N�?��*��܃>Bu�F&@^_��]�U���WV�v�>BuP��6,�^&��P�=���@u�B�F��N�t�,�Ox��^&��,�?��*��҃>Bu�F&@^_��]�U���
        !          10136: WV�6H+��F��F��>N0u9<t9.t9Fu�N �>JV�]���F�+�+~�>6u�<-u�>N0u��P�����N��>N0t�~�>6t�~t�F��_�>Lt�F��j�>6u&W�����~t  �~�u�5�>Lt �~�u�=�v�V������>6t
�N W�a���^_��]Ã>4t�+�� P����Ð�0P������>Lu�>0t�X���xP�����ÐU���WV�v�F�&�<*u�8�?�8F�H��<-u�F���F+��<0|5�<909><u�<0u�N0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          10137: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          10138: Ǵ=�!s=u    ��&t�����%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s����F��u�Fu0�>�!�F$
        !          10139: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;&r
        !          10140: �>�!����
        !          10141: N���&�� &�Ë�]�2��ܡ&��#�3ɨ�u��&�U����^;&r�  ��1��� & t�B3ɋ��!r��� &�tn�V3��F��F��WV����f��N�T�
        !          10142: �uJ�=�vH���ܺ=(s��+�ԋ��N�<
        !          10143: t;�t����#�a�
;�u���
        !          10144: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ��� &@t�^�?u������F�+F��f�^_�S�N�u���G�V�@�!s�  ���u��� &@t
        !          10145: �ڀ?u�������U��׌؎��~3�������I���]�U��WV�v3��3۬< t�<        t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]Ë��r59�s%P�ر��ً&+���ËشJ�!Xr$�H����.�&�Ë��Y�U���WV�J&+����D�tV�2��@t&G��96bs��^_��]�U���V�F-J&�����������&�F��P�����^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;&r�       �*�F�tH�~
        !          10146: t3ɋѸ&B�!rK�F
        !          10147: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          10148: �B�!r�� &��U�Y�H&;�s+�����3���U��^�t�O�&��]�U��VW��?u)��&u3���$@$�����&���D����6 �N�؎��7_^��]�U��VW��&U��^;&}��|�� &@t�&�3���]���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�8��&�>=��t%���&t��H;�s����&t�����D���G�t���&�>t�،�;�t&�4�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�8��G3���Q�E��&t+�IAA��&;:v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�o�����Z[t���N
        !          10149: �F�V�~W��
        !          10150: �t��
        !          10151: u�y
        !          10152: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u       ١&+؎��J�!r
;�u�������MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s count name
        !          10153: %s1%s2create unlink %s %d tries
        !          10154: %d bad create
        !          10155: %d bad unlink 2
        !          10156: ��&�;C_FILE_INFO���&&>&�&CPPP&&�&�&: 
        !          10157: 
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error�������������&89:;LMabcd|}~�����%����� �<<NMSG>>R6000
        !          10158: - stack overflow
        !          10159: R6003
        !          10160: - integer divide by 0
        !          10161:       R6009
        !          10162: - not enough space for environment
        !          10163: �
        !          10164: �run-time error R6002
        !          10165: - floating point not loaded
        !          10166: &R6001
        !          10167: - null pointer assignment
        !          10168: ���NB00|&
        !          10169: DUPREQ.OBJ�&D:\MSC\5.1\LIB\BINMODE.OBJ�&�&dos\crt0.asm>o&&dos\crt0dat.asm�&
        !          10170: chkstk.asm�>& fprintf.c&_file.c &
dos\close.asm"&atoi.asm&~&perror.c�x&setbuf.cV&      sprintf.cr&   creat.asm�
&dos\unlink.asm� &dos\crt0msg.asm�&
        !          10171: crt0fp.asm�"&
        !          10172: chksum.asm��&&dos\stdargv.asmnn&dos\stdenvp.asm�T&dos\nmsghdr.asm0T&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c�    .&
        !          10173: _freebuf.c
        !          10174: &&       _sftbuf.c"n&fflush.c��&output.cX�&&dos\open.asm�(&&        write.asm$&
        !          10175: strlen.asm@T&atox.asm�&syserr.c�B&dos\stdalloc.asm�2&
        !          10176: flushall.cl& _getbuf.ctz&
dos\lseek.asm�&stackava.asmX&nmalloc.asmX
        !          10177: &        ultoa.asmb&cmiscdat.asmb#&
        !          10178: isatty.asm�a&&amalloc.asm�_&xtoa.asmH�&dos\brkctl.asm�_main��&__fmode��&__iomode*�&_edataP�&_end��&__aexit_rtn��&__abrkp��&__abrktb��&__asizds�&__astart��&__atopsp��&  __abrktbe  __cintDIVv�&
        !          10179: __acrtused/__amsg_exit&�&__osversion&�&_errno__exit@&�&__child&�&__nfile>__cinit4&�&___argcC&�&__intno&�&
__dosvermajor&�&__oserr6&�&___argv&�&
__dosverminor8&�&_environ &�&__osfile&�&__osmode&�&__pspadrB�&__fpinitD&�&__ovlvec:&�&__pgmptr��&      __acfinfoB&�& __ovlflag&�& __aintdiv&�& __osmajor&�& __osminor&�&
        !          10180: __umaskval^
        !          10181: __ctermsub&�&
        !          10182: __doserrno     &�&__fac_exit&�&__pspH&�&STKHQQ�__chkstk�_fprintfP�&__bufinP�&__bufoutP    �&__buferr�&�&__iob2b�&        __lastiobJ&�&__iob_close"_atoi&_perror�_setbuf_sprintfr_creat�_remove�_unlink�__FF_MSGBANNERj�&   __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargvn __setenvp�__NMSG_TEXT__NMSG_WRITE0    __dosret0P
        !          10183: __maperrorC
        !          10184: __dosretax8__dosreturn��&__cflush�__flsbuf�        __freebuf�
        !          10185: __ftbuf
        !          10186: __stbuf"_fflush�__output`
        !          10187: __copensubX_open�__cXENIXtoDOSmode�_write$_strlen@__catox�&  _sys_nerr��&_sys_errlist�      __myalloc� _flushall__getbuft_lseek�_stackavail_malloc__nfree�&__asegds        __nmalloc_freeX_ultoa$�&
__cfltcvt_tab2�&__asizeC3�&__asizeD0�&__sigintoff.�&__sigintsegb_isatty�__amallocbrk4�&__aseg1<�&__asegh6�&__asegn8�&__asegr�__amlink<�&  __QChdata� __amallocl
        !          10188: __amexpand:�&
        !          10189: __amblksiz�__cxtoa�
        !          10190: __cltoasubH_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&���+&u��c��&x���&&�&&�&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x ��&&�&x@��&&�&&�&&�&&�&&�&&�&xP��&x��&xx��&x����&�{&u&mainj&���name2
        !          10191: �argc
        !          10192: +argv���count���&i���fd���cfail���lfail���u1fail���u2fail��name1&&J&�&_iobdupreq.c$7AO_t���� �!�"�$�1�2
&3&4$&6.&71&8C&9M&C_&Di&F{&G�&
        !          10193: SLIBCE.LIB\&&&&&-&&V�&&��&&~{&&'&9&&F&V�&&_&
�&&&{&�&&�&�&&�&�U&&�&S
&&   �&       `&&
        !          10194: �&
        !          10195: l&&&&z&&&&�&&
+&&
�
&&A&&�&&\&&�5&&x&&�&&�&&&&�&&&&�&&&&&�&&6%&&�&&[D&&&�&&-&�&&C&�&&Z&�&&p&�&&�&�&&�&     5&&�&;     
&&�&H     &&�&V     && �& d     #&&!
        !          10196: &!�     &&"'&"�     &&#>&#�     &&$T&$�     
&&%n&%�     &&&�&&�     G&&'�&'
        !          10197: 
&&(�&()
        !          10198: V&&)�&)
        !          10199: &&*�&*�
        !          10200: �&&+�&+)&&,&,H&�NB00�&&
        !          10201: �&
        !          10202: �
&&&&�G&&&&C
&&
/&&
Q
&&F&&_
&&[&&k
&&q&&�
&&�&&�
&&�&&�
&&�&&�
&&�&&�

&&�&&�

&&�&&�
&&&�

&&!./special/excltest.exe   777  20115     11       33512  4552135755  10321 MZ{& d��[@�"�&j�&     &�&��&U���WV�~��^�7�BP�\&P����&P�6���~t�=�^�w�����F���N��~�u���&P�P�UP��������P��&���aP�����&P�P�mP����=|��yP�j���&P�&����&P�P��P���=|���P�<���P�&���P�&��^_��]Ð�0�!<s� ��&�6+���r���ׁ�^�s�3�P����L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�&��,�`+�3���;��s3��6:&�68&�66&��P����&�ظ6��tP��o��P���0�!�&�5�!�&� &�%��&�!�F�.�&&�6,�H��3�6�Ds��6�L�ڻ6�D�&&�,�6��3�&�=t,����t��3��u�����"&������t&H������"&��D�!r
        !          10203: �€t��"&@Ky�P�P��P�P��U��R�R�}�P�R�t�U��R�R�f�R�R�l�+�t�~u�F�����"&&t�>�!C����F�L�!�F���D�&�%�!�>D&t
�E&�F&�%�!�;�s
        !          10204: OO�
�������;�s���Et�����Y��+�r
        !          10205: ;J&r����3��k�U���WV�F�F��v�J�����FP�v�v�R�����vV�����^_��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          10206: Ǵ=�!s=u    ��&t������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s����F��u�Fu0�>�!�F$
        !          10207: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ; &r
        !          10208: �>�!����
        !          10209: N���&��"&�Ë�]�2��ܡ&��#�3ɨ�u��&��U���WV�v��t&�<t!V�g�PV��P�5
����P�fP��P�%
���>&| �9&|���&�㋷�V�&��PVW�����&P�iPW����^_��]ÐU��V�A�!�U���P�e�>lt�l��P�S��]ø���V3��B2���2�����Ut
����&P�,�&^Ïn�8&t)�&&�,�>&3����3��u�GG�><&�����ыѿ&���&�< t�<     t�<
to
        !          10210: �tkGN�< t�<    t�<
t\
        !          10211: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          10212: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>6&�G��׀��+�ģ8&���6�?CC�6<&��
        !          10213: �u���6�&�3���< t�< t�<
u�
        !          10214: �u�y�6�?CCN�< t�<     t�<
tb
        !          10215: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          10216: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&nU��U�&3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �S_�ϋ���.:&��3�I��<;Ct�~EE��
        !          10217: �u���N]��]�U��VW�V�Z�;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â&
        !          10218: �u#�>&r
<"s
< r���<v��pט�&Ê���U���V�v���T&u�F�`����\&u$�F�`       �Du�ށ�L&�������������&&t+��5��-L&�����������&�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~T&t�~\&uv�^�G�P�����td�F-L&�����������&�F��v�C���^���G�^��+���G�*��^�`t�`     u�G�P����t        �v���^��]�U��d&�i�WV�v�����J�F�:�F�.�D�B�|�<%t�X�F&+��6�2�@�4�>�<�0�,�8�P �|&0u<F�P0�3�<+u
�6�<�"��< u
�>6u�<��,� �<-u��8F��P�����u�V�LP�f�����>L}�8�L�أL�<.u#�>FV�FP�<�����>F}
        !          10219: �F&�>��=Ft2=Nt5=ht =lu�4�>4u�<Lu&F�<u�&�4&���4���4�ӊ�����=Et
        !          10220: =Gt=Xu      �2���� ����-c=v�&��.��x�:��B��:�i&��@�,�
        !          10221: P�&���Q&�����0�2�>>u       �H&���H�>�F�>4u�+��4�F�9Lt'�L�F��>8t   �L���.L�L�}+��L�:�P�����:P�����~�t"�>8t�F�-�L�}+��L���L�.:�P�������/�+�P��&�*���&����������>4t��N��G�=t�=%u���+�PV�������<t�|��>BuY�.�G tO����M$@***4@4444(TZ444<44�>Dt�>Bu�.�G u��F뙐�B^_��]ÐU���WV�~
        !          10222: t�@�>4t�>4u�:��W�F��V��:�*�>@t�:��F��F����:���F��V��:�>,t
�F�F�t�F�+��N�6J�>@u*�~�}$�~
        !          10223: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>>t!W�����F+ȉN����0F��I���N�2���t<a|�, FG�}�u�>@u�6<t�~�u�&�+�P���^_��]ÐU���WV�~t�&�:�F��^��:��>4u�:��W�F��V��:���:��F��F��^��:�>4u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96>t�F���^��F�&�?tF;�~��F�^��F�&�?u�>L+��>8uW�&��V�v��v��o&���>8tW�&��^_��]�U����:�F��~gt�~Gu�&�*��F��>>u�F�~�t
�>Fu�F&�62�6F�v�6J�v����
        !          10224: �~�t�>,u�6J����>,t�>Fu�6J�"���:�N�6<t�v��$���t�&�+�P�&��]�U��V�>Du/�.�Ox�F�7��*���S�v���@u�D���B^]ÐU���WV�>DuI�v�~B��6.�6P�I��@u�D��N�~�.�Ox۠P�?��*��܃>Du�F&B^_��]�U���WV�v�>DuP��6.�^&��P����@u�D�F��N�t�.�Ox��^&��.�?��*��҃>Du�F&B^_��]�U���
        !          10225: WV�6J+��F��F��>P0u9>t90t9Hu�P �>LV����F�+�+~�>8u�<-u�>P0u��P�����N��>P0t�~�>8t�~t�F��_�>Nt�F��j�>8u&W�����~t  �~�u�5�>Nt �~�u�=�v�V������>8t
�P W�a���^_��]Ã>6t�+�� P����Ð�0P������>Nu�>2t�X���xP�����ÐU���WV�v�F�&�<*u�:�?�:F�H��<-u�F���F+��<0|5�<909>>u�<0u�P0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          10226: :u��&��+�^��]ÐU����^; &r�    ������"& t�B3ɋ��!r���"&�tn�V3��F��F��WV����f��N�T�
        !          10227: �uJ�J=�vH���ܺ=(s��+�ԋ��N�<
        !          10228: t;�t����#�a�
;�u���
        !          10229: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���"&@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u���"&@t
        !          10230: �ڀ?u�������U��׌؎��~3�������I���]�U��WV�v3��3۬< t�<        t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]Ë��r59�s%P�ر��ً&+���ËشJ�!Xr$�H����.�&�Ë��Q�U���WV�v�D��F���-L&�����������&�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�L&�������������&&uF��T&t��\&u3�v��W&���u-���T&u�`���`    �D��^��G�&��V�|&���Du�ށ�L&�������������&&tP�<+|�D@��^��GH�D�~W�t�v��'����F����^���"& t�P+�PPS�&���\�F����&��P�FP�v�������F�9~�t����F*�^_��]ÐU���WV�v+��D$<uF�Du�ށ�L&�������������&&t'�+D�F��~P�t�D�P����;F�t�L ����D��D��^_��]�Y�J&;�s+�����3���U��VW��<&U��^; &}��|��"&@t�&�3���]�U���WV�L&+����D�tV�8���@t&G��96ds��^_��]�U���V�F-L&�����������&�F��P�2&���^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^; &r�        �*�F�tH�~
        !          10231: t3ɋѸ&B�!rK�F
        !          10232: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          10233: �B�!r��"&�����N
        !          10234: �F�V�~W��
        !          10235: �t��
        !          10236: u�y
        !          10237: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�U��^�t�O�&��]�U��VW�,�?u)��s&u3���$@$��,�.��&���D����62�N�؎��     _^��]���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�:��&�@=��t%���&t��H;�s����&t�����D���G�t���&�@t�،�;�t&�6�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�:��G3���Q�E��&t+�IAA��&;<v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١&+؎��J�!r
;�u�������MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s [count]
        !          10238: exctest.filexctest.filexctest.filexctest.filexctest.filexctest.fil 2���&�;C_FILE_INFO���&&@&�&C```&&�&�&: 
        !          10239: 
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error�������������&89:;LMabcd|}~�����%����� T<<NMSG>>R6000
        !          10240: - stack overflow
        !          10241: R6003
        !          10242: - integer divide by 0
        !          10243:       R6009
        !          10244: - not enough space for environment
        !          10245: �
        !          10246: �run-time error R6002
        !          10247: - floating point not loaded
        !          10248: &R6001
        !          10249: - null pointer assignment
        !          10250: ���NB00��EXCLTEST.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm�&o&&dos\crt0dat.asm &
        !          10251: chkstk.asm6>& fprintf.ct&_file.ct�&&dos\open.asm&atoi.asm~&perror.c�
&dos\unlink.asm� &dos\crt0msg.asm�&
        !          10252: crt0fp.asm�"&
        !          10253: chksum.asm��&&dos\stdargv.asm~n&dos\stdenvp.asm�T&dos\nmsghdr.asm@T&dos\dosret.asm�&&  _sftbuf.c�    �&output.cv(&&   write.asm�&
        !          10254: strlen.asm�T&atox.asm&syserr.cB&dos\stdalloc.asmP&_cflush.asmPV&&  _flsbuf.c�n&fflush.c&stackava.asm&
        !          10255: &        ultoa.asm0&cmiscdat.asm0#&
        !          10256: isatty.asmT2&
        !          10257: flushall.c�l& _getbuf.c�z&
dos\lseek.asml_&xtoa.asm�X&nmalloc.asm$a&&amalloc.asm��&dos\brkctl.asm�_main��&__fmode��&__iomode,�&_edata`�&_end��&__aexit_rtn��&__abrkp��&__abrktb��&__asizds�__astart��&__atopsp��&  __abrktbe�& __cintDIVv�&
        !          10258: __acrtused�&__amsg_exit&�&__osversion&�&_errno�__exitB&�&__child &�&__nfile�&__cinit6&�&___argcE&�&__intno&�&
__dosvermajor&�&__oserr8&�&___argv&�&
__dosverminor:&�&_environ"&�&__osfile&�&__osmode&�&__pspadrD�&__fpinitF&�&__ovlvec<&�&__pgmptr��&      __acfinfoD&�& __ovlflag&�& __aintdiv&�& __osmajor&�& __osminor&�&
        !          10259: __umaskval�
        !          10260: __ctermsub&�&
        !          10261: __doserrno&�&__fact_exit&�&__pspJ&�&STKHQQ __chkstk6_fprintf`�&__bufin`�&__bufout`        �&__buferr�&�&__iob2d�&        __lastiobL&�&__iob|
        !          10262: __copensubt_open__cXENIXtoDOSmode_atoi_perror�_remove�_unlink�__FF_MSGBANNERl�&        __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargv~ __setenvp�__NMSG_TEXT__NMSG_WRITE@    __dosret0`
        !          10263: __maperrorS
        !          10264: __dosretaxH__dosreturn  __ftbuf�__stbuf�     __outputv_write�_strlen�__catox�&    _sys_nerr��&_sys_errlist      __myalloc�&__cflushP__flsbuf�_fflush_stackavail&_ultoa�&
__cfltcvt_tab*�&__asizeC+�&__asizeD(�&__sigintoff&�&__sigintseg0_isattyT  _flushall�__getbuf�_lseekx__cxtoal
        !          10265: __cltoasub�_malloc�__nfree,�&__asegds�    __nmalloc�_freef__amallocbrk6�&__aseg1>�&__asegh8�&__asegn:�&__asegrD__amlink>�&   __QChdata' __amalloc
        !          10266: 
        !          10267: __amexpand<�&
        !          10268: __amblksiz�_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&���+&u��c��&&�&&�&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x`��&&�&&�&&�&xp��&���main�
        !          10269: �argc
        !          10270: +argvJ=���count&&&L&�&_iob
        !          10271: excltest.c$7AJYhz}������ �"�#�
        !          10272: SLIBCE.LIBR&&&&&�&&�
        !          10273: 8&&�U&&,Y&&!'&�&&H&��&&a&��&&&}&c&&�&&&�&�U&&�&�5&& �&       &&
        !          10274: �&
        !          10275: $&&&&&2&&&&N5&&
8&&
�&&O&&�&&f&&�&&�&&�&&�&&�%&&�&&�D&&�&&-&&�&&I&&&X
&&&e&&-&s&&B&�#&&W&�&&t&�&&�&�&&�&�&&�&�&&�&�
&&�&�V&& �& U     &&!&!c     &&"-&"s     &&#C&#�     
&&$]&$�     &&%r&%�     G&&&�&&�     �&&'�&'�
        !          10276: &�NB00���V��B�!�؋V�N�F
        !          10277: �B�!r��"&�����N
        !          10278: �F�V�~W��
        !          10279: �t��
        !          10280: u�y
        !          10281: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�U��^�t�O�&��]�U��VW�,�?u)��s&u3���$@$��,./special/fstat.exe   777  20115     11       40741  4552136167   7607 MZ�&! ���v���&Jq�c
�q�q�qU��B��WV�F�B�~��^�7�DP�<P�����&P�&���~t�    �^�G�F���FԉFҸ�F؉F֍F�P�v����=|��^�w����&P�
���v��v��v��vҸVP���
        !          10282: �P�
��^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          10283: �jP���P�����&P���P��������=|����P�oP����&P�
���^��������=|������P�S���&P�����t�dž��������F9���|������v��P���P������P�2��=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          10284: �v�v�v������P����=|���P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          10285: ��P���P�-�����P�v��=|�"�~t����P��P�����&P����^���dž��������F9���|�������v��P���P�������P����=|�%�~u������P��P����&P����v�v�v�v�v
        !          10286: �v�v�v�������P���=|���P�G���&P��
        !          10287: �����P�l��=|����P�&P����&P�
        !          10288: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6R
�&P�<P�&�������P�6R
�'&P�<P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          10289: �v�v�v�<P��
        !          10290: ��(�>�u�
�2&P������4&P�<P�
        !          10291: ���<P����~�t�
        !          10292: �&P��        ��^_��]�U���_
        !          10293: WV�P�       P���^_��]�U���@
        !          10294: WV�P�       P�����       �      9     ~�#}�        9    r��.        &�    �    @B�   �^�  �     +           �G�W�^�     �     +          ��W^_��]�U���     WV�'�RP�^�w�w�kRP�^�w�7�6&P�4P�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�RP�L&P�4P�e    ��^_��]�U��&�=       WV�~t��]&P����F=t��Fh&����P�v���=t�<�v�t&P���P������P���=u��v�}&P�����&P����v���=|��v��&P�k����&P�����v�&��=|��v��&P�C����&P����^_��]�U���gWV�~t���&P�A
        !          10295: ���F=t��F�&�v�L&��=|��v��&P�����������^_��]�U���     WV�v��        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          10296: �P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������Qu��^��- ��^��-@�F��F�P�v�����F�P�����F�9F�u��^��P�GP������&P���^_��]�U���WV�6R
�aP�4P�#���6R
�X����P�M��^_��]�U����WV�v�4����v��
        !          10297: ���^_��]�U����WV�&P�v��
        !          10298: ���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�+
        !          10299: ���^_��]�U���TWV�v�v�����^_��]�U���4WV�F�P�
����RP�F�*�+�QP�r�Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP�@�^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������Qu��^��- ��^��-@�F��
        !          10300: �F�P�����F�P�v����=u�����V�^�F��G�G+�P�v�+�P�v��t
�^�G�W
        !          10301: +�P�v�+�P�v��\
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�V
P�s���jP�V
P�%���>pu����p&�P����X�>Xt���~�ZP�v��V
P���=u���_�6X�ZP�&���F�&��F��ZP�d��=t�!�F�����������XP�ZP�[&������F�H�V�T
�P �^_��]�U����WV�F��F�F�ZP�v��V
P���=u��rP�����&P� ���6X�ZP�����F�&��F��ZP�
        !          10302: ��=t�!�F�����������XP�ZP�������F�H�V�T
^_��]�U���JWV�F�F�T
��^_��]�U���,WV�F�F�V�9V~�}�9Fv��F�T
^_��]�U����WV�F�F�V9T
� ����T
�T
����������X�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������Q&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F�p^_��]Ð�0�!<s� �m�6+���r���ׁĎ�s�
        !          10303: 3�P����L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6����  ��+�3���;��}
        !          10304: 3��6�6�6��P���m�ظ6��DP�
        !          10305: �y��P���0�!���5�!�����%�b
�!�*�.��&�6,�,��3�6�(s��  6�0�ڻ6�(��&�,�6��3�&�=t,����t��3��u�����������t&H��������D�!r
        !          10306: �€t��@Ky�4�4��4�4��U��J  �J      �}�4�6�t�U��6�6�f�6�6�l�5   �t�~u�F�����&t�>�!C����F�L�!�*���(���%�!�>$t
�%�&�%�!�;�s
        !          10307: OO�
�������;�s���Et�����Y��+�r
        !          10308: ;*r����3��k�U���WV�F�F��v������FP�v�v�
�����vV�
����^_��]ÐU���WV�4�F�F�V�k�����FP�vV�u
���F�VW�����F�^_��]�U���WV�v+��D$<uF�Du�ށ�,�������������&t'�+D�F��~P�t�D�P�}��;F�t�L ����D��D��^_��]�U��^;r�  ���>�!rƇ�
        !          10309: U��^�t�O�&��]�U��VW�F�?u)��u3���$@$��F�H��&���D����6L�N�؎��_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��OU���WV�6�tF�~t@�v�����������<t*�4����;�~��9=u�W�vS�����u֋�A&��+�^_��]�U���WV�v��t&�<t!V��PV��P������P�RP��P�����>�|     �>9�|�>����㋷�V�>��PVW����&P�UPW���^_��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW��
        !          10310: �����Mx*������W+�P�k����^_��]�U���v�P�v�����]�U����XP�����F��~u+�P�v�����u�&�Z+��V�F�`�F�F��F��~�t&�6�F�P�v�+�P�5���F�@u�>�t�F���F�c�6�F�P�cP+�P�M����]�U��V�C�!r�F�t������&�&C�!�DU��9�U��;�V�!�0U��:�V�!s�=u쒓�C<t
        !          10311: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�7��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P����F�P�R��@�F��~�u;�~��V�������u �����~9v�~
        !          10312: ��"+���F�PW�����^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v������t1�pPW����t�uPW����t�zPW����u��@��%�&������%�&������^_��]ÐU���LWV�v�~�PV�����t
������Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P����|&:u������Q&t� ����-`�+�PP�P�y��*�@�F�~�th��PV�@���t����P+�P�v�������F��u�j�V����@t)�v������v������F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          10313: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P�����E�U�E�U�E�U+�^_��]�U��V�A�!�&U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u���V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          10314: �}G�V�����F
        !          10315: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          10316: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          10317: ؋^u�F���]���ȋF�f
        !          10318: ȋF��ы�]�U���P�e�>�t����P�S��]ø���V3��B2���2�����Ut
����&P�,�&^Ï��8�t)��&�,�3����3��u�GG�>�����ыѿ&�����< t�<  t�<
to
        !          10319: �tkGN�< t�<    t�<
t\
        !          10320: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          10321: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>�G��׀��+�ģ���6�?CC�6��
        !          10322: �u���6���3���< t�< t�<
u�
        !          10323: �u�y�6�?CCN�< t�<     t�<
tb
        !          10324: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          10325: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �w_�ϋ���.��3�I��<;Ct�~EE��
        !          10326: �u���N]��]�U��VW�V�@�;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          10327: �u#�>�r
<"s
< r���<v���ט��Ê���U���WV�v�D��F���-,������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�,�������������&uF��4t��<u3�v��E���u-�R��4u�R ���Z�D��^��G�&��V�&���Du�ށ�,�������������&tP�<+|�D@��^��GH�D�~W�t�v������F����^��� t�P+�PPS�.���\�F����&��P�FP�v�����F�9~�t����F*�^_��]ÐU���V�v�R��4u�F�R       ����<u$�F�Z�Du�ށ�,�������������&t+��5��-,������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~4t�~<uv�^�G�P�����td�F-,������������F��v�����^���G�^��+���G�*��^�R      t�Zu�G�P�s���t �v���^��]�U��d&�   �WV�v�����@    �F�0   �F�$   �:     �8   �|�<%t�X�<        &+��,  �(      �6      �*      �4      �2      �&      �"      �.      �F      �|&0u<F�F    0�3�<+u
�,    �2     �"��< u
�>,   u�2  ��"   �       �<-u��.        F��P�����u�V�B      P�f�����>B    }�.  �B      �أB    �<.u#�4        FV�<    P�<�����><    }
        !          10328: �<    &�4   ��=Ft2=Nt5=ht =lu�*      �>*   u�<Lu&F�<u�&�*    &���* ���* �ӊ�����=Et
        !          10329: =Gt=Xu      �(     ���� ����-c=v�&��.����0 ��8    ��0   �i&��6        �"     �
        !          10330: P�&���Q&�����&  �(     �>4     u      �>     &���>        �4   �<     �>*   u�+��*      �F�9B  t'�B    �F��>.  t      �B     ���.B        �B     �}+��B        �0     �P�����:P�����~�t"�>.  t�F�-�B     �}+��B        ���B  �.0   �P�������/�+�P��&�*���&����������>*       t��N��G�=t�=%u���+�PV�������<t�|��>8   uY�$  �G tO����MTpZZZdpddddX��ddJdlddD�>:      t�>8  u�$  �G u��F뙐�8  ^_��]ÐU���WV�~
        !          10331: t�6  �>*     t�>*  u�0  ��W�F��V��0  �*�>6  t�0  ��F��F����0        ���F��V��0    �>"    t
�F�F�t�F�+��D    �6@     �>6     u*�~�}$�~
        !          10332: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v��q���>4  t!W�  ���<  +ȉN����0F��I���N�(       ���t<a|�, FG�}�u�>6      u�,   2     t�~�u�&�+�P���^_��]ÐU���WV�~t�&�0        �F��^��0       ��>* u�0  ��W�F��V��0  ���0 ��F��F��^��0  �>*    u
�F�F�u��� �~�u   ���F��^��F��V��F�V�+�964      t�<   ���^��F�&�?tF;�~��F�^��F�&�?u�>B +��>.   uW�&��V�v��v��o&���>.      tW�&��^_��]�U����0        �F��~gt�~Gu�&�*��F��>4     u�<  �~�t
�><     u�<  &�6(   �6<     �v�6@  �v��T��
        !          10333: �~�t�>"      u�6@  �V���>"      t�><  u�6@  �Z���0      �D    �,    2     t�v��\���t�&�+�P�&��]�U��V�>:  u/�$  �Ox�F�7��*���S�v�o���@u�:     ���8  ^]ÐU���WV�>: uI�v�~B��6$ �6F     �7���@u�:    ��N�~�$      �Ox۠F �?��*��܃>:   u�F&8       ^_��]�U���WV�v�>:    uP��6$        �^&��P�����@u�:    �F��N�t�$   �Ox��^&��$  �?��*��҃>:   u�F&8       ^_��]�U���
        !          10334: WV�6@  +��F��F��>F     0u94  t9&   t9>   u�F    �>B   V����F�+�+~�>.      u�<-u�>F     0u��P�����N��>F      0t�~�>.      t�~t�F��_�>D      t�F��j�>.    u&W�����~t �~�u�5�>D    t      �~�u�=�v�V������>. t
�F   W�a���^_��]Ã>,      t�+�� P����Ð�0P������>D       u�>(  t�X���xP�����ÐU���WV�v�F�&�<*u�0   �?�0   F�H��<-u�F���F+��<0|5�<909>4 u�<0u�F      0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          10335: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          10336: Ǵ=�!s=u    ��&t���?����%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�y��F��u�Fu0�>�!�F$
        !          10337: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;r
        !          10338: �>�!����
        !          10339: N���&���Ë�]�2��ܡ���#�3ɨ�u��&�U����^;r�  ������ t�B3ɋ��!r����tn�V3��F��F��WV����f��N�T�
        !          10340: �uJ�=�vH���ܺ=(s��+�ԋ��N�<
        !          10341: t;�t����#�a�
;�u���
        !          10342: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u���@t
        !          10343: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          10344: �!W�~��]�M�U�u�E
        !          10345: r3���q�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP�L�F�V�^�㋿|�ƙ����u�~~&G�<�RP�F�RP��+�SQ�ȋF
        !          10346: �ڙRP�N�^��&칀Q�&SQ�ȸm&����ЋF�ǙRP�N��^����F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF������&F�V�DP�F��FH�F��F
        !          10347: �F�>�t�F�P�N���t        �n��^��F�V�^_��]�U��֋v�^��
        !          10348: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          10349: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌�3�WV�v�~u�v
        !          10350: �vV�V ���&+�P��t�P�F�P�F�P�v
        !          10351: �v�#��@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW����t�v���t�PV�v�����F���V�v���P������u
�v�����z���@PVW���P�������v���t�PW�v����F��>�u+�EP�.PW�q���P�����v���t�PW�v�n���F�W�,���v��#���F�^_��]ÐU������WV��(����v
        !          10352: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          10353: �t�&:t�JP������u��|����PV�F�P������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�OPW����vW����v
        !          10354: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
������r59�s%P�ر��ً�+���ËشJ�!Xr$�H����.�&�Ë��#�U���V�F-,������������F��P�����^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;r�    �*�F�tH�~
        !          10355: t3ɋѸ&B�!rK�F
        !          10356: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          10357: �B�!r������Y�*;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١�+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          10358: �t���2���^_��]�U��VW��2U��^;}��|��@t�&�3���]��>H    u��H       ÐU���WV��P�]߃����u��<u��PV�6��k�����RP��V�)߃�RP�壤��+���ހ?t��ފ�����Qu      ��ހ?-uG��|؋�ހ?t�P���P�6��  ����������?&�@��^_��]�U���WV�v�|}��| ~��|~      �|     }��|
        !          10359: ��l���~�|u�\�㋇~�
        !          10360: ��\�㋇��F���u�F��|
        !          10361: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U���WV+�9vu��F�~t)�F�F����^��F��7����@��^��?t���v��F��t�^���&u�N�u�~�t�F���~t�v�I����F�v���v����
        !          10362: ����&��6����F��F�P�Y܃��F��u!�v��I܃����u�����6�뷋~��6��^�~��?��$��F��^
        !          10363: ���?�~t-�F�F��+�P�^��7W�z܃�P����@���F��^��?uۃ~�t>+�P��PW�P܃�P�������F��G+��N���t������GF��N��G�G�~t�&G�G�vW�܃�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ۃ�P�������F��^��?t� GF�^��?t,�7�����F��=}v�����
        !          10364: �^�7��ڃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
���������VW�؋^
        !          10365: ���ã��F�����6�F��&)�!�&)��!U�>�}!.�>5.�&<5�.�5.�6@5�u.�6B5.�D5���~t�3��2��P��!X�"&�V�K�!P�P�0�!<X[}!.�>5.�&<5�..�D5.�6B5�u.�6@5�5���"]_^r�M�!���6����������U���WV�,+����D�tV�*ك�@t&G��96Ds��^_��]ËN
        !          10366: �F�V�~W��
        !          10367: �t��
        !          10368: u�y
        !          10369: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�MS Run-Time Library - Copyright (c) 1988, Microsoft Corp.usage: %s [path]
        !          10370: inodes %d free %d
        !          10371: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          10372:       %s: (%s)  
        !          10373:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          10374: \*.*rewind failed�[m�;C_FILE_INFO���&& mC�RR&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          10375: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error���������     +=>?@L^_`ars�������������%.com.exePATH\�������;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�q�q<6<<NMSG>>R6000
        !          10376: - stack overflow
        !          10377: R6003
        !          10378: - integer divide by 0
        !          10379:       R6009
        !          10380: - not enough space for environment
        !          10381: �
        !          10382: �run-time error R6002
        !          10383: - floating point not loaded
        !          10384: &R6001
        !          10385: - null pointer assignment
        !          10386: ����$       �G u��F뙐�8  ^_��]ÐU��./special/holey.exe   777  20115     11       43006  4552136237   7601 MZ�& e��@�&z&n/�/U�� �     WV�F�B�F�p�F�&�F���F�4#�^��`�~&�%�KP�^�w���=t�
��&�N�F�~~�!�~&�4�NP�^�w��
��=t��6`�QP�`P�       ���&P�C���~&�!��P�^�w�
��=u�    �^�G�F��~�*��P�^�w�
��=u��^�w�
���F�V�~�'��P�^�w�M
��=u��^�w�e
���F��~�'��P�^�w�
��=u��^�w�5
���F��P����~� �#� P�v��6`��P�`P���
        !          10387: �&P�O����&P�v���
���F�=|�+�v��6`��P����P�S
������P�����&P����v��?��=u�+�v��6`��P����P�
������P����&P�����P�v�����F�=|�+�v��6`��P����P��������P�K���&P����F���F�~�|��v���F�������F�V쉆�߉��ߋ������u�,&�~�t�
�������u��F��;���}�~�      ;���w����ߋ��߉F��~�t��F�&�v�����P�v��K
        !          10388: ���F�;F�u�2�v��v��P�`P����>u�
        !          10389: �&P�t���&P����F��)�����ߋ������u�x�~�u�o�F�����ߋ��߃�&��;�}�~�;�w��ڋȉN��&P�F��RP�v����=��t����t��&P��
        !          10390: ���&P�1���F��)����������P+�PP�v��m��=��t����t�� &P�
        !          10391: ���&P�����F�V쉆�߉��ߋ������u�?�~�t�����&t�&����t�y&�F��;���}�~�  ;���w����ߋ��߉F��~�t��F�&�F��)��������F�)F��~�u�'&�>�u�1�v��������ߋF���N�^�+������+��SQ�/&P�`P�����v�����P�v�����F�=~�T�v��v��v��������ߋF���N�^�+������+��SQ�^&P�`P����~�|�
        !          10392: ��&P�v        ���&P����F������F�+‰F��>�u��v��v&P�`P�K���F���F�F��+���;F��/�v���F�9���u��v�&P�`P����&P�B��������������u�&�~�u�&�F�����ߋ��߃�&��;�}�~�;�w��Ӌ��F��F��)�������F���F�)F��F�&F��~�u�;&�F�= �� �F��>�u�4�v��v��������ߋF���N�^�+������+��SQ��&P�`P�D���v�����P�v������F�=~�T�v��v��v��������ߋF���N�^�+������+��SQ�P�`P�����~�|�
        !          10393: �KP�����&P����>�u��v�PP�`P����F���F�F�9F�|�H�v���u�8�F���N�^�+�������ڋF����SQ�\P�`P�h���&P�&����������P����P�&��^_��]ô0�!<s� �+�6+���r���ׁ�n
�s��3�P�f
        !          10394: ��L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6���0�p
+�3���;�     ��3��6>�6<�6:��P���+�ظ6���P���   ��P���0�!��5�!��
�%��!�J�.�&�6,�L��3�6�Hs�S6�P�ڻ6�H�&�,�6��3�&�=t,����t��3��u�����&������t&H������&��D�!r
        !          10395: �€t��&@Ky�T�T��T�T��U��V�V�}�T�V�t�U��V�V�f�V�V�l��t�~u�F�����&&t�>�!C����F�L�!�J���H��%�!�>Ht
�I�J�%�!�;�s
        !          10396: OO�
�������;�s���Et�����Y��+�r
        !          10397: ;Nr����3��k�U���WV�F�F��v�
        !          10398: �����FP�v�v�&�����vV�
        !          10399: ����^_��]ÐU���WV�X�F�F�V��       �����FP�vV��
        !          10400: ���F�VW�H
        !          10401: ���F�^_��]�U��^;$r�     ���>�!rƇ&��U����^;$r�      �*�F�tH�~
        !          10402: t3ɋѸ&B�!rK�F
        !          10403: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          10404: �B�!r��&��U���2��~��F���F���u�@u���u�F���V$
        !          10405: Ǵ=�!s=u    ��&t���?���%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�y��F��u�Fu0�>�!�F$
        !          10406: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;$r
        !          10407: �>�!����
        !          10408: N���&��&�Ë�]�2��ܡ��#�3ɨ�u��&�U����^;$r�� �\3��N�U��&uN�N�V�?�!s�   �>��&�t7��&�VW�������%�
�<
        !          10409: u��&�:�t<u��&��G���+�_^�o��&t�<
        !          10410: t�����&@t�D�!�� u  �V��?�!r԰
        !          10411: �,�F��V��?�!r��t�~&t����Ѹ&B�!�&�~�
        !          10412: t�
�V떋V딀~�
        !          10413: u��U����^;$r� �����& t�B3ɋ��!r���&�tn�V3��F��F��WV����f��N�T�
        !          10414: �uJ�*=�vH���ܺ=(s��+�ԋ��N�<
        !          10415: t;�t����#�a�
;�u���
        !          10416: �F����
��^_�U�E3��/�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���&@t�^�?u������F�+F��f�^_��N�u����V�@�!s�  ���u���&@t
        !          10417: �ڀ?u�������U��׋ތ؎��v�~3�������+��t������]��U�QU���WV�v��t&�<t!V��PV��P������P�jP��P�o����>|     �9|����㋷�V����PVW�?����&P�mPW�0���^_��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW������Mx*������W+�P�!����^_��]�U���v�P�v�>�����]�U��F%�&���]�U���P�e�>pt�p��P�S��]ø�U�V3��B2���2�����Ut
����&P�,�&^Ïr�8t)�&�,�B3����3��u�GG�>@�����ыѿ&����< t�<   t�<
to
        !          10418: �tkGN�< t�<    t�<
t\
        !          10419: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          10420: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>:�G��׀��+�ģ<���6�?CC�6@��
        !          10421: �u���6��3���< t�< t�<
u�
        !          10422: �u�y�6�?CCN�< t�<     t�<
tb
        !          10423: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          10424: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&rU��U�3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.>��3�I��<;Ct�~EE��
        !          10425: �u���N]��]�U��VW�V�^�;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â"
        !          10426: �u#�>r
<"s
< r���<v��tט�Ê���U���WV�v�D��F���-P������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�P�������������&uF��Xt��`u3�v��W���u-���Xu�`���b�D��^��G�&��V�B���Du�ށ�P�������������&tP�<+|�D@��^��GH�D�~W�t�v������F����^���& t�P+�PPS�����\�F����&��P�FP�v��~����F�9~�t����F*�^_��]ÐU���V�v���Xu�F�`����`u$�F�b�Du�ށ�P�������������&t+��5��-P������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~Xt�~`uv�^�G�P��
        !          10427: ���td�F-P������������F��v�C
        !          10428: ���^���G�^��+���G�*��^�`t�bu�G�P�
        !          10429: ���t �v�
        !          10430: ��^��]�U��d&��WV�v�����N�F�>�F�2�H�F�|�<%t�X�J&+��:�6�D�8�B�@�4�0�<�T �|&0u<F�T0�3�<+u
�:�@�"��< u
�>:u�@��0�      �<-u��<F��P�����u�V�PP�f�����>P}�<�P�أP�<.u#�BFV�JP�<�����>J}
        !          10431: �J&�B��=Ft2=Nt5=ht =lu�8�>8u�<Lu&F�<u�&�8&���8���8�ӊ�����=Et
        !          10432: =Gt=Xu      �6���� ����-c=v�&��.����>��F��>�i&��D�0�
        !          10433: P�&���Q&�����4�6�>Bu       �L&���L�B�J�>8u�+��8�F�9Pt'�P�F��><t   �P���.P�P�}+��P�>�P�����:P�����~�t"�><t�F�-�P�}+��P���P�.>�P�������/�+�P��&�*���&����������>8t��N��G�=t�=%u���+�PV�������<t�|��>FuY�2�G tO����Mt�zzz������x����j����d�>Ht�>Fu�2�G u��F뙐�F^_��]ÐU���WV�~
        !          10434: t�D�>8t�>8u�>��W�F��V��>�*�>Dt�>��F��F����>���F��V��>�>0t
�F�F�t�F�+��R�6N�>Du*�~�}$�~
        !          10435: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>Bt!W�����J+ȉN����0F��I���N�6���t<a|�, FG�}�u�>Du�:@t�~�u�&�+�P���^_��]ÐU���WV�~t�&�>�F��^��>��>8u�>��W�F��V��>���>��F��F��^��>�>8u
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96Bt�J���^��F�&�?tF;�~��F�^��F�&�?u�>P+��><uW�&��V�v��v��o&���><tW�&��^_��]�U����>�F��~gt�~Gu�&�*��F��>Bu�J�~�t
�>Ju�J&�66�6J�v�6N�v�� ��
        !          10436: �~�t�>0u�6N�"���>0t�>Ju�6N�&���>�R�:@t�v��(���t�&�+�P�&��]�U��V�>Hu/�2�Ox�F�7��*���S�v�o���@u�H���F^]ÐU���WV�>HuI�v�~B��62�6T�7���@u�H��N�~�2�Ox۠T�?��*��܃>Hu�F&F^_��]�U���WV�v�>HuP��62�^&��P�����@u�H�F��N�t�2�Ox��^&��2�?��*��҃>Hu�F&F^_��]�U���
        !          10437: WV�6N+��F��F��>T0u9Bt94t9Lu�T �>PV�&���F�+�+~�><u�<-u�>T0u��P�����N��>T0t�~�><t�~t�F��_�>Rt�F��j�><u&W�����~t  �~�u�5�>Rt �~�u�=�v�V������><t
�T W�a���^_��]Ã>:t�+�� P����Ð�0P������>Ru�>6t�X���xP�����ÐU���WV�v�F�&�<*u�>�?�>F�H��<-u�F���F+��<0|5�<909>Bu�<0u�T0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          10438: :u��&��+�^��]ÐY�N;�s+�����3���U��׌؎��~3�������I���]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]Ë��r59�s%P�ر��ً+���ËشJ�!Xr$�H����.�&�Ë���U���V�F-P������������F��P�&&���^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U���WV�v+��D$<uF�Du�ށ�P�������������&t'�+D�F��~P�t�D�P���;F�t�L ����D��D��^_��]�U��VW��U��^;$}��|��&@t�&�3���]�U���WV�P+����D�tV�J���@t&G��96hs��^_��]�U��^�t�O�&��]�U��VW�0�?u)���&u3���$@$��0�2��&���D����66�N�؎��i_^��]ËN
        !          10439: �F�V�~W��
        !          10440: �t��
        !          10441: u�y
        !          10442: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�>��&�D=��t%���&t��H;�s����&t�����D���G�t���&�Dt�،�;�t&�:�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�>��G3���Q�E��&t+�IAA��&;@v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u     ١+؎��J�!r
;�u�������MS Run-Time Library - Copyright (c) 1988, Microsoft Corpholefile-d-husage: %s [filename filesize datasize holesize]
        !          10443: ----%s: datasize (%d) greater than maximum (%d)
        !          10444: %s: creat of %s%s: close of %s after creat%s: open of %swrite ret %d (expect %d)
        !          10445: writelseek (write)lseek (rewind)--data read: offset %ld, sz = %ld, bytes = %d
        !          10446: read (data) offset %ld, sz = %ld, bytes = %d (ret = %d), datasz = %d
        !          10447: read  ret = %d, ct = %d
        !          10448: bad data in %s
        !          10449: ++hole read: offset %ld, sz = %ld, tot = %d, bytes = %d
        !          10450: read (hole) offset %ld, sz = %ld, bytes = %d (ret %d), holesz = %d
        !          10451: read  ret = %d
        !          10452: non-zero data read back from hole (offset %ld)
        !          10453: 
        !          10454: Holey file test ok
        !          10455: �    +�;C_FILE_INFO���&&D+Cp`   `     &&�&�: 
        !          10456: 
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error������������� *<=>?PQefgh���������%����� �<<NMSG>>R6000
        !          10457: - stack overflow
        !          10458: R6003
        !          10459: - integer divide by 0
        !          10460:       R6009
        !          10461: - not enough space for environment
        !          10462: �
        !          10463: �run-time error R6002
        !          10464: - floating point not loaded
        !          10465: &R6001
        !          10466: - null pointer assignment
        !          10467: ���NB00]j       HOLEY.OBJzD:\MSC\5.1\LIB\BINMODE.OBJz�&dos\crt0.asm,o&&dos\crt0dat.asm�        &
        !          10468: chkstk.asm�  >&        fprintf.c�    <&printf.c,
        !          10469: &_file.c,
        !          10470:  &
dos\close.asmL
        !          10471: z&
dos\lseek.asm�
        !          10472: �&&dos\open.asmj�&dos\read.asmH
(&&     write.asmp+&
        !          10473: strcmp.asm�&atoi.asm�&atol.asm�~&perror.c"V&  sprintf.cx&   creat.asm�&   umask.asm� &dos\crt0msg.asm�&
        !          10474: crt0fp.asm�"&
        !          10475: chksum.asm��&&dos\stdargv.asmxn&dos\stdenvp.asm�T&dos\nmsghdr.asm:T&dos\dosret.asm�V&&  _flsbuf.c�&&   _sftbuf.c��&output.c�&stackava.asm�&
        !          10476: strlen.asm�T&atox.asmH&syserr.cHB&dos\stdalloc.asm�&_cflush.asm�l&  _getbuf.c�n&fflush.cd
        !          10477: &        ultoa.asmn&cmiscdat.asmn#&
        !          10478: isatty.asm�2&
        !          10479: flushall.c�X&nmalloc.asm _&xtoa.asm| a&&amalloc.asm�!�&dos\brkctl.asm`+�_Prog�+�_Debug�_main�+__fmode�+__iomode0+_edatap
+_end�+__aexit_rtn�+__abrkp�+__abrktb�+__asizdsz__astart�+__atopsp�+ __abrktbe __cintDIVv�&
        !          10480: __acrtused__amsg_exit+__osversion+_errno   __exitF+__child$+__nfile,__cinit:+___argcI+__intno+
__dosvermajor"+__oserr<+___argv +
__dosverminor>+_environ&+__osfile!+__osmode+__pspadrH+__fpinitJ+__ovlvec@+__pgmptr�+    __acfinfoH+ __ovlflag+ __aintdiv+ __osmajor + __osminor+
        !          10481: __umaskvalL    
        !          10482: __ctermsub"+
        !          10483: __doserrno+__fac�_exit+__pspN+STKHQQ�   __chkstk�  _fprintf�  _printf`   +__bufin`+__bufoutb+__buferr�+__iob2h+   __lastiobP+__iob,
        !          10484: _closeL
        !          10485: _lseek�
        !          10486: 
        !          10487: __copensub�
        !          10488: _openY__cXENIXtoDOSmodej_readH
_writep_strcmp�_atoi�_atol�_perror"_sprintfx_creat�_umask�__FF_MSGBANNERp+    __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargvx __setenvp�__NMSG_TEXT__NMSG_WRITE:    __dosret0Z
        !          10489: __maperrorM
        !          10490: __dosretaxB__dosreturn�__flsbufh__ftbuf�__stbuf�__output�_stackavail�_strlen�__catox+     _sys_nerr�+_sys_errlistH      __myalloc+__cflush�__getbuf�_fflushd_ultoa +
__cfltcvt_tab.+__asizeC/+__asizeD,+__sigintoff*+__sigintsegn_isatty�    _flushall�_malloc�__nfree0+__asegds�      __nmalloc�_free( __cxtoa 
        !          10491: __cltoasub�!__amallocbrk:+__aseg1B+__asegh<+__asegn>+__asegr�!__amlinkB+     __QChdata  __amallocb!
        !          10492: __amexpand@+
        !          10493: __amblksiz�!_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&���+&u��c��&xH��&        x�&��&&�&&�&&�&x��&&�&&�&&�&&�&x��&��&&�&&�&&�&x��&&�&&�&&�&&�&&�&&�&&�&&�&&�&x�h&��&&�&&�&&�&&�&x����&&�&&�&&�&x����&&�&&�&&�&xx��&&�&&�&&�&x����&x0��&&�&&�&&�&xp��&x�x&��&x�0��&x(��&x����&x��&��&x� ��&x`��&x��&��&�jdmainY�߂sz���filenm    �ߠbuf���filesz���datasz���holesz
        !          10494: �argc
        !          10495: +argv���fd���&i    ���tot���ct���bytes  ���ret&&`+�Prog
+�errnoP+_iobholey.cj * /"4#<$]%c&f(j)�+�-�.�/�0�1
&2.&3=&4^&6m&7w&9�&:�&<�&=�&>�&?�&A�&B�&CDG#K;LQM\OfP{R�S�T�U�V�W�YZ[3]=_I`_a�b�c�e�g�h�i�j�mn!o>pdqmrrs~t�u�w�z�{|'}1;�L�V�j������������������"�3�=�q�����������������M�W�Z�]�`�j�t
        !          10496: SLIBCE.LIB`&&&&&U%&&�$&&��&&��&&&'&z&&E&��&&^&N�&&&z&&&�&0&&�&?&&�&MU&&   �&       �
&&
        !          10497: �&
        !          10498: �
&&&&�5&&&&�&&
6&&
�
&&L&&
        !          10499: &&c&&&&x&&$&&�&&0&&�&&>&&�&&M
&&�&&Z
&&�&&g5&&&�&&&�&&.&�&&J&�&&f&�%&&�&   D&&�&F     &&�&U     &&�&q     &&�&�     && �& �     &&!&!�     &&"#&"�     #&&#8&#�     &&$U&$�     &&%m&%�     &&&�&&�     &&'�&'
        !          10500: 
&&(�&(
        !          10501: V&&)�&)p
        !          10502: &&*�&*~
        !          10503: &&+�&+�
        !          10504: G&&,
&,�
        !          10505: &&-"&-�
        !          10506: �&&.:&.�&QNB00's = %d
        !          10507: read (data) offset %ld, sz = %ld, bytes = %d (ret = %d), datasz = %d
        !          10508: read  ret = %d, ct = %d
        !          10509: bad data in %s
        !          10510: ++hole read: offset %ld, sz = %ld, tot = %d, bytes = %d
        !          10511: read (hole) offset %ld, sz = %ld, bytes = %d (ret %d), holesz = %d
        !          10512: read  ret = %d
        !          10513: non-zero data read back from hole (offset %ld)
        !          10514: 
        !          10515: Holey file test ok
        !          10516: �    +�;C_FILE_INFO���&&D+Cp./special/negseek.exe   777  20115     11       33650  4552136303  10100 MZ�& c��a@��&&0�&'&�&��&U�� �%WV�~u��BP�"&P�%���&P�Y����&P�&P�^�w����F��~�|��^�w�)���&P�#����F��F��        �n��^��~��}�o~�
        !          10517: �~��w�`�P�v��v��v�������|��[P�����&P��&��� P����P�v�����=|��aP����P�&�����^�w����P�&��^_��]Ð�0�!<s� ��&�6+���r���ׁ��s��3�P�<��L�!���6�&n6�&j�Ʊ��H6�h��6��+��۴J�!6������ +�3���;�X��3��6&�6��6��d�P����&�ظ6�l�P�W����P�l�0�!���5�!�����%��&�!��.��&�6,���3�6�
        !          10518: s�)6��ڻ6�
        !          10519: ��&�,�6��3�&�=t,����t��3��u������������t&H���������D�!r
        !          10520: �€t���@Ky�������U����}���t�U����f���l��t�~u�F������&t�>�!C����F�L�!����
        !          10521: ���%�!�>
        !          10522: &t
�&�&�%�!�;�s
        !          10523: OO�
�������;�s���Et�����Y��+�r
        !          10524: ;&r����3��k�U���WV�F�F��v������FP�v�v������vV�����^_��]ÐU����^;�r� �*�F�tH�~
        !          10525: t3ɋѸ&B�!rK�F
        !          10526: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          10527: �B�!r�����U���2��~��F���F���u�@u�g�u�F���V$
        !          10528: Ǵ=�!s=u    ��&t���q���%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s���F��u�Fu0�>�!�F$
        !          10529: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          10530: �>�!����
        !          10531: N���&����Ë�]�2��ܡ���#�3ɨ�u��&�U����^;�r�� �\3��N�U���uN�N�V�?�!s�   �>����t7����VW�������%�
�<
        !          10532: u����:�t<u�����G���+�_^���&t�<
        !          10533: t������@t�D�!�� u  �V��?�!r԰
        !          10534: �,�F��V��?�!r��t�~&t����Ѹ&B�!�&�~�
        !          10535: t�
�V떋V딀~�
        !          10536: u��U���WV�v��t&�<t!V�g�PV��P�5
����P�,P��P�%
���>�|    ��9�|������㋷�V�&��PVW�����&P�/PW����^_��]ÐU��V�A�!�U���P�e�>2t�2��P�S��]ø��V3��B2���2�����Ut
����&P�,�&^Ï4�8�t)��&�,�&3����3��u�GG�>&�����ыѿ&�����< t�<     t�<
to
        !          10537: �tkGN�< t�<    t�<
t\
        !          10538: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          10539: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>��G��׀��+�ģ����6�?CC�6&��
        !          10540: �u���6���3���< t�< t�<
u�
        !          10541: �u�y�6�?CCN�< t�<     t�<
tb
        !          10542: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          10543: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&4U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     ��_�ϋ���.&��3�I��<;Ct�~EE��
        !          10544: �u���N]��]�U��VW�V� �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          10545: �u#�>�r
<"s
< r���<v��6ט��Ê���U���V�v����&u�F� ����"&u$�F�        �Du�ށ�&�������������&&t+��5��-&�����������&�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~&t�~"&uv�^�G�P����td�F-&�����������&�F��v�����^���G�^��+���G�*��^� t�      u�G�P�C���t        �v���^��]�U��d&��WV�v������F��F���
        !          10546: ��|�<%t�X�&+����������������� �|&0u<F�0�3�<+u
����"��< u
�>�u�����  �<-u���F��P�����u�V�P�f�����>}����أ�<.u#�FV�P�<�����>}
        !          10547: �&���=Ft2=Nt5=ht =lu���>�u�<Lu&F�<u�&��&���������ӊ�����=Et
        !          10548: =Gt=Xu      ������ ����-c=v�&��.���
������i&�����
        !          10549: P�&���Q&���������>u       �&������>�u�+����F�9t'��F��>�t   ����.��}+����P�����:P�����~�t"�>�t�F�-��}+������.�P�������/�+�P��&�*���&����������>�t��N��G�=t�=%u���+�PV�������<t�|��>uY���G tO����M�
��
�
�
�
��
�
�
�
����
�
�
�
��
�
�
�>
        !          10550: t�>u���G u��F뙐�^_��]ÐU���WV�~
        !          10551: t��>�t�>�u���W�F��V���*�>t���F��F�������F��V���>�t
�F�F�t�F�+���6�>u*�~�}$�~
        !          10552: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v��A���>t!W�����+ȉN����0F��I���N�����t<a|�, FG�}�u�>u��t�~�u�&�+�P���^_��]ÐU���WV�~t�&��F��^����>�u���W�F��V�������F��F��^���>�u
�F�F�u�J�        �~�u   �Q�F��^��F��V��F�V�+�96t����^��F�&�?tF;�~��F�^��F�&�?u�>+��>�uW�&��V�v��v��o&���>�tW�&��^_��]�U�����F��~gt�~Gu�&�*��F��>u��~�t
�>u�&�6��6�v�6�v�����
        !          10553: �~�t�>�u�6�����>�t�>u�6��������t�v������t�&�+�P�&��]�U��V�>
        !          10554: u/���Ox�F�7��*���S�v�-��@u�
        !          10555: ���^]ÐU���WV�>
        !          10556: uI�v�~B��6��6����@u�
        !          10557: ��N�~���Ox۠�?��*��܃>
        !          10558: u�F&^_��]�U���WV�v�>
        !          10559: uP��6��^&��P���@u�
        !          10560: �F��N�t���Ox��^&����?��*��҃>
        !          10561: u�F&^_��]�U���
        !          10562: WV�6+��F��F��>0u9t9�t9u� �>V����F�+�+~�>�u�<-u�>0u��P�����N��>0t�~�>�t�~t�F��_�>t�F��j�>�u&W�����~t  �~�u�5�>t �~�u�=�v�V������>�t
� W�a���^_��]Ã>�t�+�� P����Ð�0P������>u�>�t�X���xP�����ÐU���WV�v�F�&�<*u��?�F�H��<-u�F���F+��<0|5�<909>u�<0u�0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V�X�N��F�<t
        !          10563: :u��&��+�^��]ÐU����^;�r�    ������� t�B3ɋ��!r�����tn�V3��F��F��WV����f��N�T�
        !          10564: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          10565: t;�t����#�a�
;�u���
        !          10566: �F����
��^_�U�E3��1�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ����@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u����@t
        !          10567: �ڀ?u�������U��׌؎��~3�������I���]���nr59hs%P�ر��ً�+���ËشJ�!Xr$�H�h��.n&nË��Q�U���WV�v�D��F���-&�����������&�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�&�������������&&uF��&t��"&u3�v��W&���u-����&u� ���        �D��^��G�&��V�|&���Du�ށ�&�������������&&tP�<+|�D@��^��GH�D�~W�t�v��{����F����^���� t�P+�PPS����\�F����&��P�FP�v��>����F�9~�t����F*�^_��]ÐU���WV�v+��D$<uF�Du�ށ�&�������������&&t'�+D�F��~P�t�D�P�����;F�t�L ����D��D��^_��]�Y�&;�s+�����3���U��VW���U��^;�}��|���@t�&�3���]�U���WV�&+����D�tV�8���@t&G��96*s��^_��]�U���V�F-&�����������&�F��P����^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]ËN
        !          10568: �F�V�~W��
        !          10569: �t��
        !          10570: u�y
        !          10571: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�U��^�t�O�&��]�U��VW���?u)��s&u3���$@$�������&���D����6��N�؎��     _^��]���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&���&�=��t%���&t��H;�s����&t�����D���G�t���&�t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&���G3���Q�E��&t+�IAA��&;v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��VW�~u8�n�V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9hs&����������;�u ١�+؎��J�!r
;�u�h�����MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: negseek filename
        !          10572: lseekread���&n;C_FILE_INFO���&&&�&C   &&�&�&: 
        !          10573: 
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error^fg������������������&'()*BCDEFTef�%::::: r<<NMSG>>R6000
        !          10574: - stack overflow
        !          10575: R6003
        !          10576: - integer divide by 0
        !          10577:       R6009
        !          10578: - not enough space for environment
        !          10579: �
        !          10580: �run-time error R6002
        !          10581: - floating point not loaded
        !          10582: &R6001
        !          10583: - null pointer assignment
        !          10584: ���NB00�&NEGSEEK.OBJ&D:\MSC\5.1\LIB\BINMODE.OBJ&�&dos\crt0.asm�&o&&dos\crt0dat.asm>&
        !          10585: chkstk.asmT>& fprintf.c�&_file.c�z&
dos\lseek.asm�&&dos\open.asm��&dos\read.asm�~&perror.c
&dos\unlink.asm &dos\crt0msg.asm:&
        !          10586: crt0fp.asm@"&
        !          10587: chksum.asmb�&&dos\stdargv.asm�n&dos\stdenvp.asm^  T&dos\nmsghdr.asm�     T&dos\dosret.asm
        !          10588: &&       _sftbuf.c �&output.c�(&&      write.asm&
        !          10589: strlen.asm,&syserr.c,B&dos\stdalloc.asmn&_cflush.asmnV&&       _flsbuf.c�n&fflush.c2&stackava.asmD
        !          10590: &        ultoa.asmN&cmiscdat.asmN#&
        !          10591: isatty.asmr2&
        !          10592: flushall.c�l& _getbuf.c_&xtoa.asmpX&nmalloc.asm�a&&amalloc.asm*�&dos\brkctl.asm�_mainf�&__fmodef�&__iomode��&_edata �&_endl�&__aexit_rtn��&__abrkpn�&__abrktbh�&__asizds&__astartj�&__atopsp��&    __abrktbe�& __cintDIVv�&
        !          10593: __acrtused�&__amsg_exit��&__osversion��&_errno�__exit&�&__child��&__nfile�&__cinit��&___argc&�&__intno��&
__dosvermajor��&__oserr��&___argv��&
__dosverminor&�&_environ��&__osfile��&__osmode��&__pspadr
        !          10594: �&__fpinit&�&__ovlvec&�&__pgmptr��&     __acfinfo
        !          10595: &�&  __ovlflag��& __aintdiv��& __osmajor��& __osminor��&
        !          10596: __umaskval�
        !          10597: __ctermsub��&
        !          10598: __doserrno��&__fac�_exit��&__psp&�&STKHQQ>__chkstkT_fprintf �&__bufin �&__bufout         �&__buferr�&�&__iob2*�&        __lastiob&�&__iob�_lseek
        !          10599: __copensub_open�__cXENIXtoDOSmode�_read�_perror_remove_unlink__FF_MSGBANNER2�&        __adbgmsgv�& __acrtmsg:__fptrap@__nullcheckb        __setargv� __setenvp^      __NMSG_TEXT�       __NMSG_WRITE�          __dosret0�      
        !          10600: __maperror�    
        !          10601: __dosretax�    __dosreturn�
        !          10602: __ftbuf
        !          10603: __stbuf __output�_write_strlen��&   _sys_nerr��&_sys_errlist,      __myalloc��&__cflushn__flsbuf�_fflush2_stackavailD_ultoa��&
__cfltcvt_tab��&__asizeC��&__asizeD��&__sigintoff��&__sigintsegN_isattyr  _flushall�__getbuf__cxtoa
        !          10604: __cltoasub�_mallocp__nfree��&__asegds�    __nmallocp_free
        !          10605: __amallocbrk��&__aseg1�&__asegh��&__asegn�&__asegr�__amlink�&        __QChdata� __amalloc�
        !          10606: __amexpand�&
        !          10607: __amblksiz*_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&���+&u��c��&        x�&��&&�&&�&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x0��&&�&&�&&�&x(��&�&&main�
        !          10608: �argc
        !          10609: +argv���fd���&i    �ߟbuf&&
��&�errno&�&_iob        negseek.c$2<S\h r!�"�#�%�&�'�)�*�+&,&
        !          10610: SLIBCE.LIBP&&&&&�&&
        !          10611: P&&�j&&9X&& '&�&&G&��&&`&��&&&|&Q&&�&m&&�&|U&&�&�
&& �&       �5&&
        !          10612: �&
        !          10613: &&    &&&&&&-&&
9&&
I5&&U&&~&&l&&�&&�&&�&&�&&�&&�&&�%&&�&&�D&&�&&(&&&D&&&S
&&3&`&&J&n#&&_&�&&|&�&&�&�&&�&�&&�&�&&�&�
&&�&�V&& & B  &&!&!P     &&"5&"`     &&#K&#o     &&$`&$�     G&&%x&%�     �&&&�&&q
        !          10614: &�NB00����&��D&u�L�d�+��D���~��Du_�ށ�&�������������&&uF��&t��"&u3�v��W&���u-�./special/nstat.exe   777  20115     11       74656  4552136362   7630 MZ�&= �����oh
&��s
�
�\\\(_C_M_�_�_&_B&_d&_�&_u_,_�_�_�/$�(�U��>�qWV�~u��^�7�BP�tP�l���&P����^�w������P�F�P������&G;�|��F�P�^�7�o��������P�F�P�����F΋V�+F�V��VȉF��7F��86N        �FʋV�+F�V��VĉF��7F��:��5^��=�5F��8V �9��9~��=�fÞt�V�SP�lP����O�5F��8^    �v��;F��:������9�=�v��;F��4v҃����9�=�5F҃����9�=V�iP�lP�^���P�
��^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          10615: ��P���P�|����&P���P��������=|����P��P����&P�
���^������k��=|�������P�S���&P�����t�dž��������F9���|������v��P���P�������P����=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          10616: �v�v�v������P����=|���P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          10617: ��P���P�������P�>��=|�"�~t����P�&P�����&P����^���dž��������F9���|�������v�&P���P������P����=|�%�~u������P�&P����&P����v�v�v�v�v
        !          10618: �v�v�v������*&P���=|��-&P�G���&P��
        !          10619: �����P�4��=|����P�=&P����&P�
        !          10620: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6b�M&P�tP�&�������P�6b�_&P�tP����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          10621: �v�v�v�tP��
        !          10622: ��(�>+u�
�j&P�����l&P�tP�
        !          10623: ���tP��
        !          10624: ���~�t�
        !          10625: �&P��        ��^_��]�U���_
        !          10626: WV�P�&P���^_��]�U���@
        !          10627: WV�P�P�����*�,9$~�#}�    9"r��.&� �"@B�$�^�"�$+*,�G�W�^�� +&(��W^_��]�U���    WV�'�RP�^�w�w�3RP�^�w�7�n&P�lP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v��RP��&P�lP�e    ��^_��]�U��&�=       WV�~t���&P��
        !          10628: ���F=t��F�&����P�v�i��=t�<�v��&P���P������P����=u��v��&P�����&P����v�n��=|��v��&P�k����&P�����v�&��=|��v��&P�C����&P����^_��]�U���gWV�~t��P�   
        !          10629: ���F=t��F#�v�L&��=|��v�/P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          10630: �PP�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v������F�P����F�9F�u��^��P�P������&P���^_��]�U���WV�6b��P�lP�#���6b�X����P�M��^_��]�U����WV�v�4����v�
        !          10631: ���^_��]�U����WV�&P�v�
        !          10632: ���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v��    ���^_��]�U���TWV�v�v����^_��]�U���4WV�F�P�
����RP�F�*�+�QP�:�Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          10633: �F�P����F�P�v��^��=u�����V�^�F��G�G+�P�v�+�P�v��<
�^�G�W
        !          10634: +�P�v�+�P�v��$
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�fP�7����P�fP�����>�u�����&�P����h�>ht���~�jP�v��fP�g��=u���_�6h�jP�&���F�&��F��jP�,��=t�!�F�����������hP�jP�[&������F�H�f�d�`�^_��]�U����WV�F��F�F�jP�v��fP��
        !          10635: ��=u���P�����&P�     ���6h�jP�����F�&��F��jP�
        !          10636: ��=t�!�F�����������hP�jP�������F�H�f�d^_��]�U���JWV�F�F�d��^_��]�U���,WV�F�F�f�9V~�}�9Fv��F�d^_��]�U����WV�F�F�f9d� ����d�d����������h�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁĞ�s�m
        !          10637: 3�P����L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�1����+�3���;���a
        !          10638: 3��6R�6P�6N��P�����ظ6���P��        �]��P���0�!�3�5�!��!�%��
�!�>  �.�1&�6,�@  ��3�6�<        s��  6�D    �ڻ6�<       �1&�,�6��3�&�=t,���t��3��u�����:������t&H������:��D�!r
        !          10639: �€t��:@Ky�H        �H      ��H   �J      ��U��`�`�}�J      �L      �t�U��L      �L      �f�L   �L      �l�   �t�~u�F�����:&t�>�!C����F�L�!�>        ���<        ��%�!�>\t
�]�^�%�!�;�s
        !          10640: OO�
�������;�s���Et�����Y��+�r
        !          10641: ;br����3��k�U���WV�F�F��v������FP�v�v�
�����vV������^_��]ÐU���WV�v+��D$<uF�Du�ށ�d������������&t'�+D�F��~P�t�D�P���;F�t�L ����D��D��^_��]�U��^;8r�      ���>�!rƇ:�,
        !          10642: U��^�t�O�&��]�U��VW�~�?u)��u3���$@$��~����&���D����6��N�؎��5_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��o�kU���WV�6R�tF�~t@�v�����������<t*�4����;�~��9=u�W�vS�����u֋�A&��+�^_��]�U���WV�v��t&�<t!V��PV��P�����P��P��P�����>+| ��9+|����+�㋷:V�Z��PVW�����&P��PW���^_��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW������Mx*������W+�P�����^_��]�U���v�P�v�����]�U�����P�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6R�F�P�v�+�P�Q���F�@u�>+t�F���F���6R�F�P��P+�P�i����]�U��V�C�!r�F�t������&�&C�!�`U��9�U��;�V�!�LU��:�V�!s�=u쒓�C<t
        !          10643: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�S��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�4���F�P�n��@�F��~�u;�~��V�������u �+���~9v�~
        !          10644: �+"+���F�PW�����^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�!�����t1��PW�����t��PW����t��PW����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�+����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th��PV�\���t����P+�P�v�������F��u�j�V����@t)�v������v������F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          10645: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u�+�V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          10646: �}G�V�����F
        !          10647: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          10648: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          10649: ؋^u�F���]���ȋF�f
        !          10650: ȋF��ы�]����4�G0�G�0�G�/�Gp0�U���P�e�>�t����P�S��]ø���V3��B2���2�����Ut
����&P�,�&^Ï��83t)�1&�,�V3����3��u�GG�>T�����ыѿ&���1�< t�<      t�<
to
        !          10651: �tkGN�< t�<    t�<
t\
        !          10652: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          10653: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>N�G��׀��+�ģP���6�?CC�6T��
        !          10654: �u���6�1�3���< t�< t�<
u�
        !          10655: �u�y�6�?CCN�< t�<     t�<
tb
        !          10656: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          10657: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�13ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �m_�ϋ���.R��3�I��<;Ct�~EE��
        !          10658: �u���N]��]�U��VW�V�v    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â6
        !          10659: �u#�>3r
<"s
< r���<v���ט�+Ê���U���WV�v�D��F���-d�����������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�d������������&uF��lt��tu3�v������u-����lu�b���j�D��^��G�&��V����Du�ށ�d������������&tP�<+|�D@��^��GH�D�~W�t�v������F����^���: t�P+�PPS�$���\�F����&��P�FP�v�����F�9~�t����F*�^_��]ÐU���V�v����lu�F�b����tu$�F�j�Du�ށ�d������������&t+��5��-d�����������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~lt�~tuv�^�G�P�z���td�F-d�����������F��v�����^���G�^��+���G�*��^�bt�ju�G�P����t    �v���^��]�U��d&�%�WV�v�����L�F�<�F�0�F�D�|�<%t�X�H&+��8�4�B�6�@�>�2�.�:�R �|&0u<F�R0�3�<+u
�8�>�"��< u
�>8u�>��.� �<-u��:F��P�����u�V�NP�f�����>N}�:�N�أN�<.u#�@FV�HP�<�����>H}
        !          10660: �H&�@��=Ft2=Nt5=ht =lu�6�>6u�<Lu&F�<u�&�6&���6���6�ӊ�����=Et
        !          10661: =Gt=Xu      �4���� ����-c=v�&��.��& �<��D��<�i&��B�.�
        !          10662: P�&���Q&�����2�4�>@u       �J&���J�@�H�>6u�+��6�F�9Nt'�N�F��>:t   �N���.N�N�}+��N�<�P�����:P�����~�t"�>:t�F�-�N�}+��N���N�.<�P�������/�+�P��&�*���&����������>6t��N��G�=t�=%u���+�PV�������<t�|��>DuY�0�G tO����M���������������������>Ft�>Du�0�G u��F뙐�D^_��]ÐU���WV�~
        !          10663: t�B�>6t�>6u�<��W�F��V��<�*�>Bt�<��F��F����<���F��V��<�>.t
�F�F�t�F�+��P�6L�>Bu*�~�}$�~
        !          10664: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>@t!W�   ���H+ȉN����0F��I���N�4���t<a|�, FG�}�u�>Bu�8>t�~�u�&�+�P���^_��]ÐU���WV�~t�&�<�F��^��<��>6u�<��W�F��V��<���<��F��F��^��<�>6u
�F�F�u���      �~�u   ���F��^��F��V��F�V�+�96@t�H���^��F�&�?tF;�~��F�^��F�&�?u�>N+��>:uW�&��V�v��v��o&���>:tW�&��^_��]�U����<�F��~gt�~Gu�&�*��F��>@u�H�~�t
�>Hu�H&�64�6H�v�6L�v�����
        !          10665: �~�t�>.u�6L�����>.t�>Hu�6L�����<�P�8>t�v������t�&�+�P�&��]�U��V�>Fu/�0�Ox�F�7��*���S�v�o���@u�F���D^]ÐU���WV�>FuI�v�~B��60�6R�7���@u�F��N�~�0�Ox۠R�?��*��܃>Fu�F&D^_��]�U���WV�v�>FuP��60�^&��P�����@u�F�F��N�t�0�Ox��^&��0�?��*��҃>Fu�F&D^_��]�U���
        !          10666: WV�6L+��F��F��>R0u9@t92t9Ju�R �>NV����F�+�+~�>:u�<-u�>R0u��P�����N��>R0t�~�>:t�~t�F��_�>Pt�F��j�>:u&W�����~t  �~�u�5�>Pt �~�u�=�v�V������>:t
�R W�a���^_��]Ã>8t�+�� P����Ð�0P������>Pu�>4t�X���xP�����ÐU���WV�v�F�&�<*u�<�?�<F�H��<-u�F���F+��<0|5�<909>@u�<0u�R0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          10667: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          10668: Ǵ=�!s=u    ��&t���?����%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�y��F��u�Fu0�>�!�F$
        !          10669: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;8r
        !          10670: �>�!����
        !          10671: N���&��:�Ë�]�2��ܡ-��#�3ɨ�u��&�U����^;8r�  ������: t�B3ɋ��!r���:�tn�V3��F��F��WV����f��N�T�
        !          10672: �uJ�
=�vH���ܺ=(s��+�ԋ��N�<
        !          10673: t;�t����#�a�
;�u���
        !          10674: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���:@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u���:@t
        !          10675: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�w�����Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          10676: �!W�~��]�M�U�u�E
        !          10677: r3���q�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP�0�F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          10678: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�����
        !          10679: &F�V�DP�F��FH�F��F
        !          10680: �F�>t�F�P�h���t        �n��^��F�V�^_��]�U��֋v�^��
        !          10681: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          10682: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌�O�WV�v�~u�v
        !          10683: �vV�����&+�P��t�P�F�P�F�P�v
        !          10684: �v����@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v����F���V�v���P������u
�v��w���z����PVW����P����+�v���t�PW�v�@���F��>+u+��P�.PW�q���P�����v���t�PW�v����F�W����v�����F�^_��]ÐU�����WV��(����v
        !          10685: �v�v�v������|�@u2�>+u+�^���&�</t<\t
        !          10686: �t�&:t��P�u�����u��|����PV�F�P������F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW����vW����v
        !          10687: �vW�v�������|�@u��>+u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
���ZZ����*�P-����d���㋏����O�s
        !          10688: ��P�꡸eP����U���WV�v�������&t� ����=et
F�������u�����.F���F��Lj�~�F�|�u�^_��]�U���WV�v���<.tF�<u�F�|�t0��<et�<EtF�<u���N����N�<0t��<.u&NF�G�
        !          10689: �u�^_��]�U����^�9�8f      �9��9~��=�f��r�&��]Ð+���]�U���WV�~t�v�����^���������^_��]��v�����~��������^��9F��5�=^_��]�U���WV�>�t1�T�F��؃?-u�&��+���v�~~�&�+�PV�-���I�^�w�w�w�7����F�P�F@P�~~�&�+��^��F��?-u�&�+�F�FP�n���v�^��?-u�-F�~~  �D&�F�.��P�>�&���F�P�U߃����~
        !          10690: t�EF�^��_�?0tG�^��GH���}�؋��-F��d|�Ǚ�d���Ǚ����F��
        !          10691: |�Ǚ�
        !          10692: ���Ǚ����F���F^_��]ÐU�����&�v
        !          10693: �v�v�v���F�����]�U���V�F��>�t6�T�F��؃?-u�&�+���v��9FuMƉF���F��0�^���8�^�w�w�w�7��
        !          10694: ���F�P�؋GFP�?-u�&��+�FP�)���v�^��?-u�-F��&PV�}&���0F��^�w�~~>�&PV�`&���.F�^��}&�G��;F~�F�FPV�;&���v�0PV�����F^��]�U�����&�v�v�v����F�����]ÐU���V�^�w�w�w�7��     ���T�؋GH���?-u�&��+�F�F�S�vP�H���T�wN96�}�&��*����6����|��9F}�v
        !          10695: �v�v�v�B���^��]À>�t�v�F�|�u��v����G��v�v�v�2���^��]�U��~et�~Eu�v�v
        !          10696: �v�v����'�~fu�v
        !          10697: �v�v����]Ð�v�v
        !          10698: �v�v����]�U��V�v�~tV�����@PV�F�P�2��^]Ë��r59�s%P�ر��ً1+���ËشJ�!Xr$�H����.�&�Ë��I�U���V�F-d�����������F��P�ۃ��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;8r�    �*�F�tH�~
        !          10699: t3ɋѸ&B�!rK�F
        !          10700: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          10701: �B�!r��:���Y�b;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6Ht;�t
�D�FV�:^s0����s�u������ڃ��۱��H�!r钉�T�63�_^��]ËN��9Lt����u���?��r9�ӎ�;�u9�s&����������;�u ١1+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          10702: �t���2���^_��]�U��WV�v�< t�<      uF��+�PPV���PV�   ����V�V�w����^�V^_]�U���WV�v�^��0F�~~�N�=t�G��0�F��N��~|�=5|����0N�<9t���^�?1u        �^�G���F@P�v�ك�^_��]�U��VW��lU��^;8}��|��:@t�&�3���]�U��S�^
        !          10703: &�&3�[��]�U��S�^3�&�[��]�U���]�
        !          10704: U��S�F
        !          10705: �^&�[��]�U���]�U���N
        !          10706: �^�V�@�!3���]��>^u��^ÐU���WV��P�'ك����u��<u��PV�6�G�����RP��V��؃�RP�aߣ�
        !          10707: +���ހ?t��ފ������u    ��ހ?-uG��|؋�ހ?t�P���P�6����������?&�@�^_��]�U���WV�v�|}��|  ~��|~      �|     }��|
        !          10708: ��l���~�|u�\�㋇��
        !          10709: ��\�㋇��F���u�F��|
        !          10710: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U��׋ތ؎��v�~�NjN�*;�v���;�s����NO�����Ǩ&t�I�������]�U��׌؎��~�ߋN��F����&t�I�������]��*�C�ӻ�@�!�U���WV+�9vu�R�F�~t)�F�F����^��F��7����@��^��?t���v�8�F��t�^���9u�N�u�~�t�F���~t�v����F�v���v�+�6
        !          10711: ����&��6����F��F�P�Ճ��F��u!�v��Ճ����u�+�6�6�뷋~��6��^�~��?��$��F��^
        !          10712: ���?�~t-�F�F��+�P�^��7W�Ճ�P�1���@���F��^��?uۃ~�t>+�P�NPW�Ճ�P�������F��G+��N���:t��:����GF��N��G�G�~t�&G�G�vW�DՃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W�Ճ�P�������F��^��?t� GF�^��?t,�7�5���F��=}v��+�6
        !          10713: �^�7�.ԃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�+�����+�VW�؋^
        !          10714: ���ã\�F�^�`�6^F�j�&)�!�&)�z�!U�>3}!.�\<.�&Z<�.�5.�6^<�u.�6`<.�b<�\�~t�3��2��P��!X�Z&�V�K�!P�P�0�!<X[}!.�\<.�&Z<�..�b<.�6`<�u.�6^<�5���Z]_^r�M�!�f��L     ������+�Q�U��VW��؎��v��6�6�6�6���U��]���Ȭ��󤑪��2���U�M�E���_^��]�U���WV�d+����D�tV�$҃�@t&G��96|s��^_��]ËN
        !          10715: �F�V�~W��
        !          10716: �t��
        !          10717: u�y
        !          10718: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�f��������?���������?���&03���@� ��u��t���t
        !          10719: ���������&3���؎����W��^�L�d� �DD��Dt��y�-�������t�S�5>��=P����X�5.��9�5��7<�=3��������ȺM�⑰M���װ����������CW�߾���1>_�<�/�4��9>��=��AtG�;>�<�/�:�W�7<�5.��=�������������?�ً�3��������������֚��ٿ��2�QSRUVP������������������������Y�Y�Y�Y�Y�������������Y0��OI�0���������&Z[�U��VW3ۋV
        !          10720: �    &�(� ;vs��@�
_^��]�U��VW3ҋ^
        !          10721: �_^��]���؎��N�v�F&N��U�]+vv���
�u�E�]����5>5  �=P�5   �7      X�5.7   ��>    �6     Ή   �      �     3��uA�       
        !          10722: ��        �6     �2     �
        !          10723:      �     ��u��Bt��0� �     �.2     �5.5    �=É  �t�  �>     �7    �9�  �X��0�&��0X�u���߃����t���ǀu
        !          10724: ��ǀt�� �>  �     ���P3ɋ��r����r��Ӌ��������������ڀ������������t��3ɉ
        !          10725:        �     ���Xu�̀�&2�3���toN<Dt@<Et3�>      t_<+t<-uWN�$�>       tF�NN<+t<-t<9w<0r&�X�3������������ F��&�P��&��u
        !          10726: �>    u��@X�u����&t
��3ۉ       �     ��>   >     ��u+>        ��:&~�:&����}�����>        �>
        !          10727:        v���5��5��7.(        �:��9>3 �=�4   Au"�7��9�9>3   �=�3   t�2  &Q��mYË>   �9�W3������
��_��&�3���ߋ׋��z&r9
        !          10728: �u     �     ���k&P�DXЃ���������r��Q&s�����>@�xH�4����&3�V���     ����������^�7. �WUS�����X�X�X����������X��@�,X��02�X�u�̀���߃����t���ǀu
        !          10729: ��ǀt�� �>  �     ��y�P3ɋ��r����}r�P���&    ������&       �u����r�X���s���7��9�9>3  �=�3   t�2  &Q��mYû��.r���w����������x�����vt  <+t<-tN��N���bt�,0r�<       ~,r�
        !          10730: :    }�2��FN3���&����(u�  �����u����&u��$t�<.t�,0r�<  wδ��u�    � 
        !          10731: ��
        !          10732:        2��;6  s#��>  t< t�<        t�<
        !          10733: t�<
t�<ar<zw$_�2���@�@�@@�@P�@$�@���@ ��@���4@������N@��p+��ŝi@�%��O�@וC�)��@�D�����@զ��Ix��@����G���AkU'9��p�|B������~�QCv���)/��&D���������?
        !          10734: ףp=
        !          10735: ף�?;�O��n��?,e�X���?#�GG�ŧ�?�il��7��?�Bz�Ք���?��a�w̫�?[�Mľ����?S;uD����?��9E��ϔ?�⼺;1a�z?Y�~�S|�_?/�����D?��9�'��*?��d|F��U>�#Tw����=:zc%C1��<�8�G����;��C�y��D��W_��F�t'��������W%t�S���������2���<�/�:�[���MSEM87
        !          10736: gfw...GW:�&|&�&G`��d�&������.���NO87=
        !          10737: �VP��7�P��7�tr��3��&�=te��3�t��2��t��P��� �O&�
        !          10738: �t83������O+��ϋ�P�Ļ&SWQP��7�Ļ&S�8W�SP��7[����>uB��Q���Y3��X�>XQ���Y�&X?�>X?u�>XQ���Y@�X��t3���
hjj��7�>t �>u
        !          10739: �#s�����jh>h"��7�>u�x��>ujh�h��7�4�2��3�����Ã>u��>t���W#��6V��7À>t���3�:t����ã�ù�45��!@��E�������~�>t       ���U���4%��!@�����!@���!ù�4%���!@����À�>t��À��C�PU�����v�:�F �FS�^�(sކĉF�PU�����v����S����3��F2���&u
        !          10740: �&t��&��t��&��u�t��������u
        !          10741: �t������������"è&tP�F��=�&uX���F%8=&Xu4&����n     [��]���uX�PS��6�G6�G[X����VSQRW�^�N�ӊ̀�8���������tQ�V���&���u �� &u?��u��u�3���t��t       �&���&u��?�6;6u�����6����<�&&��t�I��V���&���t     ��&u�4��t��*��6;6u�������,�6;6u�j����6��uM�����t�>J�����w�.J������,�6;6t"���������,����6;6u�����6�V���&���u�� &u��u�F��ʀ���P��y���u����ʋ�����u$�����˛����t�À��F��f_ZY[^�l�$��&&_ZY[^����Q�N��8��t
��t��0��0uS���t��?�6;6u�a����6����<�NQ����&�N��PY��8��t��t$������N��-�N��8&��&t�w� ���@����������؛�>�
        !          10742: Y$��L��~��N���t�F�u�n�~��~t��>@&N�n�3ɉN�N�N�N�N��P�F%�&��&=�Xs������@u\��@WVQS���׃>t�>V�N�ـ���؀�����t   ��8���v
        !          10743: ��~�~�~�F��N�F��^[Y^_��>�
        !          10744: �S����u8����u1����u+����&u$���&u���u���u���u��� u���@u���ءu��L�!�[�Xϣ%<��>t���.�
        !          10745: á�3�:t��>��$?%���%�>t��>
        !          10746: ��
        !          10747: �������.����.
        !          10748: Ë
        !          10749: Q���
        !          10750: �&U��]�
        !          10751: �f�%�>t(��>
        !          10752: ��
        !          10753: �������.���.
        !          10754: ��Ë
        !          10755: Q���
        !          10756: �&U�H]�‹���6;6u�����6�
        !          10757: Ë �ъ.��€�?
        !          10758: ��ъ.����tّ����PUV���v���NN�v��������$&�İ��S�&� ��P�=����P�2\UV���vNN�v)S3�TX;�u(�@&%�0=�0u�@<�r�@&%��=��t�@&=��t��[^]XόTn��Vp��Lf��Jd�F\v�DZt�|Hb�BXr���.)}x���
r�
�
r�
r�
�
PhY�
,8D���;�F����r����% rv#�#�"�"rrrr�D$&!r��rrS����z�����������z��I���������6����)y���������6���������������6�����@B&&�&@�@����������?�����������&���j���0����Se�B׳�#,�k��
        !          10759: ����d��3���&5�h!���&���Kx��&��\);�������� ����y���r����{Z�>\i��7M�,������f��ˑX^���� &y�  �cfψp�9���F�����ˑX^���2[�ɤP�������K�����+�RJ�eBPU����K�$��C��8V
        !          10760: Ob��m�QP�;$m[ �P��K�$��C����t���T=���_��J���ow{8���
        !          10761: ]�{����~�      ��-�w���Wq����O1�5^����K�z��Ӳ�(       /�Ċ
        !          10762: ��vp>[���`�3������l��_�  �����UV���vNN�v���^]������PWVRQS��U����Ӌ��~GG�M������Ã���.����F�
        !          10763: �ێ���ӎÌF�W�ӊ�����G�M�.��v�PWVRQSU��ڋ��~�
����(sώ‹�� �PWVRQSU��؎���Ӌ��~G�M���4���Ŋ݃���.����‹��H3���v�F���Ћ‹���G�,3���v�F���Ћ‹��GG��5GG��ƋV�F������~����� ��������݃���&t.��&�S��[�؎��6�����>��G�~3����ߎǣ�������������&t.��6�l�Hr<�6���t�>���t����t.���6;6u�����6�2.���+���&�!�6���Հ������2�+�;>�&���&]��[YZ^_�   �Њ&��€�?
        !          10764: ��Њ&���uX��R��ك�.��F�ك�.��N����6;6u�x���6Ëك�.��V�ك�.��^��u��k��t$����u���t��TX;�uk��F���t��u�����u�������.��f�����.��v�����.�����u�����u�&�T��t3��J�@ú�����3һ��3҇����3һ��3һ��E����
        !          10765: D����2u
        !          10766: 2T
        !          10767: �M�D.�'�����Q�U
        !          10768: Ã����&�=�&    2���u
        !          10769: Ã�2       ���>       �&�>�.�.�.�.�.�.�����Ë>�;�t������������t�2�x�놋Ƌ߹�w��닋��+�|���������=C~/UR�u�&2�y�݋�M�]�}�x�I��&�������URQ2֜�譋Э�ȭ�ح3����tp��|�t��&��ыˋ�3���w�tSr)��|3�
        !          10770: �t��&�Ċ╊֊�͊�ߊ���2��wt(����������Fu������?t�� ������������΋������?t��&�Xx"L\|s����������s��&@���}+L\|s3���������������������X��P�U��2�R�@P"�3ۋ�ˋ�t��t����U��t�U�t        ���ڃ��D�t��t   ���ڃ�X�P3ɋ�t�U�t     ������D�t�U�t  ������D�t��t   �����X�P3ۋ�t
        !          10771: �e�ʃ��D�t�U�t        ���ʃ��D�t�U�t  ���ʃ��D��t       ���ʃ��Ձ��?X�P3�R�D�t
        !          10772: �e�ڃ��D�t�U�t        ���ڃ��D�U�t      ���ڃ�Q3ɋD�t
        !          10773: �e����D�U�t    ������D�e��Y]���ыˋ�X�t��&^�a&��2�URVW��������_^��譋ȭ�ح�Э���������3��r����������EU�>�JW��@W�<W�8�&���������r"��;Tu;Du;\u;s���
        !          10774: �2���Y[_^�<&�6�3�;�sb�u;�wA��RS�3�����t���P���t���ꡜ�t������[+��[�]蕒��sO����s��O+�����‹���ɰ�u����t���ًʋ�3���&    �>�X]������u������NJ��݊�Ί򗕊Ԋ�2�����ufN�������������t��S��
        !          10775: ͊��tD� ��r��r���wr'��&t"�XP��r���rXP��r���&��s��F3�Ջʊ�����r]��s��
        !          10776: �
        !          10777: Š�������t�� ��r��r��wr,��t'�XP��r���rXP��r�3�����s��F3�2��G���tA� ��r��r���wr,��&t'�XP��r���rXP��r�3��&���s��F�����M�]�EX]�䀈e
        !          10778: ��@}��&�~�u�Eþ& �`��e
        !          10779: Ã�������r��r"�2        �B��e
        !          10780: ���r
        !          10781: � �Āu�J   �*��e
        !          10782: Ã �Āt���&���&�����$&�Ȇċ6;6u� ���6�ʀ2�<�t!<t3�d
        !          10783: ,��D�t�T�|3��D�D�Èd
        !          10784: �@����u��u؀�&�ӈd
        !          10785: ���u�u�&���&뿃,�@H����
        !          10786: �y����u3������&u�\�D�d
        !          10787: �������d
        !          10788: �������6�D
        !          10789: �L
        !          10790: �u��L
        !          10791: �D=�}�=��~��d�������؋T
        !          10792: �2��\Tt7� �������r,��r2���rw��&t�Ѓ�&2�y       ������t���ë���r�
        !          10793: �x���
        !          10794: �x��Ճ(�������r��r1.�X ��
        !          10795: �.�V   ��ë����r�Āu�.�\     ��
        !          10796: �ë.�Z        ���Āt���0����=}7��T��
        !          10797: ƋT�\
        !          10798: �t��&����s��&����d
        !          10799: �䀊NJ��ފ�2��%�3����P����6;6u�N���6��&���&���&���&����������������������������Ӏˀ�\�L�T�l&�ʊ�怈t
        !          10800: 2��4����������=�t=t-��D�tø@����u��u��&����u�u�&��&�փ-��,�T�L�\@H���������y�,�T�L�\2����u     3������&��&u=�T&�\�D�L�����������������������ڒ��ë�«�|
        !          10801: �瀸�
        !          10802: �
        !          10803: �����\
        !          10804: �������
        !          10805: &럋��6�L
        !          10806: �u�L
        !          10807: �l��}߁�&�~܊�T&
        !          10808: �t��&��tR� �������r:��r0��t9��t4�\�D�L��������y&��E��|�S��s����r��r̋\�D�L�������������������������ڒ��ë�«�����������
        !          10809: ��L
        !          10810: ��
        !          10811: �Ã��(�\
        !          10812: �《������r��r�^  .�.�.�.�
        !          10813: �����r
        !          10814: �u�f  ��
        !          10815: �t����0����݋̓��t
        !          10816: �怊T�\�l�D&������������ū�ë�«�&����t13�݋Ӹ�6;6u�����62ɈL�π�y�߈l
        !          10817: �Y�6;6u����63���D�D�D�D&��d
        !          10818: �&�d�V�6�Du8�D&u.�L��*�l�|��\�*�u�d
        !          10819: 
        !          10820: �y��t3�x     _�«�3����&����&���&����t=3ۋӸ�6;6u����62ɈL�π�y��������&���l
        !          10821: �t�&�8���3�-�&V�_�«�ëË6�DuA�D&u2�L��3�l�|��\�|&�u!�d
        !          10822: 
        !          10823: �y��������&��3�x�3ҋ���t��&��3��&���&���&���&������t?�?�6;6u�T���62ɈL�π�y��l
        !          10824: �u�u����3�3�- ���r�V���_��ë�ū�«Ë6�DuO�D&u5�L��?A�l�|��\��d
        !          10825: 
        !          10826: �y�33�x;6u�����6�3�3�݋������u�ۃ&�������������������Ë6�L��?} �l�|��\�P3�����t�?���D&���D�D�D�D&��3���������r������������D��\�l�|�3���?��I|at+��@}[��0~��t&��3���߃�0��������s���������������t&� �u)�u1
        !          10827: �"���s3���&���ð&2�3���ߋ����u��D
        !          10828: �u����D
        !          10829: �u��ϋ��6;6u����6�����ڎŽإ������ڎŽ�&�������怈t
        !          10830: ��2�=�t=t%-�?�D�tø@��|�u�ll,u��&�ދlll,u�&��&�ʃ03�,�l�l�l����&u������
        !          10831: 櫋6;6u�����6�3���������
        !          10832: 櫋6;6u�����6���u�3�������6;6u����6Ë��6�D�?�t
        !          10833: ��
        !          10834: �|
        !          10835: �uĥ������;6u����6Ë6�d
        !          10836: Ë6�t
        !          10837: ��&��
        !          10838: �á���á���Ë6������E$*ȋE��M
        !          10839: 
        !          10840: �y��Dp=@}=&�~�D�y      �@�D��&��D&��&�3�� t���D
        !          10841: �e
        !          10842: 3ۊ\����
        !          10843: ]��.���2�xF
        !          10844: �y���ߋD;E|��������r        w�
@�@�
&�9�
�2�
A�+�t�$�x����t��x����t�2���t����t�6;6u�b���6Ë6�D
        !          10845: ����$�       .ע
Ë6�D
        !          10846: $�3ۋӊ\��.�����     ���    ���    ���    �
��    ��n    ��z    �6;6u�����6��>.�.�.�.�.�.�����sZ������;6�������>���t�؎����sZ�������FF�����sZ��6;6u�y���6�؎����a�����&t�~�sZ�n�ڎ��J��t�6;6u�Q���6�U�>�>�3��������E+D����M�]�E}�u�B�;Dr%w;\rw;Lrw;r��>�t�u���>�t
���su���t�}
        !          10847: ���P�Ń��.��&
����&u�������u    �t!�����@�u �t ������&�&
3��i�
�u�����@�
�@u����܀�&���Āu�>�t����������������r&���&�+L\DEË6�,���s ��r��u�    ��u���r���>   ������ËD
        !          10848: ��u�V�J�E
        !          10849: �DH�\�L�T�&t@���������E���r��9R�u����W�s�����3�����݋Ӌ������݋Ӌ�����X���݋ȃ�&����ى]�M�E���_�>����J����M���W��.�.�.�.�.�.���_�:��V�ɎًL
        !          10850: ��&�U
        !          10851: ��:�uEVW
        !          10852: �y���ʀ�&��&:�u(
        !          10853: �wʋL���?&�U���?;�u������u�u�u&��_^����ÿ~���WVS�r���>��(�^.��_��>�QV�r��^��V�V�� �^Y���^VS���^��.��[W���n�QV�r�>����^YQ��V�r���^V�����^Y���_Ë6�V�6;6u�S߃��6�>^�<�û�        �]�Ë>���D
        !          10854: ����6�6;6u�,߃��6É>��r���     ���s6���J���V��        ���>��K�z    ���=�^W����    ���>��H�^�=�&P���b
        !          10855: ����>��"�X
        !          10856: �t     ��      �Z��$�Ë6�&û�
        !          10857: ���W���>�����_�>�����E��Ë>���D
        !          10858: ����6�6;6u�vރ��6�V���Z�M��^W�f�C�]�E��   ���w�MCS�z    ����>����[_S�i[3��t9��y���۹I��s�W�ۿf����ë����«�Z�f�>��I��_�>��V�Ë>���D
        !          10859: ����6�6;6u��݃��6�W�J��V��      �R��>���^�
��E������>�����_�>������5�!��$��$�%�%�!�#5�!��$��$��$�#%�!�PR�%.��$�!ZX�PR���.��$�#%�!ZX.�.�$�.�>�$Q���Y.��$�t�:��.�.�$�L&MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s count
        !          10860: %d calls 0.0 seconds
        !          10861: %d calls %.2f seconds %.2f calls/sec %.2f msec/call
        !          10862: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          10863:       %s: (%s)  
        !          10864:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          10865: \*.*rewind failed����;C_FILE_INFO���&&X�C�b
b
&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          10866: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- #      Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error)*+,-?Qabcs���������������������
,%.com.exePATH\010203040506070809101112M61xxe+000��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO*�:�1#NAN1#INF1#IND2�f$��7y�AC���������C2$_d&��/��=��.A@�@<<NMSG>>R6000
        !          10867: - stack overflow
        !          10868: R6003
        !          10869: - integer divide by 0
        !          10870:       R6009
        !          10871: - not enough space for environment
        !          10872: �
        !          10873: �run-time error R6002
        !          10874: - floating point not loaded
        !          10875: &R6001
        !          10876: - null pointer assignment
        !          10877: �: MATH
        !          10878: - floating-point error: einvalid
        !          10879: fdenormal
        !          10880: gdivide by 0
        !          10881: hoverflow
        !          10882: iunderflow
        !          10883: jinexact
        !          10884: kunemulated
        !          10885: lsquare root
        !          10886: m
        !          10887: nstack overflow
        !          10888: ostack underflow
        !          10889: pexplicitly generated
        !          10890: �������D�U�t   ������D�e��Y]���ыˋ�X�t��&^�a&��2�URVW��������_^./special/op-chmod.exe   777  20115     11       46150  4552136430  10165 MZ�& ���i@�p�&�&m�Cfm�m�mU���WV�F�B�F��P��P�P
        !          10891: ���v������&P�P�v�����F�=|��v��KP��P����]P����bP����v��|P��P�m
        !          10892: ����P�]���&P�v������F��v��v���P�o���~�u�
        !          10893: ��P��&����P�R����P�����P��  P����dP��   P�v�����F�=du�2�dP�v���P��P�����~�|�
        !          10894: �&P�����&P�����P+�PP�v��7���F�=u�.�v��&P��P����~�|�
        !          10895: �/&P����&P����dP�0P�v�����F�=du�2�dP�v��6&P��P�3���~�|�
        !          10896: �P&P�<���&P�T���0P��    P����=u�"�F��V&P�1���0P��      P�z&P����
        !          10897: ��&P�����&P�����P��    ���v��1��=u�
        !          10898: ��&P�I���v��X
        !          10899: ��=|��v���&P��P�����&P�����&P����P�&��^_��]�U���=WV�v�g���&P�&��^_��]ô0�!<s� �i�6+���r���ׁ���s�� 3�P�@��L�!���6�&6�&�Ʊ��H6�
        !          10900: ��6��+��۴J�!6������+�3���;�\��      3��6��6��6����P���i�ظ6�$P�[ ����P��0�!���5�!�o�q�%�B�!��.��&�6,���3�6�s�-   6��ڻ6���&�,�6��3�&�=t,��b�t��3��u������������t&H���������D�!r
        !          10901: �€t���@Ky� � �� � ��U��$�$�}� �"�t�U��"�"�f�"�"�l��t�~u�F������&t�>�!C����F�L�!�����o�%�!�>�t
�����%�!�;�s
        !          10902: OO�
�������;�s���Et�����Y��+�r
        !          10903: ;�r����3��k�U���WV�F�F��v�&�����FP�v�v�
�����vV�����^_��]ÐU���WV���F�F�V�������FP�vV�_
���F�VW�P���F�^_��]�U��^;�r�        ���>�!rƇ���        U����^;�r�       �*�F�tH�~
        !          10904: t3ɋѸ&B�!rK�F
        !          10905: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          10906: �B�!r�����a  U���2��~��F���F���u�@u�        �u�F���V$
        !          10907: Ǵ=�!s=u    ��&t���    ���%=u      �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�S��F��u�Fu0�>�!�F$
        !          10908: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          10909: �>�!����
        !          10910: N���&����Ë�]�2��ܡ}��#�3ɨ�u��&�U����^;�r�� �\3��N�U���uN�N�V�?�!s�   �>����t7����VW�������%�
�<
        !          10911: u����:�t<u�����G���+�_^�I��&t�<
        !          10912: t������@t�D�!�� u  �V��?�!r԰
        !          10913: �,�F��V��?�!r��t�~&t����Ѹ&B�!�&�~�
        !          10914: t�
�V떋V딀~�
        !          10915: u��U����^;�r� ������ t�B3ɋ��!r�����tn�V3��F��F��WV����f��N�T�
        !          10916: �uJ�=�vH���ܺ=(s��+�ԋ��N�<
        !          10917: t;�t����#�a�
;�u���
        !          10918: �F����
��^_�U�E3��/�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ����@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u����@t
        !          10919: �ڀ?u�������U��׋ދv���؎�3������ы~�Ǩ&t�I�������]�U��׋ތ؎��v�~3�������+��t������]�U���WV�v��t&�<t!V�e�PV��P�U�����P��P��P�E����>{|   ��9{|����{�㋷NV�$��PVW�����&P��PW����^_��]ÐU���V�v��-�����������T�F�V���V�F���~u�L�d��^����@�D��G&���d�^��&�G�F�D��D^��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW������Mx*������W+�P�Y����^_��]�U���
        !          10920: WV�v�a�F����F���F�<t���F��F�+ҹ
        !          10921: ���0��F�+���F�N�<Xt�F�<t�~�t+��G�{�F��{+�P�v�{���t�>{
u�{��{u�F��{�ƋLjG�ϐ�F��{�F^_��]ÐU�����P����F��~u+�P�v�� ���u�&�Z+��V�F���F�F��F��~�t&�6��F�P�v�+�P����F�@u�>{t�F���F���6��F�P��P+�P������]�U��V�C�!r�F�t������&�&C�!�U��V�A�!�U���P�e�>�t����P�S��]ø�{�V3��B2���2�����Ut
����&P�,�&^Ï��8�t)��&�,��3����3��u�GG�>������ыѿ&�����< t�<     t�<
to
        !          10922: �tkGN�< t�<    t�<
t\
        !          10923: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          10924: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>��G��׀��+�ģ����6�?CC�6���
        !          10925: �u���6���3���< t�< t�<
u�
        !          10926: �u�y�6�?CCN�< t�<     t�<
tb
        !          10927: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          10928: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �_�ϋ���.���3�I��<;Ct�~EE��
        !          10929: �u���N]��]�U��VW�V�,�;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          10930: �u#�>�r
<"s
< r���<v���ט�{Ê���U���WV�v�D��F���-�����������T�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�������������T&uF���t���u3�v��5���u-����u������
�D��^��G�&��V����Du�ށ�������������T&tP�<+|�D@��^��GH�D�~W�t�v�������F����^���� t�P+�PPS�����\�F����&��P�FP�v������F�9~�t����F*�^_��]ÐU��V�v�D�t�Dt�t�K���d�+���D�D^]ÐU���V�v����u�F�������u$�F��
�Du�ށ�������������T&t+��5��-�����������T�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�t�~�uv�^�G�P����td�F-�����������T�F��v�K���^���G�^��+���G�*��^��t��
u�G�P�5���t      �v���^��]�U���WV�v+��D$<uF�Du�ށ�������������T&t'�+D�F��~P�t�D�P�����;F�t�L ����D��D��^_��]�U��d&��WV�v������F��F����|�<%t�X�&+�����������
        !          10931: �" �|&0u<F�"0�3�<+u
���"��< u
�>u�����        �<-u��
        !          10932: F��P�����u�V�P�f�����>}�
        !          10933: ��أ�<.u#�FV�P�<�����>}
        !          10934: �&���=Ft2=Nt5=ht =lu��>u�<Lu&F�<u�&�&�������ӊ�����=Et
        !          10935: =Gt=Xu      ����� ����-c=v�&��.��r������i&�����
        !          10936: P�&���Q&�������>u       �&������>u�+���F�9t'��F��>
        !          10937: t    ����.��}+����P�����:P�����~�t"�>
        !          10938: t�F�-��}+������.�P�������/�+�P��&�*���&����������>t��N��G�=t�=%u���+�PV�������<t�|��>uY��G tO����M:$$$.:...."NT...6..�>t�>u��G u��F뙐�^_��]ÐU���WV�~
        !          10939: t��>t�>u���W�F��V���*�>t���F��F�������F��V���>�t
�F�F�t�F�+�� �6�>u*�~�}$�~
        !          10940: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v��� ���>t!W�����+ȉN����0F��I���N����t<a|�, FG�}�u�>u�t�~�u�&�+�P���^_��]ÐU���WV�~t�&��F��^����>u���W�F��V�������F��F��^���>u
�F�F�u��        �~�u   �
�F��^��F��V��F�V�+�96t����^��F�&�?tF;�~��F�^��F�&�?u�>+��>
        !          10941: uW�&��V�v��v��o&���>
        !          10942: tW�&��^_��]�U�����F��~gt�~Gu�&�*��F��>u��~�t
�>u�&�6�6�v�6�v�����
        !          10943: �~�t�>�u�6�����>�t�>u�6������ �t�v������t�&�+�P�&��]�U��V�>u/��Ox�F�7��*���S�v�����@u����^]ÐU���WV�>uI�v�~B��6�6"����@u���N�~��Ox۠"�?��*��܃>u�F&^_��]�U���WV�v�>uP��6�^&��P�=���@u��F��N�t��Ox��^&���?��*��҃>u�F&^_��]�U���
        !          10944: WV�6+��F��F��>"0u9t9t9u�" �>V�&���F�+�+~�>
        !          10945: u�<-u�>"0u��P�����N��>"0t�~�>
        !          10946: t�~t�F��_�> t�F��j�>
        !          10947: u&W�����~t       �~�u�5�> t �~�u�=�v�V������>
        !          10948: t
�" W�a���^_��]Ã>t�+�� P����Ð�0P������> u�>t�X���xP�����ÐU���WV�v�F�&�<*u��?�F�H��<-u�F���F+��<0|5�<909>u�<0u�"0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V��N��F�<t
        !          10949: :u��&��+�^��]ÐY��;�s+�����3���U��׌؎��~3�������I���]�U���WV�6��tF�~t@�v������������<t*�4����;�~��9=u�W�vS�1���u֋�A&��+�^_��]�U�츌���WV�v�~u�v
        !          10950: �vV�����&+�P��t�P�F�P�F�P�v
        !          10951: �v���@u�������\PV�Z�����/PV�M���F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�n���F���V�����P������u
�v�����z����PVW����P�����{�v���t�PW�v����F��>{u+��P�.PW���P����v���t�PW�v�����F�W�,���v��#���F�^_��]ÐU�����WV��(����v
        !          10952: �v�v�v������|�@u2�>{u+�^���&�</t<\t
        !          10953: �t�&:t��P�������u��|����PV�F�P�>�����F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW�&���vW�&���v
        !          10954: �vW�v�������|�@u��>{u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
�������u�>�u      ���!
        !          10955: �u�,�!�£����r59
        !          10956: s%P�ر��ً�+���ËشJ�!Xr$�H�
        !          10957: ��.&Ë���U���WV��+����D�tV�h��@t&G��96�s��^_��]�U���V�F-�����������T�F��P�X���^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U��^�t�O�&��]�U��VW���?u)���u3���$@$�������&���D����6��N�؎��W_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��WV�~�v�ߋN��
        !          10958: �t���2���^_��]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��VW��U��^;�}��|���@t�&�3���]�U��W�~��3�����A�يF���O8t3���_��]�U��W�~3�����A��O�F��G8t3�����_��]�U���WV+�9vu���F�~t)�F�F����^��F��7�~���@��^��?t���vࡈ�F��t�^����u�N�u�~�t�F���~t�v�7����F�v���v�{��
        !          10959: ����&��6��F��F�P������F��u!�v���������u�{���6뷋~��6�^�~��?��$��F��^
        !          10960: ���?�~t-�F�F��+�P�^��7W���P����@���F��^��?uۃ~�t>+�P��PW���P�a������F��G+��N����t�������GF��N��G�G�~t�&G�G�vW�B��+��~G�^97tt9wt� GF���F��,v�+�P�^��7W���P��������F��^��?t� GF�^��?t,�7������F��=}v��{��
        !          10961: �^�7�v������
�^�ƈ�F�^_��]ÐU��~&t�~t
�{�����9�VW�؋^
        !          10962: ���ã��F�����6�F���&)�!�&)���!U�>�}!.��".�&�"�.�5.�6#�u.�6#.�#���~t�3��2��P��!X��&�V�K�!P�P�0�!<X[}!.��".�&�"�..�#.�6#�u.�6#�5����]_^r�M�!�t��"������{�_���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�
        !          10963: ��&�=��t%���&t��H;�s����&t�����D���G�t���&�t�،�;�t&��7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�
        !          10964: ��G3���Q�E��&t+�IAA��&;v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�o�����Z[t���N
        !          10965: �F�V�~W��
        !          10966: �t��
        !          10967: u�y
        !          10968: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�U��VW�~u8��V�FHu�Sr'�H�6`Ht;�t
�D�FV�:^s0����`s�u������ڃ��۱��H�!r钉�T�6`3�_^��]ËN��9Lt����`u���?��r9�ӎ�;�u9
        !          10969: s&����������;�u      ١�+؎��J�!r
;�u�
        !          10970: �����MS Run-Time Library - Copyright (c) 1988, Microsoft CorpnfstXXXXcan't create %s: opentestfile before chmod:
        !          10971:   attrib %s%s open; chmod ret = %d
        !          10972:  chmodtestfile after chmod:
        !          10973:   This is a test message written to the chmod'd file
        !          10974: write ret %d; expected %d
        !          10975:  writelseek ret %d; expected 0
        !          10976:  lseekread ret %d; expected %d
        !          10977:  readread data not same as written data
        !          10978:  written: '%s'
        !          10979:  read:    '%s'
        !          10980: data compare ok
        !          10981: testfile after write/read:
        !          10982:   error on closecan't unlink %s test completed successfully.
        !          10983: �;i;C_FILE_INFO���&&�iC�        �     &&�&L: 
        !          10984: COMSPEC/ccommand.com
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error"#=>?@ASeuvw������������������&!"@%.com.exePATH\�����;C_FILE_INFO�m�m �<<NMSG>>R6000
        !          10985: - stack overflow
        !          10986: R6003
        !          10987: - integer divide by 0
        !          10988:       R6009
        !          10989: - not enough space for environment
        !          10990: �
        !          10991: �run-time error R6002
        !          10992: - floating point not loaded
        !          10993: &R6001
        !          10994: - null pointer assignment
        !          10995: ���NB00��OP-CHMOD.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm`o&&dos\crt0dat.asm�&
        !          10996: chkstk.asm�>& fprintf.c$<&printf.c`&_file.c` &
dos\close.asm�z&
dos\lseek.asm��&&dos\open.asm��&dos\read.asm|(&&    write.asm�    2&
        !          10997: strcpy.asm�  +&
        !          10998: strcmp.asm
        !          10999: ~&perror.c�
        !          11000: x&setbuf.c�
        !          11001: V&       sprintf.cN�&mktemp.c��&system.c~$&
dos\chmod.asm�
&dos\unlink.asm� &dos\crt0msg.asm�&
        !          11002: crt0fp.asm�"&
        !          11003: chksum.asm��&&dos\stdargv.asm�n&dos\stdenvp.asm�T&dos\nmsghdr.asmHT&dos\dosret.asm�&_cflush.asm�V&&  _flsbuf.c�.&
        !          11004: _freebuf.c && _sftbuf.c:n&fflush.c��&output.cp&stackava.asm�&
        !          11005: strlen.asm�^&getenv.c�&syserr.c�D&&
dos\spawnve.c@�&
        !          11006: spawnvpe.c4&dos\access.asmT!&dos\getpid.asmvB&dos\stdalloc.asm�2&
        !          11007: flushall.c�l& _getbuf.cVX&nmalloc.asm�?&
        !          11008: strcat.asm�(&strncpy.asm :&strncmp.asmP 
        !          11009: &        ultoa.asmZ &cmiscdat.asmZ #&
        !          11010: isatty.asm~ *&
        !          11011: strchr.asm� +&strrchr.asm� '&
dos\cenvarg.c�"�&dos\dospawn.asm�#&dos\execload.asm�#a&&amalloc.asm^%_&xtoa.asm�%�&dos\brkctl.asm� i�_wbuf0i�_rbuf�i�_buf��_xxit�_maini__fmodei__iomode�i_edatai_endi__aexit_rtn`i__abrkpi__abrktb
        !          11012: i__asizds�__astarti__atopsp`i     __abrktbeB __cintDIVv�&
        !          11013: __acrtusedQ__amsg_exit�i__osversion{i_errno;__exit�i__child�i__nfile`__cinit�i___argc�i__intno�i
__dosvermajor�i__oserr�i___argv�i
__dosverminor�i_environ�i__osfile�i__osmodei__pspadri__fpinit�i__ovlvec�i__pgmptrbi      __acfinfo�i __ovlflagoi __aintdiv�i __osmajor�i __osminor}i
        !          11014: __umaskval�
        !          11015: __ctermsub�i
        !          11016: __doserrnosi__fac$_exit�i__psp�iSTKHQQ�__chkstk�_fprintf$_printf�       i__bufin�i__bufout�
i__buferrTi__iob2�i   __lastiob�i__iob`_close�_lseek
        !          11017: __copensub�_open�__cXENIXtoDOSmode�_read|_write�       _strcpy�   _strcmp
        !          11018: _perror�
        !          11019: _setbuf�
        !          11020: _sprintfN_mktemp�_system~_chmod�_remove�_unlink�__FF_MSGBANNER�i  __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargv� __setenvp�__NMSG_TEXT__NMSG_WRITEH    __dosret0h
        !          11021: __maperror[
        !          11022: __dosretaxP__dosreturni__cflush�__flsbuf�       __freebuf�__ftbuf __stbuf:_fflush�__outputp_stackavail�_strlen�_getenv�i  _sys_nerrNi_sys_errlist�_spawnve@       _spawnvpe4_accessT_getpidv     __myalloc� _flushall�__getbufh_mallocV__nfree�i__asegdsh       __nmallocV_free�_strcat�_strncpy _strncmpP _ultoa�i
__cfltcvt_tab�i__asizeC�i__asizeD�i__sigintoff�i__sigintsegZ _isatty~ _strchr� _strrchr�    __cenvarg# __dospawn�#
        !          11023: __execload>%__amallocbrki__aseg1i__aseghi__asegn
        !          11024: i__asegr%__amlinki     __QChdata�# __amalloc�$
        !          11025: __amexpandi
        !          11026: __amblksizj%__cxtoa^%
        !          11027: __cltoasub�%_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x� ��&x���&&�&u��c�&xH��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x(��&&�&&�&&�&x����&&�&&�&&�&xP��&&�&&�&&�&&�&x����&x8��&&�&&�&&�&x��&��&&�&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x0��&&�&&�&&�&x� &��&x����&x����&x����&&�&&�&&�&xx��&x����&x��&��&u��c&��&�ztmaini���fd    ���ret���tname���errcount&&&��$��xxit��&s&&�       i�wbuf0i�rbuf�i�buf�i_iob
        !          11028: op-chmod.c4 !%"3$<%X&i4s5}6�7�8�9�:�;�<�=�>�?     &@&A'&B1&D;&EW&Fh&Gq&H{&J�&K�&L�&M�&N�&P�&Q�&R�&S�&UXY[)\:^D_U`fcpdze�i�k�l�m�
        !          11029: SLIBCE.LIB~&&&&&�;&&'0&&W�&&��&&!'&&&H&,�&&a&��&&&}&�&&�&�&&�&�&&�&�U&&   �&       7      
&&
        !          11030: �&
        !          11031: D     
&&&&Q     5&& &&�     &&
9&&
�     
&&O&&�     &&f&&�     &&}&&�     &&�&&�     &&�&&�     &&�&&�     &&�&&�     &&�&&
        !          11032: 
&&&&
        !          11033: &&&+
        !          11034: 5&&8&`
        !          11035: &&O&o
        !          11036: &&f&�
        !          11037: &&�&�
        !          11038: &&�&�
        !          11039: %&&�&�
        !          11040: D&&�&
        !          11041: &&�&&& & (&&!&!8&&"0&"T&&#E&#b&&$Z&$q&&%s&%�&&&�&&�&&'�&'�#&&(�&(�&&)�&)�&&*�&*�&&+&+�&&,&,�&&-8&-
&&.O&.&&/e&/,G&&0}&0s&&1�&1�&&2�&2�&&3�&3�
&&4�&4�V&&5�&5
&&6
        !          11042: &6
&&7!&7
&&89&8-
&&9S&9=
&&:o&:M
&&;�&;^
�&&<�&<�
&&=�&=&�NB00�PEC/ccommand.com
    �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error"#=>?@ASeuvw����./special/op-unlk.exe   777  20115     11       46011  4552136500  10036 MZ�& p��J@ˆ�&Lg�a�gggU����WV�F�B�F��P�6P�n
        !          11043: ���v���
        !          11044: ����&P�P�v������F�=|��v��KP�>P����]P�7���bP������P�6���v�����F��v��v���P����~�u�
        !          11045: ��P��&����P�����P��
        !          11046: ����P�
        !          11047: P�����dP�
        !          11048: P�v�����F�=du�2�dP�v��&P�>P�����~�|�
        !          11049: �1&P�        ���&P����P+�PP�v��j���F�=u�.�v��8&P�>P����~�|�
        !          11050: �R&P����&P�����dP��P�v��>���F�=du�2�dP�v��Y&P�>P�f���~�|�
        !          11051: �s&P�o���&P�����P�
        !          11052: P�+��=u�"�F��y&P�d����P�
        !          11053: P��&P�R���
        !          11054: ��&P�E���v��@
        !          11055: ��=t��F���&P�'����>�u�
�F���&P�����v��@���F�=u��P�����0P�] ���v�����F�=t��F��?P�>P����~�t�
        !          11056: �dP����v��&��^_��]�U���>WV�v�h���&P�&��^_��]Ð�0�!<s� �c�6+���r���ׁ�n�s�]      3�P����L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6����x�p+�3���;��
        !          11057: �Q     3��6�6�6��P���c�ظ6��BP���M��P���0�!���5�!�����%�`�!���.��&�6,����3�6��s�6���ڻ6����&�,�6��3�&�=t,����t��3��u�����������t&H��������D�!r
        !          11058: �€t��@Ky羚���������U�쾞���}�����t�U�쾜���f�����l�  �t�~u�F�����&t�>�!C����F�L�!���������%�!�>&t
�'�(�%�!�;�s
        !          11059: OO�
�������;�s���Et�����Y��+�r
        !          11060: ;,r����3��k�U���WV�F�F��v�V
        !          11061: �����FP�v�v�������vV�
        !          11062: ����^_��]ÐU���WV�6�F�F�V�
        !          11063: �����FP�vV����F�VW�
        !          11064: ���F�^_��]�U��^;r�     ���>�!rƇ�N        U����^;r�       �*�F�tH�~
        !          11065: t3ɋѸ&B�!rK�F
        !          11066: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          11067: �B�!r�����U���2��~��F���F���u�@u���u�F���V$
        !          11068: Ǵ=�!s=u    ��&t������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s����F��u�Fu0�>�!�F$
        !          11069: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;r
        !          11070: �>�!����
        !          11071: N���&���Ë�]�2��ܡ���#�3ɨ�u��&�U����^;r�� �\3��N�U��uN�N�V�?�!s�   �>���t7���VW�������%�
�<
        !          11072: u���:�t<u����G���+�_^����&t�<
        !          11073: t�����@t�D�!�� u  �V��?�!r԰
        !          11074: �,�F��V��?�!r��t�~&t����Ѹ&B�!�&�~�
        !          11075: t�
�V떋V딀~�
        !          11076: u��U����^;r� ��O�� t�B3ɋ��!r����tn�V3��F��F��WV����f��N�T�
        !          11077: �uJ��=�vH���ܺ=(s��+�ԋ��N�<
        !          11078: t;�t����#�a�
;�u���
        !          11079: �F����
��^_�U�E3��/�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���@t�^�?u������F�+F��f�^_�q�N�u���e�V�@�!s�  ���u���@t
        !          11080: �ڀ?u�������U��׋ދv���؎�3������ы~�Ǩ&t�I�������]�U��׋ތ؎��v�~3�������+��t������]�U���WV�v��t&�<t!V��PV��P�U�����P�HP��P�E����>�|   �9�|�����㋷�V�T��PVW�����&P�KPW����^_��]ÐU���V�v��-.������������F�V����V�v���~u�L�d��^����@�D��G&��~�d�^��&�G�F�D��D^��]ÐU���
        !          11081: WV�v�a�F��v�F���F�<t���F��F�+ҹ
        !          11082: ���0��F�+���F�N�<Xt�F�<t�~�t+��G���F���+�P�v�&���t�>�
u����{u�F����ƋLjG�ϐ�F����F^_��]ÐU����NP�%���F��~u+�P�v�����u�&�Z+��V�F�V�F�F��F��~�t&�6�F�P�v�+�P�7���F�@u�>�t�F���F�Y�6�F�P�YP+�P�O����]�U��V�A�!�U���P�e�>ft�f��P�S��]ø���V3��B2���2�����Ut
����&P�,�&^Ïh�8�t)��&�,� 3����3��u�GG�>�����ыѿ&�����< t�< t�<
to
        !          11083: �tkGN�< t�<    t�<
t\
        !          11084: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          11085: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>�G��׀��+�ģ���6�?CC�6��
        !          11086: �u���6���3���< t�< t�<
u�
        !          11087: �u�y�6�?CCN�< t�<     t�<
tb
        !          11088: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          11089: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&hU��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �]_�ϋ���.��3�I��<;Ct�~EE��
        !          11090: �u���N]��]�U��VW�V���;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â
        !          11091: �u#�>�r
<"s
< r���<v��jט��Ê���U��V�v�D�t�Dt�t�5���d�+���D�D^]ÐU���V�v�~��6u�F�����>u$�F�h�Du�ށ�.�������������&t+��5��-.������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~6t�~>uv�^�G�P�z���td�F-.������������F��v�K���^���G�^��+���G�*��^�t�hu�G�P����t    �v���^��]�U���WV�v+��D$<uF�Du�ށ�.�������������&t'�+D�F��~P�t�D�P�����;F�t�L ����D��D��^_��]�U��d&���WV�v�������F���F�z�����|�<%t�X��&+����~���������|�x���� �|&0u<F��0�3�<+u
�����"��< u
�>�u����x�   �<-u���F��P�����u�V��P�f�����>�}�����أ��<.u#��FV��P�<�����>�}
        !          11092: ��&����=Ft2=Nt5=ht =lu���>�u�<Lu&F�<u�&��&���������ӊ�����=Et
        !          11093: =Gt=Xu      �~���� ����-c=v�&��.������������i&����x�
        !          11094: P�&���Q&�����|�~�>�u       ��&���������>�u�+����F�9�t'���F��>�t   �����.����}+������P�����:P�����~�t"�>�t�F�-���}+��������.��P�������/�+�P��&�*���&����������>�t��N��G�=t�=%u���+�PV�������<t�|��>�uY�z�G tO����Ml�rrr|�||||p��||b|�||\�>�t�>�u�z�G u��F뙐��^_��]ÐU���WV�~
        !          11095: t���>�t�>�u����W�F��V����*�>�t����F��F��������F��V����>xt
�F�F�t�F�+����6��>�u*�~�}$�~
        !          11096: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v��
        !          11097: ���>�t!W������+ȉN����0F��I���N�~���t<a|�, FG�}�u�>�u���t�~�u�&�+�P���^_��]ÐU���WV�~t�&���F��^�����>�u����W�F��V���������F��F��^����>�u
�F�F�u���       �~�u   ���F��^��F��V��F�V�+�96�t�����^��F�&�?tF;�~��F�^��F�&�?u�>�+��>�uW�&��V�v��v��o&���>�tW�&��^_��]�U������F��~gt�~Gu�&�*��F��>�u���~�t
�>�u��&�6~�6��v�6��v��4��
        !          11098: �~�t�>xu�6��6���>xt�>�u�6��:���������t�v��<���t�&�+�P�&��]�U��V�>�u/�z�Ox�F�7��*���S�v�!��@u������^]ÐU���WV�>�uI�v�~B��6z�6�����@u����N�~�z�Ox۠��?��*��܃>�u�F&�^_��]�U���WV�v�>�uP��6z�^&��P���@u���F��N�t�z�Ox��^&��z�?��*��҃>�u�F&�^_��]�U���
        !          11099: WV�6�+��F��F��>�0u9�t9|t9�u�� �>�V�&���F�+�+~�>�u�<-u�>�0u��P�����N��>�0t�~�>�t�~t�F��_�>�t�F��j�>�u&W�����~t  �~�u�5�>�t �~�u�=�v�V������>�t
�� W�a���^_��]Ã>�t�+�� P����Ð�0P������>�u�>~t�X���xP�����ÐU���WV�v�F�&�<*u���?��F�H��<-u�F���F+��<0|5�<909>�u�<0u��0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          11100: :u��&��+�^��]ÐY�,;�s+�����3���U��׌؎��~3�������I���]�U���WV�6�tF�~t@�v������������<t*�4����;�~��9=u�W�vS����u֋�A&��+�^_��]�U�츌��WV�v�~u�v
        !          11101: �vV����&+�P��t�P�F�P�F�P�v
        !          11102: �v���@u�������\PV�D�����/PV�7���F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v�X���F���V�����P������u
�v�����z���PVW���P�������v���t�PW�v����F��>�u+�P�.PW���P�f���v���t�PW�v�����F�W����v��
���F�^_��]ÐU����W�WV��(����v
        !          11103: �v�v�v������|�@u2�>�u+�^���&�</t<\t
        !          11104: �t�&:t� P�������u��|����PV�F�P�(�����F����<;t��FG�<u��O��z���(�����z��?\t�?/t�%PW����vW����v
        !          11105: �vW�v�������|�@u��>�u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
��K��(�u�>�u      ���!
        !          11106: �u�,�!�£(����r59�s%P�ر��ً�+���ËشJ�!Xr$�H����.�&�Ë��i�U���WV�.+����D�tV�h��@t&G��96Fs��^_��]�U���WV�v�D��F���-.������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�.�������������&uF��6t��>u3�v���&���u-�~��6u����h�D��^��G�&��V�B���Du�ށ�.�������������&tP�<+|�D@��^��GH�D�~W�t�v��c���F����^��� t�P+�PPS�H���\�F����&��P�FP�v��&���F�9~�t����F*�^_��]ÐU��^�t�O�&��]�U��VW�*�?u)��-u3���$@$��*�,��&���D����60�N�؎���_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��WV�~�v�ߋN��
        !          11107: �t���2���^_��]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��VW��pU��^;}��|��@t�&�3���]�U��W�~��3�����A�يF���O8t3���_��]�U��W�~3�����A��O�F��G8t3�����_��]�U���WV+�9vu��F�~t)�F�F����^��F��7����@��^��?t���v��F��t�^���u�N�u�~�t�F���~t�v�M����F�v���v���
        !          11108: ����&��6����F��F�P������F��u!�v���������u����6�뷋~��6��^�~��?��$��F��^
        !          11109: ���?�~t-�F�F��+�P�^��7W���P����@���F��^��?uۃ~�t>+�P�DPW�t��P�a������F��G+��N���t������GF��N��G�G�~t�&G�G�vW�(��+��~G�^97tt9wt� GF���F��,v�+�P�^��7W����P��������F��^��?t� GF�^��?t,�7������F��=}v����
        !          11110: �^�7�v������
�^�ƈ�F�^_��]ÐU��~&t�~t
��������VW�؋^
        !          11111: ���ãR�F�T�V�6TF�`�&)�!�&)�p�!U�>�}!.�6".�&4"�.�5.�68"�u.�6:".�<"�R�~t�3��2��P��!X�$&�V�K�!P�P�0�!<X[}!.�6".�&4"�..�<".�6:"�u.�68"�5���$]_^r�M�!���������������U���V�F-.������������F��P�F����^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�o�����Z[t���N
        !          11112: �F�V�~W��
        !          11113: �t��
        !          11114: u�y
        !          11115: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u       ١�+؎��J�!r
;�u�������MS Run-Time Library - Copyright (c) 1988, Microsoft CorpnfstXXXXcan't create %s: opennfsjunk files before unlink:
        !          11116:   attrib nfst*.*%s open; unlink ret = %d
        !          11117:  unlinknfsjunk files after unlink:
        !          11118:   attrib nfst*.*This is a test message written to the unlinked file
        !          11119: write ret %d; expected %d
        !          11120:  writelseek ret %d; expected 0
        !          11121:  lseekread ret %d; expected %d
        !          11122:  readread data not same as written data
        !          11123:  written: '%s'
        !          11124:  read:    '%s'
        !          11125: data compare ok
        !          11126: Error: second unlink succeeded!??
        !          11127: unexpected error on second unlinknfsjunk files after close:
        !          11128:   attrib nfst*.*second close didn't return error!??
        !          11129: test completed successfully.
        !          11130: �Yc�;C_FILE_INFO���&&"cCph
        !          11131: h
        !          11132: &&�&�: 
        !          11133: COMSPEC/ccommand.com
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error�������������&"4567HI]^_`xyz{|����%.com.exePATH\ttttt;C_FILE_INFO g0g <<NMSG>>R6000
        !          11134: - stack overflow
        !          11135: R6003
        !          11136: - integer divide by 0
        !          11137:       R6009
        !          11138: - not enough space for environment
        !          11139: �
        !          11140: �run-time error R6002
        !          11141: - floating point not loaded
        !          11142: &R6001
        !          11143: - null pointer assignment
        !          11144: ���NB00��OP-UNLK.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asm~o&&dos\crt0dat.asm�&
        !          11145: chkstk.asm>& fprintf.cB<&printf.c~&_file.c~ &
dos\close.asm�z&
dos\lseek.asm�&&dos\open.asm��&dos\read.asm�(&&    write.asm�    2&
        !          11146: strcpy.asm�  +&
        !          11147: strcmp.asm 
        !          11148: ~&perror.c�
        !          11149: x&setbuf.c�&mktemp.c��&system.cF
&dos\unlink.asmT &dos\crt0msg.asmt&
        !          11150: crt0fp.asmz"&
        !          11151: chksum.asm��&&dos\stdargv.asm*n&dos\stdenvp.asm�T&dos\nmsghdr.asm�T&dos\dosret.asm@&_cflush.asm@.&
        !          11152: _freebuf.cn&& _sftbuf.c�n&fflush.c��&output.c�&stackava.asm�&
        !          11153: strlen.asm�^&getenv.cJ&syserr.cJD&&
dos\spawnve.c��&
        !          11154: spawnvpe.c�&dos\access.asm�!&dos\getpid.asm�B&dos\stdalloc.asm2&
        !          11155: flushall.c8V&& _flsbuf.c�X&nmalloc.asm�?&
        !          11156: strcat.asm&(&strncpy.asmN:&strncmp.asm�
        !          11157: &        ultoa.asm�&cmiscdat.asm�#&
        !          11158: isatty.asm�*&
        !          11159: strchr.asm�+&strrchr.asm '&
dos\cenvarg.c4"�&dos\dospawn.asm #&dos\execload.asm4#l&      _getbuf.c�#a&&amalloc.asm%_&xtoa.asmb%�&dos\brkctl.asm
        !          11160: c�_wbuf�c�_rbuf��_xxit�_main�c__fmode�c__iomodexc_edatapc_end�c__aexit_rtn�c__abrkp�c__abrktb�c__asizds�__astart�c__atopsp�c  __abrktbe` __cintDIVv�&
        !          11161: __acrtusedo__amsg_exit�c__osversion�c_errnoY__exit$c__childc__nfile~__cinitc___argc'c__intno�c
__dosvermajorc__oserrc___argv�c
__dosverminorc_environc__osfile�c__osmode�c__pspadr�c__fpinit(c__ovlvecc__pgmptr�c      __acfinfo&c __ovlflag�c __aintdiv�c __osmajor�c __osminor�c
        !          11162: __umaskval�
        !          11163: __ctermsubc
        !          11164: __doserrno�c__facB_exit�c__psp,cSTKHQQ�__chkstk_fprintfB_printfh
        !          11165: c__bufinc__bufouthc__buferr�c__iob2Fc  __lastiob.c__iob~_close�_lseek 
        !          11166: __copensub_open�__cXENIXtoDOSmode�_read�_write�       _strcpy�   _strcmp 
        !          11167: _perror�
        !          11168: _setbuf_mktemp�_systemF_removeF_unlinkT__FF_MSGBANNERfc        __adbgmsgv�& __acrtmsgt__fptrapz__nullcheck�        __setargv* __setenvp�__NMSG_TEXT�__NMSG_WRITE�    __dosret0
        !          11169: __maperror�
        !          11170: __dosretax�__dosreturn~c__cflush@      __freebuf�__ftbufn__stbuf�_fflush�__output�_stackavail�_strlen�_getenvc  _sys_nerr�c_sys_errlistJ_spawnve�       _spawnvpe�_access�_getpid�     __myalloc _flushall8__flsbuf�_malloc�__nfree*c__asegds�       __nmalloc�_free�_strcat&_strncpyN_strncmp�_ultoa4c
__cfltcvt_tabBc__asizeCCc__asizeD@c__sigintoff>c__sigintseg�_isatty�_strchr�_strrchr    __cenvarg>" __dospawn #
        !          11171: __execload4#__getbuf�$__amallocbrk�c__aseg1�c__asegh�c__asegn�c__asegr�$__amlink�c      __QChdata�# __amalloc�$
        !          11172: __amexpand�c
        !          11173: __amblksiz%__cxtoa%
        !          11174: __cltoasubb%_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x� ��&&�&u��c�&xH��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&&�&x(��&&�&&�&&�&x�&��&&�&&�&&�&xx��&x����&x@��&x����&&�&&�&&�&x��&��&&�&&�&&�&x����&&�&&�&&�&x8��&&�&&�&&�&&�&&�&&�&x0��&&�&&�&&�&x� &��&x����&x�&��&x�&��&&�&&�&&�&x����&x�(&��&��&u��c&��&���main����fd  ���ret���tname���errcount&&&��$��xxit��&s&&
        !          11175: c�wbuf�c�rbuf
�c�errno.c_iob      op-unlk.c9  %!3#<$X%i3s4}5�6�7�8�9�:�;�<�=�>       &?&@&B&&CB&DS&E\&Ff&Hp&I�&J�&K�&L�&N�&O�&P�&Q�&S�&VWXY!Z+[.^8eLfVh`itjwm�n�o�p�t�v�w�x�
        !          11176: SLIBCE.LIBz&&&&&�0&&�
"&&��&&��&& '&�&&G&��&&`&��&&&|&m&&�&�&&�&�&&�&�U&&   �&       �
&&
        !          11177: �&
        !          11178:      
&&&&     5&&&&J     &&
8&&
V     
&&N&&c     &&e&&q     &&|&&     &&�&&�     &&�&&�     &&�&&�     &&�&&�     &&�&&�     5&&&
        !          11179: &&&
        !          11180: &&5&)
        !          11181: &&Q&9
        !          11182: &&m&I
        !          11183: %&&�&n
        !          11184: D&&�&�
        !          11185: &&�&�
        !          11186: &&�&�
        !          11187: &&�&�
        !          11188: && �& �
        !          11189: &&!&!
        !          11190: &&",&"&&#C&#*&&$X&$8#&&%m&%[&&&�&&j&&'�&'z&&(�&(�&&)�&)�&&*�&*�&&+&+�&&,&,�G&&-6&-&&.M&.&&/e&/)&&0}&08
&&1�&1EV&&2�&2�&&3�&3�&&4�&4�&&5�&5�&&6&6�&&7(&7�&&8E&8�&&9[&9
�&&:s&:�
&&;�&;�
&�NB00b�: 
        !          11191: COMSPEC/ccommand.com
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error����./special/rename.exe   777  20115     11       34267  4552136543   7741 MZ9 c��f@܌D&&��&O&�&<&�&U���MWV�~u��^�7�BP��&P�H���&P�|����&P�&P�UP����F�=|��]P����&P�K���v��B���^�w�����F��F���F��F�9F�|��eP�mP�U��=|�(�uP�����v��v���P��&P����&P��&����P��P���=|�(��P����v��v���P��&P�m���&P�&���s���P������P�����P�&��^_��]Ð�0�!<s� ��&�6+���r���ׁĎ�s�3�P���L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�W&��j��+�3���;�8�3��6x&�6v&�6t&�<�P����&�ظ6���P�7���P���0�!�Y&�5�!�E&�G&�%��&�!���.�W&&�6,����3�6��s�  6���ڻ6���W&&�,�6��3�&�=t,��8&�t��3��u�����`&������t&H������`&��D�!r
        !          11192: �€t��`&@Ky美���������U�쾐���}�����t�U�쾐���f�����l�_�t�~u�F�����`&&t�>�!C����F�L�!�������E&�%�!�>�&t
��&��&�%�!�;�s
        !          11193: OO�
�������;�s���Et�����Y��+�r
        !          11194: ;�&r����3��k�U���WV�F�F��v�~�����FP�v�v������vV������^_��]ÐU��^;^&r�    ���>�!rƇ`&��U���2��~��F���F���u�@u���u�F���V$
        !          11195: Ǵ=�!s=u    ��&t������%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s����F��u�Fu0�>�!�F$
        !          11196: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;^&r
        !          11197: �>�!����
        !          11198: N���&��`&�Ë�]�2��ܡS&��#�3ɨ�u��&��U���WV�v��t&�<t!V�{�PV��P�I
����P��P��P�9
���>Q&| �V9Q&|�V��Q&�㋷
        !          11199: V�:��PVW�   
���&P��PW����^_��]ÐU��W�V�~�V�!_�U��V�A�!�U���P�e�>�t����P�S��]ø��V3��B2���2�����Ut
����&P�,�&^Ï��8Y&t)�W&&�,�|&3����3��u�GG�>z&�����ыѿ&���W&�< t�<      t�<
to
        !          11200: �tkGN�< t�<    t�<
t\
        !          11201: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          11202: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>t&�G��׀��+�ģv&���6�?CC�6z&��
        !          11203: �u���6�W&�3���< t�< t�<
u�
        !          11204: �u�y�6�?CCN�< t�<     t�<
tb
        !          11205: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          11206: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�W&3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �S_�ϋ���.x&��3�I��<;Ct�~EE��
        !          11207: �u���N]��]�U��VW�V���;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â\&
        !          11208: �u#�>Y&r
<"s
< r���<v���ט�Q&Ê���U���V�v�X���&u�F�������&u$�F��       �Du�ށ�&������������*&t+��5��-�&����������*�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~�&t�~�&uv�^�G�P�����td�F-�&����������*�F��v�C���^���G�^��+���G�*��^��t��     u�G�P����t        �v���^��]�U��d&�5�WV�v�������F�x�F�l�����|�<%t�X��&+��t�p�~�r�|�z�n�j�v�� �|&0u<F��0�3�<+u
�t�z�"��< u
�>tu�z��j� �<-u��vF��P�����u�V��P�f�����>�}�v���أ��<.u#�|FV��P�<�����>�}
        !          11209: ��&�|��=Ft2=Nt5=ht =lu�r�>ru�<Lu&F�<u�&�r&���r���r�ӊ�����=Et
        !          11210: =Gt=Xu      �p���� ����-c=v�&��.����x�����x�i&��~�j�
        !          11211: P�&���Q&�����n�p�>|u       ��&�����|���>ru�+��r�F�9�t'���F��>vt   �����.����}+����x�P�����:P�����~�t"�>vt�F�-���}+��������.x�P�������/�+�P��&�*���&����������>rt��N��G�=t�=%u���+�PV�������<t�|��>�uY�l�G tO����M�����������������������>�t�>�u�l�G u��F뙐��^_��]ÐU���WV�~
        !          11212: t�~�>rt�>ru�x��W�F��V��x�*�>~t�x��F��F����x���F��V��x�>jt
�F�F�t�F�+����6��>~u*�~�}$�~
        !          11213: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>|t!W������+ȉN����0F��I���N�p���t<a|�, FG�}�u�>~u�tzt�~�u�&�+�P���^_��]ÐU���WV�~t�&�x�F��^��x��>ru�x��W�F��V��x���x��F��F��^��x�>ru
�F�F�u���        �~�u   ���F��^��F��V��F�V�+�96|t�����^��F�&�?tF;�~��F�^��F�&�?u�>�+��>vuW�&��V�v��v��o&���>vtW�&��^_��]�U����x�F��~gt�~Gu�&�*��F��>|u���~�t
�>�u��&�6p�6��v�6��v��Z��
        !          11214: �~�t�>ju�6��\���>jt�>�u�6��`���x���tzt�v��b���t�&�+�P�&��]�U��V�>�u/�l�Ox�F�7��*���S�v���@u������^]ÐU���WV�>�uI�v�~B��6l�6��I��@u����N�~�l�Ox۠��?��*��܃>�u�F&�^_��]�U���WV�v�>�uP��6l�^&��P����@u���F��N�t�l�Ox��^&��l�?��*��҃>�u�F&�^_��]�U���
        !          11215: WV�6�+��F��F��>�0u9|t9nt9�u�� �>�V����F�+�+~�>vu�<-u�>�0u��P�����N��>�0t�~�>vt�~t�F��_�>�t�F��j�>vu&W�����~t  �~�u�5�>�t �~�u�=�v�V������>vt
�� W�a���^_��]Ã>tt�+�� P����Ð�0P������>�u�>pt�X���xP�����ÐU���WV�v�F�&�<*u�x�?�xF�H��<-u�F���F+��<0|5�<909>|u�<0u��0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          11216: :u��&��+�^��]ÐU����^;^&r�    ������`& t�B3ɋ��!r���`&�tn�V3��F��F��WV����f��N�T�
        !          11217: �uJ�J=�vH���ܺ=(s��+�ԋ��N�<
        !          11218: t;�t����#�a�
;�u���
        !          11219: �F����
��^_�U�E3��Q�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���`&@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u���`&@t
        !          11220: �ڀ?u�������U��׌؎��~3�������I���]�U��WV�v3��3۬< t�<        t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]Ë��r59�s%P�ر��ًW&+���ËشJ�!Xr$�H����.�&�Ë���U���WV�v�D��F���-�&����������*�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�&������������*&uF���&t���&u3�v��W&���u-�X���&u������    �D��^��G�&��V�|&���Du�ށ�&������������*&tP�<+|�D@��^��GH�D�~W�t�v��'����F����^���`& t�P+�PPS�&���\�F����&��P�FP�v�������F�9~�t����F*�^_��]ÐU���WV�v+��D$<uF�Du�ށ�&������������*&t'�+D�F��~P�t�D�P����;F�t�L ����D��D��^_��]�Y��&;�s+�����3���U��VW��<&U��^;^&}��|��`&@t�&�3���]�U���WV��&+����D�tV�8���@t&G��96�s��^_��]�U���V�F-�&����������*�F��P�2&���^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;^&r�        �*�F�tH�~
        !          11221: t3ɋѸ&B�!rK�F
        !          11222: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          11223: �B�!r��`&�����N
        !          11224: �F�V�~W��
        !          11225: �t��
        !          11226: u�y
        !          11227: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�U��^�t�O�&��]�U��VW�j�?u)��s&u3���$@$��j�l��&���D����6p�N�؎��     _^��]���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�x��&�~=��t%���&t��H;�s����&t�����D���G�t���&�~t�،�;�t&�t�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�x��G3���Q�E��&t+�IAA��&;zv��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��VW�~u8���V�FHu�Sr'�H�66&Ht;�t
�D�FV�:^s0����6&s�u������ڃ��۱��H�!r钉�T�66&3�_^��]ËN��9Lt����6&u���?��r9�ӎ�;�u9�s&����������;�u ١W&+؎��J�!r
;�u�������MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s <count>
        !          11228: rename1rename1rename2rename1rename rename1 to rename2%d of %d
        !          11229: rename1rename2rename rename2 to rename1%d of %d
        !          11230: rename1rename2���&�;C_FILE_INFO���&&~&�&C���&&�&": 
        !          11231: 
   �
�(null)(null)+- #Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error��������!123CUVWXdvwxy���������������%BBBBB �<<NMSG>>R6000
        !          11232: - stack overflow
        !          11233: R6003
        !          11234: - integer divide by 0
        !          11235:       R6009
        !          11236: - not enough space for environment
        !          11237: �
        !          11238: �run-time error R6002
        !          11239: - floating point not loaded
        !          11240: &R6001
        !          11241: - null pointer assignment
        !          11242: ���NB004&
        !          11243: RENAME.OBJD&D:\MSC\5.1\LIB\BINMODE.OBJD&�&dos\crt0.asm�&o&&dos\crt0dat.asmf&
        !          11244: chkstk.asm|>& fprintf.c�&_file.c� &
dos\close.asm��&&dos\open.asm~&atoi.asm�~&perror.c&dos\rename.asm
&dos\unlink.asm" &dos\crt0msg.asmB&
        !          11245: crt0fp.asmH"&
        !          11246: chksum.asmj�&&dos\stdargv.asm�n&dos\stdenvp.asmfT&dos\nmsghdr.asm�T&dos\dosret.asm   &&        _sftbuf.c(
        !          11247: �&output.c�(&&  write.asm&
        !          11248: strlen.asm4T&atox.asm�&syserr.c�B&dos\stdalloc.asm�&_cflush.asm�V&&  _flsbuf.c n&fflush.c�&stackava.asm�
        !          11249: &        ultoa.asm�&cmiscdat.asm�#&
        !          11250: isatty.asm�2&
        !          11251: flushall.cl& _getbuf.clz&
dos\lseek.asm�_&xtoa.asmFX&nmalloc.asm�a&&amalloc.asm�&dos\brkctl.asm�_main��&__fmode��&__iomodej�&_edata��&_end��&__aexit_rtn6&�&__abrkp��&__abrktb��&__asizdsD&__astart��&__atopsp6&�&  __abrktbe�& __cintDIVv�&
        !          11252: __acrtused�&__amsg_exitY&�&__osversionQ&�&_errno�__exit�&�&__child^&�&__nfile�&__cinitt&�&___argc�&�&__intnoY&�&
__dosvermajor\&�&__oserrv&�&___argvZ&�&
__dosverminorx&�&_environ`&�&__osfile[&�&__osmodeU&�&__pspadr��&__fpinit�&�&__ovlvecz&�&__pgmptr8&�&      __acfinfo�&�& __ovlflagE&�& __aintdivY&�& __osmajorZ&�& __osminorS&�&
        !          11253: __umaskval
        !          11254: __ctermsub\&�&
        !          11255: __doserrnoI&�&__fac�_exitW&�&__psp�&�&STKHQQf__chkstk|_fprintf��&__bufin��&__bufout�        �&__buferr*�&__iob2��&        __lastiob�&�&__iob�_close�
        !          11256: __copensub�_openm__cXENIXtoDOSmode~_atoi�_perror_rename_remove_unlink"__FF_MSGBANNER��&  __adbgmsgv�& __acrtmsgB__fptrapH__nullcheckj        __setargv� __setenvpf__NMSG_TEXT�__NMSG_WRITE�    __dosret0�
        !          11257: __maperror�
        !          11258: __dosretax�__dosreturn�  __ftbuf   __stbuf(
        !          11259: __output�_write_strlen4__catoxV�&   _sys_nerr
        !          11260: �&_sys_errlist�       __myallocX�&__cflush�__flsbuf _fflush�_stackavail�_ultoaZ�&
__cfltcvt_tabh�&__asizeCi�&__asizeDf�&__sigintoffd�&__sigintseg�_isatty�  _flushall__getbufl_lseek�__cxtoa�
        !          11261: __cltoasubX_mallocF__nfreej�&__asegdsX    __nmallocF_free�__amallocbrkt�&__aseg1|�&__aseghv�&__asegnx�&__asegr�__amlink|�&   __QChdata� __amalloc�
        !          11262: __amexpandz�&
        !          11263: __amblksiz_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&y@���_iobufi&����������&,�_ptr��_cnt��_base��_flag��_file�&x�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&���+&u��c��&&�&&�&&�&&�&x����&&�&&�&&�&&�&&�&&�&x@��&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&x����&xP��&�3&-&main"&
        !          11264: �argc
        !          11265: +argv���count���&i���fd&&�&�&_iobrename.c$7A^hr{ �!�"�#�$�&�'�(�)&+&-&.)&/3&0=&
        !          11266: SLIBCE.LIBV&&&&&�&&�
        !          11267: Z&&G^&&�g&&'&�&&F&�&&_&��&&&{&�&&�&�&&�&�U&&�&
&& �&       #5&&
        !          11268: �&
        !          11269: X&&&&d&&&&r&&
4&&
�&&O&&�5&&k&&�&&�&&�&&�&&�&&�&&&&�&&%&&�&&7D&&&{&&&�&&3&�
&&I&�&&`&�&&u&�#&&�&�&&�&     &&�&     &&�&      &&�&.     && & @     
&&!&!M     V&&"2&"�     &&#I&#�     &&$`&$�     &&%v&%�     
&&&�&&�     &&'�&'�     G&&(�&(C
        !          11270: �&&)�&)�
        !          11271: &NB00~�|��`&@t�&�3���]�U���WV��&+����D�tV�8���@t&G��96�s��^_��]�U���V�F-�&����������*�F��P�2&���^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;^&r�   �*�F�tH�~
        !          11272: t3ɋѸ&B�!rK�F
        !          11273: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          11274: �B�!r��`&�����N
        !          11275: �F�V�~W��
        !          11276: �t��
        !          11277: u./special/stat.exe   777  20115     11       75206  4552136623   7442 MZ�> ���&�\B&j�M���k
        !          11278: kk(oCoMo�o�o&oB&od&o�&ouo,o�o�o�0��U���KWV�~u��^�7�BP�\P�F���&P�z���P�F�P��       ���^�w����P�F�P��       ���F��V�+F�V��V�F��7F��866   �F�V�+F�V��V�F��7F��:��5^��=�;x�4v�����9�=�5F�����9�=�6x�QP�TP����P����^_��]�U��&�uWV�F�P�v�  ��=|�       �v����F�%@=@u��       &�v�g
        !          11279: ���F�=t��v�d�����x�v�����v�����F�=u��|P�v����=u��~P�v����=t����F�P�v��o��=|�    �v������x�F�%@=@t�[�v��M���F��V��v��Q���v��
        !          11280: �����P�     ���F�=t��v�����P�=����v��v��v�����1���P����^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          11281: ��P���P�����&P���P��������=|����P��P����&P�
���^������k��=|�������P�S���&P�����t�dž��������F9���|������v��P���P������P�"��=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          11282: �v�v�v������P����=|���P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          11283: ��P���P������P�f��=|�"�~t����P��P�����&P����^���dž��������F9���|�������v��P���P������P����=|�%�~u������P�&P����&P����v�v�v�v�v
        !          11284: �v�v�v������&P���=|��&P�G���&P��
        !          11285: �����P�\��=|����P�%&P����&P�
        !          11286: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6B�5&P�\P�&�������P�6B�G&P�\P����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          11287: �v�v�v�\P��
        !          11288: ��(�>u�
�R&P������T&P�\P�
        !          11289: ���\P��
        !          11290: ���~�t�
        !          11291: �&P��        ��^_��]�U���_
        !          11292: WV�P��
        !          11293: P���^_��]�U���@
        !          11294: WV�P��
        !          11295: P������9�
        !          11296: ~�#}�       9�
        !          11297: r��.�
        !          11298: &��
        !          11299: ��
        !          11300: @B��
        !          11301: �^��
        !          11302: ��
        !          11303: +�G�W�^��
        !          11304: ��
        !          11305: +�
        !          11306: ��W^_��]�U���        WV�'�RP�^�w�w�[RP�^�w�7�V&P�TP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v�RP�l&P�TP�e    ��^_��]�U��&�=       WV�~t��}&P����F=t��F�&����P�v���=t�<�v��&P���P������P���=u��v��&P�����&P����v���=|��v��&P�k����&P�����v�&��=|��v��&P�C����&P����^_��]�U���gWV�~t��P�1
        !          11307: ���F=t��F�v�L&��=|��v�P�����������^_��]�U���     WV�v��        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          11308: �8P�����&P����F��V��^_��]�U���WV�^�&:t�g�^������qu��^��- ��^��-@�F��F�P�v������F�P�����F�9F�u��^��P�gP������&P���^_��]�U���WV�6B��P�TP�#���6B�X����P�M��^_��]�U����WV�v�4����v�
        !          11309: ���^_��]�U����WV�&P�v��
        !          11310: ���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v�
        !          11311: ���^_��]�U���TWV�v�v�����^_��]�U���4WV�F�P�
����RP�F�*�+�QP�b�Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP�0�^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^������qu��^��- ��^��-@�F��
        !          11312: �F�P����F�P�v����=u�����V�^�F��G�G+�P�v�+�P�v��d
�^�G�W
        !          11313: +�P�v�+�P�v��L
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�FP�7����P�FP�����>�u�����&�P����H�>Ht���~�JP�v��FP���=u���_�6H�JP�&���F�&��F��JP�T��=t�!�F�����������HP�JP�[&������F�H�F�D�@�^_��]�U����WV�F��F�F�JP�v��FP��
        !          11314: ��=u���P�����&P�     ���6H�JP�����F�&��F��JP�
        !          11315: ��=t�!�F�����������HP�JP�������F�H�F�D^_��]�U���JWV�F�F�D��^_��]�U���,WV�F�F�F�9V~�}�9Fv��F�D^_��]�U����WV�F�F�F9D� ����D�D����������H�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v������q&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁ�~�s�
        !          11316: 3�P����L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6����
        !          11317: ��+�3���;��
        !          11318: 3��6:�68�66�>�P�����ظ6���P�
        !          11319: ���P���0�!��5�!��  �%���!�&        �.�&�6,�(  ��3�6�$        s��  6�,    �ڻ6�$       �&�,�6��3�&�=t,����t��3��u�����"������t&H������"��D�!r
        !          11320: �€t��"@Ky�0        �0      ��0   �2      ��U��8�8�}�2      �4      �t�U��4      �4      �f�4   �4      �l�A   �t�~u�F�����"&t�>�!C����F�L�!�&        ���$        ��%�!�>Dt
�E�F�%�!�;�s
        !          11321: OO�
�������;�s���Et�����Y��+�r
        !          11322: ;Jr����3��k�U���WV�F�F��v������FP�v�v�
�����vV�
����^_��]ÐU���WV�v+��D$<uF�Du�ށ�L�������������&t'�+D�F��~P�t�D�P����;F�t�L ����D��D��^_��]�U��^; r�      ���>�!rƇ"�T
        !          11323: U��^�t�O�&��]�U��VW�f�?u)���u3���$@$��f�h��&���D����6l�N�؎��]_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]�U��׋ތ؎��v�~3�������+��t������]��kU���WV�6:�tF�~t@�v�����������<t*�4����;�~��9=u�W�vS�����u֋�A&��+�^_��]�U���WV�v��t&�<t!V��PV��P�����P�rP��P�����>| �n9|�n���㋷"V�Z��PVW�����&P�uPW���^_��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW������Mx*������W+�P�����^_��]�U���v�P�v�����]�U����xP�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6:�F�P�v�+�P�Q���F�@u�>t�F���F���6:�F�P��P+�P�i����]�U��V�C�!r�F�t������&�&C�!�`U��9�U��;�V�!�LU��:�V�!s�=u쒓�C<t
        !          11324: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�S��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�4���F�P�n��@�F��~�u;�~��V�Z������u ����~9v�~
        !          11325: �"+���F�PW����^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�!�����t1��PW�����t��PW����t��PW����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u������q&t� ����-`�+�PP�P���*�@�F�~�th��PV�\���t����P+�P�v�������F��u�j�V����@t)�v������v������F�+��FЉF��F�!�F��
��v��l����+�+��E�E
        !          11326: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u��V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          11327: �}G�V�����F
        !          11328: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          11329: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          11330: ؋^u�F���]���ȋF�f
        !          11331: ȋF��ы�]����5�G1�G�1�G�0�Gr1�U���P�e�>�t����P�S��]ø��V3��B2���2�����Ut
����&P�,�&^Ï��8t)�&�,�>3����3��u�GG�><�����ыѿ&����< t�<      t�<
to
        !          11332: �tkGN�< t�<    t�<
t\
        !          11333: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          11334: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>6�G��׀��+�ģ8���6�?CC�6<��
        !          11335: �u���6��3���< t�< t�<
u�
        !          11336: �u�y�6�?CCN�< t�<     t�<
tb
        !          11337: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          11338: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �m_�ϋ���.:��3�I��<;Ct�~EE��
        !          11339: �u���N]��]�U��VW�V�N    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â
        !          11340: �u#�>r
<"s
< r���<v���ט�Ê���U���WV�v�D��F���-L������������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�L�������������&uF��Tt��\u3�v������u-����Tu�B���J�D��^��G�&��V����Du�ށ�L�������������&tP�<+|�D@��^��GH�D�~W�t�v������F����^���" t�P+�PPS�$���\�F����&��P�FP�v�����F�9~�t����F*�^_��]ÐU���V�v����Tu�F�B����\u$�F�J�Du�ށ�L�������������&t+��5��-L������������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~Tt�~\uv�^�G�P�z���td�F-L������������F��v����^���G�^��+���G�*��^�Bt�Ju�G�P����t    �v�b��^��]�U��d&���WV�v�����$�F��F����|�<%t�X� &+��������
        !          11341: ���* �|&0u<F�*0�3�<+u
���"��< u
�>u����  �<-u��F��P�����u�V�&P�f�����>&}��&�أ&�<.u#�FV� P�<�����> }
        !          11342: � &���=Ft2=Nt5=ht =lu��>u�<Lu&F�<u�&�&�������ӊ�����=Et
        !          11343: =Gt=Xu      ����� ����-c=v�&��.��(!������i&����
        !          11344: P�&���Q&�����
        !          11345: ��>u    �"&���"�� �>u�+���F�9&t'�&�F��>t   �&���.&�&�}+��&��P�����:P�����~�t"�>t�F�-�&�}+��&���&�.�P�������/�+�P��&�*���&����������>t��N��G�=t�=%u���+�PV�������<t�|��>uY��G tO����M� �� � � � �� � � � � 
        !          11346:  � � � � �� � � �>t�>u��G u��F뙐�^_��]ÐU���WV�~
        !          11347: t��>t�>u���W�F��V���*�>t���F��F�������F��V���>t
�F�F�t�F�+��(�6$�>u*�~�}$�~
        !          11348: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����>t!W�   ��� +ȉN����0F��I���N����t<a|�, FG�}�u�>u�t�~�u�&�+�P���^_��]ÐU���WV�~t�&��F��^����>u���W�F��V�������F��F��^���>u
�F�F�u���      �~�u   ���F��^��F��V��F�V�+�96t� ���^��F�&�?tF;�~��F�^��F�&�?u�>&+��>uW�&��V�v��v��o&���>tW�&��^_��]�U�����F��~gt�~Gu�&�*��F��>u� �~�t
�> u� &�6�6 �v�6$�v�����
        !          11349: �~�t�>u�6$�����>t�> u�6$������(�t�v������t�&�+�P�&��]�U��V�>u/��Ox�F�7��*���S�v�o���@u����^]ÐU���WV�>uI�v�~B��6�6*�7���@u���N�~��Ox۠*�?��*��܃>u�F&^_��]�U���WV�v�>uP��6�^&��P�����@u��F��N�t��Ox��^&���?��*��҃>u�F&^_��]�U���
        !          11350: WV�6$+��F��F��>*0u9t9
        !          11351: t9"u�* �>&V����F�+�+~�>u�<-u�>*0u��P�����N��>*0t�~�>t�~t�F��_�>(t�F��j�>u&W�����~t        �~�u�5�>(t �~�u�=�v�V������>t
�* W�a���^_��]Ã>t�+�� P����Ð�0P������>(u�>t�X���xP�����ÐU���WV�v�F�&�<*u��?�F�H��<-u�F���F+��<0|5�<909>u�<0u�*0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          11352: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          11353: Ǵ=�!s=u    ��&t���?����%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�y��F��u�Fu0�>�!�F$
        !          11354: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ; r
        !          11355: �>�!����
        !          11356: N���&��"�Ë�]�2��ܡ��#�3ɨ�u��&�U����^; r�  ������" t�B3ɋ��!r���"�tn�V3��F��F��WV����f��N�T�
        !          11357: �uJ�
=�vH���ܺ=(s��+�ԋ��N�<
        !          11358: t;�t����#�a�
;�u���
        !          11359: �F����
��^_�U�E3��u�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���"@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u���"@t
        !          11360: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�w�����Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          11361: �!W�~��]�M�U�u�E
        !          11362: r3���q�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP�0�F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          11363: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�������&F�V�DP�F��FH�F��F
        !          11364: �F�>�t�F�P�h���t        �n��^��F�V�^_��]�U��֋v�^��
        !          11365: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          11366: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌�'�WV�v�~u�v
        !          11367: �vV�����&+�P��t�P�F�P�F�P�v
        !          11368: �v����@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v����F���V�v���P�p�����u
�v��O���z���pPVW����P�����v���t�PW�v�@���F��>u+�uP�.PW�q���P����v���t�PW�v����F�W�����v������F�^_��]ÐU������WV��(����v
        !          11369: �v�v�v������|�@u2�>u+�^���&�</t<\t
        !          11370: �t�&:t�zP�u�����u��|����PV�F�P������F����<;t��FG�<u��O��z���(�����z��?\t�?/t�PW�v���vW�l���v
        !          11371: �vW�v�������|�@u��>u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
���ZZ����*�P-����d���㋏����O�s
        !          11372: ��P�ꡠeP�����U���WV�v������q&t� ����=et
F������qu�����.F���F��Lj�~�F�|�u�^_��]�U���WV�v���<.tF�<u�F�|�t0��<et�<EtF�<u���N����N�<0t��<.u&NF�G�
        !          11373: �u�^_��]�U����^�9�8>      �9��9~��=�f��r�&��]Ð+���]�U���WV�~t�v�����^���������^_��]��v�����~��������^��9F��5�=^_��]�U���WV�>�t1�,�F��؃?-u�&��+���v�~~�&�+�PV�-���I�^�w�w�w�7����F�P�F@P�~~�&�+��^��F��?-u�&�+�F�FP�n���v�^��?-u�-F�~~  �D&�F�.��P�>�&���F�P�-߃����~
        !          11374: t�EF�^��_�?0tG�^��GH���}�؋��-F��d|�Ǚ�d���Ǚ����F��
        !          11375: |�Ǚ�
        !          11376: ���Ǚ����F���F^_��]ÐU�����&�v
        !          11377: �v�v�v���F�����]�U���V�F��>�t6�,�F��؃?-u�&�+���v��9FuMƉF���F��0�^���8�^�w�w�w�7��
        !          11378: ���F�P�؋GFP�?-u�&��+�FP�)���v�^��?-u�-F��&PV�}&���0F��^�w�~~>�&PV�`&���.F�^��}&�G��;F~�F�FPV�;&���v�0PV�����F^��]�U�����&�v�v�v����F�����]ÐU���V�^�w�w�w�7��     ���,�؋GH���?-u�&��+�F�F�S�vP�H���,�wN96�}�&��*����6����|��9F}�v
        !          11379: �v�v�v�B���^��]À>�t�v�F�|�u��v����G��v�v�v�2���^��]�U��~et�~Eu�v�v
        !          11380: �v�v����'�~fu�v
        !          11381: �v�v����]Ð�v�v
        !          11382: �v�v����]�U��V�v�~tV�����@PV�F�P�2��^]Ë��r59�s%P�ر��ً+���ËشJ�!Xr$�H����.�&�Ë��!�U���V�F-L������������F��P�nۃ��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^; r�    �*�F�tH�~
        !          11383: t3ɋѸ&B�!rK�F
        !          11384: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          11385: �B�!r��"���Y�J;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9�s&����������;�u ١+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          11386: �t���2���^_��]�U��WV�v�< t�<      uF��+�PPV���PV�   ����V�.�w����^�.^_]�U���WV�v�^��0F�~~�N�=t�G��0�F��N��~|�=5|����0N�<9t���^�?1u        �^�G���F@P�v�ك�^_��]�U��VW��lU��^; }��|��"@t�&�3���]�U��S�^
        !          11387: &�&3�[��]�U��S�^3�&�[��]�U���]�
        !          11388: U��S�F
        !          11389: �^&�[��]�U���]�U���N
        !          11390: �^�V�@�!3���]��>6u��6ÐU���WV��P�'ك����u��<u��PV�6��G�����RP��V��؃�RP�aߣ���+���ހ?t��ފ�����qu    ��ހ?-uG��|؋�ހ?t�P���P�6�������������?&�@��^_��]�U���WV�v�|}��|  ~��|~      �|     }��|
        !          11391: ��l���~�|u�\�㋇��
        !          11392: ��\�㋇��F���u�F��|
        !          11393: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U��׋ތ؎��v�~�NjN�*;�v���;�s����NO�����Ǩ&t�I�������]�U��׌؎��~�ߋN��F����&t�I�������]��*�C�ӻ�@�!�U���WV+�9vu�:�F�~t)�F�F����^��F��7����@��^��?t���v� �F��t�^���!u�N�u�~�t�F���~t�v����F�v���v��
        !          11394: ����&��6����F��F�P�qՃ��F��u!�v��aՃ����u���6�뷋~��6��^�~��?��$��F��^
        !          11395: ���?�~t-�F�F��+�P�^��7W�Ճ�P�1���@���F��^��?uۃ~�t>+�P�6PW�hՃ�P�������F��G+��N���"t��"����GF��N��G�G�~t�&G�G�vW�Ճ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W��ԃ�P�������F��^��?t� GF�^��?t,�7�5���F��=}v���
        !          11396: �^�7�ԃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
������+�VW�؋^
        !          11397: ���ãD�F�F�H�6FF�R�&)�!�&)�b�!U�>}!.�^=.�&\=�.�5.�6`=�u.�6b=.�d=�D�~t�3��2��P��!X�B&�V�K�!P�P�0�!<X[}!.�^=.�&\=�..�d=.�6b=�u.�6`=�5���B]_^r�M�!�f��4     �������Q�U��VW��؎��v�z6�6�6�6��zU��]���Ȭ��󤑪�r2���U�M�E���_^��]�U���WV�L+����D�tV��у�@t&G��96ds��^_��]ËN
        !          11398: �F�V�~W��
        !          11399: �t��
        !          11400: u�y
        !          11401: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�f��������?���������?���&03���@� ��u��t���t
        !          11402: ���������&3���؎����W��^�L�d� �DD��Dt��y�-�������t�S�5>��=P����X�5.��9�5��7<�=3��������ȺM�⑰M���װ����������CW�߾���3?_�<�/�4��9>��=��AtG�=?�<�/�:�W�7<�5.��=�������������?�ً�3��������������֚��ٿ��2�QSRUVP������������������������Y�Y�Y�Y�Y�������������Y0��OI�0���������&Z[�U��VW3ۋV
        !          11403: ��&�(��;vs��@�
_^��]�U��VW3ҋ^
        !          11404: �_^��]���؎��N�v�F&N��U�]+vv���
�u�E�]����5>  �=P�   �      X�5.   ��>��6�Ή�����3��uA��
        !          11405: ����6��        �
        !          11406: �����u��Bt��0� �     �.     �5.    �=É��t���>��7  �9���X��0�&��0X�u���߃����t���ǀu
        !          11407: ��ǀt�� �>  �     ���P3ɋ��r����r��Ӌ��������������ڀ������������t��3ɉ������Xu�̀�&2�3���toN<Dt@<Et3�>�t_<+t<-uWN�$�>�tF�NN<+t<-t<9w<0r&�X�3�������������F��&�P��&��u
        !          11408: �>�u��@X�u����&t
��3ۉ�����>�>���u+>���:&~�:&����}�����>��>�v���5��5��7.     �:��9> �=�   Au"�7��9�9>   �=�   t�  &Q��mYË>��9�W3������
��_��&�3���ߋ׋��z&r9
        !          11409: �u     �����k&P�DXЃ���������r��Q&s�����>@�xH�4����&3�V��� ����������^�7. �WUS�����X�X�X����������X��@�,X��02�X�u�̀���߃����t���ǀu
        !          11410: ��ǀt�� �>  �     ��y�P3ɋ��r����}r�P���&�������&��u����r�X���s���7��9�9>   �=�   t�  &Q��mYû��.r���w����������x�����vt  <+t<-tN��N���bt�,0r�<       ~,r�
        !          11411: :�}�2��FN3���&����(u�������u����&u��$t�<.t�,0r�<      wδ��u��� 
        !          11412: ���2��;6�s#��>�t< t�<    t�<
        !          11413: t�<
t�<ar<zw$_�2���@�@�@@�@P�@$�@���@ ��@���4@������N@��p+��ŝi@�%��O�@וC�)��@�D�����@զ��Ix��@����G���AkU'9��p�|B������~�QCv���)/��&D���������?
        !          11414: ףp=
        !          11415: ף�?;�O��n��?,e�X���?#�GG�ŧ�?�il��7��?�Bz�Ք���?��a�w̫�?[�Mľ����?S;uD����?��9E��ϔ?�⼺;1a�z?Y�~�S|�_?/�����D?��9�'��*?��d|F��U>�#Tw����=:zc%C1��<�8�G����;��D�y��E��W_��F�t'��������W%t�S���������2���<�/�:�[���MSEM87
        !          11416: gfw...GW:�&|&�&G`��d�&������.���NO87=
        !          11417: �VP��8�P��8�tr��3��&�=te��3�t��2��t��P��� �O&�
        !          11418: �t83������O+��ϋ�P�Ļ&SWQP��8�Ļ&S�8W�SP��8[����>uB��Q���Y3��X�>XQ���Y�&X?�>X?u�>XQ���Y@�X��t3���
hjj��8�>t �>u
        !          11419: �#s�����jh>h"��8�>u�x��>ujh�h��8�4�2��3�����Ã>u��>t���W#��6V��8À>t���3�:t����ã�ù�45��!@��E�������~�>t       ���U���4%��!@�����!@���!ù�4%���!@����À�>t��À��C�PU�����v�:�F �FS�^�(sކĉF�PU�����v����S����3��F2���&u
        !          11420: �&t��&��t��&��u�t��������u
        !          11421: �t������������"è&tP�F��=�&uX���F%8=&Xu4&����n     [��]���uX�PS��6�G6�G[X����VSQRW�^�N�ӊ̀�8���������tQ�V���&���u �� &u?��u��u�3���t��t       �&���&u��?�6;6u�����6����<�&&��t�I��V���&���t     ��&u�4��t��*��6;6u�������,�6;6u�j����6��uM�����t�>J�����w�.J������,�6;6t"���������,����6;6u�����6�V���&���u�� &u��u�F��ʀ���P��y���u����ʋ�����u$�����˛����t�À��F��f_ZY[^�l�$��&&_ZY[^����Q�N��8��t
��t��0��0uS���t��?�6;6u�a����6����<�NQ����&�N��PY��8��t��t$������N��-�N��8&��&t�w� ���@����������؛�>�
        !          11422: Y$��L��~��N���t�F�u�n�~��~t��>@&N�n�3ɉN�N�N�N�N��P�F%�&��&=�Xs������@u\��@WVQS���׃>t�>V�N�ـ���؀�����t   ��8���v
        !          11423: ��~�~�~�F��N�F��^[Y^_��>�
        !          11424: �S����u8����u1����u+����&u$���&u���u���u���u��� u���@u���ءu��L�!�[�Xϣ%<��>t���.�
        !          11425: á�3�:t��>��$?%���%�>t��>
        !          11426: ��
        !          11427: �������.����.
        !          11428: Ë
        !          11429: Q���
        !          11430: �&U��]�
        !          11431: �f�%�>t(��>
        !          11432: ��
        !          11433: �������.���.
        !          11434: ��Ë
        !          11435: Q���
        !          11436: �&U�H]�‹���6;6u�����6�
        !          11437: Ë �ъ.��€�?
        !          11438: ��ъ.����tّ����PUV���v���NN�v��������$&�İ��S�&� ��P�=����P�2\UV���vNN�v)S3�TX;�u(�@&%�0=�0u�@<�r�@&%��=��t�@&=��t��[^]XόTn��Vp��Lf��Jd�F\v�DZt�|Hb�BXr���.)}x���
r�
�
r�
r�
�
PhY�
,8D���;�F����r����% rv#�#�"�"rrrr�D$&!r��rrS����z�����������z��I���������6����)y���������6���������������6�����@B&&�&@�@����������?�����������&���j���0����Se�B׳�#,�k��
        !          11439: ����d��3���&5�h!���&���Kx��&��\);�������� ����y���r����{Z�>\i��7M�,������f��ˑX^���� &y�  �cfψp�9���F�����ˑX^���2[�ɤP�������K�����+�RJ�eBPU����K�$��C��8V
        !          11440: Ob��m�QP�;$m[ �P��K�$��C����t���T=���_��J���ow{8���
        !          11441: ]�{����~�      ��-�w���Wq����O1�5^����K�z��Ӳ�(       /�Ċ
        !          11442: ��vp>[���`�3������l��_�  �����UV���vNN�v���^]������PWVRQS��U����Ӌ��~GG�M������Ã���.����F�
        !          11443: �ێ���ӎÌF�W�ӊ�����G�M�.��v�PWVRQSU��ڋ��~�
����(sώ‹�� �PWVRQSU��؎���Ӌ��~G�M���4���Ŋ݃���.����‹��H3���v�F���Ћ‹���G�,3���v�F���Ћ‹��GG��5GG��ƋV�F������~����� ��������݃���&t.��&�S��[�؎��6�����>��G�~3����ߎǣ�������������&t.��6�l�Hr<�6���t�>���t����t.���6;6u�����6�2.���+���&�!�6���Հ������2�+�;>�&���&]��[YZ^_�   �Њ&��€�?
        !          11444: ��Њ&���uX��R��ك�.��F�ك�.��N����6;6u�x���6Ëك�.��V�ك�.��^��u��k��t$����u���t��TX;�uk��F���t��u�����u�������.��f�����.��v�����.�����u�����u�&�T��t3��J�@ú�����3һ��3҇����3һ��3һ��E����
        !          11445: D����2u
        !          11446: 2T
        !          11447: �M�D.�'�����Q�U
        !          11448: Ã����&�=�&    2���u
        !          11449: Ã�2       ���>       �&�>�.�.�.�.�.�.�����Ë>�;�t������������t�2�x�놋Ƌ߹�w��닋��+�|���������=C~/UR�u�&2�y�݋�M�]�}�x�I��&�������URQ2֜�譋Э�ȭ�ح3����tp��|�t��&��ыˋ�3���w�tSr)��|3�
        !          11450: �t��&�Ċ╊֊�͊�ߊ���2��wt(����������Fu������?t�� ������������΋������?t��&�Xx"L\|s����������s��&@���}+L\|s3���������������������X��P�U��2�R�@P"�3ۋ�ˋ�t��t����U��t�U�t        ���ڃ��D�t��t   ���ڃ�X�P3ɋ�t�U�t     ������D�t�U�t  ������D�t��t   �����X�P3ۋ�t
        !          11451: �e�ʃ��D�t�U�t        ���ʃ��D�t�U�t  ���ʃ��D��t       ���ʃ��Ձ��?X�P3�R�D�t
        !          11452: �e�ڃ��D�t�U�t        ���ڃ��D�U�t      ���ڃ�Q3ɋD�t
        !          11453: �e����D�U�t    ������D�e��Y]���ыˋ�X�t��&^�a&��2�URVW��������_^��譋ȭ�ح�Э���������3��r����������EU�>�JW��@W�<W�8�&���������r"��;Tu;Du;\u;s���
        !          11454: �2���Y[_^�<&�6�3�;�sb�u;�wA��RS�3�����t���P���t���ꡜ�t������[+��[�]蕒��sO����s��O+�����‹���ɰ�u����t���ًʋ�3���&    �>�X]������u������NJ��݊�Ί򗕊Ԋ�2�����ufN�������������t��S��
        !          11455: ͊��tD� ��r��r���wr'��&t"�XP��r���rXP��r���&��s��F3�Ջʊ�����r]��s��
        !          11456: �
        !          11457: Š�������t�� ��r��r��wr,��t'�XP��r���rXP��r�3�����s��F3�2��G���tA� ��r��r���wr,��&t'�XP��r���rXP��r�3��&���s��F�����M�]�EX]�䀈e
        !          11458: ��@}��&�~�u�Eþ& �`��e
        !          11459: Ã�������r��r"�2        �B��e
        !          11460: ���r
        !          11461: � �Āu�J   �*��e
        !          11462: Ã �Āt���&���&�����$&�Ȇċ6;6u� ���6�ʀ2�<�t!<t3�d
        !          11463: ,��D�t�T�|3��D�D�Èd
        !          11464: �@����u��u؀�&�ӈd
        !          11465: ���u�u�&���&뿃,�@H����
        !          11466: �y����u3������&u�\�D�d
        !          11467: �������d
        !          11468: �������6�D
        !          11469: �L
        !          11470: �u��L
        !          11471: �D=�}�=��~��d�������؋T
        !          11472: �2��\Tt7� �������r,��r2���rw��&t�Ѓ�&2�y       ������t���ë���r�
        !          11473: �x���
        !          11474: �x��Ճ(�������r��r1.�X ��
        !          11475: �.�V   ��ë����r�Āu�.�\     ��
        !          11476: �ë.�Z        ���Āt���0����=}7��T��
        !          11477: ƋT�\
        !          11478: �t��&����s��&����d
        !          11479: �䀊NJ��ފ�2��%�3����P����6;6u�N���6��&���&���&���&����������������������������Ӏˀ�\�L�T�l&�ʊ�怈t
        !          11480: 2��4����������=�t=t-��D�tø@����u��u��&����u�u�&��&�փ-��,�T�L�\@H���������y�,�T�L�\2����u     3������&��&u=�T&�\�D�L�����������������������ڒ��ë�«�|
        !          11481: �瀸�
        !          11482: �
        !          11483: �����\
        !          11484: �������
        !          11485: &럋��6�L
        !          11486: �u�L
        !          11487: �l��}߁�&�~܊�T&
        !          11488: �t��&��tR� �������r:��r0��t9��t4�\�D�L��������y&��E��|�S��s����r��r̋\�D�L�������������������������ڒ��ë�«�����������
        !          11489: ��L
        !          11490: ��
        !          11491: �Ã��(�\
        !          11492: �《������r��r�^  .�.�.�.�
        !          11493: �����r
        !          11494: �u�f  ��
        !          11495: �t����0����݋̓��t
        !          11496: �怊T�\�l�D&������������ū�ë�«�&����t13�݋Ӹ�6;6u�����62ɈL�π�y�߈l
        !          11497: �Y�6;6u����63���D�D�D�D&��d
        !          11498: �&�d�V�6�Du8�D&u.�L��*�l�|��\�*�u�d
        !          11499: 
        !          11500: �y��t3�x     _�«�3����&����&���&����t=3ۋӸ�6;6u����62ɈL�π�y��������&���l
        !          11501: �t�&�8���3�-�&V�_�«�ëË6�DuA�D&u2�L��3�l�|��\�|&�u!�d
        !          11502: 
        !          11503: �y��������&��3�x�3ҋ���t��&��3��&���&���&���&������t?�?�6;6u�T���62ɈL�π�y��l
        !          11504: �u�u����3�3�- ���r�V���_��ë�ū�«Ë6�DuO�D&u5�L��?A�l�|��\��d
        !          11505: 
        !          11506: �y�33�x;6u�����6�3�3�݋������u�ۃ&�������������������Ë6�L��?} �l�|��\�P3�����t�?���D&���D�D�D�D&��3���������r������������D��\�l�|�3���?��I|at+��@}[��0~��t&��3���߃�0��������s���������������t&� �u)�u1
        !          11507: �"���s3���&���ð&2�3���ߋ����u��D
        !          11508: �u����D
        !          11509: �u��ϋ��6;6u����6�����ڎŽإ������ڎŽ�&�������怈t
        !          11510: ��2�=�t=t%-�?�D�tø@��|�u�ll,u��&�ދlll,u�&��&�ʃ03�,�l�l�l����&u������
        !          11511: 櫋6;6u�����6�3���������
        !          11512: 櫋6;6u�����6���u�3�������6;6u����6Ë��6�D�?�t
        !          11513: ��
        !          11514: �|
        !          11515: �uĥ������;6u����6Ë6�d
        !          11516: Ë6�t
        !          11517: ��&��
        !          11518: �á���á���Ë6������E$*ȋE��M
        !          11519: 
        !          11520: �y��Dp=@}=&�~�D�y      �@�D��&��D&��&�3�� t���D
        !          11521: �e
        !          11522: 3ۊ\����
        !          11523: ]��.���2�xF
        !          11524: �y���ߋD;E|��������r        w�
@�@�
&�9�
�2�
A�+�t�$�x����t��x����t�2���t����t�6;6u�b���6Ë6�D
        !          11525: ����$�       .ע
Ë6�D
        !          11526: $�3ۋӊ\��.�����     ���    ���    ���    �
��    ��n    ��z    �6;6u�����6��>.�.�.�.�.�.�����sZ������;6�������>���t�؎����sZ�������FF�����sZ��6;6u�y���6�؎����a�����&t�~�sZ�n�ڎ��J��t�6;6u�Q���6�U�>�>�3��������E+D����M�]�E}�u�B�;Dr%w;\rw;Lrw;r��>�t�u���>�t
���su���t�}
        !          11527: ���P�Ń��.��&
����&u�������u    �t!�����@�u �t ������&�&
3��i�
�u�����@�
�@u����܀�&���Āu�>�t����������������r&���&�+L\DEË6�,���s ��r��u�    ��u���r���>   ������ËD
        !          11528: ��u�V�J�E
        !          11529: �DH�\�L�T�&t@���������E���r��9R�u����W�s�����3�����݋Ӌ������݋Ӌ�����X���݋ȃ�&����ى]�M�E���_�>����J����M���W��.�.�.�.�.�.���_�:��V�ɎًL
        !          11530: ��&�U
        !          11531: ��:�uEVW
        !          11532: �y���ʀ�&��&:�u(
        !          11533: �wʋL���?&�U���?;�u������u�u�u&��_^����ÿ~���WVS�r���>��(�^.��_��>�QV�r��^��V�V�� �^Y���^VS���^��.��[W���n�QV�r�>����^YQ��V�r���^V�����^Y���_Ë6�V�6;6u�S߃��6�>^�<�û�        �]�Ë>���D
        !          11534: ����6�6;6u�,߃��6É>��r���     ���s6���J���V��        ���>��K�z    ���=�^W����    ���>��H�^�=�&P���b
        !          11535: ����>��"�X
        !          11536: �t     ��      �Z��$�Ë6�&û�
        !          11537: ���W���>�����_�>�����E��Ë>���D
        !          11538: ����6�6;6u�vރ��6�V���Z�M��^W�f�C�]�E��   ���w�MCS�z    ����>����[_S�i[3��t9��y���۹I��s�W�ۿf����ë����«�Z�f�>��I��_�>��V�Ë>���D
        !          11539: ����6�6;6u��݃��6�W�J��V��      �R��>���^�
��E������>�����_�>������5�!��$��$�%�%�!�#5�!��$��$��$�#%�!�PR�%.��$�!ZX�PR���.��$�#%�!ZX.�.�$�.�>�$Q���Y.��$�t�:��.�.�$�L&MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s dir
        !          11540: %d calls in %f seconds (%f calls/sec)
        !          11541: ........%s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          11542:       %s: (%s)  
        !          11543:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          11544: \*.*rewind failed����;C_FILE_INFO���&&@�C�B
B
&&�&�         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          11545: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # """""Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error���'9IJK[mnop|������������������%.com.exePATH\010203040506070809101112M61xxe+000��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&��SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO�"�1#NAN1#INF1#IND2�f$��7y�AC���������C2$od&��0��>��.A<<NMSG>>R6000
        !          11546: - stack overflow
        !          11547: R6003
        !          11548: - integer divide by 0
        !          11549:       R6009
        !          11550: - not enough space for environment
        !          11551: �
        !          11552: �run-time error R6002
        !          11553: - floating point not loaded
        !          11554: &R6001
        !          11555: - null pointer assignment
        !          11556: �: MATH
        !          11557: - floating-point error: einvalid
        !          11558: fdenormal
        !          11559: gdivide by 0
        !          11560: hoverflow
        !          11561: iunderflow
        !          11562: jinexact
        !          11563: kunemulated
        !          11564: lsquare root
        !          11565: m
        !          11566: nstack overflow
        !          11567: ostack underflow
        !          11568: pexplicitly generated
        !          11569: �����ڃ��D�U�t  ���ڃ�Q3ɋD�t
        !          11570: �e����D�U�t    ������D�e��Y]���ыˋ�X�t��&^�a&��2�URVW��������_^��譋ȭ�ح�Э���������3��r����������EU�>�JW��@W�<W�8�&���������r"��;Tu;Du;\u;s���
        !          11571: �2���Y[_^�<&�6�3�;�sb�u;�wA��RS�3�����t���P���t���ꡜ�t������[+��[�]蕒��sO����s��O+�����‹�./special/stat2.exe   777  20115     11       75112  4552136703   7517 MZJ> �����I&��
��fff(iCiMi�i�i&iB&id&i�&iui,i�i�i&0(�,�U��B&�WV�~u��^�7�BP�xP����&P�:���^�w���=|��^�w�����^�w�����^�w�Z�������^�w�J��������&F9����)V�]P���P�
        !          11572: ����&P���P�Q��P�&������P����P�       ����&F9����:��&G9����'V�`P���P�������P���P�n����������P����P�����������+���������������7����86R   ��������+���������������7����:��5����=�5����8Z        �9��9����=�����t��6��cP�pP����5�;��4��������9�=�5��������9�=�6��zP�pP�^���P�
��^_��]ÐU��&�+WV�F�N=t��e&dž��������F9���|�|�����v
        !          11573: ��P���P�|����&P���P��������=|����P��P����&P�
���^������k��=|�������P�S���&P�����t�dž��������F9���|������v��P���P�������P����=|����P��P��&���&P����^����P�+��=|����P��P��&���&P�N���v�v�v�v
        !          11574: �v�v�v������P����=|���P�&���&P�
���9�^_��]�U��&�WV�F�N=t��K&dž��������F9���|�S�����v
        !          11575: �&P���P�������P�>��=|�"�~t����P�&P�����&P����^���dž��������F9���|�������v�&P���P������P����=|�%�~u������P�&P����&P����v�v�v�v�v
        !          11576: �v�v�v������.&P���=|��1&P�G���&P��
        !          11577: �����P�4��=|����P�A&P����&P�
        !          11578: ���^��*�^_��]�U��&�7WV����P�c���F�=t��6b�Q&P�xP�&�������P�6b�c&P�xP����v(�v&�v$�v"�v �v�v�v�v�v�v�v�v�v�v�v
        !          11579: �v�v�v�xP��
        !          11580: ��(�>/u�
�n&P�����p&P�xP�
        !          11581: ���xP��
        !          11582: ���~�t�
        !          11583: �&P��        ��^_��]�U���_
        !          11584: WV�P�"P���^_��]�U���@
        !          11585: WV�P�P�����&�(9 ~�#}�    9r��.&��@B� �^�� +&(�G�W�^��+"$��W^_��]�U���    WV�'�RP�^�w�w�3RP�^�w�7�r&P�pP�      ���~}�<~� �~w�.�^�Gu�!�^�w�7�v�v��RP��&P�pP�e    ��^_��]�U��&�=       WV�~t���&P��
        !          11586: ���F=t��F�&����P�v�i��=t�<�v��&P���P������P����=u��v��&P�����&P����v�n��=|��v��&P�k����&P�����v�&��=|��v��&P�C����&P����^_��]�U���gWV�~t��P�   
        !          11587: ���F=t��F'�v�L&��=|��v�3P�����������^_��]�U���     WV�v�        ���F��V��F�V9V�~�0}�9F�r�#�v�v�v��v��v
        !          11588: �TP�����&P����F��V��^_��]�U���WV�^�&:t�g�^�������u��^��- ��^��-@�F��F�P�v������F�P����F�9F�u��^��P��P������&P���^_��]�U���WV�6b��P�pP�#���6b�X����P�M��^_��]�U����WV�v�4����v�
        !          11589: ���^_��]�U����WV�&P�v�
        !          11590: ���^_��]�U���WV�F�u��������F@&u��&��ƉF��v��v��    ���^_��]�U���TWV�v�v����^_��]�U���4WV�F�P�
����RP�F�*�+�QP�:�Ȱ<�f�ȃ��F�*�ȃ��^��W�'�RP�F�*�+�QP��^�G�W�F�F^_��]�U����WV�F�F��F���F�~�@|��^��F�������^��G��^�&:t�-�^�������u��^��- ��^��-@�F��
        !          11591: �F�P����F�P�v��^��=u�����V�^�F��G�G+�P�v�+�P�v��<
�^�G�W
        !          11592: +�P�v�+�P�v��$
�^�G�W�^�v�D�T�G�W��^_��]�U����WV�F��v�fP�7����P�fP�����>�u�����&�P����h�>ht���~�jP�v��fP�g��=u���_�6h�jP�&���F�&��F��jP�,��=t�!�F�����������hP�jP�[&������F�H�f�d�`�^_��]�U����WV�F��F�F�jP�v��fP��
        !          11593: ��=u���P�����&P�     ���6h�jP�����F�&��F��jP�
        !          11594: ��=t�!�F�����������hP�jP�������F�H�f�d^_��]�U���JWV�F�F�d��^_��]�U���,WV�F�F�f�9V~�}�9Fv��F�d^_��]�U����WV�F�F�f9d� ����d�d����������h�^_��]�U���WV�FP�v�        ��^_��]�U���WV�F���F��^��v�������&u�
�^��v� ��^��v��^��v�<u����^_��]�U���7WV�F�F��^_��]Ð�0�!<s� ���6+���r���ׁĞ�s�m
        !          11595: 3�P����L�!���6�&�6�&��Ʊ��H6����6��+��۴J�!6�5����+�3���;���a
        !          11596: 3��6V�6T�6R�~�P�����ظ6��xP��        �]��P���0�!�7�5�!�#�%�%���!�B  �.�5&�6,�D  ��3�6�@        s��  6�H    �ڻ6�@       �5&�,�6��3�&�=t,���t��3��u�����>������t&H������>��D�!r
        !          11597: �€t��>@Ky�L        �L      ��L   �N      ��U��\�\�}�N      �P      �t�U��P      �P      �f�P   �P      �l�   �t�~u�F�����>&t�>�!C����F�L�!�B        ���@        �#�%�!�>`t
�a�b�%�!�;�s
        !          11598: OO�
�������;�s���Et�����Y��+�r
        !          11599: ;fr����3��k�U���WV�F�F��v������FP�v�v�
�����vV������^_��]ÐU���WV�v+��D$<uF�Du�ށ�h������������&t'�+D�F��~P�t�D�P���;F�t�L ����D��D��^_��]�U��^;<r�      ���>�!rƇ>�,
        !          11600: U��^�t�O�&��]�U��VW���?u)��u3���$@$�������&���D����6��N�؎��5_^��]�U��׋ތ؎��~3�����u��~������+����F��&t�I�������]�U��׋ދv���؎�3������ы~�Ǩ&t�I�������]��o�kU���WV�6V�tF�~t@�v�����������<t*�4����;�~��9=u�W�vS�����u֋�A&��+�^_��]�U���WV�v��t&�<t!V��PV��P�����P��P��P�����>/| ��9/|����/�㋷>V�Z��PVW�����&P��PW���^_��]ÐU���WV�F���F�F��EB�F�E��E��FP�vW������Mx*������W+�P�����^_��]�U���v�P�v�����]�U�����P�����F��~u+�P�v������u�&�Z+��V�F���F�F��F��~�t&�6V�F�P�v�+�P�Q���F�@u�>/t�F���F���6V�F�P��P+�P�i����]�U��V�C�!r�F�t������&�&C�!�`U��9�U��;�V�!�LU��:�V�!s�=u쒓�C<t
        !          11601: <?t<*u�����U���v�v+�P���]�U���`WV�v�F����~u+�PP�P�S��*�@�F�F@�G�:G�\G�F�G�F�F��~��F�P�F�P�4���F�P�n��@�F��~�u;�~��V�������u �/���~9v�~
        !          11602: �/"+���F�PW�����^_��]ÐU���WV�F*�F��~�}&:u���=\t�=/u�}&t�F�u�=u�@@������F�t�&���&�.P�v�!�����t1��PW�����t��PW����t��PW����u��@��%�&������%�&������^_��]ÐU���LWV�v�~��PV�����t
�/����Y&�+�P�F�P�P�����F�N�F�7�v��F�P�F�P�����|&:u�������&t� ����-`�+�PP�P���*�@�F�~�th��PV�\���t����P+�P�v�������F��u�j�V����@t)�v������v������F�+��FЉF��F�!�F��
��v������+�+��E�E
        !          11603: �E�F�H��EV�FɘP�7����E�E&�F΋VЉE�U�F�%��P�Fʱ��%?P�Fʱ��%P�F�%P�F̱��%P�F̱      ��%P����E�U�E�U�E�U+�^_��]�U��V�A�!�U��O�V�U��N�V��!��Nu�V�N���!��U��V�6�!=��u�/�V�v�D�\�L�^3�]�U���!@��^�3�]�U��,�!�^�/�O&�w�W3�]�U��VJ��!��^�3�]�U��WVS3��F�}G�V�����F�V�F
        !          11604: �}G�V�����F
        !          11605: �V�u�N�F3���؋F����8�؋N�V�F���������u�����f
        !          11606: ��F���r;Vwr;Fv&N3ҖOu���؃�[^_��]�U��F�^
        !          11607: ؋^u�F���]���ȋF�f
        !          11608: ȋF��ы�]�����4�G�0�G81�G^0�G
        !          11609: 1�U���P�e�>�t����P�S��]ø���V3��B2���2�����Ut
����&P�,�&^Ï��87t)�5&�,�Z3����3��u�GG�>X�����ыѿ&���5�< t�<       t�<
to
        !          11610: �tkGN�< t�<    t�<
t\
        !          11611: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          11612: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>R�G��׀��+�ģT���6�?CC�6X��
        !          11613: �u���6�5�3���< t�< t�<
u�
        !          11614: �u�y�6�?CCN�< t�<     t�<
tb
        !          11615: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          11616: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&�U��U�53ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �m_�ϋ���.V��3�I��<;Ct�~EE��
        !          11617: �u���N]��]�U��VW�V�r    �;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â:
        !          11618: �u#�>7r
<"s
< r���<v���ט�/Ê���U���WV�v�D��F���-h�����������F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�h������������&uF��pt��xu3�v������u-����pu�b���j�D��^��G�&��V����Du�ށ�h������������&tP�<+|�D@��^��GH�D�~W�t�v������F����^���> t�P+�PPS�$���\�F����&��P�FP�v�����F�9~�t����F*�^_��]ÐU���V�v����pu�F�b����xu$�F�j�Du�ށ�h������������&t+��5��-h�����������F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~pt�~xuv�^�G�P�z���td�F-h�����������F��v�����^���G�^��+���G�*��^�bt�ju�G�P����t    �v���^��]�U��d&�%�WV�v�����H�F�8�F�,�B�@�|�<%t�X�D&+��4�0�>�2�<�:�.�*�6�N �|&0u<F�N0�3�<+u
�4�:�"��< u
�>4u�:��*� �<-u��6F��P�����u�V�JP�f�����>J}�6�J�أJ�<.u#�<FV�DP�<�����>D}
        !          11619: �D&�<��=Ft2=Nt5=ht =lu�2�>2u�<Lu&F�<u�&�2&���2���2�ӊ�����=Et
        !          11620: =Gt=Xu      �0���� ����-c=v�&��.��� �8��@��8�i&��>�*�
        !          11621: P�&���Q&�����.�0�><u       �F&���F�<�D�>2u�+��2�F�9Jt'�J�F��>6t   �J���.J�J�}+��J�8�P�����:P�����~�t"�>6t�F�-�J�}+��J���J�.8�P�������/�+�P��&�*���&����������>2t��N��G�=t�=%u���+�PV�������<t�|��>@uY�,�G tO����Ml �r r r | �| | | | p��| | b | �| | \ �>Bt�>@u�,�G u��F뙐�@^_��]ÐU���WV�~
        !          11622: t�>�>2t�>2u�8��W�F��V��8�*�>>t�8��F��F����8���F��V��8�>*t
�F�F�t�F�+��L�6H�>>u*�~�}$�~
        !          11623: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�����><t!W�   ���D+ȉN����0F��I���N�0���t<a|�, FG�}�u�>>u�4:t�~�u�&�+�P���^_��]ÐU���WV�~t�&�8�F��^��8��>2u�8��W�F��V��8���8��F��F��^��8�>2u
�F�F�u���      �~�u   ���F��^��F��V��F�V�+�96<t�D���^��F�&�?tF;�~��F�^��F�&�?u�>J+��>6uW�&��V�v��v��o&���>6tW�&��^_��]�U����8�F��~gt�~Gu�&�*��F��><u�D�~�t
�>Du�D&�60�6D�v�6H�v�����
        !          11624: �~�t�>*u�6H�����>*t�>Du�6H����8�L�4:t�v�����t�&�+�P�&��]�U��V�>Bu/�,�Ox�F�7��*���S�v�o���@u�B���@^]ÐU���WV�>BuI�v�~B��6,�6N�7���@u�B��N�~�,�Ox۠N�?��*��܃>Bu�F&@^_��]�U���WV�v�>BuP��6,�^&��P�����@u�B�F��N�t�,�Ox��^&��,�?��*��҃>Bu�F&@^_��]�U���
        !          11625: WV�6H+��F��F��>N0u9<t9.t9Fu�N �>JV����F�+�+~�>6u�<-u�>N0u��P�����N��>N0t�~�>6t�~t�F��_�>Lt�F��j�>6u&W�����~t  �~�u�5�>Lt �~�u�=�v�V������>6t
�N W�a���^_��]Ã>4t�+�� P����Ð�0P������>Lu�>0t�X���xP�����ÐU���WV�v�F�&�<*u�8�?�8F�H��<-u�F���F+��<0|5�<909><u�<0u�N0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V���N��F�<t
        !          11626: :u��&��+�^��]ÐU���2��~��F���F���u�@u���u�F���V$
        !          11627: Ǵ=�!s=u    ��&t���?����%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�y��F��u�Fu0�>�!�F$
        !          11628: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;<r
        !          11629: �>�!����
        !          11630: N���&��>�Ë�]�2��ܡ1��#�3ɨ�u��&�U����^;<r�  ������> t�B3ɋ��!r���>�tn�V3��F��F��WV����f��N�T�
        !          11631: �uJ�
=�vH���ܺ=(s��+�ԋ��N�<
        !          11632: t;�t����#�a�
;�u���
        !          11633: �F����
��^_�U�E3���PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ���>@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u���>@t
        !          11634: �ڀ?u���������At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&����&��=��t%���&t��H;�s����&t�����D���G�t���&��t�،�;�t&���7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&����G3���Q�E��&t+�IAA��&;�v��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P�w�����Z[t��U��׌؎��~3�������I���]�U��WV�N�&�ً~��3����ˋ��v�D�3�:E�wtII�ы�^_��]�U��WV�v3��3۬< t�<    t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]�U��f�V�F�!��]�U��VW�~��]�M�U�u�}
        !          11635: �!W�~��]�M�U�u�E
        !          11636: r3���q�&��u_^��]�U��� WV�v��Q�&RP�D�3�+¹��3�+™RP�0�F�V�^�㋿��ƙ����u�~~&G�<�RP�F�RP���+�SQ�ȋF
        !          11637: �ڙRP�N�^���빀Q�&SQ�ȸm&����ЋF�ǙRP�N��^���F�V�F�V�ȋF�ڙ�ځ�����&N�^�FljF�����&F�V�DP�F��FH�F��F
        !          11638: �F�>t�F�P�h���t        �n��^��F�V�^_��]�U��֋v�^��
        !          11639: �t,��'C:�t�,A<ɀ� �A��,A<ɀ� �A:�t������]�U��W�~3�����A��O�F��G8t3�����_��]�U��� VW�v�Ў��3��~��
        !          11640: �t���Ȱ&������C���v�%�t���Ȱ&������"C�t�D�_^��]�U�츌�O�WV�v�~u�v
        !          11641: �vV�����&+�P��t�P�F�P�F�P�v
        !          11642: �v����@u�������\PV�*������/PV�����F��u      �u���
��t9~�v�~��.PW�����t�v���t�PV�v����F���V�v���P������u
�v��w���z����PVW����P����/�v���t�PW�v�@���F��>/u+��P�.PW�q���P�����v���t�PW�v����F�W����v�����F�^_��]ÐU�����WV��(����v
        !          11643: �v�v�v������|�@u2�>/u+�^���&�</t<\t
        !          11644: �t�&:t��P�u�����u��|����PV�F�P������F����<;t��FG�<u��O��z���(�����z��?\t�?/t��PW����vW����v
        !          11645: �vW�v�������|�@u��>/u��<u�y���F�u��o��^_��]�U��V�C�!r�Ft ��&t�
���ZZ����*�P-����d���㋏����O�s
        !          11646: ��P�꡼eP����U���WV�v�������&t� ����=et
F�������u�����.F���F��Lj�~�F�|�u�^_��]�U���WV�v���<.tF�<u�F�|�t0��<et�<EtF�<u���N����N�<0t��<.u&NF�G�
        !          11647: �u�^_��]�U����^�9�8b      �9��9~��=�f��r�&��]Ð+���]�U���WV�~t�v�����^���������^_��]��v�����~��������^��9F��5�=^_��]�U���WV�>�t1�P�F��؃?-u�&��+���v�~~�&�+�PV�-���I�^�w�w�w�7����F�P�F@P�~~�&�+��^��F��?-u�&�+�F�FP�n���v�^��?-u�-F�~~  �D&�F�.��P�>�&���F�P�U߃����~
        !          11648: t�EF�^��_�?0tG�^��GH���}�؋��-F��d|�Ǚ�d���Ǚ����F��
        !          11649: |�Ǚ�
        !          11650: ���Ǚ����F���F^_��]ÐU�����&�v
        !          11651: �v�v�v���F�����]�U���V�F��>�t6�P�F��؃?-u�&�+���v��9FuMƉF���F��0�^���8�^�w�w�w�7��
        !          11652: ���F�P�؋GFP�?-u�&��+�FP�)���v�^��?-u�-F��&PV�}&���0F��^�w�~~>�&PV�`&���.F�^��}&�G��;F~�F�FPV�;&���v�0PV�����F^��]�U�����&�v�v�v����F�����]ÐU���V�^�w�w�w�7��     ���P�؋GH���?-u�&��+�F�F�S�vP�H���P�wN96�}�&��*����6����|��9F}�v
        !          11653: �v�v�v�B���^��]À>�t�v�F�|�u��v����G��v�v�v�2���^��]�U��~et�~Eu�v�v
        !          11654: �v�v����'�~fu�v
        !          11655: �v�v����]Ð�v�v
        !          11656: �v�v����]�U��V�v�~tV�����@PV�F�P�2��^]Ë��r59�s%P�ر��ً5+���ËشJ�!Xr$�H����.�&�Ë��I�U���V�F-h�����������F��P�ۃ��^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U����^;<r�    �*�F�tH�~
        !          11657: t3ɋѸ&B�!rK�F
        !          11658: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          11659: �B�!r��>���Y�f;�s+�����3���U��VW�~u8���V�FHu�Sr'�H�6Ht;�t
�D�FV�:^s0����s�u������ڃ��۱��H�!r钉�T�63�_^��]ËN��9Lt����u���?��r9�ӎ�;�u9�s&����������;�u ١5+؎��J�!r
;�u�������U��WV�~�v�ߋN��
        !          11660: �t���2���^_��]�U��WV�v�< t�<      uF��+�PPV���PV�   ����V�R�w����^�R^_]�U���WV�v�^��0F�~~�N�=t�G��0�F��N��~|�=5|����0N�<9t���^�?1u        �^�G���F@P�v�ك�^_��]�U��VW��lU��^;<}��|��>@t�&�3���]�U��S�^
        !          11661: &�&3�[��]�U��S�^3�&�[��]�U���]�
        !          11662: U��S�F
        !          11663: �^&�[��]�U���]�U���N
        !          11664: �^�V�@�!3���]��>Zu��ZÐU���WV�P�'ك����u��<u��PV�6�G�����RP��V��؃�RP�aߣ�+���ހ?t��ފ������u    ��ހ?-uG��|؋�ހ?t�P���P�6����������?&�@�^_��]�U���WV�v�|}��|  ~��|~      �|     }��|
        !          11665: ��l���~�|u�\�㋇��
        !          11666: ��\�㋇��F���u�F��|
        !          11667: ��F�m&��ȍE&�ٙ3�+¹��3�+�F�������F�+‰F��|u9Du�||�&���F�9D|�u�|&|�+�^_��]�U��W�~��3�����A�يF���O8t3���_��]�U��׋ތ؎��v�~�NjN�*;�v���;�s����NO�����Ǩ&t�I�������]�U��׌؎��~�ߋN��F����&t�I�������]��*�C�ӻ�@�!�U���WV+�9vu�V�F�~t)�F�F����^��F��7����@��^��?t���v�<�F��t�^���=u�N�u�~�t�F���~t�v����F�v���v�/�:
        !          11668: ����&��6����F��F�P�Ճ��F��u!�v��Ճ����u�/�:�6�뷋~��6��^�~��?��$��F��^
        !          11669: ���?�~t-�F�F��+�P�^��7W�Ճ�P�1���@���F��^��?uۃ~�t>+�P�RPW�Ճ�P�������F��G+��N���>t��>����GF��N��G�G�~t�&G�G�vW�DՃ�+��~G�^97tt9wt� GF���F��,v�+�P�^��7W�Ճ�P�������F��^��?t� GF�^��?t,�7�5���F��=}v��/�:
        !          11670: �^�7�.ԃ����
�^�ƈ�F�^_��]ÐU��~&t�~t
�/�����+�VW�؋^
        !          11671: ���ã`�F�b�d�6bF�n�&)�!�&)�~�!U�>7}!.��<.�&�<�.�5.�6�<�u.�6�<.��<�`�~t�3��2��P��!X�^&�V�K�!P�P�0�!<X[}!.��<.�&�<�..��<.�6�<�u.�6�<�5���^]_^r�M�!�f��P     ������/�Q�U��VW��؎��v��6�6�6�6���U��]���Ȭ��󤑪��2���U�M�E���_^��]�U���WV�h+����D�tV�$҃�@t&G��96�s��^_��]ËN
        !          11672: �F�V�~W��
        !          11673: �t��
        !          11674: u�y
        !          11675: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]�f��������?���������?���&03���@� ��u��t���t
        !          11676: ���������&3���؎����W��^�L�d� �DD��Dt��y�-�������t�S�5>��=P����X�5.��9�5��7<�=3��������ȺM�⑰M���װ����������CW�߾����>_�<�/�4��9>��=��AtG��>�<�/�:�W�7<�5.��=�������������?�ً�3��������������֚��ٿ��2�QSRUVP������������������������Y�Y�Y�Y�Y�������������Y0��OI�0���������&Z[�U��VW3ۋV
        !          11677: �    &�(� ;vs��@�
_^��]�U��VW3ҋ^
        !          11678: �_^��]���؎��N�v�F&N��U�]+vv���
�u�E�]����5>9  �=P�9   �;      X�5.;   ��>    �6
        !          11679:        Ή   �      �     3��uA�       
        !          11680: ��        �6
        !          11681:        �6     �
        !          11682:      �     ��u��Bt��0� �     �.6     �5.9    �=É  �t�  �>     �7    �9�  �X��0�&��0X�u���߃����t���ǀu
        !          11683: ��ǀt�� �>  �     ���P3ɋ��r����r��Ӌ��������������ڀ������������t��3ɉ    �     ���Xu�̀�&2�3���toN<Dt@<Et3�>      t_<+t<-uWN�$�>       tF�NN<+t<-t<9w<0r&�X�3������������ F��&�P��&��u
        !          11684: �>    u��@X�u����&t
��3ۉ       �     ��>   >     ��u+>        ��:&~�:&����}�����>        �>     v���5��5��7.,        �:��9>7 �=�8   Au"�7��9�9>7   �=�7   t�6  &Q��mYË>   �9�W3������
��_��&�3���ߋ׋��z&r9
        !          11685: �u     �     ���k&P�DXЃ���������r��Q&s�����>@�xH�4����&3�V���"     ����������^�7." �WUS�����X�X�X����������X��@�,X��02�X�u�̀���߃����t���ǀu
        !          11686: ��ǀt�� �>  �     ��y�P3ɋ��r����}r�P���&    ������&       �u����r�X���s���7��9�9>7  �=�7   t�6  &Q��mYû��.r���w����������x�����vt  <+t<-tN��N���bt�,0r�<       ~,r�
        !          11687: :    }�2��FN3���&����(u�  �����u����&u��$t�<.t�,0r�<  wδ��u�    � 
        !          11688: ��   2��;6  s#��>  t< t�<        t�<
        !          11689: t�<
t�<ar<zw$_�2���@�@�@@�@P�@$�@���@ ��@���4@������N@��p+��ŝi@�%��O�@וC�)��@�D�����@զ��Ix��@����G���AkU'9��p�|B������~�QCv���)/��&D���������?
        !          11690: ףp=
        !          11691: ף�?;�O��n��?,e�X���?#�GG�ŧ�?�il��7��?�Bz�Ք���?��a�w̫�?[�Mľ����?S;uD����?��9E��ϔ?�⼺;1a�z?Y�~�S|�_?/�����D?��9�'��*?��d|F��U>�#Tw����=:zc%C1��<�8�G����;�~D�y�<E��W_��F�t'��������W%t�S���������2���<�/�:�[���MSEM87
        !          11692: gfw...GW:�&|&�&G`��d�&������.���NO87=
        !          11693: �VP�Y8�P�;8�tr��3��&�=te��3�t��2��t��P��� �O&�
        !          11694: �t83������O+��ϋ�P�Ļ&SWQP�x8�Ļ&S�8W�SP�x8[����>uB��Q���Y3��X�>XQ���Y�&X?�>X?u�>XQ���Y@�X��t3���
hjj�$8�>t �>u
        !          11695: �#s�����jh>h"�P8�>u�x��>ujh�h�P8�4�2��3�����Ã>u��>t���W#��6V�o8À>t���3�:t����ã�ù�45��!@��E�������~�>t       ���U���4%��!@�����!@���!ù�4%���!@����À�>t��À��C�PU�����v�:�F �FS�^�(sކĉF�PU�����v����S����3��F2���&u
        !          11696: �&t��&��t��&��u�t��������u
        !          11697: �t������������"è&tP�F��=�&uX���F%8=&Xu4&����n     [��]���uX�PS��6�G6�G[X����VSQRW�^�N�ӊ̀�8���������tQ�V���&���u �� &u?��u��u�3���t��t       �&���&u��?�6;6u�����6����<�&&��t�I��V���&���t     ��&u�4��t��*��6;6u�������,�6;6u�j����6��uM�����t�>J�����w�.J������,�6;6t"���������,����6;6u�����6�V���&���u�� &u��u�F��ʀ���P��y���u����ʋ�����u$�����˛����t�À��F��f_ZY[^�l�$��&&_ZY[^����Q�N��8��t
��t��0��0uS���t��?�6;6u�a����6����<�NQ����&�N��PY��8��t��t$������N��-�N��8&��&t�w� ���@����������؛�>�
        !          11698: Y$��L��~��N���t�F�u�n�~��~t��>@&N�n�3ɉN�N�N�N�N��P�F%�&��&=�Xs������@u\��@WVQS���׃>t�>V�N�ـ���؀�����t   ��8���v
        !          11699: ��~�~�~�F��N�F��^[Y^_��>�
        !          11700: �S����u8����u1����u+����&u$���&u���u���u���u��� u���@u���ءu��L�!�[�Xϣ%<��>t���.�
        !          11701: á�3�:t��>��$?%���%�>t��>
        !          11702: ��
        !          11703: �������.����.
        !          11704: Ë
        !          11705: Q���
        !          11706: �&U��]�
        !          11707: �f�%�>t(��>
        !          11708: ��
        !          11709: �������.���.
        !          11710: ��Ë
        !          11711: Q���
        !          11712: �&U�H]�‹���6;6u�����6�
        !          11713: Ë �ъ.��€�?
        !          11714: ��ъ.����tّ����PUV���v���NN�v��������$&�İ��S�&� ��P�=����P�2\UV���vNN�v)S3�TX;�u(�@&%�0=�0u�@<�r�@&%��=��t�@&=��t��[^]XόTn��Vp��Lf��Jd�F\v�DZt�|Hb�BXr���.)}x���
r�
�
r�
r�
�
PhY�
,8D���;�F����r����% rv#�#�"�"rrrr�D$&!r��rrS����z�����������z��I���������6����)y���������6���������������6�����@B&&�&@�@����������?�����������&���j���0����Se�B׳�#,�k��
        !          11715: ����d��3���&5�h!���&���Kx��&��\);�������� ����y���r����{Z�>\i��7M�,������f��ˑX^���� &y�  �cfψp�9���F�����ˑX^���2[�ɤP�������K�����+�RJ�eBPU����K�$��C��8V
        !          11716: Ob��m�QP�;$m[ �P��K�$��C����t���T=���_��J���ow{8���
        !          11717: ]�{����~�      ��-�w���Wq����O1�5^����K�z��Ӳ�(       /�Ċ
        !          11718: ��vp>[���`�3������l��_�  �����UV���vNN�v���^]������PWVRQS��U����Ӌ��~GG�M������Ã���.����F�
        !          11719: �ێ���ӎÌF�W�ӊ�����G�M�.��v�PWVRQSU��ڋ��~�
����(sώ‹�� �PWVRQSU��؎���Ӌ��~G�M���4���Ŋ݃���.����‹��H3���v�F���Ћ‹���G�,3���v�F���Ћ‹��GG��5GG��ƋV�F������~����� ��������݃���&t.��&�S��[�؎��6�����>��G�~3����ߎǣ�������������&t.��6�l�Hr<�6���t�>���t����t.���6;6u�����6�2.���+���&�!�6���Հ������2�+�;>�&���&]��[YZ^_�   �Њ&��€�?
        !          11720: ��Њ&���uX��R��ك�.��F�ك�.��N����6;6u�x���6Ëك�.��V�ك�.��^��u��k��t$����u���t��TX;�uk��F���t��u�����u�������.��f�����.��v�����.�����u�����u�&�T��t3��J�@ú�����3һ��3҇����3һ��3һ��E����
        !          11721: D����2u
        !          11722: 2T
        !          11723: �M�D.�'�����Q�U
        !          11724: Ã����&�=�&    2���u
        !          11725: Ã�2       ���>       �&�>�.�.�.�.�.�.�����Ë>�;�t������������t�2�x�놋Ƌ߹�w��닋��+�|���������=C~/UR�u�&2�y�݋�M�]�}�x�I��&�������URQ2֜�譋Э�ȭ�ح3����tp��|�t��&��ыˋ�3���w�tSr)��|3�
        !          11726: �t��&�Ċ╊֊�͊�ߊ���2��wt(����������Fu������?t�� ������������΋������?t��&�Xx"L\|s����������s��&@���}+L\|s3���������������������X��P�U��2�R�@P"�3ۋ�ˋ�t��t����U��t�U�t        ���ڃ��D�t��t   ���ڃ�X�P3ɋ�t�U�t     ������D�t�U�t  ������D�t��t   �����X�P3ۋ�t
        !          11727: �e�ʃ��D�t�U�t        ���ʃ��D�t�U�t  ���ʃ��D��t       ���ʃ��Ձ��?X�P3�R�D�t
        !          11728: �e�ڃ��D�t�U�t        ���ڃ��D�U�t      ���ڃ�Q3ɋD�t
        !          11729: �e����D�U�t    ������D�e��Y]���ыˋ�X�t��&^�a&��2�URVW��������_^��譋ȭ�ح�Э���������3��r����������EU�>�JW��@W�<W�8�&���������r"��;Tu;Du;\u;s���
        !          11730: �2���Y[_^�<&�6�3�;�sb�u;�wA��RS�3�����t���P���t���ꡜ�t������[+��[�]蕒��sO����s��O+�����‹���ɰ�u����t���ًʋ�3���&    �>�X]������u������NJ��݊�Ί򗕊Ԋ�2�����ufN�������������t��S��
        !          11731: ͊��tD� ��r��r���wr'��&t"�XP��r���rXP��r���&��s��F3�Ջʊ�����r]��s��
        !          11732: �
        !          11733: Š�������t�� ��r��r��wr,��t'�XP��r���rXP��r�3�����s��F3�2��G���tA� ��r��r���wr,��&t'�XP��r���rXP��r�3��&���s��F�����M�]�EX]�䀈e
        !          11734: ��@}��&�~�u�Eþ& �`��e
        !          11735: Ã�������r��r"�2        �B��e
        !          11736: ���r
        !          11737: � �Āu�J   �*��e
        !          11738: Ã �Āt���&���&�����$&�Ȇċ6;6u� ���6�ʀ2�<�t!<t3�d
        !          11739: ,��D�t�T�|3��D�D�Èd
        !          11740: �@����u��u؀�&�ӈd
        !          11741: ���u�u�&���&뿃,�@H����
        !          11742: �y����u3������&u�\�D�d
        !          11743: �������d
        !          11744: �������6�D
        !          11745: �L
        !          11746: �u��L
        !          11747: �D=�}�=��~��d�������؋T
        !          11748: �2��\Tt7� �������r,��r2���rw��&t�Ѓ�&2�y       ������t���ë���r�
        !          11749: �x���
        !          11750: �x��Ճ(�������r��r1.�X ��
        !          11751: �.�V   ��ë����r�Āu�.�\     ��
        !          11752: �ë.�Z        ���Āt���0����=}7��T��
        !          11753: ƋT�\
        !          11754: �t��&����s��&����d
        !          11755: �䀊NJ��ފ�2��%�3����P����6;6u�N���6��&���&���&���&����������������������������Ӏˀ�\�L�T�l&�ʊ�怈t
        !          11756: 2��4����������=�t=t-��D�tø@����u��u��&����u�u�&��&�փ-��,�T�L�\@H���������y�,�T�L�\2����u     3������&��&u=�T&�\�D�L�����������������������ڒ��ë�«�|
        !          11757: �瀸�
        !          11758: �
        !          11759: �����\
        !          11760: �������
        !          11761: &럋��6�L
        !          11762: �u�L
        !          11763: �l��}߁�&�~܊�T&
        !          11764: �t��&��tR� �������r:��r0��t9��t4�\�D�L��������y&��E��|�S��s����r��r̋\�D�L�������������������������ڒ��ë�«�����������
        !          11765: ��L
        !          11766: ��
        !          11767: �Ã��(�\
        !          11768: �《������r��r�^  .�.�.�.�
        !          11769: �����r
        !          11770: �u�f  ��
        !          11771: �t����0����݋̓��t
        !          11772: �怊T�\�l�D&������������ū�ë�«�&����t13�݋Ӹ�6;6u�����62ɈL�π�y�߈l
        !          11773: �Y�6;6u����63���D�D�D�D&��d
        !          11774: �&�d�V�6�Du8�D&u.�L��*�l�|��\�*�u�d
        !          11775: 
        !          11776: �y��t3�x     _�«�3����&����&���&����t=3ۋӸ�6;6u����62ɈL�π�y��������&���l
        !          11777: �t�&�8���3�-�&V�_�«�ëË6�DuA�D&u2�L��3�l�|��\�|&�u!�d
        !          11778: 
        !          11779: �y��������&��3�x�3ҋ���t��&��3��&���&���&���&������t?�?�6;6u�T���62ɈL�π�y��l
        !          11780: �u�u����3�3�- ���r�V���_��ë�ū�«Ë6�DuO�D&u5�L��?A�l�|��\��d
        !          11781: 
        !          11782: �y�33�x;6u�����6�3�3�݋������u�ۃ&�������������������Ë6�L��?} �l�|��\�P3�����t�?���D&���D�D�D�D&��3���������r������������D��\�l�|�3���?��I|at+��@}[��0~��t&��3���߃�0��������s���������������t&� �u)�u1
        !          11783: �"���s3���&���ð&2�3���ߋ����u��D
        !          11784: �u����D
        !          11785: �u��ϋ��6;6u����6�����ڎŽإ������ڎŽ�&�������怈t
        !          11786: ��2�=�t=t%-�?�D�tø@��|�u�ll,u��&�ދlll,u�&��&�ʃ03�,�l�l�l����&u������
        !          11787: 櫋6;6u�����6�3���������
        !          11788: 櫋6;6u�����6���u�3�������6;6u����6Ë��6�D�?�t
        !          11789: ��
        !          11790: �|
        !          11791: �uĥ������;6u����6Ë6�d
        !          11792: Ë6�t
        !          11793: ��&��
        !          11794: �á���á���Ë6������E$*ȋE��M
        !          11795: 
        !          11796: �y��Dp=@}=&�~�D�y      �@�D��&��D&��&�3�� t���D
        !          11797: �e
        !          11798: 3ۊ\����
        !          11799: ]��.���2�xF
        !          11800: �y���ߋD;E|��������r        w�
@�@�
&�9�
�2�
A�+�t�$�x����t��x����t�2���t����t�6;6u�b���6Ë6�D
        !          11801: ����$�       .ע
Ë6�D
        !          11802: $�3ۋӊ\��.�����     ���    ���    ���    �
��    ��n    ��z    �6;6u�����6��>.�.�.�.�.�.�����sZ������;6�������>���t�؎����sZ�������FF�����sZ��6;6u�y���6�؎����a�����&t�~�sZ�n�ڎ��J��t�6;6u�Q���6�U�>�>�3��������E+D����M�]�E}�u�B�;Dr%w;\rw;Lrw;r��>�t�u���>�t
���su���t�}
        !          11803: ���P�Ń��.��&
����&u�������u    �t!�����@�u �t ������&�&
3��i�
�u�����@�
�@u����܀�&���Āu�>�t����������������r&���&�+L\DEË6�,���s ��r��u�    ��u���r���>   ������ËD
        !          11804: ��u�V�J�E
        !          11805: �DH�\�L�T�&t@���������E���r��9R�u����W�s�����3�����݋Ӌ������݋Ӌ�����X���݋ȃ�&����ى]�M�E���_�>����J����M���W��.�.�.�.�.�.���_�:��V�ɎًL
        !          11806: ��&�U
        !          11807: ��:�uEVW
        !          11808: �y���ʀ�&��&:�u(
        !          11809: �wʋL���?&�U���?;�u������u�u�u&��_^����ÿ~���WVS�r���>��(�^.��_��>�QV�r��^��V�V�� �^Y���^VS���^��.��[W���n�QV�r�>����^YQ��V�r���^V�����^Y���_Ë6�V�6;6u�S߃��6�>^�<�û�        �]�Ë>���D
        !          11810: ����6�6;6u�,߃��6É>��r���     ���s6���J���V��        ���>��K�z    ���=�^W����    ���>��H�^�=�&P���b
        !          11811: ����>��"�X
        !          11812: �t     ��      �Z��$�Ë6�&û�
        !          11813: ���W���>�����_�>�����E��Ë>���D
        !          11814: ����6�6;6u�vރ��6�V���Z�M��^W�f�C�]�E��   ���w�MCS�z    ����>����[_S�i[3��t9��y���۹I��s�W�ۿf����ë����«�Z�f�>��I��_�>��V�Ë>���D
        !          11815: ����6�6;6u��݃��6�W�J��V��      �R��>���^�
��E������>�����_�>������5�!��$��$�%�%�!�#5�!��$��$��$�#%�!�PR�%.��$�!ZX�PR���.��$�#%�!ZX.�.�$�.�>�$Q���Y.��$�t�:��.�.�$�L&MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s dir files count
        !          11816: %d%d%d calls in 0 seconds
        !          11817: %d calls in %f seconds (%f calls/sec)
        !          11818: %s%dcreat %s failedclose %d failed%s%dmkdir %s failedchdir %s failed..chdir .. failed%s%dunlink %s failed%s%dchdir %s failed..chdir .. failedrmdir %s failed%s: getwd failed
        !          11819:       %s: (%s)  
        !          11820:  in %ld.%-2ld seconds (%ld bytes/sec)NFSTESTDIRo:\nfstestdrm -r %scan't remove old test directory %scan't create test directory %scan't chdir to test directory %sNFSTESTDIRo:\nfstestdcan't chdir to test directory %sIllegal %s parameter %ld, must be at least %ldcan't change to drive %c:   %s ok.
        !          11821: \*.*rewind failed����;C_FILE_INFO���&&\�C�b
b
&&�&         (((((                  H����������������&&&&&&&&&&&&&&&&&&&&������ : 
        !          11822: COMSPEC/ccommand.com.exe.bat.com?*./\
     �
�(null)(null)+- # �����Error 0No such file or directoryArg list too longExec format errorBad file numberNot enough corePermission deniedFile existsCross-device linkInvalid argumentToo many open filesNo space left on deviceMath argumentResult too largeResource deadlock would occurUnknown error
        !          11823: -./01CUefgw��������������������0%.com.exePATH\010203040506070809101112M61xxe+000��;Zx����&0&N&m&��:Yw����&/&M&l&TZPSTPDT�p&SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec;C_FILE_INFO.�>�1#NAN1#INF1#IND2�f$��7y�AC���������C2$id&�#0~:>��.A<<NMSG>>R6000
        !          11824: - stack overflow
        !          11825: R6003
        !          11826: - integer divide by 0
        !          11827:       R6009
        !          11828: - not enough space for environment
        !          11829: �
        !          11830: �run-time error R6002
        !          11831: - floating point not loaded
        !          11832: &R6001
        !          11833: - null pointer assignment
        !          11834: �: MATH
        !          11835: - floating-point error: einvalid
        !          11836: fdenormal
        !          11837: gdivide by 0
        !          11838: hoverflow
        !          11839: iunderflow
        !          11840: jinexact
        !          11841: kunemulated
        !          11842: lsquare root
        !          11843: m
        !          11844: nstack overflow
        !          11845: ostack underflow
        !          11846: pexplicitly generated
        !          11847: ���
        !          11848: �e����D�U�t    ������D�e��Y]���ыˋ�X�t��&^�a&��2�URVW��������_^��譋ȭ�ح�Э���������3��r����������EU�>�JW��@W�<W�8�&���������r"��;Tu;Du;\u;s���
        !          11849: �2���Y[_^�<&�6�3�;�sb�u;�wA��RS�3�����t���P���t���ꡜ�t������[+��[�]蕒��sO����s��O+�����‹���ɰ�u����t���ًʋ�3���&    �>�X]������u������NJ��݊�Ί򗕊Ԋ�2�����ufN�������������t�./special/touchn.exe   777  20115     11       32147  4552136747   7773 MZM& d��8@��&$�&�/&��&U���WV�~u��^�7�BP����&P��&���^�w�����������������u�,�����SP���P������&P���P���P�������P�&��^_��]ô0�!<s� ��&�6+���r���ׁĎ   �s��3�P�D��L�!���6�&b6�&^�Ʊ��H6�\��6��+��۴J�!6����^��        +�3���;�`��3��6��6��6����P����&�ظ6�`P�_����P�`�0�!���5�!�����%�.&�!�x�.��&�6,�z��3�6�vs�16�~�ڻ6�v��&�,�6��3�&�=t,����t��3��u������������t&H���������D�!r
        !          11850: �€t���@Ky羂���������U�쾄���}�����t�U�쾄���f�����l�&�t�~u�F������&t�>�!C����F�L�!�x���v���%�!�>�t
���&�%�!�;�s
        !          11851: OO�
�������;�s���Et�����Y��+�r
        !          11852: ;&r����3��k�U���WV�&&�F�F�V�������FP�vV����F�VW�d���F�^_��]�U��^;�r�      ���>�!rƇ��
        !          11853: �7U���WV�F���F�F��EB�F�E��E��FP�vW������Mx*������W+�P�����^_��]�U���v�P�v�,����]�U���P�e�>&t�&��P�S��]ø�w�V3��B2���2�����Ut
����&P�,�&^Ï&�8�t)��&�,��3����3��u�GG�>������ыѿ&�����< t�<      t�<
to
        !          11854: �tkGN�< t�<    t�<
t\
        !          11855: �tX<"t$<\tB��3�A�<\t�<"t��Ӌ���Ѩ&u��&N�<
t+
        !          11856: �t'<"t�<\tB��3�A�<\t�<"t��ۋ���Ѩ&u���>��G��׀��+�ģ����6�?CC�6���
        !          11857: �u���6���3���< t�< t�<
u�
        !          11858: �u�y�6�?CCN�< t�<     t�<
tb
        !          11859: �t^<"t'<\t���3�A�<\t�<"t�\��Ѱ\���s�"���N�<
t.
        !          11860: �t*<"t�<\t���3�A�<\t�<"t�\��ٰ\���s��"���3����&&U��U��3ɋ����I�6,�t��&�>t�E�u�E�@$������W�     �      _�ϋ���.���3�I��<;Ct�~EE��
        !          11861: �u���N]��]�U��VW�V���;�t@�t�3��������_^��]�U��W�v����t���3�������I��@�!_��]�r3���]�s�P�X��]�s�������]�2��&â�
        !          11862: �u#�>�r
<"s
< r���<v��
        !          11863: &ט��Ê���U���WV�v�D��F���-&�����������&�F��D�t�D@t�L ����&��D&u�L�d�+��D���~��Du_�ށ�&�������������&&uF��&&t��.&u3�v�����u-�L��&&u�������D��^��G�&��V����Du�ށ�&�������������&&tP�<+|�D@��^��GH�D�~W�t�v���
���F����^���� t�P+�PPS�.
���\�F����&��P�FP�v��
���F�9~�t����F*�^_��]ÐU���V�v�L��&&u�F������.&u$�F���Du�ށ�&�������������&&t+��5��-&�����������&�F��F��D��^���G�D�&�L�&^��]�U���V�~t[�~&&t�~.&uv�^�G�P����td�F-&�����������&�F��v����^���G�^��+���G�*��^��t��u�G�P�
���t   �v�v��^��]�U��d&��WV�v�����|�F�l�F�`�v�t�|�<%t�X�x&+��h�d�r�f�p�n�b�^�j�� �|&0u<F��0�3�<+u
�h�n�"��< u
�>hu�n��^� �<-u��jF��P�����u�V�~P�f�����>~}�j�~�أ~�<.u#�pFV�xP�<�����>x}
        !          11864: �x&�p��=Ft2=Nt5=ht =lu�f�>fu�<Lu&F�<u�&�f&���f���f�ӊ�����=Et
        !          11865: =Gt=Xu      �d���� ����-c=v�&��.����l��t��l�i&��r�^�
        !          11866: P�&���Q&�����b�d�>pu       �z&���z�p�x�>fu�+��f�F�9~t'�~�F��>jt   �~���.~�~�}+��~�l�P�����:P�����~�t"�>jt�F�-�~�}+��~���~�.l�P�������/�+�P��&�*���&����������>ft��N��G�=t�=%u���+�PV�������<t�|��>tuY�`�G tO����Mr�
        !          11867: xxx��
        !          11868: ����v
        !          11869: �
        !          11870: �
        !          11871: ��h��
        !          11872: ��b�>vt�>tu�`�G u��F뙐�t^_��]ÐU���WV�~
        !          11873: t�r�>ft�>fu�l��W�F��V��l�*�>rt�l��F��F����l���F��V��l�>^t
�F�F�t�F�+����6|�>ru*�~�}$�~
        !          11874: u�-F�F��V��؃��ډF��V��F�&��F��F���vW�v��v�� ���>pt!W�   ���x+ȉN����0F��I���N�d���t<a|�, FG�}�u�>ru�hnt�~�u�&�+�P���^_��]ÐU���WV�~t�&�l�F��^��l��>fu�l��W�F��V��l���l��F��F��^��l�>fu
�F�F�u�8�      �~�u   �?�F��^��F��V��F�V�+�96pt�x���^��F�&�?tF;�~��F�^��F�&�?u�>~+��>juW�&��V�v��v��o&���>jtW�&��^_��]�U����l�F��~gt�~Gu�&�*��F��>pu�x�~�t
�>xu�x&�6d�6x�v�6|�v��N��
        !          11875: �~�t�>^u�6|�P���>^t�>xu�6|�T���l���hnt�v��V���t�&�+�P�&��]�U��V�>vu/�`�Ox�F�7��*���S�v�o���@u�v���t^]ÐU���WV�>vuI�v�~B��6`�6��7���@u�v��N�~�`�Ox۠��?��*��܃>vu�F&t^_��]�U���WV�v�>vuP��6`�^&��P�����@u�v�F��N�t�`�Ox��^&��`�?��*��҃>vu�F&t^_��]�U���
        !          11876: WV�6|+��F��F��>�0u9pt9bt9zu�� �>~V�G���F�+�+~�>ju�<-u�>�0u��P�����N��>�0t�~�>jt�~t�F��_�>�t�F��j�>ju&W�����~t  �~�u�5�>�t �~�u�=�v�V������>jt
�� W�a���^_��]Ã>ht�+�� P����Ð�0P������>�u�>dt�X���xP�����ÐU���WV�v�F�&�<*u�l�?�lF�H��<-u�F���F+��<0|5�<909>pu�<0u��0�����������ȃ�0��F�<0|�<9~�F�����^�?��^_��]ÐU���V�F�N��F�<t
        !          11877: :u��&��+�^��]ÐU���2��~��F���F���u�@u�[�u�F���V$
        !          11878: Ǵ=�!s=u    ��&t���?����%=u �>�!����F�&�D�!�€t�N�@�F�@t���F�t�t        3ɴ@�!��>�!�V�C�!�g��F��u��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�y��F��u�Fu0�>�!�F$
        !          11879: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          11880: �>�!����
        !          11881: N���&����Ë�]�2��ܡ���#�3ɨ�u��&�U��WV�v3��3۬< t�<        t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]Ë�br59\s%P�ر��ً�+���ËشJ�!Xr$�H�\��.b&bË��?�U���V�F-&�����������&�F��P�����^�G�t�O�^��G���^�O�F�@�G�^��G&�^��D��G^��]�U���WV�v+��D$<uF�Du�ށ�&�������������&&t'�+D�F��~P�t�D�P���;F�t�L ����D��D��^_��]�U����^;�r�   �*�F�tH�~
        !          11882: t3ɋѸ&B�!rK�F
        !          11883: uFVy(���6�V��F��ѸB�!FVy
�N��V��B�!�؋V�N�F
        !          11884: �B�!r�������U����^;�r�        ������� t�B3ɋ��!r�����tn�V3��F��F��WV����f��N�T�
        !          11885: �uJ�P&=�vH���ܺ=(s��+�ԋ��N�<
        !          11886: t;�t����#�a�
;�u���
        !          11887: �F����
��^_�U�E3��E�PSQ��+���^�@�!r
&F��tY[X��Ã�s�     ����@t�^�?u������F�+F��f�^_���N�u�����V�@�!s�  ���u����@t
        !          11888: �ڀ?u�������U��׌؎��~3�������I���]�U��VW���U��^;�}��|���@t�&�3���]�U���WV�&+����D�tV����@t&G��966s��^_��]�Y�&;�s+�����3���U��^�t�O�&��]�U��VW�^�?u)���&u3���$@$��^�`��&���D����6d�N�؎��i_^��]ËN
        !          11889: �F�V�~W��
        !          11890: �t��
        !          11891: u�y
        !          11892: �-��ۃ��ڋ��3��t�����0<9v'����u�O���D��D&;�r�X_^��]���At�������s�w�����&tBH;�s���&t4����D����t��L�+�H����L��ƌڌ�;�t&�l��&�r=��t%���&t��H;�s����&t�����D���G�t���&�rt�،�;�t&�h�7뼋w3��j;�t
$&@@��^t
�M��t�NN뙌،�;�t&�l��G3���Q�E��&t+�IAA��&;nv��u����r�r
��#�+��u����u�3�Y�RQ�tW������D����w��+�J�U�XYZ�SP3�RRP�&P������Z[t��U��VW�~u8�b�V�FHu�Sr'�H�6�Ht;�t
�D�FV�:^s0�����s�u������ڃ��۱��H�!r钉�T�6�3�_^��]ËN��9Lt�����u���?��r9�ӎ�;�u9\s&����������;�u     ١�+؎��J�!r
;�u�\�����MS Run-Time Library - Copyright (c) 1988, Microsoft Corpusage: %s count
        !          11893: name%d�'�&b;C_FILE_INFO���&&��&C�
        !          11894: 
     �
���&&�&�&(null)(null)+- #����� �<<NMSG>>R6000
        !          11895: - stack overflow
        !          11896: R6003
        !          11897: - integer divide by 0
        !          11898:       R6009
        !          11899: - not enough space for environment
        !          11900: �
        !          11901: �run-time error R6002
        !          11902: - floating point not loaded
        !          11903: &R6001
        !          11904: - null pointer assignment
        !          11905: ���NB00��
        !          11906: TOUCHN.OBJ�D:\MSC\5.1\LIB\BINMODE.OBJ��&dos\crt0.asmL&o&&dos\crt0dat.asm�&
        !          11907: chkstk.asm�<&printf.c &
dos\close.asm.&atoi.asm2V&     sprintf.c�&   creat.asm� &dos\crt0msg.asm�&
        !          11908: crt0fp.asm�"&
        !          11909: chksum.asm��&&dos\stdargv.asmvn&dos\stdenvp.asm�T&dos\nmsghdr.asm8T&dos\dosret.asm�&_file.c�V&&      _flsbuf.c�&&   _sftbuf.c��&output.c��&&dos\open.asmhT&atox.asm�B&dos\stdalloc.asm�&_cflush.asm�l&   _getbuf.cjn&fflush.c�z&
dos\lseek.asmR(&&    write.asmz&
        !          11910: strlen.asm�
        !          11911: &        ultoa.asm�&cmiscdat.asm�#&
        !          11912: isatty.asm�2&
        !          11913: flushall.c�&stackava.asmX&nmalloc.asm`_&xtoa.asm�a&&amalloc.asm"�&dos\brkctl.asm�_mainZ�&__fmodeZ�&__iomode^�&_edata�     �&_end`�&__aexit_rtn��&__abrkpb�&__abrktb\�&__asizds�__astart^�&__atopsp��&     __abrktbe.& __cintDIVv�&
        !          11914: __acrtused=&__amsg_exit��&__osversion��&_errno'__exit��&__child��&__nfileL&__cinit��&___argc��&__intno��&
__dosvermajor��&__oserr��&___argv��&
__dosverminor��&_environ��&__osfile��&__osmode��&__pspadrv�&__fpinit&�&__ovlvec��&__pgmptr��&      __acfinfo��& __ovlflag��& __aintdiv��& __osmajor��& __osminor��&
        !          11915: __umaskvall
        !          11916: __ctermsub��&
        !          11917: __doserrno��&__fac_exit��&__psp&�&STKHQQ�__chkstk�_printf_close._atoi2_sprintf�_creat�__FF_MSGBANNER&�&       __adbgmsgv�& __acrtmsg�__fptrap�__nullcheck�        __setargvv __setenvp�__NMSG_TEXT__NMSG_WRITE8    __dosret0X
        !          11918: __maperrorK
        !          11919: __dosretax@__dosreturn��&__bufin��&__bufout��&__buferr�&�&__iob26�&    __lastiob&�&__iob�__flsbuff__ftbuf�__stbuf�__output�
        !          11920: __copensub�_openW__cXENIXtoDOSmodeh__catox�     __myallocL�&__cflush�__getbufj_fflush�_lseekR_writez_strlen�_ultoaN�&
__cfltcvt_tab\�&__asizeC]�&__asizeDZ�&__sigintoffX�&__sigintseg�_isatty�    _flushall�_stackavail_malloc__nfree^�&__asegds    __nmalloc_freel__cxtoa`
        !          11921: __cltoasub__amallocbrkh�&__aseg1p�&__aseghj�&__asegnl�&__asegr�__amlinkp�&     __QChdata� __amalloc�
        !          11922: __amexpandn�&
        !          11923: __amblksiz"_brkctl&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&zt���&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&&�&���+&u��c��&x� ��&&�&&�&&�&x����&&�&&�&&�&&�&&�&&�&&�&&�&&�&x8��&���mainy
        !          11924: �argc
        !          11925: +argv���&n     ��buf&&touchn.c$3=M^q���
        !          11926: SLIBCE.LIBR&&&&&�&&x
        !          11927: �&&SF&&�7&&'&�&&F&��&&_&��&&&{&a&&�&}&&�&�
&&�&�&& �&       �&&
        !          11928: �&
        !          11929: �
&&&&�5&&&&�&&
5&&
&&L&&&&h&&&&&�&&6%&&�&&[D&&�&&�U&&�&&�&&�&&&&�&&&&&.5&&)&c&&>&q&&[&�&&s&�&&�&�&&�&�
&&�&�
&&�&�&&�&�
&& �& �V&&!&!8 &&"+&"F     &&#B&#V     &&$[&$h     G&&%s&%�     &&&�&&�     �&&'�&'j
        !          11930: &�NB00��u�����ѸB�!�ٍV��?�!�t�~�u�ًѸB�!3ɴ@�!3ɋѸB�!�h��F��N��N�F��u�Fu����V�<�!s�y��F��u�Fu0�>�!�F$
        !          11931: F��V�=�!rړ�F�&u�F&t
��&�V�&C�!r��F�@u=�V�C�!��2�%&t��Ft�� ;�r
        !          11932: �>�!����
        !          11933: N���&����Ë�]�2��ܡ���#�3ɨ�u��&�U��WV�v3��3۬< t�<        t�P<-t<+u&�<9w,0r���ҋˋ�����������؃���X<-�u�؃���^_]Ë�br59\s%P�ر��ً�+���ËشJ�!Xr$�H�\��.b&bË��?�U�./read.me   664  20115     11       30345  4552135572   5572 #   @(#)README      Derived from 1.8 89/01/13 NFS Rev 2 Testsuite
        !          11934: NFS and Connectathon are trademarks of Sun Microsystems, Inc.
        !          11935: 
        !          11936: 
        !          11937: 
        !          11938: Introduction to the NFS Revision 2 Testsuites
        !          11939: ---------------------------------------------
        !          11940: 
        !          11941: These directories contain programs that can be used to test an implementation
        !          11942:  of Revision 2 of the NFS Protocol.  The tests run on a UNIX client and test 
        !          11943: server and client functions.  They are divided into three groups:
        !          11944: 
        !          11945:        basic   - basic NFS operations tests 
        !          11946:        general - general file system tests (omitted from DOS)
        !          11947:        special - tests that poke certain common problem areas
        !          11948: 
        !          11949: This README is divided into six sections.  The first section is the introd-
        !          11950: uction,  which you are reading now.  That is followed by a description of 
        !          11951: what you have to do before you run the testsuites on your machine.  Then 
        !          11952: comes a description of how the testsuites are run in general followed by a 
        !          11953: description of how they are used at Connectathon.  The last sections describes 
        !          11954: what each test does in detail.
        !          11955: 
        !          11956: 
        !          11957: 
        !          11958: Preparing to run the Testsuites
        !          11959: -------------------------------
        !          11960: 
        !          11961: Run polymake in the basic directory and then in the special directory.
        !          11962: You may want to muck with the makefiles a bit to suit your purposes.
        !          11963: 
        !          11964: If you (the client) are running release 3.2 of NFS, you will have to 
        !          11965: modify the Makefile in the "basic" sub-directory.  It contains a compatibilty 
        !          11966: variable that should be uncommented if you are running NFS3.2.  Change 
        !          11967: the line
        !          11968: #COMPAT = -DNFS3_2
        !          11969: to
        !          11970: COMPAT = -DNFS3_2
        !          11971: 
        !          11972: Modifications may be required so the programs compile on your machine.  If 
        !          11973: that is so,  we would like to know what they are so that we can incorporate 
        !          11974: them into our distribution.  
        !          11975: 
        !          11976: The default test directory is o:\nfstestd.  You can modify the
        !          11977: NFSTESTDIR environment variable as needed.
        !          11978: 
        !          11979: NOTE:  When running any of the tests, you should save stdout and stderr
        !          11980:        output in a file for future reference.
        !          11981: 
        !          11982: 
        !          11983: 
        !          11984: 
        !          11985: How to run the Testsuites
        !          11986: -------------------------
        !          11987: 
        !          11988: Set up the NFSTESTDIR and TESTOPTS environment variables, and
        !          11989: then run runtests.bat in first the basic directory and then
        !          11990: the special directory.  The best we can do for general tests is
        !          11991: simply to run a compile of a 7 or 8k C program on your machine.
        !          11992: Multitasking would be better if you can arrange it.
        !          11993: 
        !          11994: How to run the Testsuites at Connectathon
        !          11995: -----------------------------------------
        !          11996: 
        !          11997: 
        !          11998: The tests should be run in the following order:  basic,  general, and special.
        !          11999: The basic tests should be passed completely before other tests are attempted.
        !          12000: 
        !          12001: The NFS Test Suite should be run in three phases:
        !          12002: 
        !          12003: Phase 1 - Run test programs locally.
        !          12004: 
        !          12005: Phase 2 - Run the tests against a Sun.  Run them on your machine using the
        !          12006:           Sun as the server and then run them on the Sun using your machine
        !          12007:           as the server.
        !          12008: 
        !          12009: Phase 3 - NxN Testing.  Run the tests on your machine using every other
        !          12010:          machine as a server,  one at a time.  After the tests are 
        !          12011:          successfully completed using a particular server,  note that
        !          12012:          on the board provided (usually in a conference room). Check 
        !          12013:           the board to make sure that the tests run successfully on 
        !          12014:          every other machine that uses your machine as a server.
        !          12015: 
        !          12016: 
        !          12017: Test Descriptions
        !          12018: -----------------
        !          12019: 
        !          12020: System and library calls that are used by the testsuites are included in paren-
        !          12021: theses.  Look at the source if you are interested in how time statistics are 
        !          12022: recorded since that is not included in this description.
        !          12023: 
        !          12024: 
        !          12025: 
        !          12026: 
        !          12027: - BASIC TESTS:   
        !          12028: 
        !          12029: Many of the programs listed below have optional calling parameters that can be 
        !          12030: used to override existing parameters.  These are not used at this time so they 
        !          12031: are not described.  
        !          12032: 
        !          12033: 
        !          12034: test1: File and Directory Creation Test
        !          12035: 
        !          12036: This program creates the test directory (mkdir)  on the client and changes 
        !          12037: directories (chdir) to it,  unless the -n flag is used in which case it simply 
        !          12038: changes directories to the test directory.  Then it builds a directory tree  
        !          12039: N levels deep, where each directory (including the test directory) has M 
        !          12040: files and P directories (creat, close, chdir, and mkdir).  For the -f 
        !          12041: option N = 2, M = 2,  and P = 2 so a total of six files and six directories 
        !          12042: are created.  For other options N = 5, M = 5, and P = 2.  The files that are 
        !          12043: created are given names that begin with "file." and directories with names 
        !          12044: that begin with "dir.".
        !          12045: 
        !          12046: 
        !          12047: 
        !          12048: test2: File and directory removal test
        !          12049: 
        !          12050: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12051: removes the directory tree (unlink, chdir,  and rmdir) that was just created 
        !          12052: by test1.  The number of levels, files, and directories,  and the name pre-
        !          12053: fixes, are the same as in test1.
        !          12054: 
        !          12055: This routine will not remove a file or directory that was not created by test1 
        !          12056: and will fail if it finds one.  It determines this by looking at the prefix on 
        !          12057: the name of the object it's trying to remove.
        !          12058: 
        !          12059: 
        !          12060: 
        !          12061: test3: Lookups across mount point
        !          12062: 
        !          12063: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12064: gets the file status of the working directory (getwd and stat).    
        !          12065: 
        !          12066: 
        !          12067: test4: setattr, getattr, and lookup
        !          12068: 
        !          12069: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12070: creates ten files (creat).    Then the permissions are changed (chmod) and the 
        !          12071: file status is retrieved (stat) twice for each file. 
        !          12072: 
        !          12073: 
        !          12074: test4a:  getattr, and lookup
        !          12075: 
        !          12076: This test exists but is not called as part of the testsuite.  You can edit
        !          12077: runtests in the basic directory so this test is called.
        !          12078: 
        !          12079: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12080: creates ten files (creat).    Then the file status is retrieved (stat) for 
        !          12081: each file. 
        !          12082: 
        !          12083: 
        !          12084: 
        !          12085: test5: read and write
        !          12086:                 
        !          12087: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12088: then: 
        !          12089: 
        !          12090: 1) Creates a file (creat) 
        !          12091: 2) Gets status of file (fstat)
        !          12092: 3) Checks size of file
        !          12093: 4) Writes 1048576 bytes into the file (write) in 8192 byte buffers.  
        !          12094: 5) Closes file (close)
        !          12095: 6) Gets status of file (stat)
        !          12096: 7) Checks the size of the file
        !          12097: 
        !          12098: Then the file is opened (open) and read (read) in 8192 byte buffers.  It's 
        !          12099: contents are compared with what was written.  The file is then closed (close).
        !          12100: 
        !          12101: Then the file is then re-opened (open) and re-read (read) before it is removed 
        !          12102: (unlink).
        !          12103: 
        !          12104: test5a: write
        !          12105: 
        !          12106: This test exists but is not called as part of the testsuite.  You can edit
        !          12107: runtests in the basic directory so this test is called.
        !          12108: 
        !          12109: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12110: then: 
        !          12111: 
        !          12112: 1) Creates a file (creat) 
        !          12113: 2) Gets status of file (fstat)
        !          12114: 3) Checks size of file
        !          12115: 4) Writes 1048576 bytes into the file (write) in 8192 byte buffers.  
        !          12116: 5) Closes file (close)
        !          12117: 6) Gets status of file (stat)
        !          12118: 7) Checks the size of the file
        !          12119: 
        !          12120: 
        !          12121: test5b: read
        !          12122: 
        !          12123: This test exists but is not called as part of the testsuite.  You can edit
        !          12124: runtests in the basic directory so this test is called.
        !          12125: 
        !          12126: The file created in test5a is opened (open) and read (read) in 8192 byte 
        !          12127: buffers.  It's contents are compared with what was written.  The file is 
        !          12128: then closed (close) and removed (unlink).
        !          12129: 
        !          12130: 
        !          12131: 
        !          12132: test6: readdir
        !          12133: 
        !          12134: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12135: creates 200 files (creat).  The current directory is opened (opendir), the 
        !          12136: beginning is found (rewinddir), and the directory is read (readdir) in a loop 
        !          12137: until the end is found.  Errors flagged are:
        !          12138: 
        !          12139: 1) No entry for "."
        !          12140: 2) No entry for ".."
        !          12141: 3) Duplicate entry
        !          12142: 4) Filename that doesn't begin with "file."
        !          12143: 5) The suffix of the filename is out of range
        !          12144: 6) An entry is returned for an unlinked file. (This error can only be
        !          12145:    found when the test is run with an option other than -f.   For other
        !          12146:    options the readdir loop is done multiple times and a file is unlinked
        !          12147:    each time).  
        !          12148: 
        !          12149: The directory is then closed (closedir) and the files that were created are 
        !          12150: removed (unlink). 
        !          12151: 
        !          12152: 
        !          12153: 
        !          12154: test7: link and rename
        !          12155: 
        !          12156: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12157: creates ten files.  For each of these files, the file is renamed (rename) and 
        !          12158: file statistics are retrieved (stat) for both the new and old names.  Errors 
        !          12159: that are flagged are:
        !          12160: 
        !          12161: 1) Old file still exists
        !          12162: 2) New file doesn't exist (can't stat)
        !          12163: 3) The new file's number of links doesn't equal one
        !          12164: 
        !          12165: Then an attempt is made to link the new file to it's old name (link) and file 
        !          12166: stats are again retrieved (stat).  An error is flagged if:
        !          12167: 
        !          12168: 1) Can't link
        !          12169: 2) Stats on new file can't be retrieved after link  
        !          12170: 3) The new file's number of links doesn't equal two
        !          12171: 4) Stats on old file can't be retrieved after link  
        !          12172: 5) The old file's number of links doesn't equal two
        !          12173:  
        !          12174: Then the new file is removed (unlink) and file stats are retrieved for the old 
        !          12175: file (stat).  An error is flagged if:
        !          12176: 
        !          12177: 1) Stats on old file can't be retrieved after unlink
        !          12178: 2) The old file's number of links doesn't equal one
        !          12179: 
        !          12180: Any files that remain at the end of the test are removed (unlink).
        !          12181: 
        !          12182: test7a: rename
        !          12183: 
        !          12184: This test exists but is not called as part of the testsuite.  You can edit
        !          12185: runtests in the basic directory so this test is called.
        !          12186: 
        !          12187: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12188: creates ten files.  For each of these files, the file is renamed (rename) and 
        !          12189: file statistics are retrieved (stat) for both the new and old names.  Errors 
        !          12190: that are flagged are:
        !          12191: 
        !          12192: 1) Old file still exists
        !          12193: 2) New file doesn't exist (can't stat)
        !          12194: 3) The new file's number of links doesn't equal one
        !          12195: 
        !          12196: Any files that remain at the end of the test are removed (unlink).
        !          12197: 
        !          12198: test7b: link
        !          12199: 
        !          12200: This test exists but is not called as part of the testsuite.  You can edit
        !          12201: runtests in the basic directory so this test is called.
        !          12202: 
        !          12203: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12204: creates ten files.  A link (link) is done for each of these files, and file 
        !          12205: stats are retrieved for the old and new files (stat).  An error is flagged 
        !          12206: if:
        !          12207: 
        !          12208: 1) Can't link
        !          12209: 2) Stats on either file can't be retrieved after link
        !          12210: 3) The either file's number of links doesn't equal two
        !          12211: 
        !          12212: This is followed by an unlink (unlink) of the new file.  An error is 
        !          12213: flagged if:
        !          12214: 
        !          12215: 1) Stats on the old file can't be retrieved after unlink
        !          12216: 2) The old file's number of links doesn't equal one
        !          12217: 
        !          12218: Any files that remain at the end of the test are removed (unlink).
        !          12219: 
        !          12220: 
        !          12221: 
        !          12222: test8: symlink and readlink
        !          12223: 
        !          12224: NOTE:   Not all operating systems support symlink and readlink.  If the
        !          12225:        errno EOPNOTSUPP is returned during test8, the test will be
        !          12226:        counted as passing.  For clients not supporting S_IFLNK, the
        !          12227:        test will not be attempted.
        !          12228: 
        !          12229: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12230: makes 10 symlinks (symlink).  It reads (readlink), and gets statistics for 
        !          12231: (lstat), each, and then removes them (unlink).  Errors flagged are:
        !          12232: 
        !          12233: 1) Unsupported function
        !          12234: 2) Can't get statistics (lstat failed)
        !          12235: 3) The mode in the stats is not symlink
        !          12236: 4) The value of the symlink is incorrect (returned from readlink)
        !          12237: 5) The linkname is wrong
        !          12238: 6) The unlink failed
        !          12239: 
        !          12240: 
        !          12241: 
        !          12242: test9: statfs
        !          12243: 
        !          12244: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12245: gets the file system status on the current directory (statfs).
        !          12246: 
        !          12247: 
        !          12248: 
        !          12249: 
        !          12250: - GENERAL:  General tests to look at server loading.
        !          12251: 
        !          12252: Runs a small compile, Tbl, Nroff and a Large Compile. Four simultaneous
        !          12253: large compiles are also run.
        !          12254: 
        !          12255: 
        !          12256: 
        !          12257: 
        !          12258: - SPECIAL:  Information specific to the special tests
        !          12259: 
        !          12260: The special directory is set up to test special problems that have
        !          12261: come up in the past.  These tests are meant to be advisory, ...
        !          12262: things to watch out for.  It is not required that you "pass" these
        !          12263: tests but we suggest you give them a try.
        !          12264: 
        !          12265: The tests try to:
        !          12266: 
        !          12267:       check for proper open/unlink operation
        !          12268:       check for proper open/chmod 0 operation
        !          12269:       check for lost reply on non-idempotent requests
        !          12270:       test exclusive create
        !          12271:       test negative seek
        !          12272:       test rename
        !          12273: 
        !          12274: 
        !          12275: 
        !          12276: 
        !          12277: - MISC:
        !          12278: 
        !          12279: 'Testitems' is a list of NFS functionality that can be used for reference.
        !          12280: 
        !          12281: Programs in 'tools' (not included in DOS version) are provided for your
        !          12282: use as you see fit.  Please feel free to add to this (or any other)
        !          12283: directory!  If you do, please make sure that Cathe Ray or Vicky
        !          12284: Schulman (sun!cathe or [email protected] and sun!vls or [email protected]) at Sun
        !          12285: gets a copy so we can add it to the master test distribution.
        !          12286: 
        !          12287: t begin with "file." and directories with names 
        !          12288: that begin with "dir.".
        !          12289: 
        !          12290: 
        !          12291: 
        !          12292: test2: File and directory removal test
        !          12293: 
        !          12294: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12295: removes the directory tree (unlink, chdir,  and rmdir) that was just created 
        !          12296: b./testitem   664  20115     11        2155  4552136505   6070 #     @(#)Testitems   1.1 88/10/12 NFS Rev 2 Testsuite
        !          12297: NFS items for testing
        !          12298: =====================
        !          12299: 
        !          12300: Network connectivity
        !          12301: 
        !          12302:        - ping
        !          12303:        - tcp ping
        !          12304:        - udp ping
        !          12305:        - netstat
        !          12306:        - rlogin/telnet
        !          12307: 
        !          12308: User RPC/XDR services
        !          12309:        - authentication
        !          12310:                - none
        !          12311:                - unix
        !          12312:        - portmap
        !          12313:                0 null
        !          12314:                1 set
        !          12315:                2 unset
        !          12316:                3 getport
        !          12317:                4 dump
        !          12318:                5 callit
        !          12319:        - batching (tcp)
        !          12320:        - broadcast (udp)
        !          12321:        - rpcinfo
        !          12322: 
        !          12323: Mount protocol
        !          12324:        - mountd
        !          12325:                0 null
        !          12326:                1 mnt
        !          12327:                2 dump
        !          12328:                3 unmnt
        !          12329:                4 umntall
        !          12330:                5 export
        !          12331:        - showmount
        !          12332:        - mount
        !          12333: 
        !          12334: NFS protocol
        !          12335:        - nfsd/server
        !          12336:                0 null
        !          12337:                1 getattr
        !          12338:                2 setattr
        !          12339:                3 error
        !          12340:                4 lookup
        !          12341:                5 readlink
        !          12342:                6 read
        !          12343:                7 error
        !          12344:                8 write
        !          12345:                9 create
        !          12346:                10 remove
        !          12347:                11 rename
        !          12348:                12 link
        !          12349:                13 symlink
        !          12350:                14 mkdir
        !          12351:                15 rmdir
        !          12352:                16 readdir
        !          12353:                17 statfs
        !          12354:        - biod/client
        !          12355:        - nfsstat
        !          12356:        - special situations
        !          12357:                - open/unlink/read
        !          12358:                - open/chmod/write
        !          12359:                - readdir with empty block
        !          12360:                - non-idempotent (create, unlink)
        !          12361: 
        !          12362: Yellow pages
        !          12363:        - domainname
        !          12364:        - ypbind
        !          12365:        - ypserv
        !          12366:        - ypwhich
        !          12367:        - ypcat
        !          12368:        - ypinit
        !          12369:        - makedbm
        !          12370:        - ypmake: yppush/yppull/yppoll
        !          12371:        - yppasswd
        !          12372:        - files
        !          12373:                passwd, group, hosts, networks, services,
        !          12374:                protocols, netgroup
        !          12375: r mkdir) and 
        !          12376: creates ten files (creat).    Then the permissions are changed (chmod) and the 
        !          12377: file status is retrieved (stat) twice for each file. 
        !          12378: 
        !          12379: 
        !          12380: test4a:  getattr, and lookup
        !          12381: 
        !          12382: This test exists but is not called as part of the testsuite.  You can edit
        !          12383: runtests in the basic directory so this test is called.
        !          12384: 
        !          12385: This program changes directory to the test directory (chdir and/or mkdir) and 
        !          12386: c./read.me   664  20115     11       30345  4552135572   5572 #     @(#)README      Derived from 1.8 89/01/13 NFS Rev 2 Testsuite
        !          12387: NFS and Connectathon are trademarks of Sun Microsystems, Inc.
        !          12388: 
        !          12389: 
        !          12390: 
        !          12391: Introduction to the NFS Revision 2 Testsuites
        !          12392: ---------------------------------------------
        !          12393: 
        !          12394: These directories contain programs that can be used to test an implementation
        !          12395:  of Revision 2 of the NFS Protocol.  The tests run on a UNIX client and test 
        !          12396: server and client functions.  They are divided into three groups:
        !          12397: 
        !          12398:        basic   - basic NFS operations tests 
        !          12399:        general - general file system tests (omitted from DOS)
        !          12400:        special - tests that poke certain common problem areas
        !          12401: 
        !          12402: This README is divided into six sections.  The first section is the introd-
        !          12403: uction,  which you are reading now.  That is followed by a description of 
        !          12404: what you have to do before you run the testsuites on your machine.  Then 
        !          12405: comes a description of how the testsuites are run in general followed by a 
        !          12406: description of how they are used at Connectathon.  The last sections describes 
        !          12407: what each test does in detail.
        !          12408: 
        !          12409: 
        !          12410: 
        !          12411: Preparing to run the Testsuites
        !          12412: -------------------------------
        !          12413: 
        !          12414: Run polymake in the basic directory and then in the special directory.
        !          12415: You may want to muck with the makefiles a bit to suit your purposes.
        !          12416: 
        !          12417: If you (the client) are running release 3.2 of NFS, you will have to 
        !          12418: modify the Makefile in the "basic" sub-directory.  It contains a compatibilty 
        !          12419: variable that should be uncommented if you are running NFS3.2.  Change 
        !          12420: the line
        !          12421: #COMPAT = -DNFS3_2
        !          12422: to
        !          12423: COMPAT = -DNFS3_2
        !          12424: 
        !          12425: Modifications may be required so the programs compile on your machine.  If 
        !          12426: that is so,  we would like to know what they are so that we can incorporate 
        !          12427: them into our distribution.  
        !          12428: 
        !          12429: The default test directory is o:\nfstestd.  You can modify the
        !          12430: NFSTESTDIR environment variable as needed.
        !          12431: 
        !          12432: NOTE:  When running any of the tests, you should save stdout and stderr
        !          12433:        output in a file for future reference.
        !          12434: 
        !          12435: 
        !          12436: 
        !          12437: 
        !          12438: How to run the Testsuites
        !          12439: -------------------------
        !          12440: 
        !          12441: Set up the NFSTESTDIR and TESTOPTS environment variables, and
        !          12442: then run runtests.bat in first the basic directory and then
        !          12443: the special directory.  The best we can do for general tests is
        !          12444: simply to run a compile of a 7 or 8k C program on your machine.
        !          12445: Multitasking would be better if you can arrange it.
        !          12446: 
        !          12447: How to run the Testsuites at Connectathon
        !          12448: -----------------------------------------
        !          12449: 
        !          12450: 
        !          12451: The tests should be run in the following order:  basic,  general, and special.
        !          12452: The basic tests should be passed completely before other tests are attempted.
        !          12453: 
        !          12454: The NFS Test Suite should be run in three phases:
        !          12455: 
        !          12456: Phase 1 - Run test programs locally.
        !          12457: 
        !          12458: Phase 2 - Run the tests against a Sun.  Run them on your machine using the
        !          12459:           Sun as the server and then run them on the Sun using your machine
        !          12460:           as the server.
        !          12461: 
        !          12462: Phase 3 - NxN Testing.  Run the tests on your machine using every other
        !          12463:          machine as a server,  one at a time.  After the tests are 
        !          12464:          successfully completed using a particular server,  note that
        !          12465:          on the board provided (usually in a conference room). Check 
        !          12466:           the board to make sure that the tests run successfully on 
        !          12467:          every other machine that uses your machine as a server.
        !          12468: 
        !          12469: 
        !          12470: Test Descriptions
        !          12471: -----------------
        !          12472: 
        !          12473: System and library calls that are used by the testsuites are included in paren-
        !          12474: theses.  Look at the source if you are interested in how time statistics are 
        !          12475: recorded since that is not included in this description.
        !          12476: 
        !          12477: 
        !          12478: 
        !          12479: 
        !          12480: - BASIC TESTS:   
        !          12481: 
        !          12482: Many of the programs listed below have optional calling parameters that can be 
        !          12483: used to override existing parameters.  These are not used at this time so they 
        !          12484: are not described.  
        !          12485: 
        !          12486: 
        !          12487: test1: File and Directory Creation Test
        !          12488: 
        !          12489: This program creates the test directory (mkdir)  on the client and changes 
        !          12490: directories (chdir) to it,  unless the -n flag is used in which case it simply 
        !          12491: changes directories to the test directory.  Then it builds a directory tree  
        !          12492: N levels deep, where each directory (including the test directory) has M 
        !          12493: files and P directories (cr

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.