/* This file was produced by running the config_h.SH script, which
 * gets its values from uconfig.sh, which is generally produced by
 * running Configure.
 *
 * Feel free to modify any of this as the need arises.  Note, however,
 * that running config_h.SH again will wipe out any changes you've made.
 * For a more permanent change edit uconfig.sh and rerun config_h.SH.
 */

/* Package name      : perl5
 * Source directory  : .
 * Configuration time: Thu Jan  1 00:00:00 GMT 1970
 * Configured by     : root@localhost
 * Target system     : unknown
 */

#ifndef _config_h_
#define _config_h_

/* LOC_SED:
 *	This symbol holds the complete pathname to the sed program.
 */
#define LOC_SED 	""	/**/

/* HAS_ALARM:
 *	This symbol, if defined, indicates that the alarm routine is
 *	available.
 */
/*#define HAS_ALARM		/ **/

/* HAS_CBRT:
 *	This symbol, if defined, indicates that the cbrt() (cube root)
 *	function is available.
 */
/*#define HAS_CBRT	/ **/

/* HAS_CHOWN:
 *	This symbol, if defined, indicates that the chown routine is
 *	available.
 */
/*#define HAS_CHOWN		/ **/

/* HAS_CHROOT:
 *	This symbol, if defined, indicates that the chroot routine is
 *	available.
 */
/*#define HAS_CHROOT		/ **/

/* HAS_CHSIZE:
 *	This symbol, if defined, indicates that the chsize routine is available
 *	to truncate files.  You might need a -lx to get this routine.
 */
/*#define	HAS_CHSIZE		/ **/

/* HAS_CRYPT:
 *	This symbol, if defined, indicates that the crypt routine is available
 *	to encrypt passwords and the like.
 */
/*#define HAS_CRYPT		/ **/

/* HAS_CTERMID:
 *	This symbol, if defined, indicates that the ctermid routine is
 *	available to generate filename for terminal.
 */
/*#define HAS_CTERMID		/ **/

/* HAS_CUSERID:
 *	This symbol, if defined, indicates that the cuserid routine is
 *	available to get character login names.
 */
/*#define HAS_CUSERID		/ **/

/* HAS_DIFFTIME:
 *	This symbol, if defined, indicates that the difftime routine is
 *	available.
 */
/*#define HAS_DIFFTIME		/ **/

/* HAS_DLERROR:
 *	This symbol, if defined, indicates that the dlerror routine is
 *	available to return a string describing the last error that
 *	occurred from a call to dlopen(), dlclose() or dlsym().
 */
/*#define HAS_DLERROR	/ **/

/* HAS_DUP2:
 *	This symbol, if defined, indicates that the dup2 routine is
 *	available to duplicate file descriptors.
 */
/*#define HAS_DUP2	/ **/

/* HAS_FCHMOD:
 *	This symbol, if defined, indicates that the fchmod routine is available
 *	to change mode of opened files.  If unavailable, use chmod().
 */
/*#define HAS_FCHMOD		/ **/

/* HAS_FCHOWN:
 *	This symbol, if defined, indicates that the fchown routine is available
 *	to change ownership of opened files.  If unavailable, use chown().
 */
/*#define HAS_FCHOWN		/ **/

/* HAS_FCNTL:
 *	This symbol, if defined, indicates to the C program that
 *	the fcntl() function exists.
 */
/*#define HAS_FCNTL		/ **/

/* HAS_FGETPOS:
 *	This symbol, if defined, indicates that the fgetpos routine is
 *	available to get the file position indicator, similar to ftell().
 */
/*#define HAS_FGETPOS	/ **/

/* HAS_FLOCK:
 *	This symbol, if defined, indicates that the flock routine is
 *	available to do file locking.
 */
/*#define HAS_FLOCK		/ **/

/* HAS_FORK:
 *	This symbol, if defined, indicates that the fork routine is
 *	available.
 */
#define HAS_FORK		/**/

/* HAS_FSETPOS:
 *	This symbol, if defined, indicates that the fsetpos routine is
 *	available to set the file position indicator, similar to fseek().
 */
/*#define HAS_FSETPOS	/ **/

/* HAS_GETTIMEOFDAY:
 *	This symbol, if defined, indicates that the gettimeofday() system
 *	call is available for a sub-second accuracy clock. Usually, the file
 *	<sys/resource.h> needs to be included (see I_SYS_RESOURCE).
 *	The type "Timeval" should be used to refer to "struct timeval".
 */
/*#define HAS_GETTIMEOFDAY	/ **/
#ifdef HAS_GETTIMEOFDAY
#define Timeval struct timeval	/* Structure used by gettimeofday() */
#endif

/* HAS_GETGROUPS:
 *	This symbol, if defined, indicates that the getgroups() routine is
 *	available to get the list of process groups.  If unavailable, multiple
 *	groups are probably not supported.
 */
/*#define HAS_GETGROUPS		/ **/

/* HAS_GETLOGIN:
 *	This symbol, if defined, indicates that the getlogin routine is
 *	available to get the login name.
 */
/*#define HAS_GETLOGIN		/ **/

/* HAS_GETPGID:
 *	This symbol, if defined, indicates to the C program that
 *	the getpgid(pid) function is available to get the
 *	process group id.
 */
/*#define HAS_GETPGID		/ **/

/* HAS_GETPGRP2:
 *	This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
 *	routine is available to get the current process group.
 */
/*#define HAS_GETPGRP2		/ **/

/* HAS_GETPPID:
 *	This symbol, if defined, indicates that the getppid routine is
 *	available to get the parent process ID.
 */
/*#define HAS_GETPPID		/ **/

/* HAS_GETPRIORITY:
 *	This symbol, if defined, indicates that the getpriority routine is
 *	available to get a process's priority.
 */
/*#define HAS_GETPRIORITY		/ **/

/* HAS_INET_ATON:
 *	This symbol, if defined, indicates to the C program that the
 *	inet_aton() function is available to parse IP address "dotted-quad"
 *	strings.
 */
/*#define HAS_INET_ATON		/ **/

/* HAS_KILLPG:
 *	This symbol, if defined, indicates that the killpg routine is available
 *	to kill process groups.  If unavailable, you probably should use kill
 *	with a negative process number.
 */
/*#define HAS_KILLPG	/ **/

/* HAS_LINK:
 *	This symbol, if defined, indicates that the link routine is
 *	available to create hard links.
 */
/*#define HAS_LINK	/ **/

/* HAS_LOCALECONV:
 *	This symbol, if defined, indicates that the localeconv routine is
 *	available for numeric and monetary formatting conventions.
 */
/*#define HAS_LOCALECONV	/ **/

/* HAS_LOCKF:
 *	This symbol, if defined, indicates that the lockf routine is
 *	available to do file locking.
 */
/*#define HAS_LOCKF		/ **/

/* HAS_LSTAT:
 *	This symbol, if defined, indicates that the lstat routine is
 *	available to do file stats on symbolic links.
 */
/*#define HAS_LSTAT		/ **/

/* HAS_MBLEN:
 *	This symbol, if defined, indicates that the mblen routine is available
 *	to find the number of bytes in a multibyte character.
 */
/*#define HAS_MBLEN		/ **/

/* HAS_MBSTOWCS:
 *	This symbol, if defined, indicates that the mbstowcs routine is
 *	available to convert a multibyte string into a wide character string.
 */
/*#define	HAS_MBSTOWCS		/ **/

/* HAS_MBTOWC:
 *	This symbol, if defined, indicates that the mbtowc routine is available
 *	to convert a multibyte to a wide character.
 */
/*#define HAS_MBTOWC		/ **/

/* HAS_MKDIR:
 *	This symbol, if defined, indicates that the mkdir routine is available
 *	to create directories.  Otherwise you should fork off a new process to
 *	exec /bin/mkdir.
 */
/*#define HAS_MKDIR		/ **/

/* HAS_MKFIFO:
 *	This symbol, if defined, indicates that the mkfifo routine is
 *	available to create FIFOs. Otherwise, mknod should be able to
 *	do it for you. However, if mkfifo is there, mknod might require
 *	super-user privileges which mkfifo will not.
 */
/*#define HAS_MKFIFO		/ **/

/* HAS_MKTIME:
 *	This symbol, if defined, indicates that the mktime routine is
 *	available.
 */
/*#define HAS_MKTIME		/ **/

/* HAS_MSG:
 *	This symbol, if defined, indicates that the entire msg*(2) library is
 *	supported (IPC mechanism based on message queues).
 */
/*#define HAS_MSG		/ **/

/* HAS_MSYNC:
 *	This symbol, if defined, indicates that the msync system call is
 *	available to synchronize a mapped file.
 */
/*#define HAS_MSYNC		/ **/

/* HAS_MUNMAP:
 *	This symbol, if defined, indicates that the munmap system call is
 *	available to unmap a region, usually mapped by mmap().
 */
/*#define HAS_MUNMAP		/ **/

/* HAS_NICE:
 *	This symbol, if defined, indicates that the nice routine is
 *	available.
 */
/*#define HAS_NICE		/ **/

/* HAS_PATHCONF:
 *	This symbol, if defined, indicates that pathconf() is available
 *	to determine file-system related limits and options associated
 *	with a given filename.
 */
/* HAS_FPATHCONF:
 *	This symbol, if defined, indicates that pathconf() is available
 *	to determine file-system related limits and options associated
 *	with a given open file descriptor.
 */
/*#define HAS_PATHCONF		/ **/
/*#define HAS_FPATHCONF		/ **/

/* HAS_PAUSE:
 *	This symbol, if defined, indicates that the pause routine is
 *	available to suspend a process until a signal is received.
 */
/*#define HAS_PAUSE		/ **/

/* HAS_PIPE:
 *	This symbol, if defined, indicates that the pipe routine is
 *	available to create an inter-process channel.
 */
/*#define HAS_PIPE		/ **/

/* HAS_POLL:
 *	This symbol, if defined, indicates that the poll routine is
 *	available to poll active file descriptors.  Please check I_POLL and
 *	I_SYS_POLL to know which header should be included as well.
 */
/*#define HAS_POLL		/ **/

/* HAS_READDIR:
 *	This symbol, if defined, indicates that the readdir routine is
 *	available to read directory entries. You may have to include
 *	<dirent.h>. See I_DIRENT.
 */
#define HAS_READDIR		/**/

/* HAS_SEEKDIR:
 *	This symbol, if defined, indicates that the seekdir routine is
 *	available. You may have to include <dirent.h>. See I_DIRENT.
 */
/*#define HAS_SEEKDIR		/ **/

/* HAS_TELLDIR:
 *	This symbol, if defined, indicates that the telldir routine is
 *	available. You may have to include <dirent.h>. See I_DIRENT.
 */
/*#define HAS_TELLDIR		/ **/

/* HAS_REWINDDIR:
 *	This symbol, if defined, indicates that the rewinddir routine is
 *	available. You may have to include <dirent.h>. See I_DIRENT.
 */
/*#define HAS_REWINDDIR		/ **/

/* HAS_READLINK:
 *	This symbol, if defined, indicates that the readlink routine is
 *	available to read the value of a symbolic link.
 */
/*#define HAS_READLINK		/ **/

/* HAS_REGCOMP:
 *	This symbol, if defined, indicates that the regcomp() routine is
 *	available to do some regular pattern matching (usually on POSIX.2
 *	conforming systems).
 */
#define HAS_REGCOMP		/* POSIX.2 */

/* HAS_RENAME:
 *	This symbol, if defined, indicates that the rename routine is available
 *	to rename files.  Otherwise you should do the unlink(), link(), unlink()
 *	trick.
 */
#define HAS_RENAME	/**/

/* HAS_RMDIR:
 *	This symbol, if defined, indicates that the rmdir routine is
 *	available to remove directories. Otherwise you should fork off a
 *	new process to exec /bin/rmdir.
 */
/*#define HAS_RMDIR		/ **/

/* HAS_SELECT:
 *	This symbol, if defined, indicates that the select routine is
 *	available to select active file descriptors. If the timeout field
 *	is used, <sys/time.h> may need to be included.
 */
/*#define HAS_SELECT	/ **/

/* HAS_SEM:
 *	This symbol, if defined, indicates that the entire sem*(2) library is
 *	supported.
 */
/*#define HAS_SEM		/ **/

/* HAS_SETEGID:
 *	This symbol, if defined, indicates that the setegid routine is available
 *	to change the effective gid of the current program.
 */
/*#define HAS_SETEGID		/ **/

/* HAS_SETEUID:
 *	This symbol, if defined, indicates that the seteuid routine is available
 *	to change the effective uid of the current program.
 */
/*#define HAS_SETEUID		/ **/

/* HAS_SETGROUPS:
 *	This symbol, if defined, indicates that the setgroups() routine is
 *	available to set the list of process groups.  If unavailable, multiple
 *	groups are probably not supported.
 */
/*#define HAS_SETGROUPS		/ **/

/* HAS_SETLINEBUF:
 *	This symbol, if defined, indicates that the setlinebuf routine is
 *	available to change stderr or stdout from block-buffered or unbuffered
 *	to a line-buffered mode.
 */
/*#define HAS_SETLINEBUF		/ **/

/* HAS_SETPGID:
 *	This symbol, if defined, indicates that the setpgid(pid, gpid)
 *	routine is available to set process group ID.
 */
/*#define HAS_SETPGID	/ **/

/* HAS_SETPGRP2:
 *	This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
 *	routine is available to set the current process group.
 */
/*#define HAS_SETPGRP2		/ **/

/* HAS_SETPRIORITY:
 *	This symbol, if defined, indicates that the setpriority routine is
 *	available to set a process's priority.
 */
/*#define HAS_SETPRIORITY		/ **/

/* HAS_SETREGID:
 *	This symbol, if defined, indicates that the setregid routine is
 *	available to change the real and effective gid of the current
 *	process.
 */
/* HAS_SETRESGID:
 *	This symbol, if defined, indicates that the setresgid routine is
 *	available to change the real, effective and saved gid of the current
 *	process.
 */
/*#define HAS_SETREGID		/ **/
/*#define HAS_SETRESGID		/ **/

/* HAS_SETREUID:
 *	This symbol, if defined, indicates that the setreuid routine is
 *	available to change the real and effective uid of the current
 *	process.
 */
/* HAS_SETRESUID:
 *	This symbol, if defined, indicates that the setresuid routine is
 *	available to change the real, effective and saved uid of the current
 *	process.
 */
/*#define HAS_SETREUID		/ **/
/*#define HAS_SETRESUID		/ **/

/* HAS_SETRGID:
 *	This symbol, if defined, indicates that the setrgid routine is available
 *	to change the real gid of the current program.
 */
/*#define HAS_SETRGID		/ **/

/* HAS_SETRUID:
 *	This symbol, if defined, indicates that the setruid routine is available
 *	to change the real uid of the current program.
 */
/*#define HAS_SETRUID		/ **/

/* HAS_SETSID:
 *	This symbol, if defined, indicates that the setsid routine is
 *	available to set the process group ID.
 */
/*#define HAS_SETSID	/ **/

/* HAS_STAT:
 *	This symbol, if defined, indicates that the stat routine is
 *	available to get file status.
 */
#define HAS_STAT	/**/

/* HAS_STRCOLL:
 *	This symbol, if defined, indicates that the strcoll routine is
 *	available to compare strings using collating information.
 */
/*#define HAS_STRCOLL	/ **/

/* HAS_STRTOD:
 *	This symbol, if defined, indicates that the strtod routine is
 *	available to provide better numeric string conversion than atof().
 */
/*#define HAS_STRTOD	/ **/

/* HAS_STRTOL:
 *	This symbol, if defined, indicates that the strtol routine is available
 *	to provide better numeric string conversion than atoi() and friends.
 */
#define HAS_STRTOL	/**/

/* HAS_STRXFRM:
 *	This symbol, if defined, indicates that the strxfrm() routine is
 *	available to transform strings.
 */
/*#define HAS_STRXFRM	/ **/

/* HAS_SYMLINK:
 *	This symbol, if defined, indicates that the symlink routine is available
 *	to create symbolic links.
 */
/*#define HAS_SYMLINK	/ **/

/* HAS_SYSCALL:
 *	This symbol, if defined, indicates that the syscall routine is
 *	available to call arbitrary system calls. If undefined, that's tough.
 */
/*#define HAS_SYSCALL	/ **/

/* HAS_SYSCONF:
 *	This symbol, if defined, indicates that sysconf() is available
 *	to determine system related limits and options.
 */
/*#define HAS_SYSCONF	/ **/

/* HAS_SYSTEM:
 *	This symbol, if defined, indicates that the system routine is
 *	available to issue a shell command.
 */
/*#define HAS_SYSTEM	/ **/

/* HAS_TCGETPGRP:
 *	This symbol, if defined, indicates that the tcgetpgrp routine is
 *	available to get foreground process group ID.
 */
/*#define HAS_TCGETPGRP		/ **/

/* HAS_TCSETPGRP:
 *	This symbol, if defined, indicates that the tcsetpgrp routine is
 *	available to set foreground process group ID.
 */
/*#define HAS_TCSETPGRP		/ **/

/* HAS_TRUNCATE:
 *	This symbol, if defined, indicates that the truncate routine is
 *	available to truncate files.
 */
/*#define HAS_TRUNCATE	/ **/

/* HAS_TZNAME:
 *	This symbol, if defined, indicates that the tzname[] array is
 *	available to access timezone names.
 */
/*#define HAS_TZNAME		/ **/

/* HAS_UMASK:
 *	This symbol, if defined, indicates that the umask routine is
 *	available to set and get the value of the file creation mask.
 */
/*#define HAS_UMASK		/ **/

/* HAS_USLEEP:
 *	This symbol, if defined, indicates that the usleep routine is
 *	available to let the process sleep on a sub-second accuracy.
 */
/*#define HAS_USLEEP		/ **/

/* HAS_WAIT4:
 *	This symbol, if defined, indicates that wait4() exists.
 */
/*#define HAS_WAIT4	/ **/

/* HAS_WAITPID:
 *	This symbol, if defined, indicates that the waitpid routine is
 *	available to wait for child process.
 */
/*#define HAS_WAITPID	/ **/

/* HAS_WCSTOMBS:
 *	This symbol, if defined, indicates that the wcstombs routine is
 *	available to convert wide character strings to multibyte strings.
 */
/*#define HAS_WCSTOMBS	/ **/

/* HAS_WCTOMB:
 *	This symbol, if defined, indicates that the wctomb routine is available
 *	to convert a wide character to a multibyte.
 */
/*#define HAS_WCTOMB		/ **/

/* Groups_t:
 *	This symbol holds the type used for the second argument to
 *	getgroups() and setgroups().  Usually, this is the same as
 *	gidtype (gid_t) , but sometimes it isn't.
 *	It can be int, ushort, gid_t, etc...
 *	It may be necessary to include <sys/types.h> to get any
 *	typedef'ed information.  This is only required if you have
 *	getgroups() or setgroups()..
 */
#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
#define Groups_t int	/* Type for 2nd arg to [sg]etgroups() */
#endif

/* I_ARPA_INET:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <arpa/inet.h> to get inet_addr and friends declarations.
 */
/*#define	I_ARPA_INET		/ **/

/* I_DBM:
 *	This symbol, if defined, indicates that <dbm.h> exists and should
 *	be included.
 */
/* I_RPCSVC_DBM:
 *	This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
 *	should be included.
 */
/*#define I_DBM	/ **/
/*#define I_RPCSVC_DBM	/ **/

/* I_DLFCN:
 *	This symbol, if defined, indicates that <dlfcn.h> exists and should
 *	be included.
 */
/*#define I_DLFCN		/ **/

/* I_FCNTL:
 *	This manifest constant tells the C program to include <fcntl.h>.
 */
/*#define I_FCNTL	/ **/

/* I_GDBM:
 *	This symbol, if defined, indicates that <gdbm.h> exists and should
 *	be included.
 */
/*#define I_GDBM	/ **/

/* I_LOCALE:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <locale.h>.
 */
/*#define	I_LOCALE		/ **/

/* I_NETINET_IN:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
 */
/*#define I_NETINET_IN	/ **/

/* I_SYS_DIR:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/dir.h>.
 */
/*#define I_SYS_DIR		/ **/

/* I_SYS_FILE:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/file.h> to get definition of R_OK and friends.
 */
/*#define I_SYS_FILE		/ **/

/* I_SYS_IOCTL:
 *	This symbol, if defined, indicates that <sys/ioctl.h> exists and should
 *	be included. Otherwise, include <sgtty.h> or <termio.h>.
 */
/* I_SYS_SOCKIO:
 *	This symbol, if defined, indicates the <sys/sockio.h> should be included
 *	to get socket ioctl options, like SIOCATMARK.
 */
/*#define	I_SYS_IOCTL		/ **/
/*#define I_SYS_SOCKIO	/ **/

/* I_SYS_NDIR:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/ndir.h>.
 */
/*#define I_SYS_NDIR	/ **/

/* I_SYS_PARAM:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/param.h>.
 */
/*#define I_SYS_PARAM		/ **/

/* I_SYS_POLL:
 *	This symbol, if defined, indicates that the program may include
 *	<sys/poll.h>.  When I_POLL is also defined, it's probably safest
 *	to only include <poll.h>.
 */
/*#define I_SYS_POLL	/ **/

/* I_SYS_RESOURCE:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/resource.h>.
 */
/*#define I_SYS_RESOURCE		/ **/

/* I_SYS_SELECT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/select.h> in order to get definition of struct timeval.
 */
/*#define I_SYS_SELECT	/ **/

/* I_SYS_STAT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/stat.h>.
 */
#define	I_SYS_STAT		/**/

/* I_SYS_TIMES:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/times.h>.
 */
/*#define	I_SYS_TIMES		/ **/

/* I_SYS_TYPES:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/types.h>.
 */
/*#define	I_SYS_TYPES		/ **/

/* I_SYS_UN:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/un.h> to get UNIX domain socket definitions.
 */
/*#define I_SYS_UN		/ **/

/* I_SYS_WAIT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/wait.h>.
 */
/*#define I_SYS_WAIT	/ **/

/* I_UNISTD:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <unistd.h>.
 */
/*#define I_UNISTD		/ **/

/* I_UTIME:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <utime.h>.
 */
/*#define I_UTIME		/ **/

/* I_VFORK:
 *	This symbol, if defined, indicates to the C program that it should
 *	include vfork.h.
 */
/*#define I_VFORK	/ **/

/* STDCHAR:
 *	This symbol is defined to be the type of char used in stdio.h.
 *	It has the values "unsigned char" or "char".
 */
#define STDCHAR char	/**/

/* INTSIZE:
 *	This symbol contains the value of sizeof(int) so that the C
 *	preprocessor can make decisions based on it.
 */
/* LONGSIZE:
 *	This symbol contains the value of sizeof(long) so that the C
 *	preprocessor can make decisions based on it.
 */
/* SHORTSIZE:
 *	This symbol contains the value of sizeof(short) so that the C
 *	preprocessor can make decisions based on it.
 */
#define INTSIZE 4		/**/
#define LONGSIZE 4		/**/
#define SHORTSIZE 2		/**/

/* MULTIARCH:
 *	This symbol, if defined, signifies that the build
 *	process will produce some binary files that are going to be
 *	used in a cross-platform environment.  This is the case for
 *	example with the NeXT "fat" binaries that contain executables
 *	for several CPUs.
 */
/*#define MULTIARCH		/ **/

/* HAS_QUAD:
 *	This symbol, if defined, tells that there's a 64-bit integer type,
 *	Quad_t, and its unsigned counterpart, Uquad_t. QUADKIND will be one
 *	of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, QUAD_IS_INT64_T,
 *	or QUAD_IS___INT64.
 */
/*#define HAS_QUAD	/ **/
#ifdef HAS_QUAD
#   define Quad_t int64_t	/**/
#   define Uquad_t uint64_t	/**/
#   define QUADKIND 4	/**/
#   define QUAD_IS_INT	1
#   define QUAD_IS_LONG	2
#   define QUAD_IS_LONG_LONG	3
#   define QUAD_IS_INT64_T	4
#   define QUAD_IS___INT64	5
#endif

/* HAS_ACCESSX:
 *	This symbol, if defined, indicates that the accessx routine is
 *	available to do extended access checks.
 */
/*#define HAS_ACCESSX		/ **/

/* HAS_EACCESS:
 *	This symbol, if defined, indicates that the eaccess routine is
 *	available to do extended access checks.
 */
/*#define HAS_EACCESS		/ **/

/* I_SYS_ACCESS:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/access.h>.
 */
/*#define   I_SYS_ACCESS                / **/

/* I_SYS_SECURITY:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/security.h>.
 */
/*#define   I_SYS_SECURITY	/ **/

/* MEM_ALIGNBYTES:
 *	This symbol contains the number of bytes required to align a
 *	double, or a long double when applicable. Usual values are 2,
 *	4 and 8. The default is eight, for safety.  For cross-compiling
 *	or multiarch support, Configure will set a minimum of 8.
 */
#define MEM_ALIGNBYTES 4

/* BYTEORDER:
 *	This symbol holds the hexadecimal constant defined in byteorder,
 *	in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
 *	If the compiler supports cross-compiling or multiple-architecture
 *	binaries, use compiler-defined macros to
 *	determine the byte order.
 */
#if defined(MULTIARCH)
#  ifdef __LITTLE_ENDIAN__
#    if LONGSIZE == 4
#      define BYTEORDER 0x1234
#    else
#      if LONGSIZE == 8
#        define BYTEORDER 0x12345678
#      endif
#    endif
#  else
#    ifdef __BIG_ENDIAN__
#      if LONGSIZE == 4
#        define BYTEORDER 0x4321
#      else
#        if LONGSIZE == 8
#          define BYTEORDER 0x87654321
#        endif
#      endif
#    endif
#  endif
#else
#define BYTEORDER 0x1234	/* large digits for MSB */
#endif

/* CHARBITS:
 *	This symbol contains the size of a char, so that the C preprocessor
 *	can make decisions based on it.
 */
#define CHARBITS 8		/**/

/* CASTI32:
 *	This symbol is defined if the C compiler can cast negative
 *	or large floating point numbers to 32-bit ints.
 */
/*#define	CASTI32		/ **/

/* CASTNEGFLOAT:
 *	This symbol is defined if the C compiler can cast negative
 *	numbers to unsigned longs, ints and shorts.
 */
/* CASTFLAGS:
 *	This symbol contains flags that say what difficulties the compiler
 *	has casting odd floating values to unsigned long:
 *		0 = ok
 *		1 = couldn't cast < 0
 *		2 = couldn't cast >= 0x80000000
 *		4 = couldn't cast in argument expression list
 */
/*#define	CASTNEGFLOAT		/ **/
#define CASTFLAGS 0		/**/

/* VOID_CLOSEDIR:
 *	This symbol, if defined, indicates that the closedir() routine
 *	does not return a value.
 */
/*#define VOID_CLOSEDIR		/ **/

/* HAS_FD_SET:
 *	This symbol, when defined, indicates presence of the fd_set typedef
 *	in <sys/types.h>
 */
/*#define HAS_FD_SET	/ **/

/* Gconvert:
 *	This preprocessor macro is defined to convert a floating point
 *	number to a string without a trailing decimal point.  This
 *	emulates the behavior of sprintf("%g"), but is sometimes much more
 *	efficient.  If gconvert() is not available, but gcvt() drops the
 *	trailing decimal point, then gcvt() is used.  If all else fails,
 *	a macro using sprintf("%g") is used. Arguments for the Gconvert
 *	macro are: value, number of digits, whether trailing zeros should
 *	be retained, and the output buffer.
 *	The usual values are:
 *		d_Gconvert='gconvert((x),(n),(t),(b))'
 *		d_Gconvert='gcvt((x),(n),(b))'
 *		d_Gconvert='sprintf((b),"%.*g",(n),(x))'
 *	The last two assume trailing zeros should not be kept.
 */
#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))

/* HAS_GETPAGESIZE:
 *	This symbol, if defined, indicates that the getpagesize system call
 *	is available to get system page size, which is the granularity of
 *	many memory management calls.
 */
/*#define HAS_GETPAGESIZE		/ **/

/* HAS_GNULIBC:
 *	This symbol, if defined, indicates to the C program that
 *	the GNU C library is being used.  A better check is to use
 *	the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc.
 */
/*#define HAS_GNULIBC	/ **/
#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
#   define _GNU_SOURCE
#endif

/* HAS_ISASCII:
 *	This manifest constant lets the C program know that isascii
 *	is available.
 */
/*#define HAS_ISASCII		/ **/

/* HAS_LCHOWN:
 *	This symbol, if defined, indicates that the lchown routine is
 *	available to operate on a symbolic link (instead of following the
 *	link).
 */
/*#define HAS_LCHOWN		/ **/

/* HAS_OPEN3:
 *	This manifest constant lets the C program know that the three
 *	argument form of open(2) is available.
 */
/*#define HAS_OPEN3		/ **/

/* HAS_SIGACTION:
 *	This symbol, if defined, indicates that Vr4's sigaction() routine
 *	is available.
 */
/*#define HAS_SIGACTION	/ **/

/* HAS_SIGINFO_SI_ERRNO:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_errno member
 */
/* HAS_SIGINFO_SI_PID:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_pid member
 */
/* HAS_SIGINFO_SI_UID:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_uid member
 */
/* HAS_SIGINFO_SI_ADDR:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_addr member
 */
/* HAS_SIGINFO_SI_STATUS:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_status member
 */
/* HAS_SIGINFO_SI_BAND:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_band member
 */
/* HAS_SIGINFO_SI_VALUE:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_value member
 */
/*#define	HAS_SIGINFO_SI_ERRNO	/ **/
/*#define	HAS_SIGINFO_SI_PID	/ **/
/*#define	HAS_SIGINFO_SI_UID	/ **/
/*#define	HAS_SIGINFO_SI_ADDR	/ **/
/*#define	HAS_SIGINFO_SI_STATUS	/ **/
/*#define	HAS_SIGINFO_SI_BAND	/ **/
/*#define	HAS_SIGINFO_SI_VALUE	/ **/

/* HAS_SIGSETJMP:
 *	This variable indicates to the C program that the sigsetjmp()
 *	routine is available to save the calling process's registers
 *	and stack environment for later use by siglongjmp(), and
 *	to optionally save the process's signal mask.  See
 *	Sigjmp_buf, Sigsetjmp, and Siglongjmp.
 */
/* Sigjmp_buf:
 *	This is the buffer type to be used with Sigsetjmp and Siglongjmp.
 */
/* Sigsetjmp:
 *	This macro is used in the same way as sigsetjmp(), but will invoke
 *	traditional setjmp() if sigsetjmp isn't available.
 *	See HAS_SIGSETJMP.
 */
/* Siglongjmp:
 *	This macro is used in the same way as siglongjmp(), but will invoke
 *	traditional longjmp() if siglongjmp isn't available.
 *	See HAS_SIGSETJMP.
 */
/*#define HAS_SIGSETJMP	/ **/
#ifdef HAS_SIGSETJMP
#define Sigjmp_buf sigjmp_buf
#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
#else
#define Sigjmp_buf jmp_buf
#define Sigsetjmp(buf,save_mask) setjmp((buf))
#define Siglongjmp(buf,retval) longjmp((buf),(retval))
#endif

/* HAS_STATIC_INLINE:
 *	This symbol, if defined, indicates that the C compiler supports
 *	C99-style static inline.  That is, the function can't be called
 *	from another translation unit.
 */
/* PERL_STATIC_INLINE:
 *	This symbol gives the best-guess incantation to use for static
 *	inline functions.  If HAS_STATIC_INLINE is defined, this will
 *	give C99-style inline.  If HAS_STATIC_INLINE is not defined,
 *	this will give a plain 'static'.  It will always be defined
 *	to something that gives static linkage.
 *	Possibilities include
 *		static inline       (c99)
 *		static __inline__   (gcc -ansi)
 *		static __inline     (MSVC)
 *		static _inline      (older MSVC)
 *		static              (c89 compilers)
 */
/*#define HAS_STATIC_INLINE				/ **/
#define PERL_STATIC_INLINE static	/**/

/* USE_STDIO_PTR:
 *	This symbol is defined if the _ptr and _cnt fields (or similar)
 *	of the stdio FILE structure can be used to access the stdio buffer
 *	for a file handle.  If this is defined, then the FILE_ptr(fp)
 *	and FILE_cnt(fp) macros will also be defined and should be used
 *	to access these fields.
 */
/* FILE_ptr:
 *	This macro is used to access the _ptr field (or equivalent) of the
 *	FILE structure pointed to by its argument. This macro will always be
 *	defined if USE_STDIO_PTR is defined.
 */
/* STDIO_PTR_LVALUE:
 *	This symbol is defined if the FILE_ptr macro can be used as an
 *	lvalue.
 */
/* FILE_cnt:
 *	This macro is used to access the _cnt field (or equivalent) of the
 *	FILE structure pointed to by its argument. This macro will always be
 *	defined if USE_STDIO_PTR is defined.
 */
/* STDIO_CNT_LVALUE:
 *	This symbol is defined if the FILE_cnt macro can be used as an
 *	lvalue.
 */
/* STDIO_PTR_LVAL_SETS_CNT:
 *	This symbol is defined if using the FILE_ptr macro as an lvalue
 *	to increase the pointer by n has the side effect of decreasing the
 *	value of File_cnt(fp) by n.
 */
/* STDIO_PTR_LVAL_NOCHANGE_CNT:
 *	This symbol is defined if using the FILE_ptr macro as an lvalue
 *	to increase the pointer by n leaves File_cnt(fp) unchanged.
 */
/*#define USE_STDIO_PTR	/ **/
#ifdef USE_STDIO_PTR
#define FILE_ptr(fp)	((fp)->_IO_read_ptr)
/*#define STDIO_PTR_LVALUE		/ **/
#define FILE_cnt(fp)	((fp)->_IO_read_end - (fp)->_IO_read_ptr)
/*#define STDIO_CNT_LVALUE		/ **/
/*#define STDIO_PTR_LVAL_SETS_CNT	/ **/
/*#define STDIO_PTR_LVAL_NOCHANGE_CNT	/ **/
#endif

/* USE_STDIO_BASE:
 *	This symbol is defined if the _base field (or similar) of the
 *	stdio FILE structure can be used to access the stdio buffer for
 *	a file handle.  If this is defined, then the FILE_base(fp) macro
 *	will also be defined and should be used to access this field.
 *	Also, the FILE_bufsiz(fp) macro will be defined and should be used
 *	to determine the number of bytes in the buffer.  USE_STDIO_BASE
 *	will never be defined unless USE_STDIO_PTR is.
 */
/* FILE_base:
 *	This macro is used to access the _base field (or equivalent) of the
 *	FILE structure pointed to by its argument. This macro will always be
 *	defined if USE_STDIO_BASE is defined.
 */
/* FILE_bufsiz:
 *	This macro is used to determine the number of bytes in the I/O
 *	buffer pointed to by _base field (or equivalent) of the FILE
 *	structure pointed to its argument. This macro will always be defined
 *	if USE_STDIO_BASE is defined.
 */
/*#define USE_STDIO_BASE	/ **/
#ifdef USE_STDIO_BASE
#define FILE_base(fp)	((fp)->_IO_read_base)
#define FILE_bufsiz(fp)	((fp)->_IO_read_end - (fp)->_IO_read_base)
#endif

/* DOUBLESIZE:
 *	This symbol contains the size of a double, so that the C preprocessor
 *	can make decisions based on it.
 */
#define DOUBLESIZE 8		/**/

/* I_TIME:
 *	This symbol is always defined, and indicates to the C program that
 *	it should include <time.h>.
 */
/* I_SYS_TIME:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/time.h>.
 */
/* I_SYS_TIME_KERNEL:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/time.h> with KERNEL defined.
 */
/* HAS_TM_TM_ZONE:
 *	This symbol, if defined, indicates to the C program that
 *	the struct tm has a tm_zone field.
 */
/* HAS_TM_TM_GMTOFF:
 *	This symbol, if defined, indicates to the C program that
 *	the struct tm has a tm_gmtoff field.
 */
#define I_TIME		/**/
/*#define I_SYS_TIME		/ **/
/*#define I_SYS_TIME_KERNEL		/ **/
/*#define HAS_TM_TM_ZONE		/ **/
/*#define HAS_TM_TM_GMTOFF		/ **/

/* VAL_O_NONBLOCK:
 *	This symbol is to be used during open() or fcntl(F_SETFL) to turn on
 *	non-blocking I/O for the file descriptor. Note that there is no way
 *	back, i.e. you cannot turn it blocking again this way. If you wish to
 *	alternatively switch between blocking and non-blocking, use the
 *	ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
 */
/* VAL_EAGAIN:
 *	This symbol holds the errno error code set by read() when no data was
 *	present on the non-blocking file descriptor.
 */
/* RD_NODATA:
 *	This symbol holds the return code from read() when no data is present
 *	on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
 *	not defined, then you can't distinguish between no data and EOF by
 *	issuing a read(). You'll have to find another way to tell for sure!
 */
/* EOF_NONBLOCK:
 *	This symbol, if defined, indicates to the C program that a read() on
 *	a non-blocking file descriptor will return 0 on EOF, and not the value
 *	held in RD_NODATA (-1 usually, in that case!).
 */
#define VAL_O_NONBLOCK O_NONBLOCK
#define VAL_EAGAIN EAGAIN
#define RD_NODATA -1
#undef EOF_NONBLOCK

/* PTRSIZE:
 *	This symbol contains the size of a pointer, so that the C preprocessor
 *	can make decisions based on it.  It will be sizeof(void *) if
 *	the compiler supports (void *); otherwise it will be
 *	sizeof(char *).
 */
#define PTRSIZE 4		/**/

/* Drand01:
 *	This macro is to be used to generate uniformly distributed
 *	random numbers over the range [0., 1.[.  You may have to supply
 *	an 'extern double drand48();' in your program since SunOS 4.1.3
 *	doesn't provide you with anything relevant in its headers.
 *	See HAS_DRAND48_PROTO.
 */
/* Rand_seed_t:
 *	This symbol defines the type of the argument of the
 *	random seed function.
 */
/* seedDrand01:
 *	This symbol defines the macro to be used in seeding the
 *	random number generator (see Drand01).
 */
/* RANDBITS:
 *	This symbol indicates how many bits are produced by the
 *	function used to generate normalized random numbers.
 *	Values include 15, 16, 31, and 48.
 */
#define Drand01()		Perl_drand48()		/**/
#define Rand_seed_t		U32		/**/
#define seedDrand01(x)	Perl_drand48_init((Rand_seed_t)x)	/**/
#define RANDBITS		48		/**/

/* SSize_t:
 *	This symbol holds the type used by functions that return
 *	a count of bytes or an error condition.  It must be a signed type.
 *	It is usually ssize_t, but may be long or int, etc.
 *	It may be necessary to include <sys/types.h> or <unistd.h>
 *	to get any typedef'ed information.
 *	We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
 */
#define SSize_t int	/* signed count of bytes */

/* EBCDIC:
 *	This symbol, if defined, indicates that this system uses
 *	EBCDIC encoding.
 */
/*#define	EBCDIC		/ **/

/* ARCHLIB:
 *	This variable, if defined, holds the name of the directory in
 *	which the user wants to put architecture-dependent public
 *	library files for perl5.  It is most often a local directory
 *	such as /usr/local/lib.  Programs using this variable must be
 *	prepared to deal with filename expansion.  If ARCHLIB is the
 *	same as PRIVLIB, it is not defined, since presumably the
 *	program already searches PRIVLIB.
 */
/* ARCHLIB_EXP:
 *	This symbol contains the ~name expanded version of ARCHLIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/*#define ARCHLIB "/usr/local/lib/perl5/5.36/unknown"		/ **/
/*#define ARCHLIB_EXP "/usr/local/lib/perl5/5.36/unknown"		/ **/

/* BIN:
 *	This symbol holds the path of the bin directory where the package will
 *	be installed. Program must be prepared to deal with ~name substitution.
 */
/* BIN_EXP:
 *	This symbol is the filename expanded version of the BIN symbol, for
 *	programs that do not want to deal with that at run-time.
 */
/* PERL_RELOCATABLE_INC:
 *	This symbol, if defined, indicates that we'd like to relocate entries
 *	in @INC at run time based on the location of the perl binary.
 */
#define BIN "/usr/local/bin"	/**/
#define BIN_EXP "/usr/local/bin"	/**/
#define PERL_RELOCATABLE_INC "undef"		/**/

/* PERL_INC_VERSION_LIST:
 *	This variable specifies the list of subdirectories in over
 *	which perl.c:incpush() and lib/lib.pm will automatically
 *	search when adding directories to @INC, in a format suitable
 *	for a C initialization string.  See the inc_version_list entry
 *	in Porting/Glossary for more details.
 */
/*#define PERL_INC_VERSION_LIST NULL		/ **/

/* INSTALL_USR_BIN_PERL:
 *	This symbol, if defined, indicates that Perl is to be installed
 *	also as /usr/bin/perl.
 */
/*#define INSTALL_USR_BIN_PERL	/ **/

/* PERL_OTHERLIBDIRS:
 *	This variable contains a colon-separated set of paths for the perl
 *	binary to search for additional library files or modules.
 *	These directories will be tacked to the end of @INC.
 *	Perl will automatically search below each path for version-
 *	and architecture-specific directories.  See PERL_INC_VERSION_LIST
 *	for more details.
 */
/*#define PERL_OTHERLIBDIRS " "		/ **/

/* PRIVLIB:
 *	This symbol contains the name of the private library for this package.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.  The program
 *	should be prepared to do ~ expansion.
 */
/* PRIVLIB_EXP:
 *	This symbol contains the ~name expanded version of PRIVLIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
#define PRIVLIB "/usr/local/lib/perl5/5.36"		/**/
#define PRIVLIB_EXP "/usr/local/lib/perl5/5.36"		/**/

/* SITEARCH:
 *	This symbol contains the name of the private library for this package.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.  The program
 *	should be prepared to do ~ expansion.
 *	The standard distribution will put nothing in this directory.
 *	After perl has been installed, users may install their own local
 *	architecture-dependent modules in this directory with
 *		MakeMaker Makefile.PL
 *	or equivalent.  See INSTALL for details.
 */
/* SITEARCH_EXP:
 *	This symbol contains the ~name expanded version of SITEARCH, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/*#define SITEARCH "/usr/local/lib/perl5/5.36/unknown"		/ **/
/*#define SITEARCH_EXP "/usr/local/lib/perl5/5.36/unknown"		/ **/

/* SITELIB:
 *	This symbol contains the name of the private library for this package.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.  The program
 *	should be prepared to do ~ expansion.
 *	The standard distribution will put nothing in this directory.
 *	After perl has been installed, users may install their own local
 *	architecture-independent modules in this directory with
 *		MakeMaker Makefile.PL
 *	or equivalent.  See INSTALL for details.
 */
/* SITELIB_EXP:
 *	This symbol contains the ~name expanded version of SITELIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/* SITELIB_STEM:
 *	This define is SITELIB_EXP with any trailing version-specific component
 *	removed.  The elements in inc_version_list (inc_version_list.U) can
 *	be tacked onto this variable to generate a list of directories to search.
 */
#define SITELIB "/usr/local/lib/perl5/5.36"		/**/
#define SITELIB_EXP "/usr/local/lib/perl5/5.36"		/**/
#define SITELIB_STEM "/usr/local/lib/perl5"		/**/

/* PERL_VENDORARCH:
 *	If defined, this symbol contains the name of a private library.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.
 *	It may have a ~ on the front.
 *	The standard distribution will put nothing in this directory.
 *	Vendors who distribute perl may wish to place their own
 *	architecture-dependent modules and extensions in this directory with
 *		MakeMaker Makefile.PL INSTALLDIRS=vendor
 *	or equivalent.  See INSTALL for details.
 */
/* PERL_VENDORARCH_EXP:
 *	This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/*#define PERL_VENDORARCH ""		/ **/
/*#define PERL_VENDORARCH_EXP ""		/ **/

/* PERL_VENDORLIB_EXP:
 *	This symbol contains the ~name expanded version of VENDORLIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/* PERL_VENDORLIB_STEM:
 *	This define is PERL_VENDORLIB_EXP with any trailing version-specific component
 *	removed.  The elements in inc_version_list (inc_version_list.U) can
 *	be tacked onto this variable to generate a list of directories to search.
 */
/*#define PERL_VENDORLIB_EXP ""		/ **/
/*#define PERL_VENDORLIB_STEM ""		/ **/

/* OSNAME:
 *	This symbol contains the name of the operating system, as determined
 *	by Configure.  You shouldn't rely on it too much; the specific
 *	feature tests from Configure are generally more reliable.
 */
/* OSVERS:
 *	This symbol contains the version of the operating system, as determined
 *	by Configure.  You shouldn't rely on it too much; the specific
 *	feature tests from Configure are generally more reliable.
 */
#define OSNAME "unknown"		/**/
#define OSVERS "unknown"		/**/

/* CAT2:
 *	This macro concatenates 2 tokens together.
 */
/* STRINGIFY:
 *	This macro surrounds its token with double quotes.
 */
#if 42 == 1
#define CAT2(a,b)	a/**/b
#define STRINGIFY(a)	"a"
#endif
#if 42 == 42
#define PeRl_CaTiFy(a, b)	a ## b
#define PeRl_StGiFy(a)	#a
#define CAT2(a,b)	PeRl_CaTiFy(a,b)
#define StGiFy(a)	PeRl_StGiFy(a)
#define STRINGIFY(a)	PeRl_StGiFy(a)
#endif
#if 42 != 1 && 42 != 42
#include "Bletch: How does this C preprocessor concatenate tokens?"
#endif

/* CPPSTDIN:
 *	This symbol contains the first part of the string which will invoke
 *	the C preprocessor on the standard input and produce to standard
 *	output.  Typical value of "cc -E" or "/lib/cpp", but it can also
 *	call a wrapper. See CPPRUN.
 */
/* CPPMINUS:
 *	This symbol contains the second part of the string which will invoke
 *	the C preprocessor on the standard input and produce to standard
 *	output.  This symbol will have the value "-" if CPPSTDIN needs a minus
 *	to specify standard input, otherwise the value is "".
 */
/* CPPRUN:
 *	This symbol contains the string which will invoke a C preprocessor on
 *	the standard input and produce to standard output. It needs to end
 *	with CPPLAST, after all other preprocessor flags have been specified.
 *	The main difference with CPPSTDIN is that this program will never be a
 *	pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
 *	available directly to the user. Note that it may well be different from
 *	the preprocessor used to compile the C program.
 */
/* CPPLAST:
 *	This symbol is intended to be used along with CPPRUN in the same manner
 *	symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
 */
#define CPPSTDIN "cc -E"
#define CPPMINUS "-"
#define CPPRUN "cc -E"
#define CPPLAST "-"

/* HAS_ACCESS:
 *	This manifest constant lets the C program know that the access()
 *	system call is available to check for accessibility using real UID/GID.
 *	(always present on UNIX.)
 */
/*#define HAS_ACCESS		/ **/

/* HASATTRIBUTE_FORMAT:
 *	Can we handle GCC attribute for checking printf-style formats
 */
/* PRINTF_FORMAT_NULL_OK:
 *	Allows __printf__ format to be null when checking printf-style
 */
/* HASATTRIBUTE_MALLOC:
 *	Can we handle GCC attribute for malloc-style functions.
 */
/* HASATTRIBUTE_NONNULL:
 *	Can we handle GCC attribute for nonnull function parms.
 */
/* HASATTRIBUTE_NORETURN:
 *	Can we handle GCC attribute for functions that do not return
 */
/* HASATTRIBUTE_PURE:
 *	Can we handle GCC attribute for pure functions
 */
/* HASATTRIBUTE_UNUSED:
 *	Can we handle GCC attribute for unused variables and arguments
 */
/* HASATTRIBUTE_DEPRECATED:
 *	Can we handle GCC attribute for marking deprecated APIs
 */
/* HASATTRIBUTE_WARN_UNUSED_RESULT:
 *	Can we handle GCC attribute for warning on unused results
 */
/* HASATTRIBUTE_ALWAYS_INLINE:
 *	Can we handle GCC attribute for functions that should always be
 *	inlined.
 */
/*#define HASATTRIBUTE_DEPRECATED	/ **/
/*#define HASATTRIBUTE_FORMAT	/ **/
/*#define PRINTF_FORMAT_NULL_OK	/ **/
/*#define HASATTRIBUTE_NORETURN	/ **/
/*#define HASATTRIBUTE_MALLOC	/ **/
/*#define HASATTRIBUTE_NONNULL	/ **/
/*#define HASATTRIBUTE_PURE	/ **/
/*#define HASATTRIBUTE_UNUSED	/ **/
/*#define HASATTRIBUTE_WARN_UNUSED_RESULT	/ **/
/*#define HASATTRIBUTE_ALWAYS_INLINE	/ **/

/* HAS_BACKTRACE:
 *	This symbol, if defined, indicates that the backtrace() routine is
 *	available to get a stack trace.  The <execinfo.h> header must be
 *	included to use this routine.
 */
/*#define HAS_BACKTRACE	/ **/

/* HAS_CSH:
 *	This symbol, if defined, indicates that the C-shell exists.
 */
/* CSH:
 *	This symbol, if defined, contains the full pathname of csh.
 */
/*#define HAS_CSH		/ **/
#ifdef HAS_CSH
#define CSH ""	/**/
#endif

/* HAS_DLADDR:
 *	This symbol, if defined, indicates that the dladdr() routine is
 *	available to query dynamic linker information for an address.
 *	The <dlfcn.h> header must be included to use this routine.
 */
/*#define HAS_DLADDR	/ **/

/* SETUID_SCRIPTS_ARE_SECURE_NOW:
 *	This symbol, if defined, indicates that the bug that prevents
 *	setuid scripts from being secure is not present in this kernel.
 */
/* DOSUID:
 *	This symbol, if defined, indicates that the C program should
 *	check the script that it is executing for setuid/setgid bits, and
 *	attempt to emulate setuid/setgid on systems that have disabled
 *	setuid #! scripts because the kernel can't do it securely.
 *	It is up to the package designer to make sure that this emulation
 *	is done securely.  Among other things, it should do an fstat on
 *	the script it just opened to make sure it really is a setuid/setgid
 *	script, it should make sure the arguments passed correspond exactly
 *	to the argument on the #! line, and it should not trust any
 *	subprocesses to which it must pass the filename rather than the
 *	file descriptor of the script to be executed.
 */
/*#define SETUID_SCRIPTS_ARE_SECURE_NOW	/ **/
/*#define DOSUID		/ **/

/* HAS_ENDGRENT:
 *	This symbol, if defined, indicates that the getgrent routine is
 *	available for finalizing sequential access of the group database.
 */
/*#define HAS_ENDGRENT		/ **/

/* HAS_ENDHOSTENT:
 *	This symbol, if defined, indicates that the endhostent() routine is
 *	available to close whatever was being used for host queries.
 */
/*#define HAS_ENDHOSTENT		/ **/

/* HAS_ENDNETENT:
 *	This symbol, if defined, indicates that the endnetent() routine is
 *	available to close whatever was being used for network queries.
 */
/*#define HAS_ENDNETENT		/ **/

/* HAS_ENDPROTOENT:
 *	This symbol, if defined, indicates that the endprotoent() routine is
 *	available to close whatever was being used for protocol queries.
 */
/*#define HAS_ENDPROTOENT		/ **/

/* HAS_ENDPWENT:
 *	This symbol, if defined, indicates that the endpwent routine is
 *	available for finalizing sequential access of the passwd database.
 */
/*#define HAS_ENDPWENT		/ **/

/* HAS_ENDSERVENT:
 *	This symbol, if defined, indicates that the endservent() routine is
 *	available to close whatever was being used for service queries.
 */
/*#define HAS_ENDSERVENT		/ **/

/* FLEXFILENAMES:
 *	This symbol, if defined, indicates that the system supports filenames
 *	longer than 14 characters.
 */
/*#define	FLEXFILENAMES		/ **/

/* HAS_GETGRENT:
 *	This symbol, if defined, indicates that the getgrent routine is
 *	available for sequential access of the group database.
 */
/*#define HAS_GETGRENT		/ **/

/* HAS_GETHOSTBYADDR:
 *	This symbol, if defined, indicates that the gethostbyaddr() routine is
 *	available to look up hosts by their IP addresses.
 */
/*#define HAS_GETHOSTBYADDR		/ **/

/* HAS_GETHOSTBYNAME:
 *	This symbol, if defined, indicates that the gethostbyname() routine is
 *	available to look up host names in some data base or other.
 */
/*#define HAS_GETHOSTBYNAME		/ **/

/* HAS_GETHOSTENT:
 *	This symbol, if defined, indicates that the gethostent() routine is
 *	available to look up host names in some data base or another.
 */
/*#define HAS_GETHOSTENT		/ **/

/* HAS_GETHOSTNAME:
 *	This symbol, if defined, indicates that the C program may use the
 *	gethostname() routine to derive the host name.  See also HAS_UNAME
 *	and PHOSTNAME.
 */
/* HAS_UNAME:
 *	This symbol, if defined, indicates that the C program may use the
 *	uname() routine to derive the host name.  See also HAS_GETHOSTNAME
 *	and PHOSTNAME.
 */
/* PHOSTNAME:
 *	This symbol, if defined, indicates the command to feed to the
 *	popen() routine to derive the host name.  See also HAS_GETHOSTNAME
 *	and HAS_UNAME.	Note that the command uses a fully qualified path,
 *	so that it is safe even if used by a process with super-user
 *	privileges.
 */
/* HAS_PHOSTNAME:
 *	This symbol, if defined, indicates that the C program may use the
 *	contents of PHOSTNAME as a command to feed to the popen() routine
 *	to derive the host name.
 */
/*#define HAS_GETHOSTNAME	/ **/
/*#define HAS_UNAME		/ **/
/*#define HAS_PHOSTNAME	/ **/
#ifdef HAS_PHOSTNAME
#define PHOSTNAME "/bin/hostname"	/* How to get the host name */
#endif

/* HAS_GETNETBYADDR:
 *	This symbol, if defined, indicates that the getnetbyaddr() routine is
 *	available to look up networks by their IP addresses.
 */
/*#define HAS_GETNETBYADDR		/ **/

/* HAS_GETNETBYNAME:
 *	This symbol, if defined, indicates that the getnetbyname() routine is
 *	available to look up networks by their names.
 */
/*#define HAS_GETNETBYNAME		/ **/

/* HAS_GETNETENT:
 *	This symbol, if defined, indicates that the getnetent() routine is
 *	available to look up network names in some data base or another.
 */
/*#define HAS_GETNETENT		/ **/

/* HAS_GETPROTOENT:
 *	This symbol, if defined, indicates that the getprotoent() routine is
 *	available to look up protocols in some data base or another.
 */
/*#define HAS_GETPROTOENT		/ **/

/* HAS_GETPGRP:
 *	This symbol, if defined, indicates that the getpgrp routine is
 *	available to get the current process group.
 */
/* USE_BSD_GETPGRP:
 *	This symbol, if defined, indicates that getpgrp needs one
 *	arguments whereas USG one needs none.
 */
/*#define HAS_GETPGRP		/ **/
/*#define USE_BSD_GETPGRP	/ **/

/* HAS_GETPROTOBYNAME:
 *	This symbol, if defined, indicates that the getprotobyname()
 *	routine is available to look up protocols by their name.
 */
/* HAS_GETPROTOBYNUMBER:
 *	This symbol, if defined, indicates that the getprotobynumber()
 *	routine is available to look up protocols by their number.
 */
/*#define HAS_GETPROTOBYNAME		/ **/
/*#define HAS_GETPROTOBYNUMBER		/ **/

/* HAS_GETPWENT:
 *	This symbol, if defined, indicates that the getpwent routine is
 *	available for sequential access of the passwd database.
 *	If this is not available, the older getpw() function may be available.
 */
/*#define HAS_GETPWENT		/ **/

/* HAS_GETSERVENT:
 *	This symbol, if defined, indicates that the getservent() routine is
 *	available to look up network services in some data base or another.
 */
/*#define HAS_GETSERVENT		/ **/

/* HAS_GETSERVBYNAME:
 *	This symbol, if defined, indicates that the getservbyname()
 *	routine is available to look up services by their name.
 */
/* HAS_GETSERVBYPORT:
 *	This symbol, if defined, indicates that the getservbyport()
 *	routine is available to look up services by their port.
 */
/*#define HAS_GETSERVBYNAME		/ **/
/*#define HAS_GETSERVBYPORT		/ **/

/* HAS_HTONL:
 *	This symbol, if defined, indicates that the htonl() routine (and
 *	friends htons() ntohl() ntohs()) are available to do network
 *	order byte swapping.
 */
/* HAS_HTONS:
 *	This symbol, if defined, indicates that the htons() routine (and
 *	friends htonl() ntohl() ntohs()) are available to do network
 *	order byte swapping.
 */
/* HAS_NTOHL:
 *	This symbol, if defined, indicates that the ntohl() routine (and
 *	friends htonl() htons() ntohs()) are available to do network
 *	order byte swapping.
 */
/* HAS_NTOHS:
 *	This symbol, if defined, indicates that the ntohs() routine (and
 *	friends htonl() htons() ntohl()) are available to do network
 *	order byte swapping.
 */
/*#define HAS_HTONL		/ **/
/*#define HAS_HTONS		/ **/
/*#define HAS_NTOHL		/ **/
/*#define HAS_NTOHS		/ **/

/* HAS_LONG_DOUBLE:
 *	This symbol will be defined if the C compiler supports long
 *	doubles.
 */
/* LONG_DOUBLESIZE:
 *	This symbol contains the size of a long double, so that the
 *	C preprocessor can make decisions based on it.  It is only
 *	defined if the system supports long doubles.  Note that this
 *	is sizeof(long double), which may include unused bytes.
 */
/* HAS_LDEXPL:
 *	This symbol, if defined, indicates that the ldexpl routine is
 *	available to shift a long double floating-point number
 *	by an integral power of 2.
 */
/* LONG_DOUBLEKIND:
 *	LONG_DOUBLEKIND will be one of
 *	LONG_DOUBLE_IS_DOUBLE
 *	LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
 *	LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
 *	LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
 *	LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN
 *	LONG_DOUBLE_IS_VAX_H_FLOAT
 *	LONG_DOUBLE_IS_UNKNOWN_FORMAT
 *	It is only defined if the system supports long doubles.
 */
/* LONG_DOUBLE_STYLE_IEEE:
 *	This symbol, if defined, indicates that the long double
 *	is any of the IEEE 754 style long doubles:
 *	LONG_DOUBLE_STYLE_IEEE_STD, LONG_DOUBLE_STYLE_IEEE_EXTENDED,
 *	LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE.
 */
/* LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE:
 *	This symbol, if defined, indicates that the long double is
 *	the 128-bit double-double.
 */
/* LONG_DOUBLE_STYLE_IEEE_EXTENDED:
 *	This symbol, if defined, indicates that the long double is
 *	the 80-bit IEEE 754. Note that despite the 'extended' this
 *	is less than the 'std', since this is an extension of
 *	the double precision.
 */
/* LONG_DOUBLE_STYLE_IEEE_STD:
 *	This symbol, if defined, indicates that the long double is
 *	the 128-bit IEEE 754.
 */
/* LONG_DOUBLE_STYLE_VAX:
 *	This symbol, if defined, indicates that the long double is
 *	the 128-bit VAX format H.
 */
/*#define  HAS_LDEXPL		/ **/
/*#define HAS_LONG_DOUBLE		/ **/
#ifdef HAS_LONG_DOUBLE
#define LONG_DOUBLESIZE 8		/**/
#define LONG_DOUBLEKIND 0		/**/
#define LONG_DOUBLE_IS_DOUBLE				0
#define LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN	1
#define LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN	2
#define LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN		3
#define LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN		4
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE	5
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE	6
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE	7
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE	8
#define LONG_DOUBLE_IS_VAX_H_FLOAT			9
#define LONG_DOUBLE_IS_UNKNOWN_FORMAT			-1
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE /* back-compat */
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE /* back-compat */
#undef LONG_DOUBLE_STYLE_IEEE
#undef LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE
#undef LONG_DOUBLE_STYLE_IEEE_EXTENDED
#undef LONG_DOUBLE_STYLE_IEEE_STD
#undef LONG_DOUBLE_STYLE_VAX
#endif

/* HAS_LONG_LONG:
 *	This symbol will be defined if the C compiler supports long long.
 */
/* LONGLONGSIZE:
 *	This symbol contains the size of a long long, so that the
 *	C preprocessor can make decisions based on it.  It is only
 *	defined if the system supports long long.
 */
/*#define HAS_LONG_LONG		/ **/
#ifdef HAS_LONG_LONG
#define LONGLONGSIZE 8		/**/
#endif

/* HAS_MKSTEMP:
 *	This symbol, if defined, indicates that the mkstemp routine is
 *	available to exclusively create and open a uniquely named
 *	temporary file.
 */
/*#define HAS_MKSTEMP		/ **/

/* HAS_MMAP:
 *	This symbol, if defined, indicates that the mmap system call is
 *	available to map a file into memory.
 */
/* Mmap_t:
 *	This symbol holds the return type of the mmap() system call
 *	(and simultaneously the type of the first argument).
 *	Usually set to 'void *' or 'caddr_t'.
 */
/*#define HAS_MMAP		/ **/
#define Mmap_t void *	/**/

/* HAS_SETGRENT:
 *	This symbol, if defined, indicates that the setgrent routine is
 *	available for initializing sequential access of the group database.
 */
/*#define HAS_SETGRENT		/ **/

/* HAS_SETHOSTENT:
 *	This symbol, if defined, indicates that the sethostent() routine is
 *	available.
 */
/*#define HAS_SETHOSTENT		/ **/

/* HAS_SETNETENT:
 *	This symbol, if defined, indicates that the setnetent() routine is
 *	available.
 */
/*#define HAS_SETNETENT		/ **/

/* HAS_SETPROTOENT:
 *	This symbol, if defined, indicates that the setprotoent() routine is
 *	available.
 */
/*#define HAS_SETPROTOENT		/ **/

/* HAS_SETPGRP:
 *	This symbol, if defined, indicates that the setpgrp routine is
 *	available to set the current process group.
 */
/* USE_BSD_SETPGRP:
 *	This symbol, if defined, indicates that setpgrp needs two
 *	arguments whereas USG one needs none.  See also HAS_SETPGID
 *	for a POSIX interface.
 */
/*#define HAS_SETPGRP		/ **/
/*#define USE_BSD_SETPGRP	/ **/

/* HAS_SETPWENT:
 *	This symbol, if defined, indicates that the setpwent routine is
 *	available for initializing sequential access of the passwd database.
 */
/*#define HAS_SETPWENT		/ **/

/* HAS_SETSERVENT:
 *	This symbol, if defined, indicates that the setservent() routine is
 *	available.
 */
/*#define HAS_SETSERVENT		/ **/

/* HAS_SETVBUF:
 *	This symbol, if defined, indicates that the setvbuf routine is
 *	available to change buffering on an open stdio stream.
 *	to a line-buffered mode.
 */
/*#define HAS_SETVBUF		/ **/

/* HAS_SHM:
 *	This symbol, if defined, indicates that the entire shm*(2) library is
 *	supported.
 */
/*#define HAS_SHM		/ **/

/* Shmat_t:
 *	This symbol holds the return type of the shmat() system call.
 *	Usually set to 'void *' or 'char *'.
 */
/* HAS_SHMAT_PROTOTYPE:
 *	This symbol, if defined, indicates that the sys/shm.h includes
 *	a prototype for shmat().  Otherwise, it is up to the program to
 *	guess one.  Shmat_t shmat(int, Shmat_t, int) is a good guess,
 *	but not always right so it should be emitted by the program only
 *	when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
 */
#define Shmat_t void *	/**/
/*#define HAS_SHMAT_PROTOTYPE	/ **/

/* HAS_SOCKET:
 *	This symbol, if defined, indicates that the BSD socket interface is
 *	supported.
 */
/* HAS_SOCKETPAIR:
 *	This symbol, if defined, indicates that the BSD socketpair() call is
 *	supported.
 */
/* HAS_SOCKADDR_SA_LEN:
 *	This symbol, if defined, indicates that the struct sockaddr
 *	structure has a member called sa_len, indicating the length of
 *	the structure.
 */
/* HAS_SOCKADDR_IN6:
 *	This symbol, if defined, indicates the availability of
 *	struct sockaddr_in6;
 */
/* HAS_SOCKADDR_STORAGE:
 *	This symbol, if defined, indicates the availability of
 *	struct sockaddr_storage;
 */
/* HAS_SIN6_SCOPE_ID:
 *	This symbol, if defined, indicates that the struct sockaddr_in6
 *	structure has a member called sin6_scope_id.
 */
/* HAS_IP_MREQ:
 *	This symbol, if defined, indicates the availability of
 *	struct ip_mreq;
 */
/* HAS_IP_MREQ_SOURCE:
 *	This symbol, if defined, indicates the availability of
 *	struct ip_mreq_source;
 */
/* HAS_IPV6_MREQ:
 *	This symbol, if defined, indicates the availability of
 *	struct ipv6_mreq;
 */
/* HAS_IPV6_MREQ_SOURCE:
 *	This symbol, if defined, indicates the availability of
 *	struct ipv6_mreq_source;
 */
/*#define	HAS_SOCKET		/ **/
/*#define	HAS_SOCKETPAIR	/ **/
/*#define	HAS_SOCKADDR_SA_LEN	/ **/
/*#define	HAS_SOCKADDR_IN6	/ **/
/*#define	HAS_SOCKADDR_STORAGE	/ **/
/*#define	HAS_SIN6_SCOPE_ID	/ **/
/*#define	HAS_IP_MREQ	/ **/
/*#define	HAS_IP_MREQ_SOURCE	/ **/
/*#define	HAS_IPV6_MREQ	/ **/
/*#define	HAS_IPV6_MREQ_SOURCE	/ **/

/* USE_STAT_BLOCKS:
 *	This symbol is defined if this system has a stat structure declaring
 *	st_blksize and st_blocks.
 */
#ifndef USE_STAT_BLOCKS
/*#define USE_STAT_BLOCKS	/ **/
#endif

/* HAS_SYS_ERRLIST:
 *	This symbol, if defined, indicates that the sys_errlist array is
 *	available to translate error numbers to strings. The extern int
 *	sys_nerr gives the size of that table.
 */
/*#define HAS_SYS_ERRLIST	/ **/

/* HAS_STRTOUL:
 *	This symbol, if defined, indicates that the strtoul routine is
 *	available to provide conversion of strings to unsigned long.
 */
#define HAS_STRTOUL	/**/

/* HAS_UNION_SEMUN:
 *	This symbol, if defined, indicates that the union semun is
 *	defined by including <sys/sem.h>.  If not, the user code
 *	probably needs to define it as:
 *	 union semun {
 *	    int val;
 *	    struct semid_ds *buf;
 *	    unsigned short *array;
 *	 }
 */
/* USE_SEMCTL_SEMUN:
 *	This symbol, if defined, indicates that union semun is
 *	used for semctl IPC_STAT.
 */
/* USE_SEMCTL_SEMID_DS:
 *	This symbol, if defined, indicates that struct semid_ds * is
 *	used for semctl IPC_STAT.
 */
/*#define HAS_UNION_SEMUN	/ **/
/*#define USE_SEMCTL_SEMUN	/ **/
/*#define USE_SEMCTL_SEMID_DS	/ **/

/* HAS_VFORK:
 *	This symbol, if defined, indicates that vfork() exists.
 */
/*#define HAS_VFORK	/ **/

/* HAS_PSEUDOFORK:
 *	This symbol, if defined, indicates that an emulation of the
 *	fork routine is available.
 */
/*#define HAS_PSEUDOFORK	/ **/

/* Signal_t:
 *	This symbol's value is either "void" or "int", corresponding to the
 *	appropriate return type of a signal handler.  Thus, you can declare
 *	a signal handler using "Signal_t (*handler)()", and define the
 *	handler using "Signal_t handler(sig)".
 */
#define Signal_t int	/* Signal handler's return type */

/* I_DIRENT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <dirent.h>. Using this symbol also triggers the definition
 *	of the Direntry_t define which ends up being 'struct dirent' or
 *	'struct direct' depending on the availability of <dirent.h>.
 */
/* DIRNAMLEN:
 *	This symbol, if defined, indicates to the C program that the length
 *	of directory entry names is provided by a d_namlen field.  Otherwise
 *	you need to do strlen() on the d_name field.
 */
/* Direntry_t:
 *	This symbol is set to 'struct direct' or 'struct dirent' depending on
 *	whether dirent is available or not. You should use this pseudo type to
 *	portably declare your directory entries.
 */
#define I_DIRENT		/**/
/*#define DIRNAMLEN	/ **/
#define Direntry_t struct dirent

/* I_EXECINFO:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <execinfo.h> for backtrace() support.
 */
/*#define I_EXECINFO		/ **/

/* I_GRP:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <grp.h>.
 */
/* GRPASSWD:
 *	This symbol, if defined, indicates to the C program that struct group
 *	in <grp.h> contains gr_passwd.
 */
/*#define I_GRP		/ **/
/*#define GRPASSWD	/ **/

/* I_NDBM:
 *	This symbol, if defined, indicates that <ndbm.h> exists and should
 *	be included.
 */
/* I_GDBMNDBM:
 *	This symbol, if defined, indicates that <gdbm/ndbm.h> exists and should
 *	be included.  This was the location of the ndbm.h compatibility file
 *	in RedHat 7.1.
 */
/* I_GDBM_NDBM:
 *	This symbol, if defined, indicates that <gdbm-ndbm.h> exists and should
 *	be included.  This is the location of the ndbm.h compatibility file
 *	in Debian 4.0.
 */
/* NDBM_H_USES_PROTOTYPES:
 *	This symbol, if defined, indicates that <ndbm.h> uses real ANSI C
 *	prototypes instead of K&R style function declarations without any
 *	parameter information. While ANSI C prototypes are supported in C++,
 *	K&R style function declarations will yield errors.
 */
/* GDBMNDBM_H_USES_PROTOTYPES:
 *	This symbol, if defined, indicates that <gdbm/ndbm.h> uses real ANSI C
 *	prototypes instead of K&R style function declarations without any
 *	parameter information. While ANSI C prototypes are supported in C++,
 *	K&R style function declarations will yield errors.
 */
/* GDBM_NDBM_H_USES_PROTOTYPES:
 *	This symbol, if defined, indicates that <gdbm-ndbm.h> uses real ANSI C
 *	prototypes instead of K&R style function declarations without any
 *	parameter information. While ANSI C prototypes are supported in C++,
 *	K&R style function declarations will yield errors.
 */
/*#define I_NDBM	/ **/
/*#define I_GDBMNDBM	/ **/
/*#define I_GDBM_NDBM	/ **/
/*#define NDBM_H_USES_PROTOTYPES	/ **/
/*#define GDBMNDBM_H_USES_PROTOTYPES	/ **/
/*#define GDBM_NDBM_H_USES_PROTOTYPES	/ **/

/* I_NETDB:
 *	This symbol, if defined, indicates that <netdb.h> exists and
 *	should be included.
 */
/*#define I_NETDB		/ **/

/* I_NET_ERRNO:
 *	This symbol, if defined, indicates that <net/errno.h> exists and
 *	should be included.
 */
/*#define I_NET_ERRNO		/ **/

/* I_PWD:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <pwd.h>.
 */
/* PWQUOTA:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_quota.
 */
/* PWAGE:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_age.
 */
/* PWCHANGE:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_change.
 */
/* PWCLASS:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_class.
 */
/* PWEXPIRE:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_expire.
 */
/* PWCOMMENT:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_comment.
 */
/* PWGECOS:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_gecos.
 */
/* PWPASSWD:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_passwd.
 */
/*#define I_PWD		/ **/
/*#define PWQUOTA	/ **/
/*#define PWAGE	/ **/
/*#define PWCHANGE	/ **/
/*#define PWCLASS	/ **/
/*#define PWEXPIRE	/ **/
/*#define PWCOMMENT	/ **/
/*#define PWGECOS	/ **/
/*#define PWPASSWD	/ **/

/* I_SYSUIO:
 *	This symbol, if defined, indicates that <sys/uio.h> exists and
 *	should be included.
 */
/*#define	I_SYSUIO		/ **/

/* I_TERMIO:
 *	This symbol, if defined, indicates that the program should include
 *	<termio.h> rather than <sgtty.h>.  There are also differences in
 *	the ioctl() calls that depend on the value of this symbol.
 */
/* I_TERMIOS:
 *	This symbol, if defined, indicates that the program should include
 *	the POSIX termios.h rather than sgtty.h or termio.h.
 *	There are also differences in the ioctl() calls that depend on the
 *	value of this symbol.
 */
/* I_SGTTY:
 *	This symbol, if defined, indicates that the program should include
 *	<sgtty.h> rather than <termio.h>.  There are also differences in
 *	the ioctl() calls that depend on the value of this symbol.
 */
/*#define I_TERMIO		/ **/
/*#define I_TERMIOS		/ **/
/*#define I_SGTTY		/ **/

/* Free_t:
 *	This variable contains the return type of free().  It is usually
 *	void, but occasionally int.
 */
/* Malloc_t:
 *	This symbol is the type of pointer returned by malloc and realloc.
 */
#define Malloc_t void *			/**/
#define Free_t void			/**/

/* PERL_MALLOC_WRAP:
 *	This symbol, if defined, indicates that we'd like malloc wrap checks.
 */
/*#define PERL_MALLOC_WRAP		/ **/

/* MYMALLOC:
 *	This symbol, if defined, indicates that we're using our own malloc.
 */
/*#define MYMALLOC			/ **/

/* SH_PATH:
 *	This symbol contains the full pathname to the shell used on this
 *	on this system to execute Bourne shell scripts.  Usually, this will be
 *	/bin/sh, though it's possible that some systems will have /bin/ksh,
 *	/bin/pdksh, /bin/ash, /bin/bash, or even something such as
 *	D:/bin/sh.exe.
 */
#define SH_PATH "/bin/sh"  /**/

/* SIG_NAME:
 *	This symbol contains a list of signal names in order of
 *	signal number. This is intended
 *	to be used as a static array initialization, like this:
 *		char *sig_name[] = { SIG_NAME };
 *	The signals in the list are separated with commas, and each signal
 *	is surrounded by double quotes. There is no leading SIG in the signal
 *	name, i.e. SIGQUIT is known as "QUIT".
 *	Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
 *	etc., where nn is the actual signal number (e.g. NUM37).
 *	The signal number for sig_name[i] is stored in sig_num[i].
 *	The last element is 0 to terminate the list with a NULL.  This
 *	corresponds to the 0 at the end of the sig_name_init list.
 *	Note that this variable is initialized from the sig_name_init,
 *	not from sig_name (which is unused).
 */
/* SIG_NUM:
 *	This symbol contains a list of signal numbers, in the same order as the
 *	SIG_NAME list. It is suitable for static array initialization, as in:
 *		int sig_num[] = { SIG_NUM };
 *	The signals in the list are separated with commas, and the indices
 *	within that list and the SIG_NAME list match, so it's easy to compute
 *	the signal name from a number or vice versa at the price of a small
 *	dynamic linear lookup.
 *	Duplicates are allowed, but are moved to the end of the list.
 *	The signal number corresponding to sig_name[i] is sig_number[i].
 *	if (i < NSIG) then sig_number[i] == i.
 *	The last element is 0, corresponding to the 0 at the end of
 *	the sig_name_init list.
 *	Note that this variable is initialized from the sig_num_init,
 *	not from sig_num (which is unused).
 */
/* SIG_SIZE:
 *	This variable contains the number of elements of the SIG_NAME
 *	and SIG_NUM arrays, excluding the final NULL entry.
 */
#define SIG_NAME 0		/**/
#define SIG_NUM  0		/**/
#define SIG_SIZE 1			/**/

/* USE_CROSS_COMPILE:
 *	This symbol, if defined, indicates that Perl is being cross-compiled.
 */
/* PERL_TARGETARCH:
 *	This symbol, if defined, indicates the target architecture
 *	Perl has been cross-compiled to.  Undefined if not a cross-compile.
 */
#ifndef USE_CROSS_COMPILE
/*#define	USE_CROSS_COMPILE	/ **/
#define	PERL_TARGETARCH	""	/**/
#endif

/* PERL_USE_DEVEL:
 *	This symbol, if defined, indicates that Perl was configured with
 *	-Dusedevel, to enable development features.  This should not be
 *	done for production builds.
 */
/*#define	PERL_USE_DEVEL		/ **/

/* HAS_ATOLF:
 *	This symbol, if defined, indicates that the atolf routine is
 *	available to convert strings into long doubles.
 */
/*#define HAS_ATOLF		/ **/

/* HAS_ATOLL:
 *	This symbol, if defined, indicates that the atoll routine is
 *	available to convert strings into long longs.
 */
/*#define HAS_ATOLL		/ **/

/* HAS__FWALK:
 *	This symbol, if defined, indicates that the _fwalk system call is
 *	available to apply a function to all the file handles.
 */
/*#define HAS__FWALK		/ **/

/* HAS_ACCEPT4:
 *	This symbol, if defined, indicates that the accept4 routine is
 *	available to accept socket connections.
 */
/*#define HAS_ACCEPT4	/ **/

/* HAS_ACOSH:
 *	This symbol, if defined, indicates that the acosh routine is
 *	available to do the inverse hyperbolic cosine function.
 */
/*#define HAS_ACOSH		/ **/

/* HAS_AINTL:
 *	This symbol, if defined, indicates that the aintl routine is
 *	available.  If copysignl is also present we can emulate modfl.
 */
/*#define HAS_AINTL		/ **/

/* HAS_ASINH:
 *	This symbol, if defined, indicates that the asinh routine is
 *	available to do the inverse hyperbolic sine function.
 */
/*#define HAS_ASINH		/ **/

/* HAS_ATANH:
 *	This symbol, if defined, indicates that the atanh routine is
 *	available to do the inverse hyperbolic tangent function.
 */
/*#define HAS_ATANH		/ **/

/* HAS_NON_INT_BITFIELDS:
 *	This symbol, if defined, indicates that the C compiler accepts, without
 *	error or warning, struct bitfields that are declared with sizes other
 *	than plain 'int'; for example 'unsigned char' is accepted.
 */
#define HAS_NON_INT_BITFIELDS	/**/

/* HAS_BUILTIN_CHOOSE_EXPR:
 *	Can we handle GCC builtin for compile-time ternary-like expressions
 */
/* HAS_BUILTIN_EXPECT:
 *	Can we handle GCC builtin for telling that certain values are more
 *	likely
 */
/*#define HAS_BUILTIN_EXPECT	/ **/
/*#define HAS_BUILTIN_CHOOSE_EXPR	/ **/

/* HAS_BUILTIN_ADD_OVERFLOW:
 *	This symbol, if defined, indicates that the compiler supports
 *	__builtin_add_overflow for adding integers with overflow checks.
 */
/* HAS_BUILTIN_SUB_OVERFLOW:
 *	This symbol, if defined, indicates that the compiler supports
 *	__builtin_sub_overflow for subtracting integers with overflow checks.
 */
/* HAS_BUILTIN_MUL_OVERFLOW:
 *	This symbol, if defined, indicates that the compiler supports
 *	__builtin_mul_overflow for multiplying integers with overflow checks.
 */
/*#define HAS_BUILTIN_ADD_OVERFLOW	/ **/
/*#define HAS_BUILTIN_SUB_OVERFLOW	/ **/
/*#define HAS_BUILTIN_MUL_OVERFLOW	/ **/

/* HAS_C99_VARIADIC_MACROS:
 *	If defined, the compiler supports C99 variadic macros.
 */
/*#define	HAS_C99_VARIADIC_MACROS	/ **/

/* HAS_CLASS:
 *	This symbol, if defined, indicates that the class routine is
 *	available to classify doubles.  Available for example in AIX.
 *	The returned values are defined in <float.h> and are:
 *
 *	FP_PLUS_NORM	Positive normalized, nonzero
 *	FP_MINUS_NORM	Negative normalized, nonzero
 *	FP_PLUS_DENORM	Positive denormalized, nonzero
 *	FP_MINUS_DENORM	Negative denormalized, nonzero
 *	FP_PLUS_ZERO	+0.0
 *	FP_MINUS_ZERO	-0.0
 *	FP_PLUS_INF	+INF
 *	FP_MINUS_INF	-INF
 *	FP_NANS		Signaling Not a Number (NaNS)
 *	FP_NANQ		Quiet Not a Number (NaNQ)
 */
/*#define HAS_CLASS		/ **/

/* HAS_CLEARENV:
 *	This symbol, if defined, indicates that the clearenv () routine is
 *	available for use.
 */
/*#define HAS_CLEARENV		/ **/

/* HAS_STRUCT_CMSGHDR:
 *	This symbol, if defined, indicates that the struct cmsghdr
 *	is supported.
 */
/*#define HAS_STRUCT_CMSGHDR	/ **/

/* HAS_COPYSIGN:
 *	This symbol, if defined, indicates that the copysign routine is
 *	available to do the copysign function.
 */
/*#define HAS_COPYSIGN		/ **/

/* HAS_COPYSIGNL:
 *	This symbol, if defined, indicates that the copysignl routine is
 *	available.  If aintl is also present we can emulate modfl.
 */
/*#define HAS_COPYSIGNL		/ **/

/* USE_CPLUSPLUS:
 *	This symbol, if defined, indicates that a C++ compiler was
 *	used to compiled Perl and will be used to compile extensions.
 */
/*#define USE_CPLUSPLUS		/ **/

/* HAS_DBMINIT_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the dbminit() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int dbminit(char *);
 */
/*#define	HAS_DBMINIT_PROTO	/ **/

/* HAS_DIR_DD_FD:
 *	This symbol, if defined, indicates that the the DIR* dirstream
 *	structure contains a member variable named dd_fd.
 */
/*#define HAS_DIR_DD_FD		/ **/

/* HAS_DIRFD:
 *	This manifest constant lets the C program know that dirfd
 *	is available.
 */
/*#define HAS_DIRFD		/ **/

/* DLSYM_NEEDS_UNDERSCORE:
 *	This symbol, if defined, indicates that we need to prepend an
 *	underscore to the symbol name before calling dlsym().  This only
 *	makes sense if you *have* dlsym, which we will presume is the
 *	case if you're using dl_dlopen.xs.
 */
/*#define	DLSYM_NEEDS_UNDERSCORE	/ **/

/* HAS_DUP3:
 *	This symbol, if defined, indicates that the dup3 routine is
 *	available to duplicate file descriptors.
 */
/*#define HAS_DUP3	/ **/

/* HAS_ERF:
 *	This symbol, if defined, indicates that the erf routine is
 *	available to do the error function.
 */
/*#define HAS_ERF		/ **/

/* HAS_ERFC:
 *	This symbol, if defined, indicates that the erfc routine is
 *	available to do the complementary error function.
 */
/*#define HAS_ERFC		/ **/

/* HAS_EXP2:
 *	This symbol, if defined, indicates that the exp2 routine is
 *	available to do the 2**x function.
 */
/*#define HAS_EXP2		/ **/

/* HAS_EXPM1:
 *	This symbol, if defined, indicates that the expm1 routine is
 *	available to do the exp(x) - 1 when x is near 1 function.
 */
/*#define HAS_EXPM1		/ **/

/* HAS_FAST_STDIO:
 *	This symbol, if defined, indicates that the "fast stdio"
 *	is available to manipulate the stdio buffers directly.
 */
/*#define HAS_FAST_STDIO		/ **/

/* HAS_FCHDIR:
 *	This symbol, if defined, indicates that the fchdir routine is
 *	available to change directory using a file descriptor.
 */
/*#define HAS_FCHDIR		/ **/

/* FCNTL_CAN_LOCK:
 *	This symbol, if defined, indicates that fcntl() can be used
 *	for file locking.  Normally on Unix systems this is defined.
 *	It may be undefined on VMS.
 */
/*#define FCNTL_CAN_LOCK		/ **/

/* HAS_FDCLOSE:
 *	This symbol, if defined, indicates that the fdclose routine is
 *	available to free a FILE structure without closing the underlying
 *	file descriptor.  This function appeared in FreeBSD 10.2.
 */
/*#define HAS_FDCLOSE		/ **/

/* HAS_FDIM:
 *	This symbol, if defined, indicates that the fdim routine is
 *	available to do the positive difference function.
 */
/*#define HAS_FDIM		/ **/

/* HAS_FEGETROUND:
 *	This symbol, if defined, indicates that the fegetround routine is
 *	available to return the macro corresponding to the current rounding
 *	mode.
 */
/*#define HAS_FEGETROUND	/ **/

/* HAS_FFS:
 *	This symbol, if defined, indicates that the ffs routine is available
 *	to find the first bit set in its argument.  If it's not available,
 *	roll your own.
 */
/* HAS_FFSL:
 *	This symbol, if defined, indicates that the ffsl routine is available
 *	to find the first bit set in its argument.  If it's not available,
 *	roll your own.
 */
/*#define HAS_FFS		/ **/
/*#define HAS_FFSL		/ **/

/* HAS_FINITE:
 *	This symbol, if defined, indicates that the finite routine is
 *	available to check whether a double is finite (non-infinity non-NaN).
 */
/*#define HAS_FINITE		/ **/

/* HAS_FINITEL:
 *	This symbol, if defined, indicates that the finitel routine is
 *	available to check whether a long double is finite
 *	(non-infinity non-NaN).
 */
/*#define HAS_FINITEL		/ **/

/* HAS_FLOCK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the flock() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int flock(int, int);
 */
/*#define	HAS_FLOCK_PROTO	/ **/

/* HAS_FMA:
 *	This symbol, if defined, indicates that the fma routine is
 *	available to do the multiply-add function.
 */
/*#define HAS_FMA		/ **/

/* HAS_FMAX:
 *	This symbol, if defined, indicates that the fmax routine is
 *	available to do the maximum function.
 */
/*#define HAS_FMAX		/ **/

/* HAS_FMIN:
 *	This symbol, if defined, indicates that the fmin routine is
 *	available to do the minimum function.
 */
/*#define HAS_FMIN		/ **/

/* HAS_FP_CLASS:
 *	This symbol, if defined, indicates that the fp_class routine is
 *	available to classify doubles.  Available for example in Digital UNIX.
 *	The returned values are defined in <math.h> and are:
 *
 *	FP_SNAN           Signaling NaN (Not-a-Number)
 *	FP_QNAN           Quiet NaN (Not-a-Number)
 *	FP_POS_INF        +infinity
 *	FP_NEG_INF        -infinity
 *	FP_POS_NORM       Positive normalized
 *	FP_NEG_NORM       Negative normalized
 *	FP_POS_DENORM     Positive denormalized
 *	FP_NEG_DENORM     Negative denormalized
 *	FP_POS_ZERO       +0.0 (positive zero)
 *	FP_NEG_ZERO       -0.0 (negative zero)
 */
/*#define HAS_FP_CLASS		/ **/

/* HAS_FP_CLASSL:
 *	This symbol, if defined, indicates that the fp_classl routine is
 *	available to classify long doubles.  Available for example in
 *	Digital UNIX.  See for possible values HAS_FP_CLASS.
 */
/*#define HAS_FP_CLASSL		/ **/

/* HAS_FPCLASS:
 *	This symbol, if defined, indicates that the fpclass routine is
 *	available to classify doubles.  Available for example in Solaris/SVR4.
 *	The returned values are defined in <ieeefp.h> and are:
 *
 *	FP_SNAN		signaling NaN
 *	FP_QNAN		quiet NaN
 *	FP_NINF		negative infinity
 *	FP_PINF		positive infinity
 *	FP_NDENORM	negative denormalized non-zero
 *	FP_PDENORM	positive denormalized non-zero
 *	FP_NZERO	negative zero
 *	FP_PZERO	positive zero
 *	FP_NNORM	negative normalized non-zero
 *	FP_PNORM	positive normalized non-zero
 */
/*#define HAS_FPCLASS		/ **/

/* HAS_FPCLASSIFY:
 *	This symbol, if defined, indicates that the fpclassify routine is
 *	available to classify doubles.  Available for example in HP-UX.
 *	The returned values are defined in <math.h> and are
 *
 *	  FP_NORMAL     Normalized
 *	  FP_ZERO       Zero
 *	  FP_INFINITE   Infinity
 *	  FP_SUBNORMAL  Denormalized
 *	  FP_NAN        NaN
 *
 */
/* HAS_FP_CLASSIFY:
 *	This symbol, if defined, indicates that the fp_classify routine is
 *	available to classify doubles. The values are defined in <math.h>
 *
 *	  FP_NORMAL     Normalized
 *	  FP_ZERO       Zero
 *	  FP_INFINITE   Infinity
 *	  FP_SUBNORMAL  Denormalized
 *	  FP_NAN        NaN
 *
 */
/*#define	HAS_FPCLASSIFY		/ **/
/*#define	HAS_FP_CLASSIFY		/ **/

/* HAS_FPCLASSL:
 *	This symbol, if defined, indicates that the fpclassl routine is
 *	available to classify long doubles.  Available for example in IRIX.
 *	The returned values are defined in <ieeefp.h> and are:
 *
 *	FP_SNAN		signaling NaN
 *	FP_QNAN		quiet NaN
 *	FP_NINF		negative infinity
 *	FP_PINF		positive infinity
 *	FP_NDENORM	negative denormalized non-zero
 *	FP_PDENORM	positive denormalized non-zero
 *	FP_NZERO	negative zero
 *	FP_PZERO	positive zero
 *	FP_NNORM	negative normalized non-zero
 *	FP_PNORM	positive normalized non-zero
 */
/*#define HAS_FPCLASSL		/ **/

/* HAS_FPGETROUND:
 *	This symbol, if defined, indicates that the fpgetround routine is
 *	available to get the floating point rounding mode.
 */
/*#define HAS_FPGETROUND		/ **/

/* HAS_FPOS64_T:
 *	This symbol will be defined if the C compiler supports fpos64_t.
 */
/*#define	HAS_FPOS64_T	/ **/

/* HAS_FREXPL:
 *	This symbol, if defined, indicates that the frexpl routine is
 *	available to break a long double floating-point number into
 *	a normalized fraction and an integral power of 2.
 */
/*#define HAS_FREXPL		/ **/

/* HAS_STRUCT_FS_DATA:
 *	This symbol, if defined, indicates that the struct fs_data
 *	to do statfs() is supported.
 */
/*#define HAS_STRUCT_FS_DATA	/ **/

/* HAS_FCHMODAT:
 *	This symbol is defined if the fchmodat() routine is available.
 */
/* HAS_LINKAT:
 *	This symbol is defined if the linkat() routine is available.
 */
/* HAS_OPENAT:
 *	This symbol is defined if the openat() routine is available.
 */
/* HAS_RENAMEAT:
 *	This symbol is defined if the renameat() routine is available.
 */
/* HAS_UNLINKAT:
 *	This symbol is defined if the unlinkat() routine is available.
 */
/*#define	HAS_FCHMODAT	/ **/
/*#define	HAS_LINKAT	/ **/
/*#define	HAS_OPENAT	/ **/
/*#define	HAS_RENAMEAT	/ **/
/*#define	HAS_UNLINKAT	/ **/

/* HAS_FSEEKO:
 *	This symbol, if defined, indicates that the fseeko routine is
 *	available to fseek beyond 32 bits (useful for ILP32 hosts).
 */
/*#define HAS_FSEEKO		/ **/

/* HAS_FSTATFS:
 *	This symbol, if defined, indicates that the fstatfs routine is
 *	available to stat filesystems by file descriptors.
 */
/*#define HAS_FSTATFS		/ **/

/* HAS_FSYNC:
 *	This symbol, if defined, indicates that the fsync routine is
 *	available to write a file's modified data and attributes to
 *	permanent storage.
 */
/*#define HAS_FSYNC		/ **/

/* HAS_FTELLO:
 *	This symbol, if defined, indicates that the ftello routine is
 *	available to ftell beyond 32 bits (useful for ILP32 hosts).
 */
/*#define HAS_FTELLO		/ **/

/* HAS_FUTIMES:
 *	This symbol, if defined, indicates that the futimes routine is
 *	available to change file descriptor time stamps with struct timevals.
 */
/*#define HAS_FUTIMES		/ **/

/* HAS_GAI_STRERROR:
 *	This symbol, if defined, indicates that the gai_strerror routine
 *	is available to translate error codes returned by getaddrinfo()
 *	into human readable strings.
 */
/*#define HAS_GAI_STRERROR	/ **/

/* HAS_GETADDRINFO:
 *	This symbol, if defined, indicates that the getaddrinfo() function
 *	is available for use.
 */
/*#define HAS_GETADDRINFO		/ **/

/* HAS_GETCWD:
 *	This symbol, if defined, indicates that the getcwd routine is
 *	available to get the current working directory.
 */
/*#define HAS_GETCWD		/ **/

/* HAS_GETESPWNAM:
 *	This symbol, if defined, indicates that the getespwnam system call is
 *	available to retrieve enhanced (shadow) password entries by name.
 */
/*#define HAS_GETESPWNAM		/ **/

/* HAS_GETFSSTAT:
 *	This symbol, if defined, indicates that the getfsstat routine is
 *	available to stat filesystems in bulk.
 */
/*#define HAS_GETFSSTAT		/ **/

/* HAS_GETITIMER:
 *	This symbol, if defined, indicates that the getitimer routine is
 *	available to return interval timers.
 */
/*#define HAS_GETITIMER		/ **/

/* HAS_GETMNT:
 *	This symbol, if defined, indicates that the getmnt routine is
 *	available to get filesystem mount info by filename.
 */
/*#define HAS_GETMNT		/ **/

/* HAS_GETMNTENT:
 *	This symbol, if defined, indicates that the getmntent routine is
 *	available to iterate through mounted file systems to get their info.
 */
/*#define HAS_GETMNTENT		/ **/

/* HAS_GETNAMEINFO:
 *	This symbol, if defined, indicates that the getnameinfo() function
 *	is available for use.
 */
/*#define HAS_GETNAMEINFO		/ **/

/* HAS_GETPRPWNAM:
 *	This symbol, if defined, indicates that the getprpwnam system call is
 *	available to retrieve protected (shadow) password entries by name.
 */
/*#define HAS_GETPRPWNAM		/ **/

/* HAS_GETSPNAM:
 *	This symbol, if defined, indicates that the getspnam system call is
 *	available to retrieve SysV shadow password entries by name.
 */
/*#define HAS_GETSPNAM		/ **/

/* HAS_HASMNTOPT:
 *	This symbol, if defined, indicates that the hasmntopt routine is
 *	available to query the mount options of file systems.
 */
/*#define HAS_HASMNTOPT		/ **/

/* HAS_HYPOT:
 *	This symbol, if defined, indicates that the hypot routine is
 *	available to do the hypotenuse function.
 */
/*#define HAS_HYPOT		/ **/

/* HAS_ILOGB:
 *	This symbol, if defined, indicates that the ilogb routine is
 *	available to get integer exponent of a floating-point value.
 */
/*#define HAS_ILOGB		/ **/

/* HAS_ILOGBL:
 *	This symbol, if defined, indicates that the ilogbl routine is
 *	available.  If scalbnl is also present we can emulate frexpl.
 */
/*#define HAS_ILOGBL		/ **/

/* HAS_INETNTOP:
 *	This symbol, if defined, indicates that the inet_ntop() function
 *	is available to parse IPv4 and IPv6 strings.
 */
/*#define HAS_INETNTOP		/ **/

/* HAS_INETPTON:
 *	This symbol, if defined, indicates that the inet_pton() function
 *	is available to parse IPv4 and IPv6 strings.
 */
/*#define HAS_INETPTON		/ **/

/* HAS_INT64_T:
 *	This symbol will defined if the C compiler supports int64_t.
 *	Usually the <inttypes.h> needs to be included, but sometimes
 *	<sys/types.h> is enough.
 */
/*#define     HAS_INT64_T               / **/

/* HAS_ISBLANK:
 *	This manifest constant lets the C program know that isblank
 *	is available.
 */
/*#define HAS_ISBLANK		/ **/

/* HAS_ISFINITE:
 *	This symbol, if defined, indicates that the isfinite routine is
 *	available to check whether a double is finite (non-infinity non-NaN).
 */
/*#define HAS_ISFINITE		/ **/

/* HAS_ISFINITEL:
 *	This symbol, if defined, indicates that the isfinitel routine is
 *	available to check whether a long double is finite.
 *	(non-infinity non-NaN).
 */
/*#define HAS_ISFINITEL		/ **/

/* HAS_ISINF:
 *	This symbol, if defined, indicates that the isinf routine is
 *	available to check whether a double is an infinity.
 */
/*#define HAS_ISINF		/ **/

/* HAS_ISINFL:
 *	This symbol, if defined, indicates that the isinfl routine is
 *	available to check whether a long double is an infinity.
 */
/*#define HAS_ISINFL		/ **/

/* HAS_ISLESS:
 *	This symbol, if defined, indicates that the isless routine is
 *	available to do the isless function.
 */
/*#define HAS_ISLESS		/ **/

/* HAS_ISNAN:
 *	This symbol, if defined, indicates that the isnan routine is
 *	available to check whether a double is a NaN.
 */
/*#define HAS_ISNAN		/ **/

/* HAS_ISNANL:
 *	This symbol, if defined, indicates that the isnanl routine is
 *	available to check whether a long double is a NaN.
 */
/*#define HAS_ISNANL		/ **/

/* HAS_ISNORMAL:
 *	This symbol, if defined, indicates that the isnormal routine is
 *	available to check whether a double is normal (non-zero normalized).
 */
/*#define HAS_ISNORMAL		/ **/

/* HAS_J0:
 *	This symbol, if defined, indicates to the C program that the
 *	j0() function is available for Bessel functions of the first
 *	kind of the order zero, for doubles.
 */
/* HAS_J0L:
 *	This symbol, if defined, indicates to the C program that the
 *	j0l() function is available for Bessel functions of the first
 *	kind of the order zero, for long doubles.
 */
/*#define	HAS_J0		/ **/
/*#define	HAS_J0L		/ **/

/* HAS_LC_MONETARY_2008:
 *	This symbol, if defined, indicates that the localeconv routine is
 *	available and has the additional members added in POSIX 1003.1-2008.
 */
/*#define HAS_LC_MONETARY_2008		/ **/

/* HAS_LDBL_DIG:
 *	This symbol, if defined, indicates that this system's <float.h>
 *	or <limits.h> defines the symbol LDBL_DIG, which is the number
 *	of significant digits in a long double precision number. Unlike
 *	for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
 */
/*#define HAS_LDBL_DIG	/ * */

/* HAS_LGAMMA:
 *	This symbol, if defined, indicates that the lgamma routine is
 *	available to do the log gamma function.  See also HAS_TGAMMA and
 *	HAS_LGAMMA_R.
 */
/*#define HAS_LGAMMA		/ **/

/* HAS_LGAMMA_R:
 *	This symbol, if defined, indicates that the lgamma_r routine is
 *	available to do the log gamma function without using the global
 *	signgam variable.
 */
/*#define HAS_LGAMMA_R		/ **/

/* LIBM_LIB_VERSION:
 *	This symbol, if defined, indicates that libm exports _LIB_VERSION
 *	and that math.h defines the enum to manipulate it.
 */
/*#define LIBM_LIB_VERSION		/ **/

/* HAS_LLRINT:
 *	This symbol, if defined, indicates that the llrint routine is
 *	available to return the long long value closest to a double
 *	(according to the current rounding mode).
 */
/*#define HAS_LLRINT		/ **/

/* HAS_LLRINTL:
 *	This symbol, if defined, indicates that the llrintl routine is
 *	available to return the long long value closest to a long double
 *	(according to the current rounding mode).
 */
/*#define HAS_LLRINTL		/ **/

/* HAS_LLROUND:
 *	This symbol, if defined, indicates that the llround routine is
 *	available to return the nearest long long value.
 */
/*#define HAS_LLROUND		/ **/

/* HAS_LLROUNDL:
 *	This symbol, if defined, indicates that the llroundl routine is
 *	available to return the nearest long long value away from zero of
 *	the long double argument value.
 */
/*#define HAS_LLROUNDL		/ **/

/* HAS_LOG1P:
 *	This symbol, if defined, indicates that the log1p routine is
 *	available to do the logarithm of 1 plus argument function.
 */
/*#define HAS_LOG1P		/ **/

/* HAS_LOG2:
 *	This symbol, if defined, indicates that the log2 routine is
 *	available to do the log2 function.
 */
/*#define HAS_LOG2		/ **/

/* HAS_LOGB:
 *	This symbol, if defined, indicates that the logb routine is
 *	available to do the logb function.
 */
/*#define HAS_LOGB		/ **/

/* HAS_LRINT:
 *	This symbol, if defined, indicates that the lrint routine is
 *	available to return the integral value closest to a double
 *	(according to the current rounding mode).
 */
/*#define HAS_LRINT		/ **/

/* HAS_LRINTL:
 *	This symbol, if defined, indicates that the lrintl routine is
 *	available to return the integral value closest to a long double
 *	(according to the current rounding mode).
 */
/*#define HAS_LRINTL		/ **/

/* HAS_LROUND:
 *	This symbol, if defined, indicates that the lround routine is
 *	available to return the nearest integral value.
 */
/*#define HAS_LROUND		/ **/

/* HAS_LROUNDL:
 *	This symbol, if defined, indicates that the lroundl routine is
 *	available to return the nearest integral value away from zero of
 *	the long double argument value.
 */
/*#define HAS_LROUNDL		/ **/

/* HAS_MADVISE:
 *	This symbol, if defined, indicates that the madvise system call is
 *	available to map a file into memory.
 */
/*#define HAS_MADVISE		/ **/

/* HAS_MALLOC_SIZE:
 *	This symbol, if defined, indicates that the malloc_size
 *	routine is available for use.
 */
/*#define HAS_MALLOC_SIZE		/ **/

/* HAS_MALLOC_GOOD_SIZE:
 *	This symbol, if defined, indicates that the malloc_good_size
 *	routine is available for use.
 */
/*#define HAS_MALLOC_GOOD_SIZE	/ **/

/* HAS_MEMMEM:
 *	This symbol, if defined, indicates that the memmem routine is
 *	available to return a pointer to the start of the first occurrence
 *	of a substring in a memory area (or NULL if not found).
 *	In glibc, memmem is a GNU extension.  The function is visible in
 *	libc, but the prototype is only visible if _GNU_SOURCE is #defined.
 *	Thus we only define this if both the prototype and symbol are found.
 */
/*#define HAS_MEMMEM		/ **/

/* HAS_MEMRCHR:
 *	This symbol, if defined, indicates that the memrchr routine is
 *	available to return a pointer to the last occurrence of a byte in
 *	a memory area (or NULL if not found).
 */
/*#define HAS_MEMRCHR		/ **/

/* HAS_MKDTEMP:
 *	This symbol, if defined, indicates that the mkdtemp routine is
 *	available to exclusively create a uniquely named temporary directory.
 */
/*#define HAS_MKDTEMP		/ **/

/* HAS_MKOSTEMP:
 *	This symbol, if defined, indicates that the mkostemp routine is
 *	available to exclusively create and open a uniquely named (with a
 *	suffix) temporary file.
 */
/*#define HAS_MKOSTEMP	/ **/

/* HAS_MKSTEMPS:
 *	This symbol, if defined, indicates that the mkstemps routine is
 *	available to exclusively create and open a uniquely named
 *	(with a suffix) temporary file.
 */
/*#define HAS_MKSTEMPS		/ **/

/* HAS_MODFL:
 *	This symbol, if defined, indicates that the modfl routine is
 *	available to split a long double x into a fractional part f and
 *	an integer part i such that |f| < 1.0 and (f + i) = x.
 */
/* HAS_MODFL_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the modfl() function.  Otherwise, it is up
 *	to the program to supply one.
 */
/*#define HAS_MODFL		/ **/
/*#define HAS_MODFL_PROTO		/ **/

/* HAS_MPROTECT:
 *	This symbol, if defined, indicates that the mprotect system call is
 *	available to modify the access protection of a memory mapped file.
 */
/*#define HAS_MPROTECT		/ **/

/* HAS_STRUCT_MSGHDR:
 *	This symbol, if defined, indicates that the struct msghdr
 *	is supported.
 */
/*#define HAS_STRUCT_MSGHDR	/ **/

/* HAS_NAN:
 *	This symbol, if defined, indicates that the nan routine is
 *	available to generate NaN.
 */
/*#define HAS_NAN		/ **/

/* HAS_NANOSLEEP:
 *	This symbol, if defined, indicates that the nanosleep
 *	system call is available to sleep with 1E-9 sec accuracy.
 */
/*#define HAS_NANOSLEEP		/ **/

/* HAS_NEARBYINT:
 *	This symbol, if defined, indicates that the nearbyint routine is
 *	available to return the integral value closest to (according to
 *	the current rounding mode) to x.
 */
/*#define HAS_NEARBYINT		/ **/

/* HAS_NEWLOCALE:
 *	This symbol, if defined, indicates that the newlocale routine is
 *	available to return a new locale object or modify an existing
 *	locale object.
 */
/* HAS_FREELOCALE:
 *	This symbol, if defined, indicates that the freelocale routine is
 *	available to deallocates the resources associated with a locale object.
 */
/* HAS_USELOCALE:
 *	This symbol, if defined, indicates that the uselocale routine is
 *	available to set the current locale for the calling thread.
 */
/* HAS_DUPLOCALE:
 *	This symbol, if defined, indicates that the duplocale routine is
 *	available to duplicate a locale object.
 */
/* HAS_QUERYLOCALE:
 *	This symbol, if defined, indicates that the querylocale routine is
 *	available to return the name of the locale for a category mask.
 */
/* I_XLOCALE:
 *	This symbol, if defined, indicates to the C program that the
 *	header xlocale.h is available.  See also NEED_XLOCALE_H
 */
/* NEED_XLOCALE_H:
 *	This symbol, if defined, indicates that the C program should
 *	include <xlocale.h> to get newlocale() and its friends.
 */
/*#define	HAS_NEWLOCALE	/ **/
/*#define	HAS_FREELOCALE	/ **/
/*#define	HAS_USELOCALE	/ **/
/*#define	HAS_DUPLOCALE	/ **/
/*#define	HAS_QUERYLOCALE	/ **/
/*#define	NEED_XLOCALE_H	/ **/
/*#define	I_XLOCALE               / **/

/* HAS_NEXTAFTER:
 *	This symbol, if defined, indicates that the nextafter routine is
 *	available to return the next machine representable double from
 *	x in direction y.
 */
/*#define HAS_NEXTAFTER		/ **/

/* HAS_NEXTTOWARD:
 *	This symbol, if defined, indicates that the nexttoward routine is
 *	available to return the next machine representable long double from
 *	x in direction y.
 */
/*#define HAS_NEXTTOWARD		/ **/

/* HAS_NL_LANGINFO:
 *	This symbol, if defined, indicates that the nl_langinfo routine is
 *	available to return local data.  You will also need <langinfo.h>
 *	and therefore I_LANGINFO.
 */
/*#define HAS_NL_LANGINFO		/ **/

/* HAS_OFF64_T:
 *	This symbol will be defined if the C compiler supports off64_t.
 */
/*#define	HAS_OFF64_T		/ **/

/* HAS_PIPE2:
 *	This symbol, if defined, indicates that the pipe2 routine is
 *	available to create an inter-process channel.
 */
/*#define HAS_PIPE2		/ **/

/* HAS_PRCTL:
 *	This symbol, if defined, indicates that the prctl routine is
 *	available to set process title.
 *	Note that there are at least two prctl variants: Linux and Irix.
 *	While they are somewhat similar, they are incompatible.
 */
/* HAS_PRCTL_SET_NAME:
 *	This symbol, if defined, indicates that the prctl routine is
 *	available to set process title and supports PR_SET_NAME.
 */
/*#define HAS_PRCTL		/ **/
/*#define HAS_PRCTL_SET_NAME		/ **/

/* HAS_PROCSELFEXE:
 *	This symbol is defined if PROCSELFEXE_PATH is a symlink
 *	to the absolute pathname of the executing program.
 */
/* PROCSELFEXE_PATH:
 *	If HAS_PROCSELFEXE is defined this symbol is the filename
 *	of the symbolic link pointing to the absolute pathname of
 *	the executing program.
 */
/*#define HAS_PROCSELFEXE	/ **/
#if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH)
#define PROCSELFEXE_PATH		/**/
#endif

/* HAS_PTHREAD_ATTR_SETSCOPE:
 *	This symbol, if defined, indicates that the pthread_attr_setscope
 *	system call is available to set the contention scope attribute of
 *	a thread attribute object.
 */
/*#define HAS_PTHREAD_ATTR_SETSCOPE		/ **/

/* HAS_PTRDIFF_T:
 *	This symbol will be defined if the C compiler supports ptrdiff_t.
 */
#define	HAS_PTRDIFF_T		/**/

/* HAS_READV:
 *	This symbol, if defined, indicates that the readv routine is
 *	available to do gather reads.  You will also need <sys/uio.h>
 *	and there I_SYSUIO.
 */
/*#define HAS_READV		/ **/

/* HAS_RECVMSG:
 *	This symbol, if defined, indicates that the recvmsg routine is
 *	available to send structured socket messages.
 */
/*#define HAS_RECVMSG		/ **/

/* HAS_REMAINDER:
 *	This symbol, if defined, indicates that the remainder routine is
 *	available to return the floating-point remainder.
 */
/*#define HAS_REMAINDER		/ **/

/* HAS_REMQUO:
 *	This symbol, if defined, indicates that the remquo routine is
 *	available to return the remainder and part of quotient.
 */
/*#define HAS_REMQUO		/ **/

/* HAS_RINT:
 *	This symbol, if defined, indicates that the rint routine is
 *	available to return the nearest integral value to x as double
 *	using the current rounding mode.
 */
/*#define HAS_RINT		/ **/

/* HAS_ROUND:
 *	This symbol, if defined, indicates that the round routine is
 *	available to round to nearest integer, away from zero.
 */
/*#define HAS_ROUND		/ **/

/* HAS_SBRK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the sbrk() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern void* sbrk(int);
 *		extern void* sbrk(size_t);
 */
/*#define	HAS_SBRK_PROTO	/ **/

/* HAS_SCALBN:
 *	This symbol, if defined, indicates that the scalbn routine is
 *	available to multiply floating-point number by integral power
 *	of radix.
 */
/*#define HAS_SCALBN		/ **/

/* HAS_SCALBNL:
 *	This symbol, if defined, indicates that the scalbnl routine is
 *	available.  If ilogbl is also present we can emulate frexpl.
 */
/*#define HAS_SCALBNL		/ **/

/* HAS_SENDMSG:
 *	This symbol, if defined, indicates that the sendmsg routine is
 *	available to send structured socket messages.
 */
/*#define HAS_SENDMSG		/ **/

/* HAS_SETITIMER:
 *	This symbol, if defined, indicates that the setitimer routine is
 *	available to set interval timers.
 */
/*#define HAS_SETITIMER		/ **/

/* HAS_SETLOCALE:
 *	This symbol, if defined, indicates that the setlocale routine is
 *	available to handle locale-specific ctype implementations.
 */
/* SETLOCALE_ACCEPTS_ANY_LOCALE_NAME:
 *	This symbol, if defined, indicates that the setlocale routine is
 *	available and it accepts any input locale name as valid.
 */
/*#define HAS_SETLOCALE	/ **/
/*#define SETLOCALE_ACCEPTS_ANY_LOCALE_NAME	/ **/

/* HAS_SETPROCTITLE:
 *	This symbol, if defined, indicates that the setproctitle routine is
 *	available to set process title.
 */
/*#define HAS_SETPROCTITLE		/ **/

/* HAS_SIGNBIT:
 *	This symbol, if defined, indicates that the signbit routine is
 *	available to check if the given number has the sign bit set.
 *	This should include correct testing of -0.0.  This will only be set
 *	if the signbit() routine is safe to use with the NV type used internally
 *	in perl.  Users should call Perl_signbit(), which will be #defined to
 *	the system's signbit() function or macro if this symbol is defined.
 */
/*#define HAS_SIGNBIT		/ **/

/* HAS_SIGPROCMASK:
 *	This symbol, if defined, indicates that the sigprocmask
 *	system call is available to examine or change the signal mask
 *	of the calling process.
 */
/*#define HAS_SIGPROCMASK		/ **/

/* USE_SITECUSTOMIZE:
 *	This symbol, if defined, indicates that sitecustomize should
 *	be used.
 */
#ifndef USE_SITECUSTOMIZE
/*#define	USE_SITECUSTOMIZE		/ **/
#endif

/* HAS_SNPRINTF:
 *	This symbol, if defined, indicates that the snprintf () library
 *	function is available for use.
 */
/* HAS_VSNPRINTF:
 *	This symbol, if defined, indicates that the vsnprintf () library
 *	function is available for use.
 */
/*#define HAS_SNPRINTF	/ **/
/*#define HAS_VSNPRINTF	/ **/

/* HAS_SOCKATMARK:
 *	This symbol, if defined, indicates that the sockatmark routine is
 *	available to test whether a socket is at the out-of-band mark.
 */
/*#define HAS_SOCKATMARK		/ **/

/* HAS_SOCKATMARK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the sockatmark() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int sockatmark(int);
 */
/*#define	HAS_SOCKATMARK_PROTO	/ **/

/* HAS_SOCKS5_INIT:
 *	This symbol, if defined, indicates that the socks5_init routine is
 *	available to initialize SOCKS 5.
 */
/*#define HAS_SOCKS5_INIT		/ **/

/* HAS_SQRTL:
 *	This symbol, if defined, indicates that the sqrtl routine is
 *	available to do long double square roots.
 */
/*#define HAS_SQRTL		/ **/

/* HAS_SETRESGID_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the setresgid() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
 */
/*#define	HAS_SETRESGID_PROTO	/ **/

/* HAS_SETRESUID_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the setresuid() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
 */
/*#define	HAS_SETRESUID_PROTO	/ **/

/* HAS_STRUCT_STATFS_F_FLAGS:
 *	This symbol, if defined, indicates that the struct statfs
 *	does have the f_flags member containing the mount flags of
 *	the filesystem containing the file.
 *	This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
 *	not from <sys/statfs.h> (SYSV).  Older BSDs (like Ultrix) do not
 *	have statfs() and struct statfs, they have ustat() and getmnt()
 *	with struct ustat and struct fs_data.
 */
/*#define HAS_STRUCT_STATFS_F_FLAGS		/ **/

/* HAS_STRUCT_STATFS:
 *	This symbol, if defined, indicates that the struct statfs
 *	to do statfs() is supported.
 */
/*#define HAS_STRUCT_STATFS	/ **/

/* HAS_FSTATVFS:
 *	This symbol, if defined, indicates that the fstatvfs routine is
 *	available to stat filesystems by file descriptors.
 */
/*#define HAS_FSTATVFS		/ **/

/* HAS_STRERROR_L:
 *	This symbol, if defined, indicates that the strerror_l routine is
 *	available to return the error message for a given errno value in
 *	a particular locale (identified by a locale_t object).
 */
/*#define HAS_STRERROR_L		/ **/

/* HAS_STRFTIME:
 *	This symbol, if defined, indicates that the strftime routine is
 *	available to do time formatting.
 */
/*#define HAS_STRFTIME		/ **/

/* HAS_STRLCAT:
 *	This symbol, if defined, indicates that the strlcat () routine is
 *	available to do string concatenation.
 */
/*#define HAS_STRLCAT		/ **/

/* HAS_STRLCPY:
 *	This symbol, if defined, indicates that the strlcpy () routine is
 *	available to do string copying.
 */
/*#define HAS_STRLCPY		/ **/

/* HAS_STRNLEN:
 *	This symbol, if defined, indicates that the strnlen () routine is
 *	available to check the length of a string up to a maximum.
 */
/*#define HAS_STRNLEN		/ **/

/* HAS_STRTOLD:
 *	This symbol, if defined, indicates that the strtold routine is
 *	available to convert strings to long doubles.
 */
/*#define HAS_STRTOLD		/ **/

/* HAS_STRTOLL:
 *	This symbol, if defined, indicates that the strtoll routine is
 *	available to convert strings to long longs.
 */
/*#define HAS_STRTOLL		/ **/

/* HAS_STRTOQ:
 *	This symbol, if defined, indicates that the strtoq routine is
 *	available to convert strings to long longs (quads).
 */
/*#define HAS_STRTOQ		/ **/

/* HAS_STRTOULL:
 *	This symbol, if defined, indicates that the strtoull routine is
 *	available to convert strings to unsigned long longs.
 */
/*#define HAS_STRTOULL		/ **/

/* HAS_STRTOUQ:
 *	This symbol, if defined, indicates that the strtouq routine is
 *	available to convert strings to unsigned long longs (quads).
 */
/*#define HAS_STRTOUQ		/ **/

/* HAS_STRXFRM_L:
 *	This symbol, if defined, indicates that the strxfrm_l() routine is
 *	available to transform strings.
 */
/*#define HAS_STRXFRM_L	/ **/

/* HAS_SYSCALL_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the syscall() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern int syscall(int,  ...);
 *		extern int syscall(long, ...);
 */
/*#define	HAS_SYSCALL_PROTO	/ **/

/* HAS_TELLDIR_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the telldir() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern long telldir(DIR*);
 */
/*#define	HAS_TELLDIR_PROTO	/ **/

/* HAS_TGAMMA:
 *	This symbol, if defined, indicates that the tgamma routine is
 *	available to do the gamma function. See also HAS_LGAMMA.
 */
/*#define HAS_TGAMMA		/ **/

/* HAS_CTIME64:
 *	This symbol, if defined, indicates that the ctime64 () routine is
 *	available to do the 64bit variant of ctime ()
 */
/* HAS_LOCALTIME64:
 *	This symbol, if defined, indicates that the localtime64 () routine is
 *	available to do the 64bit variant of localtime ()
 */
/* HAS_GMTIME64:
 *	This symbol, if defined, indicates that the gmtime64 () routine is
 *	available to do the 64bit variant of gmtime ()
 */
/* HAS_MKTIME64:
 *	This symbol, if defined, indicates that the mktime64 () routine is
 *	available to do the 64bit variant of mktime ()
 */
/* HAS_DIFFTIME64:
 *	This symbol, if defined, indicates that the difftime64 () routine is
 *	available to do the 64bit variant of difftime ()
 */
/* HAS_ASCTIME64:
 *	This symbol, if defined, indicates that the asctime64 () routine is
 *	available to do the 64bit variant of asctime ()
 */
/*#define	HAS_CTIME64		/ **/
/*#define	HAS_LOCALTIME64		/ **/
/*#define	HAS_GMTIME64		/ **/
/*#define	HAS_MKTIME64		/ **/
/*#define	HAS_DIFFTIME64		/ **/
/*#define	HAS_ASCTIME64		/ **/

/* HAS_TIMEGM:
 *	This symbol, if defined, indicates that the timegm routine is
 *	available to do the opposite of gmtime ()
 */
/*#define HAS_TIMEGM		/ **/

/* HAS_TOWLOWER:
 *	This symbol, if defined, indicates that the towlower () routine is
 *	available to do case conversion.
 */
/*#define HAS_TOWLOWER		/ **/

/* HAS_TOWUPPER:
 *	This symbol, if defined, indicates that the towupper () routine is
 *	available to do case conversion.
 */
/*#define HAS_TOWUPPER		/ **/

/* HAS_TRUNC:
 *	This symbol, if defined, indicates that the trunc routine is
 *	available to round doubles towards zero.
 */
/*#define HAS_TRUNC		/ **/

/* HAS_TRUNCL:
 *	This symbol, if defined, indicates that the truncl routine is
 *	available. If copysignl is also present we can emulate modfl.
 */
/*#define HAS_TRUNCL		/ **/

/* U32_ALIGNMENT_REQUIRED:
 *	This symbol, if defined, indicates that you must access
 *	character data through U32-aligned pointers.
 */
#ifndef U32_ALIGNMENT_REQUIRED
#define U32_ALIGNMENT_REQUIRED	/**/
#endif

/* HAS_UALARM:
 *	This symbol, if defined, indicates that the ualarm routine is
 *	available to do alarms with microsecond granularity.
 */
/*#define HAS_UALARM		/ **/

/* HAS_UNORDERED:
 *	This symbol, if defined, indicates that the unordered routine is
 *	available to check whether two doubles are unordered
 *	(effectively: whether either of them is NaN)
 */
/*#define HAS_UNORDERED		/ **/

/* HAS_UNSETENV:
 *	This symbol, if defined, indicates that the unsetenv () routine is
 *	available for use.
 */
/*#define HAS_UNSETENV		/ **/

/* HAS_USLEEP_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the usleep() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int usleep(useconds_t);
 */
/*#define	HAS_USLEEP_PROTO	/ **/

/* HAS_USTAT:
 *	This symbol, if defined, indicates that the ustat system call is
 *	available to query file system statistics by dev_t.
 */
/*#define HAS_USTAT		/ **/

/* HAS_WCSCMP:
 *	This symbol, if defined, indicates that the wcscmp routine is
 *	available to compare two wide character strings.
 */
/*#define HAS_WCSCMP	/ **/

/* HAS_WCSXFRM:
 *	This symbol, if defined, indicates that the wcsxfrm routine is
 *	available to tranform a wide character string for wcscmp().
 */
/*#define HAS_WCSXFRM	/ **/

/* HAS_WRITEV:
 *	This symbol, if defined, indicates that the writev routine is
 *	available to do scatter writes.
 */
/*#define HAS_WRITEV		/ **/

/* DEFAULT_INC_EXCLUDES_DOT:
 *	This symbol, if defined, removes the legacy default behavior of
 *	including '.' at the end of @INC.
 */
/*#define DEFAULT_INC_EXCLUDES_DOT	/ **/

/* USE_DYNAMIC_LOADING:
 *	This symbol, if defined, indicates that dynamic loading of
 *	some sort is available.
 */
/*#define USE_DYNAMIC_LOADING		/ **/

/* FFLUSH_NULL:
 *	This symbol, if defined, tells that fflush(NULL) correctly
 *	flushes all pending stdio output without side effects. In
 *	particular, on some platforms calling fflush(NULL) *still*
 *	corrupts STDIN if it is a pipe.
 */
/* FFLUSH_ALL:
 *	This symbol, if defined, tells that to flush
 *	all pending stdio output one must loop through all
 *	the stdio file handles stored in an array and fflush them.
 *	Note that if fflushNULL is defined, fflushall will not
 *	even be probed for and will be left undefined.
 */
/*#define	FFLUSH_NULL		/ **/
/*#define	FFLUSH_ALL		/ **/

/* I_BFD:
 *	This symbol, if defined, indicates that <bfd.h> exists and
 *	can be included.
 */
/*#define	I_BFD		/ **/

/* I_CRYPT:
 *	This symbol, if defined, indicates that <crypt.h> exists and
 *	should be included.
 */
/*#define	I_CRYPT		/ **/

/* DB_Prefix_t:
 *	This symbol contains the type of the prefix structure element
 *	in the <db.h> header file.  In older versions of DB, it was
 *	int, while in newer ones it is u_int32_t.
 */
/* DB_Hash_t:
 *	This symbol contains the type of the prefix structure element
 *	in the <db.h> header file.  In older versions of DB, it was
 *	int, while in newer ones it is size_t.
 */
/* DB_VERSION_MAJOR_CFG:
 *	This symbol, if defined, defines the major version number of
 *	Berkeley DB found in the <db.h> header when Perl was configured.
 */
/* DB_VERSION_MINOR_CFG:
 *	This symbol, if defined, defines the minor version number of
 *	Berkeley DB found in the <db.h> header when Perl was configured.
 *	For DB version 1 this is always 0.
 */
/* DB_VERSION_PATCH_CFG:
 *	This symbol, if defined, defines the patch version number of
 *	Berkeley DB found in the <db.h> header when Perl was configured.
 *	For DB version 1 this is always 0.
 */
#define DB_Hash_t	u_int32_t		/**/
#define DB_Prefix_t	size_t		/**/
#define DB_VERSION_MAJOR_CFG	0	/**/
#define DB_VERSION_MINOR_CFG	0	/**/
#define DB_VERSION_PATCH_CFG	0	/**/

/* I_FENV:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <fenv.h> to get the floating point environment definitions.
 */
/*#define I_FENV		/ **/

/* I_FP:
 *	This symbol, if defined, indicates that <fp.h> exists and
 *	should be included.
 */
/*#define	I_FP		/ **/

/* I_FP_CLASS:
 *	This symbol, if defined, indicates that <fp_class.h> exists and
 *	should be included.
 */
/*#define	I_FP_CLASS		/ **/

/* I_IEEEFP:
 *	This symbol, if defined, indicates that <ieeefp.h> exists and
 *	should be included.
 */
/*#define	I_IEEEFP		/ **/

/* I_INTTYPES:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <inttypes.h>.
 */
/*#define   I_INTTYPES                / **/

/* I_LANGINFO:
 *	This symbol, if defined, indicates that <langinfo.h> exists and
 *	should be included.
 */
/*#define	I_LANGINFO		/ **/

/* I_LIBUTIL:
 *	This symbol, if defined, indicates that <libutil.h> exists and
 *	should be included.
 */
/*#define	I_LIBUTIL		/ **/

/* I_MALLOCMALLOC:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <malloc/malloc.h>.
 */
/*#define I_MALLOCMALLOC		/ **/

/* I_MNTENT:
 *	This symbol, if defined, indicates that <mntent.h> exists and
 *	should be included.
 */
/*#define	I_MNTENT		/ **/

/* I_NETINET_TCP:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <netinet/tcp.h>.
 */
/*#define   I_NETINET_TCP                / **/

/* I_POLL:
 *	This symbol, if defined, indicates that <poll.h> exists and
 *	should be included. (see also HAS_POLL)
 */
/*#define	I_POLL		/ **/

/* I_PROT:
 *	This symbol, if defined, indicates that <prot.h> exists and
 *	should be included.
 */
/*#define	I_PROT		/ **/

/* I_QUADMATH:
 *	This symbol, if defined, indicates that <quadmath.h> exists and
 *	should be included.
 */
/*#define	I_QUADMATH		/ **/

/* I_SHADOW:
 *	This symbol, if defined, indicates that <shadow.h> exists and
 *	should be included.
 */
/*#define	I_SHADOW		/ **/

/* I_SOCKS:
 *	This symbol, if defined, indicates that <socks.h> exists and
 *	should be included.
 */
/*#define	I_SOCKS		/ **/

/* I_STDBOOL:
 *	This symbol, if defined, indicates that <stdbool.h> exists and
 *	can be included.
 */
/*#define	I_STDBOOL		/ **/

/* I_STDINT:
 *	This symbol, if defined, indicates that <stdint.h> exists and
 *	should be included.
 */
/*#define I_STDINT		/ **/

/* I_SUNMATH:
 *	This symbol, if defined, indicates that <sunmath.h> exists and
 *	should be included.
 */
/*#define	I_SUNMATH		/ **/

/* I_SYSLOG:
 *	This symbol, if defined, indicates that <syslog.h> exists and
 *	should be included.
 */
/*#define	I_SYSLOG		/ **/

/* I_SYSMODE:
 *	This symbol, if defined, indicates that <sys/mode.h> exists and
 *	should be included.
 */
/*#define	I_SYSMODE		/ **/

/* I_SYS_MOUNT:
 *	This symbol, if defined, indicates that <sys/mount.h> exists and
 *	should be included.
 */
/*#define	I_SYS_MOUNT		/ **/

/* I_SYS_STATFS:
 *	This symbol, if defined, indicates that <sys/statfs.h> exists.
 */
/*#define	I_SYS_STATFS		/ **/

/* I_SYS_STATVFS:
 *	This symbol, if defined, indicates that <sys/statvfs.h> exists and
 *	should be included.
 */
/*#define	I_SYS_STATVFS		/ **/

/* I_SYSUTSNAME:
 *	This symbol, if defined, indicates that <sys/utsname.h> exists and
 *	should be included.
 */
/*#define	I_SYSUTSNAME		/ **/

/* I_SYS_VFS:
 *	This symbol, if defined, indicates that <sys/vfs.h> exists and
 *	should be included.
 */
/*#define	I_SYS_VFS		/ **/

/* I_USTAT:
 *	This symbol, if defined, indicates that <ustat.h> exists and
 *	should be included.
 */
/*#define	I_USTAT		/ **/

/* I_WCHAR:
 *	This symbol, if defined, indicates to the C program that <wchar.h>
 *	is available for inclusion
 */
/*#define   I_WCHAR	/ **/

/* I_WCTYPE:
 *	This symbol, if defined, indicates that <wctype.h> exists.
 */
/*#define	I_WCTYPE		/ **/

/* DOUBLEINFBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes for the double precision infinity.
 */
/* DOUBLENANBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes (0xHH) for the double precision not-a-number.
 */
/* LONGDBLINFBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes for the long double precision infinity.
 */
/* LONGDBLNANBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes (0xHH) for the long double precision not-a-number.
 */
#define DOUBLEINFBYTES  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f		/**/
#define DOUBLENANBYTES  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x7f		/**/
#define LONGDBLINFBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00		/**/
#define LONGDBLNANBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00		/**/

/* PERL_PRIfldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'f') for output.
 */
/* PERL_PRIgldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'g') for output.
 */
/* PERL_PRIeldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'e') for output.
 */
/* PERL_SCNfldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'f') for input.
 */
/* DOUBLEKIND:
 *	DOUBLEKIND will be one of
 *	DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN
 *	DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN
 *	DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN
 *	DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN
 *	DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
 *	DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
 *	DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
 *	DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
 *	DOUBLE_IS_VAX_F_FLOAT
 *	DOUBLE_IS_VAX_D_FLOAT
 *	DOUBLE_IS_VAX_G_FLOAT
 *	DOUBLE_IS_IBM_SINGLE_32_BIT
 *	DOUBLE_IS_IBM_DOUBLE_64_BIT
 *	DOUBLE_IS_CRAY_SINGLE_64_BIT
 *	DOUBLE_IS_UNKNOWN_FORMAT
 */
/* DOUBLE_HAS_INF:
 *	This symbol, if defined, indicates that the double has
 *	the infinity.
 */
/* DOUBLE_HAS_NAN:
 *	This symbol, if defined, indicates that the double has
 *	the not-a-number.
 */
/* DOUBLE_HAS_NEGATIVE_ZERO:
 *	This symbol, if defined, indicates that the double has
 *	the negative_zero.
 */
/* DOUBLE_HAS_SUBNORMALS:
 *	This symbol, if defined, indicates that the double has
 *	the subnormals (denormals).
 */
/* DOUBLE_STYLE_CRAY:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit CRAY mainframe format.
 */
/* DOUBLE_STYLE_IBM:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit IBM mainframe format.
 */
/* DOUBLE_STYLE_IEEE:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit IEEE 754.
 */
/* DOUBLE_STYLE_VAX:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit VAX format D or G.
 */
#define DOUBLEKIND 3		/**/
#define DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN	1
#define DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN	2
#define DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN	3
#define DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN	4
#define DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN	5
#define DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN	6
#define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE	7
#define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE	8
#define DOUBLE_IS_VAX_F_FLOAT	9
#define DOUBLE_IS_VAX_D_FLOAT	10
#define DOUBLE_IS_VAX_G_FLOAT	11
#define DOUBLE_IS_IBM_SINGLE_32_BIT	12
#define DOUBLE_IS_IBM_DOUBLE_64_BIT	13
#define DOUBLE_IS_CRAY_SINGLE_64_BIT	14
#define DOUBLE_IS_UNKNOWN_FORMAT		-1
/*#define PERL_PRIfldbl	"llf"	/ **/
/*#define PERL_PRIgldbl	"llg"	/ **/
/*#define PERL_PRIeldbl	"lle"	/ **/
/*#define PERL_SCNfldbl	"llf"	/ **/
#define DOUBLE_HAS_INF
#define DOUBLE_HAS_NAN
#define DOUBLE_HAS_NEGATIVE_ZERO
#define DOUBLE_HAS_SUBNORMALS
#undef DOUBLE_STYLE_CRAY
#undef DOUBLE_STYLE_IBM
#define DOUBLE_STYLE_IEEE
#undef DOUBLE_STYLE_VAX

/* DOUBLEMANTBITS:
 *	This symbol, if defined, tells how many mantissa bits
 *	there are in double precision floating point format.
 *	Note that this is usually DBL_MANT_DIG minus one, since
 *	with the standard IEEE 754 formats DBL_MANT_DIG includes
 *	the implicit bit, which doesn't really exist.
 */
/* LONGDBLMANTBITS:
 *	This symbol, if defined, tells how many mantissa bits
 *	there are in long double precision floating point format.
 *	Note that this can be LDBL_MANT_DIG minus one,
 *	since LDBL_MANT_DIG can include the IEEE 754 implicit bit.
 *	The common x86-style 80-bit long double does not have
 *	an implicit bit.
 */
/* NVMANTBITS:
 *	This symbol, if defined, tells how many mantissa bits
 *	(not including implicit bit) there are in a Perl NV.
 *	This depends on which floating point type was chosen.
 */
#define DOUBLEMANTBITS  52
#define LONGDBLMANTBITS 64
#define NVMANTBITS      52

/* NEED_VA_COPY:
 *	This symbol, if defined, indicates that the system stores
 *	the variable argument list datatype, va_list, in a format
 *	that cannot be copied by simple assignment, so that some
 *	other means must be used when copying is required.
 *	As such systems vary in their provision (or non-provision)
 *	of copying mechanisms, handy.h defines a platform-
 *	independent macro, Perl_va_copy(src, dst), to do the job.
 */
#define	NEED_VA_COPY		/**/

/* IVTYPE:
 *	This symbol defines the C type used for Perl's IV.
 */
/* UVTYPE:
 *	This symbol defines the C type used for Perl's UV.
 */
/* I8TYPE:
 *	This symbol defines the C type used for Perl's I8.
 */
/* U8TYPE:
 *	This symbol defines the C type used for Perl's U8.
 */
/* I16TYPE:
 *	This symbol defines the C type used for Perl's I16.
 */
/* U16TYPE:
 *	This symbol defines the C type used for Perl's U16.
 */
/* I32TYPE:
 *	This symbol defines the C type used for Perl's I32.
 */
/* U32TYPE:
 *	This symbol defines the C type used for Perl's U32.
 */
/* I64TYPE:
 *	This symbol defines the C type used for Perl's I64.
 */
/* U64TYPE:
 *	This symbol defines the C type used for Perl's U64.
 */
/* NVTYPE:
 *	This symbol defines the C type used for Perl's NV.
 */
/* IVSIZE:
 *	This symbol contains the sizeof(IV).
 */
/* UVSIZE:
 *	This symbol contains the sizeof(UV).
 */
/* I8SIZE:
 *	This symbol contains the sizeof(I8).
 */
/* U8SIZE:
 *	This symbol contains the sizeof(U8).
 */
/* I16SIZE:
 *	This symbol contains the sizeof(I16).
 */
/* U16SIZE:
 *	This symbol contains the sizeof(U16).
 */
/* I32SIZE:
 *	This symbol contains the sizeof(I32).
 */
/* U32SIZE:
 *	This symbol contains the sizeof(U32).
 */
/* I64SIZE:
 *	This symbol contains the sizeof(I64).
 */
/* U64SIZE:
 *	This symbol contains the sizeof(U64).
 */
/* NVSIZE:
 *	This symbol contains the sizeof(NV).
 *	Note that some floating point formats have unused bytes.
 *	The most notable example is the x86* 80-bit extended precision
 *	which comes in byte sizes of 12 and 16 (for 32 and 64 bit
 *	platforms, respectively), but which only uses 10 bytes.
 *	Perl compiled with -Duselongdouble on x86* is like this.
 */
/* NV_PRESERVES_UV:
 *	This symbol, if defined, indicates that a variable of type NVTYPE
 *	can preserve all the bits of a variable of type UVTYPE.
 */
/* NV_PRESERVES_UV_BITS:
 *	This symbol contains the number of bits a variable of type NVTYPE
 *	can preserve of a variable of type UVTYPE.
 */
/* NV_OVERFLOWS_INTEGERS_AT:
 *	This symbol gives the largest integer value that NVs can hold. This
 *	value + 1.0 cannot be stored accurately. It is expressed as constant
 *	floating point expression to reduce the chance of decimal/binary
 *	conversion issues. If it can not be determined, the value 0 is given.
 */
/* NV_ZERO_IS_ALLBITS_ZERO:
 *	This symbol, if defined, indicates that a variable of type NVTYPE
 *	stores 0.0 in memory as all bits zero.
 */
#define	IVTYPE		long		/**/
#define	UVTYPE		unsigned long		/**/
#define	I8TYPE		signed char		/**/
#define	U8TYPE		unsigned char		/**/
#define	I16TYPE		short	/**/
#define	U16TYPE		unsigned short	/**/
#define	I32TYPE		long	/**/
#define	U32TYPE		unsigned long	/**/
#ifdef HAS_QUAD
#define	I64TYPE		int64_t	/**/
#define	U64TYPE		uint64_t	/**/
#endif
#define	NVTYPE		double		/**/
#define	IVSIZE		4		/**/
#define	UVSIZE		4		/**/
#define	I8SIZE		1		/**/
#define	U8SIZE		1		/**/
#define	I16SIZE		2	/**/
#define	U16SIZE		2	/**/
#define	I32SIZE		4	/**/
#define	U32SIZE		4	/**/
#ifdef HAS_QUAD
#define	I64SIZE		8	/**/
#define	U64SIZE		8	/**/
#endif
#define	NVSIZE		8		/**/
#undef	NV_PRESERVES_UV
#define	NV_PRESERVES_UV_BITS	0
#define	NV_OVERFLOWS_INTEGERS_AT	(256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0)
#undef	NV_ZERO_IS_ALLBITS_ZERO
#if UVSIZE == 8
#   ifdef BYTEORDER
#       if BYTEORDER == 0x1234
#           undef BYTEORDER
#           define BYTEORDER 0x12345678
#       else
#           if BYTEORDER == 0x4321
#               undef BYTEORDER
#               define BYTEORDER 0x87654321
#           endif
#       endif
#   endif
#endif

/* IVdf:
 *	This symbol defines the format string used for printing a Perl IV
 *	as a signed decimal integer.
 */
/* UVuf:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned decimal integer.
 */
/* UVof:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned octal integer.
 */
/* UVxf:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned hexadecimal integer in lowercase abcdef.
 */
/* UVXf:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned hexadecimal integer in uppercase ABCDEF.
 */
/* NVef:
 *	This symbol defines the format string used for printing a Perl NV
 *	using %e-ish floating point format.
 */
/* NVff:
 *	This symbol defines the format string used for printing a Perl NV
 *	using %f-ish floating point format.
 */
/* NVgf:
 *	This symbol defines the format string used for printing a Perl NV
 *	using %g-ish floating point format.
 */
#define	IVdf		"ld"		/**/
#define	UVuf		"lu"		/**/
#define	UVof		"lo"		/**/
#define	UVxf		"lx"		/**/
#define	UVXf		"lX"		/**/
#define	NVef		"e"		/**/
#define	NVff		"f"		/**/
#define	NVgf		"g"		/**/

/* SELECT_MIN_BITS:
 *	This symbol holds the minimum number of bits operated by select.
 *	That is, if you do select(n, ...), how many bits at least will be
 *	cleared in the masks if some activity is detected.  Usually this
 *	is either n or 32*ceil(n/32), especially many little-endians do
 *	the latter.  This is only useful if you have select(), naturally.
 */
#define SELECT_MIN_BITS	32	/**/

/* ST_DEV_SIZE:
 *	This variable contains the size of struct stat's st_dev in bytes.
 */
/* ST_DEV_SIGN:
 *	This symbol holds the signedness of struct stat's st_dev.
 *	1 for unsigned, -1 for signed.
 */
#define ST_DEV_SIGN 1	/* st_dev sign */
#define ST_DEV_SIZE 4	/* st_dev size */

/* ST_INO_SIZE:
 *	This variable contains the size of struct stat's st_ino in bytes.
 */
/* ST_INO_SIGN:
 *	This symbol holds the signedness of struct stat's st_ino.
 *	1 for unsigned, -1 for signed.
 */
#define ST_INO_SIGN 1	/* st_ino sign */
#define ST_INO_SIZE 4	/* st_ino size */

/* STARTPERL:
 *	This variable contains the string to put in front of a perl
 *	script to make sure (one hopes) that it runs with perl and not
 *	some shell.
 */
#define STARTPERL "#!perl"		/**/

/* HAS_STDIO_STREAM_ARRAY:
 *	This symbol, if defined, tells that there is an array
 *	holding the stdio streams.
 */
/* STDIO_STREAM_ARRAY:
 *	This symbol tells the name of the array holding the stdio streams.
 *	Usual values include _iob, __iob, and __sF.
 */
/*#define	HAS_STDIO_STREAM_ARRAY	/ **/
#ifdef HAS_STDIO_STREAM_ARRAY
#define STDIO_STREAM_ARRAY	
#endif

/* GMTIME_MAX:
 *	This symbol contains the maximum value for the time_t offset that
 *	the system function gmtime () accepts, and defaults to 0
 */
/* GMTIME_MIN:
 *	This symbol contains the minimum value for the time_t offset that
 *	the system function gmtime () accepts, and defaults to 0
 */
/* LOCALTIME_MAX:
 *	This symbol contains the maximum value for the time_t offset that
 *	the system function localtime () accepts, and defaults to 0
 */
/* LOCALTIME_MIN:
 *	This symbol contains the minimum value for the time_t offset that
 *	the system function localtime () accepts, and defaults to 0
 */
#define GMTIME_MAX		2147483647	/**/
#define GMTIME_MIN		0	/**/
#define LOCALTIME_MAX	2147483647	/**/
#define LOCALTIME_MIN	0	/**/

/* USE_64_BIT_INT:
 *	This symbol, if defined, indicates that 64-bit integers should
 *	be used when available.  If not defined, the native integers
 *	will be employed (be they 32 or 64 bits).  The minimal possible
 *	64-bitness is used, just enough to get 64-bit integers into Perl.
 *	This may mean using for example "long longs", while your memory
 *	may still be limited to 2 gigabytes.
 */
/* USE_64_BIT_ALL:
 *	This symbol, if defined, indicates that 64-bit integers should
 *	be used when available.  If not defined, the native integers
 *	will be used (be they 32 or 64 bits).  The maximal possible
 *	64-bitness is employed: LP64 or ILP64, meaning that you will
 *	be able to use more than 2 gigabytes of memory.  This mode is
 *	even more binary incompatible than USE_64_BIT_INT. You may not
 *	be able to run the resulting executable in a 32-bit CPU at all or
 *	you may need at least to reboot your OS to 64-bit mode.
 */
#ifndef USE_64_BIT_INT
/*#define	USE_64_BIT_INT		/ **/
#endif
#ifndef USE_64_BIT_ALL
/*#define	USE_64_BIT_ALL		/ **/
#endif

/* USE_C_BACKTRACE:
 *	This symbol, if defined, indicates that Perl should
 *	be built with support for backtrace.
 */
/*#define USE_C_BACKTRACE		/ **/

/* USE_STRICT_BY_DEFAULT:
 *	This symbol, if defined, enables additional defaults.
 *	At this time it only enables implicit strict by default.
 */
/*#define USE_STRICT_BY_DEFAULT	/ * use strict by default */

/* USE_DTRACE:
 *	This symbol, if defined, indicates that Perl should
 *	be built with support for DTrace.
 */
/*#define USE_DTRACE		/ **/

/* USE_FAST_STDIO:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use 'fast stdio'.
 *	Defaults to define in Perls 5.8 and earlier, to undef later.
 */
#ifndef USE_FAST_STDIO
/*#define	USE_FAST_STDIO		/ **/
#endif

/* USE_KERN_PROC_PATHNAME:
 *	This symbol, if defined, indicates that we can use sysctl with
 *	KERN_PROC_PATHNAME to get a full path for the executable, and hence
 *	convert $^X to an absolute path.
 */
/*#define USE_KERN_PROC_PATHNAME	/ **/

/* USE_LARGE_FILES:
 *	This symbol, if defined, indicates that large file support
 *	should be used when available.
 */
#ifndef USE_LARGE_FILES
/*#define	USE_LARGE_FILES		/ **/
#endif

/* USE_LONG_DOUBLE:
 *	This symbol, if defined, indicates that long doubles should
 *	be used when available.
 */
#ifndef USE_LONG_DOUBLE
/*#define	USE_LONG_DOUBLE		/ **/
#endif

/* USE_MORE_BITS:
 *	This symbol, if defined, indicates that 64-bit interfaces and
 *	long doubles should be used when available.
 */
#ifndef USE_MORE_BITS
/*#define	USE_MORE_BITS		/ **/
#endif

/* MULTIPLICITY:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use multiplicity.
 */
#ifndef MULTIPLICITY
/*#define	MULTIPLICITY		/ **/
#endif

/* USE_NSGETEXECUTABLEPATH:
 *	This symbol, if defined, indicates that we can use _NSGetExecutablePath
 *	and realpath to get a full path for the executable, and hence convert
 *	$^X to an absolute path.
 */
/*#define USE_NSGETEXECUTABLEPATH	/ **/

/* USE_PERLIO:
 *	This symbol, if defined, indicates that the PerlIO abstraction should
 *	be used throughout.  If not defined, stdio should be
 *	used in a fully backward compatible manner.
 */
#ifndef USE_PERLIO
/*#define	USE_PERLIO		/ **/
#endif

/* USE_QUADMATH:
 *	This symbol, if defined, indicates that the quadmath library should
 *	be used when available.
 */
#ifndef USE_QUADMATH
/*#define	USE_QUADMATH		/ **/
#endif

/* USE_SOCKS:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use socks.
 */
#ifndef USE_SOCKS
/*#define	USE_SOCKS		/ **/
#endif

/* HAS_DRAND48_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the drand48() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern double drand48(void);
 */
/*#define	HAS_DRAND48_PROTO	/ **/

/* HAS_GETHOST_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for gethostent(), gethostbyname(), and
 *	gethostbyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETHOST_PROTOS	/ **/

/* HAS_GETNET_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for getnetent(), getnetbyname(), and
 *	getnetbyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETNET_PROTOS	/ **/

/* HAS_GETPROTO_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for getprotoent(), getprotobyname(), and
 *	getprotobyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETPROTO_PROTOS	/ **/

/* HAS_GETSERV_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for getservent(), getservbyname(), and
 *	getservbyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETSERV_PROTOS	/ **/

/* HAS_LSEEK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the lseek() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern off_t lseek(int, off_t, int);
 */
/*#define	HAS_LSEEK_PROTO	/ **/

/* Netdb_host_t:
 *	This symbol holds the type used for the 1st argument
 *	to gethostbyaddr().
 */
/* Netdb_hlen_t:
 *	This symbol holds the type used for the 2nd argument
 *	to gethostbyaddr().
 */
/* Netdb_name_t:
 *	This symbol holds the type used for the argument to
 *	gethostbyname().
 */
/* Netdb_net_t:
 *	This symbol holds the type used for the 1st argument to
 *	getnetbyaddr().
 */
#define Netdb_host_t		const char * /**/
#define Netdb_hlen_t		int /**/
#define Netdb_name_t		const char * /**/
#define Netdb_net_t		unsigned long /**/

/* Select_fd_set_t:
 *	This symbol holds the type used for the 2nd, 3rd, and 4th
 *	arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
 *	is defined, and 'int *' otherwise.  This is only useful if you
 *	have select(), of course.
 */
#define Select_fd_set_t	int	/**/

/* Sock_size_t:
 *	This symbol holds the type used for the size argument of
 *	various socket calls (just the base type, not the pointer-to).
 */
#define Sock_size_t		int /**/

/* ARCHNAME:
 *	This symbol holds a string representing the architecture name.
 *	It may be used to construct an architecture-dependant pathname
 *	where library files may be held under a private library, for
 *	instance.
 */
#define ARCHNAME "unknown"		/**/

/* HAS_ASCTIME_R:
 *	This symbol, if defined, indicates that the asctime_r routine
 *	is available to asctime re-entrantly.
 */
/* ASCTIME_R_PROTO:
 *	This symbol encodes the prototype of asctime_r.
 *	It is zero if d_asctime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r
 *	is defined.
 */
/*#define HAS_ASCTIME_R	/ **/
#define ASCTIME_R_PROTO 0	/**/

/* HAS_CRYPT_R:
 *	This symbol, if defined, indicates that the crypt_r routine
 *	is available to crypt re-entrantly.
 */
/* CRYPT_R_PROTO:
 *	This symbol encodes the prototype of crypt_r.
 *	It is zero if d_crypt_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r
 *	is defined.
 */
/*#define HAS_CRYPT_R	/ **/
#define CRYPT_R_PROTO 0	/**/

/* HAS_CTERMID_R:
 *	This symbol, if defined, indicates that the ctermid_r routine
 *	is available to ctermid re-entrantly.
 */
/* CTERMID_R_PROTO:
 *	This symbol encodes the prototype of ctermid_r.
 *	It is zero if d_ctermid_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r
 *	is defined.
 */
/*#define HAS_CTERMID_R	/ **/
#define CTERMID_R_PROTO 0	/**/

/* HAS_CTIME_R:
 *	This symbol, if defined, indicates that the ctime_r routine
 *	is available to ctime re-entrantly.
 */
/* CTIME_R_PROTO:
 *	This symbol encodes the prototype of ctime_r.
 *	It is zero if d_ctime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r
 *	is defined.
 */
/*#define HAS_CTIME_R	/ **/
#define CTIME_R_PROTO 0	/**/

/* HAS_DRAND48_R:
 *	This symbol, if defined, indicates that the drand48_r routine
 *	is available to drand48 re-entrantly.
 */
/* DRAND48_R_PROTO:
 *	This symbol encodes the prototype of drand48_r.
 *	It is zero if d_drand48_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r
 *	is defined.
 */
/*#define HAS_DRAND48_R	/ **/
#define DRAND48_R_PROTO 0	/**/

/* HAS_ENDGRENT_R:
 *	This symbol, if defined, indicates that the endgrent_r routine
 *	is available to endgrent re-entrantly.
 */
/* ENDGRENT_R_PROTO:
 *	This symbol encodes the prototype of endgrent_r.
 *	It is zero if d_endgrent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r
 *	is defined.
 */
/*#define HAS_ENDGRENT_R	/ **/
#define ENDGRENT_R_PROTO 0	/**/

/* HAS_ENDHOSTENT_R:
 *	This symbol, if defined, indicates that the endhostent_r routine
 *	is available to endhostent re-entrantly.
 */
/* ENDHOSTENT_R_PROTO:
 *	This symbol encodes the prototype of endhostent_r.
 *	It is zero if d_endhostent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r
 *	is defined.
 */
/*#define HAS_ENDHOSTENT_R	/ **/
#define ENDHOSTENT_R_PROTO 0	/**/

/* HAS_ENDNETENT_R:
 *	This symbol, if defined, indicates that the endnetent_r routine
 *	is available to endnetent re-entrantly.
 */
/* ENDNETENT_R_PROTO:
 *	This symbol encodes the prototype of endnetent_r.
 *	It is zero if d_endnetent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r
 *	is defined.
 */
/*#define HAS_ENDNETENT_R	/ **/
#define ENDNETENT_R_PROTO 0	/**/

/* HAS_ENDPROTOENT_R:
 *	This symbol, if defined, indicates that the endprotoent_r routine
 *	is available to endprotoent re-entrantly.
 */
/* ENDPROTOENT_R_PROTO:
 *	This symbol encodes the prototype of endprotoent_r.
 *	It is zero if d_endprotoent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r
 *	is defined.
 */
/*#define HAS_ENDPROTOENT_R	/ **/
#define ENDPROTOENT_R_PROTO 0	/**/

/* HAS_ENDPWENT_R:
 *	This symbol, if defined, indicates that the endpwent_r routine
 *	is available to endpwent re-entrantly.
 */
/* ENDPWENT_R_PROTO:
 *	This symbol encodes the prototype of endpwent_r.
 *	It is zero if d_endpwent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r
 *	is defined.
 */
/*#define HAS_ENDPWENT_R	/ **/
#define ENDPWENT_R_PROTO 0	/**/

/* HAS_ENDSERVENT_R:
 *	This symbol, if defined, indicates that the endservent_r routine
 *	is available to endservent re-entrantly.
 */
/* ENDSERVENT_R_PROTO:
 *	This symbol encodes the prototype of endservent_r.
 *	It is zero if d_endservent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r
 *	is defined.
 */
/*#define HAS_ENDSERVENT_R	/ **/
#define ENDSERVENT_R_PROTO 0	/**/

/* GETENV_PRESERVES_OTHER_THREAD:
 *	This symbol, if defined, indicates that the getenv system call doesn't
 *	zap the static buffer of getenv() in a different thread.
 *
 *	The typical getenv() implementation will return a pointer to the proper
 *	position in **environ.  But some may instead copy them to a static
 *	buffer in getenv().  If there is a per-thread instance of that buffer,
 *	or the return points to **environ, then a many-reader/1-writer mutex
 *	will work; otherwise an exclusive locking mutex is required to prevent
 *	races.
 */
#define GETENV_PRESERVES_OTHER_THREAD	/**/

/* HAS_GETGRENT_R:
 *	This symbol, if defined, indicates that the getgrent_r routine
 *	is available to getgrent re-entrantly.
 */
/* GETGRENT_R_PROTO:
 *	This symbol encodes the prototype of getgrent_r.
 *	It is zero if d_getgrent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r
 *	is defined.
 */
/*#define HAS_GETGRENT_R	/ **/
#define GETGRENT_R_PROTO 0	/**/

/* HAS_GETGRGID_R:
 *	This symbol, if defined, indicates that the getgrgid_r routine
 *	is available to getgrgid re-entrantly.
 */
/* GETGRGID_R_PROTO:
 *	This symbol encodes the prototype of getgrgid_r.
 *	It is zero if d_getgrgid_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r
 *	is defined.
 */
/*#define HAS_GETGRGID_R	/ **/
#define GETGRGID_R_PROTO 0	/**/

/* HAS_GETGRNAM_R:
 *	This symbol, if defined, indicates that the getgrnam_r routine
 *	is available to getgrnam re-entrantly.
 */
/* GETGRNAM_R_PROTO:
 *	This symbol encodes the prototype of getgrnam_r.
 *	It is zero if d_getgrnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r
 *	is defined.
 */
/*#define HAS_GETGRNAM_R	/ **/
#define GETGRNAM_R_PROTO 0	/**/

/* HAS_GETHOSTBYADDR_R:
 *	This symbol, if defined, indicates that the gethostbyaddr_r routine
 *	is available to gethostbyaddr re-entrantly.
 */
/* GETHOSTBYADDR_R_PROTO:
 *	This symbol encodes the prototype of gethostbyaddr_r.
 *	It is zero if d_gethostbyaddr_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r
 *	is defined.
 */
/*#define HAS_GETHOSTBYADDR_R	/ **/
#define GETHOSTBYADDR_R_PROTO 0	/**/

/* HAS_GETHOSTBYNAME_R:
 *	This symbol, if defined, indicates that the gethostbyname_r routine
 *	is available to gethostbyname re-entrantly.
 */
/* GETHOSTBYNAME_R_PROTO:
 *	This symbol encodes the prototype of gethostbyname_r.
 *	It is zero if d_gethostbyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r
 *	is defined.
 */
/*#define HAS_GETHOSTBYNAME_R	/ **/
#define GETHOSTBYNAME_R_PROTO 0	/**/

/* HAS_GETHOSTENT_R:
 *	This symbol, if defined, indicates that the gethostent_r routine
 *	is available to gethostent re-entrantly.
 */
/* GETHOSTENT_R_PROTO:
 *	This symbol encodes the prototype of gethostent_r.
 *	It is zero if d_gethostent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r
 *	is defined.
 */
/*#define HAS_GETHOSTENT_R	/ **/
#define GETHOSTENT_R_PROTO 0	/**/

/* HAS_GETLOGIN_R:
 *	This symbol, if defined, indicates that the getlogin_r routine
 *	is available to getlogin re-entrantly.
 */
/* GETLOGIN_R_PROTO:
 *	This symbol encodes the prototype of getlogin_r.
 *	It is zero if d_getlogin_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r
 *	is defined.
 */
/*#define HAS_GETLOGIN_R	/ **/
#define GETLOGIN_R_PROTO 0	/**/

/* HAS_GETNETBYADDR_R:
 *	This symbol, if defined, indicates that the getnetbyaddr_r routine
 *	is available to getnetbyaddr re-entrantly.
 */
/* GETNETBYADDR_R_PROTO:
 *	This symbol encodes the prototype of getnetbyaddr_r.
 *	It is zero if d_getnetbyaddr_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r
 *	is defined.
 */
/*#define HAS_GETNETBYADDR_R	/ **/
#define GETNETBYADDR_R_PROTO 0	/**/

/* HAS_GETNETBYNAME_R:
 *	This symbol, if defined, indicates that the getnetbyname_r routine
 *	is available to getnetbyname re-entrantly.
 */
/* GETNETBYNAME_R_PROTO:
 *	This symbol encodes the prototype of getnetbyname_r.
 *	It is zero if d_getnetbyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r
 *	is defined.
 */
/*#define HAS_GETNETBYNAME_R	/ **/
#define GETNETBYNAME_R_PROTO 0	/**/

/* HAS_GETNETENT_R:
 *	This symbol, if defined, indicates that the getnetent_r routine
 *	is available to getnetent re-entrantly.
 */
/* GETNETENT_R_PROTO:
 *	This symbol encodes the prototype of getnetent_r.
 *	It is zero if d_getnetent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r
 *	is defined.
 */
/*#define HAS_GETNETENT_R	/ **/
#define GETNETENT_R_PROTO 0	/**/

/* HAS_GETPROTOBYNAME_R:
 *	This symbol, if defined, indicates that the getprotobyname_r routine
 *	is available to getprotobyname re-entrantly.
 */
/* GETPROTOBYNAME_R_PROTO:
 *	This symbol encodes the prototype of getprotobyname_r.
 *	It is zero if d_getprotobyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r
 *	is defined.
 */
/*#define HAS_GETPROTOBYNAME_R	/ **/
#define GETPROTOBYNAME_R_PROTO 0	/**/

/* HAS_GETPROTOBYNUMBER_R:
 *	This symbol, if defined, indicates that the getprotobynumber_r routine
 *	is available to getprotobynumber re-entrantly.
 */
/* GETPROTOBYNUMBER_R_PROTO:
 *	This symbol encodes the prototype of getprotobynumber_r.
 *	It is zero if d_getprotobynumber_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r
 *	is defined.
 */
/*#define HAS_GETPROTOBYNUMBER_R	/ **/
#define GETPROTOBYNUMBER_R_PROTO 0	/**/

/* HAS_GETPROTOENT_R:
 *	This symbol, if defined, indicates that the getprotoent_r routine
 *	is available to getprotoent re-entrantly.
 */
/* GETPROTOENT_R_PROTO:
 *	This symbol encodes the prototype of getprotoent_r.
 *	It is zero if d_getprotoent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r
 *	is defined.
 */
/*#define HAS_GETPROTOENT_R	/ **/
#define GETPROTOENT_R_PROTO 0	/**/

/* HAS_GETPWENT_R:
 *	This symbol, if defined, indicates that the getpwent_r routine
 *	is available to getpwent re-entrantly.
 */
/* GETPWENT_R_PROTO:
 *	This symbol encodes the prototype of getpwent_r.
 *	It is zero if d_getpwent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r
 *	is defined.
 */
/*#define HAS_GETPWENT_R	/ **/
#define GETPWENT_R_PROTO 0	/**/

/* HAS_GETPWNAM_R:
 *	This symbol, if defined, indicates that the getpwnam_r routine
 *	is available to getpwnam re-entrantly.
 */
/* GETPWNAM_R_PROTO:
 *	This symbol encodes the prototype of getpwnam_r.
 *	It is zero if d_getpwnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r
 *	is defined.
 */
/*#define HAS_GETPWNAM_R	/ **/
#define GETPWNAM_R_PROTO 0	/**/

/* HAS_GETPWUID_R:
 *	This symbol, if defined, indicates that the getpwuid_r routine
 *	is available to getpwuid re-entrantly.
 */
/* GETPWUID_R_PROTO:
 *	This symbol encodes the prototype of getpwuid_r.
 *	It is zero if d_getpwuid_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r
 *	is defined.
 */
/*#define HAS_GETPWUID_R	/ **/
#define GETPWUID_R_PROTO 0	/**/

/* HAS_GETSERVBYNAME_R:
 *	This symbol, if defined, indicates that the getservbyname_r routine
 *	is available to getservbyname re-entrantly.
 */
/* GETSERVBYNAME_R_PROTO:
 *	This symbol encodes the prototype of getservbyname_r.
 *	It is zero if d_getservbyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r
 *	is defined.
 */
/*#define HAS_GETSERVBYNAME_R	/ **/
#define GETSERVBYNAME_R_PROTO 0	/**/

/* HAS_GETSERVBYPORT_R:
 *	This symbol, if defined, indicates that the getservbyport_r routine
 *	is available to getservbyport re-entrantly.
 */
/* GETSERVBYPORT_R_PROTO:
 *	This symbol encodes the prototype of getservbyport_r.
 *	It is zero if d_getservbyport_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r
 *	is defined.
 */
/*#define HAS_GETSERVBYPORT_R	/ **/
#define GETSERVBYPORT_R_PROTO 0	/**/

/* HAS_GETSERVENT_R:
 *	This symbol, if defined, indicates that the getservent_r routine
 *	is available to getservent re-entrantly.
 */
/* GETSERVENT_R_PROTO:
 *	This symbol encodes the prototype of getservent_r.
 *	It is zero if d_getservent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r
 *	is defined.
 */
/*#define HAS_GETSERVENT_R	/ **/
#define GETSERVENT_R_PROTO 0	/**/

/* HAS_GETSPNAM_R:
 *	This symbol, if defined, indicates that the getspnam_r routine
 *	is available to getspnam re-entrantly.
 */
/* GETSPNAM_R_PROTO:
 *	This symbol encodes the prototype of getspnam_r.
 *	It is zero if d_getspnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r
 *	is defined.
 */
/*#define HAS_GETSPNAM_R	/ **/
#define GETSPNAM_R_PROTO 0	/**/

/* HAS_GMTIME_R:
 *	This symbol, if defined, indicates that the gmtime_r routine
 *	is available to gmtime re-entrantly.
 */
/* GMTIME_R_PROTO:
 *	This symbol encodes the prototype of gmtime_r.
 *	It is zero if d_gmtime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r
 *	is defined.
 */
/*#define HAS_GMTIME_R	/ **/
#define GMTIME_R_PROTO 0	/**/

/* HAS_LOCALECONV_L:
 *	This symbol, if defined, indicates that the localeconv_l routine is
 *	available to query certain information about a locale.
 */
/*#define HAS_LOCALECONV_L		/ **/

/* HAS_LOCALTIME_R:
 *	This symbol, if defined, indicates that the localtime_r routine
 *	is available to localtime re-entrantly.
 */
/* LOCALTIME_R_NEEDS_TZSET:
 *	Many libc's localtime_r implementations do not call tzset,
 *	making them differ from localtime(), and making timezone
 *	changes using $ENV{TZ} without explicitly calling tzset
 *	impossible. This symbol makes us call tzset before localtime_r
 */
/*#define LOCALTIME_R_NEEDS_TZSET / **/
#ifdef LOCALTIME_R_NEEDS_TZSET
#define L_R_TZSET tzset(),
#else
#define L_R_TZSET
#endif

/* L_R_TZSET:
 *	If localtime_r() needs tzset, it is defined in this define
 */
/* LOCALTIME_R_PROTO:
 *	This symbol encodes the prototype of localtime_r.
 *	It is zero if d_localtime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r
 *	is defined.
 */
/*#define HAS_LOCALTIME_R	/ **/
#define LOCALTIME_R_PROTO 0	/**/

/* HAS_MBRLEN:
 *	This symbol, if defined, indicates that the mbrlen routine is
 *	available to get the length of multi-byte character strings.
 */
/*#define HAS_MBRLEN	/ **/

/* HAS_MBRTOWC:
 *	This symbol, if defined, indicates that the mbrtowc routine is
 *	available to convert a multi-byte character into a wide character.
 */
/*#define HAS_MBRTOWC	/ **/

/* HAS_NL_LANGINFO_L:
 *	This symbol, when defined, indicates presence of the nl_langinfo_l()
 *	function
 */
/* HAS_THREAD_SAFE_NL_LANGINFO_L:
 *	This symbol, when defined, indicates presence of the nl_langinfo_l()
 *	function, and that it is thread-safe.
 */
/*#define HAS_NL_LANGINFO_L	/ **/
/*#define HAS_THREAD_SAFE_NL_LANGINFO_L	/ **/

/* OLD_PTHREAD_CREATE_JOINABLE:
 *	This symbol, if defined, indicates how to create pthread
 *	in joinable (aka undetached) state.  NOTE: not defined
 *	if pthread.h already has defined PTHREAD_CREATE_JOINABLE
 *	(the new version of the constant).
 *	If defined, known values are PTHREAD_CREATE_UNDETACHED
 *	and __UNDETACHED.
 */
/*#define OLD_PTHREAD_CREATE_JOINABLE  / **/

/* HAS_PTHREAD_ATFORK:
 *	This symbol, if defined, indicates that the pthread_atfork routine
 *	is available to setup fork handlers.
 */
/*#define HAS_PTHREAD_ATFORK		/ **/

/* HAS_PTHREAD_YIELD:
 *	This symbol, if defined, indicates that the pthread_yield
 *	routine is available to yield the execution of the current
 *	thread.	 sched_yield is preferable to pthread_yield.
 */
/* SCHED_YIELD:
 *	This symbol defines the way to yield the execution of
 *	the current thread.  Known ways are sched_yield,
 *	pthread_yield, and pthread_yield with NULL.
 */
/* HAS_SCHED_YIELD:
 *	This symbol, if defined, indicates that the sched_yield
 *	routine is available to yield the execution of the current
 *	thread.	 sched_yield is preferable to pthread_yield.
 */
/*#define HAS_PTHREAD_YIELD	/ **/
#define SCHED_YIELD	sched_yield()	/**/
/*#define HAS_SCHED_YIELD	/ **/

/* HAS_RANDOM_R:
 *	This symbol, if defined, indicates that the random_r routine
 *	is available to random re-entrantly.
 */
/* RANDOM_R_PROTO:
 *	This symbol encodes the prototype of random_r.
 *	It is zero if d_random_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r
 *	is defined.
 */
/*#define HAS_RANDOM_R	/ **/
#define RANDOM_R_PROTO 0	/**/

/* HAS_READDIR64_R:
 *	This symbol, if defined, indicates that the readdir64_r routine
 *	is available to readdir64 re-entrantly.
 */
/* READDIR64_R_PROTO:
 *	This symbol encodes the prototype of readdir64_r.
 *	It is zero if d_readdir64_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r
 *	is defined.
 */
/*#define HAS_READDIR64_R	/ **/
#define READDIR64_R_PROTO 0	/**/

/* HAS_READDIR_R:
 *	This symbol, if defined, indicates that the readdir_r routine
 *	is available to readdir re-entrantly.
 */
/* READDIR_R_PROTO:
 *	This symbol encodes the prototype of readdir_r.
 *	It is zero if d_readdir_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r
 *	is defined.
 */
/*#define HAS_READDIR_R	/ **/
#define READDIR_R_PROTO 0	/**/

/* HAS_SETGRENT_R:
 *	This symbol, if defined, indicates that the setgrent_r routine
 *	is available to setgrent re-entrantly.
 */
/* SETGRENT_R_PROTO:
 *	This symbol encodes the prototype of setgrent_r.
 *	It is zero if d_setgrent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r
 *	is defined.
 */
/*#define HAS_SETGRENT_R	/ **/
#define SETGRENT_R_PROTO 0	/**/

/* HAS_SETHOSTENT_R:
 *	This symbol, if defined, indicates that the sethostent_r routine
 *	is available to sethostent re-entrantly.
 */
/* SETHOSTENT_R_PROTO:
 *	This symbol encodes the prototype of sethostent_r.
 *	It is zero if d_sethostent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r
 *	is defined.
 */
/*#define HAS_SETHOSTENT_R	/ **/
#define SETHOSTENT_R_PROTO 0	/**/

/* HAS_SETLOCALE_R:
 *	This symbol, if defined, indicates that the setlocale_r routine
 *	is available to setlocale re-entrantly.
 */
/* SETLOCALE_R_PROTO:
 *	This symbol encodes the prototype of setlocale_r.
 *	It is zero if d_setlocale_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r
 *	is defined.
 */
/*#define HAS_SETLOCALE_R	/ **/
#define SETLOCALE_R_PROTO 0	/**/

/* HAS_SETNETENT_R:
 *	This symbol, if defined, indicates that the setnetent_r routine
 *	is available to setnetent re-entrantly.
 */
/* SETNETENT_R_PROTO:
 *	This symbol encodes the prototype of setnetent_r.
 *	It is zero if d_setnetent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r
 *	is defined.
 */
/*#define HAS_SETNETENT_R	/ **/
#define SETNETENT_R_PROTO 0	/**/

/* HAS_SETPROTOENT_R:
 *	This symbol, if defined, indicates that the setprotoent_r routine
 *	is available to setprotoent re-entrantly.
 */
/* SETPROTOENT_R_PROTO:
 *	This symbol encodes the prototype of setprotoent_r.
 *	It is zero if d_setprotoent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r
 *	is defined.
 */
/*#define HAS_SETPROTOENT_R	/ **/
#define SETPROTOENT_R_PROTO 0	/**/

/* HAS_SETPWENT_R:
 *	This symbol, if defined, indicates that the setpwent_r routine
 *	is available to setpwent re-entrantly.
 */
/* SETPWENT_R_PROTO:
 *	This symbol encodes the prototype of setpwent_r.
 *	It is zero if d_setpwent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r
 *	is defined.
 */
/*#define HAS_SETPWENT_R	/ **/
#define SETPWENT_R_PROTO 0	/**/

/* HAS_SETSERVENT_R:
 *	This symbol, if defined, indicates that the setservent_r routine
 *	is available to setservent re-entrantly.
 */
/* SETSERVENT_R_PROTO:
 *	This symbol encodes the prototype of setservent_r.
 *	It is zero if d_setservent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r
 *	is defined.
 */
/*#define HAS_SETSERVENT_R	/ **/
#define SETSERVENT_R_PROTO 0	/**/

/* HAS_SRAND48_R:
 *	This symbol, if defined, indicates that the srand48_r routine
 *	is available to srand48 re-entrantly.
 */
/* SRAND48_R_PROTO:
 *	This symbol encodes the prototype of srand48_r.
 *	It is zero if d_srand48_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r
 *	is defined.
 */
/*#define HAS_SRAND48_R	/ **/
#define SRAND48_R_PROTO 0	/**/

/* HAS_SRANDOM_R:
 *	This symbol, if defined, indicates that the srandom_r routine
 *	is available to srandom re-entrantly.
 */
/* SRANDOM_R_PROTO:
 *	This symbol encodes the prototype of srandom_r.
 *	It is zero if d_srandom_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
 *	is defined.
 */
/*#define HAS_SRANDOM_R	/ **/
#define SRANDOM_R_PROTO 0	/**/

/* HAS_STRERROR_R:
 *	This symbol, if defined, indicates that the strerror_r routine
 *	is available to strerror re-entrantly.
 */
/* STRERROR_R_PROTO:
 *	This symbol encodes the prototype of strerror_r.
 *	It is zero if d_strerror_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r
 *	is defined.
 */
/*#define HAS_STRERROR_R	/ **/
#define STRERROR_R_PROTO 0	/**/

/* HAS_STRTOD_L:
 *	This symbol, if defined, indicates that the strtod_l routine is
 *	available to convert strings to long doubles.
 */
/*#define HAS_STRTOD_L		/ **/

/* HAS_STRTOLD_L:
 *	This symbol, if defined, indicates that the strtold_l routine is
 *	available to convert strings to long doubles.
 */
/*#define HAS_STRTOLD_L		/ **/

/* PERL_THREAD_LOCAL:
 *	This symbol, if defined, gives a linkage specification for thread-local
 *	storage. For example, for a C11 compiler this will be _Thread_local.
 *	Beware, some compilers are sensitive to the C language standard they are
 *	told to parse. For example, suncc defaults to C11, so our probe will
 *	report that _Thread_local can be used. However, if the -std=c99 is later
 *	added to the compiler flags, then _Thread_local will become a syntax
 *	error. Hence it is important for these flags to be consistent between
 *	probing and use.
 */
/*#define PERL_THREAD_LOCAL 	/ **/

/* HAS_TMPNAM_R:
 *	This symbol, if defined, indicates that the tmpnam_r routine
 *	is available to tmpnam re-entrantly.
 */
/* TMPNAM_R_PROTO:
 *	This symbol encodes the prototype of tmpnam_r.
 *	It is zero if d_tmpnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r
 *	is defined.
 */
/*#define HAS_TMPNAM_R	/ **/
#define TMPNAM_R_PROTO 0	/**/

/* HAS_TTYNAME_R:
 *	This symbol, if defined, indicates that the ttyname_r routine
 *	is available to ttyname re-entrantly.
 */
/* TTYNAME_R_PROTO:
 *	This symbol encodes the prototype of ttyname_r.
 *	It is zero if d_ttyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r
 *	is defined.
 */
/*#define HAS_TTYNAME_R	/ **/
#define TTYNAME_R_PROTO 0	/**/

/* HAS_WCRTOMB:
 *	This symbol, if defined, indicates that the wcrtomb routine is
 *	available to convert a wide character into a multi-byte character.
 */
/*#define HAS_WCRTOMB	/ **/

/* I_MACH_CTHREADS:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <mach/cthreads.h>.
 */
/*#define   I_MACH_CTHREADS	/ **/

/* I_PTHREAD:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <pthread.h>.
 */
/*#define   I_PTHREAD	/ **/

/* USE_ITHREADS:
 *	This symbol, if defined, indicates that Perl should be built to
 *	use the interpreter-based threading implementation.
 */
/* USE_THREADS:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use threads.  At present, it is a synonym for
 *	and USE_ITHREADS, but eventually the source ought to be
 *	changed to use this to mean _any_ threading implementation.
 */
/* OLD_PTHREADS_API:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use the old draft POSIX threads API.
 */
/* USE_REENTRANT_API:
 *	This symbol, if defined, indicates that Perl should
 *	try to use the various _r versions of library functions.
 *	This is extremely experimental.
 */
/*#define	USE_ITHREADS		/ **/
/*#define		USE_THREADS		/ **/
/*#define	OLD_PTHREADS_API		/ **/
/*#define	USE_REENTRANT_API	/ **/

/* HAS_TIME:
 *	This symbol, if defined, indicates that the time() routine exists.
 */
/* Time_t:
 *	This symbol holds the type returned by time(). It can be long,
 *	or time_t on BSD sites (in which case <sys/types.h> should be
 *	included).
 */
#define HAS_TIME		/**/
#define Time_t time_t		/* Time type */

/* HAS_TIMES:
 *	This symbol, if defined, indicates that the times() routine exists.
 *	Note that this became obsolete on some systems (SUNOS), which now
 *	use getrusage(). It may be necessary to include <sys/times.h>.
 */
/*#define HAS_TIMES		/ **/

/* Fpos_t:
 *	This symbol holds the type used to declare file positions in libc.
 *	It can be fpos_t, long, uint, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Fpos_t int		/* File position type */

/* Gid_t_f:
 *	This symbol defines the format string used for printing a Gid_t.
 */
#define	Gid_t_f		"lu"		/**/

/* Gid_t_sign:
 *	This symbol holds the signedness of a Gid_t.
 *	1 for unsigned, -1 for signed.
 */
#define Gid_t_sign	1		/* GID sign */

/* Gid_t_size:
 *	This symbol holds the size of a Gid_t in bytes.
 */
#define Gid_t_size 4		/* GID size */

/* Gid_t:
 *	This symbol holds the return type of getgid() and the type of
 *	argument to setrgid() and related functions.  Typically,
 *	it is the type of group ids in the kernel. It can be int, ushort,
 *	gid_t, etc... It may be necessary to include <sys/types.h> to get
 *	any typedef'ed information.
 */
#define Gid_t int		/* Type for getgid(), etc... */

/* Off_t:
 *	This symbol holds the type used to declare offsets in the kernel.
 *	It can be int, long, off_t, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
/* LSEEKSIZE:
 *	This symbol holds the number of bytes used by the Off_t.
 */
/* Off_t_size:
 *	This symbol holds the number of bytes used by the Off_t.
 */
#define Off_t int		/* <offset> type */
#define LSEEKSIZE 4		/* <offset> size */
#define Off_t_size 4	/* <offset> size */

/* Mode_t:
 *	This symbol holds the type used to declare file modes
 *	for systems calls.  It is usually mode_t, but may be
 *	int or unsigned short.  It may be necessary to include <sys/types.h>
 *	to get any typedef'ed information.
 */
#define Mode_t int	 /* file mode parameter for system calls */

/* Pid_t:
 *	This symbol holds the type used to declare process ids in the kernel.
 *	It can be int, uint, pid_t, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Pid_t int		/* PID type */

/* Size_t_size:
 *	This symbol holds the size of a Size_t in bytes.
 */
#define Size_t_size 4		/**/

/* Size_t:
 *	This symbol holds the type used to declare length parameters
 *	for string functions.  It is usually size_t, but may be
 *	unsigned long, int, etc.  It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Size_t size_t	 /* length parameter for string functions */

/* Uid_t_f:
 *	This symbol defines the format string used for printing a Uid_t.
 */
#define	Uid_t_f		"lu"		/**/

/* Uid_t_sign:
 *	This symbol holds the signedness of a Uid_t.
 *	1 for unsigned, -1 for signed.
 */
#define Uid_t_sign	1		/* UID sign */

/* Uid_t_size:
 *	This symbol holds the size of a Uid_t in bytes.
 */
#define Uid_t_size 4		/* UID size */

/* Uid_t:
 *	This symbol holds the type used to declare user ids in the kernel.
 *	It can be int, ushort, uid_t, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Uid_t int		/* UID type */

#endif

/* Generated from:
 * 87e5998978daf803d19866c43bca24d7c01dc74119650db16f8d18d83f355da9 config_h.SH
 * 1a5fe19cbcfd68ba70230580fd344189b5c78c11b2285efd5976366e51b3257e uconfig.sh
 * ex: set ro: */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                V     , C ;o      %0          Ɛ&HX     7F D ;o      ʹ0          Ɛ&4HZ     q E ;o      0    (      Ɛ&hH\     s F ;o      0    2      Ɛ&H^     I G ;o      0          Ɛ&H`     q H ;o      0    e      Ɛ&Hb      I ;o      G0    ]      Ɛ& Hd      J ;o      0    +      Ɛ&pHf     q K ;o      0          Ɛ&Hh     q L ;o      0          Ɛ&Hj     q M ;o      Q0    5      Ɛ& Hl     q N ;o      0    y      Ɛ&PHn      O ;o      0    K      Ɛ&Hp     q P ;o      M0    o      Ɛ&Hr     q Q ;o      0    (      Ɛ&Ht     q R ;o      0    #      Ɛ&8Hv     q S ;o      
0    ;      Ɛ&Hx     q T ;o      F0    z      Ɛ&Hz     q U ;o      0          Ɛ&H|     X  V ;o      v0          Ɛ&H~     q W ;o      g0          Ɛ&HH     q X ;o      p0    ,      Ɛ&H     q Y ;o      0          Ɛ&
H     q Z ;o      +0          Ɛ&rH     q [ ;o      0    .      Ɛ&H     q \ ;o      0          Ɛ&"H     q ] ;o      	0          Ɛ&VH     q ^ ;o      0           Ɛ&H     q _ ;o      0          Ɛ&H     q ` ;o      0           Ɛ&ZH     q a ;o      0          Ɛ&H     H b ;o      l0          Ɛ&`H     q c ;o      0          Ɛ&H     q d ;o      0          Ɛ&H     q e ;o      >0          Ɛ&H     q f ;o      0          Ɛ&:H     q g ;o       1          Ɛ&xH     q h ;o      1    K      Ɛ&H     q i ;o      1    /      Ɛ&H     q j ;o      M1    l      Ɛ&DH     q k ;o      1    S      Ɛ&|H     q l ;o      1          Ɛ&H     q m ;o      %	1    D      Ɛ&H     q n ;o      j
1          Ɛ&4H     q o ;o      o1          Ɛ&lH     q p ;o      ]1          Ɛ&H     q q ;o      1          Ɛ&xH     q r ;o      1    9      Ɛ&H     q s ;o      1    1      Ɛ&"H     q t ;o      1    /      Ɛ&VH     q u ;o      M1          Ɛ&H     q v ;o      1    _      Ɛ&"H     q w ;o      1    S      Ɛ&RH     q x ;o      1           Ɛ&H     q y ;o      1    e      Ɛ&H     r z ;o      91          Ɛ&BH     r { ;o      1    t      Ɛ&zH     r | ;o      o!1    &      Ɛ&H     r } ;o      "1          Ɛ&H     r ~ ;o      #1    K      Ɛ&8H     r  ;o      %1    7      Ɛ&pH     	r  ;o      :&1          Ɛ&H     
r  ;o      '1           Ɛ&H     r  ;o      (1    -      Ɛ&RH     
r  ;o      *1    9      Ɛ&H     r  ;o      ,1    n      Ɛ&H     r  ;o      -1    c      Ɛ&*H     r  ;o      .1    *      Ɛ&^H     r  ;o      01    %      Ɛ&H     r  ;o      =11    |      Ɛ&"H     r  ;o      41          Ɛ&H     r  ;o      61          Ɛ&^H     r  ;o      Q81    K      Ɛ&H     "r  ;o      91          Ɛ&H     #r  ;o      v;1    ;      Ɛ&,H     $r  ;o      <1          Ɛ&H     &r  ;o      ?1    l      Ɛ&H     -r  ;o      B1    z      Ɛ&fH     .r  ;o      C1    U      Ɛ&H     0r  ;o      D1          Ɛ&H     1r  ;o      F1          Ɛ&
H     2r  ;o      >I1          Ɛ&BH     3r  ;o      L1    ^      Ɛ&|H     4r  ;o      cN1    
      Ɛ&H     5r  ;o      nP1          Ɛ&H      6r  ;o      R1          Ɛ&zH     7r  ;o      |T1          Ɛ&H     ;r  ;o      V1          Ɛ&H     <r  ;o      W1    }      Ɛ&BH     >r  ;o      X1          Ɛ&H
     Gr  ;o      GZ1    o      Ɛ&I     Ir  ;o      [1          Ɛ&ܞI     yr  ;o      ^1    -      Ɛ&I     zr  ;o      a1    W      Ɛ&I     {r  ;o      [b1          Ɛ&*I     r  ;o      Ud1          Ɛ&I     r  ;o      2f1          Ɛ&ؠI     r  ;o      h1          Ɛ&I     r  ;o      aj1          Ɛ&I     r  ;o      
l1          Ɛ&I     r  ;o      m1    s      Ɛ&I      r  ;o      \o1    o      Ɛ&I"     r  ;o      p1    o      Ɛ&$I$     r  ;o      <r1    {      Ɛ&I&     r  ;o      s1    t      Ɛ&2hJ(  r  ;o      -u1          Ɛ&hJ*    ;o      v1           Ɛ&hJ,  r  ;o      w1           Ɛ&NiJ.    ;o      x1          Ɛ&iJ0       ;o      m}1          Ɛ&$jJ2       ;o      41    d      Ɛ&`jJ4       ;o      1    ,      Ɛ&jJ6       ;o      Ɓ1          Ɛ&VkJ8       ;o      T1           Ɛ&kJ:       ;o      1    8      Ɛ&kJ<       ;o      ;1          Ɛ&\lJ>       ;o      ҆1          Ɛ&lJ@       ;o      ^1          Ɛ&lJB       ;o      ߉1    l      Ɛ&lmJD       ;o      L1    #      Ɛ&mJF       ;o      p1          Ɛ&mJH       ;o      .1           Ɛ&nJJ       ;o      1    Y      Ɛ&`nJL       ;o      W1          Ɛ&nJN       ;o      1           Ɛ&,oJP       ;o      1           Ɛ&voJR       ;o      1          Ɛ&oJT       ;o      _1          Ɛ&.pJV      Î ;o      1          Ɛ&dpJX      Ď ;o      1    \      Ɛ&pJZ      Ŏ ;o      t1          Ɛ&pJ\      Ǝ ;o      <1           Ɛ&qJ^      ǎ ;o      1    r      Ɛ&RqJ`      Ȏ ;o      1          Ɛ&qJb      Ɏ ;o      1    k      Ɛ&rJd      ʎ ;o      1          Ɛ&brJf     À ˎ ;o      :1    4      Ɛ&rJh     r ̎ ;o      o1          Ɛ&sJj     ŀ ͎ ;o      1    y      Ɛ&.tJl     р Ύ ;o      m1    l      Ɛ&tJn     Ӏ ώ ;o      گ1    7      Ɛ&tJp     ׀ Ў ;o      1          Ɛ&puJr     ؀ ю ;o      1          Ɛ&uJt     I- Ҏ ;o      1    '      Ɛ&^vJv     ڀ ӎ ;o      1    &      Ɛ&vJx      Ԏ ;o      ϶1          Ɛ&
wJz      Վ ;o      1    *      Ɛ&hwJ|      ֎ ;o      ع1          Ɛ&wJ~      ׎ ;o      1    3      Ɛ&wJ     9r ؎ ;o      Լ1           Ɛ&xJ      َ ;o      1          Ɛ&xJ      ڎ ;o      1          Ɛ&yJ      ێ ;o      Y1    R      Ɛ&PyJ      ܎ ;o      1          Ɛ&x|J      ݎ ;o      s1          Ɛ&}J      ގ ;o      n1    ^      Ɛ&^}J      ߎ ;o      1    [      Ɛ&}J       ;o      )1    _      Ɛ&&~J     )F  ;o      1          Ɛ&v~J     #  ;o      K1           Ɛ& J     %  ;o      A1          Ɛ&ZJ       ;o      R1    :      Ɛ&8J     ?r  ;o      1    	      Ɛ&ȀJ     .  ;o      1    l      Ɛ& J     2  ;o      1           Ɛ&VJ       ;o      1          Ɛ&J     5  ;o      1    K      Ɛ&(J     7  ;o      (1           Ɛ&dJ       ;o      I1          Ɛ&؂J     9  ;o      h1           Ɛ&J     ;  ;o      f1    J      Ɛ&DJ     <  ;o      1          Ɛ&J     =  ;o      1          Ɛ&J     >  ;o      1    b      Ɛ&&J     ?  ;o      N1    Y      Ɛ&ԄJ     A  ;o      1           Ɛ&HJ     H  ;o      1    :      Ɛ&lJ     ƀ  ;o      1          Ɛ&J     K  ;o      1    -      Ɛ&lJ       ;o      1    ,      Ɛ&J     _  ;o      1    +      Ɛ&TJ       ;o      1          Ɛ&J     c  ;o      1          Ɛ&J     d  ;o      1    :      Ɛ&$J     e  ;o      1    5      Ɛ&TJ     ۀ  ;o      1          Ɛ&J     g  ;o      '1           Ɛ&(J     *  ;o      1          Ɛ&rJ     j  ;o      1          Ɛ&J     @r   ;o      I1          Ɛ&<J     l  ;o      h1    -      Ɛ&J     n  ;o       2    >      Ɛ&J     s  ;o      2          Ɛ&6J     t  ;o      o2    O      Ɛ&J     Jr  ;o      2          Ɛ&$J     }  ;o      2    ?      Ɛ&VJ       ;o      
2    B      Ɛ&J       ;o      +2           Ɛ&J      	 ;o      2    3      Ɛ&LJ     f 
 ;o      H2    +      Ɛ&J       ;o      t2    x      Ɛ&1K       ;o      2          Ɛ&22K     ( 
 ;o      2    
      Ɛ&|2K     )  ;o      2          Ɛ&2K     *  ;o      F2                                   Ɛ&2K     -Q  ;o      2          Ɛ&@3K     +  ;o      (2          Ɛ&d3K     ~  ;o      2    d      Ɛ&5K     -  ;o      f2    :      Ɛ&5K     Kr  ;o      2          Ɛ&5K     L  ;o      @!2           Ɛ&6K     o  ;o      "2    4      Ɛ&D6K     >  ;o      M#2    A      Ɛ&x6K     ?  ;o      $2           Ɛ&6K     Lr  ;o      ;%2    
      Ɛ&7K       ;o      F'2    g      Ɛ&l7K     C  ;o      (2          Ɛ&7K	     D  ;o      N*2    *      Ɛ&8K     F  ;o      y+2    !      Ɛ&h8K
     G  ;o      -2           Ɛ&8K     J  ;o      r.2    U      Ɛ&
9K     K   ;o      /2          Ɛ&.9K     L ! ;o      M12    =      Ɛ&R9K     Mr " ;o      22    5      Ɛ&v9K     ܀ # ;o      42    ;      Ɛ&9K     N $ ;o      52          Ɛ& :K     P % ;o      72          Ɛ&:K     Q & ;o      82           Ɛ&:K     Nr ' ;o      92    W      Ɛ&(;K!     W ( ;o      :2          Ɛ&;K#     X ) ;o      ;2           Ɛ&\<K%      * ;o      <2          Ɛ&<K'     Or + ;o      z>2    o      Ɛ&<K)     b , ;o      ?2          Ɛ&=K+     c - ;o      A2           Ɛ&=K-     r . ;o      A2    O      Ɛ&=K/     h / ;o      C2           Ɛ&T>K1     i 0 ;o      C2           Ɛ&>K3     k 1 ;o      D2    B      Ɛ&>K5     m 2 ;o      F2          Ɛ&D?K7     o 3 ;o      H2    4      Ɛ&~?K9     r 4 ;o      =I2    B      Ɛ&?K;     s 5 ;o      J2          Ɛ& @K=     W 6 ;o      K2          Ɛ&\@K?     v 7 ;o      CM2    6      Ɛ&@KA     q 8 ;o      zN2          Ɛ&@KC     x 9 ;o      O2    C      Ɛ&4AKE     w : ;o      @Q2    1      Ɛ&AKG     { ; ;o      rR2          Ɛ&AKI     ~ < ;o      T2          Ɛ&bBKK      = ;o      V2    %      Ɛ&BKM      > ;o      (X2          Ɛ&$CKO      ? ;o      Y2    $      Ɛ&CKQ     r @ ;o      [2          Ɛ&CKS      A ;o      \2          Ɛ&@DKU      B ;o      ^2           Ɛ&~DKW      C ;o      ^2    *      Ɛ&DKY      D ;o      _2    J      Ɛ&0EK[      E ;o      Ha2    8      Ɛ&EK]      F ;o      b2    P      Ɛ&FK_      G ;o      c2    ~      Ɛ&tFKa      H ;o      Qe2    $      Ɛ&FKc      I ;o      vg2    3      Ɛ&>GKe     I J ;o      i2    C      Ɛ&GKg      K ;o      j2    u      Ɛ&:HKi     Pr L ;o      dl2          Ɛ&nHKk      M ;o      sn2    /      Ɛ&HKm      N ;o      p2    N      Ɛ&HIKo      O ;o      q2          Ɛ&JKq     _- P ;o      s2          Ɛ&JKs      Q ;o      9v2    '      Ɛ&JKu      R ;o      aw2          Ɛ&KKw      S ;o      x2          Ɛ&LKKy      T ;o      z2          Ɛ&KK{      U ;o      2|2          Ɛ&KK}      V ;o      P}2          Ɛ&.LK      W ;o      ~2    k      Ɛ&nLK      X ;o      <2    Z      Ɛ&LK     ǀ Y ;o      2    k      Ɛ&LK     r Z ;o      2          Ɛ&*MK      [ ;o      څ2          Ɛ&bMK      \ ;o      2          Ɛ&MK      ] ;o      	2    T      Ɛ&:NK      ^ ;o      ^2    o      Ɛ&NK     Å _ ;o      ΋2          Ɛ&NK     Y ` ;o      2          Ɛ&OK     ǅ a ;o      e2          Ɛ&OK     ˅ b ;o      C2           Ɛ&PK     ̅ c ;o      ;2          Ɛ&NPK     ͅ d ;o      K2          Ɛ&PK      e ;o      ]2    f      Ɛ&PK     υ f ;o      Ė2    y      Ɛ&.QK     Ѕ g ;o      >2          Ɛ&RQK     r h ;o      2          Ɛ&vQK     r i ;o      #2          Ɛ&QK     х j ;o      2    >      Ɛ&QK     ҅ k ;o      R2    g      Ɛ&rRK     Ӆ l ;o      2          Ɛ&RK     ׅ m ;o      u2    .      Ɛ&&SK     ܅ n ;o      2    D      Ɛ&dK     ݅ o ;o      2          Ɛ&K     ޅ p ;o      2          Ɛ&ڣK     ߅ q ;o      U2          Ɛ&0K      r ;o      2          Ɛ&K     & s ;o      2    `      Ɛ&FK      t ;o      2           Ɛ&K      u ;o      2    C      Ɛ&K      v ;o      2    (      Ɛ&K      w ;o      2    R      Ɛ&RK      x ;o      i2          Ɛ&K      y ;o      /2          Ɛ&K      z ;o      ޷2    %      Ɛ&NK      { ;o      2    a      Ɛ&K     g | ;o      f2          Ɛ&K      } ;o       2          Ɛ&K     | ~ ;o      ƿ2    :      Ɛ&K       ;o      2          Ɛ&ȩK     .  ;o      2          Ɛ&XK       ;o      .2          Ɛ&ªK       ;o      2          Ɛ&K     /  ;o      2          Ɛ&DK       ;o      F2    2      Ɛ&hK       ;o      y2    -      Ɛ&K     	  ;o      2           Ɛ&ҫK     
  ;o      2           Ɛ&K       ;o      m2          Ɛ&>K       ;o      a2          Ɛ&bK     Qr  ;o      2           Ɛ&K     
  ;o      2          Ɛ&ȬK       ;o      2          Ɛ&6K       ;o      2    (      Ɛ&(K        ;o      <2          Ɛ&K       ;o      2          Ɛ&K       ;o      2    N      Ɛ&0L       ;o      2          Ɛ&`L       ;o      2    3      Ɛ&L       ;o      2    g      Ɛ&L       ;o      `2          Ɛ&L       ;o      h2          Ɛ&L       ;o      2    V      Ɛ&8L       ;o      P2          Ɛ&xL     4  ;o      2          Ɛ&L       ;o      2          Ɛ&L       ;o      2          Ɛ&L       ;o      &2          Ɛ&L	       ;o      2    A      Ɛ&DL        ;o      U2    7      Ɛ&tL
     !  ;o      2          Ɛ&L     "  ;o      2          Ɛ&L     #  ;o      "2          Ɛ&L     $  ;o      42          Ɛ&L     %  ;o      2    d      Ɛ&^L     6  ;o      t2          Ɛ&L     &  ;o      <3          Ɛ&L     '  ;o      L3    `      Ɛ&L     (  ;o      3    \      Ɛ&L     )  ;o      
3          Ɛ&6L!     *  ;o      3    O      Ɛ&fL#     +  ;o      *
3          Ɛ&L%     ,  ;o      13          Ɛ&L'     -  ;o      
3          Ɛ&L)     .  ;o      3          Ɛ&L+     /  ;o      3          Ɛ&JL-     0  ;o      _3    s      Ɛ&L/     7  ;o      3          Ɛ&L1     ;  ;o      3    J      Ɛ&L3     <  ;o      3          Ɛ& L5     =  ;o      3    t      Ɛ&FL7     A  ;o      t3    p      Ɛ&|L9     C  ;o      3    	      Ɛ&L;     D  ;o      3    A      Ɛ&L=     E  ;o      1!3    ^      Ɛ&(	L?       ;o      #3    %      Ɛ&l	LA     G  ;o      $3          Ɛ&	LC       ;o      Z&3          Ɛ&	LE     I  ;o      '3    
      Ɛ& 
LG     J  ;o      (3    D      Ɛ&>LI     K  ;o      >*3          Ɛ&LK     T  ;o      .3          Ɛ&>LM     X  ;o      v23    ,      Ɛ&vLO     J  ;o      43    @      Ɛ&LQ     Z  ;o      63    6      Ɛ&LS     [  ;o      83    j      Ɛ&B
LU     \  ;o      93    3      Ɛ&f
LW     'r Ï ;o      :3    +      Ɛ&LY     ^ ď ;o      <3    R      Ɛ&L[     x ŏ ;o      9>3           Ɛ&PL]     y Ə ;o      ?3          Ɛ&L_     z Ǐ ;o      7A3          Ɛ&La     { ȏ ;o      C3           Ɛ&HLc     } ɏ ;o      C3    /      Ɛ&Le      ʏ ;o      F3          Ɛ&Lg      ˏ ;o      G3          Ɛ&pLi      ̏ ;o      qI3    e      Ɛ&Lk      ͏ ;o      J3          Ɛ&Lm      Ώ ;o      nL3          Ɛ&>Lo     Rr Ϗ ;o      N3    b      Ɛ&bLq      Џ ;o      ZP3    A      Ɛ&Ls     q я ;o      Q3          Ɛ&Lu      ҏ ;o      |S3          Ɛ&Lw     Ȁ ӏ ;o      $U3    4      Ɛ&Ly      ԏ ;o      YX3           Ɛ&8L{      Տ ;o      EY3          Ɛ&xL}      ֏ ;o      ![3    t      Ɛ&L      ׏ ;o      \3    F      Ɛ&L      ؏ ;o      ^3          Ɛ&L      ُ ;o      `3    +      Ɛ&JL      ڏ ;o       b3           Ɛ&L      ۏ ;o      b3    ]      Ɛ&L      ܏ ;o      Je3    X      Ɛ&@L      ݏ ;o      f3          Ɛ&tL      ޏ ;o      Ch3           Ɛ&L     K ߏ ;o      h3    2      Ɛ&L       ;o      /j3          Ɛ&L     0  ;o      /l3    5      Ɛ&gL       ;o      em3          Ɛ&gL       ;o      Wo3    R      Ɛ&gL     1  ;o      q3           Ɛ&gL     2  ;o      r3    y      Ɛ&>hL       ;o      t3          Ɛ&hL       ;o      v3    M      Ɛ&hL  .Q  ;o      ^w3    S      Ɛ&"iL     3  ;o      y3    w      Ɛ&`iL       ;o      *{3    y      Ɛ&iL       ;o      |3    D      Ɛ&iL       ;o      }3          Ɛ&(jL       ;o      ~3          Ɛ&djL     B  ;o      3    H      Ɛ&jL       ;o      3          Ɛ&jL       ;o      3          Ɛ&\kL       ;o      R3          Ɛ&kL       ;o      3    3      Ɛ&kL       ;o      )3    H      Ɛ&@lL       ;o      r3    |      Ɛ&tlL       ;o      3    Q      Ɛ&lL       ;o      A3          Ɛ&mL     )  ;o      
3          Ɛ&mL     '  ;o      ߐ3          Ɛ&mL     Sr  ;o      3          Ɛ&nL       ;o      "3          Ɛ&PnL       ;o      @3          Ɛ&tnL     8  ;o      3    y      Ɛ&nL       ;o      a3    p      Ɛ&nL       ;o      қ3          Ɛ&XoL       ;o      3          Ɛ&oL        ;o      3    P      Ɛ&pL       ;o      3          Ɛ&pL     4  ;o      â3    2      Ɛ&pL       ;o      3           Ɛ&qL       ;o      3          Ɛ&\qL     Æ  ;o      |3           Ɛ&qL     ņ  ;o      ?3          Ɛ&qL     ǆ  ;o      Ȩ3          Ɛ&VsL       ;o      I3          Ɛ&sL     ӆ 	 ;o      3          Ɛ&$tL      
 ;o      ǭ3    ]      Ɛ&ftL       ;o      %3          Ɛ&tL     ׆  ;o      ;3    Q      Ɛ&tL     ؆ 
 ;o      3          Ɛ&tL     Ԇ  ;o      33          Ɛ&>uL     ن  ;o      53    U      Ɛ&uL     J-  ;o      3    0      Ɛ&uL     ܆  ;o      3    }      Ɛ&uL     چ  ;o      :3    U      Ɛ&*vL     ݆  ;o      3          Ɛ&NvL     ކ  ;o      3    P      Ɛ&vL     Ն  ;o      3    !      Ɛ&vL       ;o      3          Ɛ&wL     Ɔ  ;o      /3           Ɛ&(wL     Tr  ;o      3    5      Ɛ&wL       ;o      T3          Ɛ&wL       ;o      q3           Ɛ&0xL       ;o      f3    n      Ɛ&xL	       ;o      3    V      Ɛ&yL       ;o      ,3    K      Ɛ&PyL
       ;o      x3    .      Ɛ&yL       ;o      3          Ɛ&yL        ;o      :3          Ɛ&NzL     M ! ;o      3           Ɛ&rzL     P " ;o      3    r      Ɛ&zL     L # ;o      B3          Ɛ&{L     5  $ ;o      '3    G      Ɛ&{L     j % ;o      o3    5      Ɛ&{L     k & ;o      3    =      Ɛ&{L     N ' ;o      3          Ɛ&|L!      ( ;o      3           Ɛ&r|L#     O ) ;o      3    )      Ɛ&L%     y * ;o      3    5      Ɛ&L'      + ;o      <3          Ɛ&NL)     { , ;o      3    \      Ɛ&rL+     ۆ - ;o      #3          Ɛ&L-     | . ;o      3    j      Ɛ&L/      / ;o      Z3          Ɛ&$L1     } 0 ;o      3          Ɛ&jL3     ~ 1 ;o      3           Ɛ&L5      2 ;o      C3          Ɛ&L7      3 ;o      V3    '      Ɛ&VL9      4 ;o      ~3    P      Ɛ&zL;      5 ;o      3    O      Ɛ& M=     Ur 6 ;o      3          Ɛ&4!M?      7 ;o      83    	      Ɛ&j!MA      8 ;o      B3    \      Ɛ&"MC      9 ;o      3          Ɛ&"ME      : ;o      3          Ɛ&"MG     
 ; ;o      3           Ɛ&L#MI      < ;o      3          Ɛ&#MK      = ;o      i3          Ɛ&#MM      > ;o      `3          Ɛ&%MO      ? ;o      p4    d      Ɛ&n%MQ      @ ;o      4    2      Ɛ&%MS      A ;o      4           Ɛ& &MU      B ;o      4    >      Ɛ&<&MW      C ;o      94          Ɛ&&MY      D ;o      ?4           Ɛ&&M[      E ;o      	4          Ɛ&$'M]     6  F ;o      
4          Ɛ&'M_      G ;o      4           Ɛ&(Ma     q H ;o      
4    4      Ɛ&`(Mc      I ;o      E4    d      Ɛ&(Me      J ;o      4          Ɛ&d)Mg      K ;o      k4          Ɛ&)Mi      L ;o      24          Ɛ&)Mk     Ď M ;o      4    E      Ɛ&J+Mm     Ǝ N ;o      
4          Ɛ&+Mo     Ҏ O ;o      4          Ɛ&+Mq     ӎ P ;o      4    1      Ɛ&,Ms     ۅ Q ;o      4          Ɛ&,Mu     Q R ;o      g 4          Ɛ&\-Mw     َ S ;o      !#4    5      Ɛ&-My     ێ T ;o      W%4    8      Ɛ&(.M{     ގ U ;o      &4          Ɛ&b.M}     ߎ V ;o      8(4    
      Ɛ&.M      W ;o      F)4    -      Ɛ&.M      X ;o      t*4          Ɛ&$/M      Y ;o      +4    ~      Ɛ&/M      Z ;o      -4    G      Ɛ&/M      [ ;o      K.4          Ɛ&B0M     r \ ;o      604           Ɛ&0M     Vr ] ;o      04    U      Ɛ&0M      ^ ;o      P24          Ɛ&21M      _ ;o      44           Ɛ&1M      ` ;o      	54    a      Ɛ&$2M      a ;o      k64    u      Ɛ&`2M      b ;o      74          Ɛ&2M      c ;o      :4          Ɛ&2M     ڎ d ;o      <4          Ɛ&3M      e ;o      >4          Ɛ&R3M      f ;o      HA4          Ɛ&v3M     (r g ;o      dB4          Ɛ&3M      h ;o      D4          Ɛ&4M     |r i ;o      E4    $      Ɛ&64M      j ;o      ;F4    a      Ɛ&Z4M     d k ;o      G4          Ɛ&4M      l ;o      *I4    I      Ɛ& 5M      m ;o      tK4    +      Ɛ&$5M     }r n ;o      L4    w      Ɛ&5M      o ;o      N4    F      Ɛ&6M      p ;o      _O4           Ɛ&F6M      q ;o      "P4          Ɛ&6M      r ;o      1Q4          Ɛ&6M      s ;o      R4          Ɛ&7M      t ;o      S4          Ɛ&7M     	 u ;o      U4    1      Ɛ&8M      v ;o      W4           Ɛ&88M     ȅ w ;o      vX4    +      Ɛ&p8M      x ;o      Y4    	      Ɛ&M      y ;o      Z4          Ɛ&M      z ;o      j\4    s      Ɛ&HM     } { ;o      ]4          Ɛ&M      | ;o      _4          Ɛ&ȉM     R } ;o      {e4          Ɛ&6M      ~ ;o      k4    0      Ɛ&xM       ;o      m4    #      Ɛ&ҊM       ;o      o4    e      Ɛ&M       ;o      Uq4    d      Ɛ&LM       ;o      r4    P      Ɛ&M       ;o      t4    z      Ɛ&M       ;o      v4           Ɛ&M       ;o      =w4    _      Ɛ&NM       ;o      x4    E      Ɛ&M       ;o      y4          Ɛ&M       ;o      z4           Ɛ&M     X  ;o      {4          Ɛ&>M     !  ;o      |4    4      Ɛ&bM     "  ;o      }4    :      Ɛ&M     #  ;o      34    C      Ɛ&M     $  ;o      w4    Y      Ɛ&vM     &  ;o      у4          Ɛ&M     (  ;o      z4    .      Ɛ&PM       ;o      4          Ɛ&M     .  ;o      =4          Ɛ&M     S  ;o      \4    n      Ɛ&"M     2  ;o      ˊ4          Ɛ&tM     ;  ;o      o4           Ɛ&M     <  ;o      B4           Ɛ&M     T  ;o      4    J      Ɛ&<M     Wr  ;o      E4          Ɛ&M      I  ;o      4          Ɛ&M      K  ;o      4    Z      Ɛ&M      M  ;o      V4          Ɛ&2M      N  ;o      4    6      Ɛ&|M	      M  ;o      F4    4      Ɛ&M      ?  ;o      {4          Ɛ&6M
      f  ;o      N4          Ɛ&fM      ؅  ;o      P4          Ɛ&M      g  ;o      4    Y      Ɛ&"M        ;o      k4    \      Ɛ&bM      l  ;o      Ȥ4          Ɛ&M      h  ;o      4           Ɛ&M      n  ;o      4           Ɛ&M      o  ;o      i4    I      Ɛ&M      p  ;o      4          Ɛ&M      r  ;o      Ϫ4          Ɛ&M!      t  ;o      4           Ɛ&|M#      u  ;o      4           Ɛ&M%        ;o      4           Ɛ&M'        ;o      D4           Ɛ&2M)      w  ;o      4           Ɛ&VM+         ;o      4           Ɛ&M-      z  ;o      4          Ɛ&M/      {  ;o      4           Ɛ& M1      }  ;o      R4          Ɛ&M3      ~  ;o      44          Ɛ&ZM5        ;o      ٷ4    h      Ɛ&M7        ;o      B4    3      Ɛ&M9        ;o      v4    }      Ɛ&M;        ;o      4    r      Ɛ&M=        ;o      g4          Ɛ&M?        ;o      4          Ɛ&NMA        ;o      4          Ɛ&MC        ;o      t4    '      Ɛ&MF                                ;o      4           Ɛ&.MH        ;o      m4          Ɛ&fMJ        ;o      4          Ɛ&ML        ;o      4    u      Ɛ&lMN        ;o      /4           Ɛ&MP      Ï  ;o      4          Ɛ&MR      ď  ;o      4          Ɛ&MT      H  ;o      4    t      Ɛ&MV        ;o      g4           Ɛ&MX      ̏ Ð ;o      4          Ɛ&MZ      :r Đ ;o      4    
      Ɛ&lGN\      ҏ Ő ;o      4          Ɛ&GN^      ׏ Ɛ ;o      4    ~      Ɛ&GN`      ؏ ǐ ;o      ,4          Ɛ&HNb      q Ȑ ;o      4          Ɛ&BHNd      q ɐ ;o      v4          Ɛ&HNf      ُ ʐ ;o      Z4          Ɛ&HNh      ۏ ː ;o      n4    V      Ɛ&INj      ܏ ̐ ;o      4          Ɛ&FINl      ݏ ͐ ;o      t4    &      Ɛ&jINn       ΐ ;o      4           Ɛ&INp      ޏ ϐ ;o      l4           Ɛ&INr      ߏ А ;o      a4          Ɛ& JNt       ѐ ;o      *4           Ɛ&jJNv       Ґ ;o       4    .      Ɛ&JNx       Ӑ ;o      O4    K      Ɛ&JNz       Ԑ ;o      4    <      Ɛ&JN|       Ր ;o      4          Ɛ&ZKN~       ֐ ;o      {4          Ɛ&KN       א ;o      z4    +      Ɛ&KN       ؐ ;o      4          Ɛ&LN       ِ ;o      <4    q      Ɛ&hLN       ڐ ;o      4          Ɛ&LN       ې ;o      84    L      Ɛ&LN      d ܐ ;o      4          Ɛ&MN      9 ݐ ;o      C4    P      Ɛ&&MN       ސ ;o      4          Ɛ&MN      Ԁ ߐ ;o      4    g      Ɛ&MN        ;o      5           Ɛ&NN        ;o      5          Ɛ&JNN      x  ;o      5    \      Ɛ&NN        ;o      5    +      Ɛ&NN      p  ;o      
5          Ɛ&ON        ;o      5    .      Ɛ&<ON        ;o      	5          Ɛ&`ON        ;o      o5    f      Ɛ&ON      5  ;o      
5    e      Ɛ&ON      ʀ  ;o      <5    
      Ɛ&<PN        ;o      J5          Ɛ&PN        ;o      R5    N      Ɛ&PN        ;o      5          Ɛ&"QN        ;o      J5    3      Ɛ&QN      ͏  ;o      ~5          Ɛ&QN        ;o      5          Ɛ&QN        ;o      5          Ɛ&jRN        ;o      5          Ɛ&RN        ;o      5          Ɛ&RN        ;o      P!5          Ɛ&SN         ;o      1#5          Ɛ&SN        ;o      %5          Ɛ&SN        ;o      2&5           Ɛ&SN        ;o      &5    u      Ɛ&@TN        ;o      [(5    m      Ɛ&dTN      3  ;o      )5          Ɛ&TN      Ʌ  ;o      *5          Ɛ&TN      W  ;o      c,5    '      Ɛ&TN      Xr  ;o      05    W      Ɛ&.UN        ;o      15    ,      Ɛ&bUN      q  ;o      35          Ɛ&UN        ;o      #55    2      Ɛ&UN         ;o      V95          Ɛ&VN      	  ;o      .;5          Ɛ&VVN      
  ;o      <5          Ɛ&VN      V  ;o      >5          Ɛ&VN      Yr  ;o      A5           Ɛ&WN        ;o      B5    d      Ɛ&>WN      
  ;o      QD5          Ɛ&bWN      )  ;o      2F5           Ɛ&WN        ;o      G5          Ɛ&WN       	 ;o      I5          Ɛ&WN       
 ;o      K5    P      Ɛ&XN        ;o      mL5    2      Ɛ&XN      l  ;o      M5    ?      Ɛ&XN      h 
 ;o      N5    [      Ɛ&bYN        ;o      <P5          Ɛ&YN        ;o      DQ5    &      Ɛ&YN        ;o      kR5          Ɛ&0ZN        ;o      T5    s      Ɛ&ZN        ;o      W5    P      Ɛ&ZN        ;o      X5          Ɛ&
[N        ;o      XZ5          Ɛ&H[N         ;o      \5          Ɛ&[N      !  ;o      1^5    D      Ɛ&[N !     Ć  ;o      v_5    5      Ɛ&[N!     :  ;o      `5    %      Ɛ&\N!     )r  ;o      a5    F      Ɛ&B\N!     "  ;o      c5          Ɛ&\N!     #  ;o      3d5    ;      Ɛ&\N
!       ;o      oe5    g      Ɛ&]N!     %  ;o      f5          Ɛ&D]N!     &  ;o      g5           Ɛ&]N!     '  ;o      h5    +      Ɛ& ^N!     *   ;o      i5           Ɛ&$^N!     e ! ;o      j5          Ɛ&T^N!      " ;o      }l5    p      Ɛ&^N!     , # ;o      m5    ;      Ɛ&^N!     . $ ;o      *o5    R      Ɛ&_N!     X % ;o      }p5    {      Ɛ&8_N!     / & ;o      q5          Ɛ&z_N !     3 ' ;o      s5    5      Ɛ&_N"!     1 ( ;o      t5          Ɛ&_N$!     2 ) ;o      rv5    
      Ɛ&`N&!      * ;o      }w5           Ɛ&6`N(!      + ;o      Xx5    d      Ɛ&`N*!     3 , ;o      y5    3      Ɛ&`N,!      - ;o      z5    W      Ɛ&`N.!     5 . ;o      I|5    ]      Ɛ&>aN0!      / ;o      }5          Ɛ&xaN2!     7 0 ;o      F5          Ɛ&aN4!     Zr 1 ;o      b5    [      Ɛ&aN6!     + 2 ;o      5          Ɛ&bN8!     [r 3 ;o      ނ5          Ɛ&VbN:!     8 4 ;o      ~5          Ɛ&bN<!     9 5 ;o      5    H      Ɛ&bN>!     : 6 ;o      ͈5    J      Ɛ&bN@!      7 ;o      5    ~      Ɛ&PcNB!     ; 8 ;o      5           Ɛ&tcND!     < 9 ;o      ^5           Ɛ&cNF!      : ;o       5           Ɛ&cNH!     > ; ;o      5    m      Ɛ&RNJ!      < ;o      [5           Ɛ&NL!     @ = ;o      =5           Ɛ&NN!     ` > ;o      5    0      Ɛ&NP!     S ? ;o      C5          Ɛ&NR!     A @ ;o      5    0      Ɛ&lNT!     B A ;o      H5    _      Ɛ&NV!      B ;o      5          Ɛ&NX!     ǎ C ;o      5    p      Ɛ&NZ!     D D ;o      +5    &      Ɛ&TN\!     E E ;o      R5          Ɛ&8
O^!     G F ;o      5    o      Ɛ&
O`!     Ǐ G ;o      \5    h      Ɛ&Ob!      H ;o      Ţ5          Ɛ&XOd!      I ;o      5          Ɛ&Of!      J ;o      I5    n      Ɛ&Oh!     K- K ;o      5    	      Ɛ&6Oj!      L ;o      ©5          Ɛ&Ol!      M ;o      5    w      Ɛ&bOn!      N ;o      25          Ɛ&(Op!      O ;o      5    #      Ɛ&Or!      P ;o      5    U      Ɛ&Ot!      Q ;o      75    h      Ɛ&Ov!      R ;o      5          Ɛ&8Ox!      S ;o      *5    F      Ɛ&Oz!      T ;o      q5    /      Ɛ&O|!      U ;o      5    E      Ɛ&O~!       V ;o      5    {      Ɛ&0O!      W ;o      c5          Ɛ&|O!     t X ;o      5          Ɛ&O!      Y ;o      5          Ɛ&O!      Z ;o      ^5    y      Ɛ&2O!      [ ;o      5    W      Ɛ&jO!      \ ;o      05          Ɛ&<O!       ] ;o      G5          Ɛ&O!      ^ ;o      5    T      Ɛ&
O!     	 _ ;o      ;5          Ɛ&@O!     r ` ;o      N5          Ɛ&kO!      a ;o      5    y      Ɛ&kO!      b ;o      L5          Ɛ&dlO!      c ;o      5    e      Ɛ&oO!     6 d ;o      55    5      Ɛ& pO!     r e ;o      k5    `      Ɛ&^pO!     P f ;o      5          Ɛ&pO!     2 g ;o      5          Ɛ&pO!     3 h ;o      5          Ɛ&qO!     4 i ;o      W5          Ɛ&qO!     E j ;o      5    i      Ɛ&rO!     7 k ;o      {5    a      Ɛ&4rO!     q l ;o      5    W      Ɛ&rO!     Y m ;o      55          Ɛ&LsO!     < n ;o      L5          Ɛ&sO!     = o ;o      5    :      Ɛ&sO!     r p ;o      65    r      Ɛ&sO!     
 q ;o      5          Ɛ&tO!     8 r ;o      C5           Ɛ&VtO!     > s ;o      5    =      Ɛ&tO!     ? t ;o      65    >      Ɛ&tO!      u ;o      u5          Ɛ&tO!      v ;o      5    {      Ɛ&&uO!      w ;o       5    \      Ɛ&huO!     ΅ x ;o      ]5    ,      Ɛ&uO!     B y ;o      5          Ɛ&uO!      z ;o      5    t      Ɛ&&vO!     C { ;o      5    )      Ɛ&JvO!     : | ;o      5    }      Ɛ&|vO!     E } ;o      ,6          Ɛ&vO!      ~ ;o      06          Ɛ&wO!     Ņ  ;o      6          Ɛ&JwO!     I  ;o      }6          Ɛ&~wO!     Y  ;o       
6           Ɛ&wO!       ;o      
6    '      Ɛ&wO!     g  ;o      6          Ɛ&"xO!     J  ;o      .6          Ɛ&FxO!     9  ;o      6          Ɛ&xO!       ;o      6    {      Ɛ&xO!     M  ;o      b6    $      Ɛ&@yO!     N  ;o      6    B      Ɛ&xyO!     H  ;o      6    c      Ɛ&yO!     Q  ;o      .6    ?      Ɛ&zO!     R  ;o      n6          Ɛ&DzO!     T  ;o      }6    7      Ɛ&vzO!     U  ;o      6    
      Ɛ&zO!     م  ;o      6    A      Ɛ&Z{O!     V  ;o       6          Ɛ&{O!     [  ;o      $!6          Ɛ&{O!     \  ;o      #6          Ɛ&8|O!     ^  ;o      %6    s      Ɛ&~|O!     _  ;o      &6    t      Ɛ&|O!       ;o      '6    =      Ɛ&$}O!     Z  ;o      7)6          Ɛ&H}O!       ;o      -6          Ɛ&}O "     c  ;o      +.6          Ɛ&}O"     d  ;o      /6          Ɛ&F~O"     e  ;o      36          Ɛ&~~O"     g  ;o      =56          Ɛ&O"     h  ;o      66          Ɛ&O
"     A  ;o      86          Ɛ&JO"     i  ;o      96          Ɛ&O"     k  ;o      ;6          Ɛ&O"     m  ;o      h=6          Ɛ&VO"     o  ;o      <?6          Ɛ&O"     \r  ;o      A6           Ɛ&O"     t  ;o      A6          Ɛ&O"     `  ;o      C6           Ɛ&6O"     u  ;o      FD6    8      Ɛ&xO"       ;o      E6          Ɛ&O"       ;o      G6          Ɛ&2O "       ;o      H6          Ɛ&P""     %r  ;o      J6    (      Ɛ&P$"     ̣  ;o      L6    !      Ɛ&6P&"     Σ  ;o      M6    %      Ɛ&~P("     څ  ;o      O6    f      Ɛ&
P*"     ϣ  ;o      vQ6          Ɛ&RP,"     ӣ  ;o      qT6          Ɛ&P."       ;o      U6          Ɛ&ĲP0"     գ  ;o      FW6    :      Ɛ&P2"     O  ;o      X6          Ɛ&.P4"     N  ;o      |Z6          Ɛ&`P6"     G  ;o      [6    _      Ɛ&P8"     ף  ;o      ]6          Ɛ&ܳP:"       ;o      _6    9      Ɛ&P<"     ڣ  ;o      a6    N      Ɛ&vP>"     /  ;o       d6          Ɛ&P@"     r  ;o      :e6          Ɛ&޴PB"     ܣ  ;o      f6    -      Ɛ&PD"       ;o      h6          Ɛ&&PF"     h  ;o      "i6    !      Ɛ&JPH"     u  ;o      Dj6           Ɛ&PJ"       ;o      9k6          Ɛ&PL"     ޣ  ;o      l6    /      Ɛ&^PN"     L-  ;o      m6          Ɛ&ֶPP"       ;o      ko6          Ɛ&PR"       ;o      q6    \      Ɛ&DPT"       ;o      br6    ,      Ɛ&hPV"     ]r  ;o      s6          Ɛ&PX"      Ñ ;o      }u6    E      Ɛ&ķPZ"      đ ;o      v6    J      Ɛ&P\"      ő ;o      x6          Ɛ&^P^"      Ƒ ;o      z6          Ɛ&P`"      Ǒ ;o      |6          Ɛ&Pb"      ȑ ;o      {~6    ,      Ɛ&,Pd"     ^r ɑ ;o      6          Ɛ&xPf"     [ ʑ ;o      6    a      Ɛ&ƹPh"      ˑ ;o      !6          Ɛ&hPj"      ̑ ;o      6          Ɛ&Pl"      ͑ ;o      6    0      Ɛ&κPn"      Α ;o      76    +      Ɛ&Pp"      ϑ ;o      c6           Ɛ&DPr"      Б ;o      b6    (      Ɛ&tPt"     أ ё ;o      6          Ɛ&λPv"      ґ ;o      6    &      Ɛ&Px"      ӑ ;o      ь6          Ɛ&zPz"      ԑ ;o      6          Ɛ&P|"      Ց ;o      6          Ɛ&LP~"      ֑ ;o      6          Ɛ&P"     q ב ;o      6          Ɛ&ĽP"      ؑ ;o      F6           Ɛ&P"     ] ّ ;o      6    G      Ɛ&|P"      ڑ ;o      D6    V      Ɛ&P"      ۑ ;o      6          Ɛ&P"      ܑ ;o      H6    X      Ɛ&XP"      ݑ ;o      6    X      Ɛ&>P"     O ޑ ;o      6          Ɛ&P"     
 ߑ ;o      6    v      Ɛ&fP"       ;o      6          Ɛ&P"       ;o      w6           Ɛ&P"       ;o      p6    f      Ɛ&Q"       ;o      ץ6    &      Ɛ&PQ"       ;o      6    -      Ɛ&\Q"     @  ;o      ,6          Ɛ&Q"       ;o      6          Ɛ&ܴQ"       ;o      6          Ɛ&,Q"       ;o      ì6          Ɛ&tQ"       ;o      _6    k      Ɛ&Q"       ;o      ˯6          Ɛ&Q"        ;o      6          Ɛ&Q"     6&  ;o      6          Ɛ&bQ"     	  ;o      6    =      Ɛ&Q"     
  ;o      6           Ɛ&$Q"       ;o      6          Ɛ&HQ"     P  ;o      6    L      Ɛ&Q"       ;o      6    -      Ɛ&Q"       ;o      /6    Z      Ɛ&6Q"       ;o      6    *      Ɛ&Q"     _r  ;o      6    k      Ɛ&Q"     p  ;o      !6           Ɛ&Q"       ;o      6          Ɛ&Q"       ;o      6           Ɛ&\Q"       ;o      6    6      Ɛ&Q"       ;o      6    3      Ɛ&Q"       ;o      6    W      Ɛ&:Q"       ;o      D6    _      Ɛ&nQ"     e  ;o      6    L      Ɛ&غQ"       ;o      6    ?      Ɛ&0Q"       ;o      16          Ɛ&Q"       ;o      6          Ɛ&λQ"        ;o      6          Ɛ&Q"     !  ;o      i6    =      Ɛ&,Q"     C  ;o      6          Ɛ&|Q"     q  ;o      Y6    K      Ɛ&ļQ"     a  ;o      6          Ɛ&Q"     $  ;o      6          Ɛ&HQ"     %  ;o      6          Ɛ&Q"     '  ;o      6    [      Ɛ&Q"     )  ;o      6          Ɛ&(Q"     * 	 ;o      s6    /      Ɛ&Q"     | 
 ;o      6          Ɛ&Q"     +  ;o      ]6    m      Ɛ&>Q"     s  ;o      6          Ɛ&bQ"     u 
 ;o      x6          Ɛ&Q"       ;o      6    g      Ɛ&пQ"     .  ;o      6          Ɛ&RQ"       ;o      6          Ɛ&Q"     q  ;o      6    e      Ɛ&Q"     Ar  ;o      r6          Ɛ& Q"        ;o      =6    a      Ɛ&`Q"       ;o      6          Ɛ&Q"     4  ;o      P6          Ɛ&Q"     3  ;o      6          Ɛ&Q #     5  ;o      6    )      Ɛ&rQ#     7  ;o      6    ^      Ɛ&Q#       ;o      +7           Ɛ&Q#     Ώ  ;o      7    5      Ɛ&LQ#     ;  ;o      17    /      Ɛ&pQ
#        ;o      a7          Ɛ&Q#     
  ;o      %7          Ɛ&Q#     <  ;o      A	7    
      Ɛ&Q#     =  ;o      L
7    L      Ɛ&TQ#     >   ;o      7           Ɛ&Q#     ? ! ;o      7          Ɛ&Q#     @ " ;o      
7          Ɛ&Q#     A # ;o      7    (      Ɛ&6Q#     r $ ;o      7    !      Ɛ&nQ#     B % ;o      7    :      Ɛ&Q#     *r & ;o      97    0      Ɛ&Q #     D ' ;o      j7    n      Ɛ&dQ"#     E ( ;o      7    2      Ɛ&Q$#     t ) ;o      7    O      Ɛ&Q&#     G * ;o      \7    S      Ɛ&Q(#     ˀ + ;o      7          Ɛ&>Q*#      , ;o      7    `      Ɛ&nQ,#      - ;o      7          Ɛ&Q.#     J . ;o      7    s      Ɛ&Q0#     K / ;o      {7    
      Ɛ&jQ2#     L 0 ;o      7          Ɛ&Q4#     N 1 ;o      ;!7    -      Ɛ&Q6#     P 2 ;o      i"7    5      Ɛ&HQ8#     R 3 ;o      #7    (      Ɛ&Q:#     S 4 ;o      $7    Z      Ɛ&Q<#     ӏ 5 ;o      #&7          Ɛ&(Q>#     \ 6 ;o      3(7    J      Ɛ&Q@#     V 7 ;o      ~)7    +      Ɛ&QB#     4 8 ;o      *7          Ɛ& QD#      9 ;o      T,7          Ɛ&$QF#      : ;o      .7    	      Ɛ&TQH#      ; ;o      /7           Ɛ&QJ#     [ < ;o      /7    l      Ɛ&QL#     Ϗ = ;o      717          Ɛ&QN#     ] > ;o      27           Ɛ&@QP#     Q ? ;o      37    "      Ɛ&vQR#     ^ @ ;o      47    Z      Ɛ&QT#     _ A ;o      >67    L      Ɛ&
QV#      B ;o      77    f      Ɛ&:QX#     v C ;o      87          Ɛ&QZ#     `r D ;o      :7    '      Ɛ&Q\#     ar E ;o      ;7          Ɛ&Q^#     d F ;o      =7           Ɛ&^Q`#     O G ;o      w>7    q      Ɛ&Qb#     g H ;o      ?7    z      Ɛ&2Rd#     j I ;o      dA7    @      Ɛ&Rf#      J ;o      B7    3      Ɛ&Rh#      K ;o      C7          Ɛ& Rj#     ( L ;o      E7          Ɛ&L Rl#     k M ;o      G7          Ɛ& Rn#      N ;o      I7    a      Ɛ& Rp#     n O ;o      6K7           Ɛ&f!Rr#     ԅ P ;o      K7           Ɛ&!Rt#     q Q ;o      L7          Ɛ&!Rv#     r R ;o      M7          Ɛ&"Rx#     7 S ;o      O7          Ɛ&"Rz#     s T ;o      _Q7          Ɛ&"R|#     8 U ;o      NS7          Ɛ&#R~#     u V ;o      BU7          Ɛ&R#R#     v W ;o      SW7    :      Ɛ&v#R#     t X ;o      Y7          Ɛ&#R#      Y ;o      [7    R      Ɛ&#R#      Z ;o      \7           Ɛ&#R#      [ ;o      ]7          Ɛ&$R#     0 \ ;o      _7          Ɛ&6$R#      ] ;o      `7           Ɛ&Z$R#     ; ^ ;o      a7          Ɛ&$R#     6 _ ;o      c7          Ɛ&$R#     l ` ;o      f7          Ɛ&$R#     x a ;o      6g7          Ɛ&,%R#      b ;o      Oh7          Ɛ&P%R#     Յ c ;o      fi7           Ɛ&%R#      d ;o      ,j7    5                              Ɛ&%R#     z e ;o      bk7           Ɛ&&R#      f ;o      +l7    .      Ɛ&N&R#     | g ;o      Zm7    W      Ɛ&r&R#      h ;o      n7    0      Ɛ&&R#     } i ;o      o7          Ɛ&'R#     ~ j ;o      r7           Ɛ&L'R#     Br k ;o      ks7    I      Ɛ&'R#     s l ;o      t7          Ɛ&(R#      m ;o      Hv7    Z      Ɛ&D(R#      n ;o      w7    3      Ɛ&(R#      o ;o      x7           Ɛ&(R#      p ;o      y7    
      Ɛ&(R#      q ;o      {7           Ɛ&)R#     q r ;o      S|7           Ɛ&4)R#      s ;o      }7          Ɛ&j)R#      t ;o      ~7    z      Ɛ&)R#     br u ;o      )7    Q      Ɛ&)R#      v ;o      {7          Ɛ&*R#      w ;o      7    B      Ɛ&h*R#      x ;o      ǅ7          Ɛ&*R#      y ;o      7          Ɛ&*R#      z ;o      l7          Ɛ&X+R#     Cr { ;o      7          Ɛ&,R#      | ;o      {7    U      Ɛ&~,R#      } ;o      э7    w      Ɛ&,R#      ~ ;o      I7    z      Ɛ&-R#       ;o      Đ7          Ɛ&T-R#       ;o      7           Ɛ&-R#       ;o      7          Ɛ&-R#       ;o      7          Ɛ&X.R#       ;o      J7    t      Ɛ&/R#       ;o      7          Ɛ&0R#       ;o      7          Ɛ&80R#     Dr  ;o      '7          Ɛ&,2R#       ;o      7          Ɛ&2R#     M  ;o      ў7          Ɛ&2R#       ;o      7    z      Ɛ&3R#     a  ;o      "7          Ɛ&X3R#       ;o      ã7    f      Ɛ&3R#       ;o      *7          Ɛ&3R#     «  ;o      7    T      Ɛ&H4R#       ;o      k7           Ɛ&l4R#     cr  ;o      7           Ɛ&4R#     qe  ;o      7          Ɛ&4R#     /r  ;o      7          Ɛ&5R#       ;o      7    T      Ɛ&:5R#       ;o      7    J      Ɛ&^5R#     ]  ;o      67    +      Ɛ&5R#     Ȏ  ;o      b7          Ɛ&5R#     Q  ;o      7          Ɛ&6R$     ǫ  ;o      7    w      Ɛ&~6R$       ;o      %7    a      Ɛ&6R$     ˫  ;o      7    
      Ɛ&27R$     ͫ  ;o      7          Ɛ&V7R	$     &  ;o      c7           Ɛ&7R$     ϫ  ;o      O7    ]      Ɛ&7R
$     +r  ;o      7    m      Ɛ&8R$     Ы  ;o      7    ?      Ɛ&L8R$     ѫ  ;o      [7          Ɛ&8R$     ҫ  ;o      I7    
      Ɛ&f9R$     ԫ  ;o      W7          Ɛ&9R$     ׫  ;o      w7    ;      Ɛ&$:R$     ث  ;o      7    g      Ɛ&H:R$     ի  ;o      7    -      Ɛ&:R$     ګ  ;o      I7          Ɛ&:R$       ;o      >7    D      Ɛ&:R!$     ۫  ;o      7           Ɛ&r;R#$       ;o      `7    D      Ɛ&;R%$     ~r  ;o      7          Ɛ&<R'$     ߫  ;o      \7          Ɛ&><R)$       ;o      T7    J      Ɛ&b<R+$     ,r  ;o      7          Ɛ&<R-$       ;o      67    H      Ɛ&<R/$       ;o      7    d      Ɛ&<R1$       ;o      7    7      Ɛ&<=R3$       ;o      7    `      Ɛ&`=R5$        ;o      }7          Ɛ&=R7$     5  ;o      7          Ɛ&=R9$       ;o      7          Ɛ&=R;$       ;o      ]7    N      Ɛ&=R=$     n  ;o      7          Ɛ&J>R?$     I{  ;o      07    F      Ɛ&>RA$     ̀  ;o      w7    n      Ɛ&>RC$       ;o      7          Ɛ&?RE$       ;o      7          Ɛ&t?RG$       ;o      7          Ɛ&?RI$     r  ;o      7          Ɛ&?RK$       ;o      7    %      Ɛ&?RM$       ;o      47          Ɛ&(@RO$       ;o      97          Ɛ&@RQ$       ;o      8          Ɛ&@RS$       ;o      8          Ɛ&.ARU$     $  ;o      8    B      Ɛ&RARW$       ;o      8          Ɛ&vARY$      Ò ;o      8    
      Ɛ&AR[$      Ē ;o      	8    Y      Ɛ&AR]$     ̀ Œ ;o      ;8          Ɛ&2BR_$      ƒ ;o      8          Ɛ&nBRa$      ǒ ;o      8          Ɛ&BRc$      Ȓ ;o      8    X      Ɛ&BCRe$      ɒ ;o      8          Ɛ&CRg$      ʒ ;o      8           Ɛ&dDRi$      ˒ ;o      8          Ɛ&DRk$      ̒ ;o      8          Ɛ&"ERm$      ͒ ;o      R8          Ɛ&hERo$      Β ;o      8    A      Ɛ&ERq$      ϒ ;o      8    o      Ɛ&FRs$      В ;o      !8          Ɛ&`FRu$      ђ ;o      g#8    o      Ɛ&FRw$      Ғ ;o      %8    l      Ɛ& GRy$      Ӓ ;o      D'8    V      Ɛ&GR{$      Ԓ ;o      (8          Ɛ&GR}$     
 Ւ ;o      )8    f      Ɛ&\R$      ֒ ;o      -8          Ɛ&R$     ̫ ג ;o      .8    G      Ɛ&R$      ؒ ;o      /8    {      Ɛ&ژR$     	 ْ ;o      h18    (      Ɛ&R$     q ڒ ;o      38    1      Ɛ&4R$     dr ے ;o      48           Ɛ&nR$      ܒ ;o      p58    e      Ɛ&R$     q ݒ ;o      68    E      Ɛ&R$     < ޒ ;o      98          Ɛ&DR$      ߒ ;o      1:8    6      Ɛ&R$     j  ;o      h;8          Ɛ&ʚR$       ;o      {<8           Ɛ&R$       ;o      ?=8    g      Ɛ&R$       ;o      >8    H      Ɛ&TR$       ;o      @8    [      Ɛ&xR$       ;o      LB8    Y      Ɛ&R$     ^  ;o      C8    ~      Ɛ&
R$        ;o      %E8    1      Ɛ&.R$     !  ;o      WH8    ~      Ɛ&nR$     "  ;o      I8           Ɛ&R$       ;o      J8          Ɛ&R$     r  ;o      K8          Ɛ&R$     #  ;o      L8          Ɛ&*R$       ;o      N8    E      Ɛ&NR$     _  ;o      O8    :      Ɛ&R$     r  ;o      Q8    T      Ɛ&rR$     e  ;o      `R8    Y      Ɛ&R$     f  ;o      S8    b      Ɛ&ȟR$     %  ;o      U8          Ɛ&R$     &  ;o      V8          Ɛ&R$       ;o      W8          Ɛ&~R$     +  ;o      X8          Ɛ&R$     ,  ;o      [8          Ɛ&ƠR$     6  ;o      y^8           Ɛ&2R$     -  ;o      L_8           Ɛ&~R$     /  ;o      `8           Ɛ&ޡR$     0  ;o      a8           Ɛ&R$       ;o      a8           Ɛ&R$     3  ;o      b8          Ɛ&ܢR$     5  ;o      Rd8          Ɛ&R$     6  ;o      e8          Ɛ&xR$     7  ;o      g8          Ɛ&R$     9   ;o      7i8    J      Ɛ&\R$     ;  ;o      j8    B      Ɛ&R$     =  ;o      k8    m      Ɛ&ڤR$     >  ;o      3m8          Ɛ&JR$     ?  ;o      o8    A      Ɛ&nR$       ;o      p8    d      Ɛ&R$     A  ;o      `r8    ^      Ɛ&R$     B  ;o      s8    M      Ɛ&|R$     r  ;o      
v8    b      Ɛ&R$     er 	 ;o      pw8    R      Ɛ&ĦR$      
 ;o      y8          Ɛ&R$     fr  ;o      z8    y      Ɛ&ԧR$     r  ;o      ?|8    o      Ɛ&<R$     H 
 ;o      ~8    d      Ɛ&`R$     O  ;o      8    4      Ɛ&R$     J  ;o      I8    w      Ɛ&R$     K  ;o      8    f      Ɛ&.R$     ȫ  ;o      (8          Ɛ&bR$     N  ;o      8          Ɛ&R$       ;o      8    |      Ɛ&R$       ;o      8    S      Ɛ&R$     0  ;o      e8          Ɛ&ܫR$     Z  ;o      58          Ɛ&,R%     Q  ;o      Ր8    ]      Ɛ&R%     R  ;o      38    K      Ɛ&R%     S  ;o      8    V      Ɛ&"R%     \  ;o      ֕8    a      Ɛ&`R	%     T  ;o      88    2      Ɛ&R%     ]  ;o      k8          Ɛ&0R
%     U  ;o      8    E      Ɛ&tR%     V  ;o      78          Ɛ&®R%     _  ;o      8           Ɛ&R%     `   ;o      ܝ8          Ɛ&DR%     W ! ;o      m8          Ɛ&R%     a " ;o      8    )      Ɛ&R%      # ;o      8    G      Ɛ&<R%     X $ ;o      8    A      Ɛ&R%     d % ;o      >8          Ɛ&@R%     h & ;o      28          Ɛ&zR!%     [ ' ;o      8    _      Ɛ&R#%      ( ;o      F8          Ɛ&R%%      ) ;o      %8          Ɛ&R'%     ʅ * ;o      8    s      Ɛ&*R)%     5 + ;o      x8    /      Ɛ&xR+%     i , ;o      8    (      Ɛ&R-%     j - ;o      Ѳ8    k      Ɛ&R/%     r . ;o      =8          Ɛ&R1%      / ;o      48    z      Ɛ&nR3%     w 0 ;o      8    )      Ɛ&S5%     r 1 ;o      ٹ8          Ɛ&S7%     } 2 ;o      8    3      Ɛ&S9%     ~ 3 ;o      8    ^      Ɛ&LS;%      4 ;o      F8    /      Ɛ&S=%      5 ;o      v8    o      Ɛ&S?%     Z 6 ;o      8    E      Ɛ&0SA%     ` 7 ;o      ,8          Ɛ&hSC%      8 ;o      8          Ɛ&SE%      9 ;o      8          Ɛ&SG%      : ;o      K8          Ɛ&VSI%     W ; ;o      
8           Ɛ&SK%      < ;o      8    \      Ɛ&SM%      = ;o      -8          Ɛ&:	SO%      > ;o      8    h      Ɛ&	SQ%      ? ;o      08          Ɛ&	SS%     9 @ ;o      B8          Ɛ&	SU%     P A ;o      J8    1      Ɛ&
SW%      B ;o      |8    B      Ɛ&l
SY%     [ C ;o      8    F      Ɛ&
S[%     Ɏ D ;o      8    O      Ɛ&
S]%      E ;o      V8    W      Ɛ& S_%      F ;o      8          Ɛ&NSa%      G ;o      78    s      Ɛ&rSc%     
 H ;o      8          Ɛ&Se%      I ;o      8           Ɛ&Sg%      J ;o      g8           Ɛ& Si%      K ;o      /8          Ɛ&Sk%      L ;o      8    $      Ɛ&p
Sm%      M ;o      8    !      Ɛ&
So%     $. N ;o      8    '      Ɛ&
Sq%      O ;o       8          Ɛ&Ss%      P ;o      "8          Ɛ&dSu%      Q ;o      8          Ɛ&Sw%     8r R ;o      8           Ɛ&Sy%     z S ;o      |8    w      Ɛ&S{%      T ;o      8    x      Ɛ&JS}%      U ;o      m8    $      Ɛ&S%      V ;o      8          Ɛ&S%      W ;o      A8          Ɛ&TS%      X ;o      8           Ɛ&S%      Y ;o      8          Ɛ&S%     gr Z ;o      8    G      Ɛ&bS%     V [ ;o      8          Ɛ&S%      \ ;o      8          Ɛ&S%      ] ;o       9    O      Ɛ&PS%      ^ ;o      79           Ɛ&S%      _ ;o      9          Ɛ&S%      ` ;o      9    [      Ɛ&S%      a ;o      9          Ɛ&S%      b ;o      9    9      Ɛ&S%      c ;o      9    k      Ɛ&HS%      d ;o      <
9    B      Ɛ&S%      e ;o      
9    /      Ɛ&S%      f ;o      9          Ɛ&S%      g ;o      i9    9      Ɛ&`S%      h ;o      9          Ɛ&S%      i ;o      *9          Ɛ&S%     ¬ j ;o      9          Ɛ&BS%      k ;o      9          Ɛ&S%      l ;o      Y9          Ɛ&S%     r m ;o      9    `      Ɛ&JS%     ۣ n ;o      b9          Ɛ&nS%     L o ;o      9    Y      Ɛ&S%     Ȭ p ;o      =9           Ɛ&S%     ˬ q ;o      9           Ɛ&vS%     ʬ r ;o       9           Ɛ&S%     ɬ s ;o      z!9    g      Ɛ&S%      t ;o      "9          Ɛ&S%     ͬ u ;o      $9    H      Ɛ&S%      v ;o      %9    R      Ɛ&jS%     ά w ;o      3'9          Ɛ&S%      r x ;o      #)9          Ɛ&S%     Ь y ;o       +9          Ɛ&"S%      z ;o      ,9          Ɛ&FS%     R { ;o      .9          Ɛ&jS%      | ;o      109    W      Ɛ&S%      } ;o      19           Ɛ&S%     hr ~ ;o      `29          Ɛ& S%     Ҭ  ;o      59    c      Ɛ&lS%       ;o      `79          Ɛ&lS%       ;o      !99          Ɛ&mS%     I  ;o      :9    [      Ɛ&ĽS%       ;o      '<9          Ɛ&S%     
  ;o      =9          Ɛ&*S%     ٣  ;o      ?9           Ɛ&xS%       ;o      U@9    `      Ɛ&ƾS%       ;o      A9    (      Ɛ&S%       ;o      B9    4      Ɛ&ZS%       ;o      E9    Q      Ɛ&S%       ;o      fF9    3      Ɛ&S%       ;o      G9    P      Ɛ&ܿS%       ;o      I9    W      Ɛ& S%     X  ;o      CK9    E      Ɛ&$S%       ;o      L9          Ɛ&pS%     
  ;o      N9          Ɛ&S%       ;o      P9          Ɛ&S%       ;o      R9           Ɛ&S%     K  ;o      R9          Ɛ&|S%       ;o      vT9    6      Ɛ&S%       ;o      V9          Ɛ&S%       ;o      W9    t      Ɛ&bS%       ;o      BY9    ;      Ɛ&S&       ;o      ~Z9          Ɛ&S&     q  ;o      \9          Ɛ&ZS&       ;o      ^9    K      Ɛ&S&       ;o      e_9          Ɛ&S	&       ;o      `9    V      Ɛ&S&        ;o      a9          Ɛ&:S
&     g  ;o      c9    )      Ɛ&^S&       ;o      
e9          Ɛ&S&     !  ;o      f9    O      Ɛ&S&       ;o      eg9    ]      Ɛ&@S&       ;o      h9          Ɛ&pS&     a  ;o      bj9    $      Ɛ&S&     z  ;o      k9          Ɛ& S&     $  ;o      gm9    s      Ɛ&$S&       ;o      n9    }      Ɛ&^S&       ;o      Yp9    G      Ɛ&S!&     &  ;o      q9    9      Ɛ&S#&       ;o      r9    8      Ɛ&XS%&     (  ;o      t9          Ɛ&S'&     *  ;o      v9          Ɛ&S)&       ;o      
x9    +      Ɛ&S+&       ;o      6y9          Ɛ&0S-&     ,  ;o      z9           Ɛ&fT/&     -  ;o      {9          Ɛ&T1&       ;o      |9    $      Ɛ&`T3&     ;  ;o      9    <      Ɛ&T5&       ;o      I9          Ɛ&T7&       ;o      9          Ɛ&T9&       ;o      9          Ɛ&T;&     Џ  ;o      9          Ɛ&4T=&     T  ;o      9    |      Ɛ&T?&     U  ;o      9          Ɛ&TA&     X  ;o      9          Ɛ&2TC&     Y  ;o      W9          Ɛ&fTE&     ݀  ;o      9    7      Ɛ&TG&     [  ;o      9          Ɛ&TI&     b  ;o      9          Ɛ&TK&     \  ;o      D9    }      Ɛ&<TM&     L  ;o      9    7      Ɛ&oTO&     N-  ;o      9    Y      Ɛ&oTQ&     ]  ;o      T9          Ɛ&oTS&       ;o      9           Ɛ&oTU&     h  ;o      9          Ɛ&>pTW&       ;o      9    5      Ɛ&rpTY&     ^ Ó ;o      %9          Ɛ&pT[&      ē ;o      ɡ9          Ɛ&pT]&     _ œ ;o      9    0      Ɛ&"qT_&     ` Ɠ ;o      9    A      Ɛ&tqTa&     a Ǔ ;o      9          Ɛ&qTc&     ŏ ȓ ;o      9    z      Ɛ&qTe&      ɓ ;o      a9          Ɛ&$rTg&     d ʓ ;o      M9          Ɛ&XrTi&     e ˓ ;o      c9           Ɛ&rTk&     f ̓ ;o      R9           Ɛ&rTm&      ͓ ;o      9           Ɛ&rTo&     F Γ ;o      ϰ9          Ɛ&(sTq&     h ϓ ;o      9    T      Ɛ&^sTs&     i Г ;o      ׳9          Ɛ&sTu&      ѓ ;o      ~9    5      Ɛ&sTw&     j ғ ;o      9    @      Ɛ&tTy&     k ӓ ;o      9    s      Ɛ&LtT{&     l ԓ ;o      i9          Ɛ&tT}&      Փ ;o      9          Ɛ&tT&     7 ֓ ;o      9    2      Ɛ&tT&      ד ;o      9    0      Ɛ&uT&     r ؓ ;o      9    P      Ɛ&*uT&      ٓ ;o      o9    L      Ɛ&uT&      ړ ;o      9          Ɛ&uT&      ۓ ;o      `9    t      Ɛ&vT&      ܓ ;o      9          Ɛ&jvT&     r ݓ ;o      w9    X      Ɛ&vT&      ޓ ;o      9          Ɛ&wT&     v ߓ ;o      9          Ɛ&bwT&     x  ;o      9    B      Ɛ&wT&       ;o      9           Ɛ&wT&       ;o      9          Ɛ&8xT&     ԣ  ;o      9    *      Ɛ&xT&     |  ;o      9    <      Ɛ&xT&     }  ;o      O9    _      Ɛ&yT&     ~  ;o      9          Ɛ&PyT&       ;o      l9    f      Ɛ&yT&       ;o      9    I      Ɛ&zT&       ;o      9           Ɛ&2zT&       ;o      9          Ɛ&VzT&       ;o      9          Ɛ&zT&       ;o      v9    >      Ɛ&zT&     4  ;o      9          Ɛ&
{T&     i  ;o      9    C      Ɛ&L{T&       ;o      9           Ɛ&{T&       ;o      
9          Ɛ&{T&       ;o      9          Ɛ&{T&     b  ;o      T9    #      Ɛ&*|T&       ;o      x9          Ɛ&Z|T&     ΀  ;o      D9           Ɛ&~|T&       ;o      E9          Ɛ&|T&       ;o      9           Ɛ&}T&       ;o      9           Ɛ&F}T&     Ə  ;o      9          Ɛ&|}T&       ;o      9    |      Ɛ&}T&     5Q  ;o      9          Ɛ&~T&       ;o      9          Ɛ&T~T&       ;o      k9          Ɛ&~T&       ;o      9    .      Ɛ&~T&       ;o      9    e      Ɛ&8T&       ;o      9    }      Ɛ&tT&        ;o      :    z      Ɛ&T&     =  ;o      :    l      Ɛ&T&    ;o      :           Ɛ&T&    ;o      D:    i      Ɛ&ZT&       ;o      :    f      Ɛ&T&       ;o      :    v      Ɛ& T&       ;o      	:    y      Ɛ&pT&     '  ;o      :          Ɛ&T&     (  ;o      :          Ɛ&T&      	 ;o      y:          Ɛ&T&      
 ;o      :          Ɛ&fT&       ;o      :    }      Ɛ&T&       ;o      :          Ɛ&T&     \ 
 ;o      :    .      Ɛ&T&       ;o      :    \      Ɛ&FT&                               ;o      ):    6      Ɛ&xT&       ;o      `:    $      Ɛ&T&     S  ;o      :          Ɛ&T&     8  ;o      >:           Ɛ&T&       ;o      &:    .      Ɛ&T&       ;o      U:    Y      Ɛ&,T&     π  ;o      :          Ɛ&PT '     ]  ;o      a!:           Ɛ&T'     q  ;o      3":    6      Ɛ&T'     m  ;o      j#:    "      Ɛ&T'       ;o      $:          Ɛ&2T'       ;o      i&:          Ɛ&VT
'     |  ;o      ':          Ɛ&T'     Y  ;o      W):    1      Ɛ&T'       ;o      -:          Ɛ&T'       ;o      l/:          Ɛ&zT'       ;o      0:          Ɛ&T'        ;o      3:    K      Ɛ&T'      ! ;o      4:           Ɛ&&T'     r " ;o      5:           Ɛ&JT'      # ;o      6:          Ɛ&T'      $ ;o      [8:           Ɛ&T'      % ;o      9:    
      Ɛ&T '      & ;o      '::    0      Ɛ&T"'     I ' ;o      X;:          Ɛ&T$'      ( ;o       =:    <      Ɛ&<T&'     d ) ;o      ]>:    h      Ɛ&T('     r * ;o      @:    G      Ɛ&T*'      + ;o      B:           Ɛ&T,'     / , ;o      B:           Ɛ&@T.'     @ - ;o      C:    }      Ɛ&xT0'      . ;o      XE:          Ɛ&T2'     W / ;o      G:    h      Ɛ&T4'     @ 0 ;o      AI:          Ɛ&T6'      1 ;o      4K:          Ɛ&hT8'      2 ;o      M:    H      Ɛ&T:'      3 ;o      _O:          Ɛ&T<'      4 ;o      dQ:          Ɛ&T>'      5 ;o      DS:          Ɛ&LT@'      6 ;o      aT:    S      Ɛ&TB'      7 ;o      U:          Ɛ&TD'      8 ;o      V:          Ɛ&HTF'     µ 9 ;o      X:    Y      Ɛ&TH'     ĵ : ;o      [:          Ɛ&TJ'     ŵ ; ;o      \:          Ɛ&TL'      < ;o      ^:          Ɛ&hTN'     Ƶ = ;o      ]`:          Ɛ&TP'      > ;o      b:    (      Ɛ&TR'     ɵ ? ;o      	f:          Ɛ&TT'      @ ;o      k:          Ɛ&TV'      A ;o      l:    \      Ɛ&TX'     7  B ;o      n:          Ɛ&2TZ'      C ;o      o:    -      Ɛ&T\'      D ;o      p:          Ɛ&T^'      E ;o      s:    g      Ɛ&&T`'      F ;o      -v:          Ɛ&Tb'      G ;o      w:    <      Ɛ&"Td'      H ;o      9y:          Ɛ&Tf'     Ŏ I ;o      z:    6      Ɛ&Th'     
 J ;o      #}:          Ɛ&0Tj'      K ;o      ~:          Ɛ&pTl'      L ;o      :          Ɛ&Tn'      M ;o      :          Ɛ&Tp'      N ;o      :           Ɛ&&Tr'      O ;o      e:    >      Ɛ&JTt'     ߀ P ;o      :          Ɛ&Tv'      Q ;o      >:          Ɛ&Tx'      R ;o      Ŋ:           Ɛ&HTz'      S ;o      n:           Ɛ&lT|'      T ;o      Q:           Ɛ&T~'      U ;o      G:    X      Ɛ&T'      V ;o      :          Ɛ&jT'      W ;o      :    q      Ɛ&T'      X ;o      -:    7      Ɛ&T'      Y ;o      e:    _      Ɛ&,T'      Z ;o      ŕ:          Ɛ&PT'     ԏ [ ;o      x:           Ɛ&T'       \ ;o      $:    %      Ɛ&T'     a ] ;o      J:    \      Ɛ&T'       ^ ;o      :          Ɛ&^T'     ir _ ;o      a:    ^      Ɛ&T'     # ` ;o      :    /      Ɛ&T'      a ;o      :    G      Ɛ&hT'     & b ;o      8:           Ɛ&T'      c ;o      
:          Ɛ&T'     j d ;o      ʣ:           Ɛ&$T'     ) e ;o      :          Ɛ&lT'     ; f ;o      :          Ɛ&T'     < g ;o      :    $      Ɛ&T'     .  h ;o      :          Ɛ&T'     O- i ;o      y:          Ɛ&6T'     = j ;o      ~:          Ɛ&T'     > k ;o      k:          Ɛ&T'     @ l ;o      :    C      Ɛ&RT'     A m ;o      8:    w      Ɛ&T'     D n ;o      :           Ɛ&T'     F o ;o      :          Ɛ&8T'     ֣ p ;o      :          Ɛ&rT'     օ q ;o      :          Ɛ&T'     H r ;o      }:          Ɛ&T'     jr s ;o      -:    n      Ɛ&hT'      t ;o      :    3      Ɛ&T'     e u ;o      :           Ɛ&T'     G v ;o      :          Ɛ&BT'      w ;o      :          Ɛ&tT'     M x ;o      .:    Y      Ɛ&T'     B y ;o      :          Ɛ&T'     K z ;o      f:          Ɛ&RT'     N { ;o      !:    %      Ɛ&T'      | ;o      G:          Ɛ&T'     Q } ;o      :           Ɛ&T'     R ~ ;o      	:          Ɛ&T'     S  ;o      :          Ɛ&@T'     \  ;o      :          Ɛ&T'  q  ;o      I:          Ɛ&bT'    ;o      >:          Ɛ&T'     ;o      
:          Ɛ&<T'  d  ;o      :          Ɛ&rT'       ;o      t:    H      Ɛ&T'     g  ;o      :          Ɛ&T'     h  ;o      :    !      Ɛ& T'       ;o      :           Ɛ&DT'     i  ;o      :           Ɛ&tT'        ;o      :          Ɛ& U'        ;o      :    g      Ɛ& U'     }  ;o      x:          Ɛ&6U'       ;o      ':          Ɛ&U'       ;o      :          Ɛ&U'       ;o      \:          Ɛ&^U'     {  ;o      :          Ɛ&U'       ;o      :          Ɛ&U'     e  ;o      :          Ɛ&2U'       ;o      H ;          Ɛ&|U'       ;o      A;    S      Ɛ&U'       ;o      ;    N      Ɛ& U (       ;o      ;          Ɛ&DU(     |  ;o      ;    i      Ɛ&U(       ;o      ;          Ɛ&8U(       ;o      =
;          Ɛ&U(       ;o      ;    a      Ɛ&U
(       ;o      _
;    E      Ɛ&,U(       ;o      ;          Ɛ&U(     ~  ;o      ;    P      Ɛ&U(       ;o      ;    o      Ɛ&U(       ;o      U;    h      Ɛ&(U(       ;o      ;          Ɛ&LU(       ;o      a;          Ɛ&pU(       ;o      ;    x      Ɛ&U(       ;o      a;    ;      Ɛ&XU(       ;o      ;    ^      Ɛ&bXU(       ;o      ;          Ɛ&XU (       ;o      ;          Ɛ&ȨU"(       ;o      2 ;    #      Ɛ&U$(       ;o      V!;           Ɛ&TU&(       ;o      $";           Ɛ&U((       ;o      #;          Ɛ&U*(       ;o      $;          Ɛ&(U,(       ;o      %;          Ɛ&LU.(       ;o      ';    m      Ɛ&U0(       ;o      (;          Ɛ&U2(       ;o      *;          Ɛ&VU4(       ;o      m,;          Ɛ&U6(     \   ;o      .;          Ɛ&U8(     '  ;o      /;    Y      Ɛ&U:(       ;o      N1;    e      Ɛ&U<(       ;o      2;          Ɛ&NU>(        ;o      ?4;          Ɛ&~U@(     3  ;o       6;    S      Ɛ&UB(     4  ;o      T9;          Ɛ&UD(       ;o      <=;           Ɛ&,UF(       ;o      .>;           Ɛ&pUH(     E  ;o       ?;    &      Ɛ&UJ(     F  ;o      G@;    &      Ɛ&UL(       ;o      nA;           Ɛ&2UN(       ;o      &B;          Ɛ&VUP(     g  ;o      C;    [      Ɛ&UR(       ;o      E;    }      Ɛ&UT(       ;o      F;    /      Ɛ&,UV(       ;o      I;          Ɛ&UX(       ;o      L;          Ɛ&UZ(      Ô ;o      N;          Ɛ&JU\(      Ĕ ;o      eS;          Ɛ&U^(      Ŕ ;o      X;          Ɛ&ΰU`(      Ɣ ;o      Y;    !      Ɛ&Ub(      ǔ ;o      [;    H      Ɛ&dUd(      Ȕ ;o      d];          Ɛ&Uf(      ɔ ;o      0_;          Ɛ&Uh(      ʔ ;o      a;          Ɛ&:Uj(      ˔ ;o      c;          Ɛ&Ul(      ̔ ;o      d;          Ɛ&Un(     Ķ ͔ ;o      f;          Ɛ&Up(     9 Δ ;o      h;          Ɛ&ZUr(     Ŷ ϔ ;o      j;          Ɛ&Ut(     ڻ  Д ;o      l;          Ɛ&޳Uv(     ݻ  є ;o      fn;          Ɛ&Ux(     ɶ Ҕ ;o      
p;          Ɛ&6Uz(     ʶ Ӕ ;o      q;          Ɛ&ZU|(     ȶ Ԕ ;o      s;    '      Ɛ&U~(     Ƕ Ք ;o      u;          Ɛ&شU(        ֔ ;o      kw;    R      Ɛ&U(       ה ;o      y;    M      Ɛ&,U(     ˶ ؔ ;o      |;          Ɛ&zU(     ζ ٔ ;o      ~;    $      Ɛ&U(     ϶ ڔ ;o      *;    (      Ɛ&$U(     Ѷ ۔ ;o      S;    7      Ɛ&^U(     Ҷ ܔ ;o      ;    ^      Ɛ&V(     ' ݔ ;o      ;          Ɛ&0V(     ( ޔ ;o      ;    0      Ɛ&V(     + ߔ ;o      4;    G      Ɛ& V(     .  ;o      |;    9      Ɛ&DV(     ,  ;o      ;    0      Ɛ&hV(     0  ;o      ;    0      Ɛ&V(     1  ;o      ;    3      Ɛ&V(     3  ;o      L;    !      Ɛ&	V(     4  ;o      n;          Ɛ&	V(     <  ;o      Q;          Ɛ&	V(     =  ;o      m;          Ɛ&>
V(     )  ;o      ;          Ɛ&
V(     5  ;o      ;          Ɛ&
V(     @  ;o      ;          Ɛ&
V(       ;o      x;    M      Ɛ&V(     B  ;o      ƴ;    #      Ɛ&XV(       ;o      ;    -      Ɛ&V(     d  ;o      ;    m      Ɛ&V(     e  ;o      ;    	      Ɛ&6V(     g  ;o      ;          Ɛ&< (        ;o      D;          Ɛ&zV(     h  ;o      (;          Ɛ&V(     I  ;o      A;          Ɛ&V(     j  ;o      ;    h      Ɛ&8V(     k  ;o      ;          Ɛ&nV(     l  ;o      ;          Ɛ&V(     m  ;o      ;    ?      Ɛ&V(     n  ;o      K;    P      Ɛ&V(     8  ;o      ;    6      Ɛ&V(     o  ;o      ;    6      Ɛ&V(     p  ;o      
;    +      Ɛ&V(     8  ;o      6;          Ɛ&NV(     q  ;o      N;    #      Ɛ&V(     d  ;o      r;    y      Ɛ&V(     e  ;o      ;    9      Ɛ& V(     r   ;o      &;    T      Ɛ&DV(       ;o      {;    ^      Ɛ&cV(        ;o      ;    c      Ɛ&cV(     s  ;o      >;          Ɛ&4dV(     t  ;o      ;          Ɛ&ddV(     u  ;o      R;          Ɛ&dV(     v  ;o      ;          Ɛ&dV(     w  ;o      ;          Ɛ&eV(     ֫   ;o      %;    w      Ɛ&@eV(     x 	 ;o      ;    a      Ɛ&deV(     y 
 ;o      ;          Ɛ&eV(     z  ;o      ;    q      Ɛ&eV(     {  ;o      3;          Ɛ&eV(     | 
 ;o      ;          Ɛ&@fV(     }  ;o      <    O      Ɛ&vfV(     ~  ;o      
<          Ɛ&fV(       ;o      <          Ɛ&fV(       ;o      <          Ɛ&gV(       ;o      v	<    b      Ɛ&@gV(       ;o      
<    ,      Ɛ&gV(     X  ;o      <          Ɛ&gV(       ;o      <    7      Ɛ&gV )       ;o      <    @      Ɛ&hV)       ;o      H<    O      Ɛ&4hV)     <  ;o      <    W      Ɛ&lhV)       ;o      <    G      Ɛ&hV)     ~   ;o      8<          Ɛ&hV
)        ;o      <           Ɛ&:iV)        ;o      <    n      Ɛ&xiV)       ;o      [<          Ɛ&iV)        ;o      Y<          Ɛ&iV)       ;o      C<          Ɛ&BjV)     q   ;o      !<    |      Ɛ&vjV)     l ! ;o      "<    B      Ɛ&V)     s " ;o      #<    ?      Ɛ&غV)      # ;o      %<    F      Ɛ&V)      $ ;o      I&<          Ɛ&HV)      % ;o      .(<          Ɛ&V )     r & ;o      *<           Ɛ&V")      ' ;o      +<          Ɛ&V$)      ( ;o      .<          Ɛ&>V&)      ) ;o      2<    ]      Ɛ&vV()     ? * ;o      6<          Ɛ&V*)      + ;o      7<          Ɛ&V,)      , ;o      :<    S      Ɛ&V.)      - ;o      F=<    C      Ɛ&ZV0)      . ;o      @<          Ɛ&V2)      / ;o      EB<          Ɛ&V4)      0 ;o      C<          Ɛ&V6)     5 1 ;o      E<    F      Ɛ&4V8)     e 2 ;o      F<    
      Ɛ&XV:)      3 ;o      H<    "      Ɛ&V<)      4 ;o      J<    ,      Ɛ&ʾV>)      5 ;o      KK<           Ɛ&V@)      6 ;o      3L<    *      Ɛ&>VB)      7 ;o      ^M<          Ɛ&~VD)      8 ;o       O<          Ɛ&VF)      9 ;o      P<    
      Ɛ&VH)      : ;o      Q<          Ɛ&VJ)     "q ; ;o      T<          Ɛ&NVL)     u; < ;o      V<          Ɛ&rVN)     l = ;o      oX<          Ɛ&VP)      > ;o      Z<           Ɛ&VR)      ? ;o      Z<    y      Ɛ&^VT)     h @ ;o      u\<           Ɛ&VV)      A ;o      ]]<           Ɛ&VX)     `  B ;o      =^<           Ɛ&.VZ)     Q] C ;o      _<          Ɛ&RV\)      D ;o      b<    F      Ɛ&V^)      E ;o      5e<          Ɛ&V`)      F ;o      i<          Ɛ&Vb)      G ;o      k<          Ɛ&Vd)      H ;o      n<    V      Ɛ&2Vf)      I ;o      p<          Ɛ&Vh)      J ;o      r<          Ɛ&Wj)     = K ;o      s<           Ɛ&&Wl)      L ;o      <t<          Ɛ&dWn)      M ;o      u<          Ɛ&Wp)     q N ;o      w<          Ɛ&Wr)      O ;o      y<          Ɛ&Wt)      P ;o      H{<           Ɛ&
Wv)     ם  Q ;o      |<    8      Ɛ&FWx)      R ;o      V}<    	      Ɛ&jWz)     S S ;o      `<    -      Ɛ&s |)       T ;o      <           Ɛ&W~)      U ;o      w<    D      Ɛ&W)      V ;o      <          Ɛ&
W)      W ;o      <          Ɛ&XW)      X ;o      (<          Ɛ&W)     a' Y ;o      <          Ɛ&W)      Z ;o      <    |      Ɛ&<W)     ( [ ;o      <    m      Ɛ&zW)     ͘ \ ;o      <    T      Ɛ&W)      ] ;o      <           Ɛ&*W)     b' ^ ;o      <    _      Ɛ&NW)     0  _ ;o      "<    0      Ɛ&W)     1  ` ;o      S<    A      Ɛ&W)      a ;o      <    n      Ɛ&W)     :  b ;o      <    A      Ɛ&JW)      c ;o      F<          Ɛ&W)       d ;o      <    '      Ɛ&$W)      e ;o      <          Ɛ&lW)     ; f ;o      <    o      Ɛ&W)      g ;o      R<          Ɛ&W)     #8 h ;o      <          Ɛ&W)      i ;o      <          Ɛ&8W)      j ;o      l<          Ɛ&\W)      k ;o      <          Ɛ&W)      l ;o      <          Ɛ&W)      m ;o      ȭ<          Ɛ&W)      n ;o      m<          Ɛ&W)      o ;o      
<          Ɛ&W)     8 p ;o      <          Ɛ&TW)      q ;o      -<          Ɛ&xW)      r ;o      (<    	      Ɛ&W)      s ;o      2<          Ɛ&W)      t ;o      6<          Ɛ&W)      u ;o      <          Ɛ&XW)      v ;o      <          Ɛ&W)      w ;o      <          Ɛ&4 W)      x ;o      <          Ɛ& W)      y ;o      <    1      Ɛ& W)      z ;o      <    s      Ɛ&!W)      { ;o      _<    p      Ɛ&*!W)      | ;o      <    k      Ɛ&!W)      } ;o      <<          Ɛ&!W)      ~ ;o      :<          Ɛ&
"W)       ;o      <          Ɛ&."W)       ;o      <          Ɛ&f"W)       ;o      <          Ɛ&"W)       ;o      <          Ɛ&"W)       ;o      o<          Ɛ&"W)       ;o      5<          Ɛ&#W)       ;o      L<          Ɛ&R#W)       ;o      d<          Ɛ&#W)       ;o      I<          Ɛ&#W)       ;o      <          Ɛ&#W)       ;o      <    p      Ɛ&$W)       ;o      <          Ɛ&H$W)       ;o      <          Ɛ&$W)       ;o      <          Ɛ&$W)       ;o      <          Ɛ&%W)       ;o      x<    E      Ɛ&4%W)       ;o      <          Ɛ&X%W)       ;o      <          Ɛ&%W)       ;o      <    A      Ɛ&%W)       ;o      <    %      Ɛ&&&W)       ;o      ( =          Ɛ&l&W)     9  ;o      ==          Ɛ&&W)       ;o       =          Ɛ&&W *       ;o      =    `      Ɛ&b'W*       ;o      f=          Ɛ&'W*       ;o      +
=          Ɛ&'W*       ;o      +=          Ɛ&(W*        ;o      
=    f      Ɛ&D(W
*     9  ;o      =    T      Ɛ&x(W*     V  ;o      j=          Ɛ&(W*       ;o      =    >      Ɛ&(W*     
  ;o      R=          Ɛ&)W*       ;o      ;=    P      Ɛ&p)W*     .  ;o      =          Ɛ&)W*       ;o      1+=    C      Ɛ&)W*       ;o      u-=          Ɛ&0*W*       ;o      A=    (      Ɛ&*W*     
  ;o      U=    :      Ɛ&*W*     %  ;o      V=          Ɛ&2,W *       ;o      	X=          Ɛ&h-W"*       ;o      Y=          Ɛ&}W$*     )  ;o      h[=          Ɛ&~W&*       ;o      ]=    V      Ɛ&~~W(*     .  ;o      s^=          Ɛ&~W**     /  ;o      6`=    e      Ɛ&~W,*     
  ;o      a=          Ɛ&"W.*     4  ;o      +c=          Ɛ&^W0*     5  ;o      /e=    	      Ɛ&W2*     6  ;o      9g=          Ɛ&W4*     7  ;o      i=          Ɛ&W6*     8  ;o      k=          Ɛ&ZW8*     9  ;o      l=          Ɛ&W:*     :  ;o      n=          Ɛ&W<*     ;  ;o      p=          Ɛ&$W>*     <  ;o      r=          Ɛ&W@*     3  ;o      at=          Ɛ&WB*     ?  ;o      dx=          Ɛ&WD*     @  ;o      y=    K      Ɛ&DWF*     >  ;o      H{=                                  Ɛ&xWI*     6  ;o      ~=          Ɛ&WK*       ;o      =    +      Ɛ&WM*     B  ;o      =    (      Ɛ&(WO*     C  ;o      C=          Ɛ&fWQ*     D  ;o      Ճ=          Ɛ&WS*     E  ;o      Ն=    h      Ɛ&WU*     G  ;o      >=           Ɛ& WW*     H  ;o      =          Ɛ&RWY*     -  ;o      q=    d      Ɛ&W[*     I Õ ;o      ֎=          Ɛ&W]*     J ĕ ;o      =    $      Ɛ&W_*     j ŕ ;o      =    @      Ɛ&DWa*     K ƕ ;o      =          Ɛ&zWc*     L Ǖ ;o      =          Ɛ&We*     gH ȕ ;o      ==          Ɛ&Wg*     M ɕ ;o      Ԛ=          Ɛ&Wi*     N ʕ ;o      =          Ɛ&Wk*     O ˕ ;o      =    L      Ɛ&Wm*     T ̕ ;o      ڟ=    >      Ɛ&Wo*     S ͕ ;o      =    A      Ɛ&
Wq*     R Ε ;o      [=    B      Ɛ&BWs*     U ϕ ;o      =    #      Ɛ&Wu*     P Е ;o      ¤=    >      Ɛ&Ww*     W ѕ ;o      =    u      Ɛ&Wy*     V ҕ ;o      w=          Ɛ&BW{*     Q ӕ ;o      =    H      Ɛ&fW}*     [ ԕ ;o      @=    o      Ɛ&W*     Z Օ ;o      =    x      Ɛ&W*     \ ֕ ;o      )=    e      Ɛ& W*     ] ו ;o      =    J      Ɛ&W*     ^ ؕ ;o      گ=          Ɛ&W*     a ٕ ;o      =          Ɛ&&W*     _ ڕ ;o      =          Ɛ&JW*     d ە ;o      =          Ɛ&W*     e ܕ ;o      B=          Ɛ&W*     w( ݕ ;o      =          Ɛ&*W*     h ޕ ;o      =          Ɛ&W*     i ߕ ;o      =          Ɛ&W*     i  ;o      O=          Ɛ&W*     j  ;o      	=          Ɛ&W*     k  ;o      =          Ɛ&@W*     l  ;o      Y=          Ɛ&pW*     m  ;o      =          Ɛ&W*     n  ;o      =          Ɛ&W*     ?  ;o      %=          Ɛ&$W*       ;o      =           Ɛ&W*     o  ;o      =    B      Ɛ&W*     t  ;o      F=           Ɛ&W*     p  ;o      9=           Ɛ&r.X*              (    LQ      `l  #   al      l     l     l     l  $   l     m  6   )m     `m  	   lm     vm     m     m     m     m     m     m    m    n    p     	q  8   #q  %   \q  F   q  v   q     @r     Sr     [r  
   kr  	   vr  
   r  8   r     r     r  7   r     s     "s  1   8s     js     s  2   s  %   s  '   s  %   
t  '   3t     [t     `t     bt     t     t     t  
   t     t     t     t     t  
   
u     u     (u     5u     Bu  $   Hu     mu     u     u      u     u     u     u     v  !   (v     Jv     _v     {v  #   v     v  `   <w  Z   w     w     x     /x     1x     5x     Lx     Rx     [x     rx  0   x  3   x     x     
y     'y     >y     Xy     ty     y     y  
   y     y     y     y     y     y  %   y     "z     Az     Uz     kz     z     z     z     z     z     z  *   z  3   ){  1   ]{  E   {  C   {  <   |  1   V|  2   |     |     |     |     }      1}     R}     q}     }     }     }  &   }  &   
~     4~  7   S~  1   ~     ~  +   ~          '  #   E     i  5                     -         D     e       "     8   À               -     J  	   Y  #   c                    ؁            )        H     g       "     P   Ƃ          ,  H   A  &             Ƀ  !   Ѓ  ,             +     /  	   L  !   V  *   x       '                  
     $  $   <     a     s                    ׅ       
     
        %  1   8  
   j     x            3     >     $   -     R     i                    ه  +             5  o   S  #   È            $        B     \  '   x  9        ډ       z     "               8   ʊ       
        %     2     L     l       +   %     Q     i     ~       "        ʌ     ی  (          #   -  &   Q  ?   x  '     @        !     -     =     M     d  "   v  0        ʎ     ώ     ގ  7        %     -     9     J     `     l     r  0   y               Џ       2     %   0     V     k  *   z  6     +   ܐ          &     9  "   
  !   -  d   O  e     d     i     o     H   Y       1     )                       /  /   >     n     }  5        ʕ  K        5          +  +   @  *   l  )     )     -     )        C     `     d  7   j  D               '     P        j       	                       ֙          {  '        4  +   C     o       )        ƛ  9             2     H     ]     o  "                    (                    "     +     -   K     y                    ʝ     ܝ       O        N     d     |  
          %        ۞  )     !   $  "   F     i       +        ȟ     ߟ            !        2     N     g     s                Ơ     ٠               '     ;  4   K                    ɡ                    1     N     e      x  !          4   բ  M   
  2   X            *   ã  8        '     4     K     c     z       3     $   Ӥ  +        $  
   9     G     I     a     h  7   p  ;          !        %     ;     [  '   s  %             ަ                    /     3     9                    ¨     ɨ     ը       '   
  
   2     =     L     b     g  
                    H     L   	     V     i            %        ʪ       #        !     >     [      r             "     (        
     )  %   6     \  2   v            #   ˬ       *        2     4     G  #   L     p     u  	     	     "     ;     #     <     
   [     i  
     .     	   Į     ή  `        A  !   V  )   x                              կ                    %     ;     P     o  "             ɰ                    (     <     U  )   j  a               g   /               6  -   S       !          "   ȳ  '     Q        e            
             Ӵ          
     *     G     c  #          
         ɵ                  #   3     W     k     |  -        ʶ  )             +     A     Y  ,   t       
        ȷ  	   ͷ  "   ׷  %              %     :  
   A     L  &   U  )   |       5     ^        N  $   h  %          ^   f  _   ź  }   %       &   Z  )     '     >   Ӽ  D     !   W  '   y  -     #   Ͻ       )        =  )   Z       )     ,   ˾               1     L     g  E   x  #                       3     N      m       q          :   2     m                                      0   5     f       #               )     &     #   ?  -   c                           )        A  %   Q  %   w  ,     '     :        -  -   L  0   z  /               '        %     7  '   L  $   t  "               
     2     Q   &  *   x  +               )     o        x  6                         0           !   :  "   \  #                         !        *  
   @     K  <   e            %                            +  d   D  *     (     ,        *     C  0   \       
                         0          !   0     R     p  $                                   "   4  $   W     |                                 '   2     Z  +   z  "                          '        <     [     x  <                %             1     H     [  m   v                    3     L  +   f  3     1     
     '     -   .  '   \  '     .     	                       9     U     p  /               *     ?        E  B   X  p          /               .     O   !  )   q            	     <          5   %     [     m                 :          1        P  L   l                                             ,     5     K     \     b  	   o     y                                         4     ;  
   B  
   P  
   [  	   f     p  #   v  )                    P        H     a       n     F   
  N   T  
     "                    .     .   +  /   Z  V     -     -     $   =  -   b  #     0     6     
        *     =     P  
   c  (   q  1     (     )             8     Q     `     z  !                               %   0     V  &   j            0                   :      P     q            7     .        &  !   >  4   `  #                    '   
     2     Q     l       #     %     "             #     8     M     d     }                 ,             
          9     X     k     ~  #               _     B   K                                   +  &   I     p  
               J     i   
     w  &               7        #     3     N  ;   b  V     +     "   !     D  &   ^  !          r     0   1  "   b          +  /   I     y  H     F     w     N          (        &     B  )   N     x  $     ,     &     '        +  %   D     j     p                 $     '     *     (   7     `     z            J          -     +   F     r     x       "     +               D     J   M            %     "     9        V     q             "                   
     +     ?     Y     p       $                         %   "     H     W     n            %                       ,     4  [   H            !                       %     *  7   G                                     /     7   A  4   y  /               -        A  @   ]            3          &        7     I     f     v       1                            .     5  $   K  	   p  	   z  )          
   p  1   ~                            !   ,     N     ]     u  J     "                        .     G     Z     k     }                                                &    5    O    m '    &    &    "        L   ( 9   u     0        !       4 )   S    } 3                           (    = 
   L #   Z #   ~ $            &               3    G    _    |         	    7        D    ]   G .    %    ,    [   ' ;    w    $   7 7   \ )    &    K    $   1	 #   V	 /   z	    	    	    	 "   
 &   $
 U   K
 @   
 Q   
    4    M    c +   x     R    L    .   a         F           	
    
    5
    K
    b
    y
     
    
    
    
 2   
 !   . #   P    t                        	    !    9 $   Q    v     (    #                -    L )   _                 '    '    '   =    e 0            -    8    !   U '   w         +        !        % &   F    m         .        )    !   ! B   C F    E    B      V %   > &   d             1         :   3 
   n 	   |     !                        `   ]  x r      I @   e &    O                        	        >       2    ? 6   T         5              ;     -   ?  3   m  -     3        !    	! ?   ! &   K! #   r!    !    !    !    !    !    !    !    "    "    ,"    ;" *   A"    l"    "    " @   "    " !   
#    /#    O# -   o# (   # %   #     # =   
$    K$    %    %    &    9&    W&    Y&     ]&    ~&    &    & !   & A   & I   '    X'    v'     ' #   ' $   '    '    (    *(    ?(    N(    k(    (    (    ( -   ( '   (    ( (   ) (   :) !   c)    )    )    )    ) "   ) 7   * N   C* P   * Y   * W   =+ T   + D   + E   /, ,   u, #   , .   , %   , -   - -   I- $   w- $   - &   - '   - 7   . 7   H. '   . E   . B   . -   1/ .   _/ '   / &   / /   / #   
0 F   10 &   x0 %   0 -   0 5   0 )   )1 (   S1 '   |1 G   1 9   1     &2    G2 *   ^2 !   2    2 *   2 %   2    3    3 '   ?3 %   g3    3 -   3 %   3 &   3 *   4 (   H4 j   q4 "   4 "   4 Z   "5 *   }5    5    5     5 /   5    6    %6    *6 	   I6 )   S6 ,   }6    6 -   6    6    7    ,7    K7 (   i7    7    7    7 !   7    7    8 &   /8 
   V8    a8     u8 4   8    8    8     8 $   9 ;   69 Q   r9 4   9    9 #   :    5:    N: $   m:    : .   : !   : 1   : t   ,; +   ;    ; $   ; /   <    <<    U< 3   t< B   < &   < %   =    8= 0   =    >    > P   1> '   >    > 
   >    > %   >    ?    ? 3   ?     @    @@    W@    r@ #   @    @    @ 0   @    
A $   $A -   IA A   wA 0   A D   A    /B 
   GB    UB    pB    B 2   B A   B    C    C    )C 8   ?C    xC 
   C    C    C    C 	   C    C C   C    D    -D    ?D     UD L   vD 8   D !   D    E 2   0E B   cE 9   E &   E    F    F '    G %   (G    NG    G    PH r   H    DI c   I    >J ;   XJ >   J    J    J    J    J 6   K    8K    GK :   `K %   K S   K   L %   M 1   =M =   oM =   M 7   M 7   #N 6   [N =   N .   N    N    O C   	O G   MO    O    O ,   O ]   O #   -P 
   QP 	   \P    fP    |P $   P    P    P    YQ :   R    RR 2   cR    R %   R /   R )   S @   +S    lS    S    S    S    S +   S    T    T    (T 6   .T    eT    iT    oT 3   xT 9   T 1   T    U    8U "   HU    kU    U    U    U f   U    1V    NV    mV    V    V 9   V #   V 6   W $   PW $   uW    W "   W 0   W    X    %X    ;X    LX     dX    X    X    X    X    X    Y    Y    /Y "   DY    gY    Y    Y <   Y &   Y    Z    'Z    DZ    cZ    Z    Z &   Z    Z    Z #   [ &   4[    [[ E   {[ i   [ C   +\ &   o\    \ ,   \ A   \ 
   %]    3]    O]    i]    ]    ] ;   ]    ] ,   ^    0^    F^    Y^ !   [^    }^    ^ @   ^ S   ^ &   _ 0   F_    w_ $   _    _ @   _ 9   ` !   M`    o`    `    `    `    `    `    `    a    b    b    b 
   b !   b '   c E   :c    c    c #   c    c    c    c    c    d %   d _   =d j   d    e (   e    Ee    Ze .   ne    e    e 8   e (   f "   /f    Rf '   hf '   f    f %   f 2   f    g    <g )   Kg '   ug 7   g 	   g "   g +   h    .h <   Ih    h    h    h )   h    h    h 
   h    h )   h =   $i ,   bi @   i    i    i 
    j 4   j 	   Cj    Mj    dj    j &   j :   &k    ak    ek    kk    sk    k    k    k    k    k    k    l     'l    Hl %   fl    l     l    l    l    l    m    -m    Im ;   _m    m -   &n 4   Tn    n    o     o    o /   p    <p &   Vp    }p 4   p 2   p l   p    fq    q    q    q    q    q    q    r    5r    Qr    lr 4   r "   r    r 0   r    ,s    Es "   _s @   s    s    s     s 6   t    Kt 1   jt    t    t !   t "   t ?   u +   Tu    u    u    u #   u )   u    u    u    v    v    %v -   -v &   [v    v :   v    v    dw *   w 0   w    w    x    py    z    z -   { 3   { 5   %| H   [| L   | (   | .   } 4   I} '   ~} +   } 4   } !   ~ 1   )~     [~ 1   |~ 5   ~    ~ &    (   +    T    r Q    &        &    '   B .   j (    )    &        %    D   Ё &       < $   N    s         "   ɂ     8    '   A *   i ,           ۃ .    3   )    ] 1   {     $   ʄ (        "   0 /   S     /    /   ҅ 6    1   9 D   k '    /   ؆ ;    J   D         <           	 4   ' &   \ &        )        ,    Z   ( 6    +            5       +     F   Њ                % ?   > #   ~ !       ċ               !     B *   c .    !       ߌ     ?       E    d 7    
       Í    Ǎ 3   ͍         4    9   ؎ E       X    v ?       ԏ    ݏ            # .   ) C   X %    3    )         1   1    c    z     !       ґ *    *    ,   =    j     .       ϒ         "    /   A +   q )    '   Ǔ         )   
     4 3   U 4    &        @    (   B    k (   s            ϕ "    m    &   z !       Ö          =    G   ] E    
    )    5   # ,   Y ,    .                      -     N    o     E            -    I   G !    T            /   O         .    Y   ޜ -   8    f    ~ 
    D        8       ;    N    f    }     :        5        ; ]   \        џ    ן         
               *    3    G    V 
   ] 
   k    v         +   Š            $    9 
   U    `    g    t 	    	        "    ,                h   # "    -    *   ݢ     r    F       N +   a         -    3   ڤ 3    3   B {   v ?    <   2 +   o 5    '   Ѧ :    A   4    v                ŧ (   ֧ 0    1   0 ;   b /    +   Ψ        
    * (   E    n -    *    3    *    H   ? &    3    *    .    F   = +    &    (   ׫ +     0   , &   ] *    S    C    )   G /   q P    8    /   + /   [ &    :    2    (        I *   e .    7    1    '   ) .   Q +    (    ,   հ 3       6 	   K $   U 8   z        ñ    Ա $        ,   )    V &   q      /    s    [   ] (    8    '    *   C "   n '    (    2    *       @ 	   O    Y b   u    ص    Z 2   y     %   ƶ ?       ,    A %   a K    f   ӷ 1   : 3   l     *    !           + >    &        (    F       f Y    `   ߻    @ k   ܼ )   H 3   r        Ž 6   ҽ    	 9   ) 4   c (    6    $    ;       Y    `    z         '   ɿ ,    1    *   P    {             o       ` 7   ~ 4            	    $    '   -    U #   p I    <         "   < 3   _ (    @    '       %    B ,   ^ .            "           #    A    ^    y (                     (   5    ^    q !             (           5    N    g    o w            '   '    O    j         *    =        !   !    C    a    ~     '    6    0    ;   C 6    *        4       , X   G         B        2   ,    _ "   v             G       ,    A    Z $   p         &            5       (     7    "   T    w &        &    '       %    6 /   R k    $           #    3    N    m                                0    J    e 
    !        2            :   1 .   l .    &        Y    B   \ %    0        0    )   ? %   i     8    *            "   ? #   b             ,    ,    2   +    ^    x 3                #    "   7    Z    b     	    M    $    W       s :    +   4 0   ` p    A       D &    =    2   C /   v ]    5    $   : 6   _ #            &    $   	 `   . L    c       @ +   X )    D    1    s   % k    7       =    \ e   ` !                    3    M    g )                :    %   9 1   _             '         '        C    d      :    4    ;    @   O 6         "    .       : 9   T )    "    0    "    ,   / ,   \ 1    %    7    &    )   @ ;   j D    7    9   #    ] !   f B        "    &    +   %     Q    r     E    (    +    #   : H   ^ L    _    S   T         ]                s    +      U               '        g              .      q  )      L                   }  m            O  (    i                         O  ;        _      0            R   x   2        0  1        b        q                       4                           P                x    K          N    1    >    )            (    u  >                   @  e        j  d                V             F         f    9    y     &  e   P  6  d     T        
    I                                m                                      
         h     B  ,          [          8    #                       "  %        ~         O         J    I         J        R  n        s                     P          Q      c    $    s                       #  -          !                      .  M  G   l                     ]         3   /  "         Y  a          H      -        d  A                        2            
                     :                 W            F        M       
                	          d  t  3  5                  T     6       e            {                       n   a  @    !          	     T                         s  W      z  \         ?                         o    9   z               Q         $   ]                  S   8     ,      c  h  '      t       C     @      M    [      M      [            W            	                  |        Y        n  Y                                     k  5  1                                       p      q  Z                7  m                                                    =  $  =                                  w  `        2   A                K               |             o   o                    ,      *  v                  V                c      ~     7  v  0            4     -  ;              6        %        @                     %         ;                  F                              ^      *                        d             k   G                     k  7       [      D  o  
      D                     p                  i     q  <      !  
       U  5          ~                                          8      {  "  v             ^     A               O      P   _  i  D           C    v          }            H        b            	          "                .             {    U      L  I    v  D                       Q          f             >                                      u        a  K                                          ?   #   (      k    !   h     {          G              C      r  u  (      S    f            m    _                            k    t       y               `          Z  C                    2      /      X         u                         x  }  &                 \          `         #          ,                  5     \   Q                 #     z        >  c    :                 )                  	      &   g            ;    ?                      j   I                         n        7     H            G  X          J       E  F    y  j                    _               C     4      Y    +              N          H                  !      N                     F      i    r   ?          {           1             =                                  }   R      	        w      [     4          X                T              M      `            Q                           P  o      %       ;            %                        B              Z              g  b  
                                    &      i  ~         1  :               x      0          Z      ]     I    &                  R           .               *     J                        q                          =                  f         H        e           W                  z        N          |                                          9          p                  ~            B              E  (             L             "           5                
        y    L                  6                    '  <  .   -           :  '          :  
    t   ^   B  j                             r  6                           2               \  X                O  e  /  a  $  V        8            8  m                      x    U  
              S  p           h    J          y            @              K  W            Z         V      _  t  E      <    g    U     T      '          w       A  $      l       >            V             S           ,             u                           R      7               3  =   a   S    
               0  )                             g  9               w        X                               -  D  Y    ^      9             )   n  l                  K              b    4                                       A   ?               |          3              *  ]  r    w  /  f                                 }              \  B        h      l           p          G      E  3     +  +    l    z  <      c                      j    L    N   
        `    ^  /      b                  *    |      s  E              +           <                                               r                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
  (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: error: %s: info: %s: not found %s: the command is not allowed when lockdown is enforced %s: warning: - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 .sbat section can be embedded into EFI images only 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is RISC-V 32bit EFI file Check if FILE is RISC-V 64bit EFI file Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Command failed Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition UUID. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Filter the result like linux does. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of `%s'. Get crc32 checksum of FILE. Get disk cache info. Get eight bytes' value at the given offset. Get four bytes' value at the given offset. Get the UUID's value at the given offset. Get the byte's value at the given offset. Get the string specified at the given offset. Get two bytes' value at the given offset. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  Hexdump random data. ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invalid parameter Invalid tempo in %s Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt Linux not supported yet List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load a xen hypervisor. Load a xen module. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: M MAC verification failed MODULE MODULES Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Manipulate PCI devices. Match structures with the given handle. Match structures with the given type. Measure time used by COMMAND Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No path is specified.
 No path or device is specified.
 No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Output buffer too small Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Prefix not specified (use the -p option). Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read a CPU model specific register. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Reset all mappings to the default values. Retrieve SMBIOS information. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SBAT metadata SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select a structure when several match. Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM to TYPE.
 Set the base frequency. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot "%s" opened
 Slot %d opened
 Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Store the value in the given variable name. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 System management bus controller I/O space is at 0x%x
 T TARGET THEMES TPM unavailable Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown TPM error Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unrecognized compression `%s' Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Write a value to a CPU model specific register. Written SPD bytes: %d B.
 YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [-t type] [-h handle] [-m match] (-b|-w|-d|-q|-s|-u) offset [--set variable] [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [LENGTH] [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] [TERM] [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [default=%s] [vendor]:[device] `%s' is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found alloc-mem failed assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s' attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to redefine a function being executed attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: available targets: bad shim signature bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 big file signature isn't implemented yet bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 blocksize too large can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot allocate TPM event buffer cannot allocate command buffer cannot close `%s': %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get file location `%s': %s cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot rename the file %s to %s: %m cannot restore the original directory cannot save the original directory cannot seek `%s': %s cannot stat `%s': %s cannot sync `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of syslinux [default is parent directory of input file]. current directory of syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disable shim_lock verifier disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. efibootmgr failed to register the boot entry: %s embed FILE as a device tree (DTB)
 embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embed a specific DTB embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 failed to copy Grub to the PReP partition failed to get FDT failed to get canonical path of `%s' failed to read the sectors of the core image failed to retrieve the structure field failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' is too big file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected free-mem failed fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> handle hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s]; available targets: %s install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] interpret is not supported invalid DHCP option code invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid memory address (0x%s > 0x%s) invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage invalid zero blocksize ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. match missing `%c' symbol missing mandatory option for `%s' missing p-list filename module `%s' isn't loaded module isn't loaded name need an image and mountpoint new read is position beyond the end of the written data no APM found no DHCP info found no DHCP option %u found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no media in `%s' no network card found no random number generator is available for your OS no server is specified no structure matched the given options no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body offset one argument expected one of the --get options is required only ipv4 only ipv6 only one --get option is usable at a time other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified overflow is detected passwords don't match peek out of range perform a DHCP autoconfiguration perform a bootp autoconfiguration persistent RAM persistent RAM (legacy) physical volume %s not found plain image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print verbose messages. public key %08 public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%s is not implemented yet relocation 0x%x is not implemented yet requested buffer size is too large reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] section name %s length is bigger than %lu select face index separate items in output using ASCII NUL characters serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory set scrolllock mode set the label to render shim_lock protocol not found size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the SMBIOS entry point structure was not found the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the field ends outside the structure the first sector of the core file is not sector-aligned the given offset is outside the structure the handle must be between 0 and 65535 the installation device is removable. This option is only available on EFI. the match must be a positive integer the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small the type must be between 0 and 255 this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d unknown device type %s unknown filesystem unknown kind of RAID device `%s' unknown target format %s unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported instruction unsupported platform %s unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as memdisk use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable variable `%s' isn't set verification requested but nobody cares: %s visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xorriso not found xz file corrupted or unsupported block options you can't delete this address you need to load the Xen Hypervisor first you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub-2.06-pre2
Report-Msgid-Bugs-To: bug-grub@gnu.org
PO-Revision-Date: 2021-05-10 19:50+0200
Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>
Language-Team: German <translation-team-de@lists.sourceforge.net>
Language: de
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Lokalize 21.04.0
               Gesamtspeicher: %d KiB
     Kein bevorzugter Modus verfügbar
     Bevorzugter Modus: %ux%u
   EDID-Prüfsumme ist ungültig   EDID-Version: %u.%u
   Grafikadapter konnte nicht initialisiert werden   Keine Informationen verfügbar   VBE-Info:   Version: %d.%d  OEM-Softwarerevision: %d.%d
  (ganz links)  (mittig)  (ganz rechts)  - Partitionsbeginn bei %llu%sKiB  - Sektorgröße %uB  - Gesamtgröße %llu%sKiB  - Gesamtgröße unbekannt %ds %ds verbleibend. %s enthält ein %s-Dateisystem, welches bekanntermaßen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle und LDM zu enthalten, welches bekanntermaßen keine sichere Kombination ist. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s scheint eine %s-Partitionstabelle zu enthalten, welche bekanntermaßen keinen Platz für einen DOS-Betriebssystemstart bereithält. Die Installation von GRUB könnte die ZERSTÖRUNG DES DATEISYSTEMS nach sich ziehen, sofern Daten durch grub-setup überschrieben werden. Die Option --skip-fs-probe deaktiviert diese Überprüfung, verwenden Sie dies auf eigene Gefahr. %s unterstützt keine UUIDs %s existiert nicht. Bitte geben Sie --target oder --directory an %s scheint keine EFI-Partition zu sein %s ist veraltet. Verwenden Sie stattdessen gfxpayload=%s vor dem Linux-Befehl.
 %s ist veraltet. VGA-Modus %d wurde nicht erkannt. Verwenden Sie stattdessen gfxpayload=BREITExHÖHE[xTIEFE] vor dem Linux-Befehl.
 %s: HASH-FEHLER
 %s: OK
 %s: LESEFEHLER
 %s: Fehler: %s: Info: %s: Nicht gefunden %s: der Befehl ist nicht erlaubt, wenn Lockdown erzwungen wird %s: Warnung: - Bezeichnung »%s« - Letzte Änderungszeit %d-%02d-%02d %02d:%02d:%02d %s --MEHR-- --ppc PFAD|--x86 DATEI -h HASH [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] -l | -r | [-s] grubdev osdisk. .5 .sbat-Abschnitt kann nur in EFI-Abbilder eingebettet werden Geschütze 16-bit-Schnittstelle unterstützt
 Geschütze 16-bit-Schnittstelle nicht unterstützt
 Geschütze 32-bit-Schnittstelle unterstützt
 Geschütze 32-bit-Schnittstelle nicht unterstützt
 =WERT > Durch ACPI beanspruchter Speicherbereich (für Energiesparmodi) Durch ACPI wiederverwendbarer Speicher ACPI-Herunterfahren ist gescheitert ADDR ADR WERT ADR WERT [MASKE] ADRESSE [GRÖßE] ADR1,MASKE1[,ADR2,MASKE2[,...]] ADDRESSE DNS_SERVER APM deaktiviert
 APM deaktiviert
 APM aktiviert
 APM aktiviert
 ASCII CR/NL-Zeilenenden im DOS-Stil akzeptieren. Aktive Eingabeterminals: Aktive Ausgabeterminals: Adapter »%s«:
 SCHLÜSSEL_DATEI zu vertrauenswürdigen Schlüsseln hinzufügen. Einen DNS-Server hinzufügen Eine Netzwerkadresse hinzufügen. Eine Netzwerkroute hinzufügen. Unterbrechung mit ESC erlauben. Nach dem Dateinamen für den Neustart fragen. Eingabe wird als hexadezimal angenommen. Eingabe wird als Kennwort angenommen. Eingabe wird als Raw angenommen. Es wird versucht, den Master-Schlüssel zu entschlüsseln … Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen oder sowohl Partitionsbezeichnungen als auch Dateisystemen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer Platte mit mehreren Partitionsbezeichnungen zu installieren. Dies wird derzeit noch nicht unterstützt. Es wird versucht, GRUB auf einer nicht partitionierten Platte oder in eine Partition zu installieren. Das ist eine SCHLECHTE Idee. Verfügbare Eingabeterminals: Verfügbare Ausgabeterminals: B B/s BIOS_SICHERUNG [INT10_SICHERUNG] BLOCK BYTE:BIT Modus des Hintergrundbildes. Basisverzeichnis für Hash-Liste. VERZEICHNIS bootfähig markieren auf HFS oder HFS+ für PPC-Macs. DATEI bootfähig markieren im Mac-Stil auf HFS oder HFS+ für Intel-Macs. BIOS-basiertes System booten. Ein Betriebssystem starten. In den Single-User-Modus booten. Mit Fehlerdiagnosemeldungen booten. Mit ausführlichen Meldungen booten. »%s« wird gebootet Eine Befehlsliste booten Im Blindmodus booten Boot-Pfad: %s
 Boot-Pfad: nicht verfügbar
 Haltepunkt für GDB auslösen CGA  FARBE BEFEHL [ARGUMENTE] CPU-Leerlauf verlangsamt den Prozessor nicht
 CPU-Leerlauf verlangsamt den Prozessor
 CS5536 in %d:%d.%d
 Datei »%s« kann nicht angelegt werden. ROM-Bereich kann nicht aktiviert werden. Konfigurierte Geräte bearbeiten. Partitionstyp ändern Alt-Taste überprüfen. Strg-Taste überprüfen. Umschalttaste überprüfen. Fähigkeiten der CPU überprüfen. Prüfsummen der Dateien mit Liste in DATEI vergleichen. Überprüfen, ob der Prozessor den 64-Bit-(Lang-)Modus unterstützt (Vorgabe). Überprüfen, ob der Prozessor die physikalische Adresserweiterung unterstützt. Überprüfen, ob DATEI als unprivilegierter i386-PAE-Xen-Gast-Kernel gebootet werden kann Überprüfen, ob DATEI als unprivilegierter x86_64-Xen-Gast-Kernel gebootet werden kann Überprüfen, ob DATEI als unprivilegierter x86-Xen-Gast-Kernel gebootet werden kann Überprüfen, ob DATEI als x86-Multiboot-Kernel gebootet werden kann Überprüfen, ob DATEI als x86-Multiboot2-Kernel gebootet werden kann Überpüfen, ob DATEI eine ARM-EFI-Datei ist Überpüfen, ob DATEI ARM-Linux ist Überpüfen, ob DATEI eine ARM64-EFI-Datei ist Überpüfen, ob DATEI ARM64-Linux ist Überpüfen, ob DATEI ein BIOS-Bootsektor ist Überpüfen, ob DATEI eine IA64-EFI-Datei ist Überpüfen, ob DATEI IA64-Linux ist Überpüfen, ob DATEI MIPS-Linux ist Überpüfen, ob DATEI MIPSEL-Linux ist Überpüfen, ob DATEI POWERPC-Linux ist Überprüfen, ob DATEI eine 32-Bit-RISC-V-EFI-Datei ist Überprüfen, ob DATEI eine 64-Bit-RISC-V-EFI-Datei ist Überpüfen, ob DATEI SPARC64-Linux ist Überpüfen, ob DATEI ein XNU-Ruhezustand-Abbild ist (Mac-OSX-Kernel) Überpüfen, ob DATEI hiberfil.sys im Ruhezustand ist (hibernated) Überpüfen, ob DATEI eine i386-EFI-Datei ist Überpüfen, ob DATEI XNU ist (Mac-OSX-Kernel) Überpüfen, ob DATEI i386-kFreeBSD ist Überpüfen, ob DATEI i386-kNetBSD ist Überprüfen, ob DATEI den angegebenen Typ hat. Überpüfen, ob DATEI x86-Linux ist Überpüfen, ob DATEI x86-Linux mit 32-Bit-Protokollunterstützung ist Überpüfen, ob DATEI x86-kFreeBSD ist Überpüfen, ob DATEI x86-kNetBSD ist Überpüfen, ob DATEI eine i386-EFI-Datei ist Überpüfen, ob DATEI x86_64-XNU ist (Mac-OSX-Kernel) Überpüfen, ob DATEI x86_64-kFreeBSD ist Überpüfen, ob DATEI x86_64-kNetBSD ist Status der Umschalttasten überprüfen. Überprüfen Sie, ob der Benutzer in der BENUTZERLISTE aufgeführt ist. Überprüft die GRUB-Skriptkonfiguration auf Syntaxfehler Bit bei BYTE:BIT im CMOS leeren. Den Bildschirm leeren. »active«-Flag auf %d wurde gelöscht.  
 Befehlsausführung fehlgeschlagen Befehle: DATEI mit lokaler Datei LOKAL vergleichen. Datei »%s« mit »%s« vergleichen:
 Zwei Dateien vergleichen. XNU-UUID des Geräts berechnen. Hash-Prüfsumme berechnen oder prüfen. Serielle Schnittstelle konfigurieren. Schleifen fortsetzen Übliche Schriftdateiformate in PF2 umwandeln DATEI in lokale Datei LOKAL kopieren. DATEI in die Standardausgabe kopieren. FPSWA-Treiber konnte nicht gefunden werden Es konnte keine freier BootNNNN-Slot ist Physischer Datenträger »%s« konnte nicht gefunden werden. Einige Module könnten im Core-Abbild fehlen. sha256 konnte nicht geladen werden sha512 konnte nicht geladen werden BIOS-Strukturen für Abwärtskompatibilität mit dem vorhandenen Betriebssystem erstellen. Eine leere Umgebungs-Blockdatei erstellen. Aktuelle Terminfo-Typen: GERÄT GERÄT [PARTITION[+/-[TYP]]] ... GERÄT muss ein OS-Gerät sein (z.B. /dev/sda). GERÄTENAME VERZ VERZEICHNIS [OSBundleRequired] DNSSERVER Diagnosewerkzeug für Dateisystemtreiber. Speicherbereiche als »badram« deklarieren. Dekompressor ist zu groß Vorgegebener Server ist ${net_default_server} Einen Menüeintrag definieren. Ein Untermenü definieren. Eine Netzwerkadresse löschen. Eine Netzwerkroute entfernen. Das angegebene Loopback-Gerät löschen. Variablen löschen. Treiber ermitteln. Dateisystem-UUID ermitteln. Dateisystembezeichnung ermitteln. Dateisystemtyp ermitteln. UUID der Partition bestimmen. Typ der Partitionszuordnung bestimmen. Gerät %s: Gerätekennung: %s
 Gerätekennung: nicht verfügbar Direkte Farbe, Maske: %d/%d/%d/%d  Pos.: %d/%d/%d/%d ACPI deaktivieren. SMP deaktivieren. Alle Boot-Ausgaben deaktivieren. SMART aktivieren/deaktivieren (0/1). Unsauber eingebettete Partition wird verworfen (%s,%s,%s%d) Statistiken des Plattenzwischenspeichers: Hits = %lu (%lu.%02lu%%), Misses = %lu
 Plattenanzahl muss Plattenliste vorangestellt sein.
 FPSWA-Version anzeigen. Laufwerksstatus mit SMART anzeigen. Eine Textzeile anzeigen. Blockliste von DATEI anzeigen. Ausgabe auf allen Konsolen anzeigen. Energiemodus anzeigen. Benutzung dieses Befehls anzeigen und beenden. Diese Hilfe anzeigen und beenden. Anzeigen/Festlegen des/der aktuellen Datums/Zeit. Keine Reed-Solomon-Codes beim Einbetten von core.img verwenden. Diese Option ist nur für x86-BIOS-Ziele verfügbar. Angehängte Zeilenumbrüche nicht ausgeben. Keine Meldungen ausgeben. Kein Diskettenlaufwerk überprüfen. Zum Abschalten des Rechners kein APM verwenden. Nichts tun, erfolgreich. Nichts tun, nicht erfolgreich. Keine Fehlerdiagnosemeldungen beim Booten anzeigen. Keine Host-Tabellen spezifiziert durch kommagetrennte Liste laden. Nicht neu starten, nur herunterfahren. Nach dem ersten Fehler nicht stoppen. EBDA nicht aktualisieren. Könnte Fehler oder Hänger in manchen BIOS-Versionen beseitigen, ist aber nicht effektiv bei Betriebssystemen, die kein RSDP von GRUB empfangen.  Kennung des EFI-Bootloaders ist nicht angegeben. UMGVAR UMGVAR [UMGVAR] ... FEHLER: Keine gültige Tastaturbelegung gefunden. Überprüfen Sie die Eingabe.
 Beenden ist jederzeit mit ESC möglich. AUSDRUCK AUSDRUCK ] Verstrichene Zeit: %d.%03d s 
 Verstrichene Zeit: %d.%03d Sekunden 
 Einbettung ist nicht möglich. GRUB kann in dieser Konfiguration nur mittels Blocklisten installiert werden. Blocklisten sind allerdings UNZUVERLÄSSIG und deren Verwendung wird daher nicht empfohlen. Eine Tastatursequenz emulieren Auswertung der Backslash-Maskierungen ermöglichen. RTS/CTS aktivieren/deaktivieren. ZFS-Passwort eingeben: KDB beim Booten verwenden. In Normalmodus wechseln. Kennwort für %s%s%s angeben (%s):  Passwort eingeben: Benutzername eingeben: Fehler beim Einlesen der Befehlszeilenargumente
 Einen Ausdruck auswerten. Argumente als GRUB-Befehle auffassen Syslinux-Konfiguration im neuen Kontext laden Syslinux-Konfiguration im neuen Kontext laden, nur Menüeinträge Syslinux-Konfiguration im gleichen Kontext laden Syslinux-Konfiguration im gleichen Kontext laden, nur Menüeinträge Beenden ist gescheitert GRUB beenden. Schleifendurchlauf beenden Normalmodus abbrechen. Variablen exportieren. Version-1-Tabellen zum Betriebssystem exportieren. Version-2- und Version-3-Tabellen zum Betriebssystem exportieren. DATEI DATEI [ARG ...] DATEI [ARGUMENTE …] DATEI | TEMPO [TONHÖHE1 DAUER1] [TONHÖHE2 DAUER2] ...  DATEI… DATEI1 DATEI2 DATEINAME BEFEHL DATEISYSTEM [VARIABLE] DATEI|prompt SCHRIFTEN FORMAT Das FPSWA-Protokoll war nicht imstande, die Schnittstelle zu finden FPSWA-Revision: %x
 VON-BIS[,VON-BIS] VON[K|M|G] BIS[K|M|G] FT_Init_FreeType ist gescheitert Sowohl Vorgabe- als auch Alternativeinträge konnten nicht gebootet werden.
 Baum für »device-mapper« konnte nicht erstellt werden Alternative »%s« wird verwendet Dateigröße: %s
 Dateisystem »%s« unterstützt keine Einbettungen Dateien unterscheiden sich an Position %llu: 0x%x [%s], 0x%x [%s]
 Dateigrößen sind unterschiedlich: %llu [%s], %llu [%s]
 Zugriff auf Dateisystem nicht möglich Dateisystemtyp %s Hybrid-MBR des GPT-Gerätes GERÄT füllen. Angegebene Partitionen werden Teil des Hybrid-MBR. Bis zu 3 Partitionen sind zulässig. TYP ist ein MBR-Typ. + bedeutet, dass die Partition aktiv ist. Nur eine Partition kann aktiv sein. Das Ergebnis filtern, wie Linux es tut. Laden des EFI-Emulators finalisieren. Zuerst das Gerät HINWEIS versuchen, falls aktuell laufende ARC. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes BIOS). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (für aktuell laufendes EFI). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen (bei IEEE1275). Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen, falls direkter Hardwarezugriff unterstützt wird. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Zuerst das Gerät HINWEIS versuchen. Falls HINWEIS mit Komma endet, auch Unterpartitionen versuchen Ein Videoproblem beheben. Freetype-Fehler %d beim Laden des Glyphs 0x%x für U+0x%x%s ATA-Sicherheitseinstellungen bis zum Zurücksetzen einfrieren. Freitag G GNU GRUB  Version %s GRUB-Bootmenü GRUB weiß nicht, wie man diese Maschine stoppen kann! GRUB-Emulator. GRUB-GERÄT=PLAN9-GERÄT GRUB-Tastaturbelegung aus dem der Linux-Konsole erstellen. PBKDF2-Passwort-Prüfsumme erzeugen.  Ein lauffähiges Abbild einschließlich aller Module im gewählten Format erstellen Erzeugt ein bootfähiges CD/USB/Diskettenabbild. Argumente, die nicht zu den Optionen dieses Programms gehören, werden an Xorriso übergeben und indizieren Quelldateien, Quellverzeichnisse oder eine beliebige mkisofs-Option, die von »%s« ausgegeben wird. crc32-Prüfsumme von DATEI berechnen. Informationen zum Platten-Zwischenspeicher holen. Den Wert der acht Bytes an dem angegebenen Versatz ermitteln. Den Wert der vier Bytes an dem angegebenen Versatz ermitteln. Den Wert der UUID an dem angegebenen Versatz ermitteln. Den Wert des Byte an dem angegebenen Versatz ermitteln. Die Zeichenkette an dem angegebenen Versatz ermitteln. Den Wert der zwei Bytes an dem angegebenen Versatz ermitteln. ATA-Datenträgerparameter ermitteln/festlegen. GiB GiB/s 32-Bit- und 64-Bit-Binary zu Apple-Universal-Binary zusammenfügen. Graftpoint-Syntax (z.B. /boot/grub/grub.cfg=./grub.cfg) wird akzeptiert HASH HINWEIS Das System anhalten, wenn möglich, mit APM. Diesen Rechner anhalten. Dieser Befehl funktioniert nicht in allen Firmware-Implementationen. N Bytes in Ausgabedatei verarbeiten Hallo Welt Hercules  Hexdump-Zufallsdaten. KENNUNG ABBILD1 [ABBILD2 ...] EINHÄNGEPUNKT ABBILDPFAD BEFEHLE INSTALLATIONSGERÄT muss der Name des Geräts sein.
%s kopiert GRUB-Abbilder nach %s. Auf einigen Systemen
kann es auch GRUB in den Bootsektor installieren. Falls DATEINAME als »-« angegeben ist, wird er Vorgabewert %s verwendet.

Es gibt keinen »delete«-Befehl. Falls Sie den gesamten Umgebungsblock löschen wollen,
verwenden Sie »rm %s«. In DATEI gespeicherten ZFS-Wrapping-Schlüssel importieren Ungültiges VDEV Inkorrektes virtuelles Gerät: kein Typ verfügbar Ein Modul einfügen. GRUB auf Ihrem Laufwerk installieren. installation beendet. Keine Fehler aufgetreten. %s wird für Ihre Plattform installiert.
 Unzureichende Zugriffsrechte für Firmware, BIOS wird angenommen Ungültiger Befehl %s.
 Ungültiges Gerät »%s«.
 Ungültige Plattenanzahl.
 Ungültiger Parameter Ungültiges Tempo in %s Routing der Benutzerkonfiguration aufrufen. K KERNEL ARGUMENTE TASTE Tastenzuordnung für den Schnellstart dieses Eintrags. KiB KiB/s SPRACHEN Virtuelles Gerät durchsuchen (Datei oder Laufwerk) Veralteter Parameter »%s« wird nicht mehr unterstützt. Legende: Maske/Position=Rot/Grün/Blau/Reserviert Länge der erzeugten Prüfsumme Länge von Salt Linux wird noch nicht unterstützt DNS-Server auflisten PCI-Geräte auflisten. Xen-Speicherung auflisten. Alle Dateien auflisten. Verfügbare Grafikmodi auflisten. Falls Auflösung angegeben ist, nur Modi dieser Auflösung anzeigen. Coreboot-Tabellen auflisten. Geräte und Dateien auflisten. Geräte oder Dateien auflisten. Geräte auflisten. Dateien in PFAD auflisten. Von Firmware bereitgestellte Speicherzuordnung auflisten. Liste der unterstützten Videomodi: Liste der Benutzer, die diesen Eintrag booten dürfen. Eingabeterminal listen oder wählen. Ausgabeterminal listen oder wählen. Aktuelle Variablen auflisten. Die geladenen Schriften auflisten. Variablen aus Blockdatei der Umgebung auflisten. 64-bit XNU-Abbild laden. BIOS-Sicherung laden. DTB-Datei laden. FreeBSD-Umgebung laden. FreeBSD-Kernelmodul laden (ELF). FreeBSD-Kernelmodul laden. FreeDOS-kernel.sys laden. Linux laden. NTLDR oder BootMGR laden. NetBSD-Kernelmodul laden (ELF). NetBSD-Kernelmodul laden. Plan9-Kernel laden. Truecrypt-ISO laden. XNU-Erweiterungsverzeichnis laden. XNU-Erweiterungspaket laden. XNU-Erweiterung laden. XNU-Abbild laden. XNU-Ramdisk laden. Wird im Betriebssystem als md0 angezeigt. Inhalt von »device-properties« laden Ein PXE-Abbild laden. Eine Tastaturbelegung laden. Einen Multiboot2-Kernel laden. Ein Multiboot2-Modul laden. Einen Multiboot-Kernel laden. Ein Multiboot-Modul laden. Begrüßungsbildschirm für XNU laden. Einen Xen-Hypervisor laden. Ein Xen-Modul laden. Ein gespeichertes XNU-Abbild laden. EFI-Emulator laden und initialisieren. Einen anderen Bootloader laden. Eine andere Konfigurationsdatei laden, aber nur deren Menüeinträge. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Es werden nur Menüeinträge geladen. Eine andere Konfigurationsdatei laden, ohne den Kontext zu ändern. Eine andere Konfigurationsdatei laden. Weiteres Coreboot-Payload laden Hintergrundbild für aktives Terminal laden. Host-ACPI-Tabellen und durch Argumente angegebene Tabellen laden. initrd laden. Ramdisk von kOpenBSD laden. Kernel von FreeBSD laden. Kernel von NetBSD laden. Kernel von OpenBSD laden. Modul laden. Nur Tabellen spezifiziert durch kommagetrennte Liste laden. Gleiche Datei mehrfach laden. Variablen aus Blockdatei der Umgebung laden. ZFS-Schlüssel laden. Geladene Schriften M MAC-Überprüfung ist gescheitert MODUL MODULE Richten Sie Supportanfragen zu Xorriso an <bug-xorriso@gnu.org>. Bootfähiges GRUB-Abbild für CD-ROM, Festplatte, USB-Stick und Diskette erstellen. Ein bootfähiges GRUB-Abbild erstellen Ein virtuelles Gerät aus einer Datei erstellen. Partition als aktiv markieren BIOS-Laufwerkszuordnungen verwalten. PCI-Geräte bearbeiten. Strukturen mit der gegebenen Verarbeitung aufeinander abstimmen. Übereinstimmende Strukturen des angegebenen Typs suchen. Von BEFEHL benötigte Zeit messen Speichertyp: DDR2. Speichertyp: Unbekannt. Bezeichner des Menüeintrags. Typ des Menüeintrags. MiB MiB/s Minimale BASH-ähnliche Zeilenbearbeitung wird unterstützt. Für das erste Wort listet TAB die möglichen Befehlsvervollständigungen auf. Ansonsten werden mit TAB die möglichen Geräte-oder Dateivervollständigungen angezeigt. %s Minimale Emacs-ähnliche Bildschirmbearbeitung wird unterstützt. TAB listet Vervollständigungen auf. Drücken Sie Strg-X oder F10 zum Booten, Strg-C oder F2 für eine Befehlszeile oder ESC, um abzubrechen und zum GRUB-Menü zurückzukehren. Argumente fehlen
 Eingabedatei fehlt
 Montag Schwarzweiß  Mehr als ein Installationsgerät? Ein verschlüsseltes Gerät einhängen. Alle Datenträger einhängen, für die das »boot«-Flag gesetzt ist. Alles einhängen. Nach UUID einhängen. Verschlüsselte Geräte einhängen. NAME NAME [VARIABLE] [HINTWEISE] NICHT GESTARTET: ZAHL ANZAHL_DER_SEKUNDEN Name	Referenzzähler	Abhängigkeiten
 Native Festplattentreiber werden verwendet. Nutzung der Firmware-Schnittstelle wird verweigert. Netboot-Verzeichnis für %s wurde erstellt. Richten Sie Ihren DHCP-Server so ein, dass er auf %s verweist
 Netzwerkprotokolle: Neuer MBR wurde nach »%s« geschrieben
 Kein CS5536 gefunden Kein FPSWA gefunden Keine Statistiken für Boot-Zeiten verfügbar
 Kein Befehl angegeben.
 Kein Gerät angegeben.
 Keine Statistiken zum Paket-Zwischenspeicher verfügbar
 Es wurden keine Laufwerke neu zugeordnet Kein bekanntes Dateisystem erkannt Kein Pfad angegeben.
 Kein Pfad oder Gerät wurde angegeben.
 Kein Baum virtueller Geräte verfügbar Non-chain 4  Zu wenige Parameter für den Befehl.
 Bitte verbinden Sie nun einen entfernten Debugger. Anzahl vor PBKDF2-Durchläufe OPTIONEN DATEI OS Laufwerk #Num ------> GRUB/BIOS-Gerät Fehler beim Öffnen der OS-Datei %s: %s Option -- wechselt in den nativen xorriso-Befehlsmodus. Optionen: Suche außerhalb des Bereichs: %d
 Ersetzung außerhalb des Bereichs (%d, %d)
 Ausgabepuffer ist zu klein Die geschätzte Zuordnung von Plan9-Geräten überschreiben. P PARTITION BEFEHLE PFAD PBKDF2-Prüfsumme Ihres Passworts ist %s
 PORT PORT WERT [MASKE] SCHLÜSSEL_ID Palettiert  Alte Konfiguration im neuen Kontext laden Alte Konfiguration im neuen Kontext laden, nur Menüeinträge Alte Konfiguration im gleichen Kontext laden Alte Konfiguration im gleichen Kontext laden, nur Menüeinträge Teil-Nummer: %s.
 Partition %d ist nun aktiv. 
 Partition %s: Partitionstyp »%s« unterstützt keine Einbettungen Pfad: %s
 Pfad: nicht verfügbar BEFEHLE auf Partition ausführen.
Rufen Sie »parttool PARTITION help« auf, um eine
Liste der verfügbaren Befehle zu erhalten. Eine DNS-Suche ausführen Eine IPV6-Autokonfiguration ausführen Sowohl direkte als auch umgekehrte Zuordnungen ausführen. PiB PiB/s Planar  Einen Klang abspielen. Pool-GUID: %016llx
 Pool-GUID: nicht verfügbar Pool-Name: %s
 Pool-Name: nicht verfügbar Pool-Status: aktiv Pool-Status: zerstört Pool-Status: exportiert Pool-Status: ARC-Gerät, Level 2 Pool-Status: potenziell aktiv Pool-Status: für Hotspare reserviert Pool-Status: nicht verfügbar Pool-Status: nicht initialisiert Mögliche Argumente sind: Mögliche Befehle sind: Mögliche Geräte sind: Mögliche Dateien sind: Mögliche Partitionen sind: Mögliche Dinge sind: Präfix wurde nicht angegeben (verwenden Sie die Option -p) Bereitet GRUB-Netzwerk-Bootabbilder in net_directory/subdir vor, wobei angenommen wird, dass net_directory das TFTP-Wurzelverzeichnis ist. Beliebige Taste drücken, um fortzusetzen … Drücken Sie eine beliebige Taste, um xnu zu starten »Enter« zum Booten des markierten Betriebssystems, »e« zum Bearbeiten der Befehle vor dem Booten oder »c« für eine Befehlszeile. »Enter« zum Booten des markierten Betriebssystems, »e« zum Bearbeiten der Befehle vor dem Booten oder »c« für eine Befehlszeile. Mit »ESC« kehren Sie zum vorherigen Menü zurück. Speicher-Informationen anzeigen. ZFS-Info zu GERÄT ausgeben. ZFS-BOOTFSOBJ ausgeben oder als VARIABLE setzen Eine Blockliste ausgeben. Blockargument ausgeben und ausführen. Backtrace ausgeben. Identität und Einstellungen des Laufwerks ausgeben. Größenwerte in menschenlesbarem Format ausgeben. Geräteinformationen für einen angegebenen Pfad ermitteln (oder Gerät, falls die Option -d angegeben ist). RAM enthält Coreboot-Tabellen RAM enthält Firmware-Code RAM-Slotnummer %d
 REGEXP ZEICHENKETTE ROM-Abbild ist vorhanden. 16-bit-Wert aus ADDR lesen. 16-bit-Wert von PORT lesen. 32-bit-Wert aus ADDR lesen. 32-bit-Wert von PORT lesen. 8-bit-Wert aus ADDR lesen. 8-bit-Wert von PORT lesen. Ein für das CPU-Modell spezifisches Register lesen. Nur Bytes der Länge LENGTH lesen. Neu starten ist gescheitert In das Firmware-Konfigurationsmenü neu starten. Den Rechner neu starten. Passwort erneut eingeben: Register %x von %x:%02x.%x ist %x
 SCHLÜSSEL_ID aus den vertrauenswürdigen Schlüsseln entfernen. Einen DNS-Server entfernen Ein Modul entfernen. Eine Umgebungsvariable löschen. Alle Speichersegmente im angegebenen Bereich löschen. Apples .disk_label darstellen. Alle Zuordnungen auf Standardwerte zurücksetzen. SMBIOS-Informationen holen. Info zum Gerät holen. Aus einer Funktion zurückkehren. Zum IEEE1275-Prompt zurückkehren. Rufen Sie »gdb %s %d« auf und setzen Sie ARGS.HOLD auf Null.
 Geben Sie »go« ein, um GRUB fortzusetzen. SBAT-Metadaten SEK KURZNAME KURZNAME KARDE ADRESSE [HW-ADRESSE] KURZNAME NETZ [SCHNITTSTELLE| gw GATEWAY] GRÖßE QUELLE|-u UUID|-a|-b ZEICHENKETTE ZEICHENKETTE ... Samstag Gelesenen Wert in Variable VARNAME speichern. Variablen in die Blockdatei speichern. »Hallo Welt« ausgeben. Skript »%s« enthält nichts, es wird nichts ausgeführt
 Anhand von UUIDs nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Geräte nach Datei durchsuchen. Geräte nach Dateisystem-UUID durchsuchen. Geräte nach Dateisystembezeichnung durchsuchen. Anhand von Dateien, Dateisystembezeichnungen oder Dateisystem-UUIDs nach Geräten suchen. Falls --set angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Falls keine Variable angegeben wird, dann wird »root« verwendet Anhand von Dateien nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Anhand von Bezeichnungen nach Geräten suchen. Falls VARIABLE angegeben wird, dann wird das erste gefundene Gerät zum Setzen der Variable verwendet. Der Sektor %llu wird bereits vom Raid-Controller »%s« verwendet und wird daher übergangen. Bitte fragen Sie den Hersteller, ob es möglich ist, keine Daten in der MBR-Lücke zu speichern. Der Sektor %llu wird bereits vom Programm »%s« verwendet und wird daher übergangen. Diese Software kann in Zukunft Start- oder andere Probleme hervorrufen. Bitte fragen Sie dessen Autoren, ob es möglich ist, keine Daten im Boot-Bereich zu speichern. Eine Struktur auswählen, wenn mehrere passen Gerät nach dessen Position auf dem Bus auswählen. Gerät nach Anbieter und Gerätekennungen auswählen. Erweiterte Energieverwaltung setzen
(1=niedrig, ..., 254=hoch, 255=aus). Automatische Klangverwaltung festlegen
(0=aus, 128=leise, ..., 254=schnell). OEMID von RSDP, XSDT und RSDT festlegen. OEMTABLE-ID von RSDP, XSDT and RSDT festlegen. OEMTABLE-Revision von RSDP, XSDT und RSDT festlegen. »hidden«-Flag im Partitionstyp setzen Eine Variable auf den Rückgabewert setzen. Eine Variable auf das erste gefundene Gerät setzen. Eine Umgebungsvariable festlegen. Hintergrundfarbe für aktives Terminal festlegen. Bit bei BYTE:BIT im CMOS setzen. Ersteller-Feld von RSDP, XSDT und RSDT festlegen. Ersteller-Revision von RSDP, XSDT und RSDT festlegen. Debug-Umgebungsvariable setzen. Laufwerk in den Schlafmodus versetzen. Laufwerk in den Standby-Modus versetzen. Positionsparameter festlegen. Root-Gerät festlegen. Wartezeit bis Standby festlegen
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). terminfo-Typ von TERM auf TYP setzen.
 Basisfrequenz festlegen. Adresse des seriellen Ports festlegen. Parität des seriellen Ports festlegen. Geschwindigkeit des seriellen Ports festlegen. Stop-Bits des seriellen Ports festlegen. Wortlänge des seriellen Ports festlegen. Einheit des seriellen Ports festlegen. Abbilder zum Booten von GERÄT einrichten.

Sie sollten dieses Programm normalerweise nicht direkt ausführen.
Verwenden Sie stattdessen grub-install. Benutzerpasswort festlegen (PBKDF2).  Benutzerpasswort (Klartext) festlegen. Nicht empfohlen, da unsicher. Variable durch Benutzereingabe setzen. Variablen setzen. Partitionstyp wird auf 0x%x gesetzt
 Positionsparameter anpassen. ACPI-Informationen anzeigen. APM-Informationen anzeigen. Inhalt der CBMEM-Konsole anzeigen. Eine Hilfemeldung anzeigen. Lange Liste mit ausführlicheren Informationen anzeigen. Statistiken für Boot-Zeiten erstellen. Den Inhalt der DATEI hexadezimal anzeigen. Bootzeit-Statistiken für Coreboot anzeigen. Geladene Module anzeigen. Inhalt des Speichers anzeigen. Roh-Inhalt des  ATA IDENTIFY-Sektors anzeigen. Roh-Inhalt einer Datei oder des Speichers anzeigen. Roh-Inhalt des CMOS anzeigen. Roh-Ausgabe des PCI-Konfigurationsraums anzeigen. Inhalt einer Datei anzeigen. Alle aktuellen Zuordnungen anzeigen. Vertrauenswürdige Schlüssel auflisten. Diese Meldung anzeigen. Nur Version-1-Tabellen darstellen. Nur Version-2- und Version-3-Tabellen anzeigen. Herunterfahren ist gescheitert »initrd«-Befehl wie in grub-legacy simulieren »kernel«-Befehl wie in grub-legacy simulieren »modulenounzip«-Befehl wie in grub-legacy simulieren »password«-Befehl wie in grub-legacy simulieren »password«-Befehl von grub-legacy im Menüeintragsmodus simulieren N Bytes der Ausgabedatei überspringen. Offset-Bytes am Beginn der Datei überspringen. Die Signaturüberprüfung der Umgebungsdatei überspringen. Die Signaturüberprüfung der öffentlichen Schlüsseldatei überspringen. Slot »%s« geöffnet
 Slot %d geöffnet
 Für %s ist leider kein Partitionierungswerkzeug verfügbar
 Dateiname angeben. Zu verwendenden Hash angeben. Eine oder mehrere zu ladende Schriftdateien angeben. Größe für jeden Lesevorgang angeben Die Anzahl der Eingabedateien angeben. Geschwindigkeit: %s 
 GDB-Stub auf dem angegebenen Port starten GDB-Stub stoppen Speicherinfo für »%s« enthält keinen Typ Speicherinformation für »%s« weist weder auf eine Partition noch einen Datenträger hin Entsprechende Komponenten-NUMMER in VARNAME speichern. Wert in der angegebenen Variable speichern. Erfolg Sonntag Normale Ausgaben unterdrücken (Warnungen verbleiben) Zu nativen Festplattentreibern wechseln. Falls keine Module angegeben werden, wird die Vorgabe verwendet (pata,ahci,usbms,ohci,uhci,ehci). Syntaxfehler in Zeile %u
 Ein-/Ausgabebereich des Systemverwaltungsbus-Controllers ist bei 0x%x
 T ZIEL THEMEN TPM ist nicht verfügbar Zielformat wurde nicht angegeben (verwenden Sie die Option -0). Terminalgeometrie wurde festgelegt. Terminal ist nur ASCII [Vorgabe]. Terminal ist logisches UTF-8. Terminal ist visuelles UTF-8. USB-Unterstützung überprüfen. Bit bei BYTE:BIT im CMOS testen. Dateilesegeschwindigkeit testen. Prüfen, ob REGEXP auf ZEICHENKETTE passt. Das Video-Subsystem im Modus BxH überprüfen. Das Video-Subsystem überprüfen. Nur Text Die Dateien sind identisch.
 Der hervorgehobene Eintrag wird automatisch in %ds ausgeführt. Dieses VDEV ist ein RAIDZ%llu
 Dieses VDEV ist ein Spiegel Dieser Eintrag kann von jedem Benutzer gebootet werden. Donnerstag TiB TiB/s Werkzeug zum Bearbeiten einer Umgebungs-Blockdatei. Flash-Gesamtgröße: %d B.
 64-bit-UUID in ein von XNU verarbeitbares Format umwandeln. Falls -l angegeben ist, bitte Kleinschreibung beibehalten (wie von blkid) Einen Systemdateinamen in einen für GRUB umwandeln. Syslinux-Konfigurationsdatei in eine für GRUB umwandeln. Zeichen der MENGE1 in Zeichen der MENGE2 in ZEICHENKETTE übersetzen. In Kleinschreibung umwandeln. In Großschreibung umwandeln. Übersetzt die Zeichenkette anhand den aktuellen Einstellungen. Dienstag BENUTZERPASSWORT BENUTZER PBKDF2_PASSWORT BENUTZERNAME[,BENUTZERNAME] UTF-8 Weiterleitung konnte nicht angelegt werden: %s Ihre Plattform konnte nicht erkannt werden. Verwenden Sie --target. Fork konnte nicht angelegt werden: %s Datenstrom von %s konnte nicht geöffnet werden: %s Pool-Status konnte nicht ermittelt werden Daten entpacken. Datei entpacken, bevor Prüfsumme ermittelt wird. Unbekannter TPM-Fehler Unbekannter Adresstyp %d
 Unbekannter Befehl »%s«.
 Unbekanntes Kompressionsformat %s Unbekannte Kodierung Unbekanntes zusätzliches Argument »%s«. Ungültiger Code für Tastaturscan 0x%02x
 Ungültiger Bezeichner für Tastaturscan %s
 Unbekannte Plattform »%s-%s« Unbekannter Videomodus Typ des virtuellen Gerätes ist unbekannt: %s
 EFI-Umgebung entladen. Unbekannte Kompression »%s« Pool-Status nicht erkannt Nicht unterstützter Adresstyp %d
 Nicht unterstützte Coverage-Spezifikation: %d
 Nicht unterstützter Hardware-Adresstyp %d
 Nicht unterstützte Ersetzungsangabe: %d
 Nicht unterstützter Ersetzungstyp: %d
 Aufruf: Aufruf: %s GERÄT
 Aufruf: %s [EINGABEDATEI [AUSGABEDATEI]]
 CDROM als Root-Gerät verwenden. Entfernte GDB-Fehlerdiagnose anstatt DDB verwenden. ZEICHENKETTE als Inhalt des Menüeintrags verwenden. Einkompiliertes Root-Gerät verwenden. Serielle Konsole verwenden. Verwenden Sie die Tasten %C und %C zum Markieren eines Eintrags. VARIABLE SCHNITTSTELLE ZAHL BESCHREIBUNG VARNAME VDEV-Elementnummer %d ist nicht korrekt
 VDEV-Elementnummer %d:
 VDEV mit %d Kindelementen
 Ausführlicher Countdown. Angehängte Signatur überprüfen. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtuelles Gerät ist nicht verfügbar Virtuelles Gerät ist gescheitert Virtuelles Gerät ist offline Virtuelles Gerät ist online Virtuelles Gerät wurde entfernt WARNUNG: Im Betriebssystem wird keine Konsole verfügbar sein WARNUNG: Es wurde keine plattformspezifische Installation durchgeführt WARNUNG: Nicht unterstützte Parameter für Schrifteigenschaften: %x
 BREITExHÖHE. Die angegebene Anzahl an Sekunden warten. Nach jeder ausgegebenen Zeile auf Tastendruck warten. Warnung: ungültige Hintergrundfarbe »%s«
 Warnung: ungültige Vordergrundfarbe »%s«
 Warnung: Syntaxfehler (fehlender /) in »%s«
 Mittwoch 16-bit-Wert nach ADDR schreiben. 16-bit-Wert nach PORT schreiben. 32-bit-Wert nach ADDR schreiben. 32-bit-Wert nach PORT schreiben. 8-bit-Wert nach ADDR schreiben. 8-bit-Wert nach PORT schreiben. Einen Wert in das für das CPU-Modell spezifische Register schreiben. Geschriebene SPD-Bytes: %d B.
 YUV  Sie müssen mindestens einen Befehl angeben.
 »SystemPartition« und »OSLoader« müssen manuell eingerichtet werden. Einen entdeckten Fehler berichten Ihr Einbettungsbereich ist ungewöhnlich klein.  core.img würde nicht hineinpassen. Ihr Xorriso unterstützt »--grub2-boot-info« nicht. Einige Funktionen sind deaktiviert. Bitte verwenden Sie Xorriso in Version 1.2.9 oder neuer. Ihr Xorriso unterstützt »--grub2-boot-info« nicht. Ihr Core-Abbild ist zu groß. Booten als Festplatte ist deaktiviert. Bitte verwenden Sie Xorriso in Version 1.2.9 oder neuer. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] GERÄT [--md5] PASSWORT [DATEI] [--no-mem-option] [--type=TYP] DATEI [ARG ...] [-1|-2] [--exclude=TABELLE1,TABELLE2|--load-only=TABELLE1,TABELLE2] DATEI1 [DATEI2] [...] [-c DATEI [-p PRÄFIX]] [DATEI1 [DATEI2 ...]] [-d] GERÄTENAME DATEI. [-e|-n] ZEICHENKETTE [-f DATEI] [-f DATEI] [-s|--skip-sig] [Zu_überspringender_Variablenname] [...] [-f DATEI] Variablenname [...] [-f|-l|-u|-s|-n] [--hint HINWEIS [--hint HINT] ...] NAME [-h|-p|-r] [DATEI] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [DATEI …] [-m (stretch|normal)] DATEI [-s POSITION] [-d GERÄT] [-s POSITION] [-d GERÄT] [-v VAR] REGISTER[=WERT[:MASKE]] [-s GRÖßE] DATEINAME [-s|--skip-sig] DATEI SIGNATURDATEI [SCHLÜSSELDATEI] [-s|--skip-sig] SCHLÜSSEL_DATEI [-t Typ] [-h Verarbeitung] [-m Übereinstimmung] (-b|-w|-d|-q|-s|-u) Versatz [--set Variable] [ADR|comUNIT][,GESCHW] [ARG] KARTE [HW-ADRESSE] [KARTE] [VERZ] [UMGVAR=WERT] [ENVVAR] [KÜRZEL1] [KÜRZEL2] ... [LÄNGE] [MODUL1 MODUL2 …] [ZAHL:]VARNAME [ZAHL] [OPTIONEN…] [OPTIONEN] [OPTIONEN] DATENTRÄGER [OPTIONEN] DATEI_ODER_GERÄT [OPTIONEN] SCHRIFTDATEIEN [OPTIONEN] [MENGE1] [MENGE2] [ZEICHENKETTE] [OPTION] QUELLE … [OPTION] [INSTALLATIONSGERÄT] [OPTION]… [MODULE] [OPTIONEN]… [PFAD|GERÄT] [OPTIONEN] [PFAD] [MUSTER ...] [BENUTZERLISTE] [WERT]... [BxH[xT]] [BxH] [[-a|-u|-v] [-g BxH] [TERM] [TYP]] [[Jahr-]Monat-Tag] [Stunde:Minute[:Sekunde]] [bus]:[slot][.func] [Vorgabe=%s] [Anbieter]:[Gerät] »%s« ist fehlerhaft kompiliert: Dessen Startadresse ist 0x%llx anstelle von 0x%llx: Fehler in ld.gold? »%s« ist keine lokale Festplatte »cryptomount«-Befehl ist fehlgeschlagen: %s »loopback«-Befehl ist fehlgeschlagen: %s »nvsetenv« ist fehlgeschlagen. 
Sie müssen die Variable »boot-device« manuell setzen. Geben Sie am IEEE1275-Prompt Folgendes ein:
 %s
 »obppath« wurde in den übergeordneten Verzeichnissen von »%s« nicht gefunden, keine IEEE1275-Namensermittlung Ein Argument wurde »%s« zugeordnet, obwohl es kein Argument erwartet Zugriff verweigert NOTE-Segment für CHRP IEEE1275 hinzufügen Adresse Adresse nicht gefunden Speicherzuweisung (alloc-mem) ist gescheitert Eingabe als Pxelinux-Konfigurationsdatei auffassen. Eingabe als Syslinux-Konfigurationsdatei auffassen. Eingabe als Isolinux-Konfigurationsdatei auffassen. Versuch, einen verschlüsselten Datenträger ohne aktiviertes Cryptodisk zu installieren. Setzen Sie »%s« in Datei »%s« Versuch, außerhalb der Platte »%s« zu lesen und zu schreiben Versuch, außerhalb der Partition zu lesen oder zu schreiben Versuch, hinter dem Ende der Datei zu lesen Versuch, eine ausgeführte Funktion neu zu definieren Versuch, außerhalb der Datei zu suchen Es wird versucht, das Core-Abbild »%s« aus GRUB zu lesen Es wird versucht, das Core-Abbild »%s« erneut aus GRUB zu lesen verfügbarer RAM Verfügbare Formate: Verfügbare Ziele: Falsche Shim-Signatur Falsche Signatur base_addr = 0x%llx, Länge = 0x%llx, %s
 base_addr = 0x%llx, Länge = 0x%llx, Typ = 0x%x
 Große Dateisignatur ist noch nicht implementiert Bitmap-Datei »%s« besitzt ein nicht unterstütztes Format Bootfähig markieren für PowerPC-basierte Macs Bootfähig markieren für x86-basierte Macs blocklist DATEI Blocklisten sind unvollständig Blocklisten sind ungültig Blockgröße ist nicht durch 512 teilbar Blockgröße ist zu hoch 0 Schleifen können nicht unterbrochen werden Komprimieren von %s nach %s nicht möglich Dateisystemtyp auf %s konnte nicht ermittelt werden Befehl »%s« konnte nicht gefunden werden Verschlüsselter Datenträger »%s« konnte nicht eingebunden werden: %s »%s« kann nicht geöffnet werden: %s %s kann nicht geöffnet werden, Index %d: Fehler %d Blocklisten konnten nicht ermittelt werden Blocklisten konnten nicht ermittelt werden: %s Schriftgröße %dx%d kann nicht gesetzt werden: Freetype-Fehler %d: %s TPM-Ereignispuffer kann nicht belegt werden Befehlspuffer kann nicht belegt werden »%s« kann nicht geschlossen werden: %s Kernel-Abbild kann nicht komprimiert werden »%s« kann nicht nach »%s« kopiert werden: %s »%s« kann nicht gelöscht werden: %s EFI-Verzeichnis kann nicht gefunden werden Für %s konnte kein GRUB-Laufwerk gefunden werden. Überprüfen Sie Ihre device.map Gerät für %s konnte nicht gefunden werden (ist /dev eingehängt?) Sprache »%s« kann nicht gefunden werden Dateiort »%s« kann nicht ermittelt werden: %s Übersetzer-Befehlszeilenpfad für Pfad »%s« konnte nicht ermittelt werden: %s Temporäres Verzeichnis konnte nicht erstellt werden: %s Temporäre Datei kann nicht angelegt werden: %s OS-Datei »%s« kann nicht geöffnet werden: %s »%s« kann nicht geöffnet werden: %s Konfigurationsdatei »%s« kann nicht geöffnet werden: %s Verzeichnis »%s« kann nicht geöffnet werden: %s »%s« kann nicht korrekt gelesen werden »%s« ist nicht lesbar: %s Datei %s kann nicht in %s umbenannt werden Datei %s kann nicht in %s umbenannt werden: %m Originalverzeichnis kann nicht wiederhergestellt werden Originalverzeichnis kann nicht gespeichert werden »%s« kann nicht durchsucht werden: %s Aufruf von stat für »%s« nicht möglich: %s »%s« kann nicht synchronisiert werden: %s Auf CD-ROM kann nicht geschrieben werden Auf »%s« kann nicht geschrieben werden: %s Schreiben in die Standardausgabe fehlgeschlagen: %s Karte nicht gefunden cat DATEI Prüfsummenvergleich ist gescheitert Zu verwendende Kompression für Kernel-Abbild auswählen cmp DATEI LOKAL comUNIT[,GESCHW] Vergleichsfehler bei %llu GRUB-Dateien komprimieren [optional] Verbindung verweigert Verbindungsabbruch wegen Zeitüberschreitung In fette Schrift umwandeln Core-Abbild ist zu groß (0x%x > 0x%x) Version von core.img passt nicht %s konnte nicht automatisch konfiguriert werden IEEE1275-Gerätepfad für %s konnte nicht gefunden werden.
Sie müssen die Variable »boot-device« manuell setzen. Teilgerät eines über mehrere Geräte verteilten Dateisystems konnte nicht gefunden werden Geli-Nutzer konnte nicht gefunden werden »part«-Teil von »geom« konnte nicht geöffnet werden »geom« konnte nicht geöffnet werden! ELI-Metadaten konnten nicht gelesen werden UUID konnte nicht ermittelt werden Geli-UUID konnte nicht ermittelt werden Zufallsdaten konnten nicht geholt werden Zufallsdaten für Salt konnten nicht geholt werden Netzwerkpaket konnte nicht gesendet werden cp DATEI LOKAL crc DATEI Krytografiefehler Nummer %d Aktuelles Verzeichnis für Syslinux [Vorgabe ist das übergeordnete Verzeichnis der Eingabedatei]. Aktuelles Syslinux-Verzeichnis, wie es zur Laufzeit angezeigt wird [Vorgabe ist das übergeordnete Verzeichnis der Eingabedatei]. cygwin_conv_path() gescheitert Gerätezuordnung löschen, falls bereits vorhanden Ziel ist nicht erreichbar Geräteanzahl übersteigt die Grenzen Gerätebaum muss angegeben werden (siehe Befehl »devicetree«) Hinting deaktivieren shim_lock verifier deaktivieren Laufwerk »%s« wurde nicht gefunden. Platte existiert nicht, ersatzweise wird Partition des Geräts %s verwendet Zu verwendendes Platten-Modul (biosdisk oder native). Diese Option ist nur für BIOS-Ziele verfügbar. Lesen von Platte scheiterte bei %lld, Länge %lld Die Größe von diskboot.img muss %u Bytes betragen Keinen Bootsektor installieren GERÄT nicht auf Dateisysteme überprüfen Domainname-Komponente ist zu lang LED-Status nicht aktualisieren Die NVRAM-Variable »boot-device«/»Boot*« nicht aktualisieren. Diese Option ist nur für EFI- und IEEE1275-Ziele verfügbar. efibootmgr schlug beim Registrieren des Boot-Eintrags fehl: %s DATEI als Gerätebaum (DTB) einbetten
 DATEI als Memdisk-Abbild einbetten
Impliziert »-p (memdisk)/boot/grub« und setzt jedes vorher angegebene Präfix außer Kraft, aber das Präfix selbst kann durch später angegebene Optionen wiederum außer Kraft gesetzt werden DATEI als Anfangskonfiguration einbetten DATEI als öffentlichen Schlüssel zur Signaturüberprüfung einbetten Eine spezifische DTB einbetten Einbettung ist nicht möglich, jedoch für die Installation mit RAID und LVM erforderlich Einbettung ist nicht möglich, jedoch für die Installation auf mehreren Laufwerken erforderlich Aktiviert ARCS-Boot (MIPS-Rechner mit Big-Endian-Bytereihenfolge, meist SGI). HFS+, APM, sparc64 und Booten als Disk-Abbild für i386-pc werden deaktiviert Sparc-Bootvorgang aktivieren. Die deaktiviert HFS+, APM, ARCS und Booten als Festplattenabbild für i386-pc Unterstützung für %s wird aktiviert … Enter: Booten, »e«: Optionen, »c«: Befehlszeile Environment-Block ist zu klein Fehler: %s.
 GRUB konnte nicht in die PReP-Partition kopiert werden Beziehen des FDT fehlgeschlagen Kanonischer Pfad von »%s« konnte nicht ermittelt werden Lesen der Sektoren des Core-Abbildes ist gescheitert Struktur-Feld konnte nicht geholt werden Lesen des Sektors 0x%llx von »%s« ist fehlgeschlagen Passwort konnte nicht gelesen werden Schreiben des Sektors 0x%llx nach »%s« ist fehlgeschlagen Falsch Fehlerhafter RAM (BadRAM) Datei »%s« ist zu groß Datei »%s« nicht gefunden Dateiname wurde erwartet Dateiname oder Tempo und Noten erwartet Dateisystem »%s« unterstützt keine Labels Dateisystem »%s« unterstützt keine Blocklisten Dateisystem auf %s ist weder HFS noch HFS+ Firmware-Abbild ist zu groß Automatisches Hinting erzwingen Vier Argumente werden erwartet free-mem ist gescheitert fwstart.img entspricht nicht der bekanntermaßen funktionierenden Version. Verwenden Sie dies auf eigene Gefahr Ein Abbild im FORMAT erzeugen Das angegebene Argument ist ein Systemgerät, kein Pfad grub-mkimage wurde ohne XZ-unterstützung kompiliert grub> Verarbeitung hex DATEI Bitmap-Strikes beim Laden ignorieren Ungültige Angabe der Terminalgeometrie initrd ist bereits geladen SCHRIFTEN installieren [Vorgabe=%s] GRUB für ZIEL-Plattform installieren [Vorgabe=%s]; verfügbare Ziele: %s GRUB-Abbilder in VERZEICHNIS/%s anstelle von %s installieren THEMEN installieren [Vorgabe=%s] Kein Installationsgerät angegeben Trotzdem installieren, auch wenn Probleme auftreten Nur SPRACHEN installieren [Vorgabe=alle] Nur MODULE und deren Abhängigkeiten installieren [Vorgabe=alle] Interpretierung wird nicht unterstützt Ungültiger DHCP-Optionscode Ungültiges PBKDF2-Passwort Ungültiges ELF-Magic (architekturabhängig) Ungültiges ELF-Magic (architekturunabhängig) Ungültiger Parameter Ungültige Blockgröße Ungültige Angabe der Farbe »%s« Ungültiger Gerätebaum Ungültiger Environment-Block Ungültiger Dateiname »%s« Ungültiger Schriftbereich Ungültiges Zeilenformat: %s ungültige Speicheradresse (0x%s > 0x%s) Ungültige modinfo-Datei »%s« Ungültiger Parameter %s Ungültiger Sprungwert %lld Ungültiger Variablenname »%s« Ungültige Angabe »%s« des Grafikmodus Ungültiges zImage Ungültige Blockgröße Null GET_ARRAY_INFO-Fehler (ioctl): %s GET_DISK_INFO-Fehler (ioctl): %s RAID_VERSION-Fehler (ioctl): %s Kernel-Abbild ist zu groß (0x%x > 0x%x) Netzwerkadressen auflisten Netzwerkkarten auflisten Netzwerkrouten auflisten ls PFAD lzop-Datei ist beschädigt Das Laufwerk auch als Diskette bootfähig machen (Vorgabe für fdX-Geräte). Kann mit einigen BIOS-Varianten scheitern. Übereinstimmung Symbol »%c« fehlt Obligatorische Option für »%s« fehlt Dateiname der p-list fehlt Modul »%s« ist nicht geladen Modul ist nicht geladen Name Abbild und Einhängepunkt werden benötigt neue Leseposition ist hinter dem Ende der geschriebenen Daten Kein APM gefunden Keine DHCP-Informationen gefunden Keine DHCP-Option %u gefunden Keine DHCP-Optionen gefunden Keine DNS-Angabe gefunden Kein DNS-Antwort empfangen Es wurden keine DNS-Server konfiguriert Für Ihre Plattform sind keine EFI-Routinen verfügbar Im BIOS-Modus sind keine EFI-Routinen verfügbar Für Ihre Plattform sind keine IEEE1275-Routinen verfügbar Für Ihre Plattform sind keine SGI-Routinen verfügbar Kanonischer Pfadname enthält keinen »/« Kein Befehl angegeben Auf Ihrer Plattform ist keine Kompression verfügbar Kein Schlüssel verfügbar Keine Hinweise für Ihr Betriebssystem verfügbar. Verringerte Leistung ist zu erwarten. Kein Medium in »%s« Keine Netzwerkkarte gefunden Für Ihr Betriebssystem ist kein Zufallszahlengenerator verfügbar Kein Server angegeben keine Struktur entspricht den angegebenen Optionen Keine solche Partition Kein passender Videomodus gefunden Keine Symboltabelle Kein Terminal angegeben Kein Terminator im Core-Abbild Nicht an Sektoren ausgerichtete Daten wurden in der Core-Datei gefunden Ist kein Verzeichnis Keine primäre Partition Keine reguläre Datei außerhalb des Bereichs der Funktion Versatz Ein Argument wurde erwartet eine der --get-Optionen wird benötigt nur ipv4 nur ipv6 die Option --get kann nicht mehrfach verwendet werden Andere Software nutzt den Einbettungsbereich, wodurch nicht genug Platz für core.img ist. Solche Software versucht häufig, Daten zu speichern, um sie unauffindbar zu machen. Wir empfehlen Ihnen, dies zu untersuchen Arbeitsspeicher erschöpft Ein erzeugtes Abbild in DATEI ausgeben [Vorgabe=stdout] Ausgabedatei muss angegeben werden Überlauf wurde erkannt Die Passwörter stimmen nicht überein Anfrage außerhalb des Bereichs Eine DHCP-Autokonfiguration ausführen Eine bootp-Autokonfiguration ausführen Persistenter RAM Persistenter RAM (veraltet) Physischer Datenträger %s wurde nicht gefunden Einfaches Kernel-Abbild wird nicht unterstützt – erstellen Sie es mit aktiviertem CONFIG_(U)EFI_STUB neu In MODULE angegebene Module vorladen ipv4 bevorzugen ipv6 bevorzugen Vorzeitiges Ende der Datei Unerwartetes Ende der Datei %s CapsLock-Taste drücken Einfg-Taste drücken NumLock-Taste drücken ScrollLock-Taste drücken SysRq-Taste drücken Linke Alt-Taste drücken Linke Strg-Taste drücken Linke Umschalttaste drücken Rechte Alt-Taste drücken Rechte Strg-Taste drücken Rechte Umschalttaste drücken ZIEL ausgeben Ausführliche Meldungen ausgeben. Öffentlicher Schlüssel %08 Öffentlicher Schlüssel %08x wurde nicht gefunden Lesefehler bei %llu: %s Text aus DATEI lesen. Relativer Pfad zum Unterverzeichnis auf dem Netzwerkserver Neuzuweisung 0x%s ist noch nicht implementiert Neuzuweisung 0x%x ist noch nicht implementiert angeforderte Puffergröße ist zu hoch reservierter RAM DHCP-Option holen und in VARIABLE speichern. Falls VARIABLE »-« ist, den Wert ausgeben. Wurzelverzeichnis, wie es zur Laufzeit angezeigt wird [Vorgabe=/]. Wurzelverzeichnis auf dem TFTP-Server Wurzelverzeichnis der Syslinux-Disk [Vorgabe=/]. Routenschleife entdeckt ROM-Abbilder in VERZEICHNIS speichern [optional] Ausgabe in DATEI speichern [erforderlich] Abschnittsname %s ist länger als %lu Schriftart-Index setzen Einträge in der Ausgabe durch ASCII-NUL-Zeichen trennen Serieller Port »%s« wurde nicht gefunden set [NAME=WERT ...] Feststelltasten-Modus festlegen Schriftauffüllung oben einstellen Schriftauffüllung unten einstellen Schriftfamilie festlegen Schriftbereich festlegen Schriftgröße festlegen Name der Eingabedatei für 32-bit festlegen. Name der Eingabedatei für 64-bit festlegen. Name der Eingabedatei festlegen. Vorgabe ist STDIN Einfügen-Modus festlegen Numlock-Modus festlegen Name der Ausgabedatei festlegen. Vorgabe ist STDOUT Pause-Modus festlegen Präfix-Verzeichnis festlegen Scrolllock-Modus festlegen Anzuzeigende Beschriftung festlegen shim_lock-Protokoll nicht gefunden Größe stretch(=ZOOM)|normal(=NORMAL) Symbol »%s« nicht gefunden temporär Terminal %s wurde nicht gefunden oder wird von terminfo nicht berücksichtigt Terminal »%s« wurde nicht gefunden Die Kennung des Bootloaders. Diese Option ist nur auf EFI-Systemen und Macs verfügbar. Die PReP-Partition ist nicht leer. Falls Sie sicher sind, dass Sie sie verwenden wollen, führen Sie dd aus, um sie zu leeren: »%s« Die Einstiegspunktstruktur des SMBIOS wurde nicht gefunden Das Argument »%s« benötigt eine Ganzzahl Die gewählte Partition ist keine PReP-Partition Der device.map-Eintrag »%s« ist ungültig, wird ignoriert. Bitte korrigieren oder löschen Sie Ihre device.map Das Laufwerk %s wurde in der Gerätetabelle mehrfach %s definiert Der Laufwerksname »%s« in device.map ist inkorrekt. %s wird stattdessen verwendet. Bitte verwenden Sie die Form [hfc]d[0-9]* (z.B. »hd0« oder »cd«) das Feld endet außerhalb der Struktur Der erste Sektor der Core-Datei ist nicht sektor-ausgerichtet der angegebene Versatz ist außerhalb der Struktur Die Verarbeitung muss zwischen 0 und 65535 sein Das Installationsgerät ist ein Wechseldatenträger. Diese Option ist nur bei EFI verfügbar. die Übereinstimmung muss eine positive Ganzzahl sein Der Partitionstyp 0x%x ist ungültig Die Sektoren der Core-Datei sind zu stark fragmentiert Die Größe von »%s« ist nicht %u »%s« ist zu groß »%s« ist zu klein der Typ muss zwischen 0 und 255 liegen Diese ELF-Datei ist vom falschen Typ Diese GPT-Partitionsbezeichnung hat keine BIOS-Boot-Partition, Einbettung würde unmöglich sein Dieses LDM hat keine Einbettungspartition, Einbettung würde unmöglich sein Die MSDOS-Partitionsbezeichnung hat keinen Freiraum nach dem MBR, Einbettung würde unmöglich sein Drei Argumente erwartet Zeitüberschreitung beim Öffnen von »%s« Zeitüberschreitung beim Lesen von »%s« Zeitüberschreitung: Hardware-Adresse konnte nicht aufgelöst werden Zu tief verschachtelte symbolische Verknüpfungen Übersetzer »%s« für Pfad »%s« hat verschiedene Wörter, die keine Optionen sind, mindestens »%s« und »%s« Übersetzer »%s« für Pfad »%s« wurde nur Optionen übergeben, device-Teil konnte nicht gefunden werden Übersetzer-Befehlszeilenpfad für Pfad »%s« ist leer Zwei Argumente wurden erwartet Typ Es kann kein Dateisystem in %s erkannt werden. Sicherheitsüberprüfung kann nicht ausgeführt werden Gerätegröße ist unausgerichtet Unerwarteter EFI-Fehler Unerwartetes Dateiende Unbekanntes Argument »%s« Unbekannte Kompression %d Unbekannter Gerätetyp %s Unbekanntes Dateisystem Ungültiger Typ eines RAID-Geräts »%s« Unbekanntes Zielformat %s Unbekanntes Zielformat %s
 Unbekannter Terminfo-Typ »%s« Nicht erkannte Formatspezifikation für DHCP-Option »%s« Nicht erkannte Netzwerkadresse »%s« Netzwerk-Schnittstelle »%s« wurde nicht erkannt Zahl nicht erkannt Nicht auflösbare Adresse %s unset [NAME ...] Nicht unterstützter HTTP-Fehler %d: %s Nicht unterstützte HTTP-Antwort Nicht unterstützte RAID-Version: %d.%d Nicht unterstütztes gzip-Format Nicht unterstützte Anweisung Nicht unterstützte Plattform %s Flusskontrolle des seriellen Ports wird nicht unterstützt Parität des seriellen Ports wird nicht unterstützt Geschwindigkeit des seriellen Ports wird nicht unterstützt Anzahl der Stop-Bits des seriellen Ports wird nicht unterstützt Wortlänge des seriellen Ports wird nicht unterstützt FARBE für Hintergrund verwenden FARBE für Beschriftung verwenden. FARBE für Beschriftungshintergrund verwenden. FARBE für Text verwenden VERZEICHNIS als Wurzel der EFI-Systempartition verwenden. VERZ für PPC-MAC-Installation verwenden. DATEI als Schrift verwenden (PF2). DATEI als Schriftart für Beschriftung verwenden DATEI als Memdisk-Abbild verwenden DATEI als Boot-Abbild verwenden [Vorgabe=%s] DATEI als Kern-Abbild verwenden [Vorgabe=%s] DATEI als Gerätezuordnung verwenden [Vorgabe=%s] DATEI als xorriso benutzen [optional] GRUB-Dateien im Verzeichnis VERZ verwenden [Vorgabe=%s] ZEICHENKETTE als Produktname verwenden ZEICHENKETTE als Produktversion verwenden ID-Datei auch dann verwenden, wenn eine UUID verfügbar ist Abbilder und Module in VERZEICHNIS verwenden [Vorgabe=%s/<platform>] GRUB-Dateien im Verzeichnis VERZ verwenden [Vorgabe=%s] Übersetzungen im Verzeichnis VERZ verwenden [Vorgabe=%s] Variable Variable »%s« ist nicht gesetzt Verifizierung ist erforderlich, aber niemand nimmt Notiz davon: %s Visuelles UTF-8 Warten, bis ein Debugger einklinkt mit Blocklisten wird nicht fortgesetzt Ausgabe in DATEI schreiben [Vorgabe=stdout] Falsches ELI-Magic oder -Version xnu_uuid GERÄT Xorriso wurde nicht gefunden xz-Datei ist beschädigt oder Blockoptionen werden nicht unterstützt Sie können diese Adresse nicht löschen Sie müssen zuerst den Xen-Hypervisor laden Sie müssen zuerst den Kernel laden Ihre BIOS-Boot-Partition ist zu klein, Einbettung würde unmöglich sein Die LDM-Einbettungspartition ist zu klein, Einbettung würde unmöglich sein Ihre Datei core.img ist ungewöhnlich groß. Sie würde nicht in den Einbettungsbereich passen. Ihr Einbettungsbereich ist ungewöhnlich klein. core.img würde nicht hineinpassen.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         bT          Ɛ&&kW?     1 > ;o      T          Ɛ&'kY?     z  ? ;o      T    M      Ɛ&b'k[?     y  @ ;o      T    M      Ɛ&'k]?     1 A ;o      =T    5      Ɛ&'k_?     1 B ;o      sT    0      Ɛ&(ka?      C ;o      T    .      Ɛ&N(kc?     ǥ D ;o      ӖT          Ɛ&(ke?     1 E ;o      T          Ɛ&(kg?     1 F ;o      T          Ɛ&(ki?     C G ;o      T          Ɛ&(kk?     L H ;o      GT    w      Ɛ&0)km?     1 I ;o      T           Ɛ&p)ko?     F J ;o      T          Ɛ&)kq?     G K ;o      ҠT          Ɛ&)ks?     1 L ;o      T          Ɛ&*ku?     1 M ;o      ӣT    6      Ɛ&J*kw?     1 N ;o      
T          Ɛ&*ky?     1 O ;o      T    x      Ɛ&*k{?      P ;o      T           Ɛ&*k}?     1 Q ;o      T          Ɛ&+k?      R ;o      T           Ɛ&d+k?     1 S ;o      T          Ɛ&+k?     1 T ;o       T          Ɛ&+k?     1 U ;o      ųT    c      Ɛ&$,k?     1 V ;o      )T          Ɛ&,k?     J W ;o      5T    /      Ɛ&,k?     1 X ;o      eT    4      Ɛ&,k?     1 Y ;o      T          Ɛ&T-k?     1 Z ;o      T          Ɛ&-k?     1 [ ;o      mT           Ɛ&-k?     1 \ ;o      ]T           Ɛ&-k?     1 ] ;o      RT           Ɛ&.k?     1 ^ ;o      T          Ɛ&.k?     1 _ ;o      T          Ɛ&6/k?     1 ` ;o      T          Ɛ&p/k?     1 a ;o      ;T          Ɛ&/k?     1 b ;o      T    .      Ɛ&/k?     1 c ;o      T           Ɛ&00k?     1 d ;o      T          Ɛ&0k?     1 e ;o      @T          Ɛ&0k?     1 f ;o      UT    e      Ɛ&0k?     b g ;o      T          Ɛ&1k?     1 h ;o      >T          Ɛ&P2k?     1 i ;o      T          Ɛ&2k?     ( j ;o      T          Ɛ&2k?      k ;o      T    S      Ɛ&2k?      l ;o      T          Ɛ&2k?      m ;o      T          Ɛ&$3k?      n ;o      oT    8      Ɛ&H3k?      o ;o      T    a      Ɛ&l3k?      p ;o      
T    A      Ɛ&3k?      q ;o      LT          Ɛ&3k?     1 r ;o      T          Ɛ&44k?     1 s ;o      gT    ]      Ɛ&n4k?     1 t ;o      T    D      Ɛ&4k?       u ;o      
T    -      Ɛ&4k?      v ;o      8T    A      Ɛ&5k?     1 w ;o      zT          Ɛ&H5k?     1 x ;o      T          Ɛ&|5k?     1 y ;o      T           Ɛ&5k?     j  z ;o      T          Ɛ&$6k?     1 { ;o      "T    V      Ɛ&R6k?     m  | ;o      yT          Ɛ&6k?     1 } ;o      0T    /      Ɛ&7k?     1 ~ ;o      `T          Ɛ&@7k?     1  ;o      <T          Ɛ&r7k?     k   ;o      T          Ɛ&7k?     q   ;o      T    ^      Ɛ&=k?        ;o      <U          Ɛ&@=k?     >  ;o      U          Ɛ&p=k?     2  ;o      U          Ɛ&=k?     2  ;o      U          Ɛ&=k?     l   ;o      s	U    A      Ɛ&>k?       ;o      U          Ɛ&L>k?     7Q  ;o      
U          Ɛ&>k?     &  ;o      XU          Ɛ&>k?     2  ;o      .U          Ɛ&>k?     %  ;o      U          Ɛ&"?k?     6Q  ;o      	U          Ɛ&V?k?     8Q  ;o      U          Ɛ&z?k?     9Q  ;o      U          Ɛ&?k?     n   ;o      U          Ɛ&?k?     |@  ;o      pU          Ɛ&@k?     p   ;o      FU          Ɛ&Z@k?     2  ;o      ) U    ?               (    \Q      pl  #   ql      l     l     l     l  $    m     %m  6   9m     pm  	   |m     m     m     m     m     m     m     m    n    o    p     q  8   3q  %   lq  F   q  v   q     Pr     cr     kr  
   {r  	   r  
   r  8   r     r     r  7   r     )s     2s  1   Hs     zs     s  2   s  %   s  '   s  %   t  '   Ct     kt     pt     rt     t     t     t  
   t     t     t     t     u  
   u     (u     8u     Eu     Ru  $   Xu     }u     u     u      u     u     u     v     v  !   8v     Zv     ov     v  #   v     v  `   Lw  Z   w     x     #x     ?x     Ax     Ex     \x     bx     kx     x  0   x  3   x     y     y     7y     Ny     hy     y     y     y  
   y     y     y     y     y     y  %   z     2z     Qz     ez     {z     z     z     z     z     z     z  *   {  3   9{  1   m{  E   {  C   {  <   )|  1   f|  2   |     |     |     }     $}      A}     b}     }     }     }     }  &   }  &   ~     D~  7   c~  1   ~     ~  +   ~          7  #   U     y  5                     -   &      T     u       "     8   Ӏ          +     =     Z  	   i  #   s               ȁ                 )   .     X     w       "     P   ւ     '     <  H   Q  &             ك  !     ,        /     ;     ?  	   \  !   f  *          '   ˄                    4  $   L     q                    ̅            
     
   *     5  1   H  
   z                 3   ʆ  >     $   =     b     y               ɇ       +        )     E  o   c  #   ӈ            $   -     R     l  '     9               z   !  "             Ɗ  8   ڊ       
   *     5     B     \     |       +   5     a     y            "        ڌ       (        %  #   =  &   a  ?     '   ȍ  @        1     =     M     ]     t  "     0        ڎ     ߎ       7        5     =     I     Z     p     |       0             Ώ            2   
  %   @     f     {  *     6     +             6     I  "     !   =  d   _  e   Ē  d   *  i     o     H   i       1   Ŕ  )        !     (     *     ?  /   N     ~       5        ڕ  K        E          ;  +   P  *   |  )     )   ї  -     )   )     S     p     t  7   z  D               '     P   )     z       	             ę     Ǚ                 '        D  +   S            )        ֛  9        -     B     X     m       "                  Ĝ  (   ќ                 "     +   /  -   [                    ɝ     ڝ            O        ^     t       
          %   Ş       )   
  !   4  "   V     y       +        ؟                 !         B     ^     w                     ֠                    7     K  4   [                    ١               (     A     ^     u        !        ˢ  4     M     2   h            *   ӣ  8        7     D     [     s            3     $     +        4  
   I     W     Y     q     x       7     ;   ץ       !   2     T     j       '     %   ʦ          
           6     M     ^     b     h          ʨ     ݨ                    "  '   9  
   a     l     {            
                  ҩ  H     L   8                    Ī  %   Ӫ            #   ,     P     m                 «       "     (        <     X  %   e       2        ج       #          *   6     a     c     v  #   {            	     	     "   ʭ  ;     #   )  <   M  
          
     .   Į  	          `        p  !     )        ѯ     կ     ۯ                         *     A     T     j            "                       *     A     W     k       )     a   ñ     %     B  g   ^     Ʋ     K     e  -          !   ĳ       "     '     Q   B               ʴ  
   ޴                    <     Y     v       #        ҵ  
                   .      A  #   b                 -   ˶       )        =     Z     p       ,        з  
          	     "     %   )     O     T     i  
   p     {  &     )        ո  5     ^        }  $     %          ^     _     }   T     һ  &     )     '   ڼ  >     D   A  !     '     -   н  #        "  )   B     l  )          )   о  ,        '     G     `     {       E     #             )     F     b     }             q        D  :   a                                   3     O  0   d            #               )     &   G  #   n  -                            *  )   F     p  %     %     ,     '     :   !     \  -   {  0     /        
       '   ,     T     f  '   {  $     "               
     2   "  Q   U  *     +               )   
  o   7       6                          0         H  !   i  "     #                         !   7     Y  
   o     z  <               %        '     0     4     :     Z  d   s  *     (     ,   ,     Y     r  0          
                         0        L  !   _            $                             5     F  "   c  $                                  ,     D  '   a       +     "                       /  '   C     k            <                %   !     G     `     w       m             .     H     b     {  +     3     1     
   '  '   5  -   ]  '     '     .     	   
          0     L     h            /               *   	  ?   4     t  B     p        ;  /               .   !  O   P  )               	     <        6  5   T                           :        :  1   M       L                                 %     4     =     [     d     z            	                                       3     I     c     j  
   q  
     
     	          #     )                    P   &     w            n     F   <  N     
     "                    .   +  .   Z  /     V     -     -   >  $   l  -     #     0     6     
   K     Y     l       
     (     1     (     )   $     N     g                 !                  
      &     G  %   _       &               0         )     J     i                       7     .   &     U  !   m  4     #                  $  '   9     a                 #     %     "        =     R     g     |                           ,         -     <     L     h                 #                _     B   z                         '     >     Z  &   x       
               J     i   <       &               7        R     b     }  ;     V     +   $  "   P     s  &     !          r     0   `  "             Z  /   x       H     F     w   M  N          (   ,     U     q  )   }       $     ,     &     '   2     Z  %   s                           $     '     *   ;  (   f                      J        +  -   G  +   u                 "     +               D   7  J   |            %     "   (  9   K                       "             &      9     Z     n                 $             	          6  %   Q     w                      %             4     G     [     c  [   w            !             '     @     T     Y  7   v                                   &  /   @  7   p  4     /        
     *  -   B     p  @               3        (  &   ?     f     x                 1        
          5     H     ]     d  $   z  	     	     )          
     1                       (      :  !   [     }            J     "        /     ;     G     ]     v                                             
        0    =    U    d    ~     '    &    &     "   '    J L   W 9        0       - !   A    c )        3               $    6    F    W    l 
   { #    #    $            &       >    M    b    v                 	    7        D   1 ]   v .    %    ,   ) [   V ;    w    $   f 7    )    &    K   	 $   `	 #   	 /   	    	    	    
 "   0
 &   S
 U   z
 @   
 Q       c    |     +        R    L   C .            F       "
    8
    M
    d
    z
    
    
     
    
    
     2   * !   ] #                               8    P    h $            (    #       /    H    \    { )                    '    '   D '   l     0            -    8   K !    '            +        !   2     T &   u             .        )   & !   P B   r F    E    B   B    %   l "                ,       . ?   M     	    
    %                   # 
   ' E  5 :  { D       >    %   P D   v        > 
   Q    _ 	   t    ~     A    
        6        7    @ =   ]         8    %    *     %   G  *   m                           	              !    ! 1   /!    a!    w!    ! 
   ! 
   !    ! '   !    !    "    " :   /"    j"    "    "    " ,   " +   
# )   6# %   `# '   #    # k   N$ f   $ "   !% !   D%    f%    h%    l%    %    % -   %     % 5   % :   &     U&    v&    & %   &    &    &    '    !'    8' "   P' 
   s'    '    '    ' $   '    '    '    ' !   ( "   3(    V(    q(    (    ( !   ( @   ( ?   ) 6   _) [   ) Y   ) S   L* >   * ?   *     + "   @+ "   c+ $   + (   + !   + #   + #   , %   >, &   d, )   , .   , &   , ?   - 9   K- !   - 3   - &   - %   . .   (. "   W. A   z. %   . $   . #   / 5   +/ (   a/ '   / %   / 5   / N   0    ]0    }0    0    0 	   0 -   0 #   0    1     31 )   T1    ~1    1 9   1 *   1 &   2 ,   62 0   c2 _   2    2    3 [   ,3 -   3    3 
   3 &   3 9    4    :4    K4    Q4    j4 E   v4 8   4    4 /   5    @5    ]5    r5    5 1   5    5    5 (   
6 -   36 *   a6    6 (   6    6 
   6    6 4   7    97    J7 $   Z7    7 ;   7 O   7 7   +8    c8    z8    8 &   8 $   8    9 ,   9    H9     c9 n   9 !   9    : #   .: &   R:    y:    : 2   : T   :    =;    X; }   u; !   ;    <    < @   :<    {< 
   <    <    < #   <    <    = 7   =    >    >    4>    N> '   e>    >    > 1   >    > %   > 1   $? J   V? 2   ? K   ? 
    @ 
   .@    <@    K@    `@ %   u@ 1   @    @    @    @ 8   @    5A    AA    UA    jA    A    A    A 2   A    A    A    A    B :   *B (   eB    B    B 3   B :   B 6   )C ,   `C    C    C %   D "   D    D    kE    E    vF     G `   G    G 9   H <   IH    H    H    H    H 0   H    H    H =   I    MI R   iI    I #   J %   J ,   J ,   K )   BK )   lK 0   K ,   K '   K    L     L 8   &L F   _L    L    L &   L X   L $   0M 
   UM 
   `M    kM    M #   M    M    M    N 4   O    NO 4   _O    O    O -   O !   O D   P    ]P    tP    P    P    P .   P    Q    	Q    Q ,   Q    HQ    LQ    RQ /   ZQ +   Q 9   Q    Q    R    R    2R    HR    aR    yR g   R    R     S !   6S    XS    mS 0   S $   S 9   S -   T ,   HT    uT    T 3   T    T    T    U    2U .   RU (   U !   U    U    U -   U '   'V    OV    kV     V !   V    V    V ;   V (   /W    XW %   qW    W     W    W    W )   X    ?X    [X %   tX $   X &   X L   X b   3Y @   Y *   Y    Z 0   "Z L   SZ    Z !   Z    Z    Z    [    .[ S   @[ /   [ 5   [    [    \    (\    *\    A\    I\ "   R\ A   u\ K   \ $   ] )   (]    R] )   m]    ] *   ] (   ] "   ^    *^    B^ !   b^    ^    ^    ^    ^    n_    :`    O`    m`    u` '   `    ` 7   ` 
   a    a    "a    >a    Ca    \a    ma    ra    a a   a Q   b    Xb    lb    b    b 2   b    b    c (   &c    Oc "   nc    c )   c .   c    d ,   d *   ?d    jd    d +   d $   d 9   d 	   %e    /e *   Ne    ye 6   e    e    e    e    e    
f    f    *f 
   ;f 0   Ff I   wf 1   f J   f    >g %   Ng    tg 8   g    g    g h   g    Ih !   bh '   h    h    h    h    h    h    h    
i    i    >i    Xi    vi +   i (   i 5   i     j $   ?j    dj    j     j    j    j    j -   k n   Jk &   k '   k z   l    l "    m ,   Cm 3   pm    m )   m    m .   n '   3n e   [n    n    n    n 
   o    o !   1o    So !   qo    o     o    o ,   o    p    3p 4   Fp    {p    p    p 2   p    p    q "   "q A   Eq    q 4   q    q "   q    r    .r 2   Kr #   ~r    r    r 	   r *   r %   r    s    s    .s 	   5s    ?s '   Gs 3   os    s 6   s    s &   nt ;   t =   t    u    u    tv    v    w 3   ]x 2   x <   x M   y V   Oy #   y )   y /   y /   $z ,   Tz =   z "   z -   z     { .   1{ 1   `{ /   { $   { $   {     |    -| Z   G| /   |    | $   | #   } %   7} +   ]} -   }    }    } &   T~ I   {~ ,   ~    ~ .    !   5    W    r #        8    )    -   5 2   c         /   Ҁ 3    +   6 7   b #        (   ށ         *   =    h (   z )    0   ͂ +    F   * %   q 7    ;   σ A       M    b 0   u        Ą *   ߄ 3   
 .   >    m $   ~     :    c    5   T -            +   Ȇ        ~ K                    5    %   < )   b )    )            )    &   > )   e     
        ;   ׉        / 7   H             +        u   ي 7   O 1    7            ,   '    T    [    l             6        !    %   1    W 1   k     "       ֍ &        #   4 0   X '           ю -        !   6 "   X $   { /    '   Џ 5    *   .    Y    ^ #   s     (    *   ֐ "       $ A   9 !   {     5       ۑ            ) m   I        Ւ            , 9   I F    A   ʓ     '    9   D #   ~ '    0   ʔ     &    "   ) &   L "   s %    !    <   ޕ        6 *   ; <   f     R            /   @    p     2    [   ՘ 5   1    g     
    F    "    5   
    C    Y    q         C   ʚ     F   ( &   o P                    '    /    7    F    O 	   e    o         
    
        "   ʜ     +       4 $   G    l "    
    	           ɝ 
   ݝ 	        '    (        I    a    u [        "       + o   K Q    K   
 
   Y *   g 	            9   Ǡ 9    9   ; _   u /   ա /    ,   5 1   b &    -    7       !    1    H    \    p )    2    ;   ܣ 1    (   J "   s            Ƥ (           ) $   H 3   m $    /   ƥ     4    !   F &   h @    '   Ц '         (   < %   e     !    J   ͧ B    #   [ 4    >    '    *    )   F    p 7    $   é "        *   $ .   O &   ~ #       ɪ             &     E (   f             6   Ы             / #   P    t         ,             w    X    %    .       E    \    {     #    1   Ү !       &    8    E O   d y       . ,   H    u %    G                , A   G ^    1    -       H 2   a *        v   ݲ 7   T 4        -    F        L    b   b    ŵ _   [     ,   Ӷ      
     -   +    Y *   l -    #   ŷ $        (   #    L    R    j         3    1    9   # 1   ]            ȹ     ^       S >   o *       ٺ    ߺ     (    4       Q #   f R    5   ݻ "    -   6 ,   d +    @        !       < +   S -            %   ܽ         #    ?    _    | -       ɾ              0   @    q                ݿ +       %    ?    U 
   j    u w            '   .     V #   w         (    8       !     4    U    t             7    C   ! <   e 7    %         6    )   P K   z         B        : 0   [     &            #    A        b    t                 #       
     +       K    & @   8 (   y             %    &       2    B !   [ R   } $    
    
           +    H    ^    r                                 
   '    5    R #   e "        &    2    2    *   P 
   { F    F        3   3    g &    %    ,        0    !   J    l             !            6   % 6   \ >            ;       7    J    c    { #                    8       3 E   Q m    7    "   = 2   ` g    F       B !    G    )   - %   W W   } *    )     <   *    g !    "    !    *    h    J    h       3    N    e 9   z 4    S    ^   = ,            j    "   S    v             #    !    '   #    K     h     @    '    '       :    S    k    |     "                0   0 '   a )    9    1           3    I    h -   | (        %        ;   4 :   p :    %    6        C #   d A    A    '    -   4 	   b    l 2        $    +    4   (    ]    z     ;    #    )    !   0 O   R S    X    R   O         ]                t    ,      V               (        g            /      r  *      M                !  ~  n            P  )    j                         P  <        `      0            R   x   3        0  2        b        r                       5                           Q                y    K          N    2    >    *            )    v  ?                   A  f        k  e                V             F         f    :    y     '  e   Q  6  d     U            J                                m                                      
         h     B  ,          \          9    #                       #  &        ~         O         J    I         K        S  o        s                     Q          R      c    %    s                        $  -          "                      /  N  G   m                     ^         3   /  "         Z  b          I      .        e  B                        3                                 :                 W            F    	    M       
                
          e  t  3  6                  U     7       f            {                       n   b  A    !          	     T                         t  X      z  ]         @                         p    9   z               Q         $   ^                  S   8     ,      d  h  (      u       D     @      N    [      N      [            X      	      	                  |        Y        o  Y                                     l  5  2                                       q      q  Z                8  n                                                    >  %  >                                  x  a        2   B                L               }             o   o                    -      *  w                  W                d           8  v  1            4     .  ;              7        %        A                     %         <                  G                              _      *                        d             k   H                     l  7       \      D  p        E                     p                  i     r  <      "  
       U  6          ~                                          8      {  #  v             _     B               O      P   _  j  D           D    w          ~            H        c            
          "                .             |    V      M  I    w  E                        R          f             ?                                      v        b  L                
                          ?   #   (      k    !   i     |          H              C      r  v  )      S    g            n    `                            l    u       z               a          [  D                     2      /      X         u                         x  }  '            
     ]          `         $          -                  5     \   Q                 $     {        ?  d    :                 )                  
      &   h            <    ?                      j   J                         n        8     I            G  Y          K       F  G    z  j                    _               C     5      Z    +              O          I                  "      O                     G      i    r   @          |           1             >                                  }   S      
        w      \     5          Y                U              M      `            R                           P  p      &       ;            &                        C              [              h  c                                 !    '      j           1  ;               y      1           [      ]     J    &                  R           /               +     J                        q                          =                  g         H        e           W                  {        O          |                                           :          q                              B             E  (              L             #           6                        z    L                  7                    (  =  .   -           ;  '          ;      t   ^   C  k          
                   s  6                           3                ]  X                P  f  0  a  $  W        9           9  m           
           y    V                T  q           i    K          y            @              K  X            Z         W      `  u  E      =    h    U     T      '          x       A  %      l       >   !        V             T  	         -             u                           S      7               4  =   a   T                   1  *                             g  :               x        Y                              .  E  Z    _      9             )   o  m                  L              c    4                                       A   @              }          4              +  ^  s    w  0  g    	                             ~              \  C        i      l           p          H      F  4     ,  ,    m    {  <      c                      k    M    N   
        a    ^  0      b                  +    }      t  F              +           =                                               s                 total memory: %d KiB
     No preferred mode available
     Preferred mode: %ux%u
   EDID checksum invalid   EDID version: %u.%u
   Failed to initialize video adapter   No info available   VBE info:   version: %d.%d  OEM software rev: %d.%d
  (leftmost)  (medial)  (rightmost)  - Partition start at %llu%sKiB  - Sector size %uB  - Total size %llu%sKiB  - Total size unknown %ds %ds remaining. %s appears to contain a %s filesystem which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map and LDM which isn't known to be a safe combination.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s appears to contain a %s partition map which isn't known to reserve space for DOS-style boot.  Installing GRUB there could result in FILESYSTEM DESTRUCTION if valuable data is overwritten by grub-setup (--skip-fs-probe disables this check, use at your own risk) %s does not support UUIDs %s doesn't exist. Please specify --target or --directory %s doesn't look like an EFI partition %s is deprecated. Use set gfxpayload=%s before linux command instead.
 %s is deprecated. VGA mode %d isn't recognized. Use set gfxpayload=WIDTHxHEIGHT[xDEPTH] before linux command instead.
 %s: HASH MISMATCH
 %s: OK
 %s: READ ERROR
 %s: error: %s: info: %s: not found %s: the command is not allowed when lockdown is enforced %s: warning: - Label `%s' - Last modification time %d-%02d-%02d %02d:%02d:%02d %s --MORE-- --ppc PATH|--x86 FILE -h HASH [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] -l | -r | [-s] grubdev osdisk. .5 .sbat section can be embedded into EFI images only 16-bit protected interface supported
 16-bit protected interface unsupported
 32-bit protected interface supported
 32-bit protected interface unsupported
 =VAL > ACPI non-volatile storage RAM ACPI reclaimable RAM ACPI shutdown failed ADDR ADDR VALUE ADDR VALUE [MASK] ADDR [SIZE] ADDR1,MASK1[,ADDR2,MASK2[,...]] ADDRESS DNSSERVER APM disabled
 APM disengaged
 APM enabled
 APM engaged
 ASCII Accept DOS-style CR/NL line endings. Active input terminals: Active output terminals: Adapter `%s':
 Add PUBKEY_FILE to trusted keys. Add a DNS server Add a network address. Add a network route. Allow to interrupt with ESC. Ask for file name to reboot from. Assume input is hex. Assume input is passphrase. Assume input is raw. Attempting to decrypt master key... Attempting to install GRUB to a disk with multiple partition labels or both partition label and filesystem.  This is not supported yet. Attempting to install GRUB to a disk with multiple partition labels.  This is not supported yet. Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea. Available input terminals: Available output terminals: B B/s BIOS_DUMP [INT10_DUMP] BLOCK BYTE:BIT Background image mode. Base directory for hash list. Bless DIR of HFS or HFS+ partition for PPC macs. Bless FILE of HFS or HFS+ partition for intel macs. Boot BIOS-based system. Boot an operating system. Boot into single mode. Boot with debug messages. Boot with verbose messages. Booting `%s' Booting a command list Booting in blind mode Bootpath: %s
 Bootpath: unavailable
 Break into GDB CGA  COLOR COMMAND [ARGS] CPU Idle doesn't slow down processor
 CPU Idle slows down processor
 CS5536 at %d:%d.%d
 Can't create file: %s Can't enable ROM area. Change configured devices. Change partition type Check Alt key. Check Control key. Check Shift key. Check for CPU features. Check hashes of files with hash list FILE. Check if CPU supports 64-bit (long) mode (default). Check if CPU supports Physical Address Extension. Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel Check if FILE can be booted as x86_64 Xen unprivileged guest kernel Check if FILE can be used as Xen x86 privileged guest kernel Check if FILE can be used as x86 multiboot kernel Check if FILE can be used as x86 multiboot2 kernel Check if FILE is ARM EFI file Check if FILE is ARM Linux Check if FILE is ARM64 EFI file Check if FILE is ARM64 Linux Check if FILE is BIOS bootsector Check if FILE is IA64 EFI file Check if FILE is IA64 Linux Check if FILE is MIPS Linux Check if FILE is MIPSEL Linux Check if FILE is POWERPC Linux Check if FILE is RISC-V 32bit EFI file Check if FILE is RISC-V 64bit EFI file Check if FILE is SPARC64 Linux Check if FILE is XNU (Mac OS X kernel) hibernated image Check if FILE is hiberfil.sys in hibernated state Check if FILE is i386 EFI file Check if FILE is i386 XNU (Mac OS X kernel) Check if FILE is i386 kFreeBSD Check if FILE is i386 kNetBSD Check if FILE is of specified type. Check if FILE is x86 Linux Check if FILE is x86 Linux supporting 32-bit protocol Check if FILE is x86 kFreeBSD Check if FILE is x86 kNetBSD Check if FILE is x86_64 EFI file Check if FILE is x86_64 XNU (Mac OS X kernel) Check if FILE is x86_64 kFreeBSD Check if FILE is x86_64 kNetBSD Check key modifier status. Check whether user is in USERLIST. Checks GRUB script configuration file for syntax errors. Clear bit at BYTE:BIT in CMOS. Clear the screen. Cleared active flag on %d. 
 Command failed Commands: Compare FILE with local file LOCAL. Compare file `%s' with `%s':
 Compare two files. Compute XNU UUID of the device. Compute or check hash checksum. Configure serial port. Continue loops Convert common font file formats into PF2 Copy FILE to local file LOCAL. Copy FILE to standard output. Could not locate FPSWA driver Couldn't find a free BootNNNN slot Couldn't find physical volume `%s'. Some modules may be missing from core image. Couldn't load sha256 Couldn't load sha512 Create BIOS-like structures for backward compatibility with existing OS. Create a blank environment block file. Current terminfo types: DEVICE DEVICE [PARTITION[+/-[TYPE]]] ... DEVICE must be an OS device (e.g. /dev/sda). DEVICE_NAME DIR DIRECTORY [OSBundleRequired] DNSSERVER Debug tool for filesystem driver. Declare memory regions as faulty (badram). Decompressor is too big Default server is ${net_default_server} Define a menu entry. Define a submenu. Delete a network address. Delete a network route. Delete the specified loopback drive. Delete variables. Determine driver. Determine filesystem UUID. Determine filesystem label. Determine filesystem type. Determine partition UUID. Determine partition map type. Device %s: Devid: %s
 Devid: unavailable Direct color, mask: %d/%d/%d/%d  pos: %d/%d/%d/%d Disable ACPI. Disable SMP. Disable all boot output. Disable/enable SMART (0/1). Discarding improperly nested partition (%s,%s,%s%d) Disk cache statistics: hits = %lu (%lu.%02lu%%), misses = %lu
 Disk count must precede disks list.
 Display FPSWA version. Display SMART health status. Display a line of text. Display blocklist of FILE. Display output on all consoles. Display power mode. Display the usage of this command and exit. Display this help and exit. Display/set current datetime. Do not apply any reed-solomon codes when embedding core.img. This option is only available on x86 BIOS targets. Do not output the trailing newline. Do not print messages. Do not probe any floppy drive. Do not use APM to halt the computer. Do nothing, successfully. Do nothing, unsuccessfully. Don't display boot diagnostic messages. Don't load host tables specified by comma-separated list. Don't reboot, just halt. Don't stop after first error. Don't update EBDA. May fix failures or hangs on some BIOSes but makes it ineffective with OS not receiving RSDP from GRUB. EFI bootloader id isn't specified. ENVVAR ENVVAR [ENVVAR] ... ERROR: no valid keyboard layout found. Check the input.
 ESC at any time exits. EXPRESSION EXPRESSION ] Elapsed time: %d.%03d s 
 Elapsed time: %d.%03d seconds 
 Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged. Emulate a keystroke sequence Enable interpretation of backslash escapes. Enable/disable RTS/CTS. Enter ZFS password:  Enter in KDB on boot. Enter normal mode. Enter passphrase for %s%s%s (%s):  Enter password:  Enter username:  Error in parsing command line arguments
 Evaluate an expression. Evaluate arguments as GRUB commands Execute syslinux config in new context Execute syslinux config in new context taking only menu entries Execute syslinux config in same context Execute syslinux config in same context taking only menu entries Exit failed Exit from GRUB. Exit from loops Exit from normal mode. Export variables. Export version 1 tables to the OS. Export version 2 and version 3 tables to the OS. FILE FILE [ARG ...] FILE [ARGS...] FILE | TEMPO [PITCH1 DURATION1] [PITCH2 DURATION2] ...  FILE... FILE1 FILE2 FILENAME COMMAND FILESYSTEM [VARIABLE] FILE|prompt FONTS FORMAT FPSWA protocol wasn't able to find the interface FPSWA revision: %x
 FROM-TO[,FROM-TO] FROM[K|M|G] TO[K|M|G] FT_Init_FreeType fails Failed to boot both default and fallback entries.
 Failed to create `device-mapper' tree Falling back to `%s' File size: %s
 File system `%s' doesn't support embedding Files differ at the offset %llu: 0x%x [%s], 0x%x [%s]
 Files differ in size: %llu [%s], %llu [%s]
 Filesystem cannot be accessed Filesystem type %s Fill hybrid MBR of GPT drive DEVICE. Specified partitions will be a part of hybrid MBR. Up to 3 partitions are allowed. TYPE is an MBR type. + means that partition is active. Only one partition can be active. Filter the result like linux does. Finalize loading of EFI emulator. First try the device HINT if currently running on ARC. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on BIOS. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on EFI. If HINT ends in comma, also try subpartitions First try the device HINT if currently running on IEEE1275. If HINT ends in comma, also try subpartitions First try the device HINT if direct hardware access is supported. If HINT ends in comma, also try subpartitions First try the device HINT. If HINT ends in comma, also try subpartitions Fix video problem. Freetype Error %d loading glyph 0x%x for U+0x%x%s Freeze ATA security settings until reset. Friday G GNU GRUB  version %s GRUB Boot Menu GRUB doesn't know how to halt this machine yet! GRUB emulator. GRUBDEVICE=PLAN9DEVICE Generate GRUB keyboard layout from Linux console one. Generate PBKDF2 password hash. Generate a standalone image (containing all modules) in the selected format Generates a bootable CD/USB/floppy image.  Arguments other than options to this program are passed to xorriso, and indicate source files, source directories, or any of the mkisofs options listed by the output of `%s'. Get crc32 checksum of FILE. Get disk cache info. Get eight bytes' value at the given offset. Get four bytes' value at the given offset. Get the UUID's value at the given offset. Get the byte's value at the given offset. Get the string specified at the given offset. Get two bytes' value at the given offset. Get/set ATA disk parameters. GiB GiB/s Glue 32-bit and 64-bit binary into Apple universal one. Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted HASH HINT Halt the system, if possible using APM. Halts the computer.  This command does not work on all firmware implementations. Handle N bytes in output file. Hello World Hercules  Hexdump random data. ID IMAGE1 [IMAGE2 ...] MOUNTPOINT IMAGE_PATH COMMANDS INSTALL_DEVICE must be system device filename.
%s copies GRUB images into %s.  On some platforms, it may also install GRUB into the boot sector. If FILENAME is `-', the default value %s is used.

There is no `delete' command; if you want to delete the whole environment
block, use `rm %s'. Import ZFS wrapping key stored in FILE. Incorrect VDEV Incorrect virtual device: no type available Insert a module. Install GRUB on your drive. Installation finished. No error reported. Installing for %s platform.
 Insufficient privileges to access firmware, assuming BIOS Invalid command %s.
 Invalid device `%s'.
 Invalid disk count.
 Invalid parameter Invalid tempo in %s Invoke user configuration routing. K KERNEL ARGS KEYBOARD_KEY Keyboard key to quickly boot this entry. KiB KiB/s LOCALES Leaf virtual device (file or disk) Legacy `ask' parameter no longer supported. Legend: mask/position=red/green/blue/reserved Length of generated hash Length of salt Linux not supported yet List DNS servers List PCI devices. List Xen storage. List all files. List available video modes. If resolution is given show only modes matching it. List coreboot tables. List devices and files. List devices or files. List devices. List files in PATH. List memory map provided by firmware. List of supported video modes: List of users allowed to boot this entry. List or select an input terminal. List or select an output terminal. List the current variables. List the loaded fonts. List variables from environment block file. Load 64-bit XNU image. Load BIOS dump. Load DTB file. Load FreeBSD env. Load FreeBSD kernel module (ELF). Load FreeBSD kernel module. Load FreeDOS kernel.sys. Load Linux. Load NTLDR or BootMGR. Load NetBSD kernel module (ELF). Load NetBSD kernel module. Load Plan9 kernel. Load Truecrypt ISO. Load XNU extension directory. Load XNU extension package. Load XNU extension. Load XNU image. Load XNU ramdisk. It will be available in OS as md0. Load `device-properties' dump. Load a PXE image. Load a keyboard layout. Load a multiboot 2 kernel. Load a multiboot 2 module. Load a multiboot kernel. Load a multiboot module. Load a splash image for XNU. Load a xen hypervisor. Load a xen module. Load an image of hibernated XNU. Load and initialize EFI emulator. Load another boot loader. Load another config file but take only menu entries. Load another config file without changing context but take only menu entries. Load another config file without changing context. Load another config file. Load another coreboot payload Load background image for active terminal. Load host ACPI tables and tables specified by arguments. Load initrd. Load kOpenBSD ramdisk. Load kernel of FreeBSD. Load kernel of NetBSD. Load kernel of OpenBSD. Load module. Load only tables specified by comma-separated list. Load the same file in multiple ways. Load variables from environment block file. Load zfs crypto key. Loaded fonts: M MAC verification failed MODULE MODULES Mac-style bless on HFS or HFS+ Mail xorriso support requests to <bug-xorriso@gnu.org>. Make GRUB CD-ROM, disk, pendrive and floppy bootable image. Make a bootable image of GRUB. Make a virtual drive from a file. Make partition active Manage the BIOS drive mappings. Manipulate PCI devices. Match structures with the given handle. Match structures with the given type. Measure time used by COMMAND Memory type: DDR2. Memory type: Unknown. Menu entry identifier. Menu entry type. MiB MiB/s Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file completions. %s Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu. Missing arguments
 Missing input file
 Monday Monochrome  More than one install device? Mount a crypto device. Mount all volumes with `boot' flag set. Mount all. Mount by UUID. Mount crypto devices. NAME NAME [VARIABLE] [HINTS] NOT RUNNING:  NUM NUMBER_OF_SECONDS Name	Ref Count	Dependencies
 Native disk drivers are in use. Refusing to use firmware disk interface. Netboot directory for %s created. Configure your DHCP server to point to %s
 Network protocols: New MBR is written to `%s'
 No CS5536 found No FPSWA found No boot time statistics is available
 No command is specified.
 No device is specified.
 No disk cache statistics available
 No drives have been remapped No known filesystem detected No path is specified.
 No path or device is specified.
 No virtual device tree available Non-chain 4  Not enough parameters to command.
 Now connect the remote debugger, please. Number of PBKDF2 iterations OPTIONS FILE OS disk #num ------> GRUB/BIOS device OS file %s open error: %s Option -- switches to native xorriso command mode. Options: Out of range lookup: %d
 Out of range substitution (%d, %d)
 Output buffer too small Override guessed mapping of Plan9 devices. P PARTITION COMMANDS PATH PBKDF2 hash of your password is %s
 PORT PORT VALUE [MASK] PUBKEY_ID Paletted  Parse legacy config in new context Parse legacy config in new context taking only menu entries Parse legacy config in same context Parse legacy config in same context taking only menu entries Part no: %s.
 Partition %d is active now. 
 Partition %s: Partition style `%s' doesn't support embedding Path: %s
 Path: unavailable Perform COMMANDS on partition.
Use `parttool PARTITION help' for the list of available commands. Perform a DNS lookup Perform an IPV6 autoconfiguration Perform both direct and reverse mappings. PiB PiB/s Planar  Play a tune. Pool GUID: %016llx
 Pool GUID: unavailable Pool name: %s
 Pool name: unavailable Pool state: active Pool state: destroyed Pool state: exported Pool state: level 2 ARC device Pool state: potentially active Pool state: reserved for hot spare Pool state: unavailable Pool state: uninitialized Possible arguments are: Possible commands are: Possible devices are: Possible files are: Possible partitions are: Possible things are: Prefix not specified (use the -p option). Prepares GRUB network boot images at net_directory/subdir assuming net_directory being TFTP root. Press any key to continue... Press any key to launch xnu Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. Press enter to boot the selected OS, `e' to edit the commands before booting or `c' for a command-line. ESC to return previous menu. Print Memory information. Print ZFS info about DEVICE. Print ZFS-BOOTFSOBJ or store it into VARIABLE Print a block list. Print and execute block argument. Print backtrace. Print drive identity and settings. Print sizes in a human readable format. Probe device information for a given path (or device, if the -d option is given). RAM holding coreboot tables RAM holding firmware code RAM slot number %d
 REGEXP STRING ROM image is present. Read 16-bit value from ADDR. Read 16-bit value from PORT. Read 32-bit value from ADDR. Read 32-bit value from PORT. Read 8-bit value from ADDR. Read 8-bit value from PORT. Read a CPU model specific register. Read only LENGTH bytes. Reboot failed Reboot into firmware setup menu. Reboot the computer. Reenter password:  Register %x of %x:%02x.%x is %x
 Remove PUBKEY_ID from trusted keys. Remove a DNS server Remove a module. Remove an environment variable. Remove any memory regions in specified range. Render Apple .disk_label. Reset all mappings to the default values. Retrieve SMBIOS information. Retrieve device info. Return from a function. Return to IEEE1275 prompt. Run `gdb %s %d', and set ARGS.HOLD to zero.
 Run `go' to resume GRUB. SBAT metadata SECS SHORTNAME SHORTNAME CARD ADDRESS [HWADDRESS] SHORTNAME NET [INTERFACE| gw GATEWAY] SIZE SOURCE|-u UUID|-a|-b STRING STRING ... Saturday Save read value into variable VARNAME. Save variables to environment block file. Say `Hello World'. Script `%s' contains no commands and will do nothing
 Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable. Search devices by a file. Search devices by a filesystem UUID. Search devices by a filesystem label. Search devices by file, filesystem label or filesystem UUID. If --set is specified, the first device found is set to a variable. If no variable name is specified, `root' is used. Search devices by file. If VARIABLE is specified, the first device found is set to a variable. Search devices by label. If VARIABLE is specified, the first device found is set to a variable. Sector %llu is already in use by raid controller `%s'; avoiding it.  Please ask the manufacturer not to store data in MBR gap Sector %llu is already in use by the program `%s'; avoiding it.  This software may cause boot or other problems in future.  Please ask its authors not to store data in the boot track Select a structure when several match. Select device by its position on the bus. Select device by vendor and device IDs. Set Advanced Power Management
(1=low, ..., 254=high, 255=off). Set Automatic Acoustic Management
(0=off, 128=quiet, ..., 254=fast). Set OEMID of RSDP, XSDT and RSDT. Set OEMTABLE ID of RSDP, XSDT and RSDT. Set OEMTABLE revision of RSDP, XSDT and RSDT. Set `hidden' flag in partition type Set a variable to return value. Set a variable to the first device found. Set an environment variable. Set background color for active terminal. Set bit at BYTE:BIT in CMOS. Set creator field of RSDP, XSDT and RSDT. Set creator revision of RSDP, XSDT and RSDT. Set debug environment variable. Set drive to sleep mode. Set drive to standby mode. Set positional parameters. Set root device. Set standby timeout
(0=off, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Set terminfo type of TERM to TYPE.
 Set the base frequency. Set the serial port address. Set the serial port parity. Set the serial port speed. Set the serial port stop bits. Set the serial port word length. Set the serial unit. Set up images to boot from DEVICE.

You should not normally run this program directly.  Use grub-install instead. Set user password (PBKDF2).  Set user password (plaintext). Unrecommended and insecure. Set variable with user input. Set variables. Setting partition type to 0x%x
 Shift positional parameters. Show ACPI information. Show APM information. Show CBMEM console content. Show a help message. Show a long list with more detailed information. Show boot time statistics. Show contents of FILE in hex. Show coreboot boot time statistics. Show loaded modules. Show memory contents. Show raw contents of ATA IDENTIFY sector. Show raw contents of a file or memory. Show raw dump of the CMOS contents. Show raw dump of the PCI configuration space. Show the contents of a file. Show the current mappings. Show the list of trusted keys. Show this message. Show version 1 tables only. Show version 2 and version 3 tables only. Shutdown failed Simulate grub-legacy `initrd' command Simulate grub-legacy `kernel' command Simulate grub-legacy `modulenounzip' command Simulate grub-legacy `password' command Simulate grub-legacy `password' command in menu entry mode Skip N bytes from output file. Skip offset bytes from the beginning of file. Skip signature-checking of the environment file. Skip signature-checking of the public key file. Slot "%s" opened
 Slot %d opened
 Sorry, no parttool is available for %s
 Specify filename. Specify hash to use. Specify one or more font files to load. Specify size for each read operation Specify the number of input files. Speed: %s 
 Start GDB stub on given port Stop GDB stub Storage information for `%s' does not include type Storage information for `%s' indicates neither a plain partition nor a plain disk Store matched component NUMBER in VARNAME. Store the value in the given variable name. Success Sunday Suppress normal output (warnings remain). Switch to native disk drivers. If no modules are specified default set (pata,ahci,usbms,ohci,uhci,ehci) is used Syntax error at line %u
 System management bus controller I/O space is at 0x%x
 T TARGET THEMES TPM unavailable Target format not specified (use the -O option). Terminal has specified geometry. Terminal is ASCII-only [default]. Terminal is logical-ordered UTF-8. Terminal is visually-ordered UTF-8. Test USB support. Test bit at BYTE:BIT in CMOS. Test file read speed. Test if REGEXP matches STRING. Test video subsystem in mode WxH. Test video subsystem. Text-only  The files are identical.
 The highlighted entry will be executed automatically in %ds. This VDEV is a RAIDZ%llu
 This VDEV is a mirror This entry can be booted by any user. Thursday TiB TiB/s Tool to edit environment block. Total flash size: %d B.
 Transform 64-bit UUID to format suitable for XNU. If -l is given keep it lowercase as done by blkid. Transform a system filename into GRUB one. Transform syslinux config into GRUB one. Translate SET1 characters to SET2 in STRING. Translate to lower case. Translate to upper case. Translates the string with the current settings. Tuesday USER PASSWORD USER PBKDF2_PASSWORD USERNAME[,USERNAME] UTF-8 Unable to create pipe: %s Unable to determine your platform. Use --target. Unable to fork: %s Unable to open stream from %s: %s Unable to retrieve pool state Uncompress data. Uncompress file before checksumming. Unknown TPM error Unknown address type %d
 Unknown command `%s'.
 Unknown compression format %s Unknown encoding Unknown extra argument `%s'. Unknown keyboard scan code 0x%02x
 Unknown keyboard scan identifier %s
 Unknown platform `%s-%s' Unknown video mode  Unknown virtual device type: %s
 Unload EFI emulator. Unrecognized compression `%s' Unrecognized pool state Unsupported address type %d
 Unsupported coverage specification: %d
 Unsupported hw address type %d
 Unsupported substitution specification: %d
 Unsupported substitution type: %d
 Usage: Usage: %s DEVICE
 Usage: %s [INFILE [OUTFILE]]
 Use CD-ROM as root. Use GDB remote debugger instead of DDB. Use STRING as menu entry body. Use compiled-in root device. Use serial console. Use the %C and %C keys to select which entry is highlighted. VAR INTERFACE NUMBER DESCRIPTION VARNAME VDEV element number %d isn't correct
 VDEV element number %d:
 VDEV with %d children
 Verbose countdown. Verify detached signature. Version %u.%u
32-bit CS = 0x%x, len = 0x%x, offset = 0x%x
16-bit CS = 0x%x, len = 0x%x
DS = 0x%x, len = 0x%x
 Virtual device is degraded Virtual device is faulted Virtual device is offline Virtual device is online Virtual device is removed WARNING: no console will be available to OS WARNING: no platform-specific install was performed WARNING: unsupported font feature parameters: %x
 WIDTHxHEIGHT. Wait for a specified number of seconds. Wait for keypress after every line of output. Warning: invalid background color `%s'
 Warning: invalid foreground color `%s'
 Warning: syntax error (missing slash) in `%s'
 Wednesday Write 16-bit VALUE to ADDR. Write 16-bit VALUE to PORT. Write 32-bit VALUE to ADDR. Write 32-bit VALUE to PORT. Write 8-bit VALUE to ADDR. Write 8-bit VALUE to PORT. Write a value to a CPU model specific register. Written SPD bytes: %d B.
 YUV  You need to specify at least one command.
 You will have to set `SystemPartition' and `OSLoader' manually. You've found a bug Your embedding area is unusually small.  core.img won't fit in it. Your xorriso doesn't support `--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later. Your xorriso doesn't support `--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FILE [--md5] PASSWD [FILE] [--no-mem-option] [--type=TYPE] FILE [ARG ...] [-1|-2] [--exclude=TABLE1,TABLE2|--load-only=TABLE1,TABLE2] FILE1 [FILE2] [...] [-c FILE [-p PREFIX]] [FILE1 [FILE2 ...]] [-d] DEVICENAME FILE. [-e|-n] STRING [-f FILE] [-f FILE] [-s|--skip-sig] [variable_name_to_whitelist] [...] [-f FILE] variable_name [...] [-f|-l|-u|-s|-n] [--hint HINT [--hint HINT] ...] NAME [-h|-p|-r] [FILE] [-l] GRUBUUID [VARNAME] [-l|-h|-a] [FILE ...] [-m (stretch|normal)] FILE [-s POSITION] [-d DEVICE] [-s POSITION] [-d DEVICE] [-v VAR] REGISTER[=VALUE[:MASK]] [-s SIZE] FILENAME [-s|--skip-sig] FILE SIGNATURE_FILE [PUBKEY_FILE] [-s|--skip-sig] PUBKEY_FILE [-t type] [-h handle] [-m match] (-b|-w|-d|-q|-s|-u) offset [--set variable] [ADDR|comUNIT][,SPEED] [ARG] [CARD [HWADDRESS]] [CARD] [DIR] [ENVVAR=VALUE] [ENVVAR] [KEYSTROKE1] [KEYSTROKE2] ... [LENGTH] [MODULE1 MODULE2 ...] [NUMBER:]VARNAME [NUM] [OPTIONS...] [OPTIONS] [OPTIONS] DISK [OPTIONS] FILE_OR_DEVICE [OPTIONS] FONT_FILES [OPTIONS] [SET1] [SET2] [STRING] [OPTION] SOURCE... [OPTION] [INSTALL_DEVICE] [OPTION]... [MODULES] [OPTION]... [PATH|DEVICE] [OPTS] [PATH] [PATTERN ...] [USERLIST] [VALUE]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] [TERM] [TYPE]] [[year-]month-day] [hour:minute[:second]] [bus]:[slot][.func] [default=%s] [vendor]:[device] `%s' is miscompiled: its start address is 0x%llx instead of 0x%llx: ld.gold bug? `%s' is not a local disk `cryptomount' command fails: %s `loopback' command fails: %s `nvsetenv' failed. 
You will have to set `boot-device' variable manually.  At the IEEE1275 prompt, type:
  %s
 `obppath' not found in parent dirs of `%s', no IEEE1275 name discovery a value was assigned to the argument `%s' while it doesn't require an argument access denied add NOTE segment for CHRP IEEE1275 addr address not found alloc-mem failed assume input is a pxelinux configuration file. assume input is a syslinux configuration file. assume input is an isolinux configuration file. attempt to install to encrypted disk without cryptodisk enabled. Set `%s' in file `%s' attempt to read or write outside of disk `%s' attempt to read or write outside of partition attempt to read past the end of file attempt to redefine a function being executed attempt to seek outside of the file attempting to read the core image `%s' from GRUB attempting to read the core image `%s' from GRUB again available RAM available formats: available targets: bad shim signature bad signature base_addr = 0x%llx, length = 0x%llx, %s
 base_addr = 0x%llx, length = 0x%llx, type = 0x%x
 big file signature isn't implemented yet bitmap file `%s' is of unsupported format bless for ppc-based macs bless for x86-based macs blocklist FILE blocklists are incomplete blocklists are invalid blocksize is not divisible by 512 blocksize too large can't break 0 loops can't compress `%s' to `%s' can't determine filesystem on %s can't find command `%s' can't mount encrypted volume `%s': %s can't open `%s': %s can't open file %s, index %d: error %d can't retrieve blocklists can't retrieve blocklists: %s can't set %dx%d font size: Freetype error %d: %s cannot allocate TPM event buffer cannot allocate command buffer cannot close `%s': %s cannot compress the kernel image cannot copy `%s' to `%s': %s cannot delete `%s': %s cannot find EFI directory cannot find a GRUB drive for %s.  Check your device.map cannot find a device for %s (is /dev mounted?) cannot find locale `%s' cannot get file location `%s': %s cannot get translator command line for path `%s': %s cannot make temporary directory: %s cannot make temporary file: %s cannot open OS file `%s': %s cannot open `%s': %s cannot open configuration file `%s': %s cannot open directory `%s': %s cannot read `%s' correctly cannot read `%s': %s cannot rename the file %s to %s cannot rename the file %s to %s: %m cannot restore the original directory cannot save the original directory cannot seek `%s': %s cannot stat `%s': %s cannot sync `%s': %s cannot write to CD-ROM cannot write to `%s': %s cannot write to the stdout: %s card not found cat FILE checksum verification failed choose the compression to use for core image cmp FILE LOCAL comUNIT[,SPEED] compare fail at offset %llu compress GRUB files [optional] connection refused connection timeout convert to bold font core image is too big (0x%x > 0x%x) core.img version mismatch couldn't autoconfigure %s couldn't find IEEE1275 device path for %s.
You will have to set `boot-device' variable manually couldn't find a necessary member device of multi-device filesystem couldn't find geli consumer couldn't find geom `part' class couldn't open geom couldn't read ELI metadata couldn't retrieve UUID couldn't retrieve geli UUID couldn't retrieve random data couldn't retrieve random data for salt couldn't send network packet cp FILE LOCAL crc FILE cryptographic error number %d current directory of syslinux [default is parent directory of input file]. current directory of syslinux as it will be seen on runtime  [default is parent directory of input file]. cygwin_conv_path() failed delete device map if it already exists destination unreachable device count exceeds limit device tree must be supplied (see `devicetree' command) disable hinting disable shim_lock verifier disk `%s' not found disk does not exist, so falling back to partition device %s disk module to use (biosdisk or native). This option is only available on BIOS target. disk read fails at offset %lld, length %lld diskboot.img size must be %u bytes do not install bootsector do not probe for filesystems in DEVICE domain name component is too long don't update LED state don't update the `boot-device'/`Boot*' NVRAM variables. This option is only available on EFI and IEEE1275 targets. efibootmgr failed to register the boot entry: %s embed FILE as a device tree (DTB)
 embed FILE as a memdisk image
Implies `-p (memdisk)/boot/grub' and overrides any prefix supplied previously, but the prefix itself can be overridden by later options embed FILE as an early config embed FILE as public key for signature checking embed a specific DTB embedding is not possible, but this is required for RAID and LVM install embedding is not possible, but this is required for cross-disk install enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc enabling %s support ... enter: boot, `e': options, `c': cmd-line environment block too small error: %s.
 failed to copy Grub to the PReP partition failed to get FDT failed to get canonical path of `%s' failed to read the sectors of the core image failed to retrieve the structure field failure reading sector 0x%llx from `%s' failure to read password failure writing sector 0x%llx to `%s' false faulty RAM (BadRAM) file `%s' is too big file `%s' not found filename expected filename or tempo and notes expected filesystem `%s' does not support labels filesystem `%s' doesn't support blocklists filesystem on %s is neither HFS nor HFS+ firmware image is too big force autohint four arguments expected free-mem failed fwstart.img doesn't match the known good version. proceed at your own risk generate an image in FORMAT given argument is a system device, not a path grub-mkimage is compiled without XZ support grub> handle hex FILE ignore bitmap strikes when loading incorrect terminal dimensions specification initrd already loaded install FONTS [default=%s] install GRUB for TARGET platform [default=%s]; available targets: %s install GRUB images under the directory DIR/%s instead of the %s directory install THEMES [default=%s] install device isn't specified install even if problems are detected install only LOCALES [default=all] install only MODULES and their dependencies [default=all] interpret is not supported invalid DHCP option code invalid PBKDF2 password invalid arch-dependent ELF magic invalid arch-independent ELF magic invalid argument invalid block size invalid color specification `%s' invalid device tree invalid environment block invalid file name `%s' invalid font range invalid line format: %s invalid memory address (0x%s > 0x%s) invalid modinfo file `%s' invalid parameter %s invalid skip value %lld invalid variable name `%s' invalid video mode specification `%s' invalid zImage invalid zero blocksize ioctl GET_ARRAY_INFO error: %s ioctl GET_DISK_INFO error: %s ioctl RAID_VERSION error: %s kernel image is too big (0x%x > 0x%x) list network addresses list network cards list network routes ls PATH lzop file corrupted make the drive also bootable as floppy (default for fdX devices). May break on some BIOSes. match missing `%c' symbol missing mandatory option for `%s' missing p-list filename module `%s' isn't loaded module isn't loaded name need an image and mountpoint new read is position beyond the end of the written data no APM found no DHCP info found no DHCP option %u found no DHCP options found no DNS record found no DNS reply received no DNS servers configured no EFI routines are available for your platform no EFI routines are available when running in BIOS mode no IEEE1275 routines are available for your platform no SGI routines are available for your platform no `/' in canonical filename no command is specified no compression is available for your platform no decryption key available no hints available for your platform. Expect reduced performance no media in `%s' no network card found no random number generator is available for your OS no server is specified no structure matched the given options no such partition no suitable video mode found no symbol table no terminal specified no terminator in the core image non-sector-aligned data is found in the core file not a directory not a primary partition not a regular file not in function body offset one argument expected one of the --get options is required only ipv4 only ipv6 only one --get option is usable at a time other software is using the embedding area, and there is not enough room for core.img.  Such software is often trying to store data in a way that avoids detection.  We recommend you investigate out of memory output a generated image to FILE [default=stdout] output file must be specified overflow is detected passwords don't match peek out of range perform a DHCP autoconfiguration perform a bootp autoconfiguration persistent RAM persistent RAM (legacy) physical volume %s not found plain image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled pre-load specified modules MODULES prefer ipv4 prefer ipv6 premature end of file premature end of file %s press CapsLock key press Insert key press NumLock key press ScrollLock key press SysRq press left alt press left ctrl press left shift press right alt press right ctrl press right shift print TARGET print verbose messages. public key %08 public key %08x not found read error at offset %llu: %s read text from FILE. relative subdirectory on network server relocation 0x%s is not implemented yet relocation 0x%x is not implemented yet requested buffer size is too large reserved RAM retrieve DHCP option and save it into VAR. If VAR is - then print the value. root directory as it will be seen on runtime [default=/]. root directory of TFTP server root directory of the syslinux disk [default=/]. route loop detected save ROM images in DIR [optional] save output in FILE [required] section name %s length is bigger than %lu select face index separate items in output using ASCII NUL characters serial port `%s' isn't found set [NAME=VALUE ...] set capslock mode set font ascent set font descent set font family name set font range set font size set input filename for 32-bit part. set input filename for 64-bit part. set input filename. Default is STDIN set insert mode set numlock mode set output filename. Default is STDOUT set pause mode set prefix directory set scrolllock mode set the label to render shim_lock protocol not found size stretch|normal symbol `%s' not found temporary terminal %s isn't found or it's not handled by terminfo terminal `%s' isn't found the ID of bootloader. This option is only available on EFI and Macs. the PReP partition is not empty. If you are sure you want to use it, run dd to clear it: `%s' the SMBIOS entry point structure was not found the argument `%s' requires an integer the chosen partition is not a PReP partition the device.map entry `%s' is invalid. Ignoring it. Please correct or delete your device.map the drive %s is defined multiple times in the device map %s the drive name `%s' in device.map is incorrect. Using %s instead. Please use the form [hfc]d[0-9]* (E.g. `hd0' or `cd') the field ends outside the structure the first sector of the core file is not sector-aligned the given offset is outside the structure the handle must be between 0 and 65535 the installation device is removable. This option is only available on EFI. the match must be a positive integer the partition type 0x%x isn't valid the sectors of the core file are too fragmented the size of `%s' is not %u the size of `%s' is too large the size of `%s' is too small the type must be between 0 and 255 this ELF file is not of the right type this GPT partition label contains no BIOS Boot Partition; embedding won't be possible this LDM has no Embedding Partition; embedding won't be possible this msdos-style partition label has no post-MBR gap; embedding won't be possible three arguments expected time out opening `%s' timeout reading `%s' timeout: could not resolve hardware address too deep nesting of symlinks translator `%s' for path `%s' has several non-option words, at least `%s' and `%s' translator `%s' for path `%s' is given only options, cannot find device part translator command line is empty for path `%s' two arguments expected type unable to identify a filesystem in %s; safety check can't be performed unaligned device size unexpected EFI error unexpected end of file unknown argument `%s' unknown compression %d unknown device type %s unknown filesystem unknown kind of RAID device `%s' unknown target format %s unknown target format %s
 unknown terminfo type `%s' unrecognised DHCP option format specification `%s' unrecognised network address `%s' unrecognised network interface `%s' unrecognized number unresolvable address %s unset [NAME ...] unsupported HTTP error %d: %s unsupported HTTP response unsupported RAID version: %d.%d unsupported gzip format unsupported instruction unsupported platform %s unsupported serial port flow control unsupported serial port parity unsupported serial port speed unsupported serial port stop bits number unsupported serial port word length use COLOR for background use COLOR for label use COLOR for label background use COLOR for text use DIR as the EFI System Partition root. use DIR for PPC MAC install. use FILE as font (PF2). use FILE as font for label use FILE as memdisk use FILE as the boot image [default=%s] use FILE as the core image [default=%s] use FILE as the device map [default=%s] use FILE as xorriso [optional] use GRUB files in the directory DIR [default=%s] use STRING as product name use STRING as product version use identifier file even if UUID is available use images and modules under DIR [default=%s/<platform>] use themes under DIR [default=%s] use translations under DIR [default=%s] variable variable `%s' isn't set verification requested but nobody cares: %s visually-ordered UTF-8 wait until a debugger will attach will not proceed with blocklists write output to FILE [default=stdout]. wrong ELI magic or version xnu_uuid DEVICE xorriso not found xz file corrupted or unsupported block options you can't delete this address you need to load the Xen Hypervisor first you need to load the kernel first your BIOS Boot Partition is too small; embedding won't be possible your LDM Embedding Partition is too small; embedding won't be possible your core.img is unusually large.  It won't fit in the embedding area your embedding area is unusually small.  core.img won't fit in it. Project-Id-Version: grub 2.06-pre2
Report-Msgid-Bugs-To: bug-grub@gnu.org
PO-Revision-Date: 2021-05-11 07:53+0100
Last-Translator: Pedro Albuquerque <pmra@protonmail.com>
Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>
Language: pt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Geany / PoHelper 1.37
               memória total: %d KiB
     Sem modo preferido disponivel
     Modo preferido: %ux%u
   checksum EDID inválida   Versão EDID: %u.%u
   Falha ao inicializar o adaptador de vídeo   Sem informação disponível   informação VBE:   versão: %d.%d  OEM rev. programa: %d.%d
  (esquerda)  (média)  (direita)  - Início da partição em %llu%sKiB  - Tamanho de sector %uB  - Tamanho total %llu%sKiB  - Tamanho total conhecido %ds %ds restante. %s parece conter um sistema de ficheiros %s que não é conhecido por reservar espaço para arranque de estilo DOS. Instalar o GRUB aí pode resultar na DESTRUIÇÃO DO SISTEMA DE FICHEIROS se dados valiosos forem sobrescritos pelo grub-setup (--skip-fs-probe desactiva esta verificação, use por sua própria conta e risco) %s parece conter um mapa de partições %s e LDM, que não é conhecida por ser uma combinação segura. Instalar o GRUB aí pode resultar na DESTRUIÇÃO DO SISTEMA DE FICHEIROS se dados valiosos forem sobrescritos pelo grub-setup (--skip-fs-probe desactiva esta verificação, use por sua própria conta e risco) %s parece conter um mapa de partições %s que não é conhecido por reservar espaço para arranque de estilo DOS. Instalar o GRUB aí pode resultar na DESTRUIÇÃO DO SISTEMA DE FICHEIROS se dados valiosos forem sobrescritos pelo grub-setup (--skip-fs-probe desactiva esta verificação, use por sua própria conta e risco) %s não suporta UUIDs %s não existe. Por favor, especifique --target ou --directory %s não parece ser uma partição EFI %s é obsoleto. Use antes set gfxpayload=%s antes do comando linux.
 %s é obsoleto. O modo VGA %d não é reconhecido. Use antes set gfxpayload=LARGURAxALTURA[xPROFUNDIDADE] antes do comando linux.
 %s: TROCA DE HASH
 %s: CORRECTO
 %s: ERRO DE LEITURA
 %s: erro: %s: informação: %s: não encontrado %s: o comando não é permitido quando o encerramento é forçado %s: aviso: - Rótulo "%s" - Última modificação %d-%02d-%02d %02d:%02d:%02d %s --MAIS-- --ppc CAMINHO|--x86 FICHEIRO -h HASH [-c FICHEIRO [-p PREFIXO]] [FICHEIRO1 [FICHEIRO2...]] -l | -r | [-s] grubdev osdisk. ,5 A secção .sbat só pode ser incorporada em imagens EFI interface protegida 16-bit suportada
 interface protegida 16-bit não suportada
 interface protegida 32-bit suportada
 interface protegida 32-bit não suportada
 =VAL > RAM ACPI não-volátil RAM ACPI reclamável Falha ao encerrar com ACPI ENDEREÇO VALOR ENDEREÇO ENDEREÇO VALOR [MÁSCARA] ENDEREÇO [TAMANHO] ENDEREÇO1,MÁSCARA1[,ENDEREÇO2,MÁSCARA2[,...]] ENDEREÇO SERVIDORDNS APM desactivada
 APM desengatada
 APM activada
 APM engatada
 ASCII Aceitar fins de linha estilo DOS CR/NL. Terminais de entrada activos: Terminais de saída activos: Adaptador "%s":
 Adicionar FICHEIRO_CHAVEPÚBLICA às chaves de confiança. Adicionar um servidor DNS Adicionar endereço de rede. Adicionar uma rota de rede. Permitir interrupção com ESC. Pedir um nome de ficheiro de onde reiniciar. Assumir que a entrada está em hexadecimal. Assumir que a entrada é uma frase-passe. Assumir que a entrada está em bruto. A tentar desencriptar a chave mestra... Tentativa de instalar o GRUB num disco com múltiplos rótulos de partição ou com rótulo de partição e sistema de ficheiros. Isto ainda não é suportado. Tentativa de instalar o GRUB num disco com múltiplos rótulos de partição. Isto ainda não é suportado. Tentativa de instalar o GRUB num disco sem partições ou numa partição. Isto é uma PÉSSIMA ideia. Terminais de entrada disponíveis: Terminais de saída disponíveis: B B/s BIOS_DUMP [INT10_DUMP] BLOQUEIO BYTE:BIT Modo de imagem de fundo (esticada ou normal). Pasta base para lista de hashes. Benzer PASTA de partição HFS ou HFS+ para PPC macs. Benzer FICHEIRO de partição HFS ou HFS+ para intel macs. Iniciar sistema baseado em BIOS. Iniciar um sistema operativo. Iniciar em modo único. Iniciar com mensagens de depuração. Iniciar com mensagens verbosas. A iniciar "%s" A iniciar uma lista de comandos A iniciar em modo cego Caminho de início: %s
 Caminho de início: indisponível
 Entrar no GDB CGA  COR COMANDO [ARGS] CPU Idle não abranda o processador
 CPU Idle abranda o processador
 CS5536 em %d:%d.%d
 Impossível criar ficheiro: %s Impossível activar área de ROM. Alterar dispositivos configurados. Alterar tipo de partição Verificar a tecla Alt. Verificar a tecla Control. Verificar a tecla Shift. Verificar funcionalidades da CPU. Verificar hashes de ficheiros com o FICHEIRO de lista de hashes. Verificar se a CPU suporta modo 64-bit (longo)(predefinição). Verificar se a CPU suporta Physical Address Extension. Verificar se FICHEIRO pode ser iniciado como kernel convidado i386 PAE Xen sem privilégios Verificar se FICHEIRO pode ser iniciado como kernel convidado x86_64 Xen sem privilégios Verificar se FICHEIRO pode ser usado como kernel convidado Xen x86 com privilégios Verificar se FICHEIRO pode ser usado como kernel x86 multiboot Verificar se FICHEIRO pode ser usado como kernel x86 multiboot2 Verificar se FICHEIRO é ARM EFI Verificar se FICHEIRO é ARM Linux Verificar se FICHEIRO é ARM64 EFI Verificar se FICHEIRO é ARM64 Linux Verificar se FICHEIRO é BIOS bootsector Verificar se FICHEIRO é IA64 EFI Verificar se FICHEIRO é IA64 Linux Verificar se FICHEIRO é MIPS Linux Verificar se FICHEIRO é MIPSEL Linux Verificar se FICHEIRO é POWERPC Linux Verificar se FICHEIRO é RISC-V 32bit EFI Verificar se FICHEIRO é RISC-V 64bit EFI file Verificar se FICHEIRO é SPARC64 Linux Verificar se FICHEIRO é imagem hibernada XNU (kernel Mac OS X) Verificar se FICHEIRO é hiberfil.sys em estado hibernado Verificar se FICHEIRO é i386 EFI Verificar se FICHEIRO é i386 XNU (kernel Mac OS X) Verificar se FICHEIRO é i386 kFreeBSD Verificar se FICHEIRO é i386 kNetBSD Verificar se FICHEIRO é do tipo especificado. Verificar se FICHEIRO é x86 Linux Verificar se FICHEIRO é x86 Linux com suporte a protocolo 32-bit Verificar se FICHEIRO é x86 kFreeBSD Verificar se FICHEIRO é x86 kNetBSD Verificar se FICHEIRO é x86_64 EFI Verificar se FICHEIRO é x86_64 XNU (kernel Mac OS X) Verificar se FICHEIRO é x86_64 kFreeBSD Verificar se FICHEIRO é x86_64 kNetBSD Verificar o estado dos modificadores. Verificar se o utilizador está em LISTAUTILIZADORES. Verifica se há erros de sintaxe no ficheiro de configuração do script GRUB. Limpar bit em BYTE:BIT em CMOS. Limpar o ecrã. Bandeira de activa limpa em %d
 O comando falhou Comandos: Comparar FICHEIRO com o ficheiro local LOCAL. Comparar o ficheiro "%s" com "%s":
 Comparar dois ficheiros. Calcular UUID XNU do dispsitivo. Calcular ou verificar a checksum da hash. Configurar a porta série. Continuar ciclos Converter formatos comuns de ficheiros de letras para PF2 Copiar FICHEIRO para ficheiro local LOCAL. Copiar FICHEIRO para a saída padrão. Impossível localizar o controlador de FPSWA Impossível encontrar uma ranhura BootNNNN livre Impossível encontrar o volume físico "%s". Podem faltar alguns módulos da imagem de núcleo. Impossível carregar sha256 Impossível carregar sha512 Criar estruturas de tipo BIOS para compatibilidade com versões anteriores do SO existente. Criar um ficheiro de bloco de ambiente vazio. Tipos terminfo actuais: DISPSITIVO DISPSITIVO [PARTIÇÃO[+/-[TIPO]]] ... DISPOSITIVO tem de ser um dispositivo SO (e.g. /dev/sda). NOME_DISPOSITIVO PASTA PASTA [OSBundleRequired] SERVIDORDNS Ferramenta de depuração para o controlador do sistema de ficheiros. Declarar regiões de memória como defeituosas (badram). Descompressor muito grande O servidor predefinido é ${net_default_server} Definir uma entrada de menu. Definir um sub-menu. Eliminar endereço de rede. Eliminar uma rota de rede. Remover a unidade loopback especificada da lista. Eliminar variáveis. Determinar o controlador. Determinar UUID do sistema de ficheiros. Determinar o rótulo do sistema de ficheiros. Determinar o tipo de sistema de ficheiros. Determinar UUID da partição. Determinar o tipo de mapa de partição. Dispositivo %s: Devid: %s
 Devid: indisponível Cor directa, máscara: %d/%d/%d/%d  pos: %d/%d/%d/%d Desactivar ACPI. Desactivar SMP. Desactivar toda a saída de início. Desactivar/Activar SMART (0/1). A descartar partição impropriamente aninhada (%s,%s,%s%d) Estatísticas da cache do disco: acertados = %lu (%lu.%02lu%%), falhados = %lu
 Total de discos tem de estar antes da lista de discos.
 Mostrar versão FPSWA. Mostrar estado de saúde SMART. Mostrar uma linha de texto. Mostrar a lista de blocos de FICHEIRO. Mostrar saída em todas as consolas. Mostrar modo de energia. Mostrar a utilização deste comando e sair. Mostrar esta ajuda e sair. Mostra/Definir data/hora actual. Não aplicar códigos reed-solomon ao integrar core.img. Esta opção só está disponível em alvos x86 BIOS. Não imprimir a nova linha final. Não imprimir mensagens. Não testar nenhuma unidade floppy. Não usar APM para parar o computador. Não fazer nada, com sucesso. Não fazer nada, sem sucesso. Não mostrar mensagens de diagnóstico de início. Não carregar tabelas de anfitriões especificadas por lista separada por vírgulas. Não reiniciar, parar só. Não parar após o 1º erro. Não actualizar EBDA. Pode reparar falhas ou paragens nalgumas BIOS, mas torna-se ineficaz com o SO sem receber RSDP do GRUB. bootloader EFI não especificado. VARAMB VARAMBIENTE [VARAMBIENTE] ... ERRO: sem disposição de teclado válida. Verifique a entrada.
 ESC em qualquer altura sai. EXPRESSÃO EXPRESSÃO ] Tempo decorrido: %d.%03d s 
 Tempo decorrido: %d.%03d segundos 
 Integração impossível. O GRUB só pode ser instalado nesta configuração usando listas de blocos. Contudo, as listas de blocos são instáveis e a sua utilização é desaconselhada. Emular uma sequência de teclas Activar interpretação de escapes com barra invertida. Activar/Desactivar RTS/CTS. Insira a senha ZFS:  Entrar em KDB ao iniciar. Entrar em modo normal. Insira a frase-passe para %s%s%s (%s):  Insira a senha:  Insira o utilizador:  Erro ao processar argumentos da linha de comando
 Avaliar uma expressão. Avaliar argumentos como comandos GRUB Executar configuração syslinux em novo contexto Executar configuração syslinux em novo contexto só com entradas de menu Executar configuração syslinux no mesmo contexto Executar configuração syslinux no mesmo contexto só com entradas de menu Falha ao sair Sair do GRUB. Sair de ciclos Sair do modo normal. Exportar variáveis. Exportar tabelas versão 1 para o SO. Exportar tabelas versão 2 e versão 3 para o SO. FICHEIRO FICHEIRO [ARG ...] FICHEIRO [ARGS...] FICHEIRO | TEMPO [TOM1 DURAÇÃO1] [TOM2 DURAÇÃO2]...  FICHEIRO... FICHEIRO1 FICHEIRO2 NOMEFICHEIRO COMANDO SISTFICHEIROS [VARIÁVEL] FICHEIRO|prompt LETRAS FORMATO O protocolo FPSWA não pôde encontrar a interface Revisão FPSWA: %x
 DE-PARA[,DE-PARA] DE[K|M|G] ATÉ[K|M|G] FT_Init_FreeType falhou Falha ao iniciar as entradas predefinida e de segurança.
 Falha ao criar a árvore "device-mapper" A recuar para "%s" Tamanho de ficheiro: %s
 Sistema de ficheiros "%s" não suporta integração Os ficheiros diferem no desvio %llu: 0x%x [%s], 0x%x [%s]
 Os ficheiros diferem em tamanho: %llu [%s], %llu [%s]
 O sistema de ficheiros não pode ser acedido Tipo de sistema de ficheiros %s Preencher MBR de DISPOSITIVO GPT drive. As partições especificadas serão parte do MBR híbrido. São permitidas até 3 partições. TIPO é um tipo de MBR. + significa que a partição está activa. Só uma partição pode estar activa. Filtrar o resultado como faz o Linux. Finalizar a carga do emulador EFI. Primeiro tente a DICA do dispositivo se actualmente em execução em ARC. Se DICA termina em vírgula, tente também sub-partições Primeiro tente a DICA do dispositivo se actualmente em execução na BIOS. Se DICA termina em vírgula, tente também sub-partições Primeiro tente a DICA do dispositivo se actualmente em execução em EFI. Se DICA termina em vírgula, tente também sub-partições Primeiro tente a DICA do dispositivo se actualmente em execução em IEEE1275. Se DICA termina em vírgula, tente também sub-partições Primeiro tente a DICA do dispositivo se o acesso directo ao equipamento for suportado. Se DICA termina em vírgula, tente também sub-partições Primeiro tente a DICA do dispositivo. Se DICA termina em vírgula, tente também sub-partições Reparar problema de vídeo. Erro Freetype %d ao carregar carácter 0x%x para U+0x%x%s Congelar definições de segurança ATA até à reposição. Sexta G GNU GRUB  versão %s Menu de arranque GRUB O GRUB ainda não sabe como parar esta máquina! Emulador de GRUB. DISPGRUB=DISPPLAN9 Gerar disposição de teclado GRUB a partir da consola Linux. Gerar hash de senha PBKDF2. Gerar uma imagem independente (contendo todos os módulos) no formato seleccionado Gera uma imagem iniciável CD/USB/disquete. Outros argumentos que não opções deste programa são passados ao xorriso e indicam ficheiros fonte, pastas fonte ou qualquer uma das opções mkisofs listada pela saída de "%s". Obter a checksum crc32 de FICHEIRO. Obter informação da cache do disco. Obter o valor de 8 bytes no desvio indicado. Obter o valor de 4 bytes no desvio indicado. Obter o valor da UUID no desvio indicado. Obter o valor do byte no desvio indicado. Obter a cadeia espepcificada no desvio indicado. Obter o valor de 2 bytes no desvio indicado. Obter/Definir parâmetros de disco ATA. GiB GiB/s Colar binários 32-bit e 64-bit num só Apple universal. Sintaxe de ponto Graft (e.g. /boot/grub/grub.cfg=./grub.cfg) é aceite HASH DICA Parar o sistema, se possível com APM. Pára o computador. Este comando não funciona em todas as implementações de firmware. Gerir N bytes no ficheiro de saída. Olá Mundo Hércules  Dados aleatórios hexdump. ID IMAGEM1 [IMAGEM2 ...] PONTOMONTAGEM CAMINHO_IMAGEM COMANDOS DSIPOSITIVO_INSTALAÇÃO tem de ser um nome de ficheiro de dispositivo de sistema.
%s copia imagens GRUB para %s. Nalgumas plataformas, pode também instalar o GRUB no sector de arranque. Se NOMEFICHEIRO for "-", será usado o valor predefinido %s.

Não há um comando "delete"; se pretende eliminar todo o bloco de ambiente,
use "rm %s". Importar chave de ajuste ZFS armazenada em FICHEIRO. DISPV incorrecto Dispositivo virtual incorrecto: sem tipo disponível Inserir um módulo. Instalar o GRUB na sua unidade. Instalação terminada. Sem erros reportados. A instalar para a plataforma %s.
 Privilégios insuficientes para aceder ao firmware, a assumir a BIOS Comando %s inválido.
 Dispositivo "%s" inválido.
 Total de discos inválido.
 Parâmetro inválido Tempo inválido em %s Chamar a rota de configuração do utilizador. K KERNEL ARGS TECLA Tecla para iniciar rapidamente esta entrada. KiB KiB/s IDIOMAS Dispositivo virtual "folha" (ficheiro ou disco) Parâmetro antigo "ask" já não suportado. Legenda: máscara/posição=vermelho/verde/azul/reservado Tamanho da hash gerada Tamanho de salt Linux ainda não suportado Listar servidores DNS Listar dispositivos PCI. Listar armazenagem Xen. Listar todos os ficheiros. Listar modos de vídeo disponíveis. Se for dada a resolução, mostrar só modos que lhe correspondam. Listar tabelas coreboot. Listar dispositivos e ficheiros. Listar dispositivos ou ficheiros. Listar dispositivos. Listar ficheiros em CAMINHO. Listar mapa de memória fornecido pelo firmware. Lista de modos de vídeo suportados: Lista de utilizadores autorizados a iniciar esta entrada. Listar ou seleccionar um terminal de entrada. Listar ou seleccionar um terminal de saída. Listar as variáveis actuais. Lista de letras carregadas. Listar variáveis de ficheiro de bloco de ambiente. Carregar imagem XNU 64-bit. Carregar despejo da BIOS. Carregar o ficheiro LTB. Carregar o ambiente de FreeBSD. Carregar o módulo de kernel de FreeBSD (ELF). Carregar o módulo de kernel de FreeBSD. Carregar o kernel.sys de FreeDOS. Carregar o Linux. Carregar NTLDR ou BootMGR. Carregar o módulo de kernel de NetBSD (ELF). Carregar o módulo de kernel de NetBSD. Carregar o kernel de Plan9. Carregar ISO Truecrypt. Carregar pasta de extensão XNU. Carregar pacote de extensão XNU. Carregar extensão XNU. Carregar imagem XNU. Carregar disco ram XNU. Estará disponível no SO como md0. Carregar despejo de "device-properties". Carregar uma imagem PXE. Carregar uma disposição de teclado. Carregar um kernel multiboot 2. Carregar um módulo multiboot 2. Carregar um kernel multiboot. Carregar um módulo multiboot. Carregar uma imagem de arranque para XNU. Carregar um xen hypervisor. Carregar um módulo xen. Carregar uma imagem do XNU hibernado. Carregar e inicializar emulador EFI. Carregar outro carregador de inícios. Carregar outro ficheiro de configuração, mas receber só entradas de menu. Carregar outro ficheiro de configuração sem mudar de contexto, mas receber só entradas de menu. Carregar outro ficheiro de configuração sem mudar de contexto. Carregar outro ficheiro de configuração. Carregar outro coreboot payload Carregar imagem de fundo para o terminal activo. Carregar tabelas de anfitriões ACPI e tabelas especificadas por argumentos. Carregar o initrd. Carregar o disco ram de kOpenBSD. Carregar o kernel de FreeBSD. Carregar o kernel de NetBSD. Carregar o kernel de OpenBSD. Carregar módulo. Carregar só tabelas de anfitriões especificadas por lista separada por vírgulas. Carregar o mesmo ficheiro de múltiplas formas. Carregar variáveis de ficheiro de bloco de ambiente. Carregar chave crypto zfs. Letras carregadas: M Falha ao verificar MAC MÓDULO MÓDULOS Benção estilo Mac em HFS ou HFS+ Envie pedidos de ajuda para o xorriso para <bug-xorriso@gnu.org>. Fazer imagem iniciável a partir de GRUB CD-ROM, disco, pen USB e disquete. Fazer uma imagem iniciável do GRUB. Fazer uma unidade virtual de um ficheiro. Tornar a partição activa Gerir os mapeamentos de unidades da BIOS. Manipular dispositivos PCI. Comparar estruturas com o gestor indicado. Comparar estruturas com o tipo indicado. Unidade de tempo usada por COMANDO Tipo de memória: DDR2. Tipo de memória: desconhecido. Identificador da entrada de menu. Tipo de entrada de menu. MiB MiB/s É suportada uma edição tipo BASH minimalista. Para a primeira palavra, TAB lista as conclusões possíveis para comandos. De resto, lista conclusões possíveis para dispositivos ou ficheiros. %s É suportada uma edição tipo Emacs minimalista. TAB lista as conclusões. Prima Ctrl+x ou F10 para iniciar, Ctrl+c ou F2 para uma linha de comando ou ESC para descartar edições e voltar ao menu GRUB. Argumentos em falta
 Ficheiro de entrada em falta
 Segunda Monocromático  Mais de um dispositivo de instalação? Montar um dispositivo crypto. Montar todos os volumes com a bandeira "boot" definida. Montar todos. Montar por UUID. Montar dispositivos crypto. NOME NOME [VARIÁVEL] [DICAS] NÃO EXECUTADO:  NÚM NÚMERO_DE_SEGUNDOS Nome	Total ref	Dependências
 Os controladores de disco nativos estão em uso. A recusar uso da interface de firmware do disco. Pasta de rede para %s criada. Configure o seu servidor DHCP para apontar para %s
 Protocolos de rede: O novo MBR é escrito em "%s"
 Sem CS5536 encontrado Sem FPSWA encontrado Sem estatísticas de hora de início disponíveis
 Nenhum comando especificado.
 Sem dispositivo especificado.
 Sem estatísticas de disco disponíveis
 Nenhuma unidade foi re-mapeada Sem sistema de ficheiros conhecido Sem caminho especificado.
 Sem caminho ou dispositivo especificado.
 Árvore de dispositivos virtuais indisponível Non-chain 4  Sem parâmetros suficientes para o comando.
 Agora ligue o depurador remoto, por favor. Número de iterações PBKDF2 OPÇÕES FICHEIRO Nº disco SO  ------> Dispositivo GRUB/BIOS Falha ao abrir ficheiro de SO %s: %s Opção -- muda para o modo de comando nativo do xorriso. Opções: Procura fora do intervalo: %d
 Substituição fora do intervalo (%d, %d)
 Buffer de saída muito pequeno Sobrepor o mapeamento calculado de dispositivos Plan9. P PARTIÇÃO COMANDOS CAMINHO hash PBKDF2 da sua senha é %s
 PORTA PORTA VALOR [MÁSCARA] ID_CHAVEPÚBLICA Em paleta  Processar configuração antiga em novo contexto Processar configuração antiga em novo contexto só com entradas de menu Processar configuração antiga no mesmo contexto Processar configuração antiga no mesmo contexto só com entradas de menu Parte nº: %s.
 A partição %d está activa agora. 
 Partição %s: Estilo de particionamento "%s" não suporta integração Caminho: %s
 Caminho: indisponível Realizar COMANDOS na partição.
Use "parttool PARTIÇÃO help" para uma lista de comandos disponíveis. Realizar uma procura DNS Realizar auto-configuração IPV6 Realizar mapeamentos directo e reverso. PiB PiB/s Planar  Tocar uma melodia. UUID do espaço: %016llx
 UUID do espaço: indisponível Nome do espaço: %s
 Nome do espaço: indisponível Estado do espaço: activo Estado do espaço: destruído Estado do espaço: exportado Estado do espaço: dispositivo ARC nível 2 Estado do espaço: potencialmente activo Estado do espaço: reservado para suplente de socorro Estado do espaço: indisponível Estado do espaço: não inicializado Os argumentos possíveis são: Os comandos possíveis são: Os dispositivos possíveis são: Os ficheiros possíveis são: As partições possíveis são: Os objectos possíveis são: Prefixo não especificado (use a opção -p). Prepara imagens GRUB de arranque de rede em net_directory/subdir assumindo net_directory como sendo raiz TFTP. Prima qualquer tecla para continuar... Prima qualquer tecla para iniciar o xnu Prima Enter para iniciar o SO seleccionado, "e" para editar os comandos antes de iniciar ou "c" para uma linha de comando. Prima Enter para iniciar o SO seleccionado, "e" para editar os comandos antes de iniciar ou "c" para uma linha de comando. ESC para voltar ao menu anterior. Imprimir informação da memória. Imprimir informação ZFS sobre DISPOSITIVO. Imprimir ZFS-BOOTFSOBJ ou armazená-lo em VARIÁVEL Imprime uma lista de blocos. Imprimir e executar o argumento de bloco. Imprimir rasto anterior. Imprimir identidade e definições da unidade. Imprimir tamanhos num formato legível. Procurar informação do dispositivo para um dado caminho (ou dispositivo, se a opção -d for dada). RAM com tabelas coreboot RAM com código de firmware Ranhura RAM número %d
 REGEXP CADEIA Imagem ROM presente. Ler valor de 16-bit de ENDEREÇO. Ler valor de 16-bit de PORTA. Ler valor de 32-bit de ENDEREÇO. Ler valor de 32-bit de PORTA. Ler valor de 8-bit de ENDEREÇO. Ler valor de 8-bit de PORTA. Ler um registo específico do modelo de CPU. Ler só TAMANHO bytes. Falha ao reiniciar Reiniciar para o menu de configuração do firmware. Reiniciar o computador. Senha recente:  Registo %x de %x:%02x.%x é %x
 Remover ID_CHAVEPÚBLICA das chaves de confiança. Remover um servidor DNS Remover um módulo. Remover uma variável de ambiente. Remover quaisquer regiões de memória no intervalo especificado. Criar Apple .disk_label. Repor todos os mapeamentos nos valores predefinidos. Obter informação SMBIOS. Obter informação do dispositivo. Regressar de uma função. Voltar à linha do IEEE1275. Execute "gdb %s %d" e defina ARGS.HOLD para zero.
 Execute "go" para continuar o GRUB. Meta-dados SBAT SEGS NOMECURTO NOMECURTO PLACA ENDEREÇO [ENDEQUIPAMENTO] NOMECURTO REDE [INTERFACE| gw PORTAL] TAMANHO FONTE|-u UUID|-a|-b CADEIA CADEIA... Sábado Gravar valor lido na variável NOMEVAR. Gravar variáveis em ficheiro de bloco de ambiente. Diga "Olá Mundo". O script "%s" não contém comandos e não fará nada
 Procurar dispositivos por UUID. Se VARIÁVEL for especificada, o primeiro dispositivo encontrado é definido para uma variável. Procurar dispositivos por um ficheiro. Procurar dispositivos por uma UUID de sistema de ficheiros. Procurar dispositivos por um rótulo de sistema de ficheiros. Procurar dispositivos por ficheiro, rótulo ou UUID de sistema de ficheiros. Se --set for especificada, o 1º dispositivo encontrado é definido para uma variável. Se não especificar um nome de variável, é usado "root". Procurar dispositivos por ficheiro. Se VARIÁVEL for especificada, o primeiro dispositivo encontrado é definido para uma variável. Procurar dispositivos por rótulo. Se VARIÁVEL for especificada, o primeiro dispositivo encontrado é definido para uma variável. O sector %llu já está em uso pelo controlador raid "%s"; a evitá-lo. Por favor, peça ao fabricante que não armazene dados no espaço pós-MBR O sector %llu já está em uso pelo programa "%s"; a evitá-lo. Este programa, de futuro, pode causar problemas de arranque ou outros. Por favor, peça ao fabricante que não armazene dados no espaço pós-MBR Seleccionar uma estrutura quando várias coincidem. Seleccionar dispositivo pela sua posição no bus. Seleccionar dispositivo por fabricante e IDs de dispositivo. Definir gestão de energia avançada
(1=baixa, ..., 254=alta, 255=desligada). Definir gestão acústica automática
(0=desligada, 128=silenciosa, ..., 254=rápida). Definir OEMID de RSDP, XSDT e RSDT. Definir OEMTABLE ID de RSDP, XSDT e RSDT. Definir revisão OEMTABLE de RSDP, XSDT e RSDT. Definir bandeira "hidden" no tipo de partição Definir uma variável para devolver o valor. Definir uma variável para o primeiro dispositivo encontrado. Definir uma variável de ambiente. Carregar cor de fundo para o terminal activo. Definir bit em BYTE:BIT em CMOS. Definir campo de criador de RSDP, XSDT e RSDT. Definir revisão de criador de RSDP, XSDT e RSDT. Definir a variável de ambiente de depuração. Definir unidade para modo de dormir. Definir unidade para modo de espera. Definir parâmetros posicionais. Definir dispositivo raiz. Definir tempo de entrada em espera
(0=desligado, 1=5s, 2=10s, ..., 240=20m, 241=30m, ...). Definir o tipo terminfo de TERMINAL para TIPO.
 Definir a frequência base. Definir o endereço da porta série. Definir a paridade da porta série. Definir a velocidade da porta série. Definir os bits de paragem da porta série. Definir o tamanho de palavra da porta série. Definir a unidade série. Configurar imagens a arrancar do dispositivo.

Normalmente, não deve executar este programa directamente. Use antes grub-install. Definir senha do utilizador (PBKDF2).  Definir senha do utilizador (texto simples). Inseguro e não recomendado. Definir variável com entrada do utilizador. Definir variáveis. A escrever o tipo de partição 0x%x no disco
 Deslocar parâmetros posicionais. Mostrar informação ACPI. Mostrar informação da APM. Mostrar conteúdo da consola CBMEM. Mostrar uma mensagem de ajuda. Mostrar uma longa lista com informação mais detalhada. Mostrar estatísticas de hora de início. Mostrar conteúdo de FICHEIRO em hexadecimal. Mostrar estatísticas de hora de início coreboot. Mostrar módulos carregados. Mostrar conteúdo da memória. Mostrar conteúdo bruto do sector ATA IDENTIFY. Mostrar conteúdo bruto de um ficheiro ou memória. Mostrar despejo bruto do conteúdo de CMOS. Mostrar despejo bruto do espaço de configuração PCI. Mostrar o conteúdo de um ficheiro. Mostrar os mapeamentos actuais. Mostrar a lista de chaves de confiança. Mostrar esta mensagem. Mostrar só tabelas versão 1. Mostrar só tabelas versão 2 e versão 3. Falha ao encerrar Simular o comando "inird" do grub-legacy Simular o comando "kernel" do grub-legacy Simular o comando "modulenounzip" do grub-legacy Simular o comando "password" do grub-legacy Simular o comando "password" do grub-legacy em modo de entrada de menu Saltar N bytes do ficheiro de saída. Saltar bytes de desvio a partir do início do ficheiro. Saltar verificação de assinatura do ficheiro de ambiente. Saltar verificação de assinatura do ficheiro de chave pública. Ranhura "%s" aberta
 Ranhura %d aberta
 Desculpe, não há parttool disponível para %s
 Especificar nome de ficheiro. Especificar a hash a usar. Especificar uma ou mais letras a carregar. Especificar tamanho para cada operação de leitura Especificar o número de ficheiros de entrada. Velocidade: %s 
 Inicie a parte GDB na porta indicada Parar a parte GDB A informação de armazenamento de "%s" não inclui o tipo A informação de armazenamento de "%s" não indica nem uma partição simples nem um disco simples Armazenar NÚMERO do componente comparado em NOMEVAR. Gravar o valor no nome da variável indicado. Sucesso Domingo Suprimir saída normal (mantém os avisos). Mudar para controladores de disco nativos. Se não especificar módulos, é usado o conjunto predefinido (pata,ahci,usbms,ohci,uhci,ehci) Erro de sintaxe na linha %u
 O espaço de E/S do controlador do bus de gestão do sistema está em 0x%x
 T ALVO TEMAS TPM indisponível Formato de alvo não especificado (use a opção -O). O terminal tem geometria específica. O terminal é só ASCII [predefinição]. O terminal é UTF-8 logicamente ordenado. O terminal é UTF-8 visualmente ordenado. Testar suporte USB. Testar bit em BYTE:BIT em CMOS. Testar velocidade de leitura do ficheiro. Testar se REGEXP corresponde a CADEIA. Testar sub-sistema de vídeo em modo WxH. Testar sub-sistema de vídeo. Só texto  Os ficheiros são idênticos.
 A entrada realçada será executada automaticamente em %ds. Este DISPV é um RAIDZ%llu
 Este DISPV é um espelho Esta entrada pode ser iniciada por qualquer utilizador. Quinta TiB TiB/s Ferramenta para editar o bloco de ambiente. Tamanho flash total: %d B.
 Transformar UUID 64-bit em formato adequado para XNU. Se -l for dada, manter em minúsculas tal como feito por blkid. Transformar um nome de ficheiro de sistema num do GRUB. Transformar configuração syslinux numa do GRUB. Traduzir caracteres CONJUNTO1 para CONJUNTO2 em CADEIA. Traduzir para minúsculas. Traduzir para maiúsculas. Traduz a cadeia com as definições actuais. Terça UTILIZADOR SENHA UTILIZADOR SENHA_PBKDF2 UTILIZADOR[,UTILIZADOR] UTF-8 Impossível criar túnel: %s Impossível determinar a sua plataforma. Use --target. Impossível bifurcar: %s Impossível abrir fluxo de %s: %s Impossível obter o estado do espaço Descomprimir dados. Descomprimir ficheiros antes de fazer a checksum. Erro TPM desconhecido Tipo de endereço %d desconhecido
 Comando "%s" desconhecido.
 Formato de compressão %s desconhecido Codificação desconhecida Argumento extra desconhecido: "%s". Código de leitura de tecla 0x%02x desconhecido
 Identificador de tecla %s desconhecido
 Plataforma "%s-%s" desconhecida Modo de vídeo desconhecido  Tipo de dispositivo virtual desconhecido: %s
 Descarregar emulador EFI. Compressão "%s" não reconhecida Estado do espaço não reconhecido Tipo de endereço %d não suportado
 Cobertura de substituição não suportada: %d
 Tipo de endereço hw %d não suportado
 Especificação de substituição não suportada: %d
 Tipo de substituição não suportado: %d
 Uso: Uso: %s DISPOSITIVO
 Uso: %s [FICHENTRADA [FICHSAÍDA]]
 Usar CDROM como raiz. Usar depurador GDB remoto em vez de DDB. Usar CADEIA como corpo da entrada de menu. Usar o dispositivo raiz compilado. Usar consola série. Use as teclas %C e %C para seleccionar qual entrada é realçada. VAR INTERFACE NÚMERO DESCRIÇÃO NOMEVAR O elemento com o nº %d de DISPV não está correcto
 Elemento nº %d de DISPV:
 DISPV com %d filhos
 Contagem decrescente verbosa. Verificar assinatura destacada. Versão %u.%u
32-bit CS = 0x%x, tam = 0x%x, desvio = 0x%x
16-bit CS = 0x%x, tam = 0x%x
DS = 0x%x, tam = 0x%x
 Dispositivo virtual degradado Dispositivo virtual com defeito Dispositivo virtual offline Dispositivo virtual online Dispositivo virtual removido AVISO: não haverá nenhuma consola disponível para o SO AVISO: não se realizou nenhuma instalação específica da plataforma AVISO: parâmetros e funcionalidade de letra não suportados: %x
 LARGURAxALTURA. Esperar um determinado nº de segundos. Esperar por uma pressão de tecla a cada linha de saída. Aviso: cor de fundo "%s" inválida
 Aviso: cor de 1º plano "%s" inválida
 Aviso: erro de sintaxe em "%s" (barra em falta)
 Quarta Escrever VALOR de 16-bit em ENDEREÇO. Escrever VALOR de 16-bit em PORTA. Escrever VALOR de 32-bit em ENDEREÇO. Escrever VALOR de 32-bit em PORTA. Escrever VALOR de 8-bit em ENDEREÇO. Escrever VALOR de 8-bit em PORTA. Escrever uma valor num registo específico do modelo de CPU. Bytes SPD escritos: %d B.
 YUV  Tem de especificar pelo menos um comando.
 Terá de definir "SystemPartition" e "OSLoader" manualmente. Encontrou um erro A sua área de integração é invulgarmente pequena. core.img não vai caber lá. O seu xorriso não suporta "--grub2-boot-info". Algumas funcionalidades foram desactivadas. Por favor, use o xorriso 1.2.9 ou posterior. O seu xorriso não suporta "--grub2-boot-info". A sua imagem de núcleo é muito grande. O arranque como disco está desactivado. Por favor, use o xorriso 1.2.9 ou posterior. [--append|--remove] [TERMINAL1] [TERMINAL2] ... [--force|--bpb] FICHEIRO [--md5] SENHA [FICHEIRO] [--no-mem-option] [--type=TIPO] FICHEIRO [ARG ...] [-1|-2] [--exclude=TABELA1,TABELA2|--load-only=TABELA1,TABELA2] FICHEIRO1 [FICHEIRO2] [...] [-c FICHEIRO [-p PREFIXO]] [FICHEIRO1 [FICHEIRO2...]] [-d] NOMEDISPOSITIVO FICHEIRO. [-e|-n] CADEIA [-f FICHEIRO] [-f FICHEIRO] [-s|--skip-sig] [nome_variável_para_lista_branca] [...] [-f FICHEIRO] nome_variável [...] [-f|-l|-u|-s|-n] [--hint DICA [--hint DICA] ...] NOME [-h|-p|-r] [FICHEIRO] [-l] UUIDGRUB [NOMEVAR] [-l|-h|-a] [FICHEIRO ...] [-m (stretch|normal)] FICHEIRO [-s POSIÇÃO] [-d DISPOSITIVO] [-s POSIÇÃO] [-d DISPOSITIVO] [-v VAR] REGISTO[=VALOR[:MÁSCARA]] [-s TAMANHO] NOMEFICHEIRO [-s|--skip-sig] FICHEIRO FICHEIRO_ASSINATURA [FICHEIRO_CHAVE_PÚBLICA] [-s|--skip-sig] FICHEIRO_CHAVEPÚBLICA [-t tipo] [-h gestor] [-m comparar] (-b|-w|-d|-q|-s|-u) desvio [--set variável] [ENDEREÇO|comUNID][,VELOCIDADE] [ARG] [PLACA [ENDEQUIPAMENTO]] [PLACA] [PASTA] [VARAMB=VALOR] [VARAMB] [TECLA1] [TECLA2] ... [TAMANHO] [MÓDULO1 MÓDULO2 ...] [NÚMERO:]NOMEVAR [NÚM] [OPÇÕES...] [OPÇÕES] [OPÇÕES] DISCO [OPÇÕES] FICHEIRO_OU_DISPOSITIVO [OPÇÕES] FICHEIROS_LETRA [OPÇÕES] [CONJUNTO1] [CONJUNTO2] [CADEIA] [OPÇÃO] FONTE... [OPÇÃO] [DSIPOSITIVO_INSTALAÇÃO] [OPÇÃO]... [MÓDULOS] [OPÇÃO]... [CAMINHO|DISPOSITIVO] [OPÇÕES] [CAMINHO] [PADRÃO...] [LISTAUTILIZADORES] [VALOR]... [WxH[xD]] [WxH] [[-a|-u|-v] [-g WxH] [TERMINAL] [TIPO]] [[ano-]mês-dia] [hora:minuto[:segundo]] [bus]:[ranhura][.funç] [predefinição=%s] [fabricante]:[dispositivo] "%s" está mal compilado: o seu endereço inicial é 0x%llx em vez de 0x%llx: erro ld.gold? "%s" não é um disco local falha no comando "cryptomount": %s falha no comando "loopback": %s "nvsetenv" falhou. 
Terá de definir a variável "boot-device" manualmente. Na linha do IEEE1275, digite:
  %s
 "obppath" não encontrado em pastas-mãe de "%s", sem descoberta de nome IEEE1275 foi atribuído um valor ao argumento "%s", mas ele não requer um argumento acesso negado adicionar segmento NOTA para CHRP IEEE1275 endereço endereço não encontrado alloc-mem falhou assumir entrada como ficheiro de configuração pxelinux. assumir entrada como ficheiro de configuração syslinux. assumir entrada como ficheiro de configuração isolinux. tentativa de instalar em disco encriptado sem cryptodisk activado. Defina "%s" no ficheiro "%s" tentativa de ler ou escrever fora do disco "%s" tentativa de ler ou escrever fora da partição tentativa de ler para lá do fim do ficheiro tentativa de redefinir uma função em execução tentativa de procurar fora do ficheiro a tentar ler a imagem de núcleo "%s" do GRUB a tentar ler a imagem de núcleo "%s" do GRUB novamente RAM disponível formatos disponíveis: alvos disponíveis: má assinatura shim má assinatura base_addr = 0x%llx, tamanho = 0x%llx, %s
 base_addr = 0x%llx, tamanho = 0x%llx, tipo = 0x%x
 assinatura de ficheiro grande ainda não está implementado ficheiro de imagem "%s" de formato não suportado benção para macs baseados em ppc-based benção para macs baseados em x86 blocklist FICHEIRO listas de blocos incompletas listas de blocos inválidas tamanho de bloco não divisível por 512 tamanho de bloco muito grande impossível saltar de 0 ciclos impossível comprimir "%s" para "%s" impossível determinar o sistema de ficheiros em %s impossível encontrar o comando "%s" impossível montar o volume encriptado "%s": %s impossível abrir "%s": %s impossível abrir o ficheiro %s, índice %d: erro %d impossível obter listas de bloco impossível obter listas de blocos: %s impossível definir tamanho de letra %dx%d: erro Freetype %d: %s impossível alocar buffer de evento TPM impossível alocar o buffer de comandos impossível fechar "%s": %s impossível comprimir a imagem do kernel impossível copiar "%s" para "%s": %s impossível eliminar "%s": "%s" impossível encontrar a pasta EFI impossível encontrar uma unidade GRUB para %s. Verifique o seu device.map impossível encontrar um dispositivo para %s (/dev está montada?) impossível encontrar o idioma "%s" impossível obter localização do ficheiro "%s": %s impossível obter a linha de comando do tradutor para "%s": %s impossível fazer pasta temporária: %s impossível fazer ficheiro temporário: %s impossível abrir ficheiro de SO "%s": %s impossível abrir "%s": %s impossível abrir o ficheiro de configuração "%s": %s impossível abrir a pasta "%s": "%s" impossível ler "%s" correctamente impossível ler "%s": %s impossível renomear o ficheiro %s como %s impossível renomear o ficheiro %s como %s: %m impossível restaurar a pasta original impossível gravar a pasta original impossível procurar "%s": %s impossível analisar "%s": %s impossível sincronizar "%s": %s impossível escrever no CD-ROM impossível escrever em "%s": %s impossível escrever bloco em stdout: %s placa não encontrada cat FICHEIRO falha ao verificar a checksum escolher a compressão a usar para a imagem de núcleo cmp FICHEIRO LOCAL comUNID[,VELOCIDADE] falha ao comparar no desvio %llu comprimir ficheiros GRUB [opcional] ligação recusada ligação expirada converter para letra em negrito imagem de núcleo muito grande (0x%x > 0x%x) versão core.img trocada impossível auto-configurar %s impossível encontrar o caminho de dispositivo IEEE1275 para %s.
Terá de definir a variável "boot-device" manualmente impossível encontrar um dispositivo-membro de um sistema de ficheiros multi-dispositivo impossível encontrar consumidor geli impossível encontrar ca classe "part" do geom impossível abrir geom impossível ler meta-dados ELI impossível obter UUID impossível obter UUID geli impossível obter dados aleatórios impossível encontrar dados aleatórios para salt impossível enviar pacote de rede cp FICHEIRO LOCAL crc FICHEIRO erro criptográfico número %d pasta actual de syslinux [predefindo como a pasta-mãe do ficheiro de entrada]. pasta actual de syslinux como será vista em tempo de execução [predefinição é a pasta-mãe do ficheiro de entrada]. cygwin_conv_path() falhou eliminar mapa do dispositivo, se já existir destino inalcançável total de dispositivos excede o limite tem de indicar uma árvore de dispositivo (veja o comando "devicetree") desactivar dicas desactivar verificador shim_lock disco "%s" não encontrado o disco não existe, a recuar para o dispositivo de partição %s módulo de disco a usar (biosdisk ou nativo). Esta opção só está disponível em alvo BIOS. falha ao ler o disco no desvio %lld, tamanho %lld o tamanho de diskboot.img tem de ser %u bytes não instalar bootsector não procurar sistemas de ficheiros em DISPOSITIVO componente de nome de domínio muito longa não actualizar estado do LED não actualizar as variáveis NVRAM "boot-device"/"Boot*". Esta opção só está disponível em alvos EFI e IEEE1275. efibootmgr falhou ao registar a entrada de arranque: %s integrar FICHEIRO como árvore de dispositivo (DTB)
 integrar FICHEIRO como imagem de disco de memória
Implica "-p (memdisk)/boot/grub" e sobrepõe quaisquer prefixos dados anteriormente, mas o prefixo pode ser sobreposto por opções posteriores integrar FICHEIRO como configuração inicial integrar ficheiro como chave pública para verificação de assinatura integrar um DTB específico integração impossível, embora seja requerida para instalação RAID e LVM integração impossível, embora seja requerida para instalação com /boot num disco e MBR noutro activa o arranque ARCS (máquinas big-endian mips, maioritariamente SGI). Desactiva HFS+, APM, sparc64 e arranque como imagem de disco em PCs i386-pc activar arranque sparc. Desactiva HFS+, APM, ARCS e arranque como imagem de disco para PCs i386 a activar suporte %s... enter: iniciar, "e": opções, "c": lin.-com bloco de ambiente muito pequeno erro: %s.
 falha ao copiar o Grub para a partição PReP falha ao obter FDT falha ao obter o caminho canónico de "%s" falha ao ler os sectores da imagem de núcleo falha ao obter o campo de estrutura falha ao ler o sector 0x%llx de "%s" falha ao ler a senha falha ao excrever osector 0x%llx em "%s" falso RAM deficiente (BadRAM) ficheiro "%s" muito grande ficheiro "%s" não encontrado nome de ficheiro esperado esperado nome de ficheiro ou tempo e notas musicais o sistema de ficheiros "%s" não suporta rótulos o sistema de ficheiros "%s" não suporta listas de blocos o sistema de ficheiros em %s não é HFS nem HFS+ imagem de firmware muito grande forçar dica automática esperados quatro argumentos free-mem falhou fwstart.img não corresponde à versão boa conhecida. Continue por sua própria conta e risco gerar uma imagem em FORMATO o argumento dado é um dispositivo de sistema, não um caminho grub-mkimage está compilado se suporte XZ grub> gestor hex FICHEIRO ignorar bitmaps disponíveis ao carregar especificação de dimensões do terminal incorrecta initrd já carregado instalar LETRAS [predefinição=%s] instalar o GRUB para a plataforma ALVO [predefinição=%s]; alvos disponíveis: %s instalar imagens GRUB sob PASTA/%s em vez da pasta %s instalar TEMAS [predefinição=%s] dispositivo de instalação não especificado instalar mesmo que seja detectados problemas instalar só IDIOMAS [predefinição=todos] instalar só MÓDULOS e suas dependências [predefinição=tudo] interpret não é suportado código de opção DHCP inválido senha PBKDF2 inválida magia ELF dependente de arch não suportada magia ELF independente de arch não suportada argumento inválido tamanho de bloco inválido especificação de cor "%s" inválida árvore de dispositivo inválida bloco de ambiente inválido nome de ficheiro "%s" inválido intervalo de letra inválido formato de linha inválido: %s endereço de memória inválido (0x%s > 0x%s) ficheiro modinfo "%s" inválido parâmetro %s inválido valor de salto %lld inválido nome de variável "%s" invaĺido especificação "%s" de modo de vídeo inválida zImage inválido tamanho de bloco zero inválido erro ioctl GET_ARRAY_INFO: %s erro ioctl GET_DISK_INFO: %s erro ioctl RAID_VERSION: %s imagem do kernel muito grande (0x%x > 0x%x) listar endereços de rede listar placas de rede listar rotas de rede ls CAMINHO ficheiro lzop corrompido tornar a unidade iniciável como floppy (predefinição para dispositivos fdX). Pode quebrar o arranque nalgumas BIOSs. correspondência símbolo "%c" em falta opção obrigatória para "%s" em falta nome de ficheiro p-list em falta o módulo "%s" não está carregado o módulo não está carregado nome requer uma imagem e um ponto de montagem nova leitura posicionada além do fim dos dados escritos sem APM encontrada sem informação DHCP encontrada sem opção %u DHCP encontrada sem opções DHCP encontradas sem registos DNS encontrados sem resposta DNS recebida sem servidores DNS configurados não há rotinas EFI disponíveis para a sua plataforma não há rotinas EFI disponíveis quando em execução em modo BIOS não há rotinas IEEE1275 disponíveis para a sua plataforma não há rotinas SGI disponíveis para a sua plataforma sem "/" no nome de ficheiro canónico sem comando especificado não há compressão disponível para a sua plataforma sem chave de desencriptação disponível sem dicas disponíveis para a sua plataforma. Espere um desempenho reduzido sem suporte em "%s" sem placa de rede encontrada não há gerador de números aleatórios disponível para o seu SO não especificou nenhum servidor nenhuma estrutura corresponde às opções dadas partição inexistente sem modo de vídeo adequado encontrado sem tabela de símbolos sem terminal especificado sem terminador na imagem de núcleo dados não alinhados ao sector encontrados no ficheiro de núcleo não é uma pasta não é partição primária não é um ficheiro normal não está no corpo da função desvio esperado um argumento é requerida uma das opções --get só ipv4 só ipv6 só pode usar uma opção --get de cada vez outro programa está a usar a área de integração e não há espaço suficiente para core.img. Tais programas estão frequentemente a tentar armazenar dados de forma a evitar a detecção. Recomendamos que investigue memória esgotada imprimir uma imagem gerada para FICHEIRO [predefinição=stdout] tem de especificar um ficheiro de saída transporte detectado as senhas não coincidem pico fora de alcance realizar uma auto-configuração DHCP realizar uma auto-configuração bootp RAM persistente RAM persistente (antiga) volume físico %s não encontrado kernel de imagem simples não suportado - reconstrua com CONFIG_(U)EFI_STUB activa pré-carregar MÓDULOS especificados preferir ipv4 preferir ipv6 fim de ficheiro prematuro fim de ficheiro %s prematuro premir tecla CapsLock premir tecla Insert premir tecla NumLock premir tecla ScrollLock premir SysRq premir Alt esquerdo premir Ctrl esquerdo premir Shift esquerdo premir Alt direito premir Ctrl direito premir Shift direito imprimir ALVO imprimir mensagens verbosas. chave pública %08 chave pública %08x não encontrada erro de leitura no desvio %llu: %s ler texto de FICHEIRO. sub-pasta relativa em servidor de rede relocalização 0x%s ainda não está implementada relocalização 0x%x ainda não está implementada o tamanho de buffer pedido é muito grande RAM reservada obter opção DHCP e gravá-la em VAR. Se VAR for -, imprimir o valor. pasta raiz como será vista em tempo de execução [predefinição=/]. pasta raiz do servidor TFTP pasta raiz de um disco syslinux [predefinição=/]. ciclo de rotas detectado gravar imagens ROM em PASTA [opcional] gravar saída em FICHEIRO [requerido] tamanho do nome de secção %s maior que %lu seleccionar o índice da letra separar itens na saída com caracteres ASCII NUL porta série "%s" não encontrada set [NOME=VALOR ...] definir modo CapsLock definir ampliação da letra definir redução da letra definir nome de família da letra definir intervalo da letra definir tamanho da letra definir nome de ficheiro de entrada para parte 32-bit. definir nome de ficheiro de entrada para parte 64-bit. definir nome do ficheiro de entrada. A predefinição é STDIN definir modo Insert definir modo NumLock definir nome de ficheiro de saída. Predefinido como STDOUT definir modo Pause definir pasta de prefixo definir modo ScrollLock definir o rótulo a criar protocolo shim_lock não encontrado tamanho stretch|normal símbolo "%s" não encontrado temporário terminal %s não encontrado ou não gerido pelo terminfo terminal "%s" não encontrado a ID do bootloader. Esta opção só está disponível em EFI e Macs. a partição PReP não está vazia. Se tem a certeza de que a deseja utilizar, execute dd para a limpar: "%s" estrutura do ponto de entrada da SMBIOS não encontrada o argumento "%s" requer um inteiro a partição escolhida não é uma partição PReP a entrada em device.map "%s" é inválida. A ignorá-la. Por favor, corrija ou elimine o seu device.map a unidade %s está definida múltiplas vezes no mapa do dispositivo %s o nome de unidade "%s" em device.map está incorrecto. A usar antes %s. Por favor, use a forma [hfc]d[0-9]* (e.g. "hd0" ou "cd") o campo termina fora da estrutura o primeiro sector do ficheiro de núcleo não está alinhado por sector o desvio indicado está fora da estrutura o gestor tem de estar entre 0 e 65535 o dispositivo de instalação é removível. Esta opção só está disponível em EFI. o resultado tem de ser um inteiro positivo o tipo de partição 0x%x não é válido os sectores do ficheiro de núcleo estão muito fragmentados o tamanho de "%s" não é %u o tamanho de "%s" é muito grande o tamanho de "%s" é muito pequeno o tipo tem de estar entre 0 e 255 este ficheiro ELF não é do tipo correcto este rótulo de partição GPT não contém uma BIOS Boot Partition; a integração não será possível este LDM não tem Embedding Partition; a integração não será possível este rótulo de partiçao de estilo msdos não tem espaço pós-MBR; a integração não será possível esperados três argumentos expirado ao abrir "%s" expirado ao ler "%s" expirado: impossível resolver o endereço do equipamento aninhamento de ligações simbólicas muito profundo o tradutor "%s" para "%s" tem várias palavras não-opção, pelo menos "%s" e "%s" o tradutor "%s" para "%s" só recebeu opções, impossível encontrar o caminho do dispositivo linha de comando do tradutor vazia para "%s" esperados dois argumentos tipo impossível identificar um sistema de ficheiros em %s; não se pode realizar a verificação de segurança tamanho de dispositivo desalinhado erro EFI inesperado fim de ficheiro inesperado argumento "%s" desconhecido compressão %d desconhecida tipo de dispositivo %s desconhecido sistema de ficheiros desconhecido tipo de serviço RAID "%s" desconhecido formato alvo %s desconhecido formato de alvo %s desconhecido
 terminfo tipo "%s" desconhecido formato de especificação "%s" de opção DHCP não reconhecido endereço de rede "%s" não reconhecido interface de rede "%s" não reconhecida número não reconhecido endereço %s insolúvel unset [NOME ...] erro HTTP %d não suportado: %s resposta HTTP não suportada versão RAID não suportada: %d.%d formato gzip não suportado instrução não suportada plataforma %s não suportada controlo de fluxo de porta série não suportado paridade de porta série não suportada velocidade de porta série não suportada número de bits de paragem de porta série não suportado tamanho de palavra de porta série não suportada usar COR para fundo usar COR para rótulo usar COR para fundo do rótulo usar COR para texto usar PASTA como raiz de EFI System Partition. usar PASTA para instalação de PPC MAC. usar FICHEIRO como letra (PF2). usar FICHEIRO como letra para rótulo usar FICHEIRO como memdisk usar FICHEIRO como a imagem de arranque [predefinição=%s] usar FICHEIRO como a imagem de núcleo [predefinição=%s] usar FICHEIRO como mapa do dispositivo [predefinição=%s] usar FICHEIRO como xorriso [optional] usar ficheiros GRUB na pasta PASTA [predefinição=%s] usar CADEIA como nome de produto usar CADEIA como versão do produto usar ficheirod identificador, mesmo que a UUID esteja disponível usar imagens e módulos em PASTA [predefinição=%s/<plataforma>] usar temas em PASTA [predefinição=%s] usar traduções em PASTA [predefinição=%s] variável variável "%s" não definida verificação pedida, mas ninguém se preocupa: %s UTF-8 visualmente ordenado esperar até que um depurador ataque não se continuará com as listas de blocos escrever saída em FICHEIRO [predefinição=stdout]. versão ou magia ELI erradas xnu_uuid DISPSITIVO xorriso não encontrado ficheiro xz corrompido ou opções de bloco não suportadas impossível eliminar este endereço primeiro tem de carregar o Xen Hypervisor primeiro tem de aprender o kernel a sua BIOS Boot Partition é muito pequena; a integração não será possível a sua LDM Embedding Partition é muito pequena; a integração não será possível a sua imagem de núcleo é invulgarmente grando. Não vai caber na área de integração a sua área de integração é invulgarmente pequena; core.img não vai lá caber.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               s  ;o      
i          Ɛ&,~T       ;o      i    &      Ɛ&N,~T     ,  ;o      i          Ɛ&,~T       ;o      ui    +      Ɛ&,~T       ;o      i          Ɛ&X-~T     ©  ;o      \i          Ɛ&-~T     ĩ  ;o       i          Ɛ&-~T     ũ  ;o      i          Ɛ&6.~T     Ʃ  ;o      i    I      Ɛ&~.~T     ǩ  ;o       j    X      Ɛ&.~T     9S  ;o      ^j    i      Ɛ&.~T     ȩ  ;o      j          Ɛ&/~T     U  ;o      l
j          Ɛ&~T     W  ;o      "j          Ɛ&~T       ;o      
j    ^      Ɛ&~T        ;o      Qj           Ɛ&h~T     ɩ  ;o      @j          Ɛ&Ā~T     n  ;o      j           Ɛ&~T       ;o      j          Ɛ&:~T     :S  ;o      j          Ɛ&~T     ˩  ;o      j    P      Ɛ&~T     ̩  ;o      
j    T      Ɛ&~T     ͩ  ;o      _j    a      Ɛ&D~T       ;o      j    b      Ɛ&~T       ;o      $"j          Ɛ&ւ~T     ϩ  ;o      #$j          Ɛ&~T       ;o      %j    r      Ɛ&P~T     Щ   ;o      B'j          Ɛ&~T     [  ;o      6)j          Ɛ&L T     (   ;o      K+j    K      Ɛ&ƃ~T     ѩ  ;o      ,j          Ɛ&~T     2   ;o      +.j    n      Ɛ& T     *   ;o      /j    t      Ɛ&R~T     ҩ  ;o      2j    \      Ɛ&v~T     ө  ;o      l4j          Ɛ&Ԅ~T     ԩ  ;o      5j    D      Ɛ&F~T     ֩ 	 ;o      6j    L      Ɛ&|~T     ٩ 
 ;o      8j    F      Ɛ&~T     թ  ;o      X9j    :      Ɛ&~T     ک  ;o      :j          Ɛ&*~T       
 ;o      8<j          Ɛ&z~T     ۩  ;o      >j    /      Ɛ&҆~T     ܩ  ;o      Cj    q      Ɛ&~U     1<  ;o      Fj    u      Ɛ&:~U     ݩ  ;o      Jj          Ɛ&~~U     ީ  ;o      Kj    ]      Ɛ&Ƈ~U     ߩ  ;o      jLj    ?      Ɛ&~	U       ;o      Nj          Ɛ&2~U     y  ;o      Pj    o      Ɛ&j~
U       ;o      ,Sj    }      Ɛ&~U     n   ;o      Uj    ]      Ɛ&ވ~U     (  ;o      Xj          Ɛ&~U       ;o      Zj    )      Ɛ&&~U        ;o      0\j          Ɛ&~U     G  ;o      ?^j    R      Ɛ&ȉ~U     (  ;o      `j          Ɛ&~U       ;o      hj          Ɛ&>~U     W   ;o      mj          Ɛ&b~U     #  ;o      ;pj    Q      Ɛ&~!U        ;o      sj          Ɛ&؊~#U     ]- ! ;o      uj    v      Ɛ&~%U      " ;o      !wj          Ɛ&j~'U      # ;o      xj          Ɛ&~)U     y  $ ;o      yj          Ɛ&~+U      % ;o      {j    )      Ɛ&j~-U   & ;o      |j    K      Ɛ&~/U   ' ;o      7j    $      Ɛ&ތ~1U     F ( ;o      \j          Ɛ&~3U     I ) ;o      Lj    H      Ɛ&6~5U     m  * ;o      j    H      Ɛ&l~7U     i + ;o      މj    y      Ɛ&~9U      , ;o      Xj          Ɛ&~;U      - ;o      j    _      Ɛ&~=U     vP . ;o      cj    }      Ɛ&~?U     @ / ;o      j    <      Ɛ&~AU      0 ;o      j    f      Ɛ&2~CU      1 ;o      j    g      Ɛ&~~EU      2 ;o      j    O      Ɛ&~GU       3 ;o      =j    "      Ɛ&~IU      4 ;o      `j          Ɛ&V~KU     0{ 5 ;o      j    s      Ɛ&~MU     J 6 ;o      rj          Ɛ&Ȑ~OU      7 ;o      j    r      Ɛ&0~QU     q 8 ;o      uj    w      Ɛ&~SU      9 ;o      j    _      Ɛ&ȑ~UU     s : ;o      ELF          >            @                @ 8 	 @                                 G     G                   P      P      P                               `      `      `     6      6                                                                                                 8      8      8      $       $              Ptd                     ,       ,              Qtd                                                  Rtd                  P     P                     GNU 8|QǋE$k    %         	    
al@   @C  . TJ$  R @D@ @E` HD
	h `                                           !   #   $   %   &   (   ,   /   2   4   5   7   9   :   <   =   @   B       E   H   J   O   R   {OŃYĿ
ˑ6%NgX+m˻5Mo/oW6FوKنE[G7{?;VDP ,`kJ۾$eG0]Fh1,{VGM=±D-6DثxZX_bǬtՐJCS9YG
!~&p;΂?"A^dD0Rr@o!xf$V xϧ?o
`X?b;2ӗ?x#./[?mXó                        r                                                                                                                                                           U                                                                                                                                   ,                       e                                            F   "                       @     0                0                0                0                0       _         0       b         0           @     0       &    @     0                0       2    @     0                0       P         0                0       d    @     0       T         0                0           @     0                 0       }          0                0                 0       P         0       <          0                 0                0            S                     0       N         0       A          0           @     0           @     0                0       D         0                 0       g         0                 0                0                 0       8    @     0                0                 0           @     0       v    @     0       K          0                0                0       n    @     0                0       v    @     0                0       /          0       :          0       f         0                0       t          0                 0       +    @     0       |         0                0                0       #         0                0           @     0           @     0        __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize Perl_gv_stashpv Perl_newSViv Perl_newRV_noinc Perl_sv_bless strlen Perl_newSVpvn Perl_sv_2mortal Perl_stack_grow Perl_call_pv Perl_markstack_grow Perl_sv_free2 boot_Encode__Byte Perl_xs_handshake AdobeStandardEncoding_encoding MacArabic_encoding MacCentralEurRoman_encoding MacCroatian_encoding MacCyrillic_encoding MacFarsi_encoding MacGreek_encoding MacHebrew_encoding MacIcelandic_encoding MacRoman_encoding MacRomanian_encoding MacRumanian_encoding MacSami_encoding MacThai_encoding MacTurkish_encoding MacUkrainian_encoding cp1006_encoding cp1250_encoding cp1251_encoding cp1253_encoding cp1254_encoding cp1255_encoding cp1256_encoding cp1257_encoding cp1258_encoding cp424_encoding cp437_encoding cp737_encoding cp775_encoding cp850_encoding cp852_encoding cp855_encoding cp856_encoding cp857_encoding cp858_encoding cp860_encoding cp861_encoding cp862_encoding cp863_encoding cp864_encoding cp865_encoding cp866_encoding cp869_encoding cp874_encoding hp_roman8_encoding iso_8859_2_encoding iso_8859_3_encoding iso_8859_4_encoding iso_8859_5_encoding iso_8859_6_encoding iso_8859_7_encoding iso_8859_8_encoding iso_8859_9_encoding iso_8859_10_encoding iso_8859_11_encoding iso_8859_13_encoding iso_8859_14_encoding iso_8859_15_encoding iso_8859_16_encoding koi8_f_encoding koi8_r_encoding koi8_u_encoding nextstep_encoding viscii_encoding Perl_xs_boot_epilog libc.so.6 GLIBC_2.2.5                                                                                                  ui	                     Q                 Q                      Ȭ            y     Ь            G`                 @`                                   z                 Y`                  P`     @                 H            {     P            b`     `            [`                                   |                 k`                 d`                       ȭ            `}     Э            t`                 m`                                    ~                 `                  x`     @                  H            ~     P            `     `            `                                                   `                 `                       Ȯ            @     Ю            `                 `                  @                                   `                  `     @            @     H            `     P            `     `            `                                                     `                 `                       ȯ                 Я            `                 `                                     `                 a                  `     @                  H                  P            a     `            a                                                   #a                 a                 `	     Ȱ            @     а            3a                 (a                   
                                   Ca                  8a     @                 H                 P            Sa     `            Ha                 @                                  ba                 Xa                      ȱ            @     б            ja                 da                                                    ra                  la     @             '     H            `     P            za     `            ta                  0                                   a                 |a                 `<     Ȳ                 в            a                 a                  G                                  a                  a     @            Q     H                 P            a     `            a                 `\                                  a                 a                 @f     ȳ            @     г            a                 a                  l                                   a                  a     @            s     H                 P            a     `            a                  z                 `                 a                 a                 `     ȴ                  д            a                 a                  `                                  a                  a     @                 H            `     P            a     `            a                                                    a                 a                 @     ȵ                 е            a                 a                                                    a                  a     @            `     H            `     P            a     `            a                 @                                   b                 a                      ȶ                  ж            b                 b                                                     b                  b     @            @     H                 P            b     `            b                                                    'b                  b                       ȷ                 з            0b                 )b                  @                 `                 9b                  2b     @            @     H                  P            Bb     `            ;b                                                   Kb                 Db                       ȸ                 и            ]b                 Pb                                                    kb                  `b     @            `      H                 P            xb     `            pb                  	                                   b                 b                       ȹ            `     й            b                 b                                                    b                  b     @             *     H                 P            b     `            b                 @4                                  b                 b                 ;     Ⱥ                  к            b                 b                  C                                  b                  b     @            J     H                 P            b     `            b                 `R                 `                 c                  c                 \     Ȼ            @     л            c                 c                  `g                 `                 3c                   c     @            n     H                  P            Bc     `            8c                 v                                   fc                 Pc     ȼ            `                                                     L     (            y     @                  `                 h            y                 `                                  y                 ̔                 y     ؽ                                               y                        @            G     H            y     X            k     `            y     p            ڔ     x            y                 @                 }                 y                 }                 y     о            }     ؾ            y                 f                 y                  }                 y                 r                  y     0            
~     8            y     H            ~     P            y     `            }     h            y     x            q                 y                 #~                 y                 s                 y     ȿ                             q                                  !                                   q                      (                 0                 @            q     H                 X            ?     `                 p            ,q     x                             B                                  1q                                  <                                  6q                                  x                                   Ef                                                         0            5e     8                 H            4     P                 `            Kk     h                 x            :                                  k                                  -                                                                                                      g                                                                     e     (                 8            $     @                 P            +     X                 h            U     p                             +f                                  6                                  /e                                                                    =e                                  Ǒ                                   Eg                      (            0     0                 @                 H                 X                 `                 p            Qg     x                                                               [e                                  '                                  1                                  *                                   kf                                  9                       0            oe     8                 H            T     P                 `            =     h                 x            3                                  g                                                                    `                                                     s     (            z     @                  `            r     h            z                 `                 @                                                     c                 z                        @            i     H            z     X                 `            z     p            ߓ     x            z                                  z                 e                 z                 e                 z                 As                 z                 @                  p                 z                 q                  z     0            a     8            z     P                  `            c     h            z                 `                                  z                                  z                                   q                 z                        @            j}     H            z     `            @                                  z                 Fe                 z                 E                 z                                  q                                  {                                   ڊ                      (            ŏ     0                 @            
|     H                 X            d     `                 p                 x                             d                                  ]                                                                                                      e                                   ّ                                  ܅                       0            7d     8                 H            (w     P                 `            u     h                                                                                                                     @                      @            c     H            {     X            c     `            {     p            c     x            {                 c                 {                 9}                 {                 c                 {                 @                  r                 {                 c                  {     0            R}     8            {     H            Cs     P            {     `            d     h            {     x            Ms                 {                 e                 {                                   2d                 {                 c                 {                 c                 {                 c                 {                  c     (            {     8            c     @            {     P            c     X            {     h            c     p            {                 c                 {                 c                 {                 c                 {                                                   {                                    c     (            {     8            r     @            {     X                              o                 {                                  Ɣ                 {                                                    {                 c                  {     0            c     8            {     H            r     P            {     h                              d                 {                 d                 {                 Ks                 {                                  {                                   c                 {                        @            c     H            {     X            <d     `            {     p            c     x            {                 c                 {                 c                 {                 @                 q                                  4y                                   d                      (                 0                 @            ݏ     H                 X                 `                 p                 x                             @o                                                                    ~                                  *                                                                     m                                  o                       0            h     8                 H            ݆     P                 `            m     h                 x            Oo                                  p                                  @                                                        (            @     @                 X                             c                 |                 c                 |                 c                 |                 c                 |                 9}                 |                 c                  |                      @                 H            |     `            @                 2d                 |                 c                 |                 c                 |                 c                 |                 c                 |                 c                  |                 c                 |     (            c     0            |     @            c     H            |     X            c     `            |     p            c     x            |                                                   |                                  c                 |                 r                  |                      @            o     H            |     `            @                                  |                 c                 |                                  d                 |                                   |                      @            c     H            |     `            @                 c                 |                 <d                 |                 c                 |                 c                 |                 c                 |                                    q     (                  8            4y     @                  P            d     X                  h                 p                              ݏ                                                                      v                                   r                                   h                                   ц                                    p                       H                 `                 x            `                                  @                 c                 `}                 c                 `}                 c                 `}                 c                 `}                  9}     (            `}     @                 `            2d     h            `}     x            c                 `}                 c                 `}                 c                 `}                 c                 `}                 c                 `}                 c                 `}                 c                 `}                  c     (            `}     8            c     @            `}     P            c     X            `}     p            `                 d                 `}                 c                 `}                                  r                 `}                 r                  `}                 r                 `}     (            c     0            `}     H                 `            Ɣ     h            `}                 `                                  `}                 ύ                 `}                 r                 `}                                                    `}                                   `}     8                  `            c     h            `}     x            c                 `}                 c                 `}                 c                 `}                 c                 `}                 c                 `}                 c                 `}                 `                  q     (                  8            {     @                  P            d     X                  h            gd     p                                                                                                    m                                                     @                      @            c     H             ~     `            @                                   ~                                                    ~                                                     ~                 n                   ~     0            ِ     8             ~     H                 P             ~     `                 h             ~     x                              ~                                   C                  ~                                   ~                 k                  ~                                   ~     (                 @            }     H             ~     X            +e     `             ~     p            }     x             ~                 q                  ~                 q                  ~                 ~                  ~                 	~                  ~                 q                  ~                  ~                  ~                 q                   ~     0            q     8             ~     H            #~     P             ~     `            s     h             ~                 @                 *}                  ~                 c                  ~                 c                  ~                  d                  ~                  d                  ~                 Es                   ~     0            Ks     8             ~     H            e     P             ~     h                             q                                  D{                                  ߑ                                                                    |                                  an                       (            `     @                  `            c     h            ~                 `                 r                 ~                                  ~                 e                 ~                                  ~                                   }     (            ~     @                  `            *}     h            ~     x            c                 ~                 c                 ~                 S}                 ~                 Js                 ~                 Ns                 ~                 <d                 ~                 `                  q     (                  8            d     @                  P            ݊     X                  h            Yl     p                                                                 @                                                                                              @            ѐ     H                 `            @                 Is                                                                                                      ِ                                                    r                                                         0            Es     8                 P                  `            Z     h                             `                 r                                  Gs                                                    }                                  q                       0            ~     8                 H            	~     P                 `            q     h                 x            "~                                  s                                                    *}                                  c                                  c                                  c                                   r     (                 8            !d     @                 X                             q                                  d                                                                                                                                        d                                                         (            d     0                 @            K     H                 X                 `                 p                 x                                                                                                 d                                  F                                  D                                                                     j~                       0                 8                 H                 P                 h                             `                 s                 @                                  @                                                    @                 ܔ                  @     0                 8            @     H                 P            @     `            k     h            @     x                             @                                  @                 s                 @                                   Д                 @                 Ғ                  @                 g                 @     (            ֔     0            @     @            B     H            @     X            @     `            @     p            ڔ     x            @                 Δ                 @                 ؔ                 @                 i                 @                                                    @                 q                  @     0            q     8            @     H            j     P            @     `            r     h            @     x            r                 @                 f                 @                 q                 @                 q                 @                                  @                 s                 @                                    *}     (            @     8            
r     @            @     P            r     X            @     h            c     p            @                 @s                 @                 Es                 @                 Js                 @                 *d                 @                 Ps                 @                                     q     (                  8            d     @                  P            |     X                  h            d     p                              &                                   m                                   
|                                   -m                                   
|                                                     `     8                  `            
~     h                              `                                                    r                                                     *}                                          @            q     H            @     X            d     `            @     p            c     x            @                 2x                 @                 @                                                     e                 `                        @                 H            `     X                 `            `     p                 x            `                 א                 `                                  `                                  `                 @                  Ғ                 `                 K                  `     0            g     8            `     H                 P            `     `            F     h            `     x                             `                                  `                 ֔                 `                 ܓ                 `                 ѐ                 `                                    q     (            `     8            q     @            `     P            e     X            `     h            }     p            `                 q                 `                 k                 `                 ~                 `                 ~                 `                 q                 `                 }                  `                 }                 `     (            q     0            `     @            q     H            `     X            $~     `            `     x                              *}                 `                 c                 `                 d                 `                 d                 `                  $d                 `                       @            q     H            @     X            t     `            @     p                 x            @                 p                 @                                                                     k                                                                            @            }     H                  X            }     `                  p            	~     x                              ~                                   s                                   @                 *}                                                      q     (                  8            d     @                  h                             `                 '~                                  r                                                    
~                                         @            c     H                 X            -d     `                 x            @                 *}                                  
r                                  @s                                  Ps                                                    q     (                  8            d     @                  P                 X                  h            E     p                                                                 ӑ                                                                       @                      @            c     H            `     X            c     `            `     x            @                 d                 `                 r                 `                                   ~                 `                        @            Is     H            `     X            Ms     `            `     p            e     x            `                                  `                 }                 `                 @                 c                 `                                    *}     (            `     8            c     @            `     P            r     X            `     h            @s     p            `                 Es                 `                 $d                 `                 e                 `                 e                 `                                     q                                      d                          0             |     8                    H             d     P                    `                  h                    x             Z                                                                            `|                                      w                                                          
~                                          @            d     H                  X            e     `                  p            <d     x                              }                                   @                 *}                                   c                                   d                                                     q     (                  8            d     @                  P            d     X                  h            v     p                              k                                   k                                                                                                                           @                        @            q     H                 `            @                 
~                                  ~                                  (~                                                   K}                                  M                                        @            *}     H                 X            s     `                 p            d     x                             @                 q                                  uh                                                                    C                                   $d                 @                 s                  @     0            d     8            @     P                  `                 h            @     x            Β                 @                                  @                                  @                                  @                                  @                 ې                 @                 `                  Ғ     (            @     8            K     @            @     P            g     X            @     h            b     p            @                 F                 @                                  @                                  @                 ֔                 @                 	                 @                                   @                       @            q     H            @     X            q     `            @     p            e     x            @                 }                 @                 q                 @                 ~                 @                 r                 @                 ~                 @                  q                 @                 }                  @     0            }     8            @     H            q     P            @     `            $~     h            @                 @                 *}                 @                 c                 @                 r                 @                 d                 @      	            Ds     	            @     	            d      	            @     0	            c     8	            @     P	                 `	            q     h	            `	     x	            e     	            `	     	                 	                  	            	     	                 	                  	                  
                  
                 
                  0
            	     @
            2     H
                  X
                 `
                  p
                 x
                  
                 
                  
                 
                  
            @
     
            }     
                  
            +e                                    }                       (            q     0                  @            q     H                  X            ~     `                  p            	~     x                              q                                   ~                                   q                                   q                                   #~                                   
                  *}     (                  8            r     @                  P            r     X                  h            d     p                              d                                   Gs                                   Ls                                   e                                          
            q     
             
     
            z      
             
     0
            Ȍ     8
             
     H
                 P
             
     `
            sn     h
             
     x
                 
             
     
                  
             
     
            Ɖ     
             
     
            ˇ     
             
     
            $d     
                 
                                               d                      (            e     0                 H            
     `                 h                 x                                                                                Ғ                                                                                                                                                              (            `     @            I     H                 X            g     `                 p            >     x                             G                                                                    @                 q                                  +e                                   q                      (            q     0                 @            e     H                 X            }     `                 p            q     x                             q                                  k                                  r                                  r                                  ~                                   q                                  q                       0            q     8                 H            }     P                 `            }     h                 x            q                                  q                                  $~                                  s                                                    *}                                  c                       0            r     8                 H            d     P                 `            d     h                 x            d                                  c                                                    q                                  f                                                         8            `     P                  `            s     h                             `                 d                                                   q                                                     c     (                 8            c     @                 P            d     X                 p                              e                                                   ~                                  }                                                    j     (                 8            R     @                 P            m     X                 p                              j                                  Ĕ                                                                                                                                        '                                        @            q     H            @     X            lv     `            @     p            H     x            @                 s                 @                 _                 @                 7d                 @                                  @                 py                 @                  %                 @     (                 @                 X                              2d                 @                                  r                 @                 r                 @                 r                 @                 c                 @                  c     (            @     @                 h                                               `                 
~                 @                                                    @                 r                  @     8                  `            c     h            @                 `                 q                                  ݊                                  )                                  |                                   d                                  c                       0            2x     8                 P                 h                                                                                `                 r                                  r                                   k                      (            Es     0                 @            ps     H                 `                                                               q                                  e                                  in                                  e                                  9k                                   *d                      (            e     0                 @            }     H                 X            u     `                 x                             +e                                  d                                  k                                  <d                                   r                                  l                       0            e     8                 H            d     P                 `            d     h                 x            q                                  Ge                                                   c                                  5}                                                    c     (                 @                  `            x     h                 x                                              c                                                                    ֈ                                  `                  s                                  c                       0            z     8                 H                 P                 `                 h                 x            c                                  d                                   d                                                    q                                  l|                                                            (             |     0                  @             ,|     H                  X                  `                  p             M     x                               I                                    n                                    u                                    o                                    u                        !            "o     !                 !            u      !                 0!            =o     8!                 H!            u     P!                 `!            po     h!                 x!            u     !                 !            o     !                 !                 !                 !            py     !                 !            d     !                 "             %      "            $     8"            #     P"            `#     h"            "     "             "     "            r     "            `     "            r     "            `     "            k     "            `     "            r     "            `      #                 #            `     #            ps      #            `     8#            "     `#                 h#            `     #            `#     #            +e     #            `     #            d     #            `     #            k     #            `     #            <d     #            `      $            r     $            `     $            l      $            `     0$            e     8$            `     H$            d     P$            `     `$            d     h$            `     x$            q     $            `     $            Ge     $            `     $            #     $                 $            `     $            $      %            s     %            `      %             %     @%            
~     H%            `     X%            q     `%            `     p%            q     x%            `     %            q     %            `     %            q     %            `     %            @%     %            q     %            `     %            q      &            `     &            q     &            `     (&            q     0&            `     @&            *}     H&            `     `&            %     &            s     &            `     &            s     &            `     &            q     &            `     &            $~     &            `     &            &      '            q     '             '     '            h      '             '     0'            n     8'             '     H'                 P'             '     `'            sy     h'             '     x'            d     '             '     '                 '             '     '            d     '             '     '            py     '             '     '            d     '             '     (            `,      (             ,     8(            +     P(            `+     h(             +     (            )     (            )     (            (     (             (     (            r     (                  (            r      )                  )            k     )                  ()            r     0)                  @)                 H)                  X)            ps     `)                  x)            (     )                 )                  )            )     )            +e     )                  )            d      *                  *            k     *                  (*            <d     0*                  @*            r     H*                  X*            l     `*                  p*            e     x*                  *            d     *                  *            d     *                  *            q     *                  *            Ge     *                  *            )      +            c     +                  +            q      +                  8+             +     `+            q     h+                  x+            q     +                  +                 +                  +            `+     +                 +                  +            }     +                  +            g     +                  ,            +      ,            c     (,                  @,             ,     `,            s     h,                  ,            `,     ,            q     ,                  ,                 ,                  ,            }     ,                  ,            ,      -            .d     -                  -            q      -                  0-            q     8-                  H-            q     P-                  `-            }     h-                  x-            c     -                  -                 -                  -             -     -            c     -                  -            -      .            }     .                  .            c      .                  0.            c     8.                  H.            c     P.                  `.            c     h.                  x.            c     .                  .            }     .                  .            }     .                  .            }     .                  .            }     .                  .            c     .                  /             .      /                 (/                  8/                 @/                  P/                 X/                  h/            "     p/                  /            q     /                  /            $~     /                  /            c     /                  /            .     /                  /            c     /                   0             /      0            q     (0             0     80            t     @0             0     P0            K     X0             0     h0            t     p0             0     0            `     0             0     0            G     0             0     0            n     0             0     0            "     0             0     0            W     0             0     0            J      1             0     1                 1             0     (1            d     01             0     @1                 H1             0     X1            ye     `1             0     p1            yy     x1             0     1            d     1             0     1            sy     1             0     1            d     1             0     1                 1             0     1            d     1             0      2            py     2             0     2            d      2             0     H2             7     `2            4     x2            2     2            @2     2            q     2                 2            k     2                 2            B     2                 2            x     2                  3            q     3                 3            .d      3                 03            s     83                 H3            q     P3                 `3            s     h3                 x3            q     3                 3            g     3                 3            q     3                 3            q     3                 3            q     3                 3            q     3                 4            i     4                  4            i     (4                 84                 @4                 P4            G}     X4                 p4            2     4                 4                 4            Kk     4                 4                 4                 4            in     4                 4            q     4                 4            c      5                 5            }     5                 (5             d     05                 @5            e     H5                 X5            d     `5                 p5            9k     x5                 5            	d     5                 5            }     5                 5            d     5                 5            u     5                 5            u     5                  6            h     6                 6            5i      6                 06            m     86                 H6            e     P6                 `6            q     h6                 x6            e     6                 6            q     6                 6            e     6                 6            q     6                 6            }     6                 6            q     6                 7            4      7            q     (7                 @7             7     h7            9     7            `9     7            @8     7            7     7            `7     7            c     7                 7            ps      8                 8            7     @8            c     H8                 X8            c     `8                 p8            c     x8                 8            c     8                 8            c     8                 8            c     8                 8            c     8                 8            c     8                  9            c     9                 9            c      9                 09            c     89                 P9            @8     `9            c     h9                 9            `9     9            q     9                 9            c     9                 9            9      :            c     :                 :            q      :                 0:                 8:                 P:             :     `:            d     h:                 x:            e     :                 :            <d     :                 :            `:     :            c     :                 :            :      ;            c     ;                  ;             ;     @;            r     H;                 X;            r     `;                 x;            @;     ;            c     ;                 ;                 ;                 ;            k     ;                 ;            ͓     ;                  <            5d     <                 <            c      <                 0<            Г     8<                 P<            ;     `<            q     h<            `<     x<                 <            `<     <            =q     <            `<     <                 <            `<     <            Ʉ     <            `<     <            u     <            `<     <            W     <            `<     =            U     =            `<      =            yy     (=            `<     8=            t     @=            `<     P=                 X=            `<     h=                 p=            `<     =            ޒ     =            `<     =            o     =            `<     =            d     =            `<     =            r     =            `<     =                 =            `<     =            k      >            `<     >                 >            `<     (>                 0>            `<     @>            h     H>            `<     X>            k     `>            `<     p>                 x>            `<     >            z     >            `<     >            y     >            `<     >            ͏     >            `<     >            g     >            `<     >            l     >            `<      ?                 ?            `<     ?            Ol      ?            `<     0?            C     8?            `<     P?            `<     h?            C     ?            C     ?             C     ?            B     ?            `B     ?            @A     ?             A     @            @@     (@            `?     @@            r     H@                 X@            r     `@                 p@            k     x@                 @            r     @                 @                 @                 @            ps     @                 @            @@      A                 A                  A             A     @A            +e     HA                 XA            d     `A                 pA            k     xA                 A            <d     A                 A            r     A                 A            l     A                 A            e     A                 A            d     A                  B            d     B                 B            q      B                 0B            Ge     8B                 PB            @A     `B            c     hB                 xB            q     B                 B            `B     B            q     B                 B            q     B                 B                 B                 C            B      C                 (C                 8C            }     @C                 PC            g     XC                 pC             C     C            s     C                 C            C     C            c     C                 C            C      D            q     D                 D                  D                 0D            }     8D                 PD             D     `D            .d     hD                 xD            q     D                 D            q     D                 D            q     D                 D            }     D                 D            c     D                 D                 D                 E            `D      E            c     (E                 @E             E     `E            c     hE                 xE            c     E                 E            <     E                 E                 E                 E            c     E                 E            c     E                 E                 E                 F            }     F                  F            c     (F                 8F            }     @F                 PF            }     XF                 hF            }     pF                 F            q     F                 F            }     F                 F            `E     F            s     F                 F            ӓ      G                 G            ֓     G                 (G            Rh     0G                 @G                 HG                 XG                 `G                 xG            F     G            q     G            G     G            {     G            G     G            E     G            G     G            ݁     G            G      H            `     H            G     H            S      H            G     0H            n     8H            G     HH            "     PH            G     `H            W     hH            G     xH            J     H            G     H                 H            G     H            d     H            G     H                 H            G     H            ye     H            G     H            yy     H            G     I            d     I            G      I            sy     (I            G     8I            d     @I            G     PI                 XI            G     hI            d     pI            G     I            py     I            G     I            d     I            G     I             N     I            M     I            M     J             M     (J            L     @J            K     XJ            `K     pJ            J     J            I     J            r     J                 J            r     J                 J            k     J                 J            r     J                  K                 K                 K            ps      K                 8K            J     `K                 hK                 K            `K     K            +e     K                 K            d     K                 K            k     K                 K            <d     K                  L            r     L                 L            l      L                 0L            e     8L                 HL            d     PL                 `L            d     hL                 xL            q     L                 L            Ge     L                 L            K     L            c     L                 L            q     L                 L            L      M            q     (M                 8M            q     @M                 PM                 XM                 pM             M     M                 M                 M            }     M                 M            g     M                 M            M     M            c     M                  N            M      N            s     (N                 @N             N     `N            *}     hN                 N            `N     N            q     N                 N                 N                 N            }     N                 N            N      O            .d     O                 O            q      O                 0O            q     8O                 HO            q     PO                 `O            }     hO                 xO            c     O                 O                 O                 O             O     O            c     O                 O            O      P            c     P                 P            x      P                 0P            c     8P                 HP            c     PP                 `P            c     hP                 xP            c     P                 P            q     P                 P            c     P                 P             P     P                 P                 P            c      Q                 Q                 Q                 (Q            "     0Q                 @Q            q     HQ                 XQ            $~     `Q                 pQ            ,     xQ                 Q            c     Q                 Q            P     Q            q     Q            Q     Q                 Q            Q     Q            K     Q            Q     R            t     R            Q      R            `     (R            Q     8R            t     @R            Q     PR            n     XR            Q     hR            "     pR            Q     R            W     R            Q     R            J     R            Q     R                 R            Q     R            d     R            Q     R                 R            Q     R            ye      S            Q     S            yy     S            Q     (S            d     0S            Q     @S            sy     HS            Q     XS            d     `S            Q     pS                 xS            Q     S            d     S            Q     S            py     S            Q     S            d     S            Q     S            @X      T             X     T            W     0T            @W     HT            V     `T            U     xT            U     T            T     T            S     T            r     T                 T            r     T                 T            k     T                 U            r     U                  U                 (U                 8U            ps     @U                 XU            T     U                 U                 U            U     U            +e     U                 U            d     U                 U            k     U                 V            <d     V                  V            r     (V                 8V            l     @V                 PV            e     XV                 hV            d     pV                 V            d     V                 V            q     V                 V            Ge     V                 V            U     V            c     V                 V            q      W                 W            V     @W            q     HW                 XW            q     `W                 pW                 xW                 W            @W     W                 W                 W            }     W                 W            g     W                 W            W      X            c     X                  X             X     @X            s     HX                 `X            @X     X            q     X                 X                 X                 X            }     X                 X            X     X            .d     X                 X            q      Y                 Y            q     Y                 (Y            q     0Y                 @Y            }     HY                 XY            c     `Y                 pY                 xY                 Y            X     Y            c     Y                 Y            Y     Y            c     Y                 Y            }      Z                 Z            c     Z                 (Z            c     0Z                 @Z            c     HZ                 XZ            c     `Z                 pZ            c     xZ                 Z            c     Z                 Z            c     Z                 Z                 Z                 Z            }     Z                 Z            c     Z                  [            c     [                 [            }      [                 0[            }     8[                 H[            A     P[                 h[            Y     [                 [                 [            c     [                 [            Rh     [                 [            "     [                 [            q     [                 [            $~      \                 \            -     \                 (\            c     0\                 H\            [     `\            q     h\            `\     x\            ~     \            `\     \            K     \            `\     \            {     \            `\     \            `     \            `\     \            t     \            `\     \            n     \            `\     ]            "     ]            `\      ]            W     (]            `\     8]            J     @]            `\     P]                 X]            `\     h]            d     p]            `\     ]                 ]            `\     ]            ye     ]            `\     ]            yy     ]            `\     ]            d     ]            `\     ]            sy     ]            `\     ]            d      ^            `\     ^                 ^            `\     (^            d     0^            `\     @^            py     H^            `\     X^            d     `^            `\     ^            b     ^            b     ^             b     ^            a     ^            a      _            ``     _             `     0_            `_     H_            ^     `_            r     h_            @     x_            r     _            @     _            k     _            @     _            r     _            @     _                 _            @     _            ps     _            @     _            `_      `                 (`            @     @`             `     ``            +e     h`            @     x`            d     `            @     `            k     `            @     `            <d     `            @     `            r     `            @     `            l     `            @     `            e     `            @     a            d     a            @      a            d     (a            @     8a            q     @a            @     Pa            Ge     Xa            @     pa            ``     a            q     a            @     a            a     a            q     a            @     a            q     a            @     a                 a            @     b            a      b                 (b            @     8b            }     @b            @     Pb            g     Xb            @     pb             b     b            c     b            @     b            b     b            s     b            @     b            b      c            q     c            @     c                  c            @     0c            }     8c            @     Pc             c     `c            .d     hc            @     xc            q     c            @     c            q     c            @     c            q     c            @     c            }     c            @     c            c     c            @     c                 c            @     d            `c      d                 (d            @     8d            n     @d            @     Pd                 Xd            @     hd            K     pd            @     d                 d            @     d            c     d            @     d            d     d            @     d            }     d            @     d            }     d            @     d            F      e            @     e            q     e            @     (e            }     0e            @     @e            c     He            @     `e             d     e                 e            @     e                 e            @     e            "     e            @     e            q     e            @     e            $~     e            @     e            ,      f            @     f            c     f            @     0f            e     @f            q     Hf            @f     Xf            ~     `f            @f     pf            K     xf            @f     f                 f            @f     f            n     f            @f     f            "     f            @f     f            W     f            @f     f            J     f            @f      g                 g            @f     g            d      g            @f     0g                 8g            @f     Hg            ye     Pg            @f     `g            yy     hg            @f     xg            d     g            @f     g            sy     g            @f     g            d     g            @f     g                 g            @f     g            d     g            @f     g            py     g            @f     h            d     h            @f     (h            k     @h            k     Xh            j     ph            `i     h            h     h             h     h            r     h                  h            r     h                  h            k     h                  i            Es     i                   i            ps     (i                  @i            h     `i                 hi                  xi            q     i                  i            e     i                  i            in     i                  i            e     i                  i            9k     i                  i            *d     i                  j            e     j                   j            }     (j                  8j            u     @j                  Xj            `i     j            +e     j                  j            d     j                  j            k     j                  j            <d     j                  j            r     j                  j            l      k                  k            e     k                  (k            d     0k                  @k            d     Hk                  Xk            q     `k                  pk            Ge     xk                  k            j     k            q     k                  k            k     k            q     k                   l            k      l            c     (l                  @l             l     `l            }     hl                  l            `l     l                 l                  l            l     l            q     l            l     l            t      m            l     m            n     m            l     (m                 0m            l     @m            o     Hm            l     Xm                 `m            l     pm            "o     xm            l     m                 m            l     m            =o     m            l     m                 m            l     m            ݊     m            l     m            %e     m            l      n            po     n            l     n                  n            l     0n            o     8n            l     Hn            $     Pn            l     `n            E     hn            l     xn                 n            l     n            py     n            l     n            d     n            l     n            p     n            o     n             o     o            n      o            r     (o                 8o            r     @o                 Po            k     Xo                 ho            Es     po                 o            ps     o                 o             o     o                 o                 o            q     o                 o            e     o                 p            in     p                  p            e     (p                 8p            9k     @p                 Pp            *d     Xp                 hp            e     pp                 p            }     p                 p            u     p                 p            o     p            +e     p                 p            d      q                 q            k     q                 (q            <d     0q                 @q            r     Hq                 Xq            l     `q                 pq            e     xq                 q            d     q                 q            d     q                 q            q     q                 q            Ge     q                 q            p      r            H}     r                  r             r     @r            r     Hr                 Xr                 `r                 xr            @r     r            }     r                 r            ۍ     r                 r            I     r                 r            }     r                  s            }     s                  s            r     @s            2     Hs                 `s            @s     s            q     s            s     s            t     s            s     s            n     s            s     s                 s            s     s            o     s            s     s                  t            s     t            "o     t            s     (t                 0t            s     @t            =o     Ht            s     Xt            ;     `t            s     pt            %e     xt            s     t            po     t            s     t                 t            s     t            o     t            s     t            $     t            s     t            S     t            s      u                 u            s     u            py      u            s     0u            d     8u            s     hu            x     u            w     u            v     u            u     u            `u     u            r     u            `     u            r      v            `     v            k     v            `     (v            Es     0v            `     @v            ps     Hv            `     `v            u     v                 v            `     v            q     v            `     v            e     v            `     v            in     v            `     v            e     v            `     v            9k      w            `     w            *d     w            `     (w            e     0w            `     @w            }     Hw            `     Xw            u     `w            `     xw            v     w            +e     w            `     w            d     w            `     w            k     w            `     w            <d     w            `      x            r     x            `     x            l      x            `     0x            e     8x            `     Hx            d     Px            `     `x            d     hx            `     xx            q     x            `     x            Ge     x            `     x            w     x            q     x            `     x            x      y            *}     y            `      y             y     @y            c     Hy            `     Xy            q     `y            `     xy            @y     y            s     y            `     y                 y            `     y                 y            `     y            -     y            `     z            y      z            q     (z             z     8z                 @z             z     Pz            d     Xz             z     hz            9e     pz             z     z            t     z             z     z            t     z             z     z            n     z             z     z            d     z             z     z            o     z             z     z                  {             z     {            "o     {             z     ({            =o     0{             z     @{            d     H{             z     X{            po     `{             z     p{            d     x{             z     {            o     {             z     {            d     {             z     {            @     {             z     {            E     {             z     {                 {             z      |            py     |             z     |            d      |             z     H|                 `|            ~     x|            `}     |            |     |            @|     |            r     |                  |            r     |                  |            k     |                  }            Es     }                   }            ps     (}                  @}            |     `}                 h}                  x}            q     }                  }            e     }                  }            in     }                  }            e     }                  }            9k     }                  }            *d     }                  ~            e     ~                   ~            }     (~                  8~            u     @~                  X~            `}     ~            +e     ~                  ~            d     ~                  ~            k     ~                  ~            <d     ~                  ~            r     ~                  ~            l                                    e                       (            d     0                  @            d     H                  X            q     `                  p            Ge     x                              ~                 g                                                                                                                                                  0                 @            Í     H                  X                 `                  x            @                 s                                   u                       Ѐ            s     ؀                              	d                                    q                                   d                        8                 `            q     h            `     x            v                 `                 n                 `                 e                 `                 o     ȁ            `     ؁            Z                 `                 "o                 `                 ^                 `                  =o     (            `     8            ?     @            `     P            po     X            `     h            V     p            `                 o                 `                 %                 `                                  `     Ȃ                 Ђ            `                 py                 `                 d                  `     (            @     @                  X                 p                              r                                  r                                  k                      ȃ            Es     Ѓ                             ps                                                          (                 8            q     @                 P            e     X                 h            in     p                             e                                  9k                                  *d                      Ȅ            e     Є                             }                                  u                                         @            +e     H                 X            d     `                 p            k     x                             <d                                  r                                  l                      Ѕ            e     ؅                             d                                   d                                  q                       0            Ge     8                 P            @     `            q     h                 x            (                                  q                                  q                      Ȇ            `                                                   ޔ                                   4}                      (                 0                 @                 H                 X                 `                 p                 x                                                                                [     ȇ                 ؇            ݐ                                                                    r                                   o     (                 @                 `            Js     h                 x            c                                  2d                                  c                                  q     Ȉ                 ؈            q                                  }                                  }                                   q     (                 8            }     @                 P            x     X                 h            }     p                             c                                  c                                  c                      ȉ            c     Љ                             }                                  }                                   }                      (            c     0                 @            }     H                 `            `                 s                                  u                                                        Ȋ                 Њ                             q                                  g                                   q                      (            d     0                 H                 `            q     h            `     x            Lu                 `                 n                 `                                  `                 o     ȋ            `     ؋            z                 `                 "o                 `                                  `                  =o     (            `     8            +     @            `     P            po     X            `     h            &     p            `                 o                 `                 \                 `                 py                 `     Ȍ            d     Ќ            `                 @                                          0            `     H                 `            r     h            `     x            r                 `                 k                 `                 Es                 `                 ps     ȍ            `                 `                                   `                 q                  `     0            e     8            `     H            in     P            `     `            e     h            `     x            9k                 `                 *d                 `                 e                 `                 }     Ȏ            `     ؎            u                 `                                    +e     (            `     8            d     @            `     P            k     X            `     h            <d     p            `                 r                 `                 l                 `                 e                 `     ȏ            d     Џ            `                 d                 `                 q                  `                 Ge                 `     0                  @            q     H            `     `            @                 c                 `                                  q     Ȑ            `                                   }                 `                        @                 H            `     `            @                 q                                  t                                  n                      ȑ                 Б                             o                                                                     "o                      (                 0                 @            =o     H                 X                 `                 p            po     x                                                               o                                  $                      В            E     ؒ                                                                py                                  d                       H                  `                 x                                                               @                 r                                   r                                    k                       (            r     0                  @                 H                  X            ps     `                  x                                                                q                       Д            e     ؔ                              in                                    e                                   9k                        0            *d     8                  H            e     P                  `            }     h                  x            u                                                    +e     ȕ                  ؕ            d                                   k                                   <d                                    r     (                  8            l     @                  P            e     X                  h            d     p                              d                                   q                                   Ge                       Ж                             q                                                      g     (                  8            {     @                  X                                                                                                    4}                       ȗ            r     З                              ʔ                                   Ԕ                                    Ҕ                       (                 0                  H                 `            }     h                  x            ƒ                                                                                                         ʒ     Ș                  ؘ                                               }                                   Ȕ                                    q     (                  8            ~     @                  X            `                 }                                   c                                   c                       ș            }     Й                              c                                   x                                    }                       (            c     0                  @            c     H                  X            }     `                  p            c     x                                               s                                   ʓ                       К                 ؚ                              c                                                                       "                        0            '     8                  H            s     P                  `            -     h                                               q                                  y                      Л            |     ؛                                                                n                                  %                       0            o     8                 H                 P                 `            "o     h                 x            *                                  =o                                  g                                  po     Ȝ                 ؜                                              
|                                                                     
|     (                 8                 @                 P            &     X                 h            d     p                             sy                                                                    py                      ȝ            d     Н                             `                                         0                 H            `     `                 x                             r                                  r                      О            k     ؞                             r                                                                     ps                       8                 `                 h                             `                 +e                                  d                      П            k     ؟                             <d                                   r                                  l                       0            e     8                 H            d     P                 `            d     h                 x            q                                  Ge                                                   q     Ƞ                 ؠ                                                                     (                 @                  `            s     h                             `                 '                                                   }                                  ~                                   }                      (            }     0                 @            *}     H                 X                 `                 p            B}     x                                              q                                                   s                                  "                                   $~                      0                 @            q     H            @     X            u     `            @     p            n     x            @                 H                 @                                  @                                  @     У            yy     أ            @                 d                 @                  sy                 @                 d                  @     0                 8            @     H            d     P            @     `            py     h            @     x            d                 @                                        ؤ            `                                                          8            @     P                 h                             r                                  r                                  k                      ȥ            r     Х                                                               ps                                        @                 H                 `            @                 +e                                  d                                  k                      Ȧ            <d     Ц                             r                                  l                                   e                      (            d     0                 @            d     H                 X            q     `                 p            Ge     x                                              c                                  q                      ا                              q                                  q                       0                 8                 P                  `                 h                 x            }                                  g                                  `                 c     Ȩ                                               s                                         @            q     H                 X                 `                 p            }     x                             @                 .d                                  q                      Щ            q     ة                             q                                   }                                  c                       0                 8                 P                 `            c     h                             `                 }                                  c                      Ъ            c     ت                             c                                   c                                  }                       0            }     8                 H            }     P                 `            }     h                 x            }                                  c                                                        ȫ                 ث            c                                                                    "                                   q     (                 8            $~     @                 P            ,     X                 h            c     p                                              q                                                         Ь            K     ج                             t                                   `                                  t                       0            n     8                 H            "     P                 `            W     h                 x            J                                                                    d                                       ȭ                 ح            ye                                  yy                                  d                                   sy     (                 8            d     @                 P                 X                 h            d     p                             py                                  d                      Ȯ                                                q                 `                        @            +     H            `     `            @                 <d                 `                 x                 `                                                   `                                   `                                  `     (            ~     0            `     H                 `            q     h            `     x            d                 `                  q                 `                 d                 `                 q     Ȱ            `     ذ                             `                 "q                 `                 ڒ                 `                  q     (            `     8            d     @            `     P            /q     X            `     h            ֒     p            `                 3q                 `                 d                 `                                  `     ȱ            d     б            `                 q                 `                 d                  `                 -q                 `     (            d     0            `     @            q     H            `     X            d     `            `     p            +q     x            `                 d                 `                 ~                 `                                  `     в                 ز            `                                  `                  -                 `                 d                  `     0                 8            `     H                 P            `     `            2     h            `     x                             `                 d                 `                 E                 `                      ȳ            `     س            xq                 `                 t                 `                                  `                  q     (            `     8            d     @            `     P                 X            `     h            9     p            `                 d                 `                 uq                 `                 ދ                 `     ȴ                 д            `                 Տ                 `                 Վ                  `                 d                 `     (            ߎ     0            `     @            d     H            `     X            sq     `            `     p            ye     x            `                 jq                 `                 d                 `                 Gq                 `     е            d     ص            `                 d                 `                                        8            `     P                  `            c     h                              `                                                                     r                                                                       ē                       (                 0                  @            c     H                  X            c     `                  p                 x                                               @                                   r                       з            m     ط                              q                                                     c     (                  8            c     @                  X                              c                                                                                             и                                                                c                                         @            C     H                  X            k     `                  x            @                 }                                   }                       й            }     ع                              5i                                    q                                    ~                        0            	~     8                  H            ~     P                  `            }     h                  x            q                                   q                                    ~                                   s     Ⱥ                                                J}                                          @            q     H            @     X            ݊     `            @     p                 x            @                 s                 @                 &                 @                 v                 @     л            5     ػ            @                                  @                  l                 @                 |                  @     0            v     8            @     H            gd     P            @     `                 h            @     x            l                 @                 j                 @                 Q                 @                 e     ȼ            @                                                    @     0                 @            c     H                  `            @                 2d                                                    r     Ƚ                  ؽ                                               ē                                                                       c     (                  8            c     @                  P                 X                  p                             c                                   s                                   c                       о                                                                ܔ                                                           (                 0                  @            k     H                  X                 `                  p                 x                              s                                                    Д     ȿ                  ؿ            Ғ                                   g                                   ֔                                    B     (                  8            @     @                  P            ڔ     X                  h            Δ     p                              ؔ                                   i                                                                                       q                                    q                       (            j     0                  @            r     H                  X            r     `                  p            f     x                              q                                   q                                                                      s                                                     c                                   
r                        0                 8                  H            6     P                  `            Ps     h                                                q                                  ݊                                                                    &                                   5                                                         0            
     8                 H            |     P                 `            gd     h                 x                                                                                d                                  d                                  m                                                         8            `     P                  `            c     h                             `                 2d                                                                                     r                                                         (            ē     0                 @                 H                 X            c     `                 p            c     x                                                                                r                                  s                                                    c     (                 8            c     @                 P            c     X                 h            c     p                             c                                  c                                  c                                  c                                                     ˋ                                  c                       0            c     8                 P                  `            c     h                 x            -d                                  <d                                  a                                  `                 c                                                     c     (                 @                  `                 h                             `                 q                                  c                                  .d                                  ~                                   }                                  q                       0            q     8                 H            q     P                 `            s     h                                              c                                  
r                                  @s                                  Ps                                                    q     (                  8            ݊     @                  P                 X                  h                 p                              s                                   &                                   v                                   5                                                                                                                                 (            |     0                  @                 H                  X            gd     `                  p                 x                                                                 l                                   ͑                                   k                                   ӑ                                                           (                  @                 X                 p                              c                                                   c                                  2d                                                    '~     (                 8            r     @                 P                 X                 h            ē     p                                                               c                                  c                                                                                       }                                  
~                       0            q     8                 P                  `            }     h                 x            }                                  `                 c                                  c                                                    c     (                 @                  `            c     h                 x            -d                                  `                 r                                  
r                                  @s                                  Ps                      (                 @            q     H            @     X            ݊     `            @     p                 x            @                 s                 @                 &                 @                 v                 @                 5                 @                                  @                  |                 @                 v                  @     0            gd     8            @     H                 P            @     `            d     h            @     x            N                 @                 fz                 @                                  @                                  @                 ӑ                 @                 @     (                  @                 X                 p                              c                                                   2d                                                    r                                                         0            ē     8                 H                 P                 `            c     h                 x            c                                                                                      c                                  c                                                    c     (                 @                  `                 h                 x                                              c                                  `                 k                                                                                      }     (                 8            }     @                 P            	~     X                 h            ~     p                             s                                                    J}                                                    q                                   ݊                        0                 8                  H            s     P                  `            &     h                  x            v                                   5                                   e                                                                      l                                   |                                   v                                    gd     (                  8            e     @                  P                 X                  h            l     p                              j                                                    @                                                     c                                         @            2d     H                 `            @                 Ǔ                                                                    ē                                                                    c                                  c                                                         0                 @            ~     H                 `            @                                                   Ms                                  e                                                                    }                                                     c     (                 @                  `            c     h                 x            r                                  @s                                  Es                                  Js                                  e                                  e                                  `                  q     (                  8            ݊     @                  P                 X                  h            s     p                              &                                   5                                                                      |                                   gd                                                                                              (            d     0                  @                 H                  X            |     `                  p            w     x                                                                 `                                                     *d                 `                 c                  `     8                  `            c     h            `                 `                 r                 `                                  `                 ē                 `                                  `                  c                 `                 c                  `     0                 8            `     P                 `                 h            `                 `                 ~                 `                                  `                                  `                                                    `                                   `     8                  `            c     h            `     x            c                 `                 r                 `                 c                 `                 @s                 `                 Es                 `                 Js                 `                 e                 `     (            `     @            q     H            @     X            h     `            @     p                 x            @                 v                 @                 &                 @                 h                 @                                  @                 %                 @                  |                 @                 gd                  @     0            ,v     8            @     H                 P            @     `                 h            @     x                             @                 o                 @                                  `                                                     c     (                  @                  `            2d     h                              `                 r                                                                      ē                                                                       c                                   c                        0                 8                  P                 `            c     h                  x                                               d                                   e                                   `                                                                                                               (            Ғ     0                  @            ~     H                  X                 `                  p                 x                                                                                  O                                   g                                   >                                   G                                         (                  @                 `            q     h                  x            +e                                   q                                   q                                   e                                   }                                   q                                   q                                    k     (                  8            r     @                  P            r     X                  h            ~     p                              q                                   q                                   q                                   }                                   }                                   q                                    q                       (            $~     0                  @            s     H                  `            `                 c                                   c                                   r                                   @s                                   Es                                   Is                                    e                       0                 @            q     H            @     X            ݊     `            @     p                 x            @                 &                 @                 5                 @                 e                 @                                  @                 E                 @                  |                 @                 gd                  @     0            e     8            @     H                 P            @     `            Ui     h            @                                                   `                                                                       q     (                 8            q     @                 P            ~     X                 h            c     p                             x                                  .d                                  q                                  q                                  q                                  ~                                   }                      (            }     0                 @            }     H                 X            q     `                 p            #~     x                                                                                 g                                  q                                                                     d                                  $d                       0            c     8                 H            *d     P                 `            e     h                 x            e                                  e                                  <d                                  d                                  e                                  +e                                  Ge                                   Kk     (                 8            in     @                 P            q     X                 h            e     p                             }                                  u                                  u                                  h                                  5i                                  m                                   q                      (            q     0                 H                 `            (~     h                             `                 q                                  9k                                  }                                  q                                   q                                  }                       0            q     8                 H            q     P                 `            s     h                 x            s                                                   d                                  !d                                  -d                                  e                                   r     (                 8            q     @                 X                             K}                                                    d                                  d                                  	d                                                    *}     (                 8            d     @                 X                              q                                  v                                  	                                  g                                  q                                                     q     (                  @                  h                                               `                 q                                                    q                                         H                 `            @     x                                                                @                 q                                                     Ge     (                 8            d     @                 P            Gs     X                 p                              !d                                  Kk                                  c                                  $d                                  e                                  d                                   -d                      0                 @            c     H                 `            @                 }                                                                                                      ٓ                                  q                                  q                                        @            *d     H                 `            @                 e                                                                                     !                                                    +e     (                 @                  `            }     h                 x            r                                  l                                  `                 ~                                  r                                                         (                 8                 @                 P                 X                 h            "     p                             4                                  k                                                    m                                  d                                   Ő                      (                 0                 @            P     H                 X                 `                 p            r     x                                              q                                  z                                  ,                                  <{                                   |                                                         0            gd     8                 H                 P                 `            ]     h                 x                                              W                                  d                                  |y                                                                    o                                  u                                   Z     (                 8            j     @                 P            vy     X                 h            s     p                                                               t                                  )                                                                    R                                  ye                                                         (                 0                 @                 H                 X            d     `                 p            f     x                                                                                                 +                                  l                                                                                           8            `     P                  `            }     h                             `                 k                                                   r                                  r                                   G}                      (            7}     0                 @            c     H                 X            c     `                 x                             `                                                     
~                                  ~                       8                  `                 h                 x            r                                  `                 c                                  s                                  2d                                   $~                                     c     (                  @                  `             q     h             `      x             t                  `                   )                  `                                     `                   
|                  `                                     `                   |                  `                  |                 `                   |     (            `      8            d     @            `      P            c     X            `      h                 p            `                  `                                                    q                                         (            `     @                  X                 p                                                                                  q                                                      Ge     (                  8            d     @                  X                              !d                                   Kk                                   e                                                    c                                                      k     (                  @                  `            }     h                  x                                                                                  c                                   q                                   q                                   `                  q     (                  @                  `            Gs     h                              `                 $~                                   q                                                     +e                                   q                        8                  `                 h                  x            }                                                                                                         l                                                                      `                       (                  8                 @                  P            q     X                  p                                                                                                    6                                                    c                                   m                                    p                       (            Ő     0                  @                 H                  X            c     `                  p            c     x                               d                                   x                                   in                                   r                                         	            q     	             	     	            w      	             	     0	            z     8	             	     H	            |     P	             	     `	                 h	             	     x	            gd     	             	     	                 	             	     	            ]     	             	     	                 	             	     	            o     	             	     	                 	             	     
            vy     
             	      
            s     (
             	     8
                 @
             	     P
            t     X
             	     h
            )     p
             	     
                 
             	     
            R     
             	     
            ye     
             	     
                 
             	     
            j     
             	     
            ڊ                   	                                   	     (            f     0             	     @                 H             	     X                 `             	     p            q     x             	                                                   q                 `                       (                 @                 X            @     p            
                  
                                                    q                 `      
                  
            Ge     (
            `     8
            d     @
            `     P
            Gs     X
            `     p
             
     
            !d     
            `     
            Kk     
            `     
            c     
            `     
            $d     
            `     
            e     
            `     
            d                  `                 -d                 `     0            
     @            c     H            `     X            e     `            `     x            @                 k                 `                                  }                 `                                   `                                  `     (            ٓ     0            `     @            q     H            `     X            q     `            `     p            r     x            `                                  *d                 `                                                   `                 !                  `                      @            +e     H            `     `            @                 }                 `                                  `                 r                 `                 l                 `                                   ې                 `                 q                  `     8                  `                 h            `     x                             `                                  `                                  `                 "                 `                 *                 `                 4                 `                 <                 `                  k     (            `     @            `     `            m     h            `     x            Ő                 `                                  `                 P                 `                                  `                 r                 `                 `                  q     (                  8            z     @                  P            ,     X                  h            <{     p                              |                                                                      gd                                                                      ]                                                                       W                       (            d     0                  @            |y     H                  X                 `                  p            o     x                              u                                   Z                                   t                                   T                                                                       vy                                   s                        0                 8                  H            t     P                  `            )     h                  x                                               R                                   ye                                                                      j                                   ڊ                                   d                                         (                  8            "     @                  P                 X                  h            d     p                              f                                                                                                                                                                                 q     (                 @                  h            @                                                                                      `                                   `                  q     (                 @                  `            Ge     h                 x            d                                  Gs                                  `                 !d                                  Kk                                  c                                  $d                                   e     (                 8            d     @                 P            -d     X                 p                             c                                                   k                                                    k                                         @            }     H                 X                 `                 p                 x                             ٓ                                  q                                  q                                  r                                  @                  *d                                         @            e     H                 `            @                                                   !                                                                                                        +e     (                 @                  `            }     h                 x            l                                  `                 ې                                  q                                                         (                 8                 @                 P                 X                 h                 p                             "                                  *                                  4                                  <                                  k                                                      m     (                 8            d     @                 P            Ő     X                 h                 p                             P                                                                    r                                                    q                                  z                                   ,                      (            <{     0                 @            |     H                 X                 `                 p            gd     x                                                               ]                                  
                                  W                                  d                                    |y                                                            0             o     8                  H             u     P                  `             Z     h                  x             z                                    vy                                    s                                                                        t                                    )                       !                 !                  !            R     (!                 8!            ye     @!                 P!                 X!                 h!            j     p!                 !            ڊ     !                 !            :     !                 !                 !                 !            d     !                 !            f     !                 !                  "                 "                 "                 ("                 0"                 H"            "     `"            "     x"            @"     "            r     "                 "            "     "            q     "                  #            "     (#             &     @#            %     X#            %     p#            @%     #            $     #             $     #            #     #             #     #            q     #                  $            #      $            Ge     ($                 8$            d     @$                 P$            Gs     X$                 p$             $     $            !d     $                 $            Kk     $                 $            c     $                 $            $d     $                 $            e     $                 $            d      %                 %            -d     %                 0%            $     @%            c     H%                 `%            @%     %            k     %                 %            %     %            k     %                 %            %      &            }     &                 &                  &                 0&                 8&                 H&            ٓ     P&                 `&            q     h&                 x&            q     &                 &            r     &                 &             &     &            *d     &                 &            &      '            e     '                  '             '     @'                 H'                 X'            !     `'                 x'            @'     '            +e     '                 '            '     '            }     '                 '            l      (                 (            '     @(            q     H(                 `(            @(     (                 (                 (                 (                 (                 (                 (            "     (                 (            4     (                 (            k      )                 )            (     @)            m     H)                 X)            d     `)                 p)            Ő     x)                 )                 )                 )            P     )                 )                 )                 )            r     )                 )            @)      *            q     *             *     *            z      *             *     0*            ,     8*             *     H*            <{     P*             *     `*            |     h*             *     x*                 *             *     *            gd     *             *     *                 *             *     *            ]     *             *     *                 *             *     *            W     *             *     +            d     +             *      +            |y     (+             *     8+                 @+             *     P+            o     X+             *     h+            u     p+             *     +            Z     +             *     +            j     +             *     +            vy     +             *     +            s     +             *     +                 +             *     +            t      ,             *     ,            )     ,             *     (,                 0,             *     @,            R     H,             *     X,            ye     `,             *     p,                 x,             *     ,            j     ,             *     ,            ڊ     ,             *     ,            d     ,             *     ,            f     ,             *     ,                 ,             *      -                 -             *     -                  -             *     H-            -     `-            @-     -            q     -                 -            -     -            0     -            `0     -             0     .            /     (.             /     @.            .     X.            .     p.            -     .            q     .                 .            .     .            Ge     .                 .            d     .                 .            Gs     .                 /            .      /            !d     (/                 8/            Kk     @/                 P/            c     X/                 h/            $d     p/                 /            e     /                 /            d     /                 /            -d     /                 /             /     /            c     /                  0            /      0            k     (0                 @0             0     `0            k     h0                 0            `0     0            }     0                 0                 0                 0                 0                 0            c     0                  1            q     1                 1            q      1                 81            0     `1            *d     h1                 1            `1     1            e     1                 1            1     1                 1                 1            !      2                 2            1     @2            +e     H2                 `2            @2     2            }     2                 2            l     2                 2            2     2            q     2                  3            2      3                 (3                 83                 @3                 X3             3     3            m     3                 3            d     3                 3            Ő     3                 3                 3                 3            P     3                 3                  4                 4            r     4                 04            3     @4            q     H4            @4     X4            z     `4            @4     p4            |     x4            @4     4                 4            @4     4            gd     4            @4     4                 4            @4     4            ]     4            @4     4                 4            @4      5            W     5            @4     5            d      5            @4     05            |y     85            @4     H5                 P5            @4     `5            o     h5            @4     x5            u     5            @4     5            Z     5            @4     5            j     5            @4     5            vy     5            @4     5            s     5            @4     5                 5            @4     6            t     6            @4      6            )     (6            @4     86                 @6            @4     P6            R     X6            @4     h6            ye     p6            @4     6                 6            @4     6            j     6            @4     6            ڊ     6            @4     6                 6            @4     6            f     6            @4     6                  7            @4     7                 7            @4     (7                 07            @4     H7            @8     `7            7     x7            7     7            @7     7            q     7                  7            7     7            q     7                  7            in      8                  8            7     @8            q     H8                  `8            @8     8             9     8            8     8            8     8            c     8                   9            8      9            }     (9                  89            q     @9                  P9                  X9                  h9            q     p9                  9             9     9            
~     9                  9            9     9            /     9                  9                  :                  :            k     :                  0:            9     @:            2d     H:                  X:            c     `:                  p:            c     x:                  :            c     :                  :            c     :                  :            c     :                  :            #     :                  :            *     :                   ;            4     ;                  ;            <      ;                  8;            @:     `;            }     h;                  ;            `;     ;            q     ;            ;     ;            =q     ;            ;     ;            Wq     ;            ;     ;            sq     ;            ;      <            uq     <            ;     <            q      <            ;     0<            e     8<            ;     H<            r     P<            ;     `<            z     h<            ;     x<            7q     <            ;     <            N     <            ;     <                 <            ;     <                 <            ;     <            T     <            ;     <                 <            ;     =                 =            ;      =            /     (=            ;     8=            R     @=            ;     P=            k     X=            ;     h=            _     p=            ;     =                 =            ;     =            7     =            ;     =             ?     =            >     =            >     >            @>     (>            =     @>            Ge     H>                 X>            d     `>                 p>            Gs     x>                 >            @>     >            c     >                 >            >     >            c     >                  ?            >      ?            h     (?                 8?            5i     @?                 P?            q     X?                 h?            q     p?                 ?            c     ?                 ?            c     ?                 ?            q     ?                 ?            c     ?                 ?             ?      @            r     @                  @             @     @@                 H@                 X@                 `@                 p@            l     x@                 @                 @                 @                 @                 @            @@     @            u     @                  A            @      A            2d     (A                 8A            c     @A                 PA            c     XA                 hA            c     pA                 A            "     A                 A            c     A                 A            c     A                 A            *     A                 A            r     A                 A            c      B                 B            9     B                 (B            c     0B                 @B            H}     HB                 `B             A     B            }     B                 B            c     B                 B            U     B                 B            6     B                 B                 B                 B            d      C                 C            c     C                 (C            in     0C                 @C            c     HC                 `C            B     C            q     C            C     C                 C            C     C            gd     C            C     C            ge     C            C     C            |     C            C     C            e      D            C     D            5     D            C     (D            7     0D            C     @D            ݊     HD            C     XD            z     `D            C     pD            ,     xD            C     D            
     D            C     D            ]     D            C     D                 D            C     D            |y     D            C     D            l     D            C      E            yy     E            C     E            y      E            C     0E            )     8E            C     HE                 PE            C     `E                 hE            C     xE            x     E            C     E            @F     E             F     E            E      F            r     F                  F             F     @F            c     HF                 `F            @F     F            s     F                 F            q     F                 F            Es     F                 F            F     F            q     F                 F            q      G                 G            $~     G                 (G            ps     0G                 @G            q     HG                 XG            q     `G                 pG            c     xG                 G            F     G            
~     G                 G            c     G                 G            q     G                 G            q     G                 H            G      H            d     (H                 8H            e     @H                 PH            <d     XH                 hH            }     pH                 H             H     H            2d     H                 H            c     H                 H            c     H                 H            c     H                  I            c     I                 I            c      I                 0I            #     8I                 HI            c     PI                 `I            *     hI                 xI            0     I                 I            c     I                 I            6     I                 I            D}     I                 I            <     I                 I            H      J            c     (J                 8J            c     @J                 PJ            c     XJ                 pJ             J     J            q     J            J     J            <q     J            J     J            Cq     J            J     J            Gq     J            J     J            Rq     J            J     J            Vq      K            J     K            wq     K            J     (K            q     0K            J     @K                 HK            J     XK            )     `K            J     pK            ډ     xK            J     K            7q     K            J     K                 K            J     K            =q     K            J     K            k     K            J     K            Dq     K            J      L            w     L            J     L            Qq      L            J     0L            k     8L            J     HL            Sq     PL            J     `L            k     hL            J     xL            c     L            J     L                 L            J     L            rq     L            J     L                 L            J     L            q     L            J     L                 L            J     (M             O     @M            N     XM            N     pM             N     M            M     M             M     M            Ge     M            `     M            d     M            `     M            Gs     M            `     N            M      N            Kk     (N            `     8N            e     @N            `     PN            d     XN            `     pN             N     N            r     N            `     N            c     N            `     N            N     N            s     N            `      O            N      O            }     (O            `     8O            q     @O            `     PO                 XO            `     hO            c     pO            `     O            c     O            `     O            q     O            `     O             O     O                 O            `      P            O      P                 (P            `     8P                 @P            `     PP            /     XP            `     pP             P     P            w     P            `     P                 P            `     P            P     P            +e     P            `      Q            P      Q            q     (Q            `     @Q             Q     `Q            }     hQ            `     xQ            c     Q            `     Q            c     Q            `     Q            c     Q            `     Q                 Q            `     Q            c     Q            `     Q            K     Q            `     R            Q     R            `      R            in     (R            `     @R            `Q     `R            q     hR            `R     xR            h     R            `R     R            ,     R            `R     R                 R            `R     R            |     R            `R     R            
     R            `R     R            gd     R            `R     S            N     S            `R      S            ]     (S            `R     8S            R     @S            `R     PS            W     XS            `R     hS            d     pS            `R     S            |y     S            `R     S            a     S            `R     S            vy     S            `R     S            s     S            `R     S                 S            `R     S            t      T            `R     T            )     T            `R     (T            #     0T            `R     @T            R     HT            `R     XT            ye     `T            `R     pT            &     xT            `R     T            ]     T            `R     T                 T            `R     T            |     T            `R     T            ݊     T            `R     U            @U      U             U     @U            k     HU            @     `U            @U     U            `X     U             X     U            W     U            W     U            V      V            V     V            @V     0V            U     @V            q     HV            @     `V            @V     V            Ge     V            @     V            d     V            @     V            Gs     V            @     V            V     V            !d     V            @     V            d      W            @     W            c     W            @     (W            $d     0W            @     @W            e     HW            @     XW            d     `W            @     pW            -d     xW            @     W            V     W            c     W            @     W            W     W            k     W            @      X            W      X            k     (X            @     @X             X     `X                 hX            @     xX                 X            @     X                 X            @     X            c     X            @     X            c     X            @     X            q     X            @     X            q     X            @     Y            r     Y            @     (Y            `X     @Y            q     HY            @     `Y            @Y     Y            e     Y            @     Y            Y     Y                 Y            @     Y            s     Y            @     Y            q     Y            @     Z            Y      Z            +e     (Z            @     @Z             Z     `Z            }     hZ            @     xZ                 Z            @     Z            ې     Z            @     Z            `Z     Z            M     Z            @     Z            g     Z            @     Z            k     Z            @     [            q     [            @     ([            Z     @[            ،     H[            @     X[                 `[            @     p[                 x[            @     [            8     [            @     [            4     [            @     [            @[     [            m     [            @     [            ː      \            @     \                 \            @     (\            P     0\            @     @\                 H\            @     X\            r     `\            @     x\            [     \            q     \            \     \            z     \            \     \            ,     \            \     \            <{     \            \      ]            |     ]            \     ]                  ]            \     0]            gd     8]            \     H]                 P]            \     `]            ]     h]            \     x]            .     ]            \     ]            W     ]            \     ]            d     ]            \     ]            x     ]            \     ]            d     ]            \     ]            o     ]            \     ^            e     ^            \      ^            Z     (^            \     8^                 @^            \     P^            vy     X^            \     h^            s     p^            \     ^            yy     ^            \     ^            U     ^            \     ^            )     ^            \     ^                 ^            \     ^            U     ^            \     ^            ye      _            \     _                 _            \     (_            d     0_            \     @_            ڊ     H_            \     X_                 `_            \     p_            4d     x_            \     _            d     _            \     _            f     _            \     _                 _            \     _            a      `            a     `             a     0`            `     H`            `     ``            _     `            q     `            `     `            `     `            d     `            `     `            Gs     `            `     `            `      a            !d     (a            `     8a            Kk     @a            `     Pa            $d     Xa            `     ha            e     pa            `     a             a     a            c     a            `     a            a     a            }     a            `     a                  b            `     b                 b            `     (b            c     0b            `     @b            c     Hb            `     Xb            q     `b            `     pb            r     xb            `     b            a     b            s     b            `     b            b     b            }     b            `     b                  c            `     c                 c            `     (c            u     0c            `     @c                 Hc            `     Xc            q     `c            `     pc            Ջ     xc            `     c                 c            `     c                 c            `     c            b     c            q     c            `     c            r      d            `     d            v     d            `     (d            r     0d            `     @d                 Hd            `     Xd                 `d            `     pd                 xd            `     d            Ds     d            `     d                 d            `     d                 d            `     d            c      e            q     e            `     e            2d      e            `     0e            c     8e            `     He            }     Pe            `     `e                 he            `     xe            q     e            `     e                 e            `     e            c     e            `     e            c     e            `     e            c     e            `     e            c     e            `     f            c     f            `      f            6     (f            `     8f            c     @f            `     Pf            }     Xf            `     pf             e     f            }     f            `     f            c     f            `     f            Ő     f            `     f                 f            `     f            c     f            `     f            c      g            `     g            c     g            `     (g            in     0g            `     Hg            f     `g            q     hg            `g     xg            *~     g            `g     g            ,     g            `g     g                 g            `g     g            |     g            `g     g                 g            `g     g            gd     g            `g     h                 h            `g      h            ]     (h            `g     8h            -     @h            `g     Ph            |y     Xh            `g     hh                 ph            `g     h            o     h            `g     h            Ċ     h            `g     h            vy     h            `g     h                 h            `g     h            ~     h            `g     h            t      i            `g     i            )     i            `g     (i                 0i            `g     @i            R     Hi            `g     Xi            ye     `i            `g     pi                 xi            `g     i            5     i            `g     i                 i            `g     i            =     i            `g     i                 i            `g     i            m     i            `g     j            j      j            `j     8j             j     `j            r     hj                  j            `j     j            c     j                  j            j     j            s     j                  j            q      k                  k            j     @k            q     Hk                  Xk            q     `k                  pk            $~     xk                  k            ps     k                  k            q     k                  k            q     k                  k            c     k                  k            @k      l            
~     l                  l            ʎ      l                  0l            q     8l                  Hl            q     Pl                  hl             l     l            d     l                  l            e     l                  l            <d     l                  l            }     l                  l            l      m            2d     m                  m            c      m                  0m            c     8m                  Hm            c     Pm                  `m            c     hm                  xm            c     m                  m            #     m                  m            c     m                  m            *     m                  m            0     m                  m            c     m                  n            6     n                   n            D}     (n                  8n            <     @n                  Xn             m     n            c     n                  n            c     n                  n            c     n                  n            n     n            q     n            n     n            <q      o            n     o            Cq     o            n     (o            Gq     0o            n     @o            Rq     Ho            n     Xo            Vq     `o            n     po            wq     xo            n     o            q     o            n     o                 o            n     o            )     o            n     o            ډ     o            n     o            7q     o            n      p                 p            n     p            =q      p            n     0p            k     8p            n     Hp            Dq     Pp            n     `p                 hp            n     xp            Qq     p            n     p            k     p            n     p            Sq     p            n     p            k     p            n     p            c     p            n     p                 p            n     q            rq     q            n      q                 (q            n     8q            q     @q            n     Pq                 Xq            n     q            q     q            q     q            r     q                  q            q     r             s      r            r     8r            `r     Pr             r     `r            c     hr                  xr            d     r                  r            `r     r            c     r                  r            r      s            i     s                  s                  s                  0s            ߓ     8s                  Hs                 Ps                  `s            e     hs                  xs            e     s                  s            As     s                  s             s     s            p     s                  s            Ge     s                  s            a     s                  t            s      t            c     (t                  @t             t     `t                 ht                  xt                 t                  t            `t     t            q     t                  t            t      u            x     u                  u            q      u                  0u            s     8u                  Hu            q     Pu                  `u            q     hu                  u             u     u            7q     u                  u                 u                  u                 u                  u                 u                   v            Dq     v                  v            Ge      v                  0v            d     8v                  Hv            J     Pv                  `v            N     hv                  xv            <d     v                  v            u     v            q     v            v     v            
|     v            v     v            ?q     v            v     w            |     w            v      w            xq     (w            v     8w            d     @w            v     Pw            ڊ     Xw            v     hw            ŏ     pw            v     w            >q     w            v     w            
|     w            v     w            d     w            v     w                 w            v     w            ]     w            v     w            d      x            v     x            d     x            v     (x                 0x            v     @x            e     Hx            v     Xx            ّ     `x            v     px            	e     xx            v     x            wq     x            v     x                 x            v     x            ?     x            v     x            ~     x            v     x            7d     x            v      y            e     y            v     y            d      y            v     0y            Vw     8y            v     Hy            We     Py            v     `y            e     hy            v     xy            vw     y            v     y            v     y            q     y            y     y            q     y            y     y            q     y            y     z            ,q     z            y      z            1q     (z            y     8z            6q     @z            y     Xz                 pz            @     z                  z                 z                 z            y     z            q     z            z      {                 {            @     0{                  H{                 `{            `     x{                  {                 {                 {            z     {            q     {            {      |            @     |                  0|                 H|                  `|                 x|                 |            {     |            q     |            |     |                 |            @     |                 }                  }                 8}            |     `}            q     h}            `}     }            `     }                  }                 }            `     }            @     }            `}      ~            q     (~             ~     @~                 X~            @     p~                 ~                  ~                 ~                 ~             ~     ~            q     ~            ~                  `                       0                 H                  `            ~                 q                                                                                      `                                        @            q     H            @     `                  x                                                                 `     ؀            @                  q                                          8                  P                  `            q     h            `                                                          ȁ            @                                  `                  q     (                  @                 X            @     p                                                                q     Ȃ                                              @                       (            `     @                 `            q     h            `                                                    @     ȃ                                               `                  q     (                  @                 X            @     p                                                q                                  @     ؄                                                                      @            q     H            @     `                 x            @                                   `                       ؅            @                  q                                          8            
     P            @
     h            	                 	                                   q     Ȇ                                                                @     (            `     @            
     X                             q                                                         Ї                                                                       0                 @            q     H            @     `            `     x            `                                   @                 q     Ȉ                                               `                       (            `     @                 `            q     h            `                 &                 %                 @%     ȉ             "                 `                  q                                     /     8             .     P            -     h             -                 ,                  (                                   q     Ȋ                 ؊            =q                                  ;                 @;     (             ;     @            :     X            `:     p             :                 `7                 @2                                  q                                   F                 `E     0             E     H            `D     `             D     x            `?                                  q                                  P     ،             P                 O                  O                  N     8            `N     P            I     h                             q                                  [                 Y     Ѝ            Y                 X                  X                 S     0                 @            q     H            @     `            e     x             d                 `c                  c                 ^     ؎            @                  q                                    l     8            `l     P             l     h             h                                   q                                  @s     ؏            r                 @r                  r                  n     8                 `            q     h            `                 y                 @y                  y     Ȑ            `u                 `                  q                                         8            @     P                 h            @|                                   q                                       ؑ            `                                                    `     8                  P                 `            q     h            `                 @                                        Ȓ                                              `                  q     (                  @                 X                 p            `                                  @                                   q                                                         0                 H                 `                 x                             q                                       ؔ                             `                                   @     8                 P                 `            q     h            `                                                   @     ȕ                             `                  q                                          8                 P            @     h                                                                     Ȗ                                                 q                                          8                 P                 h                                                                                 q     ȗ                                                               `     (                  @                 X            `     p                                                                       И                             q                                                    `     0                  H                 `            `     x                                                                 q     ș                                                                     (            `     @                  X                 p                                               q                                  `     ؚ                                               @                       8                 `            q     h            `                 `                                        ț            `                                  `                  q     (                  @                 X            `     p                                              `                      М                              q                                                          0                 H                 `                             q                                                         Н                             `                                         0                 H            @     `            @     x            `                                  q                                       ؞                                                                      (                  8            @q     @                  X                 p                                               `                       П                             `                                          0                 H                  `            q     h            `                 `                 `                       Ƞ                             @                                       (                  @                 X            `                 q                                                          С                             `                                         0                 H            @     `                  x            `                                                   q     Ȣ                             @)                 (                 @(     (            '     @            '     X            @'     p             '                 &                  #                 @"     У                             q                                   3                  3     0            2     H            2     `            @2     x            1                 1                 `1                 -     ؤ            @-                                   s                                    `;     8            @:     P            9     h            9                 8                 @7                                   q     ȥ                             B                  A                 @     (            @@     @             @     X            =     p                             r                                   J                 H     Ц             H                 G                  F                 F     0            E     H                 `            q     h            `                 `Q                  Q                 P     ȧ            P                  P                 O                  M     (            `     @            q     H            @     `            [     x            @[                 Z                 `Z                  Z     ب            Y                 Y                 @Y                  U     8             U     P            @     `            q     h            `                 f                  e                 c     ȩ            b                 b                 _                 `                  r     (                  @            n     X             m     p            l                  l                 @k                 j     Ъ             j                                    r                                    u     8             u     P            t     h            `t                  t                 s                  r     ȫ            q                       h            h             O                   5                              ȭ        #           Э                   ح        7                   (                   H                   )                                                          2                   !                   $                    =           (        >           0        "           8        P           @        @           H        &           P                   X                   `        -           h                   p        B           x        A                   R                   E                   9                   6                                      J                   .                   ?                   K           Ȯ                   Ю        *           خ        +                                      4                   C                   L                                       /                   M                   :                               (        Q           0                   8        D           @        3           H                   P        ;           X        I           `        %           h        <           p        0           x                            '                   N                   F                                      8                                                                            1           ȯ        G                                                                                                            (                   0        	           8        
           @                   H                   P        
           X                   `                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HH^ HtH         5_ %_ @ %_ h    %_ h   %_ h   %_ h   %_ h   %_ h   %_ h   %_ h   p%_ h   `%_ h	   P%z_ h
   @%r_ h   0%j_ h    %^ f        H=Y_ HR_ H9tH\ Ht	        H=)_ H5"_ H)HH?HHHtH-^ HtfD      =^  u+UH="^  HtH=^ Yd^ ]     w    AW   AVAUIH5  ATUSHHL'LHIHHHLHH>M @  IIE HEHCpHHCpH;Cx  LH+SHHC L)H   Il$Mt$Me E1HM|   HC AH)H~SLLHHFHUHHHT$HT$HEIcMd Mt,HC HAH)HHH   HFH땐HH5
     HMtAVvKAVH[]A\A]A^A_D  LL   HID  HX HLH[]A\A]A^A_G    UL  H1SH
  HH  HH5Z H߉H5Z HH5DZ HH5Y HH5Z HH5W[ HH5Z HH5[ HH5Z HH5{Y H{H5Z HlH5Z H]H5^Z HNH57Z H?H5XY H0H59Z H!H5[ HH5[Y HH5DY HH55Z HH5>Y HH5X HH5Z HH5Z HH5
Y HH5Z HH5Z H|H5X HmH5FX H^H5Y HOH5Y H@H5IX H1H5ZY H"H5X HH5Y HH5X HH5W HH57Y HH5X HH5X HH5W HH5CY HH5X HH5W H}H5.Y HnH5GY H_H5Y HPH5)X HAH5jW H2H5KX H#H5X HH5W HH5W HH5W HH5W HH5X HH5V HH5X HH5\W HH5X HH5V H~H5X HoH5W H`H5V HQHH[] HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Encode::XS Encode::define_encoding 2.04 v5.36.0 Byte.c          viscii ?        nextstep ? koi8-u ? koi8-r ? koi8-f ?   iso-8859-16 ?   iso-8859-15 ?   iso-8859-14 ?   iso-8859-13 ?   iso-8859-11 ?   iso-8859-10 ?   iso-8859-9 ?    iso-8859-8 ?    iso-8859-7 ?    iso-8859-6 ?    iso-8859-5 ?    iso-8859-4 ?    iso-8859-3 ?    iso-8859-2 ?    hp-roman8 ? cp874 ? cp869 ? cp866 ? cp865 ? cp864 ? cp863 ? cp862 ? cp861 ? cp860 ? cp858 ? cp857 ? cp856 ? cp855 ? cp852 ? cp850 ? cp775 ? cp737 ? cp437 ? cp424 o cp1258 ? cp1257 ? cp1256 ? cp1255 ? cp1254 ? cp1253 ? cp1251 ? cp1250 ? cp1006 ?    MacUkrainian ?  MacTurkish ?    MacThai ?       MacSami ?       MacRumanian ?   MacRomanian ?   MacRoman ?      MacIcelandic ?  MacHebrew ?     MacGreek ?      MacFarsi ?      MacCyrillic ?   MacCroatian ?   MacCentralEurRoman ?    MacArabic ?             AdobeStandardEncoding ?                         กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู⁠​–—฿เแโใไๅๆ็่้๊๋์ํ™๏๐๑๒๓๔๕๖๗๘๙ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖ×ØÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ ĄĸŖ¤ĨĻ§¨ŠĒĢŦ­Ž¯°ą˛ŗ´ĩļˇ¸šēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖ×ØŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙ Ą˘Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙ﺎﺏﺑﭖﭘﺓﺕﺗﭦﭨﺙﺛﺝﺟﭺﭼﺡﺣﺥﺧﺩﮄﺫﺭﮌﺯﮊﺱﺳﺵﺷﺹﺻﺽﺿﻁﻅﻉﻊﻋﻌﻍﻎﻏﻐﻑﻓﻕﻗﻙﻛﮒﮔﻝﻟﻠﻡﻣﮞﻥﻧﺅﻭﮦﮨﮩﮪﺀﺉﺊﺋﻱﻲﻳﮰﮮﹼﹽ ЁЂЃЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяśťžź ˇ˘Ł¤Ą¦§¨©Ş«¬­®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖ×ØÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖ×ØÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüưں ،¢£¤¥¦§¨©ھ«¬­®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûü¥Š§š©ª«¬­®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ¦§Ø©Ŗ«¬­®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙ЂЃЁЄЅІЇЈЉЊЋЌҐЎЏюабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ 	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ 7-./%
<=2&?'@Z{[lP}M]\Nk`Kaz^L~no|໰myOС 	

 !"#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_abcdefghijklmnopqrstuvwxyz{|}~ 	

%,0123456789;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ`abcdefghijklmnopqrstuvwxyz~ 	

&@ABCDEFGHIJKLMNOPQRSTUVWXYZ\^_`abcdefghijklmnopqrstuvwxyz~¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸ ĄĒĢĪĨĶ§ĻĐŠŦŽ­ŪŊ°ąēģīĩķ·ļđšŧžÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñÑªº¿®¬½¼¡«»ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞğ¿®¬½¼¡«»ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘę¬źČş«»ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«» ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ ۰۱۲۳۴۵۶۷۸۹،؛­؟±¼½¾àáâãäåçèéêëìÆíªîïðñŁØŒºòóôõöæùúûıüýłøœßþÿ')*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦ÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ­─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ﺀﺁﺃﺅﻊﺋﺍﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź Ħ˘£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóôöõúùûüÝ°Č£§ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüÝ°¢£§ ĄąŁ ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝÞµ×÷©¡¢£─│┌┐└┘├┤┬┴┼▀▄█▌▐░‘’“”•–—°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡЁёяабвгдежзийклмнопрстуфхцчшщъыьэюั็ิีึื่้๊๋์ᇈ闘ǎԐѥ噞ᅠƄФÄĀāÉĄÖÜáąČäčĆćéŹźĎíďĒēĖóėôöõúĚěüØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£ÙÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£ØÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥ÓßÔŃńňŠšŔÚŕŰýÝţ´­˝˛ˇ˘§÷¸°¨˙űŘřζηθικλμνξοπρσςτ΄­±υφχ§ψ΅°¨ωϋΰώאבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥่้๊๋์่้๊๋์ޔѻ׼ۡ¢£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ёắằặấầẩậẽẹếềểễệốồổỗỠšŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇֳאבגדהוזחטיךכלםמןנסעףפץצקרשתÀ§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯ÎÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸ÊæˇΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»ـفقكلمنهوىيًٌٍَُِّْپٹچەڤگڈڑءآأؤإئابةتثجحخدذرزسشصضطظعغ쭧諶ࠢ묦ءﮯ߾рстуфхцчшщъыьэюяЁёЄєЇїЎў°ڀﻓﻗﻛﻟﻣﻧﻫﻭﻯﻳﺽﻌﻎﻍﻡﹽÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖ╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡»®«·¤ ђѓёєѕіїјљњћќґўџ∙√▒─│┼┤┬├┴┐┌└┘ 	

 !"#$%&(ާݖֿﻥﻩﻬﻰﻲﻐﻕﻵﻶﻝﻙﻱ■Ä ÇÉÑÖÜáàâäں«çéèêëíÄ¹²É³ÖÜ΅àâä΄¨çéèêë£¬¿¹ˋ´ˆ˜¯˘˙¨²˚¸³˝˛ˇÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâÓßÔÒõÕµþÞÚÛÙýÝ¯´­±ωάέήϊίόύϋώΆΈΉΊΌΎΏ±¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡÓáíóúñÑªº¿Ò¬½¼¡«» !"#$()*+,	
01345689:;>t╢╣╤╥╦╧╨╩╪╫╬䄤燧ǃ눨ϾϾѮЯҭ۱׵ÒÚÛÙıƷʒǮǯǤǥǦǧǨǩÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇÓßŌŃõÕµńĶķĻļņĒŅñòóôġö÷ĝùúûüŭŝ˙Š§š©Ș«Ź­źŻ°±ČłŽŻ°ħ²³´µĥ·¸ışğĵ½ЯрРсСтТуУжЖвВьЬёђѓєѕіїјљњћќ§ўџіµґЈЄєЇїЉљЊњјЅ¬˼̾ͺɸȾ̵Ց­ыЫзЗшШэЭщЩчЧ§ֻּֽ־ֿ׀ׁׂ׃װױײ׳״ABCDEFGHIQRSTUVWXYbcdefghiqṖẁṗẃṠỳẄẅṡÇüéâÂà¶çêëèïî')(*+,-./0123456789:;<=>?ÄĊĈÇÈÉÊËÌÍÎÏäċĉçèéêëìíîïñó»ôö÷úùûüŽčđŋšŧžæø¿¡¬ΓΔΘΛΞΠß®©ΣΪ§αßΓπΣσµτΦΘΩδộờởịỰỨỪỬ–—“”‘’שׁשׂӴܤ妧̀܄ͅ¾¶§÷¸°¨·¹³²ÂÊÁËÈÍÎÏÌÓÔłĻļĽľĹĺŅņŃ¬⁄€‹›ﬁﬂ‡ ΅Ά£¤¥¦§¨©¤ðÐÊËÈıÍÎÏ¤đĐĎËďŇÍÎě¤лЛмМнНоОп×ÚÛÙìÿ¯´­±ŽąčęėįšųūžƒáíóúÁÍÓÚ¿אבגדהוזחט¢٠١٢٣٤٥٦٧٨٩æ£¥·©§¶¼½¾¦©®¬½¼Ł«»עףפץצקרש¦–―“”‘’„…†‡€‰ᅠƄ졌¦§¨©ͺ«¬­ªºΩæø¿¡¬ªºΩăș¿¡¬ªºΩžø¿¡¬ÆØĐŊȞȟŠŦøùúûüýŷÿŸĞğİıŞşĤ§¨İŞĞĴ­̀ނ窵ߊ_ʯڧ髬Կ„ ÀÃÕŒœĐ¤ÐðÞþý·Ƞ㫾儀ꚨ ňŐÕőŌ ΥΧΆΈœ ЋћЌќѕ ִֵֶַָ¤ºªÊËÈ¬½¼¡«¤¬½¼¾«»Þþ·µ¶¾ְֱֲֹֻֿݫެϴạỷừử•‚„”≥≤⌠⌡ﺎﺏﺕﺙ%{ABCDEFGHI}JKLMNOPQR¼½ªº«ăş¿¡¬ŒچژڈگƯÀÁÂÃưàáâãЊЌЋЏђ~stuvwxyzẂḋỲỏọụ–†‡‚„‰∂∑∏≤≥∆═║╒וֹוּ…ﺝﺡﺥﺱﺵﺹJj¥ƒ§¤¦¬÷×¯¨´×°²·÷°·Α±°Ę£§°Ґ£§¶ß®©¶ß®Š¶І®©ÁÂÀ©ÁÂĚŞĄČĘĖģĮįĪōŔŕŘřŖŗŠŚŤŽŹΉΊΪΌφ±½¼ЎўЏџхХиИϲĿ`:#@'="ᅠלֹ.<(+|&؍쏟¤ٻ¨Ь콾¢å£Ċċ¨ˇ¸­®Ÿ·¦¶·¬¦»±ÿÌÍĨìíĩôö¦ùúũ㡢㡱㥹Ć«ČǤ۴Τ«»ΪΫ÷ํḂḃḞḟṀṁẳẵẴẪợỮỤỲữẫỹỵ‌‍‎‏…‰€„€₯√ⁿ√№∩≡≈∆◊ﺁﺍﻷﻸﻻﻼ!$*);,%_>?}]{[|ָᅠꀒ䝞񥵤獵بߵЀӷҽ ­¢¥¤µ¥µ¦Ì¯˛´¨Æ»ãÃĂăĂŞĂȘę¨ĠġīĶĮŠńŇŢţŢŮŲŪŽØȚțφεЂђЃѓПяйЙкКԠרײַ،­؟¢ژےޅް
`'͍ܡ०𰲳ůǨḊṪṫẀẢảẲẺẻỉớỡủứựỴỶỸ‗₤₧₪₫Ω∞∫≠⌐❊ﺂﺄ� -/[]ѷȼ߽Ծտ٪ک;,       H    p   м                 zR x  $      к    FJw ?;*3$"       D              `   \   @   BGB L(A0A8GP@
8A0A(B BBBFt8G0A(B BBB   (         AMZ FA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Q     Q          y     G`          @`                                  z     Y`          P`                                  {     b`          [`                                   |     k`          d`                                   `}     t`          m`                                   ~     `          x`                                   ~     `          `                                       `          `                                   @     `          `                             @           `          `                             @     `     `          `                                         `          `                                        `          `                                    `     a          `                                         a          a                                       #a          a                             `	     @     3a          (a                              
           Ca          8a                                       Sa          Ha                             @          ba          Xa                                  @     ja          da                                       ra          la                              '     `     za          ta                              0           a          |a                             `<          a          a                             G          a          a                             Q          a          a                             `\          a          a                             @f     @     a          a                             l           a          a                             s          a          a                              z     `     a          a                             `           a          a                             `          a          a                                  `     a          a                                        a          a                             @          a          a                                       a          a                             `     `     a          a                             @           b          a                                        b          b                                        b          b                             @          b          b                                        'b           b                                        0b          )b                             @     `     9b          2b                             @           Bb          ;b                                       Kb          Db                                        ]b          Pb                                       kb          `b                             `           xb          pb                              	           b          b                                   `     b          b                                       b          b                              *          b          b                             @4          b          b                             ;           b          b                             C          b          b                             J          b          b                             `R     `     c           c                             \     @     c          c                             `g     `     3c           c                             n           Bc          8c                             v           fc          Pc                                     `                                                                        L     y                                                  y                 `                                y         ̔     y                                                         y                                             G     y         k     y         ڔ     y                 @           }     y         }     y         }     y         f     y         }     y         r     y         
~     y         ~     y         }     y         q     y         #~     y         s     y                                    q               !              q                            q              ?              ,q              B              1q              <              6q              x              Ef                            5e              4              Kk              :              k              -                                          g                            e              $              +              U              +f              6              /e                            =e              Ǒ              Eg              0                                          Qg                            [e              '              1              *              kf              9              oe              T              =              3              g                                    `                                                                        s     z                                             r     z                 `                                   @                                                                        c     z                                             i     z              z         ߓ     z              z         e     z         e     z         As     z                 @           p     z         q     z         a     z                             c     z                 `                                z              z                                                    q     z                                             j}     z                 @                                z         Fe     z         E     z                            q               {              ڊ              ŏ              
|              d                            d              ]                                          e              ّ              ܅              7d              (w              u                                                                                                                          @                                                     c     {         c     {         c     {         c     {         9}     {         c     {                 @                                   r     {         c     {         R}     {         Cs     {         d     {         Ms     {         e     {                             2d     {         c     {         c     {         c     {         c     {         c     {         c     {         c     {         c     {         c     {         c     {                                 {                                            c     {         r     {                                                     o     {                                            Ɣ     {                                                 {         c     {         c     {         r     {                                     d     {         d     {         Ks     {              {                                    c     {                                             c     {         <d     {         c     {         c     {         c     {                 @                           q               4y              d                            ݏ                                          @o                            ~              *                            m              o              h              ݆              m              Oo              p                                              @                                                                        @                                                                       c     |         c     |         c     |         c     |         9}     |         c     |                                                         |                 @                           2d     |         c     |         c     |         c     |         c     |         c     |         c     |         c     |         c     |         c     |         c     |                                 |                                            c     |         r     |                                                    o     |                 @                                |         c     |                                                    d     |              |                                                    c     |                 @                           c     |         <d     |         c     |         c     |         c     |                                            q                4y               d                              ݏ                              v               r               h               ц               p                                                                                   `                                    @                   c     `}         c     `}         c     `}         c     `}         9}     `}                                            2d     `}         c     `}         c     `}         c     `}         c     `}         c     `}         c     `}         c     `}         c     `}         c     `}         c     `}                 `           d     `}         c     `}                                                    r     `}         r     `}         r     `}         c     `}                                    Ɣ     `}                 `                                `}         ύ     `}         r     `}                                 `}              `}                                                     c     `}         c     `}         c     `}         c     `}         c     `}         c     `}         c     `}                 `           q                {               d               gd                                             m                                                                 @                                                     c      ~                 @                                 ~                                                  ~                                                  ~         n      ~         ِ      ~               ~               ~               ~                                                     C      ~               ~         k      ~               ~                                    }      ~         +e      ~         }      ~         q      ~         q      ~         ~      ~         	~      ~         q      ~         ~      ~         q      ~         q      ~         #~      ~         s      ~                 @                           *}      ~         c      ~         c      ~          d      ~         d      ~         Es      ~         Ks      ~         e      ~                                    q               D{              ߑ                            |              an                                      `                                              c     ~                 `                           r     ~              ~         e     ~              ~                                    }     ~                                             *}     ~         c     ~         c     ~         S}     ~         Js     ~         Ns     ~         <d     ~                 `           q                d               ݊               Yl                                                            @                                                                                                          ѐ                      @                           Is                                          ِ                                         r                            Es                                  Z                      `                           r              Gs                                                         }              q              ~              	~              q              "~              s                                  *}              c              c              c              r              !d                                                         q               d                                                        d                            d              K                                                                      d              F              D                            j~                                                                    `                           s     @              @                                                         @         ܔ     @              @              @         k     @              @              @         s     @                                     Д     @         Ғ     @         g     @         ֔     @         B     @         @     @         ڔ     @         Δ     @         ؔ     @         i     @                                                         @         q     @         q     @         j     @         r     @         r     @         f     @         q     @         q     @              @         s     @                             *}     @         
r     @         r     @         c     @         @s     @         Es     @         Js     @         *d     @         Ps     @                                             q                d               |               d               &               m               
|               -m               
|                                                 `                                                      
~                       `                                          r                                                          *}                                                   q     @          d     @         c     @         2x     @                 @                                                                         e     `                                                  `              `              `         א     `              `              `                 @                                   Ғ     `         K     `         g     `              `         F     `              `              `         ֔     `         ܓ     `         ѐ     `                                                     q     `         q     `         e     `         }     `         q     `         k     `         ~     `         ~     `         q     `         }     `         }     `         q     `         q     `         $~     `                                                     *}     `         c     `         d     `         d     `         $d     `                                            q     @          t     @              @         p     @                                                           k                                                                         }               }               	~               ~               s                       @                           *}                                                  q                d                                                         `                           '~              r                                                         
~                                                  c              -d                      @                                   *}              
r              @s              Ps                                         q                d                              E                              ӑ                                                                                     @                                                     c     `         c     `                 @                                   d     `         r     `                                                    ~     `                                             Is     `         Ms     `         e     `              `         }     `                 @                           c     `                                            *}     `         c     `         r     `         @s     `         Es     `         $d     `         e     `         e     `                                     q                 d                |                d                                Z                                `|                w                                                     
~                                                   d               e               <d               }                       @                   *}               c               d                                  q                d               d               v               k               k                                                                                 @                                              q                      @                           
~              ~              (~                                 K}              M                                                         *}              s              d                      @           q               uh                            C              $d     @         s     @         d     @                                  @         Β     @              @              @              @              @         ې     @                 `           Ғ     @         K     @         g     @         b     @         F     @              @              @         ֔     @         	     @              @                                                     q     @         q     @         e     @         }     @         q     @         ~     @         r     @         ~     @         q     @         }     @         }     @         q     @         $~     @                 @                           *}     @         c     @         r     @         d     @         Ds     @         d     @         c     @                            q     `	          e     `	                                                	                                                                                	           2                                                                                   @
                           }               +e               }               q               q               ~               	~               q               ~               q               q               #~                       
                   *}               r               r               d               d               Gs               Ls               e                                           q      
          z      
         Ȍ      
               
         sn      
               
                
         Ɖ      
         ˇ      
                 $d                            d              e                      
                                                             Ғ                                                                              `                   I              g              >              G                                    @                           q              +e              q              q              e              }              q              q              k              r              r              ~              q              q              q              }              }              q              q              $~              s                                                 *}              c              r              d              d              d              c                                  q               f                                                                          `                              s                      `                           d                                                 q                                                 c              c              d                                  e                                                 ~              }                                                         j              R              m                                  j              Ĕ                                                        '                                                         q     @          lv     @         H     @         s     @         _     @         7d     @              @         py     @         %     @                                                                                                 2d     @                                            r     @         r     @         r     @         c     @         c     @                                                                                         `                                   
~     @                                                 @         r     @                                                     c     @                 `                           q               ݊              )              |              d              c              2x                                                                                                                 `                   r              r              k              Es              ps                                                               q              e              in              e              9k              *d              e              }              u                                                         +e              d              k              <d              r              l              e              d              d              q              Ge                                 c              5}                                                         c                                                  x                            c                            ֈ                      `                           s              c              z                                          c              d               d                                          q               l|                            |              ,|                            M              I              n              u              o              u              "o              u              =o              u              po              u              o                            py              d                                       %                  $                  #                  `#                  "                   "                           r     `         r     `         k     `         r     `              `         ps     `                 "                                        `                 `#                           +e     `         d     `         k     `         <d     `         r     `         l     `         e     `         d     `         d     `         q     `         Ge     `                 #                `                 $                           s     `                  %                           
~     `         q     `         q     `         q     `         q     `                 @%                           q     `         q     `         q     `         q     `         *}     `                 %                           s     `         s     `         q     `         $~     `                 &                   q      '          h      '         n      '               '         sy      '         d      '               '         d      '         py      '         d      '                                 `,                   ,                  +                  `+                   +                  )                  )                  (                   (                   r               r               k               r                              ps                       (                                                          )                           +e               d               k               <d               r               l               e               d               d               q               Ge                       )           c               q                        +                                   q               q                                      `+                          }               g                       +           c                        ,                           s                       `,                           q                              }                       ,           .d               q               q               q               }               c                                       -           c                       -                           }               c               c               c               c               c               }               }               }               }               c                        .                                                        "               q               $~               c               .               c                        /                           q      0          t      0         K      0         t      0         `      0         G      0         n      0         "      0         W      0         J      0               0         d      0               0         ye      0         yy      0         d      0         sy      0         d      0               0         d      0         py      0         d      0                                  7                  4                  2                  @2           q              k              B              x              q              .d              s              q              s              q              g              q              q              q              q              i              i                            G}                      2                         Kk                            in              q              c              }               d              e              d              9k              	d              }              d              u              u              h              5i              m              e              q              e              q              e              q              }              q                      4           q                       7                                   9                  `9                  @8                  7                  `7                   c              ps                      7                                   c              c              c              c              c              c              c              c              c              c              c                      @8           c                      `9                           q              c                      9                                   c              q                                     :           d              e              <d                      `:           c                      :                           c                       ;                           r              r                      @;                                   c                            k              ͓              5d              c              Г                      ;           q     `<      $         `<     %%    =q     `<     &         `<         Ʉ     `<         u     `<         W     `<         U     `<         yy     `<         t     `<              `<              `<         ޒ     `<         o     `<         d     `<         r     `<              `<         k     `<              `<              `<         h     `<         k     `<              `<         z     `<         y     `<         ͏     `<         g     `<         l     `<              `<         Ol     `<         C     `<                 `<                   C                  C                   C                  B                  `B                  @A                   A                  @@                  `?                   r              r              k              r                            ps                      @@                                                          A                           +e              d              k              <d              r              l              e              d              d              q              Ge                      @A           c              q                      `B                                   q              q                                    B                         }              g                       C           s                      C                           c                      C                           q                            }                       D           .d              q              q              q              }              c                                    `D           c                       E                           c              c              <                            c              c                            }              c              }              }              }              q              }                      `E                                   s              ӓ              ֓              Rh                                                  F                                   q     G          {     G         E     G         ݁     G         `     G         S     G         n     G         "     G         W     G         J     G              G         d     G              G         ye     G         yy     G         d     G         sy     G         d     G              G         d     G         py     G         d     G                                  N                  M                  M                   M                  L                  K                  `K                  J                  I                   r              r              k              r                            ps                      J                                                         `K                           +e              d              k              <d              r              l              e              d              d              q              Ge                      K           c              q                      L                                   q              q                                     M                         }              g                      M           c                      M                           s                       N                           *}                      `N                           q                            }                      N           .d              q              q              q              }              c                                     O           c                      O                           c              x              c              c              c              c              q              c                       P                                 c                            "              q              $~              ,              c                      P                   q     Q               Q         K     Q         t     Q         `     Q         t     Q         n     Q         "     Q         W     Q         J     Q              Q         d     Q              Q         ye     Q         yy     Q         d     Q         sy     Q         d     Q              Q         d     Q         py     Q         d     Q                                 @X                   X                  W                  @W                  V                  U                  U                  T                  S                   r              r              k              r                            ps                      T                                                         U                           +e              d              k              <d              r              l              e              d              d              q              Ge                      U           c              q                      V                                   q              q                                    @W                         }              g                      W           c                       X                           s                      @X                           q                            }                      X           .d              q              q              q              }              c                                    X           c                      Y                           c              }              c              c              c              c              c              c              c                            }              c              c              }              }              A                      Y                                 c              Rh              "              q              $~              -              c                      [                   q     `\          ~     `\         K     `\         {     `\         `     `\         t     `\         n     `\         "     `\         W     `\         J     `\              `\         d     `\              `\         ye     `\         yy     `\         d     `\         sy     `\         d     `\              `\         d     `\         py     `\         d     `\                                 b                  b                   b                  a                  a                  ``                   `                  `_                  ^                   r     @         r     @         k     @         r     @              @         ps     @                 `_                                        @                  `                           +e     @         d     @         k     @         <d     @         r     @         l     @         e     @         d     @         d     @         q     @         Ge     @                 ``           q     @                 a                           q     @         q     @              @                 a                @         }     @         g     @                  b           c     @                 b                           s     @                 b                           q     @              @         }     @                  c           .d     @         q     @         q     @         q     @         }     @         c     @              @                 `c                @         n     @              @         K     @              @         c     @         d     @         }     @         }     @         F     @         q     @         }     @         c     @                  d                                @              @         "     @         q     @         $~     @         ,     @         c     @                 e           q     @f          ~     @f         K     @f              @f         n     @f         "     @f         W     @f         J     @f              @f         d     @f              @f         ye     @f         yy     @f         d     @f         sy     @f         d     @f              @f         d     @f         py     @f         d     @f                 k                  k                  j                  `i                  h                   h                           r               r               k               Es               ps                       h                                          q               e               in               e               9k               *d               e               }               u                       `i                                   +e               d               k               <d               r               l               e               d               d               q               Ge                       j           q                       k                           q                       k                           c                        l                           }                       `l                                                  l                           q     l          t     l         n     l              l         o     l              l         "o     l              l         =o     l              l         ݊     l         %e     l         po     l              l         o     l         $     l         E     l              l         py     l         d     l                 p                  o                   o                  n           r              r              k              Es              ps                       o                                         q              e              in              e              9k              *d              e              }              u                      o                                   +e              d              k              <d              r              l              e              d              d              q              Ge                      p           H}                       r                           r                                    @r                                   }              ۍ              I              }              }                      r                           2                      @s                           q     s          t     s         n     s              s         o     s              s         "o     s              s         =o     s         ;     s         %e     s         po     s              s         o     s         $     s         S     s              s         py     s         d     s                                         x                  w                  v                  u                  `u                   r     `         r     `         k     `         Es     `         ps     `                 u                                `         q     `         e     `         in     `         e     `         9k     `         *d     `         e     `         }     `         u     `                 v                                   +e     `         d     `         k     `         <d     `         r     `         l     `         e     `         d     `         d     `         q     `         Ge     `                 w           q     `                 x                           *}     `                  y                           c     `         q     `                 @y                                   s     `              `              `         -     `                 y                   q      z                z         d      z         9e      z         t      z         t      z         n      z         d      z         o      z               z         "o      z         =o      z         d      z         po      z         d      z         o      z         d      z         @      z         E      z               z         py      z         d      z                                                   ~                  `}                  |                  @|                   r               r               k               Es               ps                       |                                          q               e               in               e               9k               *d               e               }               u                       `}                                   +e               d               k               <d               r               l               e               d               d               q               Ge                       ~           g                                                                                                                  Í                                      @                                   s               u               s               	d               q               d                                                          q     `          v     `         n     `         e     `         o     `         Z     `         "o     `         ^     `         =o     `         ?     `         po     `         V     `         o     `         %     `              `              `         py     `         d     `                                 @                                                                   r              r              k              Es              ps                                                               q              e              in              e              9k              *d              e              }              u                                                          +e              d              k              <d              r              l              e              d              d              q              Ge                      @           q              (              q              q                      `                                 ޔ              4}                                                                                                               [              ݐ                            r              o                                                 Js              c              2d              c              q              q              }              }              q              }              x              }              c              c              c              c              }              }              }              c              }                      `                           s              u                                          q              g              q              d                                         q     `          Lu     `         n     `              `         o     `         z     `         "o     `              `         =o     `         +     `         po     `         &     `         o     `         \     `         py     `         d     `                 @                                                        `                                     r     `         r     `         k     `         Es     `         ps     `                 `                                `         q     `         e     `         in     `         e     `         9k     `         *d     `         e     `         }     `         u     `                                                     +e     `         d     `         k     `         <d     `         r     `         l     `         e     `         d     `         d     `         q     `         Ge     `                             q     `                 @                           c     `                                            q     `                                            }     `                                                  `                 @                           q               t              n                            o                            "o                            =o                            po                            o              $              E                            py              d                                                                                                                                 @                           r               r               k               r                              ps                                                                         q               e               in               e               9k               *d               e               }               u                                                          +e               d               k               <d               r               l               e               d               d               q               Ge                                  q                                                  g               {                                                                                         4}               r               ʔ               Ԕ               Ҕ                                                         }               ƒ                                             ʒ                              }               Ȕ               q               ~                       `                                   }               c               c               }               c               x               }               c               c               }               c                                  s               ʓ                              c                              "               '               s               -                                                  q               y              |                            n              %              o                            "o              *              =o              g              po                            
|                            
|                            &              d              sy                            py              d                      `                                                                         `                                                                       r              r              k              r                            ps                                                                               `                           +e              d              k              <d              r              l              e              d              d              q              Ge                                 q                                                                                                                         s                      `                           '                                                 }              ~              }              }              *}                            B}                                 q                                                 s              "              $~                                 q     @          u     @         n     @         H     @              @              @         yy     @         d     @         sy     @         d     @              @         d     @         py     @         d     @                                                                      `                                                                         @                                                       r              r              k              r                            ps                                                                               @                           +e              d              k              <d              r              l              e              d              d              q              Ge                                 c              q                                                         q              q                                                              }              g                      `           c                                                 s                                                  q                            }                      @           .d              q              q              q              }              c                                               c                      `                           }              c              c              c              c              }              }              }              }              }              c                                               c                            "              q              $~              ,              c                                         q                              K              t              `              t              n              "              W              J                            d                            ye              yy              d              sy              d                            d              py              d                                                                                    q     `                                             +     `                 @                           <d     `         x     `                                                         `              `              `         ~     `                                    q     `          d     `          q     `         d     `         q     `              `     
    "q     `         ڒ     `         q     `         d     `         /q     `         ֒     `         3q     `         d     `      $         `     %'    d     `     (,    q     `     -/    d     `     01    -q     `     22    d     `     36    q     `     77    d     `     8;    +q     `     <=    d     `     >>    ~     `     ?@         `     AJ         `     KP         `     QY    -     `     Z^    d     `     __         `     `a         `     bj    2     `     ko         `     qq    d     `     tt    E     `     xx         `     y    xq     `         t     `              `         q     `         d     `              `         9     `         d     `         uq     `         ދ     `              `         Տ     `         Վ     `         d     `         ߎ     `         d     `         sq     `         ye     `         jq     `         d     `         Gq     `         d     `         d     `                                                     `                              c                       `                                                                             r                              ē                              c               c                                                 @               r               m               q                                          c               c                                                           c                                                                               c                                                          C               k                       @                                   }               }               }               5i               q                ~               	~               ~               }               q               q                ~               s                                                  J}                                                   q     @          ݊     @              @         s     @         &     @         v     @         5     @              @         l     @         |     @         v     @         gd     @              @         l     @         j     @         Q     @         e     @                                                             @                             c                       @                           2d                                                  r                              ē                              c               c                                                 c               s               c                                                 ܔ                                             k                                             s                                          Д               Ғ               g               ֔               B               @               ڔ               Δ               ؔ               i                                                                         q               q               j               r               r               f               q               q                              s                                  c               
r                              6               Ps                                                   q               ݊                            &              5                            
              |              gd                                          d              d              m                                                                          `                              c                      `                           2d                                                               r                            ē                            c              c                                                       r              s                                                         c              c              c              c              c              c              c              c                                          ˋ              c              c                                  c              -d              <d              a                      `                   c                                                 c                                                                        `                           q              c              .d              ~              }              q              q              q              s                                                 c              
r              @s              Ps                                         q                ݊                                             s               &               v               5                                                            |                              gd                                             l               ͑               k               ӑ                                                                                                                 c                                                 c              2d                                                         '~              r                            ē                            c              c                                                        }              
~              q                                  }              }                      `                                   c              c                                                         c                                                  c              -d                      `                                   r              
r              @s              Ps                                         q     @          ݊     @              @         s     @         &     @         v     @         5     @              @         |     @         v     @         gd     @              @         d     @         N     @         fz     @              @              @         ӑ     @                 @                                                                                                              c                                                 2d                                                 r                            ē                            c              c                                                c              c                                                         c                                                                              c                      `           k                                                                       }              }              	~              ~              s                                                  J}                                                 q                ݊                              s               &               v               5               e                              l               |               v               gd               e                              l               j                                                 @                                                c                                                  2d                      @                           Ǔ                            ē                            c              c                                               ~                      @                                         Ms              e                            }                                                 c                                                  c              r              @s              Es              Js              e              e                      `           q                ݊                              s               &               5                              |               gd                                             d                              |               w                                                             `                                                *d     `         c     `                                                     c     `                 `                           r     `              `         ē     `              `         c     `         c     `              `                                 `                 `                           ~     `              `              `                                 `              `                                                     c     `         c     `         r     `         c     `         @s     `         Es     `         Js     `         e     `                 `                   q     @          h     @              @         v     @         &     @         h     @              @         %     @         |     @         gd     @         ,v     @              @              @              @         o     @                                                           `                                                c                                                   2d                       `                           r                              ē                              c               c                                                 c                              d               e                       `                                                                Ғ               ~                                                                                       O               g               >               G                                                                 q               +e               q               q               e               }               q               q               k               r               r               ~               q               q               q               }               }               q               q               $~               s                       `                           c               c               r               @s               Es               Is               e                                  q     @          ݊     @              @         &     @         5     @         e     @              @         E     @         |     @         gd     @         e     @              @         Ui     @                                                             `                                                                                  q              q              ~              c              x              .d              q              q              q              ~              }              }              }              q              #~                                                g              q                            d              $d              c              *d              e              e              e              <d              d              e              +e              Ge              Kk              in              q              e              }              u              u              h              5i              m              q              q                                         (~                      `                           q              9k              }              q              q              }              q              q              s              s                                                         d              !d              -d              e              r              q                                                         K}                                                  d              d              	d                                 *}              d                                                          q               v              	              g              q                                                   q                                                                                                  `                                   q                                                 q                                                                            @                                                                         @                           q                                                 Ge              d              Gs                                  !d              Kk              c              $d              e              d              -d                                 c                      @                           }                                          ٓ              q              q                                                         *d                      @                           e                                                               !                                                         +e                                                  }              r              l                      `           ~              r                                                                                                   "              4              k                                                          m              d              Ő                            P                            r                                 q           ~    z              ,              <{              |                            gd                            ]                            W              d              |y                            o              u              Z              j              vy              s                            t              )                            R              ye                                                        d              f                                          +              l                                                                        `                              }                      `                           k                                                 r              r              G}              7}              c              c                                                                 `                                                                        
~              ~                                                                        r                      `                                   c              s              2d              $~              c                                                 q     `       ~    t     `          )     `               `          
|     `               `          |     `          |     `          |     `          d     `          c     `               `                  `                                                                         q                                                          `                                                                                                                                                  q                                                  Ge               d                                                           !d               Kk               e                                  c                                                  k                                                   }                                             c               q               q                       `                                   q                                                   Gs                       `                           $~               q                                                          +e               q                                                                          }                                             l                                      `                                                                 q                                                                 6                                  c               m               p               Ő                              c               c                d               x               in               r                                  q      	      &    w      	     (    z      	         |      	               	         gd      	               	         ]      	               	         o      	               	         vy      	         s      	               	         t      	         )      	               	         R      	         ye      	               	         j      	         ڊ      	               	         f      	               	               	         q      	                                                                                      q     `                                                                                        @                  
                   
                                                                        q     `                                            Ge     `         d     `         Gs     `                  
           !d     `         Kk     `         c     `         $d     `         e     `         d     `         -d     `                 
           c     `         e     `                 @                                   k     `                                            }     `              `              `         ٓ     `         q     `         q     `         r     `                            *d     `                                                 `         !     `                                                    +e     `                 @                           }     `              `         r     `         l     `                                    ې     `         q     `                                                          `              `              `              `         "     `         *     `         4     `         <     `         k     `                 `                           m     `         Ő     `              `         P     `              `         r     `                 `                                   q                z               ,               <{               |                              gd                              ]                              W               d               |y                              o               u               Z               t               T                              vy               s                              t               )                              R               ye                              j               ڊ               d                              "                              d               f                                                                                                                  q                                                          @                                                                                           `                                     `           q                                                  Ge              d              Gs                      `           !d              Kk              c              $d              e              d              -d                                 c                                                 k                                                 k                                                  }                                          ٓ              q              q              r                      @           *d                                                  e                      @                                         !                                                                                                          +e                                                  }              l                      `                                   ې              q                                                                                                                 "              *              4              <              k                                                  m              d              Ő                            P                            r                                  q           ~    z              ,              <{              |                            gd                            ]              
              W              d              |y                            o              u              Z              z              vy              s                            t              )                            R              ye                            j              ڊ              :                            d              f                                                                "                  "                  @"                                   r                      "                           q                      "                                    &                  %                  %                  @%                  $                   $                  #                   #           q                      #                           Ge              d              Gs                       $           !d              Kk              c              $d              e              d              -d                      $           c                      @%                           k                      %                           k                      %                           }                                          ٓ              q              q              r                       &           *d                      &                           e                       '                                         !                      @'                                   +e                      '                           }              l                      '                                   q                      @(                                                                     "              4              k                      (                                   m              d              Ő                            P                            r                      @)           q      *      ~    z      *         ,      *         <{      *         |      *               *         gd      *               *         ]      *               *         W      *         d      *         |y      *               *         o      *         u      *         Z      *         j      *         vy      *         s      *               *         t      *         )      *               *         R      *         ye      *               *         j      *         ڊ      *         d      *         f      *               *               *               *                                 -                  @-                           q                      -                                   0                  `0                   0                  /                   /                  .                  .                  -           q                      .                           Ge              d              Gs                      .           !d              Kk              c              $d              e              d              -d                       /           c                      /                           k                       0                           k                      `0                           }                                          c              q              q                      0                                   *d                      `1                           e                      1                                         !                      1                                   +e                      @2                           }              l                      2                                   q                      2                                                                3                                   m              d              Ő                            P                            r                      3           q     @4      ~    z     @4         |     @4              @4         gd     @4              @4         ]     @4              @4         W     @4         d     @4         |y     @4              @4         o     @4         u     @4         Z     @4         j     @4         vy     @4         s     @4              @4         t     @4         )     @4              @4         R     @4         ye     @4              @4         j     @4         ڊ     @4              @4         f     @4              @4              @4              @4                 @8                  7                  7                  @7           q                       7                           q               in                       7                                   q                       @8                                    9                  8                  8                                   c                       8                           }               q                               q                        9                   
~                       9                           /                              k                       9           2d               c               c               c               c               c               #               *               4               <                       @:                                   }                       `;                           q     ;          =q     ;     &&    Wq     ;     @Z    sq     ;     \\    uq     ;     ^z    q     ;     ~~    e     ;         r     ;         z     ;         7q     ;         N     ;              ;              ;         T     ;              ;              ;         /     ;         R     ;         k     ;         _     ;              ;         7     ;                                  ?                  >                  >                  @>                  =                   Ge              d              Gs                      @>           c                      >                           c                      >                           h              5i              q              q              c              c              q              c                       ?                   r                       @                                                       l                                                  @@                           u                      @                           2d              c              c              c              "              c              c              *              r              c              9              c              H}                       A                           }              c              U              6                            d              c              in              c                      B                           q     C      ~         C         gd     C         ge     C         |     C         e     C         5     C         7     C         ݊     C         z     C         ,     C         
     C         ]     C              C         |y     C         l     C         yy     C         y     C         )     C              C              C         x     C                                 @F                   F                  E                                   r                       F                           c                      @F                           s              q              Es                      F           q              q              $~              ps              q              q              c                      F           
~              c              q              q                      G                   d              e              <d              }                       H                   2d              c              c              c              c              c              #              c              *              0              c              6              D}              <                      H                                   c              c              c                       J           q     J          <q     J     %%    Cq     J     ,,    Gq     J     09    Rq     J     ;;    Vq     J     ?Z    wq     J     `z    q     J     ~~         J         )     J         ډ     J         7q     J              J         =q     J         k     J         Dq     J         w     J         Qq     J         k     J         Sq     J         k     J         c     J              J         rq     J              J         q     J              J                                          O                  N                  N                   N                  M                   M                           Ge     `         d     `         Gs     `                 M           Kk     `         e     `         d     `                  N           r     `         c     `                 N                                   s     `                 N                           }     `         q     `              `         c     `         c     `         q     `                  O                                        `                 O                                `              `         /     `                  P           w     `              `                 P                                   +e     `                 P                           q     `                  Q                           }     `         c     `         c     `         c     `              `         c     `         K     `         Q     `         in     `                 `Q                           q     `R      ~    h     `R         ,     `R              `R         |     `R         
     `R         gd     `R         N     `R         ]     `R         R     `R         W     `R         d     `R         |y     `R         a     `R         vy     `R         s     `R              `R         t     `R         )     `R         #     `R         R     `R         ye     `R         &     `R         ]     `R              `R         |     `R         ݊     `R                                         @U                   U                           k     @                 @U                                   `X                   X                  W                  W                  V                  V                  @V                  U           q     @                 @V                           Ge     @         d     @         Gs     @                 V           !d     @         d     @         c     @         $d     @         e     @         d     @         -d     @                 V           c     @                 W                           k     @                 W                           k     @                  X                                @              @              @         c     @         c     @         q     @         q     @         r     @                 `X                   q     @                 @Y                           e     @                 Y                                @         s     @         q     @                 Y           +e     @                  Z                           }     @              @         ې     @                 `Z           M     @         g     @         k     @         q     @                 Z                   ،     @              @              @         8     @         4     @                 @[                           m     @         ː     @              @         P     @              @         r     @                 [                                   q     \      ~    z     \         ,     \         <{     \         |     \              \         gd     \              \         ]     \         .     \         W     \         d     \         x     \         d     \         o     \         e     \         Z     \              \         vy     \         s     \         yy     \         U     \         )     \              \         U     \         ye     \              \         d     \         ڊ     \              \         4d     \         d     \         f     \              \                                 a                  a                   a                  `                  `                  _                           q     `                 `                           d     `         Gs     `                 `                                   !d     `         Kk     `         $d     `         e     `                  a                   c     `                 a                           }     `              `              `         c     `         c     `         q     `         r     `                 a           s     `                 b                           }     `              `              `         u     `              `         q     `         Ջ     `              `              `                 b                           q     `         r     `         v     `         r     `              `              `              `         Ds     `              `              `                 c                                   q     `         2d     `         c     `         }     `              `         q     `              `         c     `         c     `         c     `         c     `         c     `         6     `         c     `         }     `                  e           }     `         c     `         Ő     `              `         c     `         c     `         c     `         in     `                 f                   q     `g      ~    *~     `g         ,     `g              `g         |     `g              `g         gd     `g              `g         ]     `g         -     `g         |y     `g              `g         o     `g         Ċ     `g         vy     `g              `g         ~     `g         t     `g         )     `g              `g         R     `g         ye     `g              `g         5     `g              `g         =     `g              `g         m     `g                 j                  `j                   j                                   r                       `j                           c                       j                           s               q                       j                                   q               q               $~               ps               q               q               c                       @k           
~               ʎ               q               q                        l                   d               e               <d               }                       l                   2d               c               c               c               c               c               #               c               *               0               c               6               D}               <                        m                                   c               c               c                       n           q     n          <q     n     %%    Cq     n     ,,    Gq     n     09    Rq     n     ;;    Vq     n     ?Z    wq     n     `z    q     n     ~~         n         )     n         ډ     n         7q     n              n         =q     n         k     n         Dq     n              n         Qq     n         k     n         Sq     n         k     n         c     n              n         rq     n              n         q     n              n                                         q                  q                           r                       q                                    s                  r                  `r                   r           c               d                       `r                                   c                       r                           i                              ߓ                              e               e               As                        s           p               Ge               a                       s           c                        t                                                                 `t                                   q                       t                           x               q               s               q               q                        u                           7q                                                            Dq               Ge               d               J               N               <d                       u                                   q     v      &    
|     v     ''    ?q     v     (_    |     v     ``    xq     v     a~    d     v         ڊ     v         ŏ     v         >q     v         
|     v         d     v              v         ]     v         d     v         d     v              v         e     v         ّ     v         	e     v         wq     v              v         ?     v         ~     v         7d     v         e     v         d     v         Vw     v         We     v         e     v         vw     v                 v                                   q     y          q     y         q     y         ,q     y         1q     y         6q     y                                   @                                                                         y           q     z                                    @                                                       `                                                                         z                           q     {                  @                                                                                                              {           q     |                                    @                                                                        |                                   q     `}                  `                                                       `                  @                  `}                                   q      ~                                    @                                                                                            ~           q     ~                  `                                                                          ~                           q                                                                              `                                                                       q     @                                                                                             `                  @                                   q                                                                          q     `                                                                          @                                    `                                   q                                          @                                                                                  q                                         @                                     `                                             q     `                                                       @                                                       `                                   q                                          @                                                         q                       @                                                                                                    q     @                                    @                                     `                                     @                                   q                                           
                  @
                  	                  	                                                      q                                                            @                  `                  
                                                     q                                                                                                                                                 q     @                  `                  `                                     @                   q                                          `                                     `                                             q     `                  &                  %                  @%                   "                  `                           q                         /                   .                  -                   -                  ,                   (                              q           $    =q          &            ;                  @;                   ;                  :                  `:                   :                  `7                  @2                                                     q                       F                  `E                   E                  `D                   D                  `?                             q                       P                   P                  O                   O                  N                  `N                  I                                     q                       [                  Y                  Y                  X                  X                  S                             q     @                  e                   d                  `c                   c                  ^                  @                                   q                        l                  `l                   l                   h                                              q                       @s                  r                  @r                   r                  n                                                     q     `                  y                  @y                   y                  `u                  `                           q                                          @                                    @|                                              q                                         `                                                      `                                                q     `                  @                                                                                           `                                   q                                                            `                                    @                                                      q                                                                                                                                                    q                                                           `                                    @                                               q     `                                                      @                                    `                           q                                                             @                                                                                                                                          q                                                                                                                                                 q                                                           `                                                       `                                                                                                        q                                         `                                                       `                                                                           q                                                                              `                                                                                             q                       `                                                       @                                                                       q     `                  `                                                       `                                    `                                   q                                          `                                                      `                                                q                                                                                                                           q           ~                                                                   `                                                                         @                  @                  `                             q           ~                                                                                                  '    @q           )                                                                   `                                                       `                                                                                              q     `                  `                  `                                                       @                                                                                           `                                   q           ~                                                                    `                                                                         @                                     `                                                       q           ~            @)                  (                  @(                  '                  '                  @'                   '                  &                   #                  @"                             q           ~            3                   3                  2                  2                  @2                  1                  1                  `1                  -                  @-                             s            ~            `;                  @:                  9                  9                  8                  @7                              q           ~            B                   A                  @                  @@                   @                  =                             r           ~             J                  H                   H                  G                  F                  F                  E                                     q     `      ~            `Q                   Q                  P                  P                   P                  O                   M                  `                   q     @      ~            [                  @[                  Z                  `Z                   Z                  Y                  Y                  @Y                  U                   U                  @           q     `      ~            f                   e                  c                  b                  b                  _                  `           r            ~            n                   m                  l                   l                  @k                  j                   j                                      r            ~            u                   u                  t                  `t                   t                  s                   r                  q                                                   P     
       W                                                         o    `                          H      
                                              8                           F                          4     	              o    x      o           o          o    !                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   6P     FP     VP     fP     vP     P     P     P     P     P     P     P     P     h     /usr/lib/debug/.dwz/x86_64-linux-gnu/libperl5.36.debug :#Ɂ(੷Ko e238c87caf51811b9fc78b459cb824a1d46bf3.debug    j .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .data.rel.ro .dynamic .got.plt .data .bss .gnu_debugaltlink .gnu_debuglink                                                                                8      8      $                                 o       `      `                                  (             H      H                                0                                                      8   o                                               E   o       x      x                                   T                          4                          ^      B       F     F     8                          h              P      P                                   c              P      P                                  n              Q      Q                                  w             Q     Q                                  }             W     W     	                                            `      `      5                                                       ,                                           0     0                                                                                                                                                                  0                                                                               r                                                                                                                     h     h                                                p     p                                                         p     K                                                         4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ;o      
    B      Ɛ&     #
  ;o      M    %      Ɛ&ڽ     #
  ;o      s          Ɛ&侾     #
  ;o                Ɛ&     #
  ;o                 Ɛ&@þ
     #
  ;o                Ɛ&ž     #
  ;o                Ɛ&`Ǿ     #
  ;o                Ɛ&XȾ     #
  ;o      ӓ    :      Ɛ&Fɾ     #
  ;o          4      Ɛ&`ʾ     #
  ;o      C          Ɛ&F˾     #
  ;o      Y    
      Ɛ&˾     #
  ;o      g          Ɛ&t;     #
  ;o      x           Ɛ&ξ     #
  ;o      r          Ɛ&ξ     $
  ;o                Ɛ&dϾ       $
  ;o                 Ɛ&Ӿ"     	$
  ;o                Ɛ&\Ծ$     %$
  ;o      ]          Ɛ&Ծ&     )$
  ;o          W      Ɛ&B־(     +$
  ;o      r          Ɛ&־*     4$
  ;o          K      Ɛ&ؾ,     ,$
  ;o      i    2      Ɛ&پ.     @$
  ;o                 Ɛ&۾0     L$
  ;o          $      Ɛ&fܾ2     T$
  ;o                Ɛ&ݾ4     \$
  ;o      ީ          Ɛ&޾6     d$
  ;o      ꪣ    )      Ɛ&߾8     g$
  ;o                 Ɛ&0:     h$
  ;o      5    #      Ɛ&6<     e$
  ;o      Y    
      Ɛ&<>     {$
  ;o      d    \      Ɛ&@     |$
  ;o          =      Ɛ&XB     $
  ;o                Ɛ&D     $
  ;o                Ɛ&^F     $
  ;o          .      Ɛ&H     $
  ;o                Ɛ&J     $
  ;o      9          Ɛ&L     $
  ;o      I          Ɛ&N     $
  ;o      ]          Ɛ&>P     $
  ;o      m          Ɛ&rAR     W(
  ;o          ,      Ɛ&nCT     c(
  ;o          O      Ɛ&pFV     o(
  ;o                Ɛ&|GX     (
  ;o                Ɛ&GZ       ;o      $    H      Ɛ&HI\     (
  ;o      mã    ,      Ɛ&tJ^     (
  ;o      ģ          Ɛ&K`     (
  ;o      ţ          Ɛ&Lb     (
  ;o      ƣ          Ɛ&LNd     (
  ;o      ǣ    l      Ɛ&Nf     (
  ;o      +ɣ           Ɛ&vh     (
  ;o      'ʣ           Ɛ&֦j     (
  ;o      ˣ          Ɛ&l     (
  ;o      4̣          Ɛ&xn     (
  ;o      Lͣ    (      Ɛ&⩿p     (
  ;o      uΣ          Ɛ&r     )
  ;o      S֣    )      Ɛ&dt     
)
  ;o      }ף    $      Ɛ&v     )
  ;o      أ    !      Ɛ& x     )
  ;o      ٣          Ɛ&^z     %)
  ;o      ڣ    =      Ɛ&|     1)
  ;o      ܣ          Ɛ&~     A)
  ;o      ݣ          Ɛ&     I)
  ;o      ߣ          Ɛ&	     	  ;o          x      Ɛ&^     ])
  ;o          :      Ɛ&a     )
  ;o                Ɛ&e     )
  ;o          6      Ɛ&g     )
  ;o                 Ɛ&,h     )
  ;o      :          Ɛ&j     )
  ;o      P          Ɛ&hk     )
  ;o                 Ɛ&l     )
  ;o          H      Ɛ&t     )
  ;o      G    
      Ɛ&v     *
  ;o      U    f      Ɛ&     *
  ;o                Ɛ&     E1
  ;o          &      Ɛ&4     P1
  ;o          &      Ɛ&     W1
  ;o      *    *      Ɛ&r     Z1
  ;o      U    U      Ɛ&     b1
  ;o                Ɛ&     n1
  ;o          
      Ɛ&*     z1
  ;o                Ɛ&h     1
  ;o                Ɛ&$     1
  ;o          x      Ɛ&%     1
  ;o      |          Ɛ&V'     1
  ;o          5      Ɛ&(     1
  ;o                Ɛ&b)     1
  ;o          K      Ɛ&*     1
  ;o                Ɛ&+     1
  ;o           6      Ɛ&-     1
  ;o                Ɛ&.     1
  ;o      3    +      Ɛ&D0     1
  ;o      _           Ɛ&7     1
  ;o      ]           Ɛ&<     
2
  ;o      Y    0      Ɛ&A     *2
  ;o          2      Ɛ&EĒ     G2
  ;o          $      Ɛ&*Hƒ     [2
  ;o      	    :      Ɛ&IȒ     l2
  ;o          J      Ɛ&*Oʒ     u2
  ;o      h          Ɛ&PQ̒     2
  ;o      
          Ɛ&Β     2
  ;o                Ɛ&ȤВ     2
  ;o          &      Ɛ&*Ғ     2
  ;o                Ɛ&Ԓ     2
  ;o          .      Ɛ&֒     2
  ;o          L      Ɛ&ؒ     2
  ;o      j    0      Ɛ&"ڒ     v8
  ;o          ,      Ɛ&>ܒ     }8
  ;o          	      Ɛ&Fޒ     8
  ;o                Ɛ&h     8
  ;o                Ɛ&x     8
  ;o                Ɛ&b     8
  ;o                Ɛ&|e     8
  ;o                 Ɛ&h     8
  ;o      	          Ɛ&k     
9
  ;o                 Ɛ&o     9
  ;o                Ɛ&s     =9
  ;o      +           Ɛ&Zv     O9
  ;o      B!          Ɛ&Zx     f9
  ;o      R"    
      Ɛ&{     s9
   ;o      ]#          Ɛ&     9
  ;o      i$          Ɛ&     9
  ;o      q%    (      Ɛ&     9
  ;o      &    0      Ɛ&ą     9
  ;o      '          Ɛ&     9
  ;o      (    ?      Ɛ&P      9
  ;o      *    &      Ɛ&r     9
  ;o      B+          Ɛ&     9
  ;o      N,    
      Ɛ&֍     9
 	 ;o      \-          Ɛ&     9
 
 ;o      `.    P      Ɛ&
     9
  ;o      /    )      Ɛ&     :
  ;o      0    M      Ɛ&֓     9
 
 ;o      )2          Ɛ&     :
  ;o      =3    L      Ɛ&,     %:
  ;o      4          Ɛ&̘     -:
  ;o      5          Ɛ&     =:
  ;o      6          Ɛ&     =
  ;o      7           Ɛ&     =
  ;o      8           Ɛ&v     =
  ;o      9          Ɛ&K     =
  ;o      :          Ɛ&O      3>
  ;o      ;          Ɛ&fQ"     X>
  ;o      <    
      Ɛ&Q$     `>
  ;o      =          Ɛ&^S&     b>
  ;o      ?          Ɛ&U(     m>
  ;o      @    ,      Ɛ&ZW*     |>
  ;o      A    S      Ɛ&XX,     >
  ;o      %C          Ɛ&BY.     >
  ;o      D          Ɛ&Y0     >
  ;o      qF          Ɛ&pZ2     >
  ;o      ,H          Ɛ&[4     >
   ;o      I          Ɛ&[6     >
 ! ;o      ~K          Ɛ&\8     >
 " ;o      KM          Ɛ&]:     >
 # ;o      N    T      Ɛ&_<     >
 $ ;o      *P           Ɛ&va>     >
 % ;o      Q    2      Ɛ&j@     >
 & ;o      KR          Ɛ&0kB     ?
 ' ;o      PS    %      Ɛ&pD     
?
 ( ;o      vT          Ɛ&|F     5?
 ) ;o      |U          Ɛ&H     <?
 * ;o      V          Ɛ&J     K?
 + ;o      TX          Ɛ&L     S?
 , ;o      iY          Ɛ&N     D
 - ;o      vZ    
      Ɛ&x P     D
 . ;o      [    
      Ɛ&z$R     D
 / ;o      \          Ɛ&&T     D
 0 ;o      ]          Ɛ&'V     D
 1 ;o      O_    Q      Ɛ&(X     D
 2 ;o      `    E      Ɛ&@*Z     D
 3 ;o      a          Ɛ&*\     D
 4 ;o      c    E      Ɛ&N,^     D
 5 ;o      d    2      Ɛ&-`     E
 6 ;o      f    
      Ɛ&$/b     E
 7 ;o      g           Ɛ&^0d     %E
 8 ;o      h          Ɛ&~2f     -E
 9 ;o      i          Ɛ&$4h     :E
 : ;o      4j          Ɛ&4j     DE
 ; ;o      Fk           Ɛ&9l     FE
 < ;o      @l    &      Ɛ&:n     kE
 = ;o      gm    0      Ɛ&<p     pE
 > ;o      n          Ɛ&=r     |E
 ? ;o      $p    0      Ɛ&V>t     }E
 @ ;o      Uq          Ɛ&h?v     lE
 A ;o      tr          Ɛ&Bx     E
 B ;o      zs          Ɛ&Cz     E
 C ;o      t    !      Ɛ&D|     E
 D ;o      u    5      Ɛ&4F~     E
 E ;o      v    
      Ɛ&I     E
 F ;o      w    W      Ɛ&vK     E
 G ;o      Jy          Ɛ&HL     E
 H ;o      gz    B      Ɛ&M     E
 I ;o      {    #      Ɛ&P     E
 J ;o      |          Ɛ&r     E
 K ;o      }           Ɛ&     
F
 L ;o      ~          Ɛ&     @F
 M ;o                Ɛ&.     I
 N ;o                Ɛ&     BJ
 O ;o      %          Ɛ&$     ~J
 P ;o      E          Ɛ&&     J
 Q ;o      J          Ɛ&,     J
 R ;o      i           Ɛ&}     J
 S ;o      j          Ɛ&     J
 T ;o      ~          Ɛ&     K
 U ;o                Ɛ&<     K
 V ;o                 Ɛ&T     +K
 W ;o          >      Ɛ&^     ,K
 X ;o      ԋ          Ɛ&D     8K
 Y ;o      匤    E      Ɛ&H     9K
 Z ;o      +          Ɛ&r     BK
 [ ;o      C    #      Ɛ&܋     IK
 \ ;o      g           Ɛ&<     \K
 ] ;o      ^    _      Ɛ&L     wK
 ^ ;o          W      Ɛ&
     K
 _ ;o          #      Ɛ&     K
 ` ;o      :           Ɛ&<     K
 a ;o      8           Ɛ&     K
 b ;o      8          Ɛ&B     UO
 c ;o      N    >      Ɛ&     eO
 d ;o          !      Ɛ&     vO
 e ;o                 Ɛ&     O
 f ;o          8      Ɛ&X     O
 g ;o      ✤          Ɛ&ē     O
 h ;o          @      Ɛ&Ɠ     O
 i ;o      C          Ɛ&Oȓ     O
 j ;o      J          Ɛ&`Oʓ     O
 k ;o      V          Ɛ&lP̓     O
 l ;o                 Ɛ&RΓ     O
 m ;o                Ɛ&JTГ     O
 n ;o                Ɛ&Vғ     O
 o ;o      6    )      Ɛ&Vԓ     O
 p ;o      `          Ɛ&X֓     O
 q ;o      i          Ɛ&Zؓ     O
 r ;o          "      Ɛ&b\ړ     P
 s ;o                Ɛ&v`ܓ     P
 t ;o                Ɛ&aޓ     (P
 u ;o                Ɛ&xb     /P
 v ;o      ĭ          Ɛ&c     6P
 w ;o      த    &      Ɛ&`e     >P
 x ;o                Ɛ&f     JP
 y ;o          
      Ɛ&g     RP
 z ;o      *          Ɛ&i     ZP
 { ;o      A          Ɛ&&j     bP
 | ;o      ]    &      Ɛ&r     iP
 } ;o                Ɛ&u     P
 ~ ;o          p      Ɛ&w     P
  ;o                Ɛ&w     P
  ;o                Ɛ&y     P
  ;o      л    E      Ɛ&y     P
  ;o          3      Ɛ&z     P
  ;o      J    3      Ɛ&H{     P
  ;o      ~    6      Ɛ&{     P
  ;o          6      Ɛ&|      P
  ;o          Z      Ɛ&}     P
  ;o      Gä    i      Ɛ&     P
  ;o      Ĥ    "      Ɛ&X     P
  ;o      Ť    +      Ɛ&     P
  ;o       Ǥ    b      Ɛ&h'
     pT
  ;o      cȤ          Ɛ&^)     T
  ;o      ɤ    #      Ɛ&z*     T
  ;o      ʤ    !      Ɛ&+     T
  ;o      ˤ    %      Ɛ&,     T
  ;o      ̤    $      Ɛ&v.     T
  ;o      Τ    @      Ɛ&z     T
  ;o      RϤ    K      Ɛ&0     T
  ;o      Ф    Q      Ɛ&Ѐ     T
  ;o      Ѥ    B      Ɛ&p     T
  ;o      3Ӥ    B      Ɛ&     T
  ;o      vԤ    )      Ɛ&      T
  ;o      դ    N      Ɛ&؍"     U
  ;o      ֤    -      Ɛ&N$     &U
  ;o      ؤ          Ɛ&T&     .U
  ;o      <٤    "      Ɛ&(     >U
  ;o      _ڤ    J      Ɛ&*     FU
  ;o      ۤ    3      Ɛ&,     QU
  ;o      ܤ          Ɛ&.     xU
  ;o      ݤ          Ɛ&0     U
  ;o      ߤ           Ɛ&2     U
  ;o                 Ɛ&4     U
  ;o          n      Ɛ&:6     U
  ;o                Ɛ&ʥ8     U
  ;o          
      Ɛ&:     U
  ;o                Ɛ&<     U
  ;o          3      Ɛ&,>     U
  ;o          p      Ɛ&@     U
  ;o      G          Ɛ&VB     U
  ;o      f          Ɛ&~D     U
  ;o      l    "      Ɛ&$F     U
  ;o                Ɛ&[H     9V
  ;o          )      Ɛ&\J     ]]
  ;o          0      Ɛ&_L     e]
  ;o          1      Ɛ&zaN     u]
  ;o      "    #      Ɛ&bP     ]
  ;o      F          Ɛ&hR     ]
  ;o      X          Ɛ&LiT     ]
  ;o      x    	      Ɛ&fjV     ]
  ;o                Ɛ&kX     ]
  ;o          0      Ɛ&TmZ     ]
  ;o          t      Ɛ&4n\     ]
  ;o      C          Ɛ&o^     ]
  ;o      G          Ɛ&q`     ]
  ;o      $     H      Ɛ&rb     ]
  ;o      m          Ɛ&sd     ]
  ;o      r          Ɛ&6uf     ]
  ;o      u    "      Ɛ&dvh     ^
  ;o                Ɛ&Fyj     ^
  ;o                Ɛ&zl      ^
  ;o      8	          Ɛ&}n     +^
  ;o      @
    1      Ɛ&t~p     :^
  ;o      r    D      Ɛ&`r     B^
  ;o                Ɛ&ht     I^
  ;o      
           Ɛ&Lv     Q^
  ;o                Ɛ&Xx     ]^
  ;o                Ɛ&z     ^
  ;o                Ɛ&|     ^
  ;o                 Ɛ&X~     ^
  ;o                Ɛ&3     ^
  ;o          &      Ɛ&4     ^
  ;o      &          Ɛ&6     ^
  ;o      9           Ɛ&9     ^
  ;o      7           Ɛ&x;     ^
  ;o      X           Ɛ&<     ^
  ;o      W    *      Ɛ&b     ^
  ;o                Ɛ&     zd
  ;o          v      Ɛ&:     |d
  ;o          
      Ɛ&D     d
  ;o      
           Ɛ&.     d
  ;o           L      Ɛ&&     d
  ;o      M           Ɛ&     d
  ;o      _!           Ɛ&~     d
  ;o      5"    	      Ɛ&R     d
  ;o      ?#    "      Ɛ&P     d
  ;o      b$    
      Ɛ&     d
  ;o      m%          Ɛ&n     d
  ;o      &          Ɛ&      )e
  ;o      T)          Ɛ&     8e
  ;o      q*    0      Ɛ&     9e
  ;o      +          Ɛ&<     Ge
  ;o      ,          Ɛ&     Me
  ;o      G.          Ɛ&
     Qe
  ;o      /           Ɛ&*     `e
  ;o      0    "      Ɛ&v     e
  ;o      2          Ɛ&     e
  ;o      3    
      Ɛ&     e
  ;o      *4          Ɛ&     e
  ;o      65    1      Ɛ&     e
  ;o      h6    I      Ɛ&     e
  ;o      7           Ɛ&B     e
  ;o      8    #      Ɛ&j     e
  ;o      9          Ɛ&     e
  ;o      :          Ɛ&LĔ     e
  ;o      ;          Ɛ&#Ɣ     e
  ;o      =          Ɛ&$Ȕ     f
  ;o      >          Ɛ&&ʔ     f
  ;o      6?           Ɛ&&̔     $f
  ;o      W@           Ɛ&`xΔ     +f
  ;o      KA          Ɛ&yД     i
  ;o      `B          Ɛ&zҔ     i
  ;o      |C    6      Ɛ&Ԕ     i
  ;o      D    )      Ɛ&"֔     i
  ;o      E          Ɛ&ؔ     i
  ;o      F           Ɛ&8ڔ     .  ;o      G           Ɛ&dܔ     !j
  ;o      H          Ɛ&ޔ     (j
  ;o      I          Ɛ&D     4j
  ;o      J          Ɛ&     }j
  ;o      L          Ɛ&     j
  ;o      M          Ɛ&<     j
  ;o      =N           Ɛ&d     j
  ;o      >O          Ɛ&     j
  ;o      FP    K      Ɛ&     j
  ;o      Q    B      Ɛ&<     j
  ;o      R    ,      Ɛ&     j
  ;o      T          Ɛ&|     j
  ;o      U    8      Ɛ&D     j
   ;o      JV    G      Ɛ&     j
  ;o      W    G      Ɛ&     j
  ;o      X          Ɛ&     j
  ;o      Y    (      Ɛ&     j
  ;o      #[          Ɛ&<P     j
  ;o      \          Ɛ&Q      j
  ;o      a^    -      Ɛ&S     j
  ;o      _    o      Ɛ&T     k
  ;o      `    J      Ɛ&TV     k
 	 ;o      Jb    9                              Ɛ&W	     k
 
 ;o      c    ]      Ɛ&LX     k
  ;o      d    6      Ɛ&Y
     k
  ;o      f    ?      Ɛ&Z     %k
 
 ;o      Yg    Z      Ɛ&:^     k
  ;o      h           Ɛ&v_     Ak
  ;o      i    K      Ɛ&
a     Ik
  ;o      !k          Ɛ&b     Tk
  ;o      l    +      Ɛ&Bc     \k
  ;o      m          Ɛ&Ld     ek
  ;o      n          Ɛ&e     lk
  ;o      o          Ɛ&ʶ     tk
  ;o      q    $      Ɛ&!     p
  ;o      Br    i      Ɛ&Z#     p
  ;o      s    >      Ɛ&D%     q
  ;o      t          Ɛ&'     Lq
  ;o      u    "      Ɛ&)     Tq
  ;o      w          Ɛ&+     \q
  ;o      x          Ɛ&-     hq
  ;o      &y           Ɛ&h/     wq
  ;o      z    @      Ɛ&81     |q
  ;o      `{    O      Ɛ&J3     xq
  ;o      |           Ɛ&5     q
   ;o      }    !      Ɛ&L7     q
 ! ;o      ~           Ɛ&9     q
 " ;o          5      Ɛ&;     q
 # ;o                 Ɛ&=     q
 $ ;o          O      Ɛ&?     q
 % ;o      i    g      Ɛ&A     q
 & ;o      ф    6      Ɛ&tC     q
 ' ;o          B      Ɛ&DE     q
 ( ;o      K    Z      Ɛ&VG     q
 ) ;o          )      Ɛ&0I     q
 * ;o      Љ    e      Ɛ&K     q
 + ;o      6          Ɛ&M     q
 , ;o      8    
      Ɛ&O     q
 - ;o      C          Ɛ&Q     q
 . ;o      [    f      Ɛ& S     q
 / ;o          S      Ɛ&jU     r
 0 ;o      Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files-Excluded-regen-configure: bin/*
Upstream-Name: perl
Source: http://www.perl.com/CPAN/src/5.0/
Comment:
 This package was initially debianized by Brendan O'Dea <bod@debian.org>
 on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified
 by various others, including Dominic Hargreaves <dom@earth.li> and Niko
 Tyni <ntyni@debian.org>.
 .
 Upstream Authors:
 .
    Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).
 .
 Last checked against: Perl 5.36.0

Files: *
Copyright:
 Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.
License: GPL-1+ or Artistic
Comment:
    This program is free software; you can redistribute it and/or modify
    it under the terms of either:
 .
    a) the GNU General Public License as published by the Free Software
       Foundation; either version 1, or (at your option) any later
       version, or
 .
    b) the "Artistic License" which comes with Perl.
 ----------------------------------------
 The directories ext/, dist/, and cpan/ contain separate distributions
 that have been bundled with the Perl core. The copyright and license
 status of these have been detailed separately below.
 .
 It is assumed that all the other files are part of Perl and share the
 above copyright and license information unless explicitly specified
 differently. Only the exceptions have been detailed below.
 .
 As a small portion of the files are indeed licensed differently from
 the above, all the other licenses have been collected and/or duplicated
 at the end of this file to facilitate review.

Files: builtin.c
Copyright:
 Copyright (C) 2021 by Paul Evans and others
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: perlio.c
Copyright:
 Copyright (c) 1996-2006, Nick Ing-Simmons
 Copyright (c) 2006, 2007, 2008 Larry Wall and others
License: GPL-1+ or Artistic
Comment:
 This file is a part of Perl itself, licensed as above.

Files: malloc.c
Copyright:
 Modifications Copyright Ilya Zakharevich 1996-99.
License: GPL-1+ or Artistic
Comment:
 This file is a part of Perl itself, licensed as above.

Files: mro_core.c
Copyright:
 Copyright (c) 2007 Brandon L Black
 Copyright (c) 2007, 2008 Larry Wall and others
License: GPL-1+ or Artistic
Comment:
 This file is a part of Perl itself, licensed as above.

Files: perl.c
Copyright:
 Copyright (C) 1987-2022 by Larry Wall and others
 OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel
 Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich
License: GPL-1+ or Artistic
Comment:
 This file is a part of Perl itself, licensed as above.
 ----------------------------------------
 These copyright notices are embedded in the code, and possibly apply
 to other files as well.

Files: time64.c
Copyright:
 Copyright (c) 2007-2008  Michael G Schwern
 .
 This software originally derived from Paul Sheer's pivotal_gmtime_r.c.
License: Expat

Files:
 regcomp.c
 regexec.c
Copyright:
 Copyright (c) 1986 by University of Toronto.
 Written by Henry Spencer.  Not derived from licensed software.
 .
 Alterations to Henry's code are...
 Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
   by Larry Wall and others
 .
 NOTE: this is derived from Henry Spencer's regexp code, and should not
 confused with the original package (see point 3 below).  Thanks, Henry!
License: REGCOMP, and GPL-1+ or Artistic
Comment:
 ----------------------------------------
 The "alterations to Henry's code" have the following license information:
 .
  You may distribute under the terms of either the GNU General Public
  License or the Artistic License, as specified in the README file.

Files: perly.h
Copyright:
 Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.
License: GPL-3+-WITH-BISON-EXCEPTION

Files: mkppport
Copyright:
 Copyright 2006 by Marcus Holland-Moritz <mhx@cpan.org>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it
 and/or modify it under the same terms as Perl itself.

Files: ebcdic_tables.h
Copyright:
 Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
License: Expat

Files:
 inline.h
 perl.h
Copyright:
 Copyright (C) 1993-2012 by Larry Wall and others
 Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
License: GPL-1+ or Artistic
Comment:
 These files contains tables and code adapted from
 https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this
 copyright notice:
 .
 Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>

Files: lib/unicore/*.txt
Copyright:
 © 1991-2016 Unicode®, Inc.
License: Unicode
Comment:
 The license is given as
 .
  For terms of use, see http://www.unicode.org/terms_of_use.html
 .
 See the end of this file for the full text of this license as downloaded
 from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.

Files: lib/deprecate.pm
Copyright:
 Copyright (C) 2009, 2011
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.10.0 or,
 at your option, any later version of Perl 5 you may have available.

Files: lib/B/Deparse.pm
Copyright:
 Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.
 All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software; you can redistribute and/or modify
 it under the same terms as Perl itself.

Files: dist/FindBin/lib/FindBin.pm
Copyright:
 Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: t/op/split_unicode.t
Copyright:
 Copyright (c) 1991-2006 Unicode, Inc.
License: GPL-1+ or Artistic, and Unicode
Comment:
 ----------------------------------------
 The test data was extracted from the Unicode Character Database.
 .
 It is assumed that the test code is licensed under the same terms
 as Perl.

Files: regen/ebcdic.pl
Copyright:
 Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
License: Expat
Comment:
 * Some of the tables are adapted from
 *      https://bjoern.hoehrmann.de/utf-8/decoder/dfa/

Files: regen/reentr.pl
Copyright: Copyright (c) 2002,2003 Jarkko Hietaniemi
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files:
 Porting/checkansi.pl
 Porting/valgrindpp.pl
Copyright:
 Copyright 2003, 2007 by Marcus Holland-Moritz <mhx@cpan.org>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it
 and/or modify it under the same terms as Perl itself.

Files: Porting/config_h.pl
Copyright:
 Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: Porting/git-deltatool
Copyright:
 This software is copyright (c) 2010 by David Golden.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under the same
 terms as the Perl 5 programming language system itself.

Files:
 vms/vms.c
 vms/vmsish.h
Copyright:
  Copyright (C) 1993-2015 by Charles Bailey and others.
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: win32/fcrypt.c
Copyright:
 Copyright (C) 1993 Eric Young - see README for more details
License: GPL-1+ or Artistic
Comment:
 This file is a part of Perl itself, licensed as above.

Files:
 dist/autouse/*
 dist/base/*
 dist/constant/*
 dist/Devel-SelfStubber/*
 dist/Dumpvalue/*
 dist/Env/*
 cpan/ExtUtils-Manifest/*
 dist/I18N-Collate/*
 dist/Safe/*
 ext/Fcntl/*
 ext/FileCache/*
 ext/GDBM_File/*
 ext/IPC-Open3/*
 ext/NDBM_File/*
 ext/ODBM_File/*
 ext/Opcode/*
 ext/PerlIO-encoding/*
 ext/PerlIO-scalar/*
 ext/PerlIO-via/*
 ext/POSIX/*
 ext/re/*
 cpan/Socket/*
 ext/Sys-Hostname/*
 ext/Tie-Hash-NamedCapture/*
 ext/Tie-Memoize/*
 ext/VMS-DCLsym/*
 ext/VMS-Stdio/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 There is no copyright or license information in these distributions.
 It is assumed that they are licensed under the same terms as Perl itself.

Files: cpan/Archive-Tar/*
Copyright: 2002 - 2009 Jos Boumans <kane@cpan.org>. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you may redistribute and/or modify
 it under the same terms as Perl itself.

Files:
 cpan/AutoLoader/*
 dist/SelfLoader/*
Copyright: This package has the same copyright and license as the perl core:
 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012
  by Larry Wall and others
 .
 All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This package has the same copyright and license as the perl core.

Files: cpan/autodie/*
Copyright: 2008-2009, Paul Fenwick <pjf@perltraining.com.au>
License: GPL-1+ or Artistic
Comment:
 This module is free software, you may distribute it under the
 same terms as Perl itself.

Files:
 cpan/autodie/lib/autodie/exception/system.pm
 cpan/autodie/lib/autodie/exception.pm
Copyright: 2008-2009, Paul Fenwick <pjf@perltraining.com.au>
License: GPL-1+ or Artistic
Comment:
 This is free software.  You may modify and/or redistribute this
 code under the same terms as Perl 5.10 itself, or, at your option,
 any later version of Perl 5.

Files:
 cpan/autodie/lib/autodie/Scope/GuardStack.pm
 cpan/autodie/lib/autodie/Util.pm
Copyright: Copyright 2013-2014, Niels Thykier <niels@thykier.net>
License: GPL-1+ or Artistic
Comment:
 This module is free software.  You may distribute it under the
 same terms as Perl itself.

Files: cpan/Compress-Raw-Bzip2/*
Copyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.

Files: cpan/Compress-Raw-Bzip2/bzip2-src/*
Copyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved
Comment:
 ----------------------------------------
 cpan/Compress-Raw-Bzip2/bzip2-src/README states:
  Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c
  have been modified to allow them to build with a C++ compiler.
  The file bzip2-src/bzip2-cpp.patch contains the patch
  that was used to modify the original source.
 but the patch has apparently been filtered out when including the software
 into the Perl core distribution.
License: BZIP

Files: cpan/Compress-Raw-Zlib/*
Copyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.

Files: cpan/Compress-Raw-Zlib/zlib-src/*
Copyright:
 Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
License: ZLIB

Files: cpan/Config-Perl-V/*
Copyright:
 Copyright (C) 2009-2020 H.Merijn Brand
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/CPAN/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files:
 cpan/CPAN/lib/App/Cpan.pm
 cpan/CPAN/scripts/cpan
Copyright: (c) 2001-2021, brian d foy, All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 You may redistribute this under the same terms as Perl itself.

Files: cpan/CPAN-Meta/*
Copyright:
 This software is copyright (c) 2010 by David Golden, Ricardo Signes,
 Adam Kennedy and Contributors.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files:
 cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod
 cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod
 cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod
 cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod
 cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod
Copyright: Ken Williams
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/CPAN-Meta-Requirements/*
Copyright:
 This software is copyright (c) 2010 by David Golden and Ricardo Signes.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/CPAN-Meta-YAML/*
Copyright:
 This software is copyright (c) 2010 by Adam Kennedy.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/DB_File/*
Copyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: dist/Devel-PPPort/*
Copyright:
 Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.
              Copyright (C) 2018-2020, The perl5 porters
 Version 2.x, Copyright (C) 2001, Paul Marquess.
 Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files:
 dist/Devel-PPPort/parts/inc/mess
 dist/Devel-PPPort/parts/inc/01_test
Copyright:
 Copyright (C) 2017, 2019 Pali <pali@cpan.org>
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Digest/*
Copyright:
 Copyright 1998-2006 Gisle Aas.
 Copyright 1995,1996 Neil Winton.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Digest-MD5/*
Copyright:
 Copyright 1998-2003 Gisle Aas.
 Copyright 1995-1996 Neil Winton.
 Copyright 1990-1992 RSA Data Security, Inc.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Digest-SHA/*
Copyright:
 Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/Encode/*
Copyright: Copyright 2002-2014 Dan Kogai <dankogai@cpan.org>
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/Encode/bin/encguess
Copyright: 2015 Michael LaGrasta and Dan Kogai
License: Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the terms of the the Artistic License (2.0).

Files: dist/encoding-warnings/*
Copyright:
 Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan@audreyt.org>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: dist/Exporter/lib/Exporter.pm
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 This library is free software. You can redistribute it
 and/or modify it under the same terms as Perl itself.

Files: dist/Tie-File/*
Copyright:
 Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.
License: GPL-2+ or Artistic
Comment:
 This library is free software; you may redistribute it and/or modify
 it under the same terms as Perl itself.
 .
 These terms are your choice of any of (1) the Perl Artistic Licence,
 or (2) version 2 of the GNU General Public License as published by the
 Free Software Foundation, or (3) any later version of the GNU General
 Public License.


Files: cpan/experimental/*
Copyright:
 This software is copyright (c) 2013 by Leon Timmermans.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/ExtUtils-Constant/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 There are no copyright or license notices in this distribution. It
 is assumed that the copyright and license of Perl itself applies here
 as well.
 .
 This is supported by the README of the separate CPAN distribution at
 <https://metacpan.org/release/ExtUtils-Constant>, which states:
 .
 You may distribute this work under the terms of either the GNU General
 Public License or the Artistic License, as specified in perl's README
 file.
 .
 Copyright © 2001, 2002, 2005 Nicholas Clark

Files: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm
Copyright: 2010 Gisle Aas <gisle@aas.no>
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm
Copyright: 1996- by Andreas Koenig
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm
Copyright: (c) 2015 by Leon Timmermans
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files:
 cpan/File-Fetch/*
 cpan/IPC-Cmd/*
 cpan/Module-Load/*
 cpan/Module-Load-Conditional/*
 cpan/Module-Loaded/*
 cpan/Params-Check/*
Copyright:
 There are no copyright notices in these distributions.
 Their author is Jos Boumans <kane@cpan.org>.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you may redistribute and/or modify it
 under the same terms as Perl itself.

Files: cpan/File-Path/*
Copyright:
 This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,
 James Keenan, and Richard Elberger 1995-2020. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/File-Temp/*
Copyright:
 This software is copyright (c) 2020 by Tim Jenness and the UK Particle
 Physics and Astronomy Research Council.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/Filter-Util-Call/*
Copyright:
 Copyright (c) 1995-2011 Paul Marquess. All rights reserved.
 Copyright (c) 2011-2014 Reini Urban. All rights reserved.
 Copyright (c) 2014-2017 cPanel Inc. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Getopt-Long/*
Copyright:
 Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.
License: GPL-2+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the terms of the Perl Artistic License or the
 GNU General Public License as published by the Free Software
 Foundation; either version 2 of the License, or (at your option) any
 later version.

Files: cpan/HTTP-Tiny/*
Copyright:
 This software is copyright (c) 2021 by Christian Hansen.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/IO-Compress/*
Copyright:
 Copyright (c) 1995-2022 Paul Marquess. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.

Files: cpan/IO-Socket-IP/*
Copyright:
 (C) Paul Evans, 2010-2020 -- leonerd@leonerd.org.uk
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public License
 or the Artistic License (the same terms as Perl itself)

Files: cpan/IO-Zlib/*
Copyright:
 Copyright (c) 1998-2004 Tom Hughes <tom@compton.nu>. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute
 it and/or modify it under the same terms as Perl itself.

Files: cpan/IPC-SysV/*
Copyright:
 Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.
 Version 1.x, Copyright (c) 1997, Graham Barr.
 Version 1.x, Copyright (c) 1999, Graham Barr.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/JSON-PP/*
Copyright:
 Copyright 2007-2016 by Makamaka Hannyaharamitu
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/libnet/*
Copyright:
 (C) 1995-2010 Graham Barr. All rights reserved.
 (C) 2013-2017, 2020 Steve Hay. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/libnet/Makefile.PL
Copyright:
 Copyright (C) 2014-2015, 2020 Steve Hay.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This script is free software; you can redistribute it and/or modify it under
 the same terms as Perl itself, i.e. under the terms of either the GNU
 General Public License or the Artistic License, as specified in the LICENCE
 file.

Files: cpan/Scalar-List-Utils/*
Copyright:
 Copyright (c) 1997-2009 Graham Barr <gbarr@pobox.com>. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Scalar-List-Utils/lib/Scalar/Util.pm
Copyright:
 Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
 Copyright (c) 1999 Tuomas J. Lukka <lukka@iki.fi>. All rights reserved.
 Copyright (C) 2004, 2008  Matthijs van Duin.  All rights reserved.
 Copyright (C) 2014 cPanel Inc.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Scalar-List-Utils/lib/Sub/Util.pm
Copyright: (c) 2014 Paul Evans <leonerd@leonerd.org.uk>. All rights reserved
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Locale-Maketext-Simple/*
Copyright:
 Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan@audreyt.org>
License: Expat or GPL-1+ or Artistic
Comment:
 This software is released under the MIT license cited below.  Additionally,
 when this software is distributed with Perl Kit, Version 5, you may also
 redistribute it and/or modify it under the same terms as Perl itself.

Files:
 cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po
 cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po
 cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po
 cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po
 cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po
Copyright:
 Copyright (C) All Perl Hackers everywhere
 Ton Voon <ton.voon@opsera.com>, 2009.
License: Expat or GPL-1+ or Artistic
Comment:
 ----------------------------------------
 It is assumed that these translations are licensed under the same terms as
 the rest of the Locale-Maketext-Simple distribution.

Files: cpan/Math-Complex/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/Memoize/*
Copyright:
 Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you may redistribute it and/or modify
 it under the same terms as Perl itself.
 .
 You may copy and distribute this program under the same terms as
 Perl itself.  If in doubt, write to mjd-perl-memoize+@plover.com for
 a license.

Files: cpan/MIME-Base64/*
Copyright:
 Copyright 1995-2004,2010 Gisle Aas <gisle@ActiveState.com>
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/MIME-Base64/Base64.xs
Copyright:
 Copyright 1997-2004 Gisle Aas
 Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
 .
 The tables and some of the code that used to be here was borrowed from
 metamail, which comes with this message:
 .
  Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
 .
  Permission to use, copy, modify, and distribute this material
  for any purpose and without fee is hereby granted, provided
  that the above copyright notice and this permission notice
  appear in all copies, and that the name of Bellcore not be
  used in advertising or publicity pertaining to this
  material without the specific, prior written permission
  of an authorized representative of Bellcore.  BELLCORE
  MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY
  OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS",
  WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.

Files: cpan/Module-Metadata/*
Copyright:
 Copyright (c) 2001-2011 Ken Williams.  All rights reserved.
 Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/NEXT/*
Copyright:
 Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software. It may be used, redistributed
 and/or modified under the same terms as Perl itself.

Files: cpan/parent/*
Copyright:
 Copyright (c) 2007-2017 Max Maischein <corion@cpan.org>
License: GPL-1+ or Artistic
Comment:
 This module is released under the same terms as Perl itself.

Files: cpan/PerlIO-via-QuotedPrint/*
Copyright:
 Copyright (c) 2002-2004,2012 Elizabeth Mattijsen.  All rights reserved.
 Copyright (C) 2015, 2020 Steve Hay.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/Perl-OSType/*
Copyright:
 This software is copyright (c) 2016 by David Golden.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/Pod-Checker/*
Copyright:
 Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This file is part of "PodParser". PodParser is free software;
 you can redistribute it and/or modify it under the same terms
 as Perl itself.

Files: cpan/Pod-Escapes/*
Copyright:
 Copyright (c) 2001-2004 Sean M. Burke.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/podlators/*
Copyright:
 Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra@cpan.org>
 Substantial contributions by Sean Burke <sburke@cpan.org>
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/podlators/lib/Pod/Text/Overstrike.pm
Copyright:
 Copyright 2000 by Joe Smith <Joe.Smith@inwap.com>.
 Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra@cpan.org>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or modify it
 under the same terms as Perl itself.

Files:
 cpan/podlators/t/data/snippets/README
 cpan/podlators/t/data/basic.cap
 cpan/podlators/t/data/basic.clr
 cpan/podlators/t/data/basic.man
 cpan/podlators/t/data/basic.ovr
 cpan/podlators/t/data/basic.pod
 cpan/podlators/t/data/basic.txt
Copyright:
 Copyright 2001-2018 Russ Allbery <rra@cpan.org>
License: RRA-KEEP-THIS-NOTICE
Comment:
 The license text can be found at the end of this file.

Files:
 cpan/podlators/t/docs/pod-spelling.t
 cpan/podlators/t/docs/pod.t
 cpan/podlators/t/docs/synopsis.t
 cpan/podlators/t/lib/Test/RRA.pm
 cpan/podlators/t/lib/Test/RRA/Config.pm
 cpan/podlators/t/style/minimum-version.t
 cpan/podlators/t/style/module-version.t
 cpan/podlators/t/style/strict.t
Copyright:
 Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University
 Copyright 2014-2016, 2019 Russ Allbery <eagle@eyrie.org>
License: Expat

Files:
 cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm
 cpan/podlators/t/docs/spdx-license.t
 cpan/podlators/t/style/obsolete-strings.t
Copyright: Copyright 2016, 2018-2019 Russ Allbery <eagle@eyrie.org>
License: Expat

Files: cpan/podlators/t/man/no-encode.t
Copyright:
 Copyright 2016 Niko Tyni <ntyni@iki.fi>
 Copyright 2016, 2018-2019 Russ Allbery <rra@cpan.org>
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Pod-Simple/*
Copyright:
 Copyright (c) 2002-2004 Sean M. Burke.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm
Copyright:
 Copyright (c) 2003-2005 Allison Randal.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files:
 cpan/Pod-Simple/t/perlfaq.pod
 cpan/Pod-Simple/t/perlfaqo.txt
Copyright:
 Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.
 All rights reserved.
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 This document  is part of the perlfaq distribution. A newer version
 of it is also included in pod/perlfaq3.pod.
 .
 The license notice in the document is:
 .
  When included as an integrated part of the Standard Distribution
  of Perl or of its documentation (printed or otherwise), this works is
  covered under Perl's Artistic License.  For separate distributions of
  all or part of this FAQ outside of that, see L<perlfaq>.
 .
  Irrespective of its distribution, all code examples here are in the public
  domain.  You are permitted and encouraged to use this code and any
  derivatives thereof in your own programs for fun or for profit as you
  see fit.  A simple comment in the code giving credit to the FAQ would
  be courteous but is not required.
 .
 The corresponding license in pod/perlfaq.pod is:
 .
  This document is available under the same terms as Perl itself. Code
  examples in all the perlfaq documents are in the public domain. Use
  them as you see fit (and at your own risk with no warranty from anyone).

Files: cpan/Pod-Usage/*
Copyright:
 Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.
 Copyright (c) 2001-2016 by Marek Rouchal.
License: GPL-1+ or Artistic
Comment:
 Pod::Usage (the distribution) is licensed under the same terms as Perl

Files: cpan/Pod-Usage/t/inc/Pod/PlainText.pm
Copyright:
 Copyright 1999-2000 by Russ Allbery <rra@stanford.edu>
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Sys-Syslog/*
Copyright:
 Copyright (C) 1990-2012 by Larry Wall and others.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Sys-Syslog/fallback/syslog.h
Copyright:
 Copyright (c) 1982, 1986, 1988, 1993
      The Regents of the University of California.  All rights reserved.
License: BSD-3-clause-with-weird-numbering

Files: cpan/Term-ANSIColor/*
Copyright:
 Copyright 1996 Zenin
 Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra@cpan.org>
 Copyright 2012 Kurt Starsinic <kstarsinic@gmail.com>
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or modify
 it under the same terms as Perl itself.

Files:
 cpan/Term-ANSIColor/t/lib/Test/RRA.pm
Copyright:
 Copyright 2016, 2018-2019 Russ Allbery <eagle@eyrie.org>
 Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University
License: Expat

Files:
 cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm
Copyright:
 Copyright 2015, 2016, 2019 Russ Allbery <eagle@eyrie.org>
 Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University
License: Expat

Files: cpan/Term-Cap/*
Copyright: 1995-2015 (c) perl5 porters.
License: GPL-1+ or Artistic
Comment:
 This software is free software and can be modified and distributed under
 the same terms as Perl itself.

Files: cpan/Test-Harness/*
Copyright:
 Copyright (c) 2007-2011, Andy Armstrong <andy@hexten.net>. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Test-Harness/lib/TAP/Parser.pm
Copyright:
 Copyright 2006-2008 Curtis "Ovid" Poe, all rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm
Copyright:
 Copyright 2007-2011 Andy Armstrong.
 Portions copyright 2006-2008 Adam Kennedy.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: cpan/Test-Simple/*
Copyright:
 Copyright 2001-2008 by Michael G Schwern <schwern@pobox.com>.
 Copyright 2019-2020 Chad Granum <exodist@cpan.org>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Test-Simple/lib/Test/Builder.pm
Copyright:
 Copyright 2002-2008 by chromatic <chromatic@wgz.org> and
                       Michael G Schwern E<schwern@pobox.com>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm
Copyright:
 Copyright Mark Fowler <mark@twoshortplanks.com> 2002.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.

Files: cpan/Test-Simple/lib/Test/Builder/Tester.pm
Copyright:
 Copyright Mark Fowler <mark@twoshortplanks.com> 2002, 2004.
 .
 Some code taken from Test::More and Test::Catch, written by by
 Michael G Schwern <schwern@pobox.com>.  Hence, those parts
 Copyright Michael G Schwern 2001.  Used and distributed with
 permission.
 .
 This module is copyright 2005 Fergal Daly <fergal@esatclear.ie>, some parts
 are based on other people's work.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.

Files: cpan/Test-Simple/lib/Test/Tutorial.pod
Copyright:
 Copyright 2001 by Michael G Schwern <schwern@pobox.com>.
License: GPL-1+ or Artistic
Comment:
 This documentation is free; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 .
 Irrespective of its distribution, all code examples in these files
 are hereby placed into the public domain.  You are permitted and
 encouraged to use this code in your own programs for fun
 or for profit as you see fit.  A simple comment in the code giving
 credit would be courteous but is not required.

Files: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm
Copyright:
 Copyright (c) 1996 by Eryq.  All rights reserved.
 Copyright (c) 1999,2001 by ZeeGee Software Inc.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.

Files: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm
Copyright: Copyright 2003 by Fergal Daly <fergal@esatclear.ie>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.

Files:
 cpan/Test-Simple/lib/Test/use/ok.pm
 cpan/Test-Simple/lib/ok.pm
Copyright: none
 To the extent possible under law, 唐鳳 has waived all copyright and related
 or neighboring rights to L<Test-use-ok>
License:  CC0-1.0
Comment:
 ----------------------------------------
 The file links to http://creativecommons.org/publicdomain/zero/1.0/
 and the full license text as retrieved from there can be found at the
 end of this file.

Files: cpan/Text-Balanced/*
Copyright:
 Copyright 1997 - 2001 Damian Conway. All Rights Reserved.
 Copyright (C) 2009 Adam Kennedy.
 Copyright (C) 2015 Steve Hay.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software; you can redistribute it and/or modify it under the
 same terms as Perl itself, i.e. under the terms of either the GNU General Public
 License or the Artistic License, as specified in the F<LICENCE> file.

Files: cpan/Text-ParseWords/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 There are no copyright notices this distribution.
 .
 This library is free software; you may redistribute and/or modify it
 under the same terms as Perl itself.

Files: cpan/Text-Tabs/*
Copyright:
 Copyright (C) 1996-2009 David Muir Sharnoff.
 Copyright (C) 2005 Aristotle Pagaltzis
 Copyright (C) 2012-2013 Google, Inc.
License: TEXT-TABS

Files: cpan/Tie-RefHash/*
Copyright:
 This software is copyright (c) 2006 by יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files:
 cpan/Win32API-File/*
 cpan/ExtUtils-Install/*
 cpan/Math-BigInt/*
 cpan/Math-BigInt-FastCalc/*
 cpan/Math-BigRat/*
 dist/Thread-Queue/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or modify
 it under the same terms as Perl itself.
 ----------------------------------------
 These distributions include no copyright notices but have
 the same explicit licensing information.

Files:
 cpan/bignum/*
Copyright:
 (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or modify
 it under the same terms as Perl itself.

Files: cpan/Time-Local/*
Copyright:
 Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: cpan/Time-Piece/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 This module is free software, you may distribute it under the same
 terms as Perl.

Files: cpan/Time-Piece/Piece.xs
Copyright:
 strptime copied from freebsd with the following copyright:
 Copyright (c) 1994 Powerdog Industries.  All rights reserved.
License: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG
Comment:
 ----------------------------------------
 The strptime function is licensed under the BSD-like license included
 below. It is assumed that the other parts are licensed under the same
 terms as the rest of the distribution.

Files: cpan/Unicode-Collate/*
Copyright:
 This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All
 rights reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Unicode-Collate/Collate/allkeys.txt
Copyright:
 Copyright (c) 2020 Unicode, Inc.
License: Unicode
Comment:
 For terms of use, see http://www.unicode.org/terms_of_use.html
 ----------------------------------------
 See below for the full text of this license as downloaded from the above URL
 on Tue, 26 Apr 2011 14:41:24 +0300.

Files: dist/Unicode-Normalize/*
Copyright:
 Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: cpan/Win32/*
Copyright: (c) 1995 Microsoft Corporation. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 There are no copyright notices or license information in this distribution,
 but the README file of the separate CPAN distribution at
 <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:
 .
 This module is free software; you may redistribute it and/or modify it
 under the same terms as Perl itself.
 .
 The "Perl for Win32" source code was licensed under the same terms
 as Perl itself and contained this copyright notice:
 .
  (c) 1995 Microsoft Corporation. All rights reserved.
     Developed by ActiveWare Internet Corp.

Files: dist/Attribute-Handlers/*
Copyright:
 Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software. It may be used, redistributed
 and/or modified under the same terms as Perl itself.

Files: dist/Carp/*
Copyright:
 Copyright (c) 1994-2013 Larry Wall
 Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram@fysh.org>
License: GPL-1+ or Artistic
Comment:
 This module is free software. It may be used, redistributed
 and/or modified under the same terms as Perl itself.

Files: dist/Data-Dumper/*
Copyright:
 Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: dist/ExtUtils-CBuilder/*
Copyright:
 Copyright (c) 2003-2005 Ken Williams.  All rights reserved.
 Copyright (c) 2012-2020 Ken Williams.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: dist/ExtUtils-ParseXS/*
Copyright:
 Copyright 2002-2012 by Ken Williams, David Golden and other contributors.
 All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
 .
 Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5
 Porters, which was released under the same license terms.

Files: dist/Filter-Simple/*
Copyright:
 Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software. It may be used, redistributed
 and/or modified under the same terms as Perl itself.

Files: dist/if/*
Copyright: This software is copyright (c) 2002 by Ilya Zakharevich.
License: GPL-1+ or Artistic
Comment:
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Files: dist/I18N-LangTags/*
Copyright:
 Copyright 1998+, Sean M. Burke <sburke@cpan.org>, all rights
 reserved.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: dist/I18N-LangTags/lib/I18N/LangTags/List.pm
Copyright:
 Copyright (c) 2001+ Sean M. Burke. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 You can redistribute and/or modify this document under the same terms
 as Perl itself.

Files: dist/IO/*
Copyright:
 Copyright (c) 1996-2003 Graham Barr <gbarr@pobox.com>. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: dist/IO/lib/IO/Socket.pm
Copyright:
 Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
 Copyright 2001, Lincoln Stein <lstein@cshl.org>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
 .
 The atmark() implementation: Copyright 2001, Lincoln Stein <lstein@cshl.org>.
 This module is distributed under the same terms as Perl itself.
 Feel free to use, modify and redistribute it as long as you retain
 the correct attribution.

Files: dist/lib/*
Copyright: as above for 'Files: *'
License: GPL-1+ or Artistic
Comment:
 This package has the same copyright and license as the perl core.

Files: dist/Locale-Maketext/*
Copyright:
 Copyright 1999-2004, Sean M. Burke <sburke@cpan.org>, all rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod
Copyright: 1999 The Perl Journal.
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files: dist/Module-CoreList/*
Copyright:
 Copyright (C) 2002-2009 Richard Clamp.  All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or modify
 it under the same terms as Perl itself.

Files: dist/Module-CoreList/corelist
Copyright:
 Copyright (c) 2002-2007 by D.H. aka PodMaster
License: GPL-1+ or Artistic
Comment:
 This program is distributed under the same terms as perl itself.

Files: dist/Module-CoreList/lib/Module/CoreList/Utils.pm
Copyright:
 Copyright (C) 2013 Chris Williams.  All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This module is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: dist/Net-Ping/*
Copyright:
 Copyright (c) 2017-2020, Reini Urban.  All rights reserved.
 Copyright (c) 2016, cPanel Inc.  All rights reserved.
 Copyright (c) 2012, Steve Peters.  All rights reserved.
 Copyright (c) 2002-2003, Rob Brown.  All rights reserved.
 Copyright (c) 2001, Colin McMillen.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you may redistribute it and/or
 modify it under the same terms as Perl itself.

Files: dist/PathTools/*
Copyright:
 Copyright (c) 2004 by the Perl 5 Porters.  All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: dist/PathTools/Cwd.xs
Copyright:
 Copyright (c) 2004 by the Perl 5 Porters.  All rights reserved.
 Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru>
License: GPL-1+ or Artistic, and BSD-3-clause-GENERIC
Comment:
 ----------------------------------------
 The main license applies to most of the code:
 .
  This program is free software; you can redistribute it and/or modify
  it under the same terms as Perl itself.
 .
 but portions of it have been taken from a BSD variant and are licensed
 under the terms of the "BSD-3-clause-GENERIC" license included in this file.
 .
 dist/PathTools/Cwd.pm states:
 .
  Portions of the C code in this library are copyright (c) 1994 by the
  Regents of the University of California.  All rights reserved.  The
  license on this code is compatible with the licensing of the rest of
  the distribution - please see the source code in F<Cwd.xs> for the
  details.
 .
 but, as discussed in
  http://rt.cpan.org/Public/Bug/Display.html?id=64116
 this is outdated and dist/PathTools/Cwd.xs itself contains the correct
 information.

Files: cpan/Pod-Perldoc/*
Copyright:
 Copyright (c) 2002-2007 Sean M. Burke.
 Copyright (c) 2011 Mark Allen.  All rights reserved.
 Copyright (c) 2011 brian d foy. All rights reserved.
 Copyright (c) 2017 Mark Allen.
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Files: dist/Storable/*
Copyright:
 Copyright (c) 1995-2001, Raphael Manfredi
 Copyright (c) 2002-2014 by the Perl 5 Porters
 Copyright (c) 2016,2017 cPanel Inc
 Copyright (c) 2017, Reini Urban
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl 5 itself.

Files: dist/Storable/t/forgive.t
Copyright:
 Copyright (c) 1995-2000, Raphael Manfredi
 (C) Copyright 1997, Universitat Dortmund, all rights reserved.
License: GPL-1+ or Artistic
Comment:
 You may redistribute only under the same terms as Perl 5, as specified
 in the README file that comes with the distribution.

Files:
 dist/Storable/t/attach_errors.t
 dist/Storable/t/attach_singleton.t
 dist/Storable/t/circular_hook.t
Copyright:
 Copyright 2005, Adam Kennedy.
License: GPL-1+ or Artistic
Comment:
 You may redistribute only under the same terms as Perl 5, as specified
 in the README file that comes with the distribution.

Files:
 dist/Storable/t/code.t
 dist/Storable/t/sig_die.t
Copyright:
 Copyright (c) 2002 Slaven Rezic
License: GPL-1+ or Artistic
Comment:
 You may redistribute only under the same terms as Perl 5, as specified
 in the README file that comes with the distribution.

Files: dist/threads/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 threads is released under the same license as Perl.

Files: dist/threads-shared/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 threads::shared is released under the same license as Perl.

Files: dist/threads-shared/shared.xs
Copyright:
 Copyright (c) 2001-2002, 2006 Larry Wall
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: dist/Test/*
Copyright:
 Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.
 Copyright (c) 2001-2002 Michael G. Schwern.
 Copyright (c) 2002-2004 Sean M. Burke.
License: GPL-1+ or Artistic
Comment:
 This package is free software and is provided "as is" without express
 or implied warranty.  It may be used, redistributed and/or modified
 under the same terms as Perl itself.

Files: dist/Time-HiRes/*
Copyright:
 Copyright (c) 1996-2002 Douglas E. Wegscheid.  All rights reserved.
 Copyright (c) 2002-2010 Jarkko Hietaniemi.
 Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram@fysh.org>
 All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: dist/XSLoader/*
Copyright:
 Copyright (C) 1990-2011 by Larry Wall and others.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: ext/attributes/*
Copyright:
 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
 by Larry Wall and others
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files:
 ext/Amiga-ARexx/*
 ext/Amiga-Exec/*
Copyright:
 Copyright (C) 2013 by Andy Broad.
License: GPL-1+ or Artistic
Comment:
 There is no license information included. It is assumed that this
 distribution is licensed under the same terms as Perl itself.

Files: ext/B/*
Copyright:
 Copyright (c) 1996, 1997, 1998 Malcolm Beattie
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: ext/B/B/Concise.pm
Copyright:
 Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute and/or modify it
 under the same terms as Perl itself.

Files: ext/Devel-Peek/*
Copyright:
 Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: ext/DynaLoader/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 There is no license information included that clearly applies to the
 whole of this distribution. It is assumed that it is licensed under
 the same terms as Perl itself.

Files: ext/DynaLoader/dl_aix.xs
Copyright:
 This is an unpublished work copyright (c) 1992 Helios Software GmbH
 3000 Hannover 1, Germany
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 It is assumed that this file is licensed under the same terms as Perl itself.

Files: ext/DynaLoader/dl_freemint.xs
Copyright:
 based upon the file "dl.c", which is Copyright (c) 1994, Larry Wall
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: ext/Errno/*
Copyright:
 Copyright (c) 1997-8 Graham Barr. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: ext/File-Glob/*
Copyright: unknown
License: Artistic
Comment:
 The Perl interface was written by Nathan Torkington <gnat@frii.com>,
 and is released under the artistic license.  Further modifications
 were made by Greg Bacon <gbacon@cs.uah.edu>, Gurusamy Sarathy
 <gsar@activestate.com>, and Thomas Wegner <wegner_thomas@yahoo.com>.

Files:
 ext/File-Glob/bsd_glob.c
 ext/File-Glob/bsd_glob.h
Copyright:
 Copyright (c) 1989, 1993
 The Regents of the University of California.  All rights reserved.
 .
 This code is derived from software contributed to Berkeley by
 Guido van Rossum.
License: BSD-3-clause

Files: ext/Hash-Util/*
Copyright: unknown
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 There is no license information in this distribution.
 It is assumed that it is licensed under the same terms as Perl itself.

Files: ext/Hash-Util/lib/Hash/Util.pm
Copyright:
 hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 As above, it is assumed that this file is licensed under the same terms
 as Perl itself.
 .
 The copyright and license information of Array::RefElem, as fetched from
 <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as
 follows:
 .
  Copyright 2000 Gisle Aas <gisle@aas.no>
 .
  This library is free software; you can redistribute it and/or
  modify it under the same terms as Perl itself.

Files: ext/Hash-Util-FieldHash/*
Copyright:
 Copyright (C) 2006-2007 by (Anno Siegel)
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.8.7 or,
 at your option, any later version of Perl 5 you may have available.

Files: ext/I18N-Langinfo/*
Copyright:
 Copyright 2001 by Jarkko Hietaniemi
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: ext/mro/*
Copyright:
 Copyright (c) 2007 Brandon L Black
 Copyright (c) 2008,2009 Larry Wall and others
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: ext/Pod-Html/*
Copyright: unknown
License: Artistic
Comment:
 This program is distributed under the Artistic License.

Files: ext/SDBM_File/*
Copyright: none
License: SDBM-PUBLIC-DOMAIN

Files: ext/Win32CORE/*
Copyright:
 Copyright (C) 2007 by Larry Wall and others
License: GPL-1+ or Artistic
Comment:
 You may distribute under the terms of either the GNU General Public
 License or the Artistic License, as specified in the README file.

Files: ext/XS-APItest/*
Copyright:
 Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.
 All Rights Reserved.
 .
 Copyright (C) 2009 Andrew Main (Zefram) <zefram@fysh.org>
License: GPL-1+ or Artistic
Comment:
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files: ext/XS-Typemap/*
Copyright:
 Copyright (C) 2001 Tim Jenness All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.

Files:
 pod/perldebtut.pod
 pod/perlperf.pod
Copyright:
 Richard Foley <richard.foley@rfi.net> Copyright (c) 2000
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 These files are a part of Perl itself, licensed as above.

Files: pod/perlembed.pod
Copyright:
 Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant.  All
 Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files: pod/perlexperiment.pod
Copyright:
 Copyright 2010, brian d foy <brian.d.foy@gmail.com>
License: GPL-1+ or Artistic
Comment:
 You can use and redistribute this document under the same terms as Perl
 itself.

Files:
 cpan/perlfaq/lib/perlfaq*.pod
Copyright:
 Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
 other authors as noted. All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This documentation is free; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 .
 Irrespective of its distribution, all code examples here are in the public
 domain. You are permitted and encouraged to use this code and any
 derivatives thereof in your own programs for fun or for profit as you
 see fit. A simple comment in the code giving credit to the FAQ would
 be courteous but is not required.

Files: cpan/perlfaq/lib/perlfaq.pod
Copyright:
 Tom Christiansen wrote the original version of this document.
 brian d foy <bdfoy@cpan.org> wrote this version. See the
 individual perlfaq documents for additional copyright information.
License: GPL-1+ or Artistic
Comment:
 This document is available under the same terms as Perl itself. Code
 examples in all the perlfaq documents are in the public domain. Use
 them as you see fit (and at your own risk with no warranty from anyone).

Files:
 pod/perlfilter.pod
 pod/perlthrtut.pod
Copyright:
 copyright 1998 The Perl Journal
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files: cpan/perlfaq/lib/perlglossary.pod
Copyright:
 Based on the Glossary of I<Programming Perl>, Fourth Edition,
 by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.
 Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files: pod/perlmodinstall.pod
Copyright:
 Copyright (C) 1998, 2002, 2003 Jon Orwant.  All Rights Reserved.
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files: pod/perlpodstyle.pod
Copyright:
 Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery
 <rra@cpan.org>
License: RRA-KEEP-THIS-NOTICE
Comment:
 The license text can be found at the end of this file.

Files: pod/perlreapi.pod
Copyright:
 Copyright 2006 Yves Orton and 2007 Ævar Arnfjörð Bjarmason.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or modify it under
 the same terms as Perl itself.

Files: pod/perlreftut.pod
Copyright:
 Copyright 1998 The Perl Journal.
License: GPL-1+ or Artistic
Comment:
 This documentation is free; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 .
 Irrespective of its distribution, all code examples in these files are
 hereby placed into the public domain.  You are permitted and
 encouraged to use this code in your own programs for fun or for profit
 as you see fit.  A simple comment in the code giving credit would be
 courteous but is not required.

Files:
 pod/perlrequick.pod
 pod/perlretut.pod
Copyright:
 Copyright (c) 2000 Mark Kvale
 All rights reserved.
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files: pod/perlunicook.pod
Copyright:
 Copyright (c) 2012 Tom Christiansen
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files: pod/perluniintro.pod
Copyright:
 Copyright 2001-2011 Jarkko Hietaniemi <jhi@iki.fi>
License: GPL-1+ or Artistic
Comment:
 This document may be distributed under the same terms as Perl itself.

Files:
 Copying
 pod/perlgpl.pod
Copyright:
  Copyright (C) 1989 Free Software Foundation, Inc.
                 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
License: DONT-CHANGE-THE-GPL

Files: t/io/shm.t
Copyright:
 Copyright (C) 1999, Graham Barr <gbarr@pobox.com>.
 Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx@cpan.org>.
License: GPL-1+ or Artistic
Comment:
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.

Files: regen-configure/*
Copyright:
 Copyright (c) 1996-1998, Andy Dougherty
 Copyright (c) 1999-2011, H.Merijn Brand
License: GPL-1+ or Artistic or Artistic-dist
Comment:
 This directory is a snapshot of the upstream metaconfig repository,
 containing code originally forked from 'dist' upstream by Larry
 Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified
 upstream code, but the other subdirectories contain mixed code.
 Some units are dual licensed and some are specifically Artistic-only.
 .
 The bin/ subdirectory is being filtered from the upstream snapshot
 (with the Files-Excluded mechanism at the top of this copyright file)
 because it contains files generated from dist sources. The Debian
 package build uses the tools from the separate 'dist' package.
 .
 From regen-configure/U/README:
 .
 You may distribute the files contained in this distribution
 under the terms of either
 .
    a) the "Artistic License" which comes with Perl, or
 .
    b) the "Artistic License" which comes with dist, or
 .
    c) the GNU General Public License as published by the Free
    Software Foundation; either version 1, or (at your option) any
    later version (see the file "Copying" that comes with the
    Perl distribution).
 .
 The full text of the "Artistic License" which comes with dist
 differs slightly from the one that is in /usr/share/common-licenses
 on Debian systems, and can be found later in this file under the
 "Artistic-dist" tag.

Files: regen-configure/dist/*
Copyright:
 Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi
 Copyright (c) 1996,1998 Andy Dougherty
 Copyright (c) 1996, Cygnus Support
 Copyright (c) 1996, Spider Boardman
 Copyright (c) 1996, Sven Verdoolaege
 Copyright (c) 1997, Chip Salzenberg
 Copyright (c) 1998 Andy Dougherty
 Copyright (c) 1999-2001 Jarkko Hietaniemi
License: Artistic-dist
Comment:
 This subdirectory contains unmodified 'dist' code that is
 licensed under the modified Artistic license detailed below
 under the "Artistic-dist" tag. The different files have
 separate copyright notices, collected above.

Files: regen-configure/U/*
Copyright:
 Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
 Copyright (c) 1996-2010, Andy Dougherty
 Copyright (c) 1996, Sven Verdoolaege
 Copyright (c) 1998-2016 Jarkko Hietaniemi
 Copyright (c) 2004-2018 H.Merijn Brand
 Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark
 Copyright (c) 2011, H.Merijn Brand & Tony Cook
 Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand
 Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo
 Copyright (c) 2016 Tony Cook
 Copyright (c) 2017, Lukas Mai
 Copyright (c) 2017 Dagfinn Ilmari Mannsåker
 Copyright (c) 2017-2019, Karl Williamson
 Copyright (c) 2020, Raphael Manfredi and Karl Williamson
 Copyright (c) 2021 H.Merijn Brand, Karl Williamson
 Copyright (c) 2021, H.Merijn Brand & Tony Cook
 Copyright (c) 2021 Nicholas Clark & H.Merijn Brand
License: Artistic or GPL-1+ or Artistic-dist
Comment:
 From regen-configure/U/README:
 .
  The units in the "modified" directory have been derived from units
  associated with the metaconfig program of Raphael Manfredi's "dist"
  distribution.  These units list Raphael Manfredi as the Copyright holder.
  dist is distributed under a modified version of the Perl Artistic License.
  Clause 7 of this modified license as contained in dist-3.0-pl60 provides:
 .
    7. You may reuse parts of this Package in your own programs, provided
    that you explicitly state where you got them from, in the source code
    (and, left to your courtesy, in the documentation), duplicating
    all the associated copyright notices and disclaimers. Besides
    your changes, if any, must be clearly marked as such. Parts reused
    that way will no longer fall under this license if, and only if,
    the name of your program(s) have no immediate connection with the
    name of the Package itself or its associated programs.  You may then
    apply whatever restrictions you wish on the reused parts or choose
    to place them in the Public Domain--this will apply only within the
    context of your package.
 .
  In accordance with this clause, the versions of these units
  contained here are made available under the same terms as the
  rest of the units.
 .
 It is assumed that the above relicensing also applies to all files in
 the other subdirectories that are declared to be licensed under the
 same modified Artistic license.
 .
 The modified license can be found later in this file under the
 "Artistic-dist" tag.

Files: utf8.c
Copyright:
 Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
License: GPL-1+ or Artistic, and Expat
Comment:
    This program is free software; you can redistribute it and/or modify
    it under the terms of either:
 .
    a) the GNU General Public License as published by the Free Software
       Foundation; either version 1, or (at your option) any later
       version, or
 .
    b) the "Artistic License" which comes with Perl.

Files: debian/*
Copyright:
 Portions of the Debian packaging are
  Copyright 2008-2011 Niko Tyni <ntyni@debian.org>
  Copyright 2011 Dominic Hargreaves <dom@earth.li>
 The other people listed in debian/changelog are most probably
 copyright holders too, but they have not included explicit copyright
 or licensing information.
License: GPL-1+ or Artistic
Comment:
 ----------------------------------------
 The portions by Niko Tyni and Dominic Hargreaves may be redistributed
 and/or modified under the same terms as Perl itself. It is assumed that
 other contributors have placed their contributions under a compatible
 license.

License: LGPL-2.1
 On Debian GNU/Linux systems, the complete text of the LGPL 2.1
 license can be found in `/usr/share/common-licenses/LGPL-2.1'.

License: GPL-1+
 On Debian GNU/Linux systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL-1'.

License: GPL-2+
 On Debian GNU/Linux systems, the complete text of version 2 of
 the GNU General Public License can be found in
 `/usr/share/common-licenses/GPL-2'.

License: Artistic
 On Debian GNU/Linux systems, the complete text of the
 Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.

License: Artistic-2
 Copyright (c) 2000-2006, The Perl Foundation.
 .
 Everyone is permitted to copy and distribute verbatim copies of this
 license document, but changing it is not allowed.
 .
 Preamble
 .
 This license establishes the terms under which a given free software
 Package may be copied, modified, distributed, and/or redistributed.
 The intent is that the Copyright Holder maintains some artistic
 control over the development of that Package while still keeping the
 Package available as open source and free software.
 .
 You are always permitted to make arrangements wholly outside of this
 license directly with the Copyright Holder of a given Package. If the
 terms of this license do not permit the full use that you propose to
 make of the Package, you should contact the Copyright Holder and seek
 a different licensing arrangement.
 .
 Definitions
 .
 "Copyright Holder" means the individual(s) or organization(s) named in
 the copyright notice for the entire Package.
 .
 "Contributor" means any party that has contributed code or other
 material to the Package, in accordance with the Copyright Holder's
 procedures.
 .
 "You" and "your" means any person who would like to copy, distribute,
 or modify the Package.
 .
 "Package" means the collection of files distributed by the Copyright
 Holder, and derivatives of that collection and/or of those files. A
 given Package may consist of either the Standard Version, or a
 Modified Version.
 .
 "Distribute" means providing a copy of the Package or making it
 accessible to anyone else, or in the case of a company or
 organization, to others outside of your company or organization.
 .
 "Distributor Fee" means any fee that you charge for Distributing this
 Package or providing support for this Package to another party. It
 does not mean licensing fees.
 .
 "Standard Version" refers to the Package if it has not been modified,
 or has been modified only in ways explicitly requested by the
 Copyright Holder.
 .
 "Modified Version" means the Package, if it has been changed, and such
 changes were not explicitly requested by the Copyright Holder.
 .
 "Original License" means this Artistic License as Distributed with the
 Standard Version of the Package, in its current version or as it may
 be modified by The Perl Foundation in the future.
 .
 "Source" form means the source code, documentation source, and
 configuration files for the Package.
 .
 "Compiled" form means the compiled bytecode, object code, binary, or
 any other form resulting from mechanical transformation or translation
 of the Source form.
 .
 Permission for Use and Modification Without Distribution
 .
 (1) You are permitted to use the Standard Version and create and use
 Modified Versions for any purpose without restriction, provided that
 you do not Distribute the Modified Version.
 .
 Permissions for Redistribution of the Standard Version
 .
 (2) You may Distribute verbatim copies of the Source form of the
 Standard Version of this Package in any medium without restriction,
 either gratis or for a Distributor Fee, provided that you duplicate
 all of the original copyright notices and associated disclaimers. At
 your discretion, such verbatim copies may or may not include a
 Compiled form of the Package.
 .
 (3) You may apply any bug fixes, portability changes, and other
 modifications made available from the Copyright Holder. The resulting
 Package will still be considered the Standard Version, and as such
 will be subject to the Original License.
 .
 Distribution of Modified Versions of the Package as Source
 .
 (4) You may Distribute your Modified Version as Source (either gratis
 or for a Distributor Fee, and with or without a Compiled form of the
 Modified Version) provided that you clearly document how it differs
 from the Standard Version, including, but not limited to, documenting
 any non-standard features, executables, or modules, and provided that
 you do at least ONE of the following:
 .
 (a) make the Modified Version available to the Copyright Holder of the
 Standard Version, under the Original License, so that the Copyright
 Holder may include your modifications in the Standard Version. (b)
 ensure that installation of your Modified Version does not prevent the
 user installing or running the Standard Version. In addition, the
 Modified Version must bear a name that is different from the name of
 the Standard Version. (c) allow anyone who receives a copy of the
 Modified Version to make the Source form of the Modified Version
 available to others under (i) the Original License or (ii) a license
 that permits the licensee to freely copy, modify and redistribute the
 Modified Version using the same licensing terms that apply to the copy
 that the licensee received, and requires that the Source form of the
 Modified Version, and of any works derived from it, be made freely
 available in that license fees are prohibited but Distributor Fees are
 allowed.
 .
 Distribution of Compiled Forms of the Standard Version or Modified
 Versions without the Source
 .
 (5) You may Distribute Compiled forms of the Standard Version without
 the Source, provided that you include complete instructions on how to
 get the Source of the Standard Version. Such instructions must be
 valid at the time of your distribution. If these instructions, at any
 time while you are carrying out such distribution, become invalid, you
 must provide new instructions on demand or cease further distribution.
 If you provide valid instructions or cease distribution within thirty
 days after you become aware that the instructions are invalid, then
 you do not forfeit any of your rights under this license.
 .
 (6) You may Distribute a Modified Version in Compiled form without the
 Source, provided that you comply with Section 4 with respect to the
 Source of the Modified Version.
 .
 Aggregating or Linking the Package
 .
 (7) You may aggregate the Package (either the Standard Version or
 Modified Version) with other packages and Distribute the resulting
 aggregation provided that you do not charge a licensing fee for the
 Package. Distributor Fees are permitted, and licensing fees for other
 components in the aggregation are permitted. The terms of this license
 apply to the use and Distribution of the Standard or Modified Versions
 as included in the aggregation.
 .
 (8) You are permitted to link Modified and Standard Versions with
 other works, to embed the Package in a larger work of your own, or to
 build stand-alone binary or bytecode versions of applications that
 include the Package, and Distribute the result without restriction,
 provided the result does not expose a direct interface to the Package.
 .
 Items That are Not Considered Part of a Modified Version
 .
 (9) Works (including, but not limited to, modules and scripts) that
 merely extend or make use of the Package, do not, by themselves, cause
 the Package to be a Modified Version. In addition, such works are not
 considered parts of the Package itself, and are not subject to the
 terms of this license.
 .
 General Provisions
 .
 (10) Any use, modification, and distribution of the Standard or
 Modified Versions is governed by this Artistic License. By using,
 modifying or distributing the Package, you accept this license. Do not
 use, modify, or distribute the Package, if you do not accept this
 license.
 .
 (11) If your Modified Version has been derived from a Modified Version
 made by someone other than you, you are nevertheless required to
 ensure that your Modified Version complies with the requirements of
 this license.
 .
 (12) This license does not grant you the right to use any trademark,
 service mark, tradename, or logo of the Copyright Holder.
 .
 (13) This license includes the non-exclusive, worldwide,
 free-of-charge patent license to make, have made, use, offer to sell,
 sell, import and otherwise transfer the Package with respect to any
 patent claims licensable by the Copyright Holder that are necessarily
 infringed by the Package. If you institute patent litigation
 (including a cross-claim or counterclaim) against any party alleging
 that the Package constitutes direct or contributory patent
 infringement, then this Artistic License to you shall terminate on the
 date that such litigation is filed.
 .
 (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT
 HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED
 WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT
 PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT
 HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
 OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BZIP
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  .
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  .
  2. The origin of this software must not be misrepresented; you must
     not claim that you wrote the original software.  If you use this
     software in a product, an acknowledgment in the product
     documentation would be appreciated but is not required.
  .
  3. Altered source versions must be plainly marked as such, and must
     not be misrepresented as being the original software.
  .
  4. The name of the author may not be used to endorse or promote
     products derived from this software without specific prior written
     permission.
  .
  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  .
  Julian Seward, jseward@bzip.org
  bzip2/libbzip2 version 1.0.5 of 10 December 2007

License: ZLIB
  This software is provided 'as-is', without any express or implied
  warranty.  In no event will the authors be held liable for any damages
  arising from the use of this software.
  .
  Permission is granted to anyone to use this software for any purpose,
  including commercial applications, and to alter it and redistribute it
  freely, subject to the following restrictions:
  .
  1. The origin of this software must not be misrepresented; you must not
     claim that you wrote the original software. If you use this software
     in a product, an acknowledgment in the product documentation would be
     appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be
     misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.

License: Expat
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 DEALINGS IN THE SOFTWARE.

License: BSD-3-clause-with-weird-numbering
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 4. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-4-clause-POWERDOG
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
 3. All advertising materials mentioning features or use of this
    software must display the following acknowledgement:
      This product includes software developed by Powerdog Industries.
 4. The name of Powerdog Industries may not be used to endorse or
    promote products derived from this software without specific prior
    written permission.
 .
 THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY
 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: Unicode
  EXHIBIT 1
  UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
 .
   Unicode Data Files include all data files under the directories
   http://www.unicode.org/Public/, http://www.unicode.org/reports/,
   and http://www.unicode.org/cldr/data/ . Unicode Data Files
   do not include PDF online code charts under the directory
   http://www.unicode.org/Public/. Software includes any
   source code published in the Unicode Standard or under the directories
   http://www.unicode.org/Public/, http://www.unicode.org/reports/,
   and http://www.unicode.org/cldr/data/.
 .
      NOTICE TO USER: Carefully read the following legal agreement. BY
      DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE
      INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU
      UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND
      CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,
      INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
 .
      COPYRIGHT AND PERMISSION NOTICE
 .
      Copyright © 1991-2011 Unicode, Inc. All rights
      reserved. Distributed under the Terms of Use in
      http://www.unicode.org/copyright.html.
 .
      Permission is hereby granted, free of charge, to any person
      obtaining a copy of the Unicode data files and any associated
      documentation (the "Data Files") or Unicode software and any
      associated documentation (the "Software") to deal in the Data Files
      or Software without restriction, including without limitation
      the rights to use, copy, modify, merge, publish, distribute,
      and/or sell copies of the Data Files or Software, and to permit
      persons to whom the Data Files or Software are furnished to do so,
      provided that (a) the above copyright notice(s) and this permission
      notice appear with all copies of the Data Files or Software,
      (b) both the above copyright notice(s) and this permission notice
      appear in associated documentation, and (c) there is clear notice
      in each modified Data File or in the Software as well as in the
      documentation associated with the Data File(s) or Software that
      the data or software has been modified.
 .
      THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY
      OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
      WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
      AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE
      COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE
      FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
      OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
      PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
      TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
      PERFORMANCE OF THE DATA FILES OR SOFTWARE.
 .
      Except as contained in this notice, the name of a copyright holder
      shall not be used in advertising or otherwise to promote the sale,
      use or other dealings in these Data Files or Software without
      prior written authorization of the copyright holder.

License: BSD-3-clause-GENERIC
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. The names of the authors may not be used to endorse or promote
    products derived from this software without specific prior written
    permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: REGCOMP
  Permission is granted to anyone to use this software for any
  purpose on any computer system, and to redistribute it freely,
  subject to the following restrictions:
 .
  1. The author is not responsible for the consequences of use of
          this software, no matter how awful, even if they arise
          from defects in it.
 .
  2. The origin of this software must not be misrepresented, either
          by explicit claim or by omission.
 .
  3. Altered versions must be plainly marked as such, and must not
          be misrepresented as being the original software.

License: TEXT-TABS
 This module may be modified, used, copied, and redistributed at your own risk.
 .
 Although allowed by the preceding license, please do not publicly
 redistribute modified versions of this code with the name "Text::Tabs"
 unless it passes the unmodified Text::Tabs test suite.

License: DONT-CHANGE-THE-GPL
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

License: SDBM-PUBLIC-DOMAIN
 From ext/SDBM_File/sdbm/README:
 .
  The entire sdbm  library package, as authored by me, Ozan S.  Yigit,
  is  hereby placed in the public domain. As such, the author is not
  responsible for the  consequences  of  use  of this  software, no
  matter how awful, even if they arise from defects in it. There is no
  expressed or implied warranty for the sdbm library.
 .
  Since the sdbm library package is in the public domain, this   original
  release  or  any  additional  public-domain releases of the modified
  original cannot possibly (by definition) be withheld from you. Also
  by definition, You (singular) have all the rights to this code
  (including  the  right to sell without permission, the right to
  hoard[3]  and  the right  to  do  other  icky  things as you see fit)
  but those rights are also granted to everyone else.
 .
  Please note that all  previous  distributions  of  this software
  contained  a  copyright  (which is now dropped) to protect its origins
  and its  current  public  domain  status against any possible claims
  and/or challenges.

License: GPL-3+-WITH-BISON-EXCEPTION
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
 As a special exception, you may create a larger work that contains
 part or all of the Bison parser skeleton and distribute that work
 under terms of your choice, so long as that work isn't itself a
 parser generator using the skeleton or a modified version thereof
 as a parser skeleton.  Alternatively, if you modify or redistribute
 the parser skeleton itself, you may (at your option) remove this
 special exception, which will cause the skeleton and the resulting
 Bison output files to be licensed under the GNU General Public
 License without this special exception.
 .
 This special exception was added by the Free Software Foundation in
 version 2.2 of Bison.

License: HSIEH-DERIVATIVE
 The derivative content includes raw computer source code, ideas,
 opinions, and excerpts whose original source is covered under another
 license and transformations of such derivatives. Note that mere excerpts
 by themselves (with the exception of raw source code) are not considered
 derivative works under this license. Use and redistribution is limited
 to the following conditions:
 .
    One may not create a derivative work which, in any way, violates the
    Paul Hsieh exposition license described above on the original content.
 .
    One may not apply a license to a derivative work that precludes
    anyone else from using and redistributing derivative content.
 .
    One may not attribute any derivative content to authors not involved
    in the creation of the content, though an attribution to the author
    is not necessary.

License: HSIEH-BSD
 Copyright (c) 2010, Paul Hsieh
 All rights reserved.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
     Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
 .
     Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in the
     documentation and/or other materials provided with the distribution.
 .
     Neither my name, Paul Hsieh, nor the names of any other contributors
     to the code use may not be used to endorse or promote products
     derived from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License:  CC0-1.0
 Statatement of Purpose
 .
 The laws of most jurisdictions throughout the world automatically confer
 exclusive Copyright and Related Rights (defined below) upon the creator
 and subsequent owner(s) (each and all, an "owner") of an original work
 of authorship and/or a database (each, a "Work").
 .
 Certain owners wish to permanently relinquish those rights to a Work
 for the purpose of contributing to a commons of creative, cultural and
 scientific works ("Commons") that the public can reliably and without
 fear of later claims of infringement build upon, modify, incorporate in
 other works, reuse and redistribute as freely as possible in any form
 whatsoever and for any purposes, including without limitation commercial
 purposes. These owners may contribute to the Commons to promote the ideal
 of a free culture and the further production of creative, cultural and
 scientific works, or to gain reputation or greater distribution for
 their Work in part through the use and efforts of others.
 .
 For these and/or other purposes and motivations, and without any
 expectation of additional consideration or compensation, the person
 associating CC0 with a Work (the "Affirmer"), to the extent that
 he or she is an owner of Copyright and Related Rights in the Work,
 voluntarily elects to apply CC0 to the Work and publicly distribute
 the Work under its terms, with knowledge of his or her Copyright and
 Related Rights in the Work and the meaning and intended legal effect
 of CC0 on those rights.
 .
 1. Copyright and Related Rights. A Work made available under CC0 may be
 protected by copyright and related or neighboring rights ("Copyright
 and Related Rights"). Copyright and Related Rights include, but are
 not limited to, the following:
 .
    the right to reproduce, adapt, distribute, perform, display,
    communicate, and translate a Work;
 .
    moral rights retained by the original author(s) and/or performer(s);
 .
    publicity and privacy rights pertaining to a person's image or
    likeness depicted in a Work;
 .
    rights protecting against unfair competition in regards to a Work,
    subject to the limitations in paragraph 4(a), below;
 .
    rights protecting the extraction, dissemination, use and reuse of data in a Work;
 .
    database rights (such as those arising under Directive 96/9/EC
    of the European Parliament and of the Council of 11 March 1996
    on the legal protection of databases, and under any national
    implementation thereof, including any amended or successor version
    of such directive); and
 .
    other similar, equivalent or corresponding rights throughout the world
    based on applicable law or treaty, and any national implementations
    thereof.
 .
 2. Waiver. To the greatest extent permitted by, but not in contravention
 of, applicable law, Affirmer hereby overtly, fully, permanently,
 irrevocably and unconditionally waives, abandons, and surrenders all
 of Affirmer's Copyright and Related Rights and associated claims and
 causes of action, whether now known or unknown (including existing
 as well as future claims and causes of action), in the Work (i) in
 all territories worldwide, (ii) for the maximum duration provided by
 applicable law or treaty (including future time extensions), (iii)
 in any current or future medium and for any number of copies, and (iv)
 for any purpose whatsoever, including without limitation commercial,
 advertising or promotional purposes (the "Waiver"). Affirmer makes the
 Waiver for the benefit of each member of the public at large and to the
 detriment of Affirmer's heirs and successors, fully intending that such
 Waiver shall not be subject to revocation, rescission, cancellation,
 termination, or any other legal or equitable action to disrupt the
 quiet enjoyment of the Work by the public as contemplated by Affirmer's
 express Statement of Purpose.
 .
 3. Public License Fallback. Should any part of the Waiver for any
 reason be judged legally invalid or ineffective under applicable law,
 then the Waiver shall be preserved to the maximum extent permitted
 taking into account Affirmer's express Statement of Purpose. In
 addition, to the extent the Waiver is so judged Affirmer hereby
 grants to each affected person a royalty-free, non transferable, non
 sublicensable, non exclusive, irrevocable and unconditional license
 to exercise Affirmer's Copyright and Related Rights in the Work (i)
 in all territories worldwide, (ii) for the maximum duration provided
 by applicable law or treaty (including future time extensions), (iii)
 in any current or future medium and for any number of copies, and (iv)
 for any purpose whatsoever, including without limitation commercial,
 advertising or promotional purposes (the "License"). The License shall
 be deemed effective as of the date CC0 was applied by Affirmer to the
 Work. Should any part of the License for any reason be judged legally
 invalid or ineffective under applicable law, such partial invalidity
 or ineffectiveness shall not invalidate the remainder of the License,
 and in such case Affirmer hereby affirms that he or she will not (i)
 exercise any of his or her remaining Copyright and Related Rights in
 the Work or (ii) assert any associated claims and causes of action
 with respect to the Work, in either case contrary to Affirmer's express
 Statement of Purpose.
 .
 4. Limitations and Disclaimers.
 .
    No trademark or patent rights held by Affirmer are waived,
    abandoned, surrendered, licensed or otherwise affected by this
    document.
 .
    Affirmer offers the Work as-is and makes no representations or
    warranties of any kind concerning the Work, express, implied,
    statutory or otherwise, including without limitation warranties
    of title, merchantability, fitness for a particular purpose, non
    infringement, or the absence of latent or other defects, accuracy,
    or the present or absence of errors, whether or not discoverable,
    all to the greatest extent permissible under applicable law.
 .
    Affirmer disclaims responsibility for clearing rights of other
    persons that may apply to the Work or any use thereof, including
    without limitation any person's Copyright and Related Rights in the
    Work. Further, Affirmer disclaims responsibility for obtaining any
    necessary consents, permissions or other rights required for any
    use of the Work.
 .
    Affirmer understands and acknowledges that Creative Commons is not
    a party to this document and has no duty or obligation with respect
    to this CC0 or use of the Work.
Comment:
 This license text was retrieved from
 <http://creativecommons.org/publicdomain/zero/1.0/>
 on Fri, 05 Feb 2016 20:30:28 +0200

License: RRA-KEEP-THIS-NOTICE
 Copying and distribution of this file, with or without modification, are
 permitted in any medium without royalty provided the copyright notice and
 this notice are preserved.  This file is offered as-is, without any
 warranty.

License: Artistic-dist
                       The "Artistic License"
 .
                              Preamble
 .
 The intent of this document is to state the conditions under which a
 Package may be copied, such that the Copyright Holder maintains some
 semblance of artistic control over the development of the Package,
 while giving the users of the package the right to use and distribute
 the Package in a more-or-less customary fashion, plus the right to make
 reasonable modifications.
 .
 It also grants you the rights to reuse parts of a Package in your own
 programs without transferring this License to those programs, provided
 that you meet some reasonable requirements.
 .
 Definitions:
 .
         "Package" refers to the collection of files distributed by the
         Copyright Holder, and derivatives of that collection of files
         created through textual modification.
 .
         "Standard Version" refers to such a Package if it has not been
         modified, or has been modified in accordance with the wishes
         of the Copyright Holder as specified below.
 .
         "Copyright Holder" is whoever is named in the copyright or
         copyrights for the package.
 .
         "You" is you, if you're thinking about copying or distributing
         this Package.
 .
         "Reasonable copying fee" is whatever you can justify on the
         basis of media cost, duplication charges, time of people involved,
         and so on.  (You will not be required to justify it to the
         Copyright Holder, but only to the computing community at large
         as a market that must bear the fee.)
 .
         "Freely Available" means that no fee is charged for the item
         itself, though there may be fees involved in handling the item.
         It also means that recipients of the item may redistribute it
         under the same conditions they received it.
 .
 1. You may make and give away verbatim copies of the source form of the
 Standard Version of this Package without restriction, provided that you
 duplicate all of the original copyright notices and associated disclaimers.
 .
 2. You may apply bug fixes, portability fixes and other modifications
 derived from the Public Domain or from the Copyright Holder.  A Package
 modified in such a way shall still be considered the Standard Version.
 .
 3. You may otherwise modify your copy of this Package in any way, provided
 that you insert a prominent notice in each changed file stating how and
 when you changed that file, and provided that you do at least ONE of the
 following:
 .
     a) place your modifications in the Public Domain or otherwise make them
     Freely Available, such as by posting said modifications to Usenet or
     an equivalent medium, or placing the modifications on a major archive
     site such as uunet.uu.net, or by allowing the Copyright Holder to include
     your modifications in the Standard Version of the Package.
 .
     b) use the modified Package only within your corporation or organization.
 .
     c) rename any non-standard executables so the names do not conflict
     with standard executables, which must also be provided, and provide
     a separate manual page for each non-standard executable that clearly
     documents how it differs from the Standard Version.
 .
     d) make other distribution arrangements with the Copyright Holder.
 .
 4. You may distribute the programs of this Package in object code or
 executable form, provided that you do at least ONE of the following:
 .
     a) distribute a Standard Version of the executables and library files,
     together with instructions (in the manual page or equivalent) on where
     to get the Standard Version.
 .
     b) accompany the distribution with the machine-readable source of
     the Package with your modifications.
 .
     c) give non-standard executables non-standard names, and clearly
     document the differences in manual pages (or equivalent), together
     with instructions on where to get the Standard Version.
 .
     d) make other distribution arrangements with the Copyright Holder.
 .
 5. You may charge a reasonable copying fee for any distribution of this
 Package.  You may charge any fee you choose for support of this
 Package.  You may not charge a fee for this Package itself.  However,
 you may distribute this Package in aggregate with other (possibly
 commercial) programs as part of a larger (possibly commercial) software
 distribution provided that you do not advertise this Package as a
 product of your own.
 .
 6. The scripts and library files supplied as input to or produced as
 output from the programs of this Package do not automatically fall
 under the copyright of this Package, but belong to whoever generated
 them, and may be sold commercially, and may be aggregated with this
 Package.  If such scripts or library files are aggregated with this
 Package via the so-called "undump" or "unexec" methods of producing a
 binary executable image, then distribution of such an image shall
 neither be construed as a distribution of this Package nor shall it
 fall under the restrictions of Paragraphs 3 and 4, provided that you do
 not represent such an executable image as a Standard Version of this
 Package.
 .
 7. You may reuse parts of this Package in your own programs, provided that
 you explicitly state where you got them from, in the source code (and, left
 to your courtesy, in the documentation), duplicating all the associated
 copyright notices and disclaimers. Besides your changes, if any, must be
 clearly marked as such. Parts reused that way will no longer fall under this
 license if, and only if, the name of your program(s) have no immediate
 connection with the name of the Package itself or its associated programs.
 You may then apply whatever restrictions you wish on the reused parts or
 choose to place them in the Public Domain--this will apply only within the
 context of your package.
 .
 8. The name of the Copyright Holder may not be used to endorse or promote
 products derived from this software without specific prior written permission.
 .
 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 .
                                 The End
Comment:
 This license was copied from the upstream 'dist' repository,
  https://github.com/rmanfredi/dist.git
 at Sun, 15 Oct 2017 13:07:36 +0300.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    V  l . ;o          c      Ɛ&X  l / ;o      V          Ɛ&Z     1 0 ;o      F    N      Ɛ&֦\      1 ;o                Ɛ&"^     l 2 ;o      /          Ɛ&V`     . 3 ;o                Ɛ&b     l 4 ;o      ]    j      Ɛ&d      5 ;o      Ȋ          Ɛ&f     l 6 ;o      厵    z      Ɛ&Zh     l 7 ;o      `          Ɛ&j     l 8 ;o          1      Ɛ& l     l 9 ;o      O          Ɛ&2n     0y : ;o      M          Ɛ&pp     l ; ;o                Ɛ&r     l < ;o          t      Ɛ&t     l = ;o                Ɛ& v     $ > ;o      0    H      Ɛ&rx     : ? ;o      y    
      Ɛ&z     ' @ ;o                Ɛ&Ȫ|     l A ;o      '          Ɛ&~     l B ;o                Ɛ&F     l C ;o      ʬ          Ɛ&~     Il D ;o      魵          Ɛ&     ( E ;o                Ɛ&      N	 F ;o                Ɛ&<     l G ;o      ﵵ          Ɛ&z     l H ;o          "      Ɛ&      I ;o          I      Ɛ&     l J ;o                Ɛ&     F K ;o      ƿ          Ɛ&B     l L ;o          b      Ɛ&p     1 M ;o      õ    P      Ɛ&     l N ;o      iŵ    f      Ɛ&έ     9W O ;o      ǵ          Ɛ&     l P ;o      ɵ          Ɛ&*     l Q ;o      N˵    O      Ɛ&h     l R ;o      ͵    8      Ɛ&     l S ;o      ε          Ɛ&®      T ;o      ]е    C      Ɛ&     l U ;o      ѵ           Ɛ&P     l V ;o      ҵ           Ɛ&t     l W ;o      qӵ          Ɛ&ȯ     l X ;o      Ե          Ɛ&     \ Y ;o      ֵ           Ɛ&8     l Z ;o      ׵          Ɛ&~     l [ ;o      nٵ    Z      Ɛ&     l \ ;o      ڵ          Ɛ&     l ] ;o      ۵          Ɛ&4     l ^ ;o      ݵ          Ɛ&p     l _ ;o       ߵ    ;      Ɛ&     l ` ;o      \    I      Ɛ&б     l a ;o                Ɛ&
     l b ;o      s          Ɛ&@     l c ;o      "          Ɛ&§     l d ;o      
    s      Ɛ&ħ     l e ;o                Ɛ&ڲƧ     l f ;o      n          Ɛ&
ȧ     l g ;o      {    I      Ɛ&Fʧ     l h ;o                Ɛ&j̧     l i ;o      t    +      Ɛ&Χ     l j ;o                Ɛ&ڳЧ     l k ;o      3          Ɛ&ҧ     l l ;o                Ɛ&`ԧ      m ;o      "    r      Ɛ&֧     dF n ;o          ]      Ɛ&ا     l o ;o                Ɛ& ڧ      p ;o          W      Ɛ&Hܧ     l q ;o      _          Ɛ&|ާ     ! r ;o                Ɛ&     l s ;o          U      Ɛ&"      t ;o      
          Ɛ&     l u ;o      l
          Ɛ&     l v ;o                Ɛ&<     l w ;o      ~          Ɛ&`     l x ;o                 Ɛ&     l y ;o                Ɛ&ķ      z ;o      @    W      Ɛ&     l { ;o          O      Ɛ&4     " | ;o          ]      Ɛ&j     l } ;o      F          Ɛ&     u ~ ;o      
          Ɛ&ڸ     l  ;o                Ɛ&      m  ;o      !    O      Ɛ&"     l  ;o      $          Ɛ&     m  ;o      &          Ɛ&¹      m  ;o      (          Ɛ&     m  ;o      *          Ɛ&>     m  ;o      ,          Ɛ&     m  ;o      .          Ɛ&ʺ     m  ;o      1    O      Ɛ&
       ;o      3    Y      Ɛ&>       ;o      ?5          Ɛ&j     m  ;o      6          Ɛ&        ;o      
9    N      Ɛ&ڻ     m  ;o      Y;          Ɛ&       ;o      k<    0      Ɛ&D     
  ;o      =          Ɛ&       ;o      ]@          Ɛ&       ;o      )B          Ɛ&^     
m  ;o      D           Ɛ&     m  ;o      |E           Ɛ&(      B   ;o      5F          Ɛ&L"     m  ;o      G           Ɛ&$     m  ;o      H    ;      Ɛ&&       ;o      J          Ɛ&(     m  ;o      L    O      Ɛ&*       ;o      N          Ɛ&T,     m  ;o      P    .      Ɛ&.     m  ;o      R          Ɛ&Ŀ0     m  ;o      T          Ɛ&2     m  ;o      V    N      Ɛ&@4     m  ;o      ?Y    1      Ɛ&t6     m  ;o      q[          Ɛ&8     J  ;o      ]          Ɛ&:     m  ;o      -a          Ɛ&<     l  ;o      	c          Ɛ&N>       ;o      f          Ɛ&@       ;o      h          Ɛ&B     m  ;o      j    1      Ɛ&D      m  ;o      l          Ɛ&:F     !m  ;o      q    f      Ɛ&jH     ?  ;o      s    p      Ɛ&J     
  ;o      v          Ɛ&L     "m  ;o      w          Ɛ&N     %m  ;o      y          Ɛ&>P     
  ;o      ;z          Ɛ&bR     
  ;o      {          Ɛ&T     #m  ;o      }    _      Ɛ&V     $m  ;o      ~    c      Ɛ&X     
  ;o      U    Q      Ɛ&Z     >m  ;o          f      Ɛ&j\       ;o                Ɛ&^     )   ;o      ҅          Ɛ&`       ;o      l          Ɛ&b       ;o      0          Ɛ&4d       ;o          ~      Ɛ&vf       ;o      9    8      Ɛ&h     +m  ;o      r          Ɛ&j     ,m  ;o      8          Ɛ&l     j;  ;o      ꓶ    +      Ɛ&n       ;o          j      Ɛ&Pp     -m  ;o                Ɛ&r     .m  ;o                Ɛ&t       ;o                Ɛ&v     /m  ;o          s      Ɛ&<x     0m  ;o          k      Ɛ&nz     1m  ;o          +      Ɛ&|     2m  ;o                Ɛ&~     3m  ;o      <    R      Ɛ&     4m  ;o                Ɛ&0     5m  ;o                Ɛ&^     6m  ;o                Ɛ&     7m  ;o      <          Ɛ&     .  ;o                Ɛ&     9m  ;o      	          Ɛ&L     :m  ;o                Ɛ&p     Y   ;o      ֻ          Ɛ&     "  ;o      {    s      Ɛ&     ;m  ;o      ö          Ɛ&4     G  ;o      Ƕ          Ɛ&     <m  ;o      ̶    }      Ɛ&     =m  ;o      ζ    l      Ɛ&
     >m  ;o      ϶    i      Ɛ&N     ?m  ;o      ж          Ɛ&       ;o      Ҷ          Ɛ&       ;o      qն          Ɛ&     Am  ;o      	ٶ          Ɛ&@     Bm  ;o      ۶           Ɛ&d       ;o      ܶ    ,      Ɛ&       ;o          Z      Ɛ&     Dm  ;o      <    }      Ɛ&     Em  ;o                Ɛ&0       ;o      =          Ɛ&j     Fm  ;o          !      Ɛ&     
  ;o                Ɛ&       ;o          )      Ɛ&       ;o          /      Ɛ&       ;o                Ɛ&N       ;o                Ɛ&     Hm  ;o                Ɛ&     Im  ;o          J      Ɛ&\     Km  ;o                Ɛ&¨     Lm  ;o          c      Ɛ&Ĩ     Mm  ;o                 Ɛ&  ƨ     Nm  ;o          n      Ɛ& Ȩ     Om  ;o      	          Ɛ& ʨ     Pm  ;o      p    p      Ɛ&"!̨     Qm  ;o                Ɛ&!Ψ     Rm  ;o                Ɛ&!Ш     Tm  ;o                Ɛ&<"Ҩ     Vm  ;o                Ɛ&`"Ԩ     Sm  ;o                Ɛ&"֨     Um  ;o                Ɛ&"ب     Wm  ;o      _          Ɛ&#ڨ     Xm  ;o                 Ɛ&@#ܨ     Ym  ;o          w      Ɛ&t#ި       ;o                Ɛ&#     Zm  ;o                Ɛ&#     [m  ;o                 Ɛ&`$     \m  ;o      "    
      Ɛ&$     ]m  ;o      $          Ɛ&$     ^m  ;o      %&    a      Ɛ&%     _m  ;o      '    q      Ɛ&pu     W  ;o      (    S      Ɛ&u       ;o      M*    Z      Ɛ&u     X  ;o      +          Ɛ&u     X  ;o      -          Ɛ&v     bm  ;o      /          Ɛ&pv     dm  ;o      0    g      Ɛ&v     cm  ;o      \3          Ɛ&v        ;o      G5          Ɛ&v       ;o      7    s      Ɛ&w       ;o      :    8      Ɛ&w      em  ;o      ;    A      Ɛ&w     fm  ;o      =    R      Ɛ&w     gm  ;o      a>    H      Ɛ&x     hm  ;o      ?    F      Ɛ&4x     im  ;o      @    W      Ɛ&Xx
       ;o      IB    O                              Ɛ&x
     G 	 ;o      C          Ɛ&x     jm 
 ;o      E          Ɛ&ty     km  ;o      {H    Z      Ɛ&y     j  ;o      J    u      Ɛ&y     lm 
 ;o      LM          Ɛ&*z     )	  ;o      N          Ɛ&Nz     mm  ;o      Q          Ɛ&~z     nm  ;o      dU    "      Ɛ&z     \  ;o      [          Ɛ&     om  ;o      ]    )      Ɛ&!     pm  ;o      _          Ɛ&#     qm  ;o      fc          Ɛ&%     sm  ;o      _e    .      Ɛ&'     ť  ;o      g          Ɛ&")     ƥ  ;o      qi          Ɛ&X+     tm  ;o      Ql          Ɛ&|-     rm  ;o      on          Ɛ&/     um  ;o      ,p    8      Ɛ&1     vm  ;o      eq           Ɛ&(3       ;o      Ir    6      Ɛ&5     wm  ;o      s          Ɛ&7     xm  ;o      v    r      Ɛ&T9     zm  ;o      ~x    d      Ɛ&x;     ym   ;o      z          Ɛ&=     {m ! ;o      s}    r      Ɛ&?     |m " ;o                Ɛ&JA     }m # ;o                Ɛ&C     m $ ;o          ?      Ɛ&E     m % ;o      녷    E      Ɛ&G     m & ;o      1    L      Ɛ&I      ' ;o      ~          Ɛ&BK     ~m ( ;o          ,      Ɛ&M     m ) ;o          v      Ɛ&O     m * ;o      +          Ɛ&NQ     A + ;o      ؏          Ɛ&S     )  , ;o      _          Ɛ&U      - ;o      Ⓑ          Ɛ&2W     m . ;o          @      Ɛ&VY     m / ;o      Ö    u      Ɛ&[     m 0 ;o      9    F      Ɛ&]     m 1 ;o                Ɛ&_     l 2 ;o      G    W      Ɛ&8a     m 3 ;o                Ɛ&lc      4 ;o      4    >      Ɛ&e     i 5 ;o      s          Ɛ&g     m 6 ;o                Ɛ&i     m 7 ;o      E          Ɛ&>k     m 8 ;o      *    x      Ɛ&vm     <R 9 ;o          |      Ɛ&o     m : ;o                 Ɛ&q     ,  ; ;o          A      Ɛ&s     m < ;o          s      Ɛ&u     W = ;o      b    [      Ɛ&\w     m > ;o                Ɛ&y     D( ? ;o                Ɛ&{     m @ ;o      9    u      Ɛ&}     M( A ;o          {      Ɛ&>     m B ;o      +    q      Ɛ&     m C ;o                 Ɛ&     m D ;o      E          Ɛ&     m E ;o      \           Ɛ&     . F ;o      >·    2      Ɛ&6     Q! G ;o      q÷          Ɛ&     m H ;o      1Ƿ          Ɛ&     S I ;o      >ɷ          Ɛ&     b J ;o      ˷    )      Ɛ&&     m K ;o      -̷          Ɛ&Z     m L ;o      ͷ    Z      Ɛ&     m M ;o      &Ϸ          Ɛ&*        N ;o      ѷ          Ɛ&     m O ;o      ҷ    k      Ɛ&     + P ;o      XԷ    H      Ɛ&"     m Q ;o      շ    $      Ɛ&v      R ;o      ַ    M      Ɛ&     m S ;o      ط          Ɛ&     
 T ;o      ٷ          Ɛ&*     m U ;o      ۷          Ɛ&N      V ;o      ޷    9      Ɛ&     Q W ;o      P          Ɛ&     m X ;o          n      Ɛ&     m Y ;o      I    Q      Ɛ&4     m Z ;o          D      Ɛ&X     [ [ ;o                Ɛ&|     [ \ ;o                Ɛ&     \ ] ;o          F      Ɛ&     = ^ ;o                Ɛ&      _ ;o          0      Ɛ&>     T ` ;o                Ɛ&z     m a ;o                Ɛ&     Y1 b ;o      E          Ɛ&     m c ;o      _          Ɛ&é  m d ;o      +    &      Ɛ&Bũ  m e ;o      R    !      Ɛ&rǩ   m f ;o      t    $      Ɛ&ɩ      g ;o                Ɛ&˩     m h ;o                Ɛ&ͩ      i ;o      l          Ɛ&Tϩ     yW j ;o      n    e      Ɛ&ѩ     w. k ;o          *      Ɛ&ө     Ǿ l ;o          H      Ɛ&&թ      m ;o      H    (      Ɛ&Jש     m n ;o      q    /      Ɛ&n٩      o ;o      	    ,      Ɛ&۩     m p ;o      
          Ɛ&ݩ     m q ;o                Ɛ&Pߩ     m r ;o      w          Ɛ&      s ;o                 Ɛ&     m t ;o                Ɛ&      u ;o                Ɛ&n     m v ;o          J      Ɛ&      w ;o          6      Ɛ&     m x ;o      5    O      Ɛ&      y ;o      #          Ɛ&"       z ;o      W'    t      Ɛ&V     m { ;o      (    !      Ɛ&      | ;o      )          Ɛ&     F } ;o      +    _      Ɛ&
     
 ~ ;o      ^-          Ɛ&:       ;o      .    T      Ɛ&3     m  ;o      D0          Ɛ&3       ;o      2    X      Ɛ&84     N
  ;o      h3          Ɛ&     \  ;o      5          Ɛ&     ]  ;o      6          Ɛ&       ;o      8    a      Ɛ&     4   ;o      9    
      Ɛ&<	     
  ;o      :          Ɛ&n       ;o      <    2      Ɛ&
       ;o      ?    k      Ɛ&օ     9   ;o       A          Ɛ&&     ^  ;o      B          Ɛ&v     _  ;o      D          Ɛ&     j  ;o      oF          Ɛ&ֆ     [   ;o      G          Ɛ&"     a  ;o      I          Ɛ&l     bE  ;o      K           Ɛ&     E  ;o      lL    $      Ɛ&     b  ;o      M          Ɛ&@!     c  ;o      N          Ɛ&d#       ;o      *P          Ɛ&%     E  ;o      Q    /      Ɛ&'       ;o      R    7      Ɛ&)       ;o      1T          Ɛ&0+     aE  ;o      9V    a      Ɛ&T-       ;o      Y    8      Ɛ&/     n  ;o      Z          Ɛ&Ή1       ;o      [    L      Ɛ&T3     o  ;o      A`          Ɛ&x5     p  ;o      c          Ɛ&7     q  ;o      e    l      Ɛ&9     ρ  ;o      h    a      Ɛ&;       ;o      Zm    a      Ɛ&<=        ;o      o          Ɛ&?       ;o      t    H      Ɛ&A     t  ;o      w          Ɛ&C     u  ;o      w{    J      Ɛ& E     v  ;o      }          Ɛ&DG        ;o      ~          Ɛ&rI     D  ;o          1      Ɛ&K     w  ;o      烸    Z      Ɛ&M     x  ;o      B    c      Ɛ&"O     `  ;o          r      Ɛ&pQ     y  ;o          '      Ɛ&S     z  ;o      A    7      Ɛ&U     {  ;o      y          Ɛ&BW     |  ;o      
    z      Ɛ&fY       ;o          ]      Ɛ&[       ;o      㖸    I      Ɛ&]     }  ;o      -    l      Ɛ&_     ~  ;o          L      Ɛ&Va       ;o      眸          Ɛ&c     (  ;o      s          Ɛ&/e       ;o      \          Ɛ&/g     "  ;o      E    C      Ɛ&D0i       ;o          q      Ɛ&0k       ;o          u      Ɛ&0m       ;o      q          Ɛ&1o       ;o      V          Ɛ&21q     $  ;o      U          Ɛ&d1s       ;o      &          Ɛ&1u     j  ;o      $          Ɛ&1w     x  ;o                Ɛ&<2y     s  ;o                Ɛ&~2{     r  ;o                Ɛ&2}     
E  ;o      칸    o      Ɛ&2       ;o      \    $      Ɛ&h3       ;o          ;      Ɛ&3       ;o      ¸          Ɛ&3       ;o      ĸ          Ɛ&J4       ;o      Sȸ          Ɛ&4       ;o      /ʸ          Ɛ&4     @  ;o      ˸    `      Ɛ&.5       ;o      8θ    5      Ɛ&f5       ;o      nи          Ɛ&5       ;o      IӸ          Ɛ&5     '  ;o      ո    ,      Ɛ&66       ;o      ?ٸ           Ɛ&l6     A  ;o      +ڸ          Ɛ&6     7  ;o      ۸    .      Ɛ&6       ;o      ܸ          Ɛ&6     U   ;o      ޸          Ɛ&.7       ;o      j          Ɛ&d7       ;o      g    !      Ɛ&7     F  ;o                Ɛ&7     [  ;o      l          Ɛ&69     F  ;o      Z          Ɛ&Z9       ;o      *          Ɛ&~9     