shell bypass 403

GrazzMean Shell

: /proc/thread-self/root/proc/self/cwd/ [ drwxr-xr-x ]
Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 3.15.235.85
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : libssh2.zip
PK-{FZ�إv..include/libssh2_publickey.hnu�[���/* Copyright (c) 2004-2006, Sara Golemon <sarag@libssh2.org>
 * 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 the name of the copyright holder nor the names
 *   of any other contributors may 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.
 */

/* Note: This include file is only needed for using the
 * publickey SUBSYSTEM which is not the same as publickey
 * authentication.  For authentication you only need libssh2.h
 *
 * For more information on the publickey subsystem,
 * refer to IETF draft: secsh-publickey
 */

#ifndef LIBSSH2_PUBLICKEY_H
#define LIBSSH2_PUBLICKEY_H 1

#include "libssh2.h"

typedef struct _LIBSSH2_PUBLICKEY               LIBSSH2_PUBLICKEY;

typedef struct _libssh2_publickey_attribute {
    const char *name;
    unsigned long name_len;
    const char *value;
    unsigned long value_len;
    char mandatory;
} libssh2_publickey_attribute;

typedef struct _libssh2_publickey_list {
    unsigned char *packet; /* For freeing */

    const unsigned char *name;
    unsigned long name_len;
    const unsigned char *blob;
    unsigned long blob_len;
    unsigned long num_attrs;
    libssh2_publickey_attribute *attrs; /* free me */
} libssh2_publickey_list;

/* Generally use the first macro here, but if both name and value are string literals, you can use _fast() to take advantage of preprocessing */
#define libssh2_publickey_attribute(name, value, mandatory) \
  { (name), strlen(name), (value), strlen(value), (mandatory) },
#define libssh2_publickey_attribute_fast(name, value, mandatory) \
  { (name), sizeof(name) - 1, (value), sizeof(value) - 1, (mandatory) },

#ifdef __cplusplus
extern "C" {
#endif

/* Publickey Subsystem */
LIBSSH2_API LIBSSH2_PUBLICKEY *libssh2_publickey_init(LIBSSH2_SESSION *session);

LIBSSH2_API int libssh2_publickey_add_ex(LIBSSH2_PUBLICKEY *pkey,
                                         const unsigned char *name,
                                         unsigned long name_len,
                                         const unsigned char *blob,
                                         unsigned long blob_len, char overwrite,
                                         unsigned long num_attrs,
                                         const libssh2_publickey_attribute attrs[]);
#define libssh2_publickey_add(pkey, name, blob, blob_len, overwrite, \
                              num_attrs, attrs)                         \
  libssh2_publickey_add_ex((pkey), (name), strlen(name), (blob), (blob_len), \
                           (overwrite), (num_attrs), (attrs))

LIBSSH2_API int libssh2_publickey_remove_ex(LIBSSH2_PUBLICKEY *pkey,
                                            const unsigned char *name,
                                            unsigned long name_len,
                                            const unsigned char *blob,
                                            unsigned long blob_len);
#define libssh2_publickey_remove(pkey, name, blob, blob_len) \
  libssh2_publickey_remove_ex((pkey), (name), strlen(name), (blob), (blob_len))

LIBSSH2_API int
libssh2_publickey_list_fetch(LIBSSH2_PUBLICKEY *pkey,
                             unsigned long *num_keys,
                             libssh2_publickey_list **pkey_list);
LIBSSH2_API void libssh2_publickey_list_free(LIBSSH2_PUBLICKEY *pkey,
                                             libssh2_publickey_list *pkey_list);

LIBSSH2_API int libssh2_publickey_shutdown(LIBSSH2_PUBLICKEY *pkey);

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* ifndef: LIBSSH2_PUBLICKEY_H */
PK-{FZ�e7���include/libssh2.hnu�[���/* Copyright (c) 2004-2009, Sara Golemon <sarag@libssh2.org>
 * Copyright (c) 2009-2012 Daniel Stenberg
 * Copyright (c) 2010 Simon Josefsson <simon@josefsson.org>
 * 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 the name of the copyright holder nor the names
 *   of any other contributors may 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.
 */

#ifndef LIBSSH2_H
#define LIBSSH2_H 1

#define LIBSSH2_COPYRIGHT "2004-2014 The libssh2 project and its contributors."

/* We use underscore instead of dash when appending DEV in dev versions just
   to make the BANNER define (used by src/session.c) be a valid SSH
   banner. Release versions have no appended strings and may of course not
   have dashes either. */
#define LIBSSH2_VERSION "1.5.0"

/* The numeric version number is also available "in parts" by using these
   defines: */
#define LIBSSH2_VERSION_MAJOR 1
#define LIBSSH2_VERSION_MINOR 5
#define LIBSSH2_VERSION_PATCH 0

/* This is the numeric version of the libssh2 version number, meant for easier
   parsing and comparions by programs. The LIBSSH2_VERSION_NUM define will
   always follow this syntax:

         0xXXYYZZ

   Where XX, YY and ZZ are the main version, release and patch numbers in
   hexadecimal (using 8 bits each). All three numbers are always represented
   using two digits.  1.2 would appear as "0x010200" while version 9.11.7
   appears as "0x090b07".

   This 6-digit (24 bits) hexadecimal number does not show pre-release number,
   and it is always a greater number in a more recent release. It makes
   comparisons with greater than and less than work.
*/
#define LIBSSH2_VERSION_NUM 0x010500

/*
 * This is the date and time when the full source package was created. The
 * timestamp is not stored in the source code repo, as the timestamp is
 * properly set in the tarballs by the maketgz script.
 *
 * The format of the date should follow this template:
 *
 * "Mon Feb 12 11:35:33 UTC 2007"
 */
#define LIBSSH2_TIMESTAMP "Wed Mar 11 07:08:36 UTC 2015"

#ifndef RC_INVOKED

#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
# include <basetsd.h>
# include <winsock2.h>
#endif

#include <stddef.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>

/* Allow alternate API prefix from CFLAGS or calling app */
#ifndef LIBSSH2_API
# ifdef LIBSSH2_WIN32
#  ifdef _WINDLL
#   ifdef LIBSSH2_LIBRARY
#    define LIBSSH2_API __declspec(dllexport)
#   else
#    define LIBSSH2_API __declspec(dllimport)
#   endif /* LIBSSH2_LIBRARY */
#  else
#   define LIBSSH2_API
#  endif
# else /* !LIBSSH2_WIN32 */
#  define LIBSSH2_API
# endif /* LIBSSH2_WIN32 */
#endif /* LIBSSH2_API */

#if defined(LIBSSH2_DARWIN)
# include <sys/uio.h>
#endif

#if (defined(NETWARE) && !defined(__NOVELL_LIBC__))
# include <sys/bsdskt.h>
typedef unsigned char uint8_t;
typedef unsigned int uint32_t;
#endif

#ifdef _MSC_VER
typedef unsigned char uint8_t;
typedef unsigned int uint32_t;
typedef unsigned __int64 libssh2_uint64_t;
typedef __int64 libssh2_int64_t;
#ifndef ssize_t
typedef SSIZE_T ssize_t;
#endif
#else
typedef unsigned long long libssh2_uint64_t;
typedef long long libssh2_int64_t;
#endif

#ifdef WIN32
typedef SOCKET libssh2_socket_t;
#define LIBSSH2_INVALID_SOCKET INVALID_SOCKET
#else /* !WIN32 */
typedef int libssh2_socket_t;
#define LIBSSH2_INVALID_SOCKET -1
#endif /* WIN32 */

/* Part of every banner, user specified or not */
#define LIBSSH2_SSH_BANNER                  "SSH-2.0-libssh2_" LIBSSH2_VERSION

/* We *could* add a comment here if we so chose */
#define LIBSSH2_SSH_DEFAULT_BANNER                  LIBSSH2_SSH_BANNER
#define LIBSSH2_SSH_DEFAULT_BANNER_WITH_CRLF        LIBSSH2_SSH_DEFAULT_BANNER "\r\n"

/* Default generate and safe prime sizes for diffie-hellman-group-exchange-sha1 */
#define LIBSSH2_DH_GEX_MINGROUP     1024
#define LIBSSH2_DH_GEX_OPTGROUP     1536
#define LIBSSH2_DH_GEX_MAXGROUP     2048

/* Defaults for pty requests */
#define LIBSSH2_TERM_WIDTH      80
#define LIBSSH2_TERM_HEIGHT     24
#define LIBSSH2_TERM_WIDTH_PX   0
#define LIBSSH2_TERM_HEIGHT_PX  0

/* 1/4 second */
#define LIBSSH2_SOCKET_POLL_UDELAY      250000
/* 0.25 * 120 == 30 seconds */
#define LIBSSH2_SOCKET_POLL_MAXLOOPS    120

/* Maximum size to allow a payload to compress to, plays it safe by falling
   short of spec limits */
#define LIBSSH2_PACKET_MAXCOMP      32000

/* Maximum size to allow a payload to deccompress to, plays it safe by
   allowing more than spec requires */
#define LIBSSH2_PACKET_MAXDECOMP    40000

/* Maximum size for an inbound compressed payload, plays it safe by
   overshooting spec limits */
#define LIBSSH2_PACKET_MAXPAYLOAD   40000

/* Malloc callbacks */
#define LIBSSH2_ALLOC_FUNC(name)   void *name(size_t count, void **abstract)
#define LIBSSH2_REALLOC_FUNC(name) void *name(void *ptr, size_t count, \
                                              void **abstract)
#define LIBSSH2_FREE_FUNC(name)    void name(void *ptr, void **abstract)

typedef struct _LIBSSH2_USERAUTH_KBDINT_PROMPT
{
    char* text;
    unsigned int length;
    unsigned char echo;
} LIBSSH2_USERAUTH_KBDINT_PROMPT;

typedef struct _LIBSSH2_USERAUTH_KBDINT_RESPONSE
{
    char* text;
    unsigned int length;
} LIBSSH2_USERAUTH_KBDINT_RESPONSE;

/* 'publickey' authentication callback */
#define LIBSSH2_USERAUTH_PUBLICKEY_SIGN_FUNC(name) \
  int name(LIBSSH2_SESSION *session, unsigned char **sig, size_t *sig_len, \
           const unsigned char *data, size_t data_len, void **abstract)

/* 'keyboard-interactive' authentication callback */
#define LIBSSH2_USERAUTH_KBDINT_RESPONSE_FUNC(name_) \
 void name_(const char* name, int name_len, const char* instruction, \
            int instruction_len, int num_prompts, \
            const LIBSSH2_USERAUTH_KBDINT_PROMPT* prompts, \
            LIBSSH2_USERAUTH_KBDINT_RESPONSE* responses, void **abstract)

/* Callbacks for special SSH packets */
#define LIBSSH2_IGNORE_FUNC(name) \
 void name(LIBSSH2_SESSION *session, const char *message, int message_len, \
           void **abstract)

#define LIBSSH2_DEBUG_FUNC(name) \
 void name(LIBSSH2_SESSION *session, int always_display, const char *message, \
           int message_len, const char *language, int language_len, \
           void **abstract)

#define LIBSSH2_DISCONNECT_FUNC(name) \
 void name(LIBSSH2_SESSION *session, int reason, const char *message, \
           int message_len, const char *language, int language_len, \
           void **abstract)

#define LIBSSH2_PASSWD_CHANGEREQ_FUNC(name) \
 void name(LIBSSH2_SESSION *session, char **newpw, int *newpw_len, \
           void **abstract)

#define LIBSSH2_MACERROR_FUNC(name) \
 int name(LIBSSH2_SESSION *session, const char *packet, int packet_len, \
          void **abstract)

#define LIBSSH2_X11_OPEN_FUNC(name) \
 void name(LIBSSH2_SESSION *session, LIBSSH2_CHANNEL *channel, \
           const char *shost, int sport, void **abstract)

#define LIBSSH2_CHANNEL_CLOSE_FUNC(name) \
  void name(LIBSSH2_SESSION *session, void **session_abstract, \
            LIBSSH2_CHANNEL *channel, void **channel_abstract)

/* I/O callbacks */
#define LIBSSH2_RECV_FUNC(name)  ssize_t name(libssh2_socket_t socket, \
                                              void *buffer, size_t length, \
                                              int flags, void **abstract)
#define LIBSSH2_SEND_FUNC(name)  ssize_t name(libssh2_socket_t socket, \
                                              const void *buffer, size_t length,\
                                              int flags, void **abstract)

/* libssh2_session_callback_set() constants */
#define LIBSSH2_CALLBACK_IGNORE             0
#define LIBSSH2_CALLBACK_DEBUG              1
#define LIBSSH2_CALLBACK_DISCONNECT         2
#define LIBSSH2_CALLBACK_MACERROR           3
#define LIBSSH2_CALLBACK_X11                4
#define LIBSSH2_CALLBACK_SEND               5
#define LIBSSH2_CALLBACK_RECV               6

/* libssh2_session_method_pref() constants */
#define LIBSSH2_METHOD_KEX          0
#define LIBSSH2_METHOD_HOSTKEY      1
#define LIBSSH2_METHOD_CRYPT_CS     2
#define LIBSSH2_METHOD_CRYPT_SC     3
#define LIBSSH2_METHOD_MAC_CS       4
#define LIBSSH2_METHOD_MAC_SC       5
#define LIBSSH2_METHOD_COMP_CS      6
#define LIBSSH2_METHOD_COMP_SC      7
#define LIBSSH2_METHOD_LANG_CS      8
#define LIBSSH2_METHOD_LANG_SC      9

/* flags */
#define LIBSSH2_FLAG_SIGPIPE        1
#define LIBSSH2_FLAG_COMPRESS       2

typedef struct _LIBSSH2_SESSION                     LIBSSH2_SESSION;
typedef struct _LIBSSH2_CHANNEL                     LIBSSH2_CHANNEL;
typedef struct _LIBSSH2_LISTENER                    LIBSSH2_LISTENER;
typedef struct _LIBSSH2_KNOWNHOSTS                  LIBSSH2_KNOWNHOSTS;
typedef struct _LIBSSH2_AGENT                       LIBSSH2_AGENT;

typedef struct _LIBSSH2_POLLFD {
    unsigned char type; /* LIBSSH2_POLLFD_* below */

    union {
        libssh2_socket_t socket; /* File descriptors -- examined with
                                    system select() call */
        LIBSSH2_CHANNEL *channel; /* Examined by checking internal state */
        LIBSSH2_LISTENER *listener; /* Read polls only -- are inbound
                                       connections waiting to be accepted? */
    } fd;

    unsigned long events; /* Requested Events */
    unsigned long revents; /* Returned Events */
} LIBSSH2_POLLFD;

/* Poll FD Descriptor Types */
#define LIBSSH2_POLLFD_SOCKET       1
#define LIBSSH2_POLLFD_CHANNEL      2
#define LIBSSH2_POLLFD_LISTENER     3

/* Note: Win32 Doesn't actually have a poll() implementation, so some of these
   values are faked with select() data */
/* Poll FD events/revents -- Match sys/poll.h where possible */
#define LIBSSH2_POLLFD_POLLIN           0x0001 /* Data available to be read or
                                                  connection available --
                                                  All */
#define LIBSSH2_POLLFD_POLLPRI          0x0002 /* Priority data available to
                                                  be read -- Socket only */
#define LIBSSH2_POLLFD_POLLEXT          0x0002 /* Extended data available to
                                                  be read -- Channel only */
#define LIBSSH2_POLLFD_POLLOUT          0x0004 /* Can may be written --
                                                  Socket/Channel */
/* revents only */
#define LIBSSH2_POLLFD_POLLERR          0x0008 /* Error Condition -- Socket */
#define LIBSSH2_POLLFD_POLLHUP          0x0010 /* HangUp/EOF -- Socket */
#define LIBSSH2_POLLFD_SESSION_CLOSED   0x0010 /* Session Disconnect */
#define LIBSSH2_POLLFD_POLLNVAL         0x0020 /* Invalid request -- Socket
                                                  Only */
#define LIBSSH2_POLLFD_POLLEX           0x0040 /* Exception Condition --
                                                  Socket/Win32 */
#define LIBSSH2_POLLFD_CHANNEL_CLOSED   0x0080 /* Channel Disconnect */
#define LIBSSH2_POLLFD_LISTENER_CLOSED  0x0080 /* Listener Disconnect */

#define HAVE_LIBSSH2_SESSION_BLOCK_DIRECTION
/* Block Direction Types */
#define LIBSSH2_SESSION_BLOCK_INBOUND                  0x0001
#define LIBSSH2_SESSION_BLOCK_OUTBOUND                 0x0002

/* Hash Types */
#define LIBSSH2_HOSTKEY_HASH_MD5                            1
#define LIBSSH2_HOSTKEY_HASH_SHA1                           2

/* Hostkey Types */
#define LIBSSH2_HOSTKEY_TYPE_UNKNOWN			    0
#define LIBSSH2_HOSTKEY_TYPE_RSA			    1
#define LIBSSH2_HOSTKEY_TYPE_DSS			    2

/* Disconnect Codes (defined by SSH protocol) */
#define SSH_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT          1
#define SSH_DISCONNECT_PROTOCOL_ERROR                       2
#define SSH_DISCONNECT_KEY_EXCHANGE_FAILED                  3
#define SSH_DISCONNECT_RESERVED                             4
#define SSH_DISCONNECT_MAC_ERROR                            5
#define SSH_DISCONNECT_COMPRESSION_ERROR                    6
#define SSH_DISCONNECT_SERVICE_NOT_AVAILABLE                7
#define SSH_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED       8
#define SSH_DISCONNECT_HOST_KEY_NOT_VERIFIABLE              9
#define SSH_DISCONNECT_CONNECTION_LOST                      10
#define SSH_DISCONNECT_BY_APPLICATION                       11
#define SSH_DISCONNECT_TOO_MANY_CONNECTIONS                 12
#define SSH_DISCONNECT_AUTH_CANCELLED_BY_USER               13
#define SSH_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE       14
#define SSH_DISCONNECT_ILLEGAL_USER_NAME                    15

/* Error Codes (defined by libssh2) */
#define LIBSSH2_ERROR_NONE                      0

/* The library once used -1 as a generic error return value on numerous places
   through the code, which subsequently was converted to
   LIBSSH2_ERROR_SOCKET_NONE uses over time. As this is a generic error code,
   the goal is to never ever return this code but instead make sure that a
   more accurate and descriptive error code is used. */
#define LIBSSH2_ERROR_SOCKET_NONE               -1

#define LIBSSH2_ERROR_BANNER_RECV               -2
#define LIBSSH2_ERROR_BANNER_SEND               -3
#define LIBSSH2_ERROR_INVALID_MAC               -4
#define LIBSSH2_ERROR_KEX_FAILURE               -5
#define LIBSSH2_ERROR_ALLOC                     -6
#define LIBSSH2_ERROR_SOCKET_SEND               -7
#define LIBSSH2_ERROR_KEY_EXCHANGE_FAILURE      -8
#define LIBSSH2_ERROR_TIMEOUT                   -9
#define LIBSSH2_ERROR_HOSTKEY_INIT              -10
#define LIBSSH2_ERROR_HOSTKEY_SIGN              -11
#define LIBSSH2_ERROR_DECRYPT                   -12
#define LIBSSH2_ERROR_SOCKET_DISCONNECT         -13
#define LIBSSH2_ERROR_PROTO                     -14
#define LIBSSH2_ERROR_PASSWORD_EXPIRED          -15
#define LIBSSH2_ERROR_FILE                      -16
#define LIBSSH2_ERROR_METHOD_NONE               -17
#define LIBSSH2_ERROR_AUTHENTICATION_FAILED     -18
#define LIBSSH2_ERROR_PUBLICKEY_UNRECOGNIZED    LIBSSH2_ERROR_AUTHENTICATION_FAILED
#define LIBSSH2_ERROR_PUBLICKEY_UNVERIFIED      -19
#define LIBSSH2_ERROR_CHANNEL_OUTOFORDER        -20
#define LIBSSH2_ERROR_CHANNEL_FAILURE           -21
#define LIBSSH2_ERROR_CHANNEL_REQUEST_DENIED    -22
#define LIBSSH2_ERROR_CHANNEL_UNKNOWN           -23
#define LIBSSH2_ERROR_CHANNEL_WINDOW_EXCEEDED   -24
#define LIBSSH2_ERROR_CHANNEL_PACKET_EXCEEDED   -25
#define LIBSSH2_ERROR_CHANNEL_CLOSED            -26
#define LIBSSH2_ERROR_CHANNEL_EOF_SENT          -27
#define LIBSSH2_ERROR_SCP_PROTOCOL              -28
#define LIBSSH2_ERROR_ZLIB                      -29
#define LIBSSH2_ERROR_SOCKET_TIMEOUT            -30
#define LIBSSH2_ERROR_SFTP_PROTOCOL             -31
#define LIBSSH2_ERROR_REQUEST_DENIED            -32
#define LIBSSH2_ERROR_METHOD_NOT_SUPPORTED      -33
#define LIBSSH2_ERROR_INVAL                     -34
#define LIBSSH2_ERROR_INVALID_POLL_TYPE         -35
#define LIBSSH2_ERROR_PUBLICKEY_PROTOCOL        -36
#define LIBSSH2_ERROR_EAGAIN                    -37
#define LIBSSH2_ERROR_BUFFER_TOO_SMALL          -38
#define LIBSSH2_ERROR_BAD_USE                   -39
#define LIBSSH2_ERROR_COMPRESS                  -40
#define LIBSSH2_ERROR_OUT_OF_BOUNDARY           -41
#define LIBSSH2_ERROR_AGENT_PROTOCOL            -42
#define LIBSSH2_ERROR_SOCKET_RECV               -43
#define LIBSSH2_ERROR_ENCRYPT                   -44
#define LIBSSH2_ERROR_BAD_SOCKET                -45
#define LIBSSH2_ERROR_KNOWN_HOSTS               -46

/* this is a define to provide the old (<= 1.2.7) name */
#define LIBSSH2_ERROR_BANNER_NONE LIBSSH2_ERROR_BANNER_RECV

/* Global API */
#define LIBSSH2_INIT_NO_CRYPTO        0x0001

/*
 * libssh2_init()
 *
 * Initialize the libssh2 functions.  This typically initialize the
 * crypto library.  It uses a global state, and is not thread safe --
 * you must make sure this function is not called concurrently.
 *
 * Flags can be:
 * 0:                              Normal initialize
 * LIBSSH2_INIT_NO_CRYPTO:         Do not initialize the crypto library (ie.
 *                                 OPENSSL_add_cipher_algoritms() for OpenSSL
 *
 * Returns 0 if succeeded, or a negative value for error.
 */
LIBSSH2_API int libssh2_init(int flags);

/*
 * libssh2_exit()
 *
 * Exit the libssh2 functions and free's all memory used internal.
 */
LIBSSH2_API void libssh2_exit(void);

/*
 * libssh2_free()
 *
 * Deallocate memory allocated by earlier call to libssh2 functions.
 */
LIBSSH2_API void libssh2_free(LIBSSH2_SESSION *session, void *ptr);

/*
 * libssh2_session_supported_algs()
 *
 * Fills algs with a list of supported acryptographic algorithms. Returns a
 * non-negative number (number of supported algorithms) on success or a
 * negative number (an eror code) on failure.
 *
 * NOTE: on success, algs must be deallocated (by calling libssh2_free) when
 * not needed anymore
 */
LIBSSH2_API int libssh2_session_supported_algs(LIBSSH2_SESSION* session,
                                               int method_type,
                                               const char*** algs);

/* Session API */
LIBSSH2_API LIBSSH2_SESSION *
libssh2_session_init_ex(LIBSSH2_ALLOC_FUNC((*my_alloc)),
                        LIBSSH2_FREE_FUNC((*my_free)),
                        LIBSSH2_REALLOC_FUNC((*my_realloc)), void *abstract);
#define libssh2_session_init() libssh2_session_init_ex(NULL, NULL, NULL, NULL)

LIBSSH2_API void **libssh2_session_abstract(LIBSSH2_SESSION *session);

LIBSSH2_API void *libssh2_session_callback_set(LIBSSH2_SESSION *session,
                                               int cbtype, void *callback);
LIBSSH2_API int libssh2_session_banner_set(LIBSSH2_SESSION *session,
                                           const char *banner);
LIBSSH2_API int libssh2_banner_set(LIBSSH2_SESSION *session,
                                   const char *banner);

LIBSSH2_API int libssh2_session_startup(LIBSSH2_SESSION *session, int sock);
LIBSSH2_API int libssh2_session_handshake(LIBSSH2_SESSION *session,
                                          libssh2_socket_t sock);
LIBSSH2_API int libssh2_session_disconnect_ex(LIBSSH2_SESSION *session,
                                              int reason,
                                              const char *description,
                                              const char *lang);
#define libssh2_session_disconnect(session, description) \
  libssh2_session_disconnect_ex((session), SSH_DISCONNECT_BY_APPLICATION, \
                                (description), "")

LIBSSH2_API int libssh2_session_free(LIBSSH2_SESSION *session);

LIBSSH2_API const char *libssh2_hostkey_hash(LIBSSH2_SESSION *session,
                                             int hash_type);

LIBSSH2_API const char *libssh2_session_hostkey(LIBSSH2_SESSION *session,
                                                size_t *len, int *type);

LIBSSH2_API int libssh2_session_method_pref(LIBSSH2_SESSION *session,
                                            int method_type,
                                            const char *prefs);
LIBSSH2_API const char *libssh2_session_methods(LIBSSH2_SESSION *session,
                                                int method_type);
LIBSSH2_API int libssh2_session_last_error(LIBSSH2_SESSION *session,
                                           char **errmsg,
                                           int *errmsg_len, int want_buf);
LIBSSH2_API int libssh2_session_last_errno(LIBSSH2_SESSION *session);
LIBSSH2_API int libssh2_session_block_directions(LIBSSH2_SESSION *session);

LIBSSH2_API int libssh2_session_flag(LIBSSH2_SESSION *session, int flag,
                                     int value);
LIBSSH2_API const char *libssh2_session_banner_get(LIBSSH2_SESSION *session);

/* Userauth API */
LIBSSH2_API char *libssh2_userauth_list(LIBSSH2_SESSION *session,
                                        const char *username,
                                        unsigned int username_len);
LIBSSH2_API int libssh2_userauth_authenticated(LIBSSH2_SESSION *session);

LIBSSH2_API int libssh2_userauth_password_ex(LIBSSH2_SESSION *session,
                                             const char *username,
                                             unsigned int username_len,
                                             const char *password,
                                             unsigned int password_len,
                                             LIBSSH2_PASSWD_CHANGEREQ_FUNC((*passwd_change_cb)));

#define libssh2_userauth_password(session, username, password) \
 libssh2_userauth_password_ex((session), (username),           \
                              (unsigned int)strlen(username),  \
                              (password), (unsigned int)strlen(password), NULL)

LIBSSH2_API int
libssh2_userauth_publickey_fromfile_ex(LIBSSH2_SESSION *session,
                                       const char *username,
                                       unsigned int username_len,
                                       const char *publickey,
                                       const char *privatekey,
                                       const char *passphrase);

#define libssh2_userauth_publickey_fromfile(session, username, publickey, \
                                            privatekey, passphrase)     \
    libssh2_userauth_publickey_fromfile_ex((session), (username),       \
                                           (unsigned int)strlen(username), \
                                           (publickey),                 \
                                           (privatekey), (passphrase))

LIBSSH2_API int
libssh2_userauth_publickey(LIBSSH2_SESSION *session,
                           const char *username,
                           const unsigned char *pubkeydata,
                           size_t pubkeydata_len,
                           LIBSSH2_USERAUTH_PUBLICKEY_SIGN_FUNC((*sign_callback)),
                           void **abstract);

LIBSSH2_API int
libssh2_userauth_hostbased_fromfile_ex(LIBSSH2_SESSION *session,
                                       const char *username,
                                       unsigned int username_len,
                                       const char *publickey,
                                       const char *privatekey,
                                       const char *passphrase,
                                       const char *hostname,
                                       unsigned int hostname_len,
                                       const char *local_username,
                                       unsigned int local_username_len);

#define libssh2_userauth_hostbased_fromfile(session, username, publickey, \
                                            privatekey, passphrase, hostname) \
 libssh2_userauth_hostbased_fromfile_ex((session), (username), \
                                        (unsigned int)strlen(username), \
                                        (publickey),                    \
                                        (privatekey), (passphrase),     \
                                        (hostname),                     \
                                        (unsigned int)strlen(hostname), \
                                        (username),                     \
                                        (unsigned int)strlen(username))

/*
 * response_callback is provided with filled by library prompts array,
 * but client must allocate and fill individual responses. Responses
 * array is already allocated. Responses data will be freed by libssh2
 * after callback return, but before subsequent callback invokation.
 */
LIBSSH2_API int
libssh2_userauth_keyboard_interactive_ex(LIBSSH2_SESSION* session,
                                         const char *username,
                                         unsigned int username_len,
                                         LIBSSH2_USERAUTH_KBDINT_RESPONSE_FUNC((*response_callback)));

#define libssh2_userauth_keyboard_interactive(session, username,        \
                                              response_callback)        \
    libssh2_userauth_keyboard_interactive_ex((session), (username),     \
                                             (unsigned int)strlen(username), \
                                             (response_callback))

LIBSSH2_API int libssh2_poll(LIBSSH2_POLLFD *fds, unsigned int nfds,
                             long timeout);

/* Channel API */
#define LIBSSH2_CHANNEL_WINDOW_DEFAULT  (2*1024*1024)
#define LIBSSH2_CHANNEL_PACKET_DEFAULT  32768
#define LIBSSH2_CHANNEL_MINADJUST       1024

/* Extended Data Handling */
#define LIBSSH2_CHANNEL_EXTENDED_DATA_NORMAL        0
#define LIBSSH2_CHANNEL_EXTENDED_DATA_IGNORE        1
#define LIBSSH2_CHANNEL_EXTENDED_DATA_MERGE         2

#define SSH_EXTENDED_DATA_STDERR 1

/* Returned by any function that would block during a read/write opperation */
#define LIBSSH2CHANNEL_EAGAIN LIBSSH2_ERROR_EAGAIN

LIBSSH2_API LIBSSH2_CHANNEL *
libssh2_channel_open_ex(LIBSSH2_SESSION *session, const char *channel_type,
                        unsigned int channel_type_len,
                        unsigned int window_size, unsigned int packet_size,
                        const char *message, unsigned int message_len);

#define libssh2_channel_open_session(session) \
  libssh2_channel_open_ex((session), "session", sizeof("session") - 1, \
                          LIBSSH2_CHANNEL_WINDOW_DEFAULT, \
                          LIBSSH2_CHANNEL_PACKET_DEFAULT, NULL, 0)

LIBSSH2_API LIBSSH2_CHANNEL *
libssh2_channel_direct_tcpip_ex(LIBSSH2_SESSION *session, const char *host,
                                int port, const char *shost, int sport);
#define libssh2_channel_direct_tcpip(session, host, port) \
  libssh2_channel_direct_tcpip_ex((session), (host), (port), "127.0.0.1", 22)

LIBSSH2_API LIBSSH2_LISTENER *
libssh2_channel_forward_listen_ex(LIBSSH2_SESSION *session, const char *host,
                                  int port, int *bound_port, int queue_maxsize);
#define libssh2_channel_forward_listen(session, port) \
 libssh2_channel_forward_listen_ex((session), NULL, (port), NULL, 16)

LIBSSH2_API int libssh2_channel_forward_cancel(LIBSSH2_LISTENER *listener);

LIBSSH2_API LIBSSH2_CHANNEL *
libssh2_channel_forward_accept(LIBSSH2_LISTENER *listener);

LIBSSH2_API int libssh2_channel_setenv_ex(LIBSSH2_CHANNEL *channel,
                                          const char *varname,
                                          unsigned int varname_len,
                                          const char *value,
                                          unsigned int value_len);

#define libssh2_channel_setenv(channel, varname, value)                 \
    libssh2_channel_setenv_ex((channel), (varname),                     \
                              (unsigned int)strlen(varname), (value),   \
                              (unsigned int)strlen(value))

LIBSSH2_API int libssh2_channel_request_pty_ex(LIBSSH2_CHANNEL *channel,
                                               const char *term,
                                               unsigned int term_len,
                                               const char *modes,
                                               unsigned int modes_len,
                                               int width, int height,
                                               int width_px, int height_px);
#define libssh2_channel_request_pty(channel, term)                      \
    libssh2_channel_request_pty_ex((channel), (term),                   \
                                   (unsigned int)strlen(term),          \
                                   NULL, 0,                             \
                                   LIBSSH2_TERM_WIDTH, LIBSSH2_TERM_HEIGHT, \
                                   LIBSSH2_TERM_WIDTH_PX, LIBSSH2_TERM_HEIGHT_PX)

LIBSSH2_API int libssh2_channel_request_pty_size_ex(LIBSSH2_CHANNEL *channel,
                                                    int width, int height,
                                                    int width_px,
                                                    int height_px);
#define libssh2_channel_request_pty_size(channel, width, height) \
  libssh2_channel_request_pty_size_ex( (channel), (width), (height), 0, 0)

LIBSSH2_API int libssh2_channel_x11_req_ex(LIBSSH2_CHANNEL *channel,
                                           int single_connection,
                                           const char *auth_proto,
                                           const char *auth_cookie,
                                           int screen_number);
#define libssh2_channel_x11_req(channel, screen_number) \
 libssh2_channel_x11_req_ex((channel), 0, NULL, NULL, (screen_number))

LIBSSH2_API int libssh2_channel_process_startup(LIBSSH2_CHANNEL *channel,
                                                const char *request,
                                                unsigned int request_len,
                                                const char *message,
                                                unsigned int message_len);
#define libssh2_channel_shell(channel) \
  libssh2_channel_process_startup((channel), "shell", sizeof("shell") - 1, \
                                  NULL, 0)
#define libssh2_channel_exec(channel, command) \
  libssh2_channel_process_startup((channel), "exec", sizeof("exec") - 1, \
                                  (command), (unsigned int)strlen(command))
#define libssh2_channel_subsystem(channel, subsystem) \
  libssh2_channel_process_startup((channel), "subsystem",              \
                                  sizeof("subsystem") - 1, (subsystem), \
                                  (unsigned int)strlen(subsystem))

LIBSSH2_API ssize_t libssh2_channel_read_ex(LIBSSH2_CHANNEL *channel,
                                            int stream_id, char *buf,
                                            size_t buflen);
#define libssh2_channel_read(channel, buf, buflen) \
  libssh2_channel_read_ex((channel), 0, (buf), (buflen))
#define libssh2_channel_read_stderr(channel, buf, buflen) \
  libssh2_channel_read_ex((channel), SSH_EXTENDED_DATA_STDERR, (buf), (buflen))

LIBSSH2_API int libssh2_poll_channel_read(LIBSSH2_CHANNEL *channel,
                                          int extended);

LIBSSH2_API unsigned long
libssh2_channel_window_read_ex(LIBSSH2_CHANNEL *channel,
                               unsigned long *read_avail,
                               unsigned long *window_size_initial);
#define libssh2_channel_window_read(channel) \
  libssh2_channel_window_read_ex((channel), NULL, NULL)

/* libssh2_channel_receive_window_adjust is DEPRECATED, do not use! */
LIBSSH2_API unsigned long
libssh2_channel_receive_window_adjust(LIBSSH2_CHANNEL *channel,
                                      unsigned long adjustment,
                                      unsigned char force);

LIBSSH2_API int
libssh2_channel_receive_window_adjust2(LIBSSH2_CHANNEL *channel,
                                       unsigned long adjustment,
                                       unsigned char force,
                                       unsigned int *storewindow);

LIBSSH2_API ssize_t libssh2_channel_write_ex(LIBSSH2_CHANNEL *channel,
                                             int stream_id, const char *buf,
                                             size_t buflen);

#define libssh2_channel_write(channel, buf, buflen) \
  libssh2_channel_write_ex((channel), 0, (buf), (buflen))
#define libssh2_channel_write_stderr(channel, buf, buflen)  \
  libssh2_channel_write_ex((channel), SSH_EXTENDED_DATA_STDERR, (buf), (buflen))

LIBSSH2_API unsigned long
libssh2_channel_window_write_ex(LIBSSH2_CHANNEL *channel,
                                unsigned long *window_size_initial);
#define libssh2_channel_window_write(channel) \
  libssh2_channel_window_write_ex((channel), NULL)

LIBSSH2_API void libssh2_session_set_blocking(LIBSSH2_SESSION* session,
                                              int blocking);
LIBSSH2_API int libssh2_session_get_blocking(LIBSSH2_SESSION* session);

LIBSSH2_API void libssh2_channel_set_blocking(LIBSSH2_CHANNEL *channel,
                                              int blocking);

LIBSSH2_API void libssh2_session_set_timeout(LIBSSH2_SESSION* session,
                                             long timeout);
LIBSSH2_API long libssh2_session_get_timeout(LIBSSH2_SESSION* session);

/* libssh2_channel_handle_extended_data is DEPRECATED, do not use! */
LIBSSH2_API void libssh2_channel_handle_extended_data(LIBSSH2_CHANNEL *channel,
                                                      int ignore_mode);
LIBSSH2_API int libssh2_channel_handle_extended_data2(LIBSSH2_CHANNEL *channel,
                                                      int ignore_mode);

/* libssh2_channel_ignore_extended_data() is defined below for BC with version
 * 0.1
 *
 * Future uses should use libssh2_channel_handle_extended_data() directly if
 * LIBSSH2_CHANNEL_EXTENDED_DATA_MERGE is passed, extended data will be read
 * (FIFO) from the standard data channel
 */
/* DEPRECATED */
#define libssh2_channel_ignore_extended_data(channel, ignore) \
  libssh2_channel_handle_extended_data((channel),                       \
                                       (ignore) ?                       \
                                       LIBSSH2_CHANNEL_EXTENDED_DATA_IGNORE : \
                                       LIBSSH2_CHANNEL_EXTENDED_DATA_NORMAL )

#define LIBSSH2_CHANNEL_FLUSH_EXTENDED_DATA     -1
#define LIBSSH2_CHANNEL_FLUSH_ALL               -2
LIBSSH2_API int libssh2_channel_flush_ex(LIBSSH2_CHANNEL *channel,
                                         int streamid);
#define libssh2_channel_flush(channel) libssh2_channel_flush_ex((channel), 0)
#define libssh2_channel_flush_stderr(channel) \
 libssh2_channel_flush_ex((channel), SSH_EXTENDED_DATA_STDERR)

LIBSSH2_API int libssh2_channel_get_exit_status(LIBSSH2_CHANNEL* channel);
LIBSSH2_API int libssh2_channel_get_exit_signal(LIBSSH2_CHANNEL* channel,
                                                char **exitsignal,
                                                size_t *exitsignal_len,
                                                char **errmsg,
                                                size_t *errmsg_len,
                                                char **langtag,
                                                size_t *langtag_len);
LIBSSH2_API int libssh2_channel_send_eof(LIBSSH2_CHANNEL *channel);
LIBSSH2_API int libssh2_channel_eof(LIBSSH2_CHANNEL *channel);
LIBSSH2_API int libssh2_channel_wait_eof(LIBSSH2_CHANNEL *channel);
LIBSSH2_API int libssh2_channel_close(LIBSSH2_CHANNEL *channel);
LIBSSH2_API int libssh2_channel_wait_closed(LIBSSH2_CHANNEL *channel);
LIBSSH2_API int libssh2_channel_free(LIBSSH2_CHANNEL *channel);

LIBSSH2_API LIBSSH2_CHANNEL *libssh2_scp_recv(LIBSSH2_SESSION *session,
                                              const char *path,
                                              struct stat *sb);
LIBSSH2_API LIBSSH2_CHANNEL *libssh2_scp_send_ex(LIBSSH2_SESSION *session,
                                                 const char *path, int mode,
                                                 size_t size, long mtime,
                                                 long atime);
LIBSSH2_API LIBSSH2_CHANNEL *
libssh2_scp_send64(LIBSSH2_SESSION *session, const char *path, int mode,
                   libssh2_int64_t size, time_t mtime, time_t atime);

#define libssh2_scp_send(session, path, mode, size) \
  libssh2_scp_send_ex((session), (path), (mode), (size), 0, 0)

LIBSSH2_API int libssh2_base64_decode(LIBSSH2_SESSION *session, char **dest,
                                      unsigned int *dest_len,
                                      const char *src, unsigned int src_len);

LIBSSH2_API
const char *libssh2_version(int req_version_num);

#define HAVE_LIBSSH2_KNOWNHOST_API 0x010101 /* since 1.1.1 */
#define HAVE_LIBSSH2_VERSION_API   0x010100 /* libssh2_version since 1.1 */

struct libssh2_knownhost {
    unsigned int magic;  /* magic stored by the library */
    void *node; /* handle to the internal representation of this host */
    char *name; /* this is NULL if no plain text host name exists */
    char *key;  /* key in base64/printable format */
    int typemask;
};

/*
 * libssh2_knownhost_init
 *
 * Init a collection of known hosts. Returns the pointer to a collection.
 *
 */
LIBSSH2_API LIBSSH2_KNOWNHOSTS *
libssh2_knownhost_init(LIBSSH2_SESSION *session);

/*
 * libssh2_knownhost_add
 *
 * Add a host and its associated key to the collection of known hosts.
 *
 * The 'type' argument specifies on what format the given host and keys are:
 *
 * plain  - ascii "hostname.domain.tld"
 * sha1   - SHA1(<salt> <host>) base64-encoded!
 * custom - another hash
 *
 * If 'sha1' is selected as type, the salt must be provided to the salt
 * argument. This too base64 encoded.
 *
 * The SHA-1 hash is what OpenSSH can be told to use in known_hosts files.  If
 * a custom type is used, salt is ignored and you must provide the host
 * pre-hashed when checking for it in the libssh2_knownhost_check() function.
 *
 * The keylen parameter may be omitted (zero) if the key is provided as a
 * NULL-terminated base64-encoded string.
 */

/* host format (2 bits) */
#define LIBSSH2_KNOWNHOST_TYPE_MASK    0xffff
#define LIBSSH2_KNOWNHOST_TYPE_PLAIN   1
#define LIBSSH2_KNOWNHOST_TYPE_SHA1    2 /* always base64 encoded */
#define LIBSSH2_KNOWNHOST_TYPE_CUSTOM  3

/* key format (2 bits) */
#define LIBSSH2_KNOWNHOST_KEYENC_MASK     (3<<16)
#define LIBSSH2_KNOWNHOST_KEYENC_RAW      (1<<16)
#define LIBSSH2_KNOWNHOST_KEYENC_BASE64   (2<<16)

/* type of key (2 bits) */
#define LIBSSH2_KNOWNHOST_KEY_MASK     (7<<18)
#define LIBSSH2_KNOWNHOST_KEY_SHIFT    18
#define LIBSSH2_KNOWNHOST_KEY_RSA1     (1<<18)
#define LIBSSH2_KNOWNHOST_KEY_SSHRSA   (2<<18)
#define LIBSSH2_KNOWNHOST_KEY_SSHDSS   (3<<18)
#define LIBSSH2_KNOWNHOST_KEY_UNKNOWN  (7<<18)

LIBSSH2_API int
libssh2_knownhost_add(LIBSSH2_KNOWNHOSTS *hosts,
                      const char *host,
                      const char *salt,
                      const char *key, size_t keylen, int typemask,
                      struct libssh2_knownhost **store);

/*
 * libssh2_knownhost_addc
 *
 * Add a host and its associated key to the collection of known hosts.
 *
 * Takes a comment argument that may be NULL.  A NULL comment indicates
 * there is no comment and the entry will end directly after the key
 * when written out to a file.  An empty string "" comment will indicate an
 * empty comment which will cause a single space to be written after the key.
 *
 * The 'type' argument specifies on what format the given host and keys are:
 *
 * plain  - ascii "hostname.domain.tld"
 * sha1   - SHA1(<salt> <host>) base64-encoded!
 * custom - another hash
 *
 * If 'sha1' is selected as type, the salt must be provided to the salt
 * argument. This too base64 encoded.
 *
 * The SHA-1 hash is what OpenSSH can be told to use in known_hosts files.  If
 * a custom type is used, salt is ignored and you must provide the host
 * pre-hashed when checking for it in the libssh2_knownhost_check() function.
 *
 * The keylen parameter may be omitted (zero) if the key is provided as a
 * NULL-terminated base64-encoded string.
 */

LIBSSH2_API int
libssh2_knownhost_addc(LIBSSH2_KNOWNHOSTS *hosts,
                       const char *host,
                       const char *salt,
                       const char *key, size_t keylen,
                       const char *comment, size_t commentlen, int typemask,
                       struct libssh2_knownhost **store);

/*
 * libssh2_knownhost_check
 *
 * Check a host and its associated key against the collection of known hosts.
 *
 * The type is the type/format of the given host name.
 *
 * plain  - ascii "hostname.domain.tld"
 * custom - prehashed base64 encoded. Note that this cannot use any salts.
 *
 *
 * 'knownhost' may be set to NULL if you don't care about that info.
 *
 * Returns:
 *
 * LIBSSH2_KNOWNHOST_CHECK_* values, see below
 *
 */

#define LIBSSH2_KNOWNHOST_CHECK_MATCH    0
#define LIBSSH2_KNOWNHOST_CHECK_MISMATCH 1
#define LIBSSH2_KNOWNHOST_CHECK_NOTFOUND 2
#define LIBSSH2_KNOWNHOST_CHECK_FAILURE  3

LIBSSH2_API int
libssh2_knownhost_check(LIBSSH2_KNOWNHOSTS *hosts,
                        const char *host, const char *key, size_t keylen,
                        int typemask,
                        struct libssh2_knownhost **knownhost);

/* this function is identital to the above one, but also takes a port
   argument that allows libssh2 to do a better check */
LIBSSH2_API int
libssh2_knownhost_checkp(LIBSSH2_KNOWNHOSTS *hosts,
                         const char *host, int port,
                         const char *key, size_t keylen,
                         int typemask,
                         struct libssh2_knownhost **knownhost);

/*
 * libssh2_knownhost_del
 *
 * Remove a host from the collection of known hosts. The 'entry' struct is
 * retrieved by a call to libssh2_knownhost_check().
 *
 */
LIBSSH2_API int
libssh2_knownhost_del(LIBSSH2_KNOWNHOSTS *hosts,
                      struct libssh2_knownhost *entry);

/*
 * libssh2_knownhost_free
 *
 * Free an entire collection of known hosts.
 *
 */
LIBSSH2_API void
libssh2_knownhost_free(LIBSSH2_KNOWNHOSTS *hosts);

/*
 * libssh2_knownhost_readline()
 *
 * Pass in a line of a file of 'type'. It makes libssh2 read this line.
 *
 * LIBSSH2_KNOWNHOST_FILE_OPENSSH is the only supported type.
 *
 */
LIBSSH2_API int
libssh2_knownhost_readline(LIBSSH2_KNOWNHOSTS *hosts,
                           const char *line, size_t len, int type);

/*
 * libssh2_knownhost_readfile
 *
 * Add hosts+key pairs from a given file.
 *
 * Returns a negative value for error or number of successfully added hosts.
 *
 * This implementation currently only knows one 'type' (openssh), all others
 * are reserved for future use.
 */

#define LIBSSH2_KNOWNHOST_FILE_OPENSSH 1

LIBSSH2_API int
libssh2_knownhost_readfile(LIBSSH2_KNOWNHOSTS *hosts,
                           const char *filename, int type);

/*
 * libssh2_knownhost_writeline()
 *
 * Ask libssh2 to convert a known host to an output line for storage.
 *
 * Note that this function returns LIBSSH2_ERROR_BUFFER_TOO_SMALL if the given
 * output buffer is too small to hold the desired output.
 *
 * This implementation currently only knows one 'type' (openssh), all others
 * are reserved for future use.
 *
 */
LIBSSH2_API int
libssh2_knownhost_writeline(LIBSSH2_KNOWNHOSTS *hosts,
                            struct libssh2_knownhost *known,
                            char *buffer, size_t buflen,
                            size_t *outlen, /* the amount of written data */
                            int type);

/*
 * libssh2_knownhost_writefile
 *
 * Write hosts+key pairs to a given file.
 *
 * This implementation currently only knows one 'type' (openssh), all others
 * are reserved for future use.
 */

LIBSSH2_API int
libssh2_knownhost_writefile(LIBSSH2_KNOWNHOSTS *hosts,
                            const char *filename, int type);

/*
 * libssh2_knownhost_get()
 *
 * Traverse the internal list of known hosts. Pass NULL to 'prev' to get
 * the first one. Or pass a poiner to the previously returned one to get the
 * next.
 *
 * Returns:
 * 0 if a fine host was stored in 'store'
 * 1 if end of hosts
 * [negative] on errors
 */
LIBSSH2_API int
libssh2_knownhost_get(LIBSSH2_KNOWNHOSTS *hosts,
                      struct libssh2_knownhost **store,
                      struct libssh2_knownhost *prev);

#define HAVE_LIBSSH2_AGENT_API 0x010202 /* since 1.2.2 */

struct libssh2_agent_publickey {
    unsigned int magic;              /* magic stored by the library */
    void *node;     /* handle to the internal representation of key */
    unsigned char *blob;           /* public key blob */
    size_t blob_len;               /* length of the public key blob */
    char *comment;                 /* comment in printable format */
};

/*
 * libssh2_agent_init
 *
 * Init an ssh-agent handle. Returns the pointer to the handle.
 *
 */
LIBSSH2_API LIBSSH2_AGENT *
libssh2_agent_init(LIBSSH2_SESSION *session);

/*
 * libssh2_agent_connect()
 *
 * Connect to an ssh-agent.
 *
 * Returns 0 if succeeded, or a negative value for error.
 */
LIBSSH2_API int
libssh2_agent_connect(LIBSSH2_AGENT *agent);

/*
 * libssh2_agent_list_identities()
 *
 * Request an ssh-agent to list identities.
 *
 * Returns 0 if succeeded, or a negative value for error.
 */
LIBSSH2_API int
libssh2_agent_list_identities(LIBSSH2_AGENT *agent);

/*
 * libssh2_agent_get_identity()
 *
 * Traverse the internal list of public keys. Pass NULL to 'prev' to get
 * the first one. Or pass a poiner to the previously returned one to get the
 * next.
 *
 * Returns:
 * 0 if a fine public key was stored in 'store'
 * 1 if end of public keys
 * [negative] on errors
 */
LIBSSH2_API int
libssh2_agent_get_identity(LIBSSH2_AGENT *agent,
               struct libssh2_agent_publickey **store,
               struct libssh2_agent_publickey *prev);

/*
 * libssh2_agent_userauth()
 *
 * Do publickey user authentication with the help of ssh-agent.
 *
 * Returns 0 if succeeded, or a negative value for error.
 */
LIBSSH2_API int
libssh2_agent_userauth(LIBSSH2_AGENT *agent,
               const char *username,
               struct libssh2_agent_publickey *identity);

/*
 * libssh2_agent_disconnect()
 *
 * Close a connection to an ssh-agent.
 *
 * Returns 0 if succeeded, or a negative value for error.
 */
LIBSSH2_API int
libssh2_agent_disconnect(LIBSSH2_AGENT *agent);

/*
 * libssh2_agent_free()
 *
 * Free an ssh-agent handle.  This function also frees the internal
 * collection of public keys.
 */
LIBSSH2_API void
libssh2_agent_free(LIBSSH2_AGENT *agent);


/*
 * libssh2_keepalive_config()
 *
 * Set how often keepalive messages should be sent.  WANT_REPLY
 * indicates whether the keepalive messages should request a response
 * from the server.  INTERVAL is number of seconds that can pass
 * without any I/O, use 0 (the default) to disable keepalives.  To
 * avoid some busy-loop corner-cases, if you specify an interval of 1
 * it will be treated as 2.
 *
 * Note that non-blocking applications are responsible for sending the
 * keepalive messages using libssh2_keepalive_send().
 */
LIBSSH2_API void libssh2_keepalive_config (LIBSSH2_SESSION *session,
                                           int want_reply,
                                           unsigned interval);

/*
 * libssh2_keepalive_send()
 *
 * Send a keepalive message if needed.  SECONDS_TO_NEXT indicates how
 * many seconds you can sleep after this call before you need to call
 * it again.  Returns 0 on success, or LIBSSH2_ERROR_SOCKET_SEND on
 * I/O errors.
 */
LIBSSH2_API int libssh2_keepalive_send (LIBSSH2_SESSION *session,
                                        int *seconds_to_next);

/* NOTE NOTE NOTE
   libssh2_trace() has no function in builds that aren't built with debug
   enabled
 */
LIBSSH2_API int libssh2_trace(LIBSSH2_SESSION *session, int bitmask);
#define LIBSSH2_TRACE_TRANS (1<<1)
#define LIBSSH2_TRACE_KEX   (1<<2)
#define LIBSSH2_TRACE_AUTH  (1<<3)
#define LIBSSH2_TRACE_CONN  (1<<4)
#define LIBSSH2_TRACE_SCP   (1<<5)
#define LIBSSH2_TRACE_SFTP  (1<<6)
#define LIBSSH2_TRACE_ERROR (1<<7)
#define LIBSSH2_TRACE_PUBLICKEY (1<<8)
#define LIBSSH2_TRACE_SOCKET (1<<9)

typedef void (*libssh2_trace_handler_func)(LIBSSH2_SESSION*,
                                           void*,
                                           const char *,
                                           size_t);
LIBSSH2_API int libssh2_trace_sethandler(LIBSSH2_SESSION *session,
                                         void* context,
                                         libssh2_trace_handler_func callback);

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* !RC_INVOKED */

#endif /* LIBSSH2_H */
PK-{FZ��#Md=d=include/libssh2_sftp.hnu�[���/* Copyright (c) 2004-2008, Sara Golemon <sarag@libssh2.org>
 * 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 the name of the copyright holder nor the names
 *   of any other contributors may 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.
 */

#ifndef LIBSSH2_SFTP_H
#define LIBSSH2_SFTP_H 1

#include "libssh2.h"

#ifndef WIN32
#include <unistd.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

/* Note: Version 6 was documented at the time of writing
 * However it was marked as "DO NOT IMPLEMENT" due to pending changes
 *
 * Let's start with Version 3 (The version found in OpenSSH) and go from there
 */
#define LIBSSH2_SFTP_VERSION        3

typedef struct _LIBSSH2_SFTP                LIBSSH2_SFTP;
typedef struct _LIBSSH2_SFTP_HANDLE         LIBSSH2_SFTP_HANDLE;
typedef struct _LIBSSH2_SFTP_ATTRIBUTES     LIBSSH2_SFTP_ATTRIBUTES;
typedef struct _LIBSSH2_SFTP_STATVFS        LIBSSH2_SFTP_STATVFS;

/* Flags for open_ex() */
#define LIBSSH2_SFTP_OPENFILE           0
#define LIBSSH2_SFTP_OPENDIR            1

/* Flags for rename_ex() */
#define LIBSSH2_SFTP_RENAME_OVERWRITE   0x00000001
#define LIBSSH2_SFTP_RENAME_ATOMIC      0x00000002
#define LIBSSH2_SFTP_RENAME_NATIVE      0x00000004

/* Flags for stat_ex() */
#define LIBSSH2_SFTP_STAT               0
#define LIBSSH2_SFTP_LSTAT              1
#define LIBSSH2_SFTP_SETSTAT            2

/* Flags for symlink_ex() */
#define LIBSSH2_SFTP_SYMLINK            0
#define LIBSSH2_SFTP_READLINK           1
#define LIBSSH2_SFTP_REALPATH           2

/* SFTP attribute flag bits */
#define LIBSSH2_SFTP_ATTR_SIZE              0x00000001
#define LIBSSH2_SFTP_ATTR_UIDGID            0x00000002
#define LIBSSH2_SFTP_ATTR_PERMISSIONS       0x00000004
#define LIBSSH2_SFTP_ATTR_ACMODTIME         0x00000008
#define LIBSSH2_SFTP_ATTR_EXTENDED          0x80000000

/* SFTP statvfs flag bits */
#define LIBSSH2_SFTP_ST_RDONLY              0x00000001
#define LIBSSH2_SFTP_ST_NOSUID              0x00000002

struct _LIBSSH2_SFTP_ATTRIBUTES {
    /* If flags & ATTR_* bit is set, then the value in this struct will be
     * meaningful Otherwise it should be ignored
     */
    unsigned long flags;

    libssh2_uint64_t filesize;
    unsigned long uid, gid;
    unsigned long permissions;
    unsigned long atime, mtime;
};

struct _LIBSSH2_SFTP_STATVFS {
    libssh2_uint64_t  f_bsize;    /* file system block size */
    libssh2_uint64_t  f_frsize;   /* fragment size */
    libssh2_uint64_t  f_blocks;   /* size of fs in f_frsize units */
    libssh2_uint64_t  f_bfree;    /* # free blocks */
    libssh2_uint64_t  f_bavail;   /* # free blocks for non-root */
    libssh2_uint64_t  f_files;    /* # inodes */
    libssh2_uint64_t  f_ffree;    /* # free inodes */
    libssh2_uint64_t  f_favail;   /* # free inodes for non-root */
    libssh2_uint64_t  f_fsid;     /* file system ID */
    libssh2_uint64_t  f_flag;     /* mount flags */
    libssh2_uint64_t  f_namemax;  /* maximum filename length */
};

/* SFTP filetypes */
#define LIBSSH2_SFTP_TYPE_REGULAR           1
#define LIBSSH2_SFTP_TYPE_DIRECTORY         2
#define LIBSSH2_SFTP_TYPE_SYMLINK           3
#define LIBSSH2_SFTP_TYPE_SPECIAL           4
#define LIBSSH2_SFTP_TYPE_UNKNOWN           5
#define LIBSSH2_SFTP_TYPE_SOCKET            6
#define LIBSSH2_SFTP_TYPE_CHAR_DEVICE       7
#define LIBSSH2_SFTP_TYPE_BLOCK_DEVICE      8
#define LIBSSH2_SFTP_TYPE_FIFO              9

/*
 * Reproduce the POSIX file modes here for systems that are not POSIX
 * compliant.
 *
 * These is used in "permissions" of "struct _LIBSSH2_SFTP_ATTRIBUTES"
 */
/* File type */
#define LIBSSH2_SFTP_S_IFMT         0170000     /* type of file mask */
#define LIBSSH2_SFTP_S_IFIFO        0010000     /* named pipe (fifo) */
#define LIBSSH2_SFTP_S_IFCHR        0020000     /* character special */
#define LIBSSH2_SFTP_S_IFDIR        0040000     /* directory */
#define LIBSSH2_SFTP_S_IFBLK        0060000     /* block special */
#define LIBSSH2_SFTP_S_IFREG        0100000     /* regular */
#define LIBSSH2_SFTP_S_IFLNK        0120000     /* symbolic link */
#define LIBSSH2_SFTP_S_IFSOCK       0140000     /* socket */

/* File mode */
/* Read, write, execute/search by owner */
#define LIBSSH2_SFTP_S_IRWXU        0000700     /* RWX mask for owner */
#define LIBSSH2_SFTP_S_IRUSR        0000400     /* R for owner */
#define LIBSSH2_SFTP_S_IWUSR        0000200     /* W for owner */
#define LIBSSH2_SFTP_S_IXUSR        0000100     /* X for owner */
/* Read, write, execute/search by group */
#define LIBSSH2_SFTP_S_IRWXG        0000070     /* RWX mask for group */
#define LIBSSH2_SFTP_S_IRGRP        0000040     /* R for group */
#define LIBSSH2_SFTP_S_IWGRP        0000020     /* W for group */
#define LIBSSH2_SFTP_S_IXGRP        0000010     /* X for group */
/* Read, write, execute/search by others */
#define LIBSSH2_SFTP_S_IRWXO        0000007     /* RWX mask for other */
#define LIBSSH2_SFTP_S_IROTH        0000004     /* R for other */
#define LIBSSH2_SFTP_S_IWOTH        0000002     /* W for other */
#define LIBSSH2_SFTP_S_IXOTH        0000001     /* X for other */

/* macros to check for specific file types, added in 1.2.5 */
#define LIBSSH2_SFTP_S_ISLNK(m) \
  (((m) & LIBSSH2_SFTP_S_IFMT) == LIBSSH2_SFTP_S_IFLNK)
#define LIBSSH2_SFTP_S_ISREG(m) \
  (((m) & LIBSSH2_SFTP_S_IFMT) == LIBSSH2_SFTP_S_IFREG)
#define LIBSSH2_SFTP_S_ISDIR(m) \
  (((m) & LIBSSH2_SFTP_S_IFMT) == LIBSSH2_SFTP_S_IFDIR)
#define LIBSSH2_SFTP_S_ISCHR(m) \
  (((m) & LIBSSH2_SFTP_S_IFMT) == LIBSSH2_SFTP_S_IFCHR)
#define LIBSSH2_SFTP_S_ISBLK(m) \
  (((m) & LIBSSH2_SFTP_S_IFMT) == LIBSSH2_SFTP_S_IFBLK)
#define LIBSSH2_SFTP_S_ISFIFO(m) \
  (((m) & LIBSSH2_SFTP_S_IFMT) == LIBSSH2_SFTP_S_IFIFO)
#define LIBSSH2_SFTP_S_ISSOCK(m) \
  (((m) & LIBSSH2_SFTP_S_IFMT) == LIBSSH2_SFTP_S_IFSOCK)

/* SFTP File Transfer Flags -- (e.g. flags parameter to sftp_open())
 * Danger will robinson... APPEND doesn't have any effect on OpenSSH servers */
#define LIBSSH2_FXF_READ                        0x00000001
#define LIBSSH2_FXF_WRITE                       0x00000002
#define LIBSSH2_FXF_APPEND                      0x00000004
#define LIBSSH2_FXF_CREAT                       0x00000008
#define LIBSSH2_FXF_TRUNC                       0x00000010
#define LIBSSH2_FXF_EXCL                        0x00000020

/* SFTP Status Codes (returned by libssh2_sftp_last_error() ) */
#define LIBSSH2_FX_OK                       0
#define LIBSSH2_FX_EOF                      1
#define LIBSSH2_FX_NO_SUCH_FILE             2
#define LIBSSH2_FX_PERMISSION_DENIED        3
#define LIBSSH2_FX_FAILURE                  4
#define LIBSSH2_FX_BAD_MESSAGE              5
#define LIBSSH2_FX_NO_CONNECTION            6
#define LIBSSH2_FX_CONNECTION_LOST          7
#define LIBSSH2_FX_OP_UNSUPPORTED           8
#define LIBSSH2_FX_INVALID_HANDLE           9
#define LIBSSH2_FX_NO_SUCH_PATH             10
#define LIBSSH2_FX_FILE_ALREADY_EXISTS      11
#define LIBSSH2_FX_WRITE_PROTECT            12
#define LIBSSH2_FX_NO_MEDIA                 13
#define LIBSSH2_FX_NO_SPACE_ON_FILESYSTEM   14
#define LIBSSH2_FX_QUOTA_EXCEEDED           15
#define LIBSSH2_FX_UNKNOWN_PRINCIPLE        16 /* Initial mis-spelling */
#define LIBSSH2_FX_UNKNOWN_PRINCIPAL        16
#define LIBSSH2_FX_LOCK_CONFlICT            17 /* Initial mis-spelling */
#define LIBSSH2_FX_LOCK_CONFLICT            17
#define LIBSSH2_FX_DIR_NOT_EMPTY            18
#define LIBSSH2_FX_NOT_A_DIRECTORY          19
#define LIBSSH2_FX_INVALID_FILENAME         20
#define LIBSSH2_FX_LINK_LOOP                21

/* Returned by any function that would block during a read/write opperation */
#define LIBSSH2SFTP_EAGAIN LIBSSH2_ERROR_EAGAIN

/* SFTP API */
LIBSSH2_API LIBSSH2_SFTP *libssh2_sftp_init(LIBSSH2_SESSION *session);
LIBSSH2_API int libssh2_sftp_shutdown(LIBSSH2_SFTP *sftp);
LIBSSH2_API unsigned long libssh2_sftp_last_error(LIBSSH2_SFTP *sftp);
LIBSSH2_API LIBSSH2_CHANNEL *libssh2_sftp_get_channel(LIBSSH2_SFTP *sftp);

/* File / Directory Ops */
LIBSSH2_API LIBSSH2_SFTP_HANDLE *libssh2_sftp_open_ex(LIBSSH2_SFTP *sftp,
                                                      const char *filename,
                                                      unsigned int filename_len,
                                                      unsigned long flags,
                                                      long mode, int open_type);
#define libssh2_sftp_open(sftp, filename, flags, mode) \
    libssh2_sftp_open_ex((sftp), (filename), strlen(filename), (flags), \
                         (mode), LIBSSH2_SFTP_OPENFILE)
#define libssh2_sftp_opendir(sftp, path) \
    libssh2_sftp_open_ex((sftp), (path), strlen(path), 0, 0, \
                         LIBSSH2_SFTP_OPENDIR)

LIBSSH2_API ssize_t libssh2_sftp_read(LIBSSH2_SFTP_HANDLE *handle,
                                      char *buffer, size_t buffer_maxlen);

LIBSSH2_API int libssh2_sftp_readdir_ex(LIBSSH2_SFTP_HANDLE *handle, \
                                        char *buffer, size_t buffer_maxlen,
                                        char *longentry,
                                        size_t longentry_maxlen,
                                        LIBSSH2_SFTP_ATTRIBUTES *attrs);
#define libssh2_sftp_readdir(handle, buffer, buffer_maxlen, attrs)      \
    libssh2_sftp_readdir_ex((handle), (buffer), (buffer_maxlen), NULL, 0, \
                            (attrs))

LIBSSH2_API ssize_t libssh2_sftp_write(LIBSSH2_SFTP_HANDLE *handle,
                                       const char *buffer, size_t count);
LIBSSH2_API int libssh2_sftp_fsync(LIBSSH2_SFTP_HANDLE *handle);

LIBSSH2_API int libssh2_sftp_close_handle(LIBSSH2_SFTP_HANDLE *handle);
#define libssh2_sftp_close(handle) libssh2_sftp_close_handle(handle)
#define libssh2_sftp_closedir(handle) libssh2_sftp_close_handle(handle)

LIBSSH2_API void libssh2_sftp_seek(LIBSSH2_SFTP_HANDLE *handle, size_t offset);
LIBSSH2_API void libssh2_sftp_seek64(LIBSSH2_SFTP_HANDLE *handle,
                                     libssh2_uint64_t offset);
#define libssh2_sftp_rewind(handle) libssh2_sftp_seek64((handle), 0)

LIBSSH2_API size_t libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle);
LIBSSH2_API libssh2_uint64_t libssh2_sftp_tell64(LIBSSH2_SFTP_HANDLE *handle);

LIBSSH2_API int libssh2_sftp_fstat_ex(LIBSSH2_SFTP_HANDLE *handle,
                                      LIBSSH2_SFTP_ATTRIBUTES *attrs,
                                      int setstat);
#define libssh2_sftp_fstat(handle, attrs) \
    libssh2_sftp_fstat_ex((handle), (attrs), 0)
#define libssh2_sftp_fsetstat(handle, attrs) \
    libssh2_sftp_fstat_ex((handle), (attrs), 1)

/* Miscellaneous Ops */
LIBSSH2_API int libssh2_sftp_rename_ex(LIBSSH2_SFTP *sftp,
                                       const char *source_filename,
                                       unsigned int srouce_filename_len,
                                       const char *dest_filename,
                                       unsigned int dest_filename_len,
                                       long flags);
#define libssh2_sftp_rename(sftp, sourcefile, destfile) \
    libssh2_sftp_rename_ex((sftp), (sourcefile), strlen(sourcefile), \
                           (destfile), strlen(destfile),                \
                           LIBSSH2_SFTP_RENAME_OVERWRITE | \
                           LIBSSH2_SFTP_RENAME_ATOMIC | \
                           LIBSSH2_SFTP_RENAME_NATIVE)

LIBSSH2_API int libssh2_sftp_unlink_ex(LIBSSH2_SFTP *sftp,
                                       const char *filename,
                                       unsigned int filename_len);
#define libssh2_sftp_unlink(sftp, filename) \
    libssh2_sftp_unlink_ex((sftp), (filename), strlen(filename))

LIBSSH2_API int libssh2_sftp_fstatvfs(LIBSSH2_SFTP_HANDLE *handle,
                                      LIBSSH2_SFTP_STATVFS *st);

LIBSSH2_API int libssh2_sftp_statvfs(LIBSSH2_SFTP *sftp,
                                     const char *path,
                                     size_t path_len,
                                     LIBSSH2_SFTP_STATVFS *st);

LIBSSH2_API int libssh2_sftp_mkdir_ex(LIBSSH2_SFTP *sftp,
                                      const char *path,
                                      unsigned int path_len, long mode);
#define libssh2_sftp_mkdir(sftp, path, mode) \
    libssh2_sftp_mkdir_ex((sftp), (path), strlen(path), (mode))

LIBSSH2_API int libssh2_sftp_rmdir_ex(LIBSSH2_SFTP *sftp,
                                      const char *path,
                                      unsigned int path_len);
#define libssh2_sftp_rmdir(sftp, path) \
    libssh2_sftp_rmdir_ex((sftp), (path), strlen(path))

LIBSSH2_API int libssh2_sftp_stat_ex(LIBSSH2_SFTP *sftp,
                                     const char *path,
                                     unsigned int path_len,
                                     int stat_type,
                                     LIBSSH2_SFTP_ATTRIBUTES *attrs);
#define libssh2_sftp_stat(sftp, path, attrs) \
    libssh2_sftp_stat_ex((sftp), (path), strlen(path), LIBSSH2_SFTP_STAT, \
                         (attrs))
#define libssh2_sftp_lstat(sftp, path, attrs) \
    libssh2_sftp_stat_ex((sftp), (path), strlen(path), LIBSSH2_SFTP_LSTAT, \
                         (attrs))
#define libssh2_sftp_setstat(sftp, path, attrs) \
    libssh2_sftp_stat_ex((sftp), (path), strlen(path), LIBSSH2_SFTP_SETSTAT, \
                         (attrs))

LIBSSH2_API int libssh2_sftp_symlink_ex(LIBSSH2_SFTP *sftp,
                                        const char *path,
                                        unsigned int path_len,
                                        char *target,
                                        unsigned int target_len, int link_type);
#define libssh2_sftp_symlink(sftp, orig, linkpath) \
    libssh2_sftp_symlink_ex((sftp), (orig), strlen(orig), (linkpath), \
                            strlen(linkpath), LIBSSH2_SFTP_SYMLINK)
#define libssh2_sftp_readlink(sftp, path, target, maxlen) \
    libssh2_sftp_symlink_ex((sftp), (path), strlen(path), (target), (maxlen), \
    LIBSSH2_SFTP_READLINK)
#define libssh2_sftp_realpath(sftp, path, target, maxlen) \
    libssh2_sftp_symlink_ex((sftp), (path), strlen(path), (target), (maxlen), \
                            LIBSSH2_SFTP_REALPATH)

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* LIBSSH2_SFTP_H */
PK-{FZ�@��.share/man/man3/libssh2_session_disconnect_ex.3nu�[���.TH libssh2_session_disconnect_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_disconnect_ex - terminate transport layer
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_session_disconnect_ex(LIBSSH2_SESSION *session, int reason, const char *description, const char *lang);

int 
libssh2_session_disconnect(LIBSSH2_SESSION *session, const char *description);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIreason\fP - One of the Disconnect Reason constants.

\fIdescription\fP - Human readable reason for disconnection.

\fIlang\fP - Localization string describing the language/encoding of the description provided.

Send a disconnect message to the remote host associated with \fIsession\fP, 
along with a \fIreason\fP symbol and a verbose \fIdescription\fP.

As a convenience, the macro 
.BR libssh2_session_disconnect(3)
is provided. It calls
.BR libssh2_session_disconnect_ex(3)
with \fIreason\fP set to SSH_DISCONNECT_BY_APPLICATION 
and \fIlang\fP set to an empty string.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZIxݿyy&share/man/man3/libssh2_knownhost_get.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_get 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_get - get a known host off the collection of known hosts
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_get(LIBSSH2_KNOWNHOSTS *hosts,
                          struct libssh2_knownhost **store,
                          struct libssh2_knownhost *prev):
.SH DESCRIPTION
\fIlibssh2_knownhost_get(3)\fP allows an application to iterate over all known
hosts in the collection.

\fIstore\fP should point to a pointer that gets filled in to point to the
known host data.

\fIprev\fP is a pointer to a previous 'struct libssh2_knownhost' as returned
by a previous invoke of this function, or NULL to get the first entry in the
internal collection.
.SH RETURN VALUE
Returns 0 if everything is fine and information about a host was stored in
the \fIstore\fP struct.

Returns 1 if it reached the end of hosts.

Returns negative values for error
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_readfile(3)
.BR libssh2_knownhost_writefile(3)
.BR libssh2_knownhost_add(3)
PK-{FZ���DRR$share/man/man3/libssh2_sftp_rename.3nu�[���.TH libssh2_sftp_rename 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_rename - convenience macro for \fIlibssh2_sftp_rename_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_rename(LIBSSH2_SFTP *sftp, const char *source_filename, const char *destination_filename);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_rename_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_rename_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_rename_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_rename_ex(3)
PK-{FZZ,'�$share/man/man3/libssh2_sftp_seek64.3nu�[���.TH libssh2_sftp_seek64 3 "22 Dec 2008" "libssh2 1.0" "libssh2 manual"
.SH NAME
libssh2_sftp_seek64 - set the read/write position within a file
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

void libssh2_sftp_seek64(LIBSSH2_SFTP_HANDLE *handle,
                         libssh2_uint64_t offset);
.SH DESCRIPTION
\fIhandle\fP - SFTP File Handle as returned by 
.BR libssh2_sftp_open_ex(3)

\fIoffset\fP - Number of bytes from the beginning of file to seek to.

Move the file handle's internal pointer to an arbitrary location. libssh2
implements file pointers as a localized concept to make file access appear
more POSIX like. No packets are exchanged with the server during a seek
operation. The localized file pointer is simply used as a convenience offset
during read/write operations.

You MUST NOT seek during writing or reading a file with SFTP, as the internals
use outstanding packets and changing the "file position" during transit will
results in badness.
.SH AVAILABILITY
Added in 1.0
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZ���share/man/man3/libssh2_trace.3nu�[���.TH libssh2_trace 3 "26 Dec 2008" "libssh2 1.0" "libssh2 manual"
.SH NAME
libssh2_trace - enable debug info from inside libssh2
.SH SYNOPSIS
#include <libssh2.h>

void libssh2_trace(LIBSSH2_SESSION *session, int bitmask);

.SH DESCRIPTION
This is a function present in the library that can be used to get debug info
from within libssh2 when it is running. Helpful when trying to trace or debug
behaviors. Note that this function has no effect unless libssh2 was built to
support tracing! It is usually disabled in release builds.

\fBbitmask\fP can be set to the logical OR of none, one or more of these:
.RS
.IP LIBSSH2_TRACE_SOCKET
Socket low-level debugging
.IP LIBSSH2_TRACE_TRANS
Transport layer debugging
.IP LIBSSH2_TRACE_KEX
Key exchange debugging
.IP LIBSSH2_TRACE_AUTH
Authentication debugging
.IP LIBSSH2_TRACE_CONN
Connection layer debugging
.IP LIBSSH2_TRACE_SCP
SCP debugging
.IP LIBSSH2_TRACE_SFTP
SFTP debugging
.IP LIBSSH2_TRACE_ERROR
Error debugging
.IP LIBSSH2_TRACE_PUBLICKEY
Public Key debugging
.RE
PK-{FZx#����'share/man/man3/libssh2_sftp_rename_ex.3nu�[���.TH libssh2_sftp_rename_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_rename_ex - rename an SFTP file
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_rename_ex(LIBSSH2_SFTP *sftp, const char *source_filename, unsigned int source_filename_len, const char *dest_filename, unsigned int dest_filename_len, long flags);

int 
libssh2_sftp_rename_ex(LIBSSH2_SFTP *sftp, const char *source_filename, const char *dest_filename);

.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

\fIsourcefile\fP - Path and name of the existing filesystem entry

\fIsourcefile_len\fP - Length of the path and name of the existing 
filesystem entry

\fIdestfile\fP - Path and name of the target filesystem entry

\fIdestfile_len\fP - Length of the path and name of the target 
filesystem entry

\fIflags\fP - 
Bitmask flags made up of LIBSSH2_SFTP_RENAME_* constants.

Rename a filesystem object on the remote filesystem. The semantics of 
this command typically include the ability to move a filesystem object 
between folders and/or filesystem mounts. If the LIBSSH2_SFTP_RENAME_OVERWRITE 
flag is not set and the destfile entry already exists, the operation 
will fail. Use of the other two flags indicate a preference (but not a 
requirement) for the remote end to perform an atomic rename operation 
and/or using native system calls when possible.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.

.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZu�~���!share/man/man3/libssh2_scp_recv.3nu�[���.TH libssh2_scp_recv 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_scp_recv - request a remote file via SCP
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_scp_recv(LIBSSH2_SESSION *session, const char *path, struct stat *sb);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIpath\fP - Full path and filename of file to transfer. That is the remote
file name.

\fIsb\fP - Populated with remote file's size, mode, mtime, and atime

Request a file from the remote host via SCP.
.SH RETURN VALUE
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SCP_PROTOCOL\fP - 

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would
block.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
.BR libssh2_channel_open_ex(3)

PK-{FZM=����$share/man/man3/libssh2_scp_send_ex.3nu�[���.TH libssh2_scp_send_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_scp_send_ex - Send a file via SCP
.SH SYNOPSIS
.nf
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_scp_send_ex(LIBSSH2_SESSION *session, const char *path, int mode,
                    size_t size, long mtime, long atime);
.SH DESCRIPTION
This function has been deemed deprecated since libssh2 1.2.6. See
\fIlibssh2_scp_send64(3)\fP.

\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIpath\fP - Full path and filename of file to transfer to. That is the remote
file name.

\fImode\fP - File access mode to create file with

\fIsize\fP - Size of file being transmitted (Must be known 
ahead of time precisely)

\fImtime\fP - mtime to assign to file being created

\fIatime\fP - atime to assign to file being created (Set this and 
mtime to zero to instruct remote host to use current time).

Send a file to the remote host via SCP.
.SH RETURN VALUE
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SCP_PROTOCOL\fP - 

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would
block.
.SH AVAILABILITY
This function was marked deprecated in libssh2 1.2.6 as
 \fIlibssh2_scp_send64(3)\fP has been introduced to replace this function.
.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
PK-{FZ��/�%share/man/man3/libssh2_channel_free.3nu�[���.TH libssh2_channel_free 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_free - free all resources associated with a channel
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_free(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
\fIchannel\fP - Channel stream to free.

Release all resources associated with a channel stream. If the channel has 
not yet been closed with 
.BR libssh2_channel_close(3)
, it will be called automatically so that the remote end may know that it 
can safely free its own resources.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH SEE ALSO
.BR libssh2_channel_close(3)
PK-{FZu>��kk,share/man/man3/libssh2_channel_request_pty.3nu�[���.TH libssh2_channel_request_pty 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_request_pty - convenience macro for \fIlibssh2_channel_request_pty_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_request_pty(LIBSSH2_SESSION *session, const char *term);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_request_pty_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_request_pty_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_request_pty_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_request_pty_ex(3)
PK-{FZ~g2j��(share/man/man3/libssh2_knownhost_check.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_check 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_check - check a host+key against the list of known hosts
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_check(LIBSSH2_KNOWNHOSTS *hosts,
                            const char *host,
                            const char *key, size_t keylen,
                            int typemask,
                            struct libssh2_knownhost **knownhost);
.SH DESCRIPTION
Checks a host and its associated key against the collection of known hosts,
and returns info back about the (partially) matched entry.

\fIhost\fP is a pointer the host name in plain text. The host name can be the
IP numerical address of the host or the full name.

\fIkey\fP is a pointer to the key for the given host.

\fIkeylen\fP is the total size in bytes of the key pointed to by the \fIkey\fP
argument

\fItypemask\fP is a bitmask that specifies format and info about the data
passed to this function. Specifically, it details what format the host name is,
what format the key is and what key type it is.

The host name is given as one of the following types:
LIBSSH2_KNOWNHOST_TYPE_PLAIN or LIBSSH2_KNOWNHOST_TYPE_CUSTOM.

The key is encoded using one of the following encodings:
LIBSSH2_KNOWNHOST_KEYENC_RAW or LIBSSH2_KNOWNHOST_KEYENC_BASE64.

\fIknownhost\fP if set to non-NULL, it must be a pointer to a 'struct
libssh2_knownhost' pointer that gets filled in to point to info about a known
host that matches or partially matches.
.SH RETURN VALUE
\fIlibssh2_knownhost_check(3)\fP returns info about how well the provided
host + key pair matched one of the entries in the list of known hosts.

LIBSSH2_KNOWNHOST_CHECK_FAILURE - something prevented the check to be made

LIBSSH2_KNOWNHOST_CHECK_NOTFOUND - no host match was found

LIBSSH2_KNOWNHOST_CHECK_MATCH - hosts and keys match.

LIBSSH2_KNOWNHOST_CHECK_MISMATCH - host was found, but the keys didn't match!
.SH AVAILABILITY
Added in libssh2 1.2
.SH EXAMPLE
See the ssh2_exec.c example as provided in the tarball.
.SH SEE ALSO
.BR libssh2_knownhost_init(3)
.BR libssh2_knownhost_free(3)
.BR libssh2_knownhost_add(3)
PK-{FZ=�?nn#share/man/man3/libssh2_agent_init.3nu�[���.\"
.\" Copyright (c) 2009 by Daiki Ueno
.\"
.TH libssh2_agent_init 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_agent_init - init an ssh-agent handle
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_AGENT *libssh2_agent_init(LIBSSH2_SESSION *session);
.SH DESCRIPTION
Init an ssh-agent handle. Returns the handle to an internal
representation of an ssh-agent connection.  After the successful
initialization, an application can call \fBlibssh2_agent_connect(3)\fP
to connect to a running ssh-agent.

Call \fBlibssh2_agent_free(3)\fP to free the handle again after you're
doing using it.
.SH RETURN VALUE
Returns a handle pointer or NULL if something went wrong. The returned handle
is used as input to all other ssh-agent related functions libssh2 provides.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_agent_connect(3)
.BR libssh2_agent_free(3)
PK-{FZ����00&share/man/man3/libssh2_sftp_closedir.3nu�[���.TH libssh2_sftp_closedir 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_closedir - convenience macro for \fIlibssh2_sftp_close_handle(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_closedir(LIBSSH2_SFTP_HANDLE *handle)

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_close_handle(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_close_handle(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_close_handle(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_close_handle(3)
PK-{FZ�
��))$share/man/man3/libssh2_sftp_unlink.3nu�[���.TH libssh2_sftp_unlink 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_unlink - convenience macro for \fIlibssh2_sftp_unlink_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_unlink(LIBSSH2_SFTP *sftp, const char *filename);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_unlink_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_unlink_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_unlink_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_unlink_ex(3)
PK-{FZy����(share/man/man3/libssh2_sftp_last_error.3nu�[���.TH libssh2_sftp_last_error 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_last_error - return the last SFTP-specific error code
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

unsigned long 
libssh2_sftp_last_error(LIBSSH2_SFTP *sftp);

.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

Returns the last error code produced by the SFTP layer. Note that this only
returns a sensible error code if libssh2 returned LIBSSH2_ERROR_SFTP_PROTOCOL
in a previous call. Using \fBlibssh2_sftp_last_error(3)\fP without a
preceding SFTP protocol error, it will return an unspecified value.

.SH RETURN VALUE
Current error code state of the SFTP instance.

.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZ� oo*share/man/man3/libssh2_channel_subsystem.3nu�[���.TH libssh2_channel_subsystem 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_subsystem - convenience macro for \fIlibssh2_channel_process_startup(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_subsystem(LIBSSH2_CHANNEL *channel, const char *subsystem);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_process_startup(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_process_startup(3)\fP
.SH ERRORS
See \fIlibssh2_channel_process_startup(3)\fP
.SH SEE ALSO
.BR libssh2_channel_process_startup(3)
PK-{FZ�6�Ϥ�%share/man/man3/libssh2_hostkey_hash.3nu�[���.TH libssh2_hostkey_hash 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_hostkey_hash - return a hash of the remote host's key
.SH SYNOPSIS
#include <libssh2.h>

const char *
libssh2_hostkey_hash(LIBSSH2_SESSION *session, int hash_type);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIhash_type\fP - One of: \fBLIBSSH2_HOSTKEY_HASH_MD5\fP or 
\fBLIBSSH2_HOSTKEY_HASH_SHA1\fP.

Returns the computed digest of the remote system's hostkey. The length of 
the returned string is hash_type specific (e.g. 16 bytes for MD5, 
20 bytes for SHA1).
.SH RETURN VALUE
Computed hostkey hash value, or NULL if the information is not available
(either the session has not yet been started up, or the requested hash
algorithm was not available). The hash consists of raw binary bytes, not hex
digits, so it is not directly printable.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ���((#share/man/man3/libssh2_sftp_mkdir.3nu�[���.TH libssh2_sftp_mkdir 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_mkdir - convenience macro for \fIlibssh2_sftp_mkdir_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_mkdir(LIBSSH2_SFTP *sftp, const char *path, long mode);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_mkdir_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_mkdir_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_mkdir_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_mkdir_ex(3)
PK-{FZUy>(OOshare/man/man3/libssh2_exit.3nu�[���.TH libssh2_exit 3 "19 Mar 2010" "libssh2 1.2.5" "libssh2 manual"
.SH NAME
libssh2_exit - global library deinitialization
.SH SYNOPSIS
#include <libssh2.h>

void
libssh2_exit(void);
.SH DESCRIPTION
Exit the libssh2 functions and free's all memory used internal.
.SH AVAILABILITY
Added in libssh2 1.2.5
.SH SEE ALSO
.BR libssh2_init(3)
PK-{FZX����-share/man/man3/libssh2_publickey_list_fetch.3nu�[���.TH libssh2_publickey_list_fetch 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_publickey_list_fetch - TODO
.SH SYNOPSIS

.SH DESCRIPTION

.SH RETURN VALUE

.SH ERRORS

.SH SEE ALSO
PK-{FZGK��+share/man/man3/libssh2_session_last_errno.3nu�[���.TH libssh2_session_last_errno 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_last_errno - get the most recent error number
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_session_last_errno(LIBSSH2_SESSION *session);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

Determine the most recent error condition.

.SH RETURN VALUE
Numeric error code corresponding to the the Error Code constants.

.SH SEE ALSO
.BR libssh2_session_last_error(3)
PK-{FZN��[[)share/man/man3/libssh2_channel_wait_eof.3nu�[���.TH libssh2_channel_wait_eof 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_wait_eof - wait for the remote to reply to an EOF request
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_wait_eof(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
Wait for the remote end to acknowledge an EOF request.

.SH RETURN VALUE
Return 0 on success or negative on failure. It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH SEE ALSO
.BR libssh2_channel_send_eof(3)
.BR libssh2_channel_eof(3)
PK-{FZ;f��#share/man/man3/libssh2_scp_send64.3nu�[���.TH libssh2_scp_send64 3 "17 Apr 2010" "libssh2 1.2.6" "libssh2 manual"
.SH NAME
libssh2_scp_send64 - Send a file via SCP
.SH SYNOPSIS
.nf
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_scp_send64(LIBSSH2_SESSION *session, const char *path, int mode,
                   libssh2_uint64_t size, time_t mtime, time_t atime);
.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIpath\fP - Full path and filename of file to transfer to. That is the remote
file name.

\fImode\fP - File access mode to create file with

\fIsize\fP - Size of file being transmitted (Must be known ahead of
time). Note that this needs to be passed on as variable type
libssh2_uint64_t. This type is 64 bit on modern operating systems and
compilers.

\fImtime\fP - mtime to assign to file being created

\fIatime\fP - atime to assign to file being created (Set this and 
mtime to zero to instruct remote host to use current time).

Send a file to the remote host via SCP.
.SH RETURN VALUE
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SCP_PROTOCOL\fP - 

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would
block.
.SH AVAILABILITY
This function was added in libssh2 1.2.6 and is meant to replace the former
\fIlibssh2_scp_send_ex(3)\fP function.
.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
PK-{FZj���'share/man/man3/libssh2_publickey_init.3nu�[���.TH libssh2_publickey_init 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_publickey_init - TODO
.SH SYNOPSIS

.SH DESCRIPTION

.SH RETURN VALUE

.SH ERRORS

.SH SEE ALSO
PK-{FZ�͵���#share/man/man3/libssh2_sftp_write.3nu�[���.TH libssh2_sftp_write 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_write - write SFTP data
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

ssize_t libssh2_sftp_write(LIBSSH2_SFTP_HANDLE *handle,
                           const char *buffer,
                           size_t count);
.SH DESCRIPTION
\fBlibssh2_sftp_write(3)\fP writes a block of data to the SFTP server. This
method is modeled after the POSIX write() function and uses the same calling
semantics.

\fIhandle\fP - SFTP file handle as returned by \fIlibssh2_sftp_open_ex(3)\fP.

\fIbuffer\fP - points to the data to send off.

\fIcount\fP - Number of bytes from 'buffer' to write. Note that it may not be
possible to write all bytes as requested.

\fIlibssh2_sftp_handle(3)\fP will use as much as possible of the buffer and
put it into a single SFTP protocol packet. This means that to get maximum
performance when sending larger files, you should try to always pass in at
least 32K of data to this function.

.SH WRITE AHEAD
Starting in libssh2 version 1.2.8, the default behavior of libssh2 is to
create several smaller outgoing packets for all data you pass to this function
and it will return a positive number as soon as the first packet is
acknowledged from the server.

This has the effect that sometimes more data has been sent off but isn't acked
yet when this function returns, and when this function is subsequently called
again to write more data, libssh2 will immediately figure out that the data is
already received remotely.

In most normal situation this should not cause any problems, but it should be
noted that if you've once called libssh2_sftp_write() with data and it returns
short, you MUST still assume that the rest of the data might've been cached so
you need to make sure you don't alter that data and think that the version you
have in your next function invoke will be detected or used.

The reason for this funny behavior is that SFTP can only send 32K data in each
packet and it gets all packets acked individually. This means we cannot use a
simple serial approach if we want to reach high performance even on high
latency connections. And we want that.
.SH RETURN VALUE
Actual number of bytes written or negative on failure.

If used in non-blocking mode, it returns LIBSSH2_ERROR_EAGAIN when it would
otherwise block. While LIBSSH2_ERROR_EAGAIN is a negative number, it isn't
really a failure per se.

If this function returns 0 (zero) it should not be considered an error, but
simply that there was no error but yet no payload data got sent to the other
end.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZ�ӆ{{/share/man/man3/libssh2_channel_forward_listen.3nu�[���.TH libssh2_channel_forward_listen 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_forward_listen - convenience macro for \fIlibssh2_channel_forward_listen_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_forward_listen(LIBSSH2_SESSION *session, int port);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_forward_listen_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_forward_listen_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_forward_listen_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_forward_listen_ex(3)
PK-{FZ�f�5KK&share/man/man3/libssh2_channel_write.3nu�[���.TH libssh2_channel_write 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_write - convenience macro for \fIlibssh2_channel_write_ex(3)\fP
.SH SYNOPSIS
.nf
#include <libssh2.h>

ssize_t libssh2_channel_write(LIBSSH2_CHANNEL *channel, const char *buf, size_t buflen);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_write_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_write_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_write_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_write_ex(3)
PK-{FZ(2q��� share/man/man3/libssh2_version.3nu�[���.TH libssh2_version 3 "23 Feb 2009" "libssh2 1.1" "libssh2 manual"
.SH NAME
libssh2_version - return the libssh2 version number
.SH SYNOPSIS
#include <libssh2.h>

const char *
libssh2_version(int required_version);
.SH DESCRIPTION
If \fIrequired_version\fP is lower than or equal to the version number of the
libssh2 in use, the version number of libssh2 is returned as a pointer to a
zero terminated string.

The \fIrequired_version\fP should be the version number as constructed by the
LIBSSH2_VERSION_NUM define in the libssh2.h public header file, which is a 24
bit number in the 0xMMmmpp format. MM for major, mm for minor and pp for patch
number.
.SH RETURN VALUE
The version number of libssh2 is returned as a pointer to a zero terminated
string or NULL if the \fIrequired_version\fP isn't fulfilled.
.SH EXAMPLE
To make sure you run with the correct libssh2 version:

.nf
if (!libssh2_version(LIBSSH2_VERSION_NUM)) {
  fprintf (stderr, \&"Runtime libssh2 version too old!\&");
  exit(1);
}
.fi

Unconditionally get the version number:

printf(\&"libssh2 version: %s\&", libssh2_version(0) );
.SH AVAILABILITY
This function was added in libssh2 1.1, in previous versions there way no way
to extract this info in run-time.
PK-{FZ�"�ȋ�*share/man/man3/libssh2_poll_channel_read.3nu�[���.TH libssh2_poll_channel_read 3 "14 Dec 2006" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_poll_channel_read - check if data is available
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_poll_channel_read(LIBSSH2_CHANNEL *channel, int extended);
.SH DESCRIPTION
This function is deprecated. Do note use.

\fIlibssh2_poll_channel_read(3)\fP checks to see if data is available in the
\fIchannel\fP's read buffer. No attempt is made with this method to see if
packets are available to be processed. For full polling support, use
\fIlibssh2_poll(3)\fP.
.SH RETURN VALUE
Returns 1 when data is available and 0 otherwise.
.SH SEE ALSO
.BR libssh2_poll(3)
PK-{FZ��f��1share/man/man3/libssh2_channel_request_pty_size.3nu�[���.TH libssh2_channel_request_pty_size 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_request_pty_size - convenience macro for \fIlibssh2_channel_request_pty_size_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_request_pty_size(LIBSSH2_CHANNEL *channel, int width, int height);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_request_pty_size_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_request_pty_size_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_request_pty_size_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_request_pty_size_ex(3)
PK-{FZ�],UU&share/man/man3/libssh2_agent_connect.3nu�[���.\"
.\" Copyright (c) 2009 by Daiki Ueno
.\"
.TH libssh2_agent_connect 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_agent_connect - connect to an ssh-agent
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_agent_connect(LIBSSH2_AGENT *agent);
.SH DESCRIPTION
Connect to an ssh-agent running on the system.

Call \fBlibssh2_agent_disconnect(3)\fP to close the connection after
you're doing using it.
.SH RETURN VALUE
Returns 0 if succeeded, or a negative value for error.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_agent_init(3)
.BR libssh2_agent_disconnect(3)

PK-{FZ�t��``-share/man/man3/libssh2_channel_write_stderr.3nu�[���.TH libssh2_channel_write_stderr 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_write_stderr - convenience macro for \fIlibssh2_channel_write_ex(3)\fP
.SH SYNOPSIS
.nf
#include <libssh2.h>

ssize_t libssh2_channel_write_stderr(LIBSSH2_CHANNEL *channel, const char *buf, size_t buflen);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_write_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_write_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_write_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_write_ex(3)
PK-{FZSA��'share/man/man3/libssh2_sftp_unlink_ex.3nu�[���.TH libssh2_sftp_unlink_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_unlink_ex - unlink an SFTP file
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_unlink_ex(LIBSSH2_SFTP *sftp, const char *filename, unsigned int filename_len);

int 
libssh2_sftp_unlink(LIBSSH2_SFTP *sftp, const char *filename);

.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

\fIfilename\fP - Path and name of the existing filesystem entry

\fIfilename_len\fP - Length of the path and name of the existing 
filesystem entry

Unlink (delete) a file from the remote filesystem.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.

.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZ�I���-share/man/man3/libssh2_session_get_blocking.3nu�[���.TH libssh2_session_get_blocking 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_get_blocking - TODO
.SH SYNOPSIS
int libssh2_session_get_blocking(LIBSSH2_SESSION *session);
.SH DESCRIPTION
Returns 0 if the state of the session has previously be set to non-blocking
and it returns 1 if the state was set to blocking.
.SH RETURN VALUE
See description.
.SH SEE ALSO
.BR libssh2_session_set_blocking(3)
PK-{FZ#	hhshare/man/man3/libssh2_free.3nu�[���.TH libssh2_exit 3 "13 Oct 2010" "libssh2 1.2.8" "libssh2 manual"
.SH NAME
libssh2_free - deallocate libssh2 memory
.SH SYNOPSIS
#include <libssh2.h>

void
libssh2_free(LIBSSH2_SESSION *session, void *ptr);
.SH DESCRIPTION
Deallocate memory allocated by earlier call to libssh2 functions.  It
uses the memory allocation callbacks provided by the application, if
any.  Otherwise, this will just call free().

This function is mostly useful under Windows when libssh2 is linked to
one run-time library and the application to another.
.SH AVAILABILITY
Added in libssh2 1.2.8
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZXL9��(share/man/man3/libssh2_session_init_ex.3nu�[���.TH libssh2_session_init_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_init_ex - initializes an SSH session object
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_SESSION * 
libssh2_session_init_ex(LIBSSH2_ALLOC_FUNC((*myalloc)), LIBSSH2_FREE_FUNC((*myfree)), LIBSSH2_REALLOC_FUNC((*myrealloc)), void *abstract);

LIBSSH2_SESSION *
libssh2_session_init(void);

.SH DESCRIPTION
\fImyalloc\fP - Custom allocator function. Refer to the section on Callbacks 
for implementing an allocator callback. Pass a value of NULL to use the 
default system allocator.

\fImyfree\fP - Custom de-allocator function. Refer to the section on Callbacks 
for implementing a deallocator callback. Pass a value of NULL to use the 
default system deallocator.

\fImyrealloc\fP - Custom re-allocator function. Refer to the section on 
Callbacks for implementing a reallocator callback. Pass a value of NULL to 
use the default system reallocator.

\fIabstract\fP - Arbitrary pointer to application specific callback data. 
This value will be passed to any callback function associated with the named 
session instance.

Initializes an SSH session object. By default system memory allocators
(malloc(), free(), realloc()) will be used for any dynamically allocated memory
blocks. Alternate memory allocation functions may be specified using the
extended version of this API call, and/or optional application specific data
may be attached to the session object.

This method must be called first, prior to configuring session options or
starting up an SSH session with a remote server.
.SH RETURN VALUE
Pointer to a newly allocated LIBSSH2_SESSION instance, or NULL on errors.
.SH SEE ALSO
.BR libssh2_session_free(3)
.BR libssh2_session_handshake(3)
PK-{FZO�_}}*share/man/man3/libssh2_channel_setenv_ex.3nu�[���.TH libssh2_channel_setenv_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_setenv_ex - set an environment variable on the channel
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_channel_setenv_ex(LIBSSH2_CHANNEL *channel, char *varname, unsigned int varname_len, const char *value, unsigned int value_len);

int
libssh2_channel_setenv(LIBSSH2_CHANNEL *channel, char *varname, const char *value);

.SH DESCRIPTION
\fIchannel\fP - Previously opened channel instance such as returned by 
.BR libssh2_channel_open_ex(3)

\fIvarname\fP - Name of environment variable to set on the remote 
channel instance.

\fIvarname_len\fP - Length of passed varname parameter.

\fIvalue\fP - Value to set varname to.

\fIvalue_len\fP - Length of value parameter.

Set an environment variable in the remote channel's process space. Note that
this does not make sense for all channel types and may be ignored by the
server despite returning success.
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_CHANNEL_REQUEST_DENIED\fP - 
.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
PK-{FZ�cc,share/man/man3/libssh2_channel_window_read.3nu�[���.TH libssh2_channel_window_read 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_window_read - convenience macro for \fIlibssh2_channel_window_read_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

unsigned long libssh2_channel_window_read(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_window_read_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_window_read_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_window_read_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_window_read_ex(3)
PK-{FZ@����5share/man/man3/libssh2_channel_handle_extended_data.3nu�[���.TH libssh2_channel_handle_extended_data 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_handle_extended_data - set extended data handling mode
.SH SYNOPSIS
#include <libssh2.h>

void 
libssh2_channel_handle_extended_data(LIBSSH2_CHANNEL *channel, int ignore_mode);

.SH DESCRIPTION
This function is deprecated. Use the
\fIlibssh2_channel_handle_extended_data2(3)\fP function instead!

\fIchannel\fP - Active channel stream to change extended data handling on.

\fIignore_mode\fP - One of the three LIBSSH2_CHANNEL_EXTENDED_DATA_* Constants.
.br
\fBLIBSSH2_CHANNEL_EXTENDED_DATA_NORMAL\fP: Queue extended data for eventual 
reading
.br
\fBLIBSSH2_CHANNEL_EXTENDED_DATA_MERGE\fP: Treat extended data and ordinary
data the same. Merge all substreams such that calls to
\fIlibssh2_channel_read(3)\fP will pull from all substreams on a
first-in/first-out basis.
.br
\fBLIBSSH2_CHANNEL_EXTENDED_DATA_IGNORE\fP: Discard all extended data as it 
arrives.

Change how a channel deals with extended data packets. By default all extended
data is queued until read by \fIlibssh2_channel_read_ex(3)\fP
.SH RETURN VALUE
None.
.SH SEE ALSO
.BR libssh2_channel_handle_extended_data2(3)
.BR libssh2_channel_read_ex(3)
PK-{FZ����+share/man/man3/libssh2_knownhost_readline.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_readline 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_readline - read a known host line
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_readline(LIBSSH2_KNOWNHOSTS *hosts,
                               const char *line, size_t len, int type):
.SH DESCRIPTION
Tell libssh2 to read a buffer as it if is a line from a known hosts file.

\fIline\fP points to the start of the line

\fIlen\fP is the length of the line in bytes

\fItype\fP specifies what file type it is, and
\fILIBSSH2_KNOWNHOST_FILE_OPENSSH\fP is the only currently supported
format. This file is normally found named ~/.ssh/known_hosts
.SH RETURN VALUE
Returns a regular libssh2 error code, where negative values are error codes
and 0 indicates success.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_get(3)
.BR libssh2_knownhost_writeline(3)
.BR libssh2_knownhost_readfile(3)
PK-{FZchF>>#share/man/man3/libssh2_sftp_rmdir.3nu�[���.TH libssh2_sftp_rmdir 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_rmdir - convenience macro for \fIlibssh2_sftp_rmdir_ex(3)\fP
.SH SYNOPSIS
.nf
#include <libssh2.h>

#define libssh2_sftp_rmdir(sftp, path) \\
    libssh2_sftp_rmdir_ex((sftp), (path), strlen(path))
.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_rmdir_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_rmdir_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_rmdir_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_rmdir_ex(3)
PK-{FZ	�Lӫ�6share/man/man3/libssh2_channel_handle_extended_data2.3nu�[���.TH libssh2_channel_handle_extended_data2 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_handle_extended_data2 - set extended data handling mode
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_handle_extended_data2(LIBSSH2_CHANNEL *channel, int ignore_mode);

.SH DESCRIPTION
\fIchannel\fP - Active channel stream to change extended data handling on.

\fIignore_mode\fP - One of the three LIBSSH2_CHANNEL_EXTENDED_DATA_* Constants.
.br
\fBLIBSSH2_CHANNEL_EXTENDED_DATA_NORMAL\fP: Queue extended data for eventual 
reading
.br
\fBLIBSSH2_CHANNEL_EXTENDED_DATA_MERGE\fP: Treat extended data and ordinary 
data the same. Merge all substreams such that calls to 
.BR libssh2_channel_read(3)
will pull from all substreams on a first-in/first-out basis.
.br
\fBLIBSSH2_CHANNEL_EXTENDED_DATA_IGNORE\fP: Discard all extended data as it 
arrives.

Change how a channel deals with extended data packets. By default all 
extended data is queued until read by 
.BR libssh2_channel_read_ex(3)

.SH RETURN VALUE
Return 0 on success or LIBSSH2_ERROR_EAGAIN when it would otherwise block.

.SH SEE ALSO
.BR libssh2_channel_handle_extended_data(3)
.BR libssh2_channel_read_ex(3)
PK-{FZ`��g==&share/man/man3/libssh2_sftp_fsetstat.3nu�[���.TH libssh2_sftp_fsetstat 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_fsetstat - convenience macro for \fIlibssh2_sftp_fstat_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_fsetstat(LIBSSH2_SFTP_HANDLE *handle, LIBSSH2_SFTP_ATTRIBUTES *attrs);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_fstat_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_fstat_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_fstat_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_fstat_ex(3)
PK-{FZs��||0share/man/man3/libssh2_channel_process_startup.3nu�[���.TH libssh2_channel_process_startup 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_process_startup - request a shell on a channel
.SH SYNOPSIS
.nf
#include <libssh2.h>

int libssh2_channel_process_startup(LIBSSH2_CHANNEL *channel,
                                    const char *request,
                                    unsigned int request_len,
                                    const char *message,
                                    unsigned int message_len);
.SH DESCRIPTION
\fIchannel\fP - Active session channel instance.

\fIrequest\fP - Type of process to startup. The SSH2 protocol currently 
defines shell, exec, and subsystem as standard process services.

\fIrequest_len\fP - Length of request parameter.

\fImessage\fP - Request specific message data to include.

\fImessage_len\fP - Length of message parameter.

Initiate a request on a session type channel such as returned by 
.BR libssh2_channel_open_ex(3)
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_CHANNEL_REQUEST_DENIED\fP - 
.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
PK-{FZ.��+share/man/man3/libssh2_session_banner_get.3nu�[���.TH libssh2_session_banner_get 3 "9 Sep 2011" "libssh2 1.4.0" "libssh2 manual"
.SH NAME
libssh2_session_banner_get - get the remote banner
.SH SYNOPSIS
#include <libssh2.h>

const char *libssh2_session_banner_get(oLIBSSH2_SESSION *session);
.SH DESCRIPTION
Once the session has been setup and \fIlibssh2_session_handshake(3)\fP has
completed successfully, this function can be used to get the server id from
the banner each server presents.
.SH RETURN VALUE
A pointer to a string or NULL if something failed. The data pointed to will be
allocated and associated to the session handle and will be freed by libssh2
when \fIlibssh2_session_free(3)\fP is used.
.SH AVAILABILITY
Added in 1.4.0
.SH SEE ALSO
.BR libssh2_session_banner_set(3),
.BR libssh2_session_handshake(3),
.BR libssh2_session_free(3)
PK-{FZ��T
��"share/man/man3/libssh2_sftp_seek.3nu�[���.TH libssh2_sftp_seek 3 "22 Dec 2008" "libssh2 1.0" "libssh2 manual"
.SH NAME
libssh2_sftp_seek - set the read/write position indicator within a file
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

void libssh2_sftp_seek(LIBSSH2_SFTP_HANDLE *handle, size_t offset);
.SH DESCRIPTION
Deprecated function. Use \fIlibssh2_sftp_seek64(3)\fP instead!

\fIhandle\fP - SFTP File Handle as returned by 
.BR libssh2_sftp_open_ex(3)

\fIoffset\fP - Number of bytes from the beginning of file to seek to.

Move the file handle's internal pointer to an arbitrary location. 
Note that libssh2 implements file pointers as a localized concept to make 
file access appear more POSIX like. No packets are exchanged with the server 
during a seek operation. The localized file pointer is simply used as a 
convenience offset during read/write operations.
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3),
.BR libssh2_sftp_seek64(3)
PK-{FZ!y�Umm,share/man/man3/libssh2_knownhost_writefile.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_writefile 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_writefile - write a collection of known hosts to a file
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_writefile(LIBSSH2_KNOWNHOSTS *hosts,
                                const char *filename, int type);
.SH DESCRIPTION
Writes all the known hosts to the specified file using the specified file
format.

\fIfilename\fP specifies what filename to create

\fItype\fP specifies what file type it is, and
\fILIBSSH2_KNOWNHOST_FILE_OPENSSH\fP is the only currently supported
format.
.SH RETURN VALUE
Returns a regular libssh2 error code, where negative values are error codes
and 0 indicates success.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_readfile(3)
.BR libssh2_knownhost_add(3)

PK-{FZ��TT,share/man/man3/libssh2_channel_read_stderr.3nu�[���.TH libssh2_channel_read_stderr 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_read_stderr - convenience macro for \fIlibssh2_channel_read_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

ssize_t libssh2_channel_read_stderr(LIBSSH2_CHANNEL *channel, char *buf, size_t buflen);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_read_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_read_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_read_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_read_ex(3)
PK-{FZ`=���,share/man/man3/libssh2_session_set_timeout.3nu�[���.TH libssh2_session_set_timeout 3 "4 May 2011" "libssh2 1.2.9" "libssh2 manual"
.SH NAME
libssh2_session_set_timeout - set timeout for blocking functions
.SH SYNOPSIS
#include <libssh2.h>
.nf
void libssh2_session_set_timeout(LIBSSH2_SESSION *session, long timeout);
.SH DESCRIPTION
Set the \fBtimeout\fP in milliseconds for how long a blocking the libssh2
function calls may wait until they consider the situation an error and return
LIBSSH2_ERROR_TIMEOUT.

By default or if you set the timeout to zero, libssh2 has no timeout for
blocking functions.
.SH RETURN VALUE
Nothing
.SH AVAILABILITY
Added in 1.2.9
.SH SEE ALSO
.BR libssh2_session_get_timeout(3)
PK-{FZ�y���4share/man/man3/libssh2_userauth_publickey_fromfile.3nu�[���.TH libssh2_userauth_publickey_fromfile 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_userauth_publickey_fromfile - convenience macro for \fIlibssh2_userauth_publickey_fromfile_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_userauth_publickey_fromfile(LIBSSH2_SESSION *session,
                                    const char *username,
                                    const char *publickey,
                                    const char *privatekey,
                                    const char *passphrase);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_userauth_publickey_fromfile_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_userauth_publickey_fromfile_ex(3)\fP
.SH ERRORS
See \fIlibssh2_userauth_publickey_fromfile_ex(3)\fP
.SH SEE ALSO
.BR libssh2_userauth_publickey_fromfile_ex(3)
PK-{FZ��([PP#share/man/man3/libssh2_banner_set.3nu�[���.TH libssh2_banner_set 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_banner_set - set the SSH protocol banner for the local client
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_banner_set(LIBSSH2_SESSION *session, const char *banner);

.SH DESCRIPTION
This function is \fBDEPRECATED\fP. Use \fIlibssh2_session_banner_set(3)\fP
instead!

\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIbanner\fP - A pointer to a user defined banner

Set the banner that will be sent to the remote host when the SSH session is 
started with 
.BR libssh2_session_handshake(3)
  This is optional; a banner corresponding to the protocol and libssh2 version will be sent by default.
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH AVAILABILITY
Marked as deprecated since 1.4.0
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.
.SH SEE ALSO
.BR libssh2_session_handshake(3)
PK-{FZ'+88!share/man/man3/libssh2_scp_send.3nu�[���.TH libssh2_scp_send 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_scp_send - convenience macro for \fIlibssh2_scp_send_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_scp_send(LIBSSH2_SESSION *session, const char *path, int mode, size_t size);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_scp_send_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_scp_send_ex(3)\fP
.SH ERRORS
See \fIlibssh2_scp_send_ex(3)\fP
.SH SEE ALSO
.BR libssh2_scp_send_ex(3)
PK-{FZ|f��)share/man/man3/libssh2_keepalive_config.3nu�[���.TH libssh2_keepalive_config 3 "12 Apr 2011" "libssh2 1.2.5" "libssh2 manual"
.SH NAME
libssh2_keepalive_config - short function description
.SH SYNOPSIS
#include <libssh2.h>
.nf

void libssh2_keepalive_config(LIBSSH2_SESSION *session,
                              int want_reply,
                              unsigned interval);
.fi
.SH DESCRIPTION
Set how often keepalive messages should be sent. \fBwant_reply\fP indicates
whether the keepalive messages should request a response from the server.
\fBinterval\fP is number of seconds that can pass without any I/O, use 0 (the
default) to disable keepalives.  To avoid some busy-loop corner-cases, if you
specify an interval of 1 it will be treated as 2.

Note that non-blocking applications are responsible for sending the keepalive
messages using \fBlibssh2_keepalive_send(3)\fP.
.SH RETURN VALUE
Nothing
.SH AVAILABILITY
Added in libssh2 1.2.5
.SH SEE ALSO
.BR libssh2_keepalive_send(3)

PK-{FZޕ���	�	)share/man/man3/libssh2_knownhost_checkp.3nu�[���.\"
.\" Copyright (c) 2009-2010 by Daniel Stenberg
.\"
.TH libssh2_knownhost_check 3 "1 May 2010" "libssh2 1.2.6" "libssh2 manual"
.SH NAME
libssh2_knownhost_checkp - check a host+key against the list of known hosts
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_checkp(LIBSSH2_KNOWNHOSTS *hosts,
                             const char *host, int port,
                             const char *key, size_t keylen,
                             int typemask,
                             struct libssh2_knownhost **knownhost);
.SH DESCRIPTION
Checks a host and its associated key against the collection of known hosts,
and returns info back about the (partially) matched entry.

\fIhost\fP is a pointer the host name in plain text. The host name can be the
IP numerical address of the host or the full name.

\fIport\fP is the port number used by the host (or a negative number
to check the generic host). If the port number is given, libssh2 will
check the key for the specific host + port number combination in
addition to the plain host name only check.

\fIkey\fP is a pointer to the key for the given host.

\fIkeylen\fP is the total size in bytes of the key pointed to by the \fIkey\fP
argument

\fItypemask\fP is a bitmask that specifies format and info about the data
passed to this function. Specifically, it details what format the host name is,
what format the key is and what key type it is.

The host name is given as one of the following types:
LIBSSH2_KNOWNHOST_TYPE_PLAIN or LIBSSH2_KNOWNHOST_TYPE_CUSTOM.

The key is encoded using one of the following encodings:
LIBSSH2_KNOWNHOST_KEYENC_RAW or LIBSSH2_KNOWNHOST_KEYENC_BASE64.

\fIknownhost\fP if set to non-NULL, it must be a pointer to a 'struct
libssh2_knownhost' pointer that gets filled in to point to info about a known
host that matches or partially matches.
.SH RETURN VALUE
\fIlibssh2_knownhost_check(3)\fP returns info about how well the provided
host + key pair matched one of the entries in the list of known hosts.

LIBSSH2_KNOWNHOST_CHECK_FAILURE - something prevented the check to be made

LIBSSH2_KNOWNHOST_CHECK_NOTFOUND - no host match was found

LIBSSH2_KNOWNHOST_CHECK_MATCH - hosts and keys match.

LIBSSH2_KNOWNHOST_CHECK_MISMATCH - host was found, but the keys didn't match!
.SH AVAILABILITY
Added in libssh2 1.2.6
.SH EXAMPLE
See the ssh2_exec.c example as provided in the tarball.
.SH SEE ALSO
.BR libssh2_knownhost_init(3)
.BR libssh2_knownhost_free(3)
.BR libssh2_knownhost_add(3)
PK-{FZ�f'c��share/man/man3/libssh2_poll.3nu�[���.TH libssh2_poll 3 "14 Dec 2006" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_poll - poll for activity on a socket, channel or listener
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_poll(LIBSSH2_POLLFD *fds, unsigned int nfds, long timeout);
.SH DESCRIPTION
This function is deprecated. Do note use. We encourage users to instead use
the \fIpoll(3)\fP or \fIselect(3)\fP functions to check for socket activity or
when specific sockets are ready to get received from or send to.

Poll for activity on a socket, channel, listener, or any combination of these
three types. The calling semantics for this function generally match
\fIpoll(2)\fP however the structure of fds is somewhat more complex in order
to accommodate the disparate datatypes, POLLFD constants have been namespaced
to avoid platform discrepancies, and revents has additional values defined.
.SH "RETURN VALUE"
Number of fds with interesting events.
.SH SEE ALSO
.BR libssh2_poll_channel_read(3)
PK-{FZ���844#share/man/man3/libssh2_sftp_fstat.3nu�[���.TH libssh2_sftp_fstat 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_fstat - convenience macro for \fIlibssh2_sftp_fstat_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_fstat(LIBSSH2_SFTP_HANDLE *handle, LIBSSH2_SFTP_ATTRIBUTES *attrs);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_fstat_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_fstat_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_fstat_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_fstat_ex(3)
PK-{FZ-dm���)share/man/man3/libssh2_agent_disconnect.3nu�[���.\"
.\" Copyright (c) 2009 by Daiki Ueno
.\"
.TH libssh2_agent_disconnect 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_agent_disconnect - close a connection to an ssh-agent
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_agent_disconnect(LIBSSH2_AGENT *agent);
.SH DESCRIPTION
Close a connection to an ssh-agent.

.SH RETURN VALUE
Returns 0 if succeeded, or a negative value for error.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_agent_connect(3)
.BR libssh2_agent_free(3)
PK-{FZ|�e��+share/man/man3/libssh2_userauth_publickey.3nu�[���.TH libssh2_userauth_publickey 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_userauth_publickey - authenticate using a callback function
.SH SYNOPSIS
#include <libssh2.h>

.nf
int libssh2_userauth_publickey(LIBSSH2_SESSION *session,
                               const char *user,
                               const unsigned char *pubkeydata,
                               size_t pubkeydata_len,
                               sign_callback,
                               void **abstract);
.SH DESCRIPTION
Authenticate with the \fIsign_callback\fP callback that matches the prototype
below
.SH CALLBACK
.nf
int name(LIBSSH2_SESSION *session, unsigned char **sig, size_t *sig_len,
         const unsigned char *data, size_t data_len, void **abstract);
.fi

This function gets called...
.SH RETURN VALUE
Return 0 on success or negative on failure.
.SH SEE ALSO
.BR libssh2_userauth_publickey_fromfile_ex(3)
PK-{FZ�ww/share/man/man3/libssh2_channel_forward_cancel.3nu�[���.TH libssh2_channel_forward_cancel 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_forward_cancel - cancel a forwarded TCP port
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_forward_cancel(LIBSSH2_LISTENER *listener);

.SH DESCRIPTION
\fIlistener\fP - Forwarding listener instance as returned by 
.BR libssh2_channel_forward_listen_ex(3)

Instruct the remote host to stop listening for new connections on a previously requested host/port.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

.SH SEE ALSO
.BR libssh2_channel_forward_listen_ex(3)
PK-{FZ�D�.

$share/man/man3/libssh2_sftp_rewind.3nu�[���.TH libssh2_sftp_rewind 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_rewind - convenience macro for \fIlibssh2_sftp_seek64(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_rewind(LIBSSH2_SFTP_HANDLE *handle);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_seek64(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_seek64(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_seek64(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_seek64(3)
PK-{FZ�LL&share/man/man3/libssh2_channel_shell.3nu�[���.TH libssh2_channel_shell 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_shell - convenience macro for \fIlibssh2_channel_process_startup(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_shell(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_process_startup(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_process_startup(3)\fP
.SH ERRORS
See \fIlibssh2_channel_process_startup(3)\fP
.SH SEE ALSO
.BR libssh2_channel_process_startup(3)
PK-{FZ�6���
�
%share/man/man3/libssh2_sftp_statvfs.3nu�[���.TH libssh2_sftp_statvfs 3 "22 May 2010" "libssh2 1.2.6" "libssh2 manual"
.SH NAME
libssh2_sftp_statvfs, libssh2_sftp_fstatvfs - get file system statistics
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

int
libssh2_sftp_statvfs(LIBSSH2_SFTP *sftp, const char *path,
                     size_t path_len, LIBSSH2_SFTP_STATVFS *st);

int
libssh2_sftp_fstatvfs(LIBSSH2_SFTP_HANDLE *handle,
                      LIBSSH2_SFTP_STATVFS *st)
.fi
.SH DESCRIPTION
These functions provide statvfs(2)-like operations and require
statvfs@openssh.com and fstatvfs@openssh.com extension support on the server.

\fIsftp\fP - SFTP instance as returned by
.BR libssh2_sftp_init(3)

\fIhandle\fP - SFTP File Handle as returned by
.BR libssh2_sftp_open_ex(3)

\fIpath\fP - full path of any file within the mounted file system.

\fIpath_len\fP - length of the full path.

\fIst\fP - Pointer to a LIBSSH2_SFTP_STATVFS structure to place file system
statistics into.

.SH DATA TYPES
LIBSSH2_SFTP_STATVFS is a typedefed struct that is defined as below

.nf
struct _LIBSSH2_SFTP_STATVFS {
    libssh2_uint64_t  f_bsize;    /* file system block size */
    libssh2_uint64_t  f_frsize;   /* fragment size */
    libssh2_uint64_t  f_blocks;   /* size of fs in f_frsize units */
    libssh2_uint64_t  f_bfree;    /* # free blocks */
    libssh2_uint64_t  f_bavail;   /* # free blocks for non-root */
    libssh2_uint64_t  f_files;    /* # inodes */
    libssh2_uint64_t  f_ffree;    /* # free inodes */
    libssh2_uint64_t  f_favail;   /* # free inodes for non-root */
    libssh2_uint64_t  f_fsid;     /* file system ID */
    libssh2_uint64_t  f_flag;     /* mount flags */
    libssh2_uint64_t  f_namemax;  /* maximum filename length */
};
.fi

It is unspecified whether all members of the returned struct have meaningful
values on all file systems.

The field \fIf_flag\fP is a bit mask. Bits are defined as follows:
.IP LIBSSH2_SFTP_ST_RDONLY
Read-only file system.
.IP LIBSSH2_SFTP_ST_NOSUID
Set-user-ID/set-group-ID bits are ignored by \fBexec\fP(3).

.SH RETURN VALUE
Returns 0 on success or negative on failure. If used in non-blocking mode, it
returns LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was
received on the socket, or an SFTP operation caused an errorcode to be returned
by the server.
.SH AVAILABILITY
Added in libssh2 1.2.6
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZ��N^��1share/man/man3/libssh2_session_block_directions.3nu�[���.TH libssh2_session_block_directions 3 "1 Oct 2008" "libssh2 1.0" "libssh2 manual"
.SH NAME
libssh2_session_block_directions - get directions to wait for
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_session_block_directions(LIBSSH2_SESSION *session);
.SH DESCRIPTION
\fIsession\fP - Session instance as returned by \fBlibssh2_session_init_ex(3)\fP

When any of libssh2 functions return \fBLIBSSH2_ERROR_EAGAIN\fP an application
should wait for the socket to have data available for reading or
writing. Depending on the return value of
\fIlibssh2_session_block_directions(3)\fP an application should wait for read,
write or both.
.SH RETURN VALUE
Returns the set of directions as a binary mask. Can be a combination of:

LIBSSH2_SESSION_BLOCK_INBOUND: Inbound direction blocked.

LIBSSH2_SESSION_BLOCK_OUTBOUND: Outbound direction blocked.

Application should wait for data to be available for socket prior to calling a
libssh2 function again. If \fBLIBSSH2_SESSION_BLOCK_INBOUND\fP is set select
should contain the session socket in readfds set.  Correspondingly in case of
\fBLIBSSH2_SESSION_BLOCK_OUTBOUND\fP writefds set should contain the socket.
.SH AVAILABILITY
Added in 1.0
PK-{FZ��Bb��-share/man/man3/libssh2_userauth_password_ex.3nu�[���.TH libssh2_userauth_password_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_userauth_password_ex - authenticate a session with username and password
.SH SYNOPSIS
#include <libssh2.h>
.nf
int libssh2_userauth_password_ex(LIBSSH2_SESSION *session,
                    const char *username,
                    unsigned int username_len,
                    const char *password,
                    unsigned int password_len,
                    LIBSSH2_PASSWD_CHANGEREQ_FUNC((*passwd_change_cb)));

#define libssh2_userauth_password(session, username, password) \\
 libssh2_userauth_password_ex((session), (username), \\
                              strlen(username), \\
                              (password), strlen(password), NULL)
.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIusername\fP - Name of user to attempt plain password authentication for.

\fIusername_len\fP - Length of username parameter.

\fIpassword\fP - Password to use for authenticating username.

\fIpassword_len\fP - Length of password parameter.

\fIpasswd_change_cb\fP - If the host accepts authentication but 
requests that the password be changed, this callback will be issued. 
If no callback is defined, but server required password change, 
authentication will fail.

Attempt basic password authentication. Note that many SSH servers 
which appear to support ordinary password authentication actually have 
it disabled and use Keyboard Interactive authentication (routed via 
PAM or another authentication backed) instead.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
Some of the errors this function may return include:

\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_PASSWORD_EXPIRED\fP - 

\fLIBSSH2_ERROR_AUTHENTICATION_FAILED\fP - failed, invalid username/password
or public/private key.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ��v�
�
&share/man/man3/libssh2_sftp_fstat_ex.3nu�[���.TH libssh2_sftp_fstat_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_fstat_ex - get or set attributes on an SFTP file handle
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_fstat_ex(LIBSSH2_SFTP_HANDLE *handle,
                      LIBSSH2_SFTP_ATTRIBUTES *attrs, int setstat)

#define libssh2_sftp_fstat(handle, attrs) \\
    libssh2_sftp_fstat_ex((handle), (attrs), 0)
#define libssh2_sftp_fsetstat(handle, attrs) \\
    libssh2_sftp_fstat_ex((handle), (attrs), 1)
.fi
.SH DESCRIPTION
\fIhandle\fP - SFTP File Handle as returned by 
.BR libssh2_sftp_open_ex(3)

\fIattrs\fP - Pointer to an LIBSSH2_SFTP_ATTRIBUTES structure to set file
metadata from or into depending on the value of setstat.

\fIsetstat\fP - When non-zero, the file's metadata will be updated 
with the data found in attrs according to the values of attrs->flags 
and other relevant member attributes.

Get or Set statbuf type data for a given LIBSSH2_SFTP_HANDLE instance.
.SH DATA TYPES
LIBSSH2_SFTP_ATTRIBUTES is a typedefed struct that is defined as below

.nf
struct _LIBSSH2_SFTP_ATTRIBUTES {

    /* If flags & ATTR_* bit is set, then the value in this
     * struct will be meaningful Otherwise it should be ignored
     */
    unsigned long flags;

    /* size of file, in bytes */
    libssh2_uint64_t filesize;

    /* numerical representation of the user and group owner of
     * the file
     */
    unsigned long uid, gid;

    /* bitmask of permissions */
    unsigned long permissions;

    /* access time and modified time of file */
    unsigned long atime, mtime;
};
.fi

You will find a full set of defines and macros to identify flags and
permissions on the \fBlibssh2_sftp.h\fP header file, but some of the
most common ones are:

To check for specific user permissions, the set of defines are in the
pattern LIBSSH2_SFTP_S_I<action><who> where <action> is R, W or X for
read, write and executable and <who> is USR, GRP and OTH for user,
group and other. So, you check for a user readable file, use the bit
\fILIBSSH2_SFTP_S_IRUSR\fP while you want to see if it is executable
for other, you use \fILIBSSH2_SFTP_S_IXOTH\fP and so on.

To check for specific file types, you would previously (before libssh2
1.2.5) use the standard posix S_IS***() macros, but since 1.2.5
libssh2 offers its own set of macros for this functionality:
.IP LIBSSH2_SFTP_S_ISLNK
Test for a symbolic link
.IP LIBSSH2_SFTP_S_ISREG
Test for a regular file
.IP LIBSSH2_SFTP_S_ISDIR
Test for a directory
.IP LIBSSH2_SFTP_S_ISCHR
Test for a character special file
.IP LIBSSH2_SFTP_S_ISBLK
Test for a block special file
.IP LIBSSH2_SFTP_S_ISFIFO
Test for a pipe or FIFO special file
.IP LIBSSH2_SFTP_S_ISSOCK
Test for a socket
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.
.SH AVAILABILITY
This function has been around since forever, but most of the
LIBSSH2_SFTP_S_* defines were introduced in libssh2 0.14 and the
LIBSSH2_SFTP_S_IS***() macros were introduced in libssh2 1.2.5.
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZ|���+share/man/man3/libssh2_channel_x11_req_ex.3nu�[���.TH libssh2_channel_x11_req_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_x11_req_ex - request an X11 forwarding channel
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_channel_x11_req_ex(LIBSSH2_CHANNEL *channel, int single_connection, const char *auth_proto, const char *auth_cookie, int screen_number);

int
libssh2_channel_x11_req(LIBSSH2_CHANNEL *channel, int screen_number);

.SH DESCRIPTION
\fIchannel\fP - Previously opened channel instance such as returned by 
.BR libssh2_channel_open_ex(3)

\fIsingle_connection\fP - non-zero to only forward a single connection.

\fIauth_proto\fP - X11 authentication protocol to use

\fIauth_cookie\fP - the cookie (hexadecimal encoded).

\fIscreen_number\fP - the XLL screen to forward

Request an X11 forwarding on \fIchannel\fP. To use X11 forwarding, 
.BR libssh2_session_callback_set(3)
must first be called to set \fBLIBSSH2_CALLBACK_X11\fP. This callback will be
invoked when the remote host accepts the X11 forwarding.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_CHANNEL_REQUEST_DENIED\fP - 

.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
.BR libssh2_session_callback_set(3)
PK-{FZ˧l>==&share/man/man3/libssh2_knownhost_del.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_del 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_del - delete a known host entry
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_del(LIBSSH2_KNOWNHOSTS *hosts,
                          struct libssh2_knownhost *entry);
.SH DESCRIPTION
Delete a known host entry from the collection of known hosts.

\fIentry\fP is a pointer to a struct that you can extract with
\fIlibssh2_knownhost_check(3)\fP or \fIlibssh2_knownhost_get(3)\fP.
.SH RETURN VALUE
Returns a regular libssh2 error code, where negative values are error codes
and 0 indicates success.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_init(3)
.BR libssh2_knownhost_free(3)
.BR libssh2_knownhost_add(3)
.BR libssh2_knownhost_check(3)
PK-{FZ�?&��
�
/share/man/man3/libssh2_session_supported_algs.3nu�[���.TH libssh2_session_supported_algs 3 "23 Oct 2011" "libssh2 1.4.0" "libssh2 manual"
.SH NAME
libssh2_session_supported_algs - get list of supported algorithms
.SH SYNOPSIS
.nf
#include <libssh2.h>

int libssh2_session_supported_algs(LIBSSH2_SESSION* session,
                                   int method_type,
                                   const char*** algs);
.SH DESCRIPTION
\fIsession\fP - An instance of initialized LIBSSH2_SESSION (the function will
use its pointer to the memory allocation function).  \fImethod_type\fP - Method
type. See .BR \fIlibssh2_session_method_pref(3)\fP.  \fIalgs\fP - Address of a
pointer that will point to an array of returned algorithms

Get a list of supported algorithms for the given \fImethod_type\fP. The
method_type parameter is equivalent to method_type in
\fIlibssh2_session_method_pref(3)\fP. If successful, the function will
allocate the appropriate amount of memory. When not needed anymore, it must be
deallocated by calling \fIlibssh2_free(3)\fP. When this function is
unsuccessful, this must not be done.

In order to get a list of all supported compression algorithms,
libssh2_session_flag(session, LIBSSH2_FLAG_COMPRESS, 1) must be called before
calling this function, otherwise only "none" will be returned.

If successful, the function will allocate and fill the array with supported
algorithms (the same names as defined in RFC 4253).  The array is not NULL
terminated.
.SH EXAMPLE
.nf
#include "libssh2.h"

const char **algorithms;
int rc, i;
LIBSSH2_SESSION *session;

/* initialize session */
session = libssh2_session_init();
rc = libssh2_session_supported_algs(session,
                                    LIBSSH2_METHOD_CRYPT_CS,
                                    &algorithms);
if (rc>0) {
    /* the call succeeded, do sth. with the list of algorithms
       (e.g. list them)... */
    printf("Supported symmetric algorithms:\n");
    for ( i=0; i<rc; i++ )
        printf("\t%s\n", algorithms[i]);

    /* ... and free the allocated memory when not needed anymore */
    libssh2_free(session, algorithms);
}
else {
    /* call failed, error handling */
}
.SH RETURN VALUE
On success, a number of returned algorithms (i.e a positive number will be
returned).  In case of a failure, an error code (a negative number, see below)
is returned.  0 should never be returned.
.SH ERRORS
\fILIBSSH2_ERROR_BAD_USE\fP - Invalid address of algs.

\fILIBSSH2_ERROR_METHOD_NOT_SUPPORTED\fP -  Unknown method type.

\fILIBSSH2_ERROR_INVAL\fP - Internal error (normally should not occur).

\fILIBSSH2_ERROR_ALLOC\fP - Allocation of memory failed.
.SH AVAILABILITY
Added in 1.4.0
.SH SEE ALSO
.BR libssh2_session_methods(3),
.BR libssh2_session_method_pref(3)
.BR libssh2_free(3)
PK-{FZ~��[��'share/man/man3/libssh2_knownhost_free.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_free 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_free - free a collection of known hosts
.SH SYNOPSIS
#include <libssh2.h>

void libssh2_knownhost_free(LIBSSH2_KNOWNHOSTS *hosts);
.SH DESCRIPTION
Free a collection of known hosts.
.SH RETURN VALUE
None.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_init(3)
.BR libssh2_knownhost_add(3)
.BR libssh2_knownhost_check(3)
PK-{FZ,q006share/man/man3/libssh2_userauth_keyboard_interactive.3nu�[���.TH libssh2_userauth_keyboard_interactive 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_userauth_keyboard_interactive - convenience macro for \fIlibssh2_userauth_keyboard_interactive_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>
.nf

int
libssh2_userauth_keyboard_interactive(LIBSSH2_SESSION* session,
                                      const char *username,
           LIBSSH2_USERAUTH_KBDINT_RESPONSE_FUNC((*response_callback)));
.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_userauth_keyboard_interactive_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_userauth_keyboard_interactive_ex(3)\fP
.SH ERRORS
See \fIlibssh2_userauth_keyboard_interactive_ex(3)\fP
.SH SEE ALSO
.BR libssh2_userauth_keyboard_interactive_ex(3)
PK-{FZR*��)share/man/man3/libssh2_session_abstract.3nu�[���.TH libssh2_session_abstract 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_abstract - return a pointer to a session's abstract pointer
.SH SYNOPSIS
#include <libssh2.h>

void **
libssh2_session_abstract(LIBSSH2_SESSION *session);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

Return a pointer to where the abstract pointer provided to
\fBlibssh2_session_init_ex(3)\fP is stored. By providing a doubly
de-referenced pointer, the internal storage of the session instance may be
modified in place.

.SH RETURN VALUE
A pointer to session internal storage who's contents point to previously
provided abstract data.

.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ���YY'share/man/man3/libssh2_channel_setenv.3nu�[���.TH libssh2_channel_setenv 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_setenv - convenience macro for \fIlibssh2_channel_setenv_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_setenv(LIBSSH2_CHANNEL *channel, const char *varname, const char *value);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_setenv_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_setenv_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_setenv_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_setenv_ex(3)
PK-{FZ����%share/man/man3/libssh2_session_free.3nu�[���.TH libssh2_session_free 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_free - frees resources associated with a session instance
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_session_free(LIBSSH2_SESSION *session);
.SH DESCRIPTION
Frees all resources associated with a session instance. Typically called after
.BR libssh2_session_disconnect_ex(3)
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
.BR libssh2_session_disconnect_ex(3)
PK-{FZ��N��2share/man/man3/libssh2_channel_forward_listen_ex.3nu�[���.TH libssh2_channel_forward_listen_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_forward_listen_ex - listen to inbound connections
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_LISTENER * 
libssh2_channel_forward_listen_ex(LIBSSH2_SESSION *session, char *host, int port, int *bound_port, int queue_maxsize);

LIBSSH2_LISTENER * 
libssh2_channel_forward_listen(LIBSSH2_SESSION *session, int port);

.SH DESCRIPTION
Instruct the remote SSH server to begin listening for inbound TCP/IP
connections. New connections will be queued by the library until accepted by
\fIlibssh2_channel_forward_accept(3)\fP.

\fIsession\fP - instance as returned by libssh2_session_init(). 

\fIhost\fP - specific address to bind to on the remote host. Binding to
0.0.0.0 (default when NULL is passed) will bind to all available addresses.

\fIport\fP - port to bind to on the remote host. When 0 is passed, the remote
host will select the first available dynamic port.

\fIbound_port\fP - Populated with the actual port bound on the remote
host. Useful when requesting dynamic port numbers.

\fIqueue_maxsize\fP - Maximum number of pending connections to queue before
rejecting further attempts.

\fIlibssh2_channel_forward_listen(3)\fP is a macro.
.SH RETURN VALUE
A newly allocated LIBSSH2_LISTENER instance or NULL on failure.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP - An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_PROTO\fP - An invalid SSH protocol response was received on the socket.

\fILIBSSH2_ERROR_REQUEST_DENIED\fP - The remote server refused the request.

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would block.
.SH SEE ALSO
.BR libssh2_channel_forward_accept(3)
PK-{FZI;�_jj+share/man/man3/libssh2_session_disconnect.3nu�[���.TH libssh2_session_disconnect 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_session_disconnect - convenience macro for \fIlibssh2_session_disconnect_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_session_disconnect(LIBSSH2_SESSION *session, const char *description);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_session_disconnect_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_session_disconnect_ex(3)\fP
.SH ERRORS
See \fIlibssh2_session_disconnect_ex(3)\fP
.SH SEE ALSO
.BR libssh2_session_disconnect_ex(3)
PK-{FZ�vNL00#share/man/man3/libssh2_sftp_fsync.3nu�[���.TH libssh2_sftp_fsync 3 "8 Apr 2013" "libssh2 1.4.4" "libssh2 manual"
.SH NAME
libssh2_sftp_fsync - synchronize file to disk
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

int
libssh2_sftp_fsync(LIBSSH2_SFTP_HANDLE *handle)
.fi
.SH DESCRIPTION
This function causes the remote server to synchronize the file
data and metadata to disk (like fsync(2)).

For this to work requires fsync@openssh.com support on the server.

\fIhandle\fP - SFTP File Handle as returned by
.BR libssh2_sftp_open_ex(3)

.SH RETURN VALUE
Returns 0 on success or negative on failure. If used in non-blocking mode, it
returns LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response
was received on the socket, or an SFTP operation caused an errorcode
to be returned by the server.  In particular, this can be returned if
the SSH server does not support the fsync operation: the SFTP subcode
\fILIBSSH2_FX_OP_UNSUPPORTED\fP will be returned in this case.

.SH AVAILABILITY
Added in libssh2 1.4.4 and OpenSSH 6.3.
.SH SEE ALSO
.BR fsync(2)
PK-{FZ�o�D**0share/man/man3/libssh2_channel_window_write_ex.3nu�[���.TH libssh2_channel_window_write_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_window_write_ex - Check the status of the write window
.SH SYNOPSIS
#include <libssh2.h>

unsigned long
libssh2_channel_window_write_ex(LIBSSH2_CHANNEL *channel,
                                unsigned long *window_size_initial)
.SH DESCRIPTION
Check the status of the write window Returns the number of bytes which may be
safely written on the channel without blocking. 'window_size_initial' (if
passed) will be populated with the size of the initial window as defined by
the channel_open request
.SH RETURN VALUE
Number of bytes which may be safely written on the channel without blocking.
.SH ERRORS

.SH SEE ALSO
.BR libssh2_channel_window_read_ex(3),
.BR libssh2_channel_receive_window_adjust(3)
PK-{FZD!e���,share/man/man3/libssh2_publickey_remove_ex.3nu�[���.TH libssh2_publickey_list_remove_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_publickey_list_remove_ex - TODO
.SH SYNOPSIS

.SH DESCRIPTION

.SH RETURN VALUE

.SH ERRORS

.SH SEE ALSO
PK-{FZ82����+share/man/man3/libssh2_session_banner_set.3nu�[���.TH libssh2_session_banner_set 3 "9 Sep 2011" "libssh2 1.4.0" "libssh2 manual"
.SH NAME
libssh2_session_banner_set - set the SSH protocol banner for the local client
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_session_banner_set(LIBSSH2_SESSION *session, const char *banner);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIbanner\fP - A pointer to a zero-terminated string holding the user defined
banner

Set the banner that will be sent to the remote host when the SSH session is
started with \fIlibssh2_session_handshake(3)\fP This is optional; a banner
corresponding to the protocol and libssh2 version will be sent by default.
.SH RETURN VALUE
Returns 0 on success or negative on failure.  It returns LIBSSH2_ERROR_EAGAIN
when it would otherwise block. While LIBSSH2_ERROR_EAGAIN is a negative
number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.
.SH AVAILABILITY
Added in 1.4.0.

Before 1.4.0 this function was known as libssh2_banner_set(3)
.SH SEE ALSO
.BR libssh2_session_handshake(3),
.BR libssh2_session_banner_get(3)
PK-{FZ�sNuaa&share/man/man3/libssh2_sftp_mkdir_ex.3nu�[���.TH libssh2_sftp_mkdir_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_mkdir_ex - create a directory on the remote file system
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_mkdir_ex(LIBSSH2_SFTP *sftp, const char *path, unsigned int path_len, long mode);

int 
libssh2_sftp_mkdir(LIBSSH2_SFTP *sftp, const char *path, long mode);
.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

\fIpath\fP - full path of the new directory to create. Note that the new 
directory's parents must all exist prior to making this call.

\fIpath_len\fP - length of the full path of the new directory to create.

\fImode\fP - directory creation mode (e.g. 0755).

Create a directory on the remote file system.
.SH RETURN VALUE
Return 0 on success or negative on failure.
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to be 
returned by the server.
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZ=�'�/share/man/man3/libssh2_channel_request_pty_ex.3nu�[���.TH libssh2_channel_request_pty_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_request_pty_ex - short function description
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_request_pty_ex(LIBSSH2_CHANNEL *channel, const char *term, unsigned int term_len, const char *modes, unsigned int modes_len, int width, int height, int width_px, int height_px);

int 
libssh2_channel_request_pty(LIBSSH2_CHANNEL *channel, char *term);

.SH DESCRIPTION
\fIchannel\fP - Previously opened channel instance such as returned by 
.BR libssh2_channel_open_ex(3)

\fIterm\fP - Terminal emulation (e.g. vt102, ansi, etc...)

\fIterm_len\fP - Length of term parameter

\fImodes\fP - Terminal mode modifier values

\fImodes_len\fP - Length of modes parameter.

\fIwidth\fP - Width of pty in characters

\fIheight\fP - Height of pty in characters

\fIwidth_px\fP - Width of pty in pixels

\fIheight_px\fP - Height of pty in pixels

Request a PTY on an established channel. Note that this does not make sense 
for all channel types and may be ignored by the server despite returning 
success.
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_CHANNEL_REQUEST_DENIED\fP - 
.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
PK-{FZ.�����(share/man/man3/libssh2_session_hostkey.3nu�[���.TH libssh2_session_hostkey 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_hostkey - get the remote key
.SH SYNOPSIS
#include <libssh2.h>

const char *libssh2_session_hostkey(LIBSSH2_SESSION *session,
                                    size_t *len, int *type);
.SH DESCRIPTION
Returns a pointer to the current host key, the value \fIlen\fP points to will
get the length of the key.

The value \fItype\fP points to the type of hostkey which is one of:
LIBSSH2_HOSTKEY_TYPE_RSA, LIBSSH2_HOSTKEY_TYPE_DSS, or
LIBSSH2_HOSTKEY_TYPE_UNKNOWN.

.SH RETURN VALUE
A pointer, or NULL if something went wrong.
.SH SEE ALSO
.BR libssh2_knownhost_check(3)
.BR libssh2_knownhost_add(3)
PK-{FZ��+share/man/man3/libssh2_session_last_error.3nu�[���.TH libssh2_session_last_error 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_last_error - get the most recent error
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_session_last_error(LIBSSH2_SESSION *session, char **errmsg, int *errmsg_len, int want_buf);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIerrmsg\fP - If not NULL, is populated by reference with the human 
readable form of the most recent error message.

\fIerrmsg_len\fP - If not NULL, is populated by reference with the length 
of errmsg. (The string is NUL-terminated, so the length is only useful as 
an optimization, to avoid calling strlen.)

\fIwant_buf\fP - If set to a non-zero value, "ownership" of the errmsg 
buffer will be given to the calling scope. If necessary, the errmsg buffer 
will be duplicated.

Determine the most recent error condition and its cause.

.SH RETURN VALUE
Numeric error code corresponding to the the Error Code constants.

.SH SEE ALSO
.BR libssh2_session_last_errno(3)
PK-{FZ�zGV��"share/man/man3/libssh2_sftp_read.3nu�[���.TH libssh2_sftp_read 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_read - read data from an SFTP handle
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

ssize_t 
libssh2_sftp_read(LIBSSH2_SFTP_HANDLE *handle, char *buffer, size_t buffer_maxlen);

.SH DESCRIPTION
\fIhandle\fP is the SFTP File Handle as returned by 
.BR libssh2_sftp_open_ex(3)

\fIbuffer\fP is a pointer to a pre-allocated buffer of at least

\fIbuffer_maxlen\fP bytes to read data into.

Reads a block of data from an LIBSSH2_SFTP_HANDLE. This method is modelled
after the POSIX 
.BR read(2)
function and uses the same calling semantics. 
.BR libssh2_sftp_read(3)
will attempt to read as much as possible however it may not fill all of buffer
if the file pointer reaches the end or if further reads would cause the socket
to block.
.SH RETURN VALUE
Number of bytes actually populated into buffer, or negative on failure.  
It returns LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was
received on the socket, or an SFTP operation caused an errorcode to be
returned by the server.
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
.BR libssh2_sftp_read(3)
PK-{FZ�gi&share/man/man3/libssh2_publickey_add.3nu�[���.TH libssh2_publickey_add 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_publickey_add - convenience macro for \fIlibssh2_publickey_add_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_publickey_add(LIBSSH2_PUBLICKEY *pkey,
			  const unsigned char *name,
                          const unsigned char *blob, unsigned long blob_len, char overwrite,
                          unsigned long num_attrs, const libssh2_publickey_attribute attrs[]);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_publickey_add_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_publickey_add_ex(3)\fP
.SH ERRORS
See \fIlibssh2_publickey_add_ex(3)\fP
.SH SEE ALSO
.BR libssh2_publickey_add_ex(3)
PK-{FZh=��hh%share/man/man3/libssh2_sftp_readdir.3nu�[���.TH libssh2_sftp_readdir 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_readdir - convenience macro for \fIlibssh2_sftp_readdir_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_readdir(LIBSSH2_SFTP_HANDLE *handle, char *buffer, size_t buffer_maxlen, LIBSSH2_SFTP_ATTRIBUTES *attrs);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_readdir_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_readdir_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_readdir_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_readdir_ex(3)
PK-{FZ�D/share/man/man3/libssh2_userauth_authenticated.3nu�[���.TH libssh2_userauth_authenticated 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_userauth_authenticated - return authentication status
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_userauth_authenticated(LIBSSH2_SESSION *session);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

Indicates whether or not the named session has been successfully authenticated.

.SH RETURN VALUE
Returns 1 if authenticated and 0 if not.

.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ�u���%share/man/man3/libssh2_sftp_symlink.3nu�[���.TH libssh2_sftp_symlink 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_symlink - convenience macro for \fIlibssh2_sftp_symlink_ex(3)\fP
.SH SYNOPSIS
.nf
#include <libssh2.h>

#define libssh2_sftp_symlink(sftp, orig, linkpath) \\
    libssh2_sftp_symlink_ex((sftp), (orig), strlen(orig), (linkpath), \\
                            strlen(linkpath), LIBSSH2_SFTP_SYMLINK)
.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_symlink_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_symlink_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_symlink_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_symlink_ex(3)
PK-{FZ�s�$��-share/man/man3/libssh2_channel_direct_tcpip.3nu�[���.TH libssh2_channel_direct_tcpip 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_direct_tcpip - convenience macro for \fIlibssh2_channel_direct_tcpip_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_channel_direct_tcpip(LIBSSH2_SESSION *session, const char *host, int port);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_direct_tcpip_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_direct_tcpip_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_direct_tcpip_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_direct_tcpip_ex(3)
PK-{FZ+M��88#share/man/man3/libssh2_sftp_lstat.3nu�[���.TH libssh2_sftp_lstat 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_lstat - convenience macro for \fIlibssh2_sftp_stat_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_lstat(LIBSSH2_SFTP *sftp, const char *path, LIBSSH2_SFTP_ATTRIBUTES *attrs);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_stat_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_stat_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_stat_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_stat_ex(3)
PK-{FZv�I�PP7share/man/man3/libssh2_channel_receive_window_adjust2.3nu�[���.TH libssh2_channel_receive_window_adjust2 3 "26 Mar 2009" "libssh2 1.1" "libssh2 manual"
.SH NAME
libssh2_channel_receive_window_adjust2 - adjust the channel window
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_channel_receive_window_adjust2(LIBSSH2_CHANNEL * channel,
                                       unsigned long adjustment,
                                       unsigned char force,
                                       unsigned int *window);

.SH DESCRIPTION
Adjust the receive window for a channel by adjustment bytes. If the amount to
be adjusted is less than LIBSSH2_CHANNEL_MINADJUST and force is 0 the
adjustment amount will be queued for a later packet.

This function stores the new size of the receive window (as understood by
remote end) in the variable 'window' points to.
.SH RETURN VALUE
Return 0 on success and a negative value on error. If used in non-blocking
mode it will return LIBSSH2_ERROR_EAGAIN when it would otherwise block.
.SH ERRORS
.SH AVAILABILITY
Added in libssh2 1.1 since the previous API has deficiencies.
.SH SEE ALSO
.BR libssh2_channel_window_read_ex(3)
PK-{FZt;]���&share/man/man3/libssh2_channel_close.3nu�[���.TH libssh2_channel_close 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_close - close a channel
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_close(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
\fIchannel\fP - active channel stream to set closed status on.

Close an active data channel. In practice this means sending an SSH_MSG_CLOSE 
packet to the remote host which serves as instruction that no further data 
will be sent to it. The remote host may still send data back until it sends 
its own close message in response. To wait for the remote end to close its 
connection as well, follow this command with 
.BR libssh2_channel_wait_closed(3)

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
PK-{FZ�#�QQ'share/man/man3/libssh2_knownhost_init.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_init 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_init - init a collection of known hosts
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_KNOWNHOSTS *libssh2_knownhost_init(LIBSSH2_SESSION *session);
.SH DESCRIPTION
Init a collection of known hosts for this session. Returns the handle to an
internal representation of a known host collection.

Call \fBlibssh2_knownhost_free(3)\fP to free the collection again after you're
doing using it.
.SH RETURN VALUE
Returns a handle pointer or NULL if something went wrong. The returned handle
is used as input to all other known host related functions libssh2 provides.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_free(3)
.BR libssh2_knownhost_add(3)
.BR libssh2_knownhost_check(3)
PK-{FZ��.XX,share/man/man3/libssh2_knownhost_writeline.3nu�[���.\"
.\" Copyright (c) 2009 by Daniel Stenberg
.\"
.TH libssh2_knownhost_writeline 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_writeline - convert a known host to a line for storage
.SH SYNOPSIS
#include <libssh2.h>

libssh2_knownhost_writeline(LIBSSH2_KNOWNHOSTS *hosts,
                            struct libssh2_knownhost *known,
                            char *buffer, size_t buflen,
                            size_t *outlen,
                            int type);
.SH DESCRIPTION
Converts a single known host to a single line of output for storage, using
the 'type' output format.

\fIknown\fP identifies which particular known host

\fIbuffer\fP points to an allocated buffer

\fIbuflen\fP is the size of the \fIbuffer\fP. See RETURN VALUE about the size.

\fIoutlen\fP must be a pointer to a size_t variable that will get the output
length of the stored data chunk. The number does not included the trailing
zero!

\fItype\fP specifies what file type it is, and
\fILIBSSH2_KNOWNHOST_FILE_OPENSSH\fP is the only currently supported
format.
.SH RETURN VALUE
Returns a regular libssh2 error code, where negative values are error codes
and 0 indicates success.

If the provided buffer is deemed too small to fit the data libssh2 wants to
store in it, LIBSSH2_ERROR_BUFFER_TOO_SMALL will be returned. The application
is then advised to call the function again with a larger buffer. The
\fIoutlen\fP size will then hold the requested size.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_get(3)
.BR libssh2_knownhost_readline(3)
.BR libssh2_knownhost_writefile(3)

PK-{FZ���d  &share/man/man3/libssh2_sftp_fstatvfs.3nu�[���.so man3/libssh2_sftp_statvfs.3
PK-{FZ{����,share/man/man3/libssh2_publickey_list_free.3nu�[���.TH libssh2_publickey_list_free 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_publickey_list_free - TODO
.SH SYNOPSIS

.SH DESCRIPTION

.SH RETURN VALUE

.SH ERRORS

.SH SEE ALSO
PK-{FZ��,��	�	&share/man/man3/libssh2_knownhost_add.3nu�[���
.\" Copyright (c) 2009, 2010 by Daniel Stenberg
.\"
.TH libssh2_knownhost_add 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_add - add a known host
.SH SYNOPSIS
.nf
#include <libssh2.h>

int libssh2_knownhost_add(LIBSSH2_KNOWNHOSTS *hosts,
                          char *host, char *salt,
                          char *key, size_t keylen,
                          int typemask,
                          struct libssh2_knownhost **store);
.SH DESCRIPTION
We discourage use of this function as of libssh2 1.2.5. Instead we strongly
urge users to use \fIlibssh2_knownhost_addc(3)\fP instead, which as a more
complete API. \fIlibssh2_knownhost_add(3)\fP is subject for removal in a
future release.

Adds a known host to the collection of known hosts identified by the 'hosts'
handle.

\fIhost\fP is a pointer the host name in plain text or hashed. If hashed, it
must be provided base64 encoded. The host name can be the IP numerical address
of the host or the full name.

\fIsalt\P is a pointer to the salt used for the host hashing, if the host is
provided hashed. If the host is provided in plain text, salt has no meaning.
The salt has to be provided base64 encoded with a trailing zero byte.

\fIkey\fP is a pointer to the key for the given host.

\fIkeylen\fP is the total size in bytes of the key pointed to by the \fIkey\fP
argument

\fItypemask\fP is a bitmask that specifies format and info about the data
passed to this function. Specifically, it details what format the host name is,
what format the key is and what key type it is.

The host name is given as one of the following types:
LIBSSH2_KNOWNHOST_TYPE_PLAIN, LIBSSH2_KNOWNHOST_TYPE_SHA1 or
LIBSSH2_KNOWNHOST_TYPE_CUSTOM.

The key is encoded using one of the following encodings:
LIBSSH2_KNOWNHOST_KEYENC_RAW or LIBSSH2_KNOWNHOST_KEYENC_BASE64.

The key is using one of these algorithms:
LIBSSH2_KNOWNHOST_KEY_RSA1, LIBSSH2_KNOWNHOST_KEY_SSHRSA or
LIBSSH2_KNOWNHOST_KEY_SSHDSS.

\fIstore\fP should point to a pointer that gets filled in to point to the
known host data after the addition. NULL can be passed if you don't care about
this pointer.
.SH RETURN VALUE
Returns a regular libssh2 error code, where negative values are error codes
and 0 indicates success.
.SH AVAILABILITY
Added in libssh2 1.2, deprecated since libssh2 1.2.5. Use
\fIlibssh2_knownhost_addc(3)\fP instead!
.SH SEE ALSO
.BR libssh2_knownhost_init(3)
.BR libssh2_knownhost_free(3)
.BR libssh2_knownhost_check(3)
.BR libssh2_knownhost_addc(3)
PK-{FZ�7�%share/man/man3/libssh2_session_init.3nu�[���.TH libssh2_session_init 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_session_init - convenience macro for \fIlibssh2_session_init_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_SESSION *
libssh2_session_init(void);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_session_init_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_session_init_ex(3)\fP
.SH ERRORS
See \fIlibssh2_session_init_ex(3)\fP
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZqZ		%share/man/man3/libssh2_sftp_stat_ex.3nu�[���.TH libssh2_sftp_stat_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_stat_ex - get status about an SFTP file
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

int libssh2_sftp_stat_ex(LIBSSH2_SFTP *sftp, const char *path,
                         unsigned int path_len, int stat_type,
                         LIBSSH2_SFTP_ATTRIBUTES *attrs);
.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

\fIpath\fP - Remote filesystem object to stat/lstat/setstat.

\fIpath_len\fP - Length of the name of the remote filesystem object 
to stat/lstat/setstat.

\fIstat_type\fP - One of the three constants specifying the type of 
stat operation to perform:

.br
\fBLIBSSH2_SFTP_STAT\fP: performs stat(2) operation
.br
\fBLIBSSH2_SFTP_LSTAT\fP: performs lstat(2) operation
.br
\fBLIBSSH2_SFTP_SETSTAT\fP: performs operation to set stat info on file

\fIattrs\fP - Pointer to a \fBLIBSSH2_SFTP_ATTRIBUTES\fP structure to set file
metadata from or into depending on the value of stat_type.

Get or Set statbuf type data on a remote filesystem object. When getting
statbuf data,
.BR libssh2_sftp_stat(3)
will follow all symlinks, while 
.BR libssh2_sftp_lstat(3)
will return data about the object encountered, even if that object 
happens to be a symlink.

The LIBSSH2_SFTP_ATTRIBUTES struct looks like this:

.nf
struct LIBSSH2_SFTP_ATTRIBUTES {
    /* If flags & ATTR_* bit is set, then the value in this struct will be
     * meaningful Otherwise it should be ignored
     */
    unsigned long flags;

    libssh2_uint64_t filesize;
    unsigned long uid;
    unsigned long gid;
    unsigned long permissions;
    unsigned long atime;
    unsigned long mtime;
};
.fi
.SH RETURN VALUE
Returns 0 on success or negative on failure.  It returns LIBSSH2_ERROR_EAGAIN
when it would otherwise block. While LIBSSH2_ERROR_EAGAIN is a negative
number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.
.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZ�R�&share/man/man3/libssh2_sftp_readlink.3nu�[���.TH libssh2_sftp_readlink 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_readlink - convenience macro for \fIlibssh2_sftp_symlink_ex(3)\fP
.SH SYNOPSIS
.nf
#include <libssh2.h>

#define libssh2_sftp_readlink(sftp, path, target, maxlen) \\
    libssh2_sftp_symlink_ex((sftp), (path), strlen(path), (target), (maxlen), \\
    LIBSSH2_SFTP_READLINK)
.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_symlink_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_symlink_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_symlink_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_symlink_ex(3)
PK-{FZ�"��LL(share/man/man3/libssh2_channel_x11_req.3nu�[���.TH libssh2_channel_x11_req 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_x11_req - convenience macro for \fIlibssh2_channel_x11_req_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_x11_req(LIBSSH2_CHANNEL *channel, int screen_number);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_x11_req_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_x11_req_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_x11_req_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_x11_req_ex(3)
PK-{FZ>�԰��6share/man/man3/libssh2_channel_receive_window_adjust.3nu�[���.TH libssh2_channel_receive_window_adjust 3 "15 Mar 2009" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_receive_window_adjust - adjust the channel window
.SH SYNOPSIS
#include <libssh2.h>

unsigned long
libssh2_channel_receive_window_adjust(LIBSSH2_CHANNEL * channel,
                                      unsigned long adjustment,
                                      unsigned char force);

.SH DESCRIPTION
This function is deprecated in 1.1. Use
\fIlibssh2_channel_receive_window_adjust2(3)\fP!

Adjust the receive window for a channel by adjustment bytes. If the amount to
be adjusted is less than LIBSSH2_CHANNEL_MINADJUST and force is 0 the
adjustment amount will be queued for a later packet.
.SH RETURN VALUE
Returns the new size of the receive window (as understood by remote end). Note
that the window value sent over the wire is strictly 32bit, but this API is
made to return a 'long' which may not be 32 bit on all platforms.
.SH ERRORS
In 1.0 and earlier, this function returns LIBSSH2_ERROR_EAGAIN for
non-blocking channels where it would otherwise block. However, that is a
negative number and this function only returns an unsigned value and this then
leads to a very strange value being returned.
.SH SEE ALSO
.BR libssh2_channel_window_read_ex(3)
PK-{FZ���
�
(share/man/man3/libssh2_sftp_symlink_ex.3nu�[���.TH libssh2_sftp_symlink_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_symlink_ex - read or set a symbolic link
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_symlink_ex(LIBSSH2_SFTP *sftp, const char *path,
                        unsigned int path_len, char *target,
                        unsigned int target_len, int link_type);
.SH DESCRIPTION
Create a symlink or read out symlink information from the remote side.

\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

\fIpath\fP - Remote filesystem object to create a symlink from or resolve.

\fIpath_len\fP - Length of the name of the remote filesystem object to 
create a symlink from or resolve.

\fItarget\fP - a pointer to a buffer. The buffer has different uses depending
what the \fIlink_type\fP argument is set to.
.br
\fBLIBSSH2_SFTP_SYMLINK\fP: Remote filesystem object to link to.
.br
\fBLIBSSH2_SFTP_READLINK\fP: Pre-allocated buffer to resolve symlink target
into.
.br
\fBLIBSSH2_SFTP_REALPATH\fP: Pre-allocated buffer to resolve realpath target
into.

\fItarget_len\fP - Length of the name of the remote filesystem target object.

\fIlink_type\fP - One of the three previously mentioned constants which 
determines the resulting behavior of this function.

These are convenience macros:

.BR libssh2_sftp_symlink(3)
: Create a symbolic link between two filesystem objects.
.br
.BR libssh2_sftp_readlink(3)
: Resolve a symbolic link filesystem object to its next target.
.br
.BR libssh2_sftp_realpath(3)
: Resolve a complex, relative, or symlinked filepath to its effective target.
.SH RETURN VALUE
When using LIBSSH2_SFTP_SYMLINK, this function returns 0 on success or negative
on failure.

When using LIBSSH2_SFTP_READLINK or LIBSSH2_SFTP_REALPATH, it returns the
number of bytes it copied to the target buffer (not including the terminating
zero) or negative on failure.

It returns LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

From 1.2.8, LIBSSH2_ERROR_BUFFER_TOO_SMALL is returned if the given 'target'
buffer is too small to fit the requested object name.
.SH BUG
Passing in a too small buffer when receiving data only results in libssh2
1.2.7 or earlier to not copy the entire data amount, and it is not possible
for the application to tell when it happens!
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.

.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZe�Q((#share/man/man3/libssh2_sftp_close.3nu�[���.TH libssh2_sftp_close 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_close - convenience macro for \fIlibssh2_sftp_close_handle(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_close(LIBSSH2_SFTP_HANDLE *handle);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_close_handle(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_close_handle(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_close_handle(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_close_handle(3)
PK-{FZ����??%share/man/man3/libssh2_channel_read.3nu�[���.TH libssh2_channel_read 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_read - convenience macro for \fIlibssh2_channel_read_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

ssize_t libssh2_channel_read(LIBSSH2_CHANNEL *channel, char *buf, size_t buflen);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_read_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_read_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_read_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_read_ex(3)
PK-{FZ����/share/man/man3/libssh2_channel_forward_accept.3nu�[���.TH libssh2_channel_forward_accept 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_forward_accept - accept a queued connection
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_channel_forward_accept(LIBSSH2_LISTENER *listener);

.SH DESCRIPTION
\fIlistener\fP is a forwarding listener instance as returned by
\fBlibssh2_channel_forward_listen_ex(3)\fP.
.SH RETURN VALUE
A newly allocated channel instance or NULL on failure.
.SH ERRORS
When this function returns NULL use \fIlibssh2_session_last_errno(3)\fP to
extract the error code. If that code is \fILIBSSH2_ERROR_EAGAIN\fP, the
session is set to do non-blocking I/O but the call would block.
.SH SEE ALSO
.BR libssh2_channel_forward_listen_ex(3)
PK-{FZͺ4h>>-share/man/man3/libssh2_channel_flush_stderr.3nu�[���.TH libssh2_channel_flush_stderr 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_flush_stderr - convenience macro for \fIlibssh2_channel_flush_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_flush_stderr(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_flush_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_flush_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_flush_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_flush_ex(3)
PK-{FZ��`��+share/man/man3/libssh2_publickey_shutdown.3nu�[���.TH libssh2_publickey_shutdown 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_publickey_shutdown - TODO
.SH SYNOPSIS

.SH DESCRIPTION

.SH RETURN VALUE

.SH ERRORS

.SH SEE ALSO
PK-{FZ�0�s00%share/man/man3/libssh2_sftp_opendir.3nu�[���.TH libssh2_sftp_opendir 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_opendir - convenience macro for \fIlibssh2_sftp_open_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_SFTP_HANDLE *
libssh2_sftp_opendir(LIBSSH2_SFTP *sftp, const char *path);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_open_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_open_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_open_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZٗ����"share/man/man3/libssh2_sftp_tell.3nu�[���.TH libssh2_sftp_tell 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_tell - get the current read/write position indicator for a file
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

size_t 
libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle);

.SH DESCRIPTION
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP.

Returns the current offset of the file handle's internal pointer. Note that
this is now deprecated. Use the newer \fBlibssh2_sftp_tell64(3)\fP instead!
.SH RETURN VALUE
Current offset from beginning of file in bytes.
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3),
.BR libssh2_sftp_tell64(3)
PK-{FZYS[qr
r
'share/man/man3/libssh2_knownhost_addc.3nu�[���
.\" Copyright (c) 2009, 2010 by Daniel Stenberg
.\"
.TH libssh2_knownhost_add 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_add - add a known host
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_addc(LIBSSH2_KNOWNHOSTS *hosts,
                           char *host, char *salt,
                           char *key, size_t keylen,
                           const char *comment, size_t commentlen,
                           int typemask,
                           struct libssh2_knownhost **store);
.SH DESCRIPTION
Adds a known host to the collection of known hosts identified by the 'hosts'
handle.

\fIhost\fP is a pointer the host name in plain text or hashed. If hashed, it
must be provided base64 encoded. The host name can be the IP numerical address
of the host or the full name.

If you want to add a key for a specific port number for the given host, you
must provide the host name like '[host]:port' with the actual characters '['
and ']' enclosing the host name and a colon separating the host part from the
port number. For example: \&"[host.example.com]:222".

\fIsalt\fP is a pointer to the salt used for the host hashing, if the host is
provided hashed. If the host is provided in plain text, salt has no meaning.
The salt has to be provided base64 encoded with a trailing zero byte.

\fIkey\fP is a pointer to the key for the given host.

\fIkeylen\fP is the total size in bytes of the key pointed to by the \fIkey\fP
argument

\fIcomment\fP is a pointer to a comment for the key.

\fIcommentlen\fP is the total size in bytes of the comment pointed to by the \fIcomment\fP argument

\fItypemask\fP is a bitmask that specifies format and info about the data
passed to this function. Specifically, it details what format the host name is,
what format the key is and what key type it is.

The host name is given as one of the following types:
LIBSSH2_KNOWNHOST_TYPE_PLAIN, LIBSSH2_KNOWNHOST_TYPE_SHA1 or
LIBSSH2_KNOWNHOST_TYPE_CUSTOM.

The key is encoded using one of the following encodings:
LIBSSH2_KNOWNHOST_KEYENC_RAW or LIBSSH2_KNOWNHOST_KEYENC_BASE64.

The key is using one of these algorithms:
LIBSSH2_KNOWNHOST_KEY_RSA1, LIBSSH2_KNOWNHOST_KEY_SSHRSA or
LIBSSH2_KNOWNHOST_KEY_SSHDSS.

\fIstore\fP should point to a pointer that gets filled in to point to the
known host data after the addition. NULL can be passed if you don't care about
this pointer.
.SH RETURN VALUE
Returns a regular libssh2 error code, where negative values are error codes
and 0 indicates success.
.SH AVAILABILITY
Added in libssh2 1.2.5
.SH SEE ALSO
.BR libssh2_knownhost_init(3)
.BR libssh2_knownhost_free(3)
.BR libssh2_knownhost_check(3)
PK-{FZYs�)share/man/man3/libssh2_publickey_add_ex.3nu�[���.TH libssh2_publickey_add_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_publickey_add_ex - Add a public key entry
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_publickey_add_ex(LIBSSH2_PUBLICKEY *pkey, const unsigned char *name,
                         unsigned long name_len, const unsigned char *blob,
                         unsigned long blob_len, char overwrite,
                         unsigned long num_attrs,
                         const libssh2_publickey_attribute attrs[])

.SH DESCRIPTION
TBD
.SH RETURN VALUE
Returns 0 on success, negative on failure.
.SH ERRORS
LIBSSH2_ERROR_BAD_USE
LIBSSH2_ERROR_ALLOC,
LIBSSH2_ERROR_EAGAIN
LIBSSH2_ERROR_SOCKET_SEND,
LIBSSH2_ERROR_SOCKET_TIMEOUT,
LIBSSH2_ERROR_PUBLICKEY_PROTOCOL,
.SH SEE ALSO
PK-{FZP#t��
�
(share/man/man3/libssh2_sftp_readdir_ex.3nu�[���.TH libssh2_sftp_readdir_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_readdir_ex - read directory data from an SFTP handle
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_readdir_ex(LIBSSH2_SFTP_HANDLE *handle,
                        char *buffer, size_t buffer_maxlen,
                        char *longentry, size_t longentry_maxlen,
                        LIBSSH2_SFTP_ATTRIBUTES *attrs);
.SH DESCRIPTION
Reads a block of data from a LIBSSH2_SFTP_HANDLE and returns file entry
information for the next entry, if any.

\fIhandle\fP - is the SFTP File Handle as returned by 
.BR libssh2_sftp_open_ex(3)

\fIbuffer\fP - is a pointer to a pre-allocated buffer of at least
\fIbuffer_maxlen\fP bytes to read data into.

\fIbuffer_maxlen\fP - is the length of buffer in bytes. If the length of the 
filename is longer than the space provided by buffer_maxlen it will be 
truncated to fit.

\fIlongentry\fP - is a pointer to a pre-allocated buffer of at least
\fIlongentry_maxlen\fP bytes to read data into. The format of the `longname'
field is unspecified by SFTP protocol. It MUST be suitable for use in the
output of a directory listing command (in fact, the recommended operation for
a directory listing command is to simply display this data).

\fIlongentry_maxlen\fP - is the length of longentry in bytes. If the length of
the full directory entry is longer than the space provided by
\fIlongentry_maxlen\fP it will be truncated to fit.

\fIattrs\fP - is a pointer to LIBSSH2_SFTP_ATTRIBUTES storage to populate 
statbuf style data into.
.SH RETURN VALUE
Number of bytes actually populated into buffer (not counting the terminating
zero), or negative on failure.  It returns LIBSSH2_ERROR_EAGAIN when it would
otherwise block. While LIBSSH2_ERROR_EAGAIN is a negative number, it isn't
really a failure per se.
.SH BUG
Passing in a too small buffer for 'buffer' or 'longentry' when receiving data
only results in libssh2 1.2.7 or earlier to not copy the entire data amount,
and it is not possible for the application to tell when it happens!
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to be 
returned by the server.

From 1.2.8, LIBSSH2_ERROR_BUFFER_TOO_SMALL is returned if any of the
given 'buffer' or 'longentry' buffers are too small to fit the requested
object name.
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3),
.BR libssh2_sftp_close_handle(3)
PK-{FZ�>��QQ7share/man/man3/libssh2_userauth_publickey_fromfile_ex.3nu�[���.TH libssh2_userauth_publickey_fromfile 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_userauth_publickey_fromfile - authenticate a session with a public key, read from a file
.SH SYNOPSIS
#include <libssh2.h>

.nf
int libssh2_userauth_publickey_fromfile_ex(LIBSSH2_SESSION *session,
                                           const char *username,
                                           unsigned int ousername_len,
                                           const char *publickey,
                                           const char *privatekey,
                                           const char *passphrase);
.SH DESCRIPTION
\fIsession\fP - Session instance as returned by
\fBlibssh2_session_init_ex(3)\fP

\fIusername\fP - Pointer to user name to authenticate as.

\fIusername_len\fP - Length of \fIusername\fP.

\fIpublickey\fP - Path name of the public key file.
(e.g. /etc/ssh/hostkey.pub). If libssh2 is built against OpenSSL, this option
can be set to NULL.

\fIprivatekey\fP - Path name of the private key file. (e.g. /etc/ssh/hostkey)

\fIpassphrase\fP - Passphrase to use when decoding \fIprivatekey\fP.

Attempt public key authentication using a PEM encoded private key file stored
on disk

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_PUBLICKEY_UNVERIFIED\fP - The username/public key
combination was invalid.

\fILIBSSH2_ERROR_AUTHENTICATION_FAILED\fP - Authentication using the supplied
public key was not accepted.

.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ8�^.��(share/man/man3/libssh2_session_methods.3nu�[���.TH libssh2_session_methods 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_methods - return the currently active algorithms
.SH SYNOPSIS
#include <libssh2.h>

const char *
libssh2_session_methods(LIBSSH2_SESSION *session, int method_type);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fImethod_type\fP - one of the method type constants: LIBSSH2_METHOD_KEX,
LIBSSH2_METHOD_HOSTKEY, LIBSSH2_METHOD_CRYPT_CS, LIBSSH2_METHOD_CRYPT_SC,
LIBSSH2_METHOD_MAC_CS, LIBSSH2_METHOD_MAC_SC, LIBSSH2_METHOD_COMP_CS,
LIBSSH2_METHOD_COMP_SC, LIBSSH2_METHOD_LANG_CS, LIBSSH2_METHOD_LANG_SC.

Returns the actual method negotiated for a particular transport parameter.
.SH RETURN VALUE
Negotiated method or NULL if the session has not yet been started.
.SH ERRORS
\fILIBSSH2_ERROR_INVAL\fP - The requested method type was invalid.

\fILIBSSH2_ERROR_METHOD_NONE\fP - no method has been set
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ����*share/man/man3/libssh2_userauth_password.3nu�[���.TH libssh2_userauth_password 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_userauth_password - convenience macro for \fIlibssh2_userauth_password_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_userauth_password(LIBSSH2_SESSION *session,
                              const char *username,
                              const char *password);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_userauth_password_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_userauth_password_ex(3)\fP
.SH ERRORS
See \fIlibssh2_userauth_password_ex(3)\fP
.SH SEE ALSO
.BR libssh2_userauth_password_ex(3)
PK-{FZL�Ux��,share/man/man3/libssh2_channel_wait_closed.3nu�[���.TH libssh2_channel_wait_closed 3 "29 Nov 2007" "libssh2 0.19" "libssh2 manual"
.SH NAME
libssh2_channel_wait_closed - wait for the remote to close the channel
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_wait_closed(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
Enter a temporary blocking state until the remote host closes the named
channel. Typically sent after \fIlibssh2_channel_close(3)\fP in order to
examine the exit status.

.SH RETURN VALUE
Return 0 on success or negative on failure. It returns LIBSSH2_ERROR_EAGAIN
when it would otherwise block. While LIBSSH2_ERROR_EAGAIN is a negative
number, it isn't really a failure per se.
.SH SEE ALSO
.BR libssh2_channel_send_eof(3)
.BR libssh2_channel_eof(3)
.BR libssh2_channel_wait_eof(3)
PK-{FZ��E''-share/man/man3/libssh2_session_set_blocking.3nu�[���.TH libssh2_session_set_blocking 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_set_blocking - set or clear blocking mode on session
.SH SYNOPSIS
#include <libssh2.h>

void 
libssh2_session_set_blocking(LIBSSH2_SESSION *session, int blocking);

.SH DESCRIPTION
\fIsession\fP - session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIblocking\fP - Set to a non-zero value to make the channel block, or zero to
make it non-blocking.

Set or clear blocking mode on the selected on the session.  This will
instantly affect any channels associated with this session. If a read is
performed on a session with no data currently available, a blocking session
will wait for data to arrive and return what it receives.  A non-blocking
session will return immediately with an empty buffer.  If a write is performed
on a session with no room for more data, a blocking session will wait for
room.  A non-blocking session will return immediately without writing
anything.

.SH RETURN VALUE
None

.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ���-share/man/man3/libssh2_channel_set_blocking.3nu�[���.TH libssh2_channel_set_blocking 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_set_blocking - set or clear blocking mode on channel
.SH SYNOPSIS
#include <libssh2.h>

void 
libssh2_channel_set_blocking(LIBSSH2_CHANNEL *channel, int blocking);
.SH DESCRIPTION
\fIchannel\fP - channel stream to set or clean blocking status on.

\fIblocking\fP - Set to a non-zero value to make the channel block, or zero to
make it non-blocking.

Currently this is just a short cut call to 
.BR libssh2_session_set_blocking(3)
and therefore will affect the session and all channels.
.SH RETURN VALUE
None
.SH SEE ALSO
.BR libssh2_session_set_blocking(3)
.BR libssh2_channel_read_ex(3)
.BR libssh2_channel_write_ex(3)
PK-{FZ'���&share/man/man3/libssh2_base64_decode.3nu�[���.TH libssh2_base64_decode 3 "23 Dec 2008" "libssh2 1.0" "libssh2 manual"
.SH NAME
libssh2_base64_decode - decode a base64 encoded string
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_base64_decode(LIBSSH2_SESSION *session, char **dest,
                          unsigned int *dest_len, const char *src,
                          unsigned int src_len);
.SH DESCRIPTION
This function is deemed DEPRECATED and will be removed from libssh2 in a
future version. Don't use it!

Decode a base64 chunk and store it into a newly allocated buffer. 'dest_len'
will be set to hold the length of the returned buffer that '*dest' will point
to.

The returned buffer is allocated by this function, but it is not clear how to
free that memory!
.SH BUGS
The memory that *dest points to is allocated by the malloc function libssh2
uses, but there's no way for an application to free this data in a safe and
reliable way!
.SH RETURN VALUE
0 if successful, \-1 if any error occurred.
PK-{FZG�>�::"share/man/man3/libssh2_sftp_stat.3nu�[���.TH libssh2_sftp_stat 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_stat - convenience macro for \fIlibssh2_sftp_fstat_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_stat(LIBSSH2_SFTP *sftp, const char *path, LIBSSH2_SFTP_ATTRIBUTES *attrs);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_fstat_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_fstat_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_fstat_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_fstat_ex(3)
PK-{FZ�TT(share/man/man3/libssh2_channel_read_ex.3nu�[���.TH libssh2_channel_read_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_read_ex - read data from a channel stream
.SH SYNOPSIS
#include <libssh2.h>

ssize_t
libssh2_channel_read_ex(LIBSSH2_CHANNEL *channel, int stream_id, char *buf, size_t buflen);

ssize_t
libssh2_channel_read(LIBSSH2_CHANNEL *channel, char *buf, size_t buflen);

ssize_t
libssh2_channel_read_stderr(LIBSSH2_CHANNEL *channel, char *buf, size_t buflen);

.SH DESCRIPTION
Attempt to read data from an active channel stream. All channel streams have
one standard I/O substream (stream_id == 0), and may have up to 2^32 extended
data streams as identified by the selected \fIstream_id\fP. The SSH2 protocol
currently defines a stream ID of 1 to be the stderr substream.

\fIchannel\fP - active channel stream to read from. 

\fIstream_id\fP - substream ID number (e.g. 0 or SSH_EXTENDED_DATA_STDERR) 

\fIbuf\fP - pointer to storage buffer to read data into

\fIbuflen\fP - size of the buf storage

\fIlibssh2_channel_read(3)\fP and \fIlibssh2_channel_read_stderr(3)\fP are
macros.
.SH RETURN VALUE
Actual number of bytes read or negative on failure. It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

Note that a return value of zero (0) can in fact be a legitimate value and
only signals that no payload data was read. It is not an error.
.SH ERRORS
\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_CHANNEL_CLOSED\fP - The channel has been closed.

.SH SEE ALSO
.BR libssh2_poll_channel_read(3)
PK-{FZth�Ƀ�%share/man/man3/libssh2_session_flag.3nu�[���.TH libssh2_session_flag 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_flag - TODO
.SH SYNOPSIS
int
libssh2_session_flag(LIBSSH2_SESSION *session, int flag, int value);
.SH DESCRIPTION
Set options for the created session. \fIflag\fP is the option to set, while
\fIvalue\fP is typically set to 1 or 0 to enable or disable the option.
.SH FLAGS
.IP LIBSSH2_FLAG_SIGPIPE
If set, libssh2 will not attempt to block SIGPIPEs but will let them trigger
from the underlying socket layer.
.IP LIBSSH2_FLAG_COMPRESS
If set - before the connection negotiation is performed - libssh2 will try to
negotiate compression enabling for this connection. By default libssh2 will
not attempt to use compression.
.SH RETURN VALUE
Returns regular libssh2 error code.
.SH AVAILABILITY
This function has existed since the age of dawn. LIBSSH2_FLAG_COMPRESS was
added in version 1.2.8.
.SH SEE ALSO
PK-{FZ��j���.share/man/man3/libssh2_agent_list_identities.3nu�[���.\"
.\" Copyright (c) 2009 by Daiki Ueno
.\"
.TH libssh2_agent_list_identities 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_agent_list_identities - request an ssh-agent to list of public keys.
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_agent_list_identities(LIBSSH2_AGENT *agent);
.SH DESCRIPTION
Request an ssh-agent to list of public keys, and stores them in the
internal collection of the handle.  Call
\fIlibssh2_agent_get_identity(3)\fP to get a public key off the
collection.

.SH RETURN VALUE
Returns 0 if succeeded, or a negative value for error.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_agent_connect(3)
.BR libssh2_agent_get_identity(3)

PK-{FZk~�])	)	9share/man/man3/libssh2_userauth_keyboard_interactive_ex.3nu�[���.TH libssh2_userauth_keyboard_interactive_ex 3 "8 Mar 2008" "libssh2 0.19" "libssh2 manual"
.SH NAME
libssh2_userauth_keyboard_interactive_ex - authenticate a session using
keyboard-interactive authentication
.SH SYNOPSIS
.nf
#include <libssh2.h>

int
libssh2_userauth_keyboard_interactive_ex(LIBSSH2_SESSION *session,
                                         const char *username,
                                         unsigned int username_len,
            LIBSSH2_USERAUTH_KBDINT_RESPONSE_FUNC(*response_callback));
.SH DESCRIPTION
\fIsession\fP - Session instance as returned by
\fIlibssh2_session_init_ex(3)\fP.

\fIusername\fP - Name of user to attempt keyboard-interactive authentication
for.

\fIusername_len\fP - Length of username parameter.

\fIresponse_callback\fP - As authentication proceeds, the host issues several
(1 or more) challenges and requires responses. This callback will be called at
this moment. The callback is responsible to obtain responses for the
challenges, fill the provided data structure and then return
control. Responses will be sent to the host. String values will be free(3)ed
by the library. The callback prototype must match this:

.nf
 void response(const char *name,
               int name_len, const char *instruction,
               int instruction_len,
               int num_prompts,
               const LIBSSH2_USERAUTH_KBDINT_PROMPT *prompts,
               LIBSSH2_USERAUTH_KBDINT_RESPONSE *responses,
               void **abstract);
.fi

Attempts keyboard-interactive (challenge/response) authentication.

Note that many SSH servers will always issue a single "password" challenge,
requesting actual password as response, but it is not required by the
protocol, and various authentication schemes, such as smartcard authentication
may use keyboard-interactive authentication type too.
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns LIBSSH2_ERROR_EAGAIN
when it would otherwise block. While LIBSSH2_ERROR_EAGAIN is a negative
number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fLIBSSH2_ERROR_AUTHENTICATION_FAILED\fP - failed, invalid username/password
or public/private key.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ�j��"")share/man/man3/libssh2_channel_write_ex.3nu�[���.TH libssh2_channel_write_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_write_ex - write data to a channel stream blocking
.SH SYNOPSIS
.nf
#include <libssh2.h>

ssize_t libssh2_channel_write_ex(LIBSSH2_CHANNEL *channel,
                                 int stream_id, char *buf,
                                 size_t buflen);
.SH DESCRIPTION
Write data to a channel stream. All channel streams have one standard I/O
substream (stream_id == 0), and may have up to 2^32 extended data streams as
identified by the selected \fIstream_id\fP. The SSH2 protocol currently
defines a stream ID of 1 to be the stderr substream.

\fIchannel\fP - active channel stream to write to. 

\fIstream_id\fP - substream ID number (e.g. 0 or SSH_EXTENDED_DATA_STDERR) 

\fIbuf\fP - pointer to buffer to write

\fIbuflen\fP - size of the data to write

\fIlibssh2_channel_write(3)\fP and \fIlibssh2_channel_write_stderr(3)\fP are
convenience macros for this function.

\fIlibssh2_channel_write_ex(3)\fP will use as much as possible of the buffer
and put it into a single SSH protocol packet. This means that to get maximum
performance when sending larger files, you should try to always pass in at
least 32K of data to this function.
.SH RETURN VALUE
Actual number of bytes written or negative on failure.
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP - An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_CHANNEL_CLOSED\fP - The channel has been closed.

\fILIBSSH2_ERROR_CHANNEL_EOF_SENT\fP - The channel has been requested to be
closed.
.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
.BR libssh2_channel_read_ex(3)
PK-{FZ/J��^^%share/man/man3/libssh2_channel_exec.3nu�[���.TH libssh2_channel_exec 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_exec - convenience macro for \fIlibssh2_channel_process_startup(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_exec(LIBSSH2_CHANNEL *channel, const char *command);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_process_startup(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_process_startup(3)\fP
.SH ERRORS
See \fIlibssh2_channel_process_startup(3)\fP
.SH SEE ALSO
.BR libssh2_channel_process_startup(3)
PK-{FZ�����+share/man/man3/libssh2_agent_get_identity.3nu�[���.\"
.\" Copyright (c) 2009 by Daiki Ueno
.\"
.TH libssh2_agent_get_identity 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_agent_get_identity - get a public key off the collection of public keys managed by ssh-agent
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_agent_get_identity(LIBSSH2_AGENT *agent,
                               struct libssh2_agent_publickey **store,
                               struct libssh2_agent_publickey *prev);
.SH DESCRIPTION
\fIlibssh2_agent_get_identity(3)\fP allows an application to iterate
over all public keys in the collection managed by ssh-agent.

\fIstore\fP should point to a pointer that gets filled in to point to the
public key data.

\fIprev\fP is a pointer to a previous 'struct libssh2_agent_publickey'
as returned by a previous invoke of this function, or NULL to get the
first entry in the internal collection.
.SH RETURN VALUE
Returns 0 if everything is fine and information about a host was stored in
the \fIstore\fP struct.

Returns 1 if it reached the end of public keys.

Returns negative values for error
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_agent_list_identities(3)
.BR libssh2_agent_userauth(3)
PK-{FZ>֥)share/man/man3/libssh2_channel_flush_ex.3nu�[���.TH libssh2_channel_flush_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_flush_ex - flush a channel
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_flush_ex(LIBSSH2_CHANNEL *channel, int streamid);

int 
libssh2_channel_flush(LIBSSH2_CHANNEL *channel);

int 
libssh2_channel_flush_stderr(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
\fIchannel\fP - Active channel stream to flush.

\fIstreamid\fP - Specific substream number to flush. Groups of substreams may 
be flushed by passing on of the following Constants.
.br
\fBLIBSSH2_CHANNEL_FLUSH_EXTENDED_DATA\fP: Flush all extended data substreams
.br
\fBLIBSSH2_CHANNEL_FLUSH_ALL\fP: Flush all substreams

Flush the read buffer for a given channel instance. Individual substreams may 
be flushed by number or using one of the provided macros.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
PK-{FZ���GG-share/man/man3/libssh2_channel_open_session.3nu�[���.TH libssh2_channel_open_session 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_open_session - convenience macro for \fIlibssh2_channel_open_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_channel_open_session(LIBSSH2_SESSION *session);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_open_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_open_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_open_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_open_ex(3)
PK-{FZkC���/share/man/man3/libssh2_channel_window_read_ex.3nu�[���.TH libssh2_channel_window_read_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_window_read_ex - Check the status of the read window
.SH SYNOPSIS
#include <libssh2.h>

unsigned long
libssh2_channel_window_read_ex(LIBSSH2_CHANNEL *channel,
                               unsigned long *read_avail,
                               unsigned long *window_size_initial)
.SH DESCRIPTION
Check the status of the read window. Returns the number of bytes which the
remote end may send without overflowing the window limit read_avail (if
passed) will be populated with the number of bytes actually available to be
read window_size_initial (if passed) will be populated with the
window_size_initial as defined by the channel_open request
.SH RETURN VALUE
The number of bytes which the remote end may send without overflowing the
window limit
.SH ERRORS

.SH SEE ALSO
.BR libssh2_channel_receive_window_adjust(3),
.BR libssh2_channel_window_write_ex(3)
PK-{FZy��,share/man/man3/libssh2_session_method_pref.3nu�[���.TH libssh2_session_method_pref 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_method_pref - set preferred key exchange method
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_session_method_pref(LIBSSH2_SESSION *session, int method_type, const char *prefs);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fImethod_type\fP - One of the Method Type constants.

\fIprefs\fP - Coma delimited list of preferred methods to use with 
the most preferred listed first and the least preferred listed last. 
If a method is listed which is not supported by libssh2 it will be 
ignored and not sent to the remote host during protocol negotiation.

Set preferred methods to be negotiated. These 
preferences must be set prior to calling
.BR libssh2_session_handshake(3)
as they are used during the protocol initiation phase.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_INVAL\fP - The requested method type was invalid.

\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_METHOD_NOT_SUPPORTED\fP - The requested method is not supported.

.SH SEE ALSO
.BR libssh2_session_init_ex(3)
.BR libssh2_session_handshake(3)
PK-{FZ�{׊�,share/man/man3/libssh2_session_get_timeout.3nu�[���.TH libssh2_session_get_timeout 3 "4 May 2011" "libssh2 1.2.9" "libssh2 manual"
.SH NAME
libssh2_session_get_timeout - get the timeout for blocking functions
.SH SYNOPSIS
#include <libssh2.h>
.nf
long libssh2_session_get_timeout(LIBSSH2_SESSION *session);
.SH DESCRIPTION
Returns the \fBtimeout\fP (in milliseconds) for how long a blocking the
libssh2 function calls may wait until they consider the situation an error and
return LIBSSH2_ERROR_TIMEOUT.

By default libssh2 has no timeout (zero) for blocking functions.
.SH RETURN VALUE
The value of the timeout setting.
.SH AVAILABILITY
Added in 1.2.9
.SH SEE ALSO
.BR libssh2_session_set_timeout(3)
PK-{FZ?�c��$share/man/man3/libssh2_channel_eof.3nu�[���.TH libssh2_channel_eof 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_eof - check a channel's EOF status
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_eof(LIBSSH2_CHANNEL *channel);
.SH DESCRIPTION
\fIchannel\fP - active channel stream to set closed status on.

Check if the remote host has sent an EOF status for the selected stream.
.SH RETURN VALUE
Returns 1 if the remote host has sent EOF, otherwise 0. Negative on
failure.
.SH SEE ALSO
.BR libssh2_channel_close(3)
PK-{FZ��yee'share/man/man3/libssh2_keepalive_send.3nu�[���.TH libssh2_keepalive_send 3 "13 Apr 2011" "libssh2 1.2.5" "libssh2 manual"
.SH NAME
libssh2_keepalive_send - short function description
.SH SYNOPSIS
#include <libssh2.h>
.nf

int libssh2_keepalive_send(LIBSSH2_SESSION *session,
                           int *seconds_to_next);
.SH DESCRIPTION
Send a keepalive message if needed.  \fBseconds_to_next\fP indicates how many
seconds you can sleep after this call before you need to call it again.
.SH RETURN VALUE
Returns 0 on success, or LIBSSH2_ERROR_SOCKET_SEND on I/O errors.
.SH AVAILABILITY
Added in libssh2 1.2.5
.SH SEE ALSO
.BR libssh2_keepalive_config(3)
PK-{FZ��MM"share/man/man3/libssh2_sftp_init.3nu�[���.TH libssh2_sftp_init 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_init - open SFTP channel for the given SSH session.
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

LIBSSH2_SFTP *
libssh2_sftp_init(LIBSSH2_SESSION *session);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

Open a channel and initialize the SFTP subsystem. Although the SFTP subsystem
operates over the same type of channel as those exported by the Channel API,
the protocol itself implements its own unique binary packet protocol which
must be managed with the libssh2_sftp_*() family of functions. When an SFTP
session is complete, it must be destroyed using the
.BR libssh2_sftp_shutdown(3)
function.
.SH RETURN VALUE
A pointer to the newly allocated SFTP instance or NULL on failure.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to be 
returned by the server.

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would
block.
.SH SEE ALSO
.BR libssh2_sftp_shutdown(3)
.BR libssh2_sftp_open_ex(3)
PK-{FZyʣ~))&share/man/man3/libssh2_channel_flush.3nu�[���.TH libssh2_channel_flush 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_flush - convenience macro for \fIlibssh2_channel_flush_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_channel_flush(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_flush_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_flush_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_flush_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_flush_ex(3)
PK-{FZ/���4share/man/man3/libssh2_userauth_hostbased_fromfile.3nu�[���.TH libssh2_userauth_hostbased_fromfile 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_userauth_hostbased_fromfile - convenience macro for \fIlibssh2_userauth_hostbased_fromfile_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_userauth_hostbased_fromfile(LIBSSH2_SESSION *session, const char *username, const char *publickey, const char *privatekey, const char *passphrase, const char *hostname);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_userauth_hostbased_fromfile_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_userauth_hostbased_fromfile_ex(3)\fP
.SH ERRORS
See \fIlibssh2_userauth_hostbased_fromfile_ex(3)\fP
.SH SEE ALSO
.BR libssh2_userauth_hostbased_fromfile_ex(3)
PK-{FZ�f�a��&share/man/man3/libssh2_sftp_shutdown.3nu�[���.TH libssh2_sftp_shutdown 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_shutdown - shut down an SFTP session
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_shutdown(LIBSSH2_SFTP *sftp);

.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

Destroys a previously initialized SFTP session and frees all resources 
associated with it.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZ��,��5share/man/man3/libssh2_channel_ignore_extended_data.3nu�[���.TH libssh2_channel_ignore_extended_data 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_ignore_extended_data - convenience macro for \fIlibssh2_channel_handle_extended_data(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

libssh2_channel_ignore_extended_data(arguments)

.SH DESCRIPTION
This function is deprecated. Use the
\fIlibssh2_channel_handle_extended_data2(3)\fP function instead!

This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_handle_extended_data(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_handle_extended_data(3)\fP
.SH ERRORS
See \fIlibssh2_channel_handle_extended_data(3)\fP
.SH SEE ALSO
.BR libssh2_channel_handle_extended_data(3)
PK-{FZiY�.��0share/man/man3/libssh2_channel_direct_tcpip_ex.3nu�[���.TH libssh2_channel_direct_tcpip_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_direct_tcpip_ex - Tunnel a TCP connection through an SSH session
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_CHANNEL * 
libssh2_channel_direct_tcpip_ex(LIBSSH2_SESSION *session, const char *host, int port, const char *shost, int sport);

LIBSSH2_CHANNEL * 
libssh2_channel_direct_tcpip(LIBSSH2_SESSION *session, const char *host, int port);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIhost\fP - Third party host to connect to using the SSH host as a proxy.

\fIport\fP - Port on third party host to connect to.

\fIshost\fP - Host to tell the SSH server the connection originated on.

\fIsport\fP - Port to tell the SSH server the connection originated from.

Tunnel a TCP/IP connection through the SSH transport via the remote host to 
a third party. Communication from the client to the SSH server remains 
encrypted, communication from the server to the 3rd party host travels 
in cleartext.

.SH RETURN VALUE
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ}��	AAshare/man/man3/libssh2_init.3nu�[���.TH libssh2_init 3 "19 Mar 2010" "libssh2 1.2.5" "libssh2 manual"
.SH NAME
libssh2_init - global library initialization
.SH SYNOPSIS
#include <libssh2.h>

#define LIBSSH2_INIT_NO_CRYPTO 0x0001

int
libssh2_init(int flags);
.SH DESCRIPTION
Initialize the libssh2 functions.  This typically initialize the
crypto library.  It uses a global state, and is not thread safe -- you
must make sure this function is not called concurrently.
.SH RETURN VALUE
Returns 0 if succeeded, or a negative value for error.
.SH AVAILABILITY
Added in libssh2 1.2.5
.SH SEE ALSO
.BR libssh2_exit(3)
PK-{FZQ0���4share/man/man3/libssh2_channel_request_pty_size_ex.3nu�[���.TH libssh2_channel_request_pty_size_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_request_pty_size_ex - TODO
.SH SYNOPSIS

.SH DESCRIPTION

.SH RETURN VALUE

.SH ERRORS

.SH SEE ALSO
PK-{FZ�����+share/man/man3/libssh2_knownhost_readfile.3nu�[���.\"
.\" Copyright (c) 2009-2011 by Daniel Stenberg
.\"
.TH libssh2_knownhost_readfile 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_knownhost_readfile - parse a file of known hosts
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_knownhost_readfile(LIBSSH2_KNOWNHOSTS *hosts,
                               const char *filename, int type);
.SH DESCRIPTION
Reads a collection of known hosts from a specified file and adds them to the
collection of known hosts.

\fIfilename\fP specifies which file to read

\fItype\fP specifies what file type it is, and
\fILIBSSH2_KNOWNHOST_FILE_OPENSSH\fP is the only currently supported
format. This file is normally found named ~/.ssh/known_hosts
.SH RETURN VALUE
Returns a negative value, a regular libssh2 error code for errors, or a
positive number as number of parsed known hosts in the file.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_knownhost_init(3)
.BR libssh2_knownhost_free(3)
.BR libssh2_knownhost_check(3)
PK-{FZ$�I??)share/man/man3/libssh2_sftp_get_channel.3nu�[���.TH libssh2_sftp_get_channel 3 "9 Sep 2011" "libssh2 1.4.0" "libssh2 manual"
.SH NAME
libssh2_sftp_get_channel - return the channel of sftp
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

.fi
LIBSSH2_CHANNEL *libssh2_sftp_get_channel(LIBSSH2_SFTP *sftp);
.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

Return the channel of the given sftp handle.
.SH RETURN VALUE
The channel of the SFTP instance or NULL if something was wrong.
.SH AVAILABILITY
Added in 1.4.0
.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZ~C��'share/man/man3/libssh2_agent_userauth.3nu�[���.\"
.\" Copyright (c) 2009 by Daiki Ueno
.\"
.TH libssh2_agent_userauth 3 "23 Dec 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_agent_userauth - authenticate a session with a public key, with the help of ssh-agent
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_agent_userauth(LIBSSH2_AGENT *agent,
                           const char *username,
                           struct libssh2_agent_publickey *identity);
.SH DESCRIPTION
\fIagent\fP - ssh-agent handle as returned by 
.BR libssh2_agent_init(3)

\fIusername\fP - Remote user name to authenticate as.

\fIidentity\fP - Public key to authenticate with, as returned by 
.BR libssh2_agent_get_identity(3)

Attempt public key authentication with the help of ssh-agent.
.SH RETURN VALUE
Returns 0 if succeeded, or a negative value for error.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_agent_init(3)
.BR libssh2_agent_get_identity(3)
PK-{FZ�5���0share/man/man3/libssh2_channel_get_exit_status.3nu�[���.TH libssh2_channel_get_exit_status 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_get_exit_status - get the remote exit code
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_get_exit_status(LIBSSH2_CHANNEL* channel)

.SH DESCRIPTION
\fIchannel\fP - Closed channel stream to retrieve exit status from.

Returns the exit code raised by the process running on the remote host at 
the other end of the named channel. Note that the exit status may not be 
available if the remote end has not yet set its status to closed.

.SH RETURN VALUE
Returns 0 on failure, otherwise the \fIExit Status\fP reported by remote host
PK-{FZ��D	D	%share/man/man3/libssh2_sftp_open_ex.3nu�[���.TH libssh2_sftp_open_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_open - open filehandle for file on SFTP.
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

LIBSSH2_SFTP_HANDLE *
libssh2_sftp_open_ex(LIBSSH2_SFTP *sftp, const char *filename,
                     unsigned int filename_len, unsigned long flags,
                     long mode, int open_type);
.SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by \fIlibssh2_sftp_init(3)\fP

\fIfilename\fP - Remote file/directory resource to open 

\fIfilename_len\fP - Length of filename 

\fIflags\fP - Any reasonable combination of the LIBSSH2_FXF_* constants:
.RS
.IP LIBSSH2_FXF_READ
Open the file for reading.
.IP LIBSSH2_FXF_WRITE
Open the file for writing.  If both this and LIBSSH2_FXF_READ are specified,
the file is opened for both reading and writing.
.IP LIBSSH2_FXF_APPEND
Force all writes to append data at the end of the file.
.IP LIBSSH2_FXF_CREAT,
If this flag is specified, then a new file will be created if one does not
already exist (if LIBSSH2_FXF_TRUNC is specified, the new file will be
truncated to zero length if it previously exists)
.IP LIBSSH2_FXF_TRUNC
Forces an existing file with the same name to be truncated to zero length when
creating a file by specifying LIBSSH2_FXF_CREAT. LIBSSH2_FXF_CREAT MUST also
be specified if this flag is used.
.IP LIBSSH2_FXF_EXCL
Causes the request to fail if the named file already exists.
LIBSSH2_FXF_CREAT MUST also be specified if this flag is used.

.RE
\fImode\fP - POSIX file permissions to assign if the file is being newly
created. See the LIBSSH2_SFTP_S_* convenience defines in <libssh2_sftp.h>

\fIopen_type\fP - Either of LIBSSH2_SFTP_OPENFILE (to open a file) or
LIBSSH2_SFTP_OPENDIR (to open a directory).
.SH RETURN VALUE
A pointer to the newly created LIBSSH2_SFTP_HANDLE instance or NULL on
failure.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to be 
returned by the server.

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would
block.
.SH SEE ALSO
.BR libssh2_sftp_close_handle(3)

PK-{FZ��̕��)share/man/man3/libssh2_channel_send_eof.3nu�[���.TH libssh2_channel_send_eof 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_send_eof - send EOF to remote server
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_send_eof(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
Tell the remote host that no further data will be sent on the specified 
channel. Processes typically interpret this as a closed stdin descriptor.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

.SH SEE ALSO
.BR libssh2_channel_wait_eof(3)
.BR libssh2_channel_eof(3)
PK-{FZ�U��&share/man/man3/libssh2_sftp_rmdir_ex.3nu�[���.TH libssh2_sftp_rmdir_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_rmdir_ex - remove an SFTP directory
.SH SYNOPSIS
.nf
#include <libssh2.h>
#include <libssh2_sftp.h>

int libssh2_sftp_rmdir_ex(LIBSSH2_SFTP *sftp, const char *path,
                          unsigned int path_len);
.SH DESCRIPTION
Remove a directory from the remote file system.

\fIsftp\fP - SFTP instance as returned by 
.BR libssh2_sftp_init(3)

\fIsourcefile\fP - Full path of the existing directory to remove.

\fIsourcefile_len\fP - Length of the full path of the existing directory to
remove.
.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.
.SH SEE ALSO
.BR libssh2_sftp_init(3)
PK-{FZ�S��++)share/man/man3/libssh2_trace_sethandler.3nu�[���.TH libssh2_trace_sethandler 3 "15 Jan 2010" "libssh2 1.2.3" "libssh2 manual"
.SH NAME
libssh2_trace_sethandler - set a trace output handler
.SH SYNOPSIS
.nf
#include <libssh2.h>

typedef void (*libssh2_trace_handler_func)(LIBSSH2_SESSION *session,
                                           void* context,
                                           const char *data,
                                           size_t length);

int libssh2_trace_sethandler(LIBSSH2_SESSION *session,
                             void* context,
                             libssh2_trace_handler_func callback);
.SH DESCRIPTION
libssh2_trace_sethandler installs a trace output handler for your application.
By default, when tracing has been switched on via a call to libssh2_trace(),
all output is written to stderr.  By calling this method and passing a
function pointer that matches the libssh2_trace_handler_func prototype,
libssh2 will call back as it generates trace output.  This can be used to
capture the trace output and put it into a log file or diagnostic window.
This function has no effect unless libssh2 was built to support this option,
and a typical "release build" might not.

\fBcontext\fP can be used to pass arbitrary user defined data back into the callback when invoked.
.SH AVAILABILITY
Added in libssh2 version 1.2.3
PK-{FZ���kk-share/man/man3/libssh2_channel_window_write.3nu�[���.TH libssh2_channel_window_write 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_channel_window_write - convenience macro for \fIlibssh2_channel_window_write_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

unsigned long libssh2_channel_window_write(LIBSSH2_CHANNEL *channel);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_channel_window_write_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_channel_window_write_ex(3)\fP
.SH ERRORS
See \fIlibssh2_channel_window_write_ex(3)\fP
.SH SEE ALSO
.BR libssh2_channel_window_write_ex(3)
PK-{FZYdy���0share/man/man3/libssh2_channel_get_exit_signal.3nu�[���.TH libssh2_channel_get_exit_signal 3 "4 Oct 2010" "libssh2 1.2.8" "libssh2 manual"
.SH NAME
libssh2_channel_get_exit_signal - get the remote exit signal
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_channel_get_exit_signal(LIBSSH2_CHANNEL *channel, char **exitsignal, size_t *exitsignal_len, char **errmsg, size_t *errmsg_len, char **langtag, size_t *langtag_len);

.SH DESCRIPTION
\fIchannel\fP - Closed channel stream to retrieve exit signal from.

\fIexitsignal\fP - If not NULL, is populated by reference with the exit signal
(without leading "SIG"). Note that the string is stored in a newly allocated
buffer. If the remote program exited cleanly, the referenced string pointer
will be set to NULL. 

\fIexitsignal_len\fP - If not NULL, is populated by reference with the length
of exitsignal. 

\fIerrmsg\fP - If not NULL, is populated by reference with the error message
(if provided by remote server, if not it will be set to NULL). Note that the
string is stored in a newly allocated buffer.

\fIerrmsg_len\fP - If not NULL, is populated by reference with the length of errmsg.

\fIlangtag\fP - If not NULL, is populated by reference with the language tag 
(if provided by remote server, if not it will be set to NULL). Note that the
string is stored in a newly allocated buffer.

\fIlangtag_len\fP - If not NULL, is populated by reference with the length of langtag.

.SH RETURN VALUE
Numeric error code corresponding to the the Error Code constants.
PK-{FZ�ޑj��)share/man/man3/libssh2_publickey_remove.3nu�[���.TH libssh2_publickey_remove 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_publickey_remove - convenience macro for \fIlibssh2_publickey_remove_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_publickey_remove(LIBSSH2_PUBLICKEY *pkey,
			     const unsigned char *name, unsigned long name_len,
			     const unsigned char *blob, unsigned long blob_len);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_publickey_remove_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_publickey_remove_ex(3)\fP
.SH ERRORS
See \fIlibssh2_publickey_remove_ex(3)\fP
.SH SEE ALSO
.BR libssh2_publickey_remove_ex(3)
PK-{FZ�y2>gg(share/man/man3/libssh2_session_startup.3nu�[���.TH libssh2_session_startup 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_startup - begin transport layer
.SH SYNOPSIS
#include <libssh2.h>

int 
libssh2_session_startup(LIBSSH2_SESSION *session, int socket);
.SH DESCRIPTION
Starting in libssh2 version 1.2.8 this function is considered deprecated. Use
\fIlibssh2_session_handshake(3)\fP instead.

\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIsocket\fP - Connected socket descriptor. Typically a TCP connection 
though the protocol allows for any reliable transport and the library will 
attempt to use any berkeley socket.

Begin transport layer protocol negotiation with the connected host.
.SH RETURN VALUE
Returns 0 on success, negative on failure.
.SH ERRORS
\fILIBSSH2_ERROR_SOCKET_NONE\fP - The socket is invalid.

\fILIBSSH2_ERROR_BANNER_SEND\fP - Unable to send banner to remote host.

\fILIBSSH2_ERROR_KEX_FAILURE\fP - >Encryption key exchange with the remote 
host failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_DISCONNECT\fP - The socket was disconnected.

\fILIBSSH2_ERROR_PROTO\fP - An invalid SSH protocol response was received on 
the socket.

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would block.

.SH SEE ALSO
.BR libssh2_session_free(3)
.BR libssh2_session_init_ex(3)
PK-{FZ�Y)�OO(share/man/man3/libssh2_channel_open_ex.3nu�[���.TH libssh2_channel_open_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_channel_open_ex - establish a generic session channel
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_CHANNEL *
libssh2_channel_open_ex(LIBSSH2_SESSION *session, const char *channel_type, unsigned int channel_type_len, unsigned int window_size, unsigned int packet_size, const char *message, unsigned int message_len);

LIBSSH2_CHANNEL *
libssh2_channel_open_session(session);

.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIchannel_type\fP - Channel type to open. Typically one of session, 
direct-tcpip, or tcpip-forward. The SSH2 protocol allowed for additional 
types including local, custom channel types.

\fIchannel_type_len\fP - Length of channel_type

\fIwindow_size\fP - Maximum amount of unacknowledged data remote host is 
allowed to send before receiving an SSH_MSG_CHANNEL_WINDOW_ADJUST packet.

\fIpacket_size\fP - Maximum number of bytes remote host is allowed to send 
in a single SSH_MSG_CHANNEL_DATA or SSG_MSG_CHANNEL_EXTENDED_DATA packet.

\fImessage\fP - Additional data as required by the selected channel_type.

\fImessage_len\fP - Length of message parameter.

Allocate a new channel for exchanging data with the server. This method is 
typically called through its macroized form: 
.BR libssh2_channel_open_session(3)
or via 
.BR libssh2_channel_direct_tcpip(3)
or
.BR libssh2_channel_forward_listen(3)

.SH RETURN VALUE
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_CHANNEL_FAILURE\fP - 

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would block.

.SH SEE ALSO
Add related functions
PK-{FZ��+�==%share/man/man3/libssh2_sftp_setstat.3nu�[���.TH libssh2_sftp_setstat 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_setstat - convenience macro for \fIlibssh2_sftp_stat_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

int libssh2_sftp_setstat(LIBSSH2_SFTP *sftp, const char *path, LIBSSH2_SFTP_ATTRIBUTES *attr);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_stat_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_stat_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_stat_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_stat_ex(3)
PK-{FZ?�]M��7share/man/man3/libssh2_userauth_hostbased_fromfile_ex.3nu�[���.TH libssh2_userauth_hostbased_fromfile_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_userauth_hostbased_fromfile_ex - TODO
.SH SYNOPSIS

.SH DESCRIPTION

.SH RETURN VALUE

.SH ERRORS

.SH SEE ALSO
PK-{FZ;��JJ&share/man/man3/libssh2_userauth_list.3nu�[���.TH libssh2_userauth_list 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_userauth_list - list supported authentication methods
.SH SYNOPSIS
.nf
#include <libssh2.h>

char *
libssh2_userauth_list(LIBSSH2_SESSION *session, const char *username,
                      unsigned int username_len);
.SH DESCRIPTION
\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIusername\fP - Username which will be used while authenticating. Note that
most server implementations do not permit attempting authentication with
different usernames between requests. Therefore this must be the same username
you will use on later userauth calls.

\fIusername_len\fP - Length of username parameter.

Send a \fBSSH_USERAUTH_NONE\fP request to the remote host. Unless the remote
host is configured to accept none as a viable authentication scheme
(unlikely), it will return \fBSSH_USERAUTH_FAILURE\fP along with a listing of
what authentication schemes it does support. In the unlikely event that none
authentication succeeds, this method with return NULL. This case may be
distinguished from a failing case by examining
\fIlibssh2_userauth_authenticated(3)\fP.
.SH RETURN VALUE
On success a comma delimited list of supported authentication schemes.  This
list is internally managed by libssh2.  On failure returns NULL.
.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ��lrr*share/man/man3/libssh2_sftp_close_handle.3nu�[���.TH libssh2_sftp_close_handle 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_sftp_close_handle - close filehandle
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

int 
libssh2_sftp_close_handle(LIBSSH2_SFTP_HANDLE *handle);

int 
libssh2_sftp_close(LIBSSH2_SFTP_HANDLE *handle);

int 
libssh2_sftp_closedir(LIBSSH2_SFTP_HANDLE *handle);

.SH DESCRIPTION
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP
or \fBlibssh2_sftp_opendir(3)\fP (which is a macro).

Close an active LIBSSH2_SFTP_HANDLE. Because files and directories share the
same underlying storage mechanism these methods may be used
interchangeably. \fBlibssh2_sftp_close(3)\fP and \fBlibssh2_sftp_closedir(3)\fP
are macros for \fBlibssh2_sftp_close_handle(3)\fP.

.SH RETURN VALUE
Return 0 on success or negative on failure.  It returns
LIBSSH2_ERROR_EAGAIN when it would otherwise block. While
LIBSSH2_ERROR_EAGAIN is a negative number, it isn't really a failure per se.

.SH ERRORS
\fILIBSSH2_ERROR_ALLOC\fP -  An internal memory allocation call failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_TIMEOUT\fP - 

\fILIBSSH2_ERROR_SFTP_PROTOCOL\fP - An invalid SFTP protocol response was 
received on the socket, or an SFTP operation caused an errorcode to 
be returned by the server.

.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZT�kk$share/man/man3/libssh2_sftp_tell64.3nu�[���.TH libssh2_sftp_tell64 3 "22 Dec 2008" "libssh2 1.0" "libssh2 manual"
.SH NAME
libssh2_sftp_tell64 - get the current read/write position indicator for a file
.SH SYNOPSIS
#include <libssh2.h>
#include <libssh2_sftp.h>

libssh2_uint64_t
libssh2_sftp_tell64(LIBSSH2_SFTP_HANDLE *handle);

.SH DESCRIPTION
\fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP

Identify the current offset of the file handle's internal pointer.
.SH RETURN VALUE
Current offset from beginning of file in bytes.
.SH AVAILABILITY
Added in libssh2 1.0
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3),
.BR libssh2_sftp_tell(3)
PK-{FZ�͆���&share/man/man3/libssh2_sftp_realpath.3nu�[���.TH libssh2_sftp_realpath 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_realpath - convenience macro for \fIlibssh2_sftp_symlink_ex(3)\fP
.SH SYNOPSIS
.nf
#include <libssh2.h>

#define libssh2_sftp_realpath(sftp, path, target, maxlen) \\
  libssh2_sftp_symlink_ex((sftp), (path), strlen(path), (target), (maxlen), \\
                          LIBSSH2_SFTP_REALPATH)
.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_symlink_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_symlink_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_symlink_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_symlink_ex(3)
PK-{FZ�K��

-share/man/man3/libssh2_session_callback_set.3nu�[���.TH libssh2_session_callback_set 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
.SH NAME
libssh2_session_callback_set - set a callback function
.SH SYNOPSIS
.nf
#include <libssh2.h>

void *libssh2_session_callback_set(LIBSSH2_SESSION *session,
                                   int cbtype, void *callback);
.SH DESCRIPTION
Sets a custom callback handler for a previously initialized session
object. Callbacks are triggered by the receipt of special packets at the
Transport layer. To disable a callback, set it to NULL.

\fIsession\fP - Session instance as returned by 
.BR libssh2_session_init_ex(3)

\fIcbtype\fP - Callback type. One of the types listed in Callback Types.

\fIcallback\fP - Pointer to custom callback function. The prototype for 
this function must match the associated callback declaration macro.
.SH CALLBACK TYPES
.IP LIBSSH2_CALLBACK_IGNORE
Called when a SSH_MSG_IGNORE message is received
.IP LIBSSH2_CALLBACK_DEBUG
Called when a SSH_MSG_DEBUG message is received
.IP LIBSSH2_CALLBACK_DISCONNECT
Called when a SSH_MSG_DISCONNECT message is received
.IP LIBSSH2_CALLBACK_MACERROR
Called when a mismatched MAC has been detected in the transport layer. If the
function returns 0, the packet will be accepted nonetheless.
.IP LIBSSH2_CALLBACK_X11
Called when an X11 connection has been accepted
.IP LIBSSH2_CALLBACK_SEND
Called when libssh2 wants to send some data on the connection.
Can be set to a custom function to handle I/O your own way.
.IP LIBSSH2_CALLBACK_RECV
Called when libssh2 wants to receive some data from the connection.
Can be set to a custom function to handle I/O your own way.
.SH RETURN VALUE
Pointer to previous callback handler. Returns NULL if no prior callback
handler was set or the callback type was unknown.
.SH SEE ALSO
.BR libssh2_session_init_ex(3)
PK-{FZ�rX*share/man/man3/libssh2_session_handshake.3nu�[���.TH libssh2_session_handshake 3 "7 Oct 2010" "libssh2 1.2.8" "libssh2 manual"
.SH NAME
libssh2_session_handshake - perform the SSH handshake
.SH SYNOPSIS
#include <libssh2.h>

int
libssh2_session_handshake(LIBSSH2_SESSION *session, libssh2_socket_t socket);
.SH DESCRIPTION
\fIsession\fP - Session instance as returned by
.BR libssh2_session_init_ex(3)

\fIsocket\fP - Connected socket descriptor. Typically a TCP connection
though the protocol allows for any reliable transport and the library will
attempt to use any berkeley socket.

Begin transport layer protocol negotiation with the connected host.
.SH RETURN VALUE
Returns 0 on success, negative on failure.
.SH ERRORS
\fILIBSSH2_ERROR_SOCKET_NONE\fP - The socket is invalid.

\fILIBSSH2_ERROR_BANNER_SEND\fP - Unable to send banner to remote host.

\fILIBSSH2_ERROR_KEX_FAILURE\fP - >Encryption key exchange with the remote
host failed.

\fILIBSSH2_ERROR_SOCKET_SEND\fP - Unable to send data on socket.

\fILIBSSH2_ERROR_SOCKET_DISCONNECT\fP - The socket was disconnected.

\fILIBSSH2_ERROR_PROTO\fP - An invalid SSH protocol response was received on
the socket.

\fILIBSSH2_ERROR_EAGAIN\fP - Marked for non-blocking I/O but the call would block.
.SH AVAILABILITY
Added in 1.2.8
.SH SEE ALSO
.BR libssh2_session_free(3)
.BR libssh2_session_init_ex(3)
PK-{FZ���GG"share/man/man3/libssh2_sftp_open.3nu�[���.TH libssh2_sftp_open 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
.SH NAME
libssh2_sftp_open - convenience macro for \fIlibssh2_sftp_open_ex(3)\fP calls
.SH SYNOPSIS
#include <libssh2.h>

LIBSSH2_SFTP_HANDLE *
libssh2_sftp_open(LIBSSH2_SFTP *sftp, const char *path, unsigned long flags, long mode);

.SH DESCRIPTION
This is a macro defined in a public libssh2 header file that is using the
underlying function \fIlibssh2_sftp_open_ex(3)\fP.
.SH RETURN VALUE
See \fIlibssh2_sftp_open_ex(3)\fP
.SH ERRORS
See \fIlibssh2_sftp_open_ex(3)\fP
.SH SEE ALSO
.BR libssh2_sftp_open_ex(3)
PK-{FZ�,|o��#share/man/man3/libssh2_agent_free.3nu�[���.\"
.\" Copyright (c) 2009 by Daiki Ueno
.\"
.TH libssh2_agent_free 3 "28 May 2009" "libssh2 1.2" "libssh2 manual"
.SH NAME
libssh2_agent_free - free an ssh-agent handle
.SH SYNOPSIS
#include <libssh2.h>

void libssh2_agent_free(LIBSSH2_AGENT *agent);
.SH DESCRIPTION
Free an ssh-agent handle.  This function also frees the internal
collection of public keys.
.SH RETURN VALUE
None.
.SH AVAILABILITY
Added in libssh2 1.2
.SH SEE ALSO
.BR libssh2_agent_init(3)
.BR libssh2_agent_disconnect(3)
PK-{FZ={��ААlib/libssh2.so.1.0.1nuȯ��ELF>T@��@8@�� ��#�#�� ��#�#���$$P�td�������
�
Q�tdR�td��#�#

GNU8r|�Z���x_{���I�ar
�������Ȅ�XAK!@"� "A���8@j�$� ��"���� D$ Thb.`Dc�H ��LE�8a
����"B�rtv{|}����������������������������������������������������������������n�
u ���E���R��"���ۊ�@	�'Z3'V�'��u�iu��x���TY2�03>>e,��b��V�ةuɵ���ܟ�D<u.��T
�u�kr�
�$�@���/3ku]^"�a��n�{�ƍ�;7q��u�R�I7䫕K��
��up��5��n��v�0XE��u`3�eR�)q]�^I���ڸ���z�=lf�%"?��v�<D'D��Jf����U0�a�8�)��M�gHh]��k�hH���P_dz�Ne]�YC�i]y[�R\�I���S��zuR좽o����E�)(�s*Dә�#�5
h�$��Ir�y…�?n�dc��t�v5�,Z䫕���$D����Z����iҤQ�kmX'��s(
Ԑ���E(-��Wˡ!�=w��kQ�|m5z�J�Nr��?O4Ϧ�ڴ�ԏ�f�rֻ�g>˰�F
i�#[��j2;�����7�Ds�h&E�8B�R��c�XvWG�z‰F2;S[�wXXa� �N�B�.TcX[HHn��5z��[T@|�	��g�1U�-|s�Dp*�
�t]
�cI 6\\cI�_r����#$��J�z�����	8��&Clh�(��6��, �F"{ub!Z��)���+��t����f�#��]���F�
k`%�W.%�9g�N*	E�#���t�
H���iy���*��uyC�Vj�J���
��z�p�j�#Lg{�m}�k,]�6���	��4���	
OK �|66�	���:���8��|Vzt��G�8��^%
���{Ň_����~x"��7t1R��u_���g�#�'�p=�h�� �<�
�
����
8�#l�t?3���3����-r�����it�~.�1�!0
CR^���y�
XX{AgI<��yT|
{WQ�
�&F
�R`i��N
rLm	هBi�vs��2�
�^��	��Y	��w������
�W��-`�B�Md
%WV8�pG	h�:
���d
�����m]���t�5�
��w@�X�m�
w���	����
h��
[�#�pd	|��
�f~�����|�	��S��t�#�
w?��&��Xo%�wx�L
i��%�H���w
9���}o�J�Nt�H�����R�&���	*�:�og�cm]�|.w�8n�d�wf&��t>D��7�q�d��__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizememsetmemcpylibssh2_channel_open_exlibssh2_session_last_errnostrlenlibssh2_channel_direct_tcpip_exlibssh2_channel_forward_listen_exlibssh2_channel_forward_cancellibssh2_channel_forward_acceptlibssh2_channel_setenv_exlibssh2_channel_request_pty_exlibssh2_channel_request_pty_size_exRAND_bytessprintflibssh2_channel_x11_req_exlibssh2_channel_process_startuplibssh2_channel_set_blockinglibssh2_channel_flush_exlibssh2_channel_get_exit_statuslibssh2_channel_get_exit_signallibssh2_channel_receive_window_adjustlibssh2_channel_receive_window_adjust2libssh2_channel_handle_extended_data2libssh2_channel_handle_extended_datalibssh2_channel_read_exlibssh2_channel_window_read_exlibssh2_channel_write_exlibssh2_channel_send_eoflibssh2_channel_eoflibssh2_channel_wait_eoflibssh2_channel_closelibssh2_channel_wait_closed__assert_faillibssh2_channel_freelibssh2_channel_window_write_exdeflateInit_inflateInit_deflateinflatedeflateEndinflateEndEVP_CIPHER_CTX_cleanupEVP_aes_128_cbcEVP_aes_192_cbcEVP_aes_256_cbcEVP_bf_cbcEVP_rc4EVP_cast5_cbcEVP_des_ede3_cbclibssh2_crypt_methodsstrncmplibssh2_sha1_initEVP_DigestUpdateEVP_DigestFinalRSA_freeDSA_freelibssh2_hostkey_methodslibssh2_hostkey_hashmemcmplibssh2_session_hostkeyBN_CTX_newBN_newBN_randBN_mod_expBN_num_bitsBN_bn2binlibssh2_md5_initBN_bin2bnBN_clear_freeBN_CTX_freeBN_set_wordstrchrlibssh2_session_method_preflibssh2_session_supported_algsEVP_sha1HMAC_InitHMAC_UpdateHMAC_FinalHMAC_CTX_cleanupEVP_md5EVP_ripemd160__errno_locationlibssh2_base64_decodesnprintflibssh2_freelibssh2_tracelibssh2_trace_sethandlerlibssh2_publickey_initlibssh2_publickey_add_exlibssh2_publickey_remove_exlibssh2_publickey_list_fetchlibssh2_publickey_list_freelibssh2_publickey_shutdownstrtolstrtolllibssh2_scp_recvstrrchrlibssh2_scp_send_exlibssh2_scp_send64mallocreallocfcntllibssh2_session_banner_setlibssh2_banner_setlibssh2_session_init_exlibssh2_session_callback_setlibssh2_keepalive_sendlibssh2_session_block_directionsdifftimelibssh2_session_handshakelibssh2_session_startuplibssh2_session_freelibssh2_session_disconnect_exlibssh2_session_methodslibssh2_session_abstractlibssh2_session_last_errorlibssh2_session_flaglibssh2_session_set_blockinglibssh2_session_get_blockinglibssh2_session_set_timeoutlibssh2_session_get_timeoutlibssh2_poll_channel_readlibssh2_pollgettimeofdaylibssh2_session_banner_getlibssh2_sftp_dtorlibssh2_sftp_initlibssh2_sftp_shutdownlibssh2_sftp_open_exlibssh2_sftp_readlibssh2_sftp_readdir_exlibssh2_sftp_writelibssh2_sftp_fsynclibssh2_sftp_fstat_exlibssh2_sftp_seek64libssh2_sftp_seeklibssh2_sftp_telllibssh2_sftp_tell64libssh2_sftp_close_handlelibssh2_sftp_unlink_exlibssh2_sftp_rename_exlibssh2_sftp_fstatvfslibssh2_sftp_statvfslibssh2_sftp_mkdir_exlibssh2_sftp_rmdir_exlibssh2_sftp_stat_exlibssh2_sftp_symlink_exlibssh2_sftp_last_errorlibssh2_sftp_get_channelmemmovelibssh2_userauth_listlibssh2_userauth_authenticatedlibssh2_userauth_password_exfopenfeoffreadrewindfclose__ctype_b_locmemchrlibssh2_userauth_hostbased_fromfile_exlibssh2_userauth_publickey_fromfile_exlibssh2_userauth_publickeylibssh2_userauth_keyboard_interactive_exlibssh2_versionlibssh2_knownhost_initlibssh2_knownhost_addlibssh2_knownhost_addcstrcmplibssh2_knownhost_checklibssh2_knownhost_checkplibssh2_knownhost_dellibssh2_knownhost_freelibssh2_knownhost_readlinelibssh2_knownhost_readfilefgetslibssh2_knownhost_writelinelibssh2_knownhost_writefilefwritelibssh2_knownhost_getgetenvsocketstrncpylibssh2_agent_initlibssh2_agent_connectlibssh2_agent_list_identitieslibssh2_agent_get_identitylibssh2_agent_userauthlibssh2_agent_disconnectlibssh2_agent_freeRSA_newlibssh2_sha1RSA_verifyDSA_newDSA_do_verifyEVP_CIPHER_CTX_initEVP_CipherInitEVP_CipherEVP_aes_128_ecbEVP_aes_192_ecbEVP_aes_256_ecbEVP_EncryptInitEVP_CIPHER_CTX_set_paddingEVP_CIPHER_CTX_set_app_dataEVP_CIPHER_CTX_get_app_dataEVP_EncryptUpdateBIO_new_fileBIO_freePEM_read_bio_RSAPrivateKeyPEM_read_bio_DSAPrivateKeyRSA_sizeRSA_signDSA_do_signDSA_SIG_freeEVP_MD_CTX_initEVP_get_digestbynameEVP_DigestInitlibssh2_md5EVP_PKEY_get1_RSAEVP_PKEY_get1_DSAEVP_get_cipherbynameOpenSSL_add_all_ciphersBIO_ctrlPEM_read_bio_PrivateKeyEVP_PKEY_freelibssh2_keepalive_configlibssh2_initOPENSSL_add_all_algorithms_noconflibssh2_exitlibssl.so.1.0.0libcrypto.so.1.0.0libz.so.1libc.so.6libssh2.so.1GLIBC_2.3GLIBC_2.14GLIBC_2.2.5/usr/local/openssl-1.0.0/lib�ii
�����ui	��#�T�#pT## #8�8#\�@#�`#F�p#$�x#��#Ԝ�#\��#K��#$��#��#Ԝ�#\��#��#0��#i�#�#;�#*� #��0#c�8#צ@#S�H#çX#��`#��h#���#��#���#8��#���#���#J��#���#z�#��#J�#� #z�@#��P#J�X#9�`#z��#���#J��#G��#z��#̧�#J��#���#z�#ۧ#J�#�� #z�H#��`#��x#��#��#��#'��#8�#N� #\�8#n�P#��h#���#\��#��#���#��#/��#g�#�#��#�#Y� #r�@#�H#��P#�X#��`#}��#��#���#��#���#��#���#��#��#�#��#� #��@#�H#��P#�`#���#��#���#��#ǡ�#��#���#��#ϡ#z�#��#� #ڡ@#�H#��P#�`#��#��#���#�$#`#$#�#$# # $# #@$#�#H$#�#P$# #X$#�#`$# #h$#�#p$#`#x$#`#�$#�#�$#�#�$# #�$#`#�$#�#�$# #�$#�#�$#�#�$#`#%#�#%##%#@#%#�# %#�#(%##@%#LiH%#ejP%#�l`%#P�h%#@%#�#Z�##X#�#a�#/#/X#m�#\�#	�#�#-�#=�#��#i�#k #  #( #0 #8 #�@ #H #P #X #` #
h #p #x #
� #� #� #� #� #� #~� #� #�� #�� #� #� #� #� #� #� #!#!#�!#!#  !#!(!#"0!#�8!##@!#$H!#%P!#&X!#'`!#(h!#)p!#*x!#��!#+�!#,�!#.�!#0�!#1�!#��!#2�!#3�!#4�!#5�!#��!#6�!#w�!#7�!#8�!#9"#:"#|"#�"#� "#;("#<0"#>8"#?@"#@H"#AP"#BX"#C`"#Dh"#Ep"#Fx"#��"#G�"#H�"#I�"#J�"#��"#K�"#L�"#M�"#N�"#O�"#P�"#Q�"#R�"#S�"#T�"#U##V##W##X##Y ##[(##]0##^8##�@##_H##�P##`X##�`##bh##cp##dx##e�##f�##g�##h�##��##��##j�##��##k�##l�##n�##o�##p�##q��H��H���"H��t��H����5��"�%��"@�%��"h����%��"h�����%��"h����%��"h����%��"h����%��"h����%��"h����%z�"h�p����%r�"h�`����%j�"h	�P����%b�"h
�@����%Z�"h�0����%R�"h� ����%J�"h
�����%B�"h�����%:�"h���%2�"h����%*�"h�����%"�"h����%�"h����%�"h����%
�"h����%�"h����%��"h�p����%��"h�`����%��"h�P����%��"h�@����%��"h�0����%��"h� ����%��"h�����%��"h�����%��"h���%��"h ����%��"h!�����%��"h"����%��"h#����%��"h$����%��"h%����%��"h&����%z�"h'�p����%r�"h(�`����%j�"h)�P����%b�"h*�@����%Z�"h+�0����%R�"h,� ����%J�"h-�����%B�"h.�����%:�"h/���%2�"h0����%*�"h1�����%"�"h2����%�"h3����%�"h4����%
�"h5����%�"h6����%��"h7�p����%��"h8�`����%��"h9�P����%��"h:�@����%��"h;�0����%��"h<� ����%��"h=�����%��"h>�����%��"h?���%��"h@����%��"hA�����%��"hB����%��"hC����%��"hD����%��"hE����%��"hF����%z�"hG�p����%r�"hH�`����%j�"hI�P����%b�"hJ�@����%Z�"hK�0����%R�"hL� ����%J�"hM�����%B�"hN�����%:�"hO���%2�"hP����%*�"hQ�����%"�"hR����%�"hS����%�"hT����%
�"hU����%�"hV����%��"hW�p����%��"hX�`����%��"hY�P����%��"hZ�@����%��"h[�0����%��"h\� ����%��"h]�����%��"h^�����%��"h_���%��"h`����%��"ha�����%��"hb����%��"hc����%��"hd����%��"he����%��"hf����%z�"hg�p����%r�"hh�`����%j�"hi�P����%b�"hj�@����%Z�"hk�0����%R�"hl� ����%J�"hm�����%B�"hn�����%:�"ho���%2�"hp����%*�"hq�����%"�"hr����%�"hs����%�"ht����%
�"hu����%�"hv����%��"hw�p����%��"hx�`����%��"hy�P���H�=y�"H�r�"H9�tH���"H��t	�����H�=I�"H�5B�"H)�H��H��H��?H�H�tH�}�"H��t��fD�����=�"u+UH�=Z�"H��tH�=n�"�	����d������"]������w���UH��H�� H�}�H�E苀��E�H�E�H�H��螬H�E��&H�E�@09E�s
H�E�@0�E�H�E�H��般H�E�H�}�uӋE��PH�E艐��E���UH��H�� H�}�u�H�E�H�H���5�H�E��%H�E��@09E�u	H�E��H�E�H��� �H�E�H�}�u�H�E�H�H����H�E��OH�E�H��0H���۫H�E��"H�E��@09E�uH�E��3H�E�H���ɫH�E�H�}�u�H�E�H��貫H�E�H�}�u����UH��SH��XH�}�H�u��U��M�D�E�L�M�H�Eȋ�������H�E�Hǀ��H�E�Hǀ��H�E�Hǀ���E�����H�E�H����H�E�H���H�����H�Eȉ���H�E�H����H�����H�EȾ�H��耫H��H�E�H����H�E�H����H��u"H�E�H��?�����H������}H�E�H�����U��P H�E�H�@H�MȋU�H�u�H����H��H���H�CH�E�H����H�@H��uPH�E�H��?�����H���}�H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ������U�H�E�H����H�@H�M�H��H���
���H�E�H����H�Uȋ����P0H�E�H�����U��PLH�E�H�����U��PHH�E�H�����U��PPH�E�H����H�U�H�P`H�E�H����H��H�E�H�H��H����H�E�H�@H�M�H�U�H����H��H���H��H�E�H����H�E�H����H�E�H�E�H����H��uH�E�H��>�����H���?��H�E�H�PH�U��Z�U�H�M�H�E�H��H��肢H�Eȋ���H�E��H���2��U�H�E��H���!��U�H�E��H����H�E�ǀ��H�Eȋ�������H�E�H����H�E�H����H�M�H�E�L�EH���@��E�}��u"�M�H�E�H��=��H���o����}�t�M�H�E�H�>��H���G��H�E�ǀ��H�Eȋ�������H�E�H����H�E�H�����U�H��H�<H�E�H����H�E�H����H�E�VjI��A�H�5
FH����H���E�}��u"H�E�H��=����H��覞��9�}��SH�E�H�����<[�H�E�H����H�PH�E�H����H���9��CDH�E�H����H�P	H�E�H����H�����C8H�E�H����H�P	H�E�H����H�����C4H�E�H����H�P
H�E�H����H���ʞ�C<H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ��H�E�H�����H�E�H�����<\uH�E�H�7<���H���D�����H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H���8H�E�H�@H�M�H�U�H����H�RH��H���H�E�H����H���e�H�E�H�����P0H�E܉�H���D��.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H�E�H����H�u�H�E�H��jI��A��^H����H����y�H�E�H����H�E�H����H�u�H�E�H��jI��A��_H���ľH�����J���H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ���H�]���UH��H��PH�}�H�uЉỦM�D�E�L�M�H�}�u
����Z�H�E��}L�M�D�EċMȋU�H�u�H�E�H��WH���$���H��H�E�H�E؋����t4H�}�u-H�E�H���W���uH�U�H�E�H��H����E�}�t�H�E���UH��H��0H�}�H�u�U�H�M�D�E�H�E苀�����(H�E�H����H��H�E�H����H�E�H���m�H��H�E�H����H�E�H����H�E�H����H�H�PH�E�H���H�E�H�@H�M�H�U�H���H��H���H��H�E�H����H�E�H����H�E�H�E�H����H��u"H�E�H��8�����H��轙��H�E�H����H�M�H�E�H��H�����U�H�E��H��蹛H�E�H����H�M�H�E�H��H���ӛ�U�H�E��H��芛H�E�H���H�E�H����H�E�H��RI��A��� �H�5P8H���>���H��H�E�H�}�u&H�E�H������uH�E�ǀ����@H�E�ǀ��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E���UH��H��@H�}�H�uЉU�H�M�D�E�H�}�u��u���H�E��}�H�M��U�H�u�H�E�A��H�����H�E�H�E؋����t4H�}�u-H�E�H�������uH�U�H�E�H��H�����E�}�t�H�E���UH��H��PH�}�H�u��U�H�M�D�E�H�}�uH�7H�E�H�Eȋ�����.H�E�H�������H�Eȉ��H�Eȋ���PH�Eȉ��H�E�H ���H�����H�E�H�@H�U�H�Mȋ����H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��u"H�E�H�i6�����H������=H�E�H�PH�U��PH�E�
H�5_6H���J�H�E�H�PH�U��H�Eȋ����H�M�H�E�H��H�����U�H�E��H���ӘH�E�ǀ�H�Eȋ������H�Eȋ����H�E�H���H�E�A��H�����E�}��u"H�E�H��5����H���.���]�}�t^H�E�H��5�����H����H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�Eȋ������H�E�H�� �H�M�H�U�H�E�VjA�A�H�5~<H���H���E�}��u"H�E�H��3����H������F�}�t0H�E�H�5��H����H�E�ǀ���H�E��<Q��H�EȾ`H����H�E�H�}�uH�E�H��4�����H��蔔�9H�E�H�@H�U�H�Mȋ������H��H���H��H�E�H�P H�E�H�@ H��u=H�E�H�g4�����H���<�H�E�H�@H�M�H�U�H��H���H�E��H�E�H�U�H�PH�Eȋ����H�E�H�@ H�M�H��H�����H�E�H�P H�Eȋ����H��H�E�H��v!�}�uH�E�H��H��荔��H�E��P(�
H�E��U��P(H�E��@@H�E��U��PDH�E�H�U�H���H��H��踛H�}�t
H�E��P(H�E��H�E�H�@H�M�H�U�H��H���H�E�ǀ�H�E��cH�E��<RuEH�E�H�@H�M�H�U�H��H���H�E�H�J3���H����H�E�ǀ���H�E�ǀ����UH��H��@H�}�H�uЉU�H�M�D�E�H�}�u��u����H�E��}�H�M��U�H�u�H�E�A��H���t���H�E�H�E؋����t4H�}�u-H�E�H��������uH�U�H�E�H��H����E�}�t�H�E���UH��H��`H�}�H�E�H�@H�E�H�E�H�@ H����H�E�H�E�H��"H�E��E�H�E��@H����H�E�H�@H�M�H�U�H��H���H�E�H�E�H�E�H�}�u"H�E�H��0�����H��蔑�������H�E�H�PH�U��PH�E��H�5�1H���ГH�E�H�PH�U��H�E�H�H H�U�H�E�H��H��覓H�E��@(��H�E���H���W�H�E��@H�H�E�H�@PH�E�H�E��@H����H�U�H�u�H�E�A��H�����Ẽ}��u,�M�H�E�H�Y1��H��蹐H�E�H�U�H�PP�E����}�t*H�E�H�j0�����H��臐H�E��@H�E���H�E�H�@H�M�H�U�H��H���H�E��@HH�E�H��0H���H�E��2H�E�H���H�E�H�E�H����-�Ẽ}��u�E��RH�E�H�E�H�}�u�H�E�H�@H�M�H�U�H�R H��H���H�E�H���ȘH�E�H�@H�M�H�U�H��H��ЋE���UH��H�� H�}�H�}�u�����X����H�E�H�E�H���e����E��}��u2H�E�H�@�����t H�E�H�@H�U�H��H���8�E��}�t��E���UH��H�� H�}�H�E�H�@H������E��}��H�E�H��0H���͗H��tUH�E�H��0H��踗H�E�H�E�H���ݗH�E�@@�P�H�E�P@H�E�H�U�H�R`H���H��H����H�E��E�}��uH�E�H�@H�d/����H��虎�H�E�H�@H�e/���H���{����UH��H��0H�}�H�}�u��p���H�E�H�E�H�����H�E�H�E�H�@�����t<H�}�u5H�E�H�@H�������u H�E�H�@H�U�H��H�����E�}�t�H�E���UH��H��PH�}�H�u��U�H�M�D�E�H�E�H�@`H�E�H�Eȋ@x����U��E�Ѓ���H�E�H���H�E�H���H�����H�E�H�@H�M�H�U�H���H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E�H�u,�����H�����H�E�H�PH�U��bH�EȋPDH�E��H���&�H�E�H�5�-H���F�H�E�H�PH�U���U�H�M�H�E�H��H���!��U�H�M�H�E�H��H����H�E��@xH�Eȋ@x���H�E�H���H�E�H���H�E�A��H�����E�}��u �M�H�E�H�5-��H���5��E���}�tVH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E��@xH�E�H�-�����H���֋�=H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�Eȋ@0H�U�H���H���o�H�E��@xH�Eȋ@x����H�E�H���H�E�H���H�M�H�U�H�E�VjI��A�H�5t2H����H���E�}��u�E���}�tH�E��@x�E��pH�E��<cu*H�E�H�@H�M�H�U�H��H���H�E��@x��;H�E�H�@H�M�H�U�H��H���H�E��@xH�E�H��+���H��蔊��UH��H��0H�}�H�u�U�H�M�D�E�H�}�u�����i���H�E�}�H�MЋU�H�u�H�E�A��H���V����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H�����E��}�t��E���UH��H��`H�}�H�u��U�H�M�D�E�D�M�H�E�H�@`H�E�H�Eȋ�����7�U��E��=vH�E�H�3+����H��蚉��U��E�Ѓ�)��H�E�H���H�E�H���H������H�E�H�H�E�H�E�H�PH�U��bH�EȋPDH�E��H���d�H�E�H�5�*H��脋H�E�H�PH�U���U�H�M�H�E�H��H���_��U�H�E��H�����UH�E��H�����UH�E��H�����U H�E��H�����U�H�M�H�E�H��H����H�E�ǀ�H�Eȋ������H�E�H���H�E�H���H�E�A��H�����E�}��u �M�H�E�H��)��H���)��E��C�}�t+H�E�ǀ��M�H�E�H��)��H����H�Eȋ@0H�U�H�����H��載H�E�ǀ�H�Eȋ������H�E�H���H�E�H���H�M�H�U�H�E�VjI��A�H�5�.H���4�H���E�}��u�E���}�t(H�E�ǀ�H�E�H�@)��H���5��UH�E���E�H�E�H�@H�M�H�U�H��H���H�E�ǀ��}�cu��H�E�H�)���H���ކ��UH��H��@H�}�H�u�U�H�M�D�E�D�M�H�}�u����������H�E�D�M�D�E�H�MЋU�H�u�H�E�H���} W�}W�}WH���t���H�� �E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H�����E��}�t��E���UH��H��@H�}؉uԉUЉM�D�E�H�E�H�@`H�E��E��H�E؋������H�E�Hǀ�'H�E�H���H���+��H�E�H�H�E�H�E�H�PH�U��bH�E؋PDH�E��H���ȇH�E�
H�5�'H����H�E�H�PH�U���U�H�E��H��萇�U�H�E��H�����U�H�E��H���n��U�H�E��H���]�H�E�ǀ�H�E؋������H�E�H���H�E�H���H�E�A��H�����E�}��u�M�H�E�H�1'��H��蹄�E��b�}�t(H�E�ǀ��M�H�E�H�0'��H��舄�4H�E؋@0H�U�H�����H���R��E�H�E�ǀ��E���UH��H��0H�}�u�U�M�D�E�H�}�u�����g��U��H�E�}؋M܋U�u�H�E�A��H�������E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H�ĀH�}��u�H�U�H�M�D�E�H�E�H�@`H�E�H�}�tH�E�H�������H�E�H�}�tH�E�H���~���� H�E�H�E��������H�U�H�E�H�H�PH�E�H���H�E�H��H���{��H�E�H�@H�M�H�U�H���H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E�H��%�����H��豂�IH�E�H�PH�U��bH�E��PDH�EЉ�H��轄H�EкH�5h%H���݄H�E�H�PH�U���}���H�E�H�PH�UЉʈH�}�tH�E��H�.%H�U�H�M�H��H��萄H�E��H�EЉ�H���D�H�}�tH�E�H�U�H�M�H��H�������VH�E��H���4���E��6�E�H��D���H�MЋU��Hc�Hщ�H�5�$H�ϸ�����E��}�~�H�U�H�E�H�H�EЋU�H�EЉ�H��讃H�E�ǀ�H�E�������
H�E�H���H�E�H���H�E�A��H������E܃}��u �M�H�E�H�*$��H���
��E���}�tYH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��M�H�E�H��#��H��言�@H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E��@0H�U�H����H���A�H�E�ǀ�H�E��������H�E�H��H�E�H��H�M�H�U�H�E�VjI��A�H�5F'H��蹧H���E܃}��u�E���}�t(H�E�ǀ��M�H�E�H�"#��H����UH�E���E�H�E�H�@H�M�H�U�H��H���H�E�ǀ��}�cu��H�E�H��"���H���c��UH��H��0H�}�u�H�U�H�M�D�E�H�}�u�����i��d��H�E�}�H�M�H�U؋u�H�E�A��H���M����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��`H�}�H�u�H�U�H�M�L�E�H�E�H�@`H�E�H�Eȋ����,H�E�H�P
H�E�H�� H�E�H0��H������H�}�tH�E�H�� H�PH�E�H�� H�E�H�@H�M�H�U�H�� H��H���H��H�E�H��H�E�H��H�E�H�E�H��H��uH�E�H��!�����H����}�{H�E�H�PH�U��bH�EȋPDH�E��H����H�U�H�M�H�E�H��H����H�E�H�PH�U��H�}�tH�E���H�E��H���H�E�ǀH�Eȋ����
H�E�H�� H�E�H��H�}�H�M�H�E�I��H������E�}��u �M�H�E�H�� ��H���}�E���}�tYH�E�H�@H�M�H�U�H��H��H���H�E�HǀH�E�ǀ�M�H�E�H�� ��H���|�@H�E�H�@H�M�H�U�H��H��H���H�E�HǀH�Eȋ@0H�U�H��(��H���=~H�E�ǀH�Eȋ�����H�E�H��0H�E�H��(H�M�H�U�H�E�VjI��A�H�5E#H��赣H���E�}��u�E���}�t(H�E�ǀ�M�H�E�H����H���{�UH�E���E�H�E�H�@H�M�H�U�H��H���H�E�ǀ�}�cu��H�E�H�����H���_{��UH��H��0H�}�H�u�U�H�M�D�E�H�}�u�����i��`��H�E�}؋U�H�M�H�u�H�E�I��H���<����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H�����E��}�t��E���UH��H��H�}��u�H�}�tH�E�H�@`�U��H����	���UH��H��@H�}ȉu�H�Eȋ�8����H�E�H�@`H�H����H�E�H�E�Hǀ@H�E�HǀH�eH�E�H���H�E�H�E�H�@��E�}�^t
�}�_�/H�E�H�@H��H����z��H�Eȋ@09��
�}�^tH�E�H�@H��H���z����H�E�}�t+�}�_u�}�t�E�H�H9E�t�}�^���}���H�E�H�@ ��H�E�H�@()‰ЉE�H�E�H��@H�E�H�@ H�H�P�H�E�H��@H�E�H��H�E�H�H�H�E�H��HH�E�H�@`H�@H�U�H�R`H��H�U�H�RH��H���H�E�H����H�E�H�@`H�@H�U�H�R`H��H�U�H��H���H�E�H�E�H�}������H�E�ǀ8H�EȋP\H�E�H��H)�H�EȉP\H�EȋPLH�E�H��H)�H�EȉPLH�E�H��@H��t1H�E�H��@��H�Eȹ�H���4�E؃}��u�E��H�E�ǀ8H�E�H��H��UH��H�� H�}�u�H�}�u�����]��<��H�E�U�H�E��H���V����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H�����E��}�t��E���UH��H�}�H�}�u��H�E��@$]�UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�}��6H�E�H�@`H�E�H�E�H�@(H����H�E�H�@(H���H��H�E�H�}�t~H�E�H�@H�U�H�M�H��H��H���H��H�E�H�H�E�H�H��uH�E�H�������H����v�H�E�H�H(H�E�H�H�U�H��H�����H�E�H�H�E�H��H�}�t1H�E�H�U�H��$H�}�tH�E�H�H�}�tH�E�H�H�}�tH�E�H�H�}�tH�E�H�H�}�tH�E�H�H�}tH�EH����UH��H��0H�}�u��H�M؈E�H�}�t
H�E�PLH�E؉H�E苀P�����}�u0H�E�PX�E��=�wH�E�PX�E��H�E�PX��&�}�uH�E�@X��u
��H�E�@XE�H�E��@XH�E�ƀT]H�E�@DH�U�H��U��H���?wH�E�H��Y�E��H���'wH�E�ǀPH�E�H��TH�E�H�@`A���	H����E��}��u!H�E�H�@`�M�H����H����t�E��T�}�t(H�E�U�PXH�E�H�@`H�������H���t�&H�E�PL�E��H�E�PLH�E�ǀP���UH��H��@H�}�H�uЉЈE�H�}�u	H�����u����H�E��U�H�EЉ�H�M�H�E�H�������E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H������E��}�t��}�t�E�H���E���UH��H��0H�}�H�u��H�MЈE�H�}�u�����f�����H�E��U�H�E��H�M�H�E�H���y����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H���I��E��}�t��E���UH��H�� H�}�u�H�E苀���u�E��H�E�PVH�E�ǀ�H�E苀���u%�}�uH�E����H���d����E��}��u�E��H�E�ǀ����UH��H�� H�}�u�H�}�u�����]�����H�E�U�H�E��H���E����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H���N��E��}�t��E���UH��H��H�}��u�U�H�E���H��������UH��H��`H�}��u�H�U�H�M�H�E�H�@`H�E��E�H�E���`��t)H�E��@L��H�E��@H���‰��Љ�H�E�H�H9�ssH�E��@HH�U��H�E��@L)‰ЉE�}�w�E�H�E�ǀ`�u�H�E���H���g����Eԃ}�t
�E�H���H�E�ǀ`H�E�H����Eԃ}��}�y%�}��t�M�H�E�H�c��H���/qH��H�E�H�H����yH�E���H�E�H�E�H�E�H����yH�E�H�E�H�@H��H���q��H�E���d�}�t=H�E�H�@�<_u.H�E��P0H�E���d9�uH�E�H�@H��H���vq9E�tp�}�u$H�E�H�@�<^uH�E��P0H�E���d9�tF�}��#H�E�H�@�<_�H�E��P0H�E���d9���H�E��@V<��H�E��‹E�)‰ЉE��E�H�E�H�@ ��H�E�H�@()‰�9E�| H�E�H�@ ��H�E�H�@()‰ЉE��E��E�H�H�U�H�JH�U�H�R(H�4�U�Hc�H�U�H�H��H�����H�E�H�P(�E�H�H�H�E�H�P(�E�E��}�t@H�E�H���\xH�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}�t
H�E�9E������}�uHH�E��@U��uH�E��@T��t��T�}��t��G�M�H�E�H���H����nH��+H�E��P\�E�)�H�E��P\H�E��PL�E�)�H�E��PL�E�H���UH��H��@H�}؉u�H�U�H�M�H�}�uH������H�Eغ�H���j��H�E�H�E�H;E�ve����H�E�H�E���H�Eع�H���
����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H������E��}�t�����H�E�H�M�H�Uȋu�H�E�H������E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H���z��E��}�t��E�H���UH��H��0H�}؉u�H�E�H�@`H�E�H�E�H�H���vH�E�H�}������H�E�H�@H��H���n�E�}�t4H�E�H�@�<_u%H�E؋@09E�uH�E�H�@H��H����m9E�tN�}�uH�E�H�@�<^uH�E؋@09E�t-�}�u?H�E�H�@�<_u0H�E؋@09E�u$H�E��@V<uH�E�H�P H�E�H�@(H)�H��� H�E�H���KuH�E�H�}��.������UH��H��@H�}؉u�H�U�H�M��E�H�E�H�@`H�E�H�E�H�}��vH�E��H�E؋�h����H�E�HlH�E�H�E��@@��t#H�E�H�@`H�2���H����kH��H�E��@A��t#H�E�H�@`H�+���H���kH��_H�E�H���;��E��}��}�y)�}��t#H�E�H�@`�M�H���H���lkH��H�E؋@8��u*H�E�ǀ�}��uH���������H�E�H�U�H����}�t�_��^H�E�H�PH�U�H�E؋PDH�E��H���!m�}�t�U�H�E��H���
mH�E�H���H�E؋@8��H9�vH�E؋@8��H�E�H���H�E�H���H�E؋@<��H9�vH�E؋@<��H�E�H���H�E�H�����H�E��H���lH�E�H�U�H��lH)�H��H�E�H���H�E�ǀhH�E؋�h����H�E�H���H�E�H���H�E�H��lH�M�H�E�I��H��蛶�E��}��u�M�H�E�H����H����iH��|�}�t*H�E�ǀh�M�H�E�H�o��H���iH��LH�E؋P8H�E�H���)�H�E؉P8H�E�H���H�E�H�H�E�H�E�ǀhH�E��H������UH��H��0H�}�u�H�U�H�M�H�}�u	H�����j��M���H�E�H�M�H�U؋u�H�E�H�����H�E�H�}��u6H�E�H�@`�����t$H�E�H�@`H�U�H��H����H�H�E�H�}�t�H�E���UH��H��0H�}�H�E�H�@`H�E��E�`H�E؋PDH�E�H����H���hjH�u�H�E�A���H�����E�}��u�M�H�E�H�0��H���?h�E��-�}�tH�E�H�(�����H���h�
H�E��@A���UH��H�� H�}�H�}�u�����X�����H�E�H�E�H���"����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H�����E��}�t��E���UH��SH��(H�}�H�}�u
�����H�E�H�@`H�E�H�E�H�H���pH�E��TH�E�H�@�<^tH�E�H�@�<_u&H�E؋X0H�E�H�@H��H���g9�u��"H�E�H����oH�E�H�}�u�H�E��@U��H��([]�UH��H�� H�}�H�E�H�@`H�E�H�E苀���uH�E�ǀ�H�E��@U��uHH�E�H���:��E�}��u�E��B�}�y�H�E�ǀ��M�H�E�H����H���bf��H�E�ǀ����UH��H�� H�}�H�}�u�����X��\���H�E�H�E�H���.����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H������E��}�t��E���UH��H�� H�}�H�E�H�@`H�E��E�H�E��@@��tH�E�ǀ���H�E��@A��u;H�E�H�������E��}�t&�}��u�E���M�H�E�H����H���LeH�E苀���u9H�E�ƀ�aH�E�@DH�U�H�”H����H���fH�E�ǀ�H�E苀���u~H�E�H���H�E�A���H�����E��}��u �M�H�E�H�.��H���d�E����}�t�M�H�E�H�0��H���d�H�E�ǀ�H�E苀���u2�H�E�H����E�H�E��@T��u�}�uH�E����uЃ}��tAH�E��@@H�E�H�@pH��tH�E�H�@pH�U�H�JhH�u�H�U�H�}��H�E�ǀ���}�NE���UH��H�� H�}�H�}�u�����X���H�E�H�E�H�������E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H���[��E��}�t��E���UH��H�� H�}�H�E�H�@`H�E�H�E�H��蟹����uH�E�H�
����H���-c�jH�E苀���uH�E�ǀ�H�E��@T��u/H�E�H��蕦�E�H�E��@T��u�}�����}�y�E��H�E�ǀ����UH��H�� H�}�H�}�u�����X��Ѻ��H�E�H�E�H�������E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H���9��E��}�t��E���UH��H��0H�}�H�E�H�@`H�E�H�}�uH�
{	��	H�5>	H�=A	�#���H�E؋����uH�E�ǀ�H�E��@@��u+H�E�����uH�E�H������E�}��u�E��H�E�ǀ�H�E�H�@(H��tH�E�H�@H�M�H�U�H�R(H��H���H�E؋P0H�E��H���Vc�H�E�H�@H�M�H�U�H��H���H�u�H�M�H�U�H�E�H��jI��A��^H���<�H����y�H�u�H�M�H�U�H�E�H��jI��A��_H����H����y�H�E�H�@H��tH�E�H�@H�M�H�U�H�RH��H���H�E�H���iH�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��H��tH�E�H�@H�M�H�U�H��H��H���H�E�H�@H�M�H�U�H��H��и��UH��H�� H�}�H�}�u�����X�����H�E�H�E�H������E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H�����E��}�t��E���UH��H��@H�}�H�u�H�U�H�}�u
���H�}�tH�E؋@H��H�E�H�H�}���H�E�H�E�H�@`H�H����gH�E��eH�E�H�@��E�}�^t�}�_u;H�E�H�@H��H����_��H�E؋@09�uH�E�H�P H�E�H�@(H)�H��HE�H�E�H���gH�E�H�}�u�H�E�H�U�H�H�E؋@L����UH��H�}�H�u�H�}�u�� H�}�tH�E��@4��H�E�H�H�E��@8��]�UH��H�}�H�u�H�U�H�M�L�E�L�Mи]�UH��H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�U�H�H�E�H�U�H��]�UH��H�� H�}�u�U�H�E�H�E�H�E�H�@H�U��M��M��H��H�����UH��H�� H�}�H�u�H�E�H�E�H�E�H�@H�M�H�U�H��H��А��UH��H��0H�}�u�H�U�H�E�pH����fH�E�H�}�uH�E�H�������H���_]�H�E�H�U�H�PPH�E�H�1���H�P@H�E�H�[���H�PH�}�t"H�E�pH�������H���c����E��H�E�pH�5�H���v����E��}�tH�E�H�@H�M�H�U�H��H��и����H�E�H�U�H����UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H��E�H�E�H�U�H�H�Eȉ�H�E��PH�E�H�U�H�P�U�H�E��P H�E��H���x����E�}�u)H�E��@ ��t�U�H�E��@ )‰Љ�H�E�H���H�E�H�����H���[��UH��H��`H�}�H�u�H�U�H�M�L�E�L�M�H�EH�H�E�H�E����E�H�}�uH�E�H�}����H���[�-�}��E�H�E�9E�~H�E��E�H�E�H�U�H�H�E���H�E�PH�E�H�@H�MȋU�Hc�H��H���H��H�E�H�PH�E�H�@H�E��U�H�E�P H�E�H�@H��uH�E�H������H���[�H�E�H���(����E�}�uH�E�@ ��tD�B�}��7H�E�H�@H�M�H�U�H��H���H�E�H�����H���Z�*H�E�9E�|5H�E�H�@H�M�H�U�H��H���H�E�H�����H���aZ���U�H�E�@ )‰Љ�H�E��e�H�}�tH�E�H�@H�UȋM�Hc�H�M�H����H�E�H�@H�MȋU�Hc�H��H���H�E�H�}�u2H�E�H�@H�M�H�U�H��H���H�E�H�/�����H����Y�ZH�E�H�E�H�U�H�E�H�H�E�H�P�E�H�U�)Љ�H�E�P ����H�E�H�U�H��U�H�E�@ )‰Љ�H�E�H����UH��H��0H�}�u�H�U�H�E�H�H�E�H�}�t8�}�tH�E�H���M����H�E�H���?���H�E�H�@H�M�H�U�H��H���H�E�H����UH��H�}�H�E��@p��t	H��"�H�2�"]�UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�@H�U�H�ֿ���H�E�H�}�u
������H�E��U�H�E�H�P8H�E�H�PH�E�H�@H�U�H�zH�M�H�U�D�EH������tH�E�H�@H�M�H�U�H��H��и�����$H�EH�U�H�H�E��H�E�����UH��H��0H�}�H�u�H�U�H�M�H�E�H�H�E�H�E��H�E�H�@H�M�H�yH�u�H�M�I��H���u���UH��H�� H�}�H�u�H�E�H�E�H�}�tEH�E�H�H��t9H�E�H�H��H��蓲��H�E�H�@H�M�H�U�H�H��H���H�E�H����UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�L�M�L�E�H�M�H�U�H�u�H�E�u�}WH���/���H���E�}�uPH�EH�H�E�H�E��4H�EЋ@Hc�H�E�H�E�H�@H�M�H�yH�M�I��H���p�H�m�H�}�uŋE���UH��H��"]�UH��H��`H�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H����H�E�H�H�E�H�E�H�E�H���#W��H�E�H�E�H�}�uH�E��H�5G�H���0�����t
������H�E�H�E�H����V��H�E�H�E�H�E�H�E�H�E�HE�H�E�H���V��H�E�H�E�H�E�H�E�H�}�H�M�H�U�H�u�H�E�H��jjjjjjjjjjjA�I��H�����H��`��t������H�U�H�E�H����UH��H��0H�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H���H�E�H�H�M�H�U�H�u�H�E�H�����E��}�t������H�U�H�E�H����UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H�m�H�}�H�M�H�U�H�u�H�E�I��H������UH��H��H�}�H�u�H�U��M�L��x���L��p���H��p���H�H�E�H�E�H�����E��F�E�H�H��H��H��x���H�H�P�E�H�H��H��H��x���H�H�H�E�H��H���(����E��E�;E�|�H�M�H�E��H��H���T���H�}�H�M�H�U�H�u�H�E�I��I�ȹH���-��E�}�t���������UH��H�� H�}�H�u�H�E�H�H�E�H�E�H���ߨ��H�E�H����UH��H�ĀH�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H���bH�E�H�H�E�H�E�H�E�H����S��H�E�H�E�H�}�uH�E��H�5�H�������t
�������H�E�H�E�H���S��H�E�H�E�H�E�H�E�H�E�HE�H�E�H���S��H�E�H�E�H�E�H�E�H�E�HE�H�E�H���YS��H�E�H�E�H�E�H�E�H�E�HE�H�E�H���2S��H�E�H�E�H�E�H�E�L�E�H�}�H�M�H�U�H�u�H�E�H��jj�u��u��u�M��I��H����H��0H�U�H�E�H����UH��H��0H�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H����H�E�H�H�M�H�U�H�u�H�E�H������E��}�t������H�U�H�E�H����UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H�m�H�}�(tH�E�H�e���H���#Q�H�M�H�U�H�u�H�E�H������UH��H��H�}�H�u�H�U��M�L��x���L��p���H��p���H�H�E�H�E��(H��� ZH��H�E�H�H�E�H�H��u
�������H�E�H�(H�E�H���/����E��F�E�H�H��H��H��x���H�H�P�E�H�H��H��H��x���H�H�H�E�H��H���d����E��E�;E�|�H�M�H�E��H��H��萩��H�E�H�H�u�H�E�H�ѺH���?���t"H�E�H�@H�M�H�U�H�H��H��и��������UH��H�� H�}�H�u�H�E�H�H�E�H�E�H���=���H�E�H����UH��H�p{"]�UH��H�}��u�}�t�}�t#�-H�E������tH�E�H����H�E�H���]�UH��H��0H�}�H�u��E��E��E��E��E�s�E�s�E�h�E�-�E�r�E�s�E�a�E��E��E��E��E�s�E�s�E�h�E�-�E�d�E�s�E�sH�}�
w��KH�M�H�E��H��H��胥����u��(H�M�H�E�H��H���`�����u�����UH��H�� H�}�H�u�H�U�H�E������tXH�}�tH�E������H�E�H�H�}�t*H�E������H�E�H���H��H��������H�E�H�E�H����H�}�tH�E�H����UH��H���H��8���H��0���H��(�����$���D��D�ʈ� ����Ј�����E�H�E ����:H�E H�@H�E H�@H�E Hǀ��p���H��H�E H�PP����H��H�E H�PX��H��H�E H�P`���H��H�E H�Ph�С��H��H�E H�PpH�E H���H���i���H�E H�@X��$���������H��艠��H�E H�xPH�E H�PXH�E H�@`H��(���H��0���I��H��訤��H�E H�@`H��訡�����P��H����Hc�H�E H�P8H�E H�@`H���|�������tH�E H�@8H�P�H�E H�P8H��8���H�@H��8���H�U H�R8H��H���H��H�E H�PH�E H�@H��u#H��8���H�i������H���L�E��H�E H�@�� ����H�E H�@8�P�H�E H�@H����H���MH�E H�@`H��� ������t!H�E H�@H�PH�E H�@`H��H���̤���.H�E H�@H���H�E H�@H�PH�E H�@`H��H��蜤��H�E �H�E ���unH�E H�P8H�E H�pH��8���A��H���ח�E��}��u�E����}�t#�M�H��8���H�m���H���J�E��qH�E �H�E ���uuH��8����������tVH�E H���H��8���H��H����p�E��}��u�E��l�}��E��E��H��8����������H�E �H�E ����E
H�E H���H�E H�H@H�E H�P�����H��8���WjA�A�H���nH���E��}��u�E����}�t#H��8���H�y������H����I�E��ZH�E H�@H�PH�E H�PxH�E H�@xH���J��H��8������H�E H�@xH�PH�E H�PxH��8���H�@H��8���H��8��������H��H���H��H��8���H���H��8���H���H��u#H��8���H��������H���'I�E��H��8��������H�E H�HxH��8���H���H��H���ՠ��H�E H�PxH��8��������H�H�E H�PxH��@���H��蔢����tgH��8��������H��8���H���H��@���H��H��豠��H��8���H���H��@����H��H���ܡ��H��8���ǀ��H��8���ǀ�H��@���H���٠��H��8��������H��8���H���H��@���H��H���*���H��8���H���H��@����H��H���U���H��8���H���H�@H��8���H���H��8������A��H��8���H���H��8���L��Ѕ�t#H��8���H�i������H���vG�E���H�E H�@xH���=H��H�E H���H�E H�@xH�PH�E H�PxH�E H�PxH�E H���H�E H�PxH�E H���H�H�E H�PxH�E H�PhH�E H�����H�E H�����H������H�E H�@xH���G��H�E H���H�E H�@xH�PH�E H�PxH�E H�PxH�E H���H�E H�xPH�E H�PXH�E H�phH�E H�@pH��(���I��H���b���H�E H�@pH���b������P��H����Hc�H�E H���H�E H�@pH���3�������tH�E H���H�P�H�E H���H��8���H�@H��8���H�U H���H��H���H��H�E H���H�E H���H��u#H��8���H��������H���E�E��*H�E H����P�H�E H�����H���kGH�E H�@pH���y�������t$H�E H���H�PH�E H�@pH��H��耞���4H�E H���H���H�E H���H�PH�E H�@pH��H���J���H�E H�H��訝��H��8���H��XH����H��8���H��XH������P�H�E H�� ��H���FH�E H�H H�E H��H��H���Ĝ��H��8���H��XH��螙��H�P�H��8���H��XH�M H���H��H��膜���UH�E H�� �H���1FH�E H�H H�E H��H��H���M���H�E H��H�5?�H���/���H��8���H���H���	�����H�E H�� ��H����EH�E H�H H�E H��H��H�����H��8���H���H��轘��H��H��8���H���H�U H���H��H��H��裛��H��8���H��h��H�E H�� ��H���CEH�E H�H H�E H��H��H���_���H��8���H��hH��8���H��`H�M H���H��H���-���H��8���H�����H�E H�� ��H����DH�E H�H H�E H��H��H�����H��8���H���H��8���H���H�M H���H��H��跚��H��8������H�U H�� ��H���ZDH�E H�H H�E H��H��H���v���H��8��������H��8���H���H�U H���H��H��H���@����� ��� uiH�E H�� �H����CH�E H�� H���H����CH�E H�� H���H���CH�E H�H H�E H��H��H���Ι��H�}tH�E H���H�EH��H�uH��詙��H�E H�@8H�P�H�E H�@H�HH�E H�H��H���|���H�E H�����H�E H�� ��H���CH�E H�H H�E H��H��H���;���H�E H���H�E H���H�M H���H��H������H�E H���H�E H���H�M H���H��H�����H�E H�H H�E H��H��H������H��8���H���H�@ H��8���L���H�U L�R H�U H���H�M H���H��8���M��A�L��Ѕ�t#H��8���H�|������H���)@�E��H�E �@4H�E �H�E ���ukH�E H�p4H��8���A���H��荌�E��}��u�E���}�t#�M�H��8���H�#���H���?�E��'H�E �H�E ����
H�E H���H�E H�HHH�E H�PH��8���VjA�A��H���cH���E��}��u�E���}�t#�M�H��8���H�����H���?�E��H��8����@h����H��8����PhH��8���H�@H��8���H�U H�RH��H���H��8���H���H����H��8���H�@H��8���H�ֿ��H��H��8���H���H��8���H���H��u#H��8���H�������H���a>�E���H�E H�H H��8���H����H��H������H��8���ǀ�H��8���H��pH�@0H��t/H��8���H��pH�@0H��8���H��xH��8���H��H���H��8���H��pH�@ H���JH�E�H�E��E��E�H�E�H�}�u5H��8���H�@H��8���H��8���H��p�R��Hc�H��H���H�E�H�}��
��H��@���H�����H�E H���H�E H���H��@���H��H���>���H�E H�H H��@����H��H������H�}�tH�U�H�M�H��@���H��H������JH��@����H�5��H�����H��8��������H��8���H���H��@���H��H��貔��H�U�H�E�H�H��@����H��H���ߕ��H�E�H��8���H��p�@H�H9E������H�}�u�E������
H�E�H�}�u5H��8���H�@H��8���H��8���H��p�R��Hc�H��H���H�E�H�}��
��H��@���H���w���H�E H���H�E H���H��@���H��H���ϓ��H�E H�H H��@����H��H��谓��H�}�tH�U�H�M�H��@���H��H��菓���JH��@����H�5-�H���r���H��8��������H��8���H���H��@���H��H���C���H�U�H�E�H�H��@����H��H���p���H�E�H��8���H��p�@H�H9E������H�}�u*H��8���H�@H��8���H�U�H��H����E������+H��8���H��pH�@ H��8���L��xH��8���H��pL�M�L�E�H�M�H�U�H��8���ARj��H����tIH��8���H�@H��8���H�U�H��H���H��8���H�@H��8���H�U�H��H����E��������E���tCH��8���H��p�@Hc�H�E�H���E���H��8���H�@H��8���H�U�H��H��ЋE���tCH��8���H��p�@Hc�H�E�H�����H��8���H�@H��8���H�U�H��H���H��8���H��H�@0H��t/H��8���H��H�@0H��8���H��H��8���H��H���H��8���H��H�@ H���JH�E�H�E��E��E�H�E�H�}�u5H��8���H�@H��8���H��8���H���R��Hc�H��H���H�E�H�}��
��H��@���H���;���H�E H���H�E H���H��@���H��H��蓐��H�E H�H H��@����H��H���t���H�}�tH�U�H�M�H��@���H��H���S����JH��@����H�5��H���6���H��8��������H��8���H���H��@���H��H������H�U�H�E�H�H��@����H��H���4���H�E�H��8���H���@H�H9E������H�}�u�E������
	H�E�H�}�u5H��8���H�@H��8���H��8���H���R��Hc�H��H���H�E�H�}��
��H��@���H���̏��H�E H���H�E H���H��@���H��H���$���H�E H�H H��@����H��H������H�}�tH�U�H�M�H��@���H��H������JH��@����H�5��H���ǎ��H��8��������H��8���H���H��@���H��H��蘎��H�U�H�E�H�H��@����H��H���ŏ��H�E�H��8���H���@H�H9E������H�}�u*H��8���H�@H��8���H�U�H��H����E������H��8���H��H�@ H��8���L��H��8���H��L�M�L�E�H�M�H�U�H��8���ARj��H����tIH��8���H�@H��8���H�U�H��H���H��8���H�@H��8���H�U�H��H����E���������E���tCH��8���H���@Hc�H�EоH��蚋��H��8���H�@H��8���H�U�H��H��ЋE���tCH��8���H���@Hc�H�EȾH���P���H��8���H�@H��8���H�U�H��H���H��8���H���H�@ H��t/H��8���H���H�@ H��8���H���H��8���H��H���H��8���H���H�@H���H�E�Dž|���H�E�H�}�u5H��8���H�@H��8���H��8���H����R��Hc�H��H���H�E�H�}��
��H��@���H��蜌��H�E H���H�E H���H��@���H��H����H�E H�H H��@����H��H���Ջ��H�}�tH�U�H�M�H��@���H��H��贋���JH��@����H�5X�H��藋��H��8��������H��8���H���H��@���H��H���h���H�U�H�E�H�H��@����H��H��蕌��H�E�H��8���H����@H�H9E������H�}�u�E������nH��8���H���H�@H��8���H���H��|���H�u�H��8����Ћ�|�����tCH��8���H����@Hc�H�E��H�����H��8���H�@H��8���H�U�H��H���H��8���H��H�@ H��t/H��8���H��H�@ H��8���H�� H��8���H��H���H��8���H��H�@H���H�E�Džx���H�E�H�}�u5H��8���H�@H��8���H��8���H���R��Hc�H��H���H�E�H�}��
��H��@���H���9���H�E H���H�E H���H��@���H��H��葉��H�E H�H H��@����H��H���r���H�}�tH�U�H�M�H��@���H��H���Q����JH��@����H�5��H���4���H��8��������H��8���H���H��@���H��H������H�U�H�E�H�H��@����H��H���2���H�E�H��8���H���@H�H9E������H�}�u�E������H��8���H��H�@H��8���H�� H��x���H�u�H��8����Ћ�x�����tCH��8���H���@Hc�H�E��H��芆��H��8���H�@H��8���H�U�H��H���H��8���H���H��tHH��8���H���H�@(H��t1H��8���H���H�@(H��8���H� H��8����H���H��8���H���H��tXH��8���H���H�@H��tAH��8���H���H�@H��8���H� H��8����H��Ѕ�t�E�������H��8���H��(H��tHH��8���H��(H�@(H��t1H��8���H��(H�@(H��8���H��0H��8����H���H��8���H��(H��tUH��8���H��(H�@H��t>H��8���H��(H�@H��8���H��0H��8����H��Ѕ�t	�E�������H�E H�@XH���"���H�E H�@XH�E H�@`H������H�E H�@`H�E H�@hH�����H�E H�@hH�E H�@pH���Έ��H�E H�@pH�E H�@PH���r���H�E H�@PH�E H�@H��t.H��8���H�@H��8���H�U H�RH��H���H�E H�@H�E H�@H��t.H��8���H�@H��8���H�U H�RH��H���H�E H�@H�E H���H��t4H��8���H�@H��8���H�U H���H��H���H�E Hǀ�H�E ��E���UH��H�� H�}�H�u�H�E���ug讁��H��H�E�H��蛁��H��H�E�H��H�E�H���H�����H�E�H��H�¾�H�=����H�E��H�E�H�HH�E�H��H�E�H��H�E�H��QjjA�A���H���}��H�� �E��}��u�E��QH�E�H��H����H�E�HǀH�E�H��H���ц��H�E�HǀH�E���E���UH��H�� H�}�H�u�H�E���ug脀��H��H�E�H���q���H��H�E�H��H�E�H���H������H�E�H��H�¾H�=a�輀��H�E��H�E�H�HH�E�H��H�E�H��H�E�H��QjjA�A��H���S��H�� �E��}��u�E��QH�E��H�E�H��H��迅��H�E�HǀH�E�H��H��蝅��H�E�Hǀ�E���UH��H��0H�}�H�u��E�H�EЋ�����O��H��H�E�H���<��H��H�E�H��H�E�ƀ "H�E�H H���H���J,H�E�H H���H���/,H�E�H H��	�H���,H�E�Hǀ8
H�E��H�EЋ��unH�E�H��8H�E�H�� H�E�A��H���v�E��}��u�E��C�}�t �M�H�E�H�����H���)�E���H�E��H�EЋ����H�E�H�pH�E�H��@H�E�H��0H�E�VjA�A��H���MH���E��}��u�E���}�t �M�H�E�H�2���H���)�E��:H�E��H�EЋ��� H�E�H��0H��H�E�H�E�H���)��H�E�H�E�H�E�H��H�E�H�E��H����}��H�E�HE�H�E�H���{)��H�E�H�E�H�E�H��H�E�H�E��H���}��H�E�L�@H�E�H��@H�x�H�E�H��0H�HH�E�A��H�E�H��H�E�H��H�E�H��APWQA�!A� D��H���'��H�� �E��}��u�E��sH�E�H�@H�M�H�U�H��0H��H�����H�E��H�E�H��H���q���H�E�HǀH�E�H��H���O���H�E�Hǀ�E���UH��H�� H�}�H�E�H�}�tH�E�H�H��u0��LH�E�H�H�H���[|��H��H�E�H�H��H�E�H�E�H�E�H�H��tH�E�H�H�H��u�H�E�H����UH��H��0H�}�H�u�H�U�H�E��H�E��H����(H�E�H�}�tH�E�H�H��uX��tH�E�H�H�H����{���E��E�Hc�H�E�H�H�H�E�H��H���t~���E�H�HE�H�E�H�PH�U��,H�E�H�E�H�H��tH�E�H�H�H��u�H�E�H����UH��H�ĀH�}�H�E�>H�E�H�E���H����VH�E�H�@XH��tH�E�H�@XH���{���H�=R"�n���H�E�H�E�H�@`H��tH�E�H�@`H����z���
�a}��H���>���H�E�H�E�H���H��tH�E�H���H���z���
���H������H�E�H�E�H��8H��tH�E�H��8H���|z���
�u��H������H�E�H�E�H���H��tH�E�H���H���Fz���
�%H�����H�E�H�E�H��@H��tH�E�H��@H���z���
��$H���f���H�E�H�E�H���H��tH�E�H���H����y���H�E�H�����H���)���H�E�H�E�H��HH��tH�E�H��HH���y���H�E�H���z��H�����H�E�H�E�H���H��tH�E�H���H���`y���
����H�E�H�E�H��PH��tH�E�H��PH���-y���
����H�E�H�U�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�HE�H�E�H�@H�M�H�U�H��H���H�E�H�E�H�E�H�}�uH�E�H�������H���}#��H�E�H�PH�U��H�E�H���x��H�E�H�E�H�@XH��t>H�E؉�H�E��H���%H�E�H�E�H�HXH�U�H�E�H��H���z��H�E�HE��H�M�H�E�H�O"H��H�����HE�H�E�H�@`H��t>H�E��H�E��H���$H�E�H�E�H�H`H�U�H�E�H��H���z��H�E�HE���0z��H��H�M�H�E�H��H���{���HE�H�E�H���H��tAH�EЉ�H�E��H���D$H�E�H�E�H���H�U�H�E�H��H���z��H�E�HE���@|��H��H�M�H�E�H��H������HE�H�E�H��8H��tAH�Eȉ�H�E��H����#H�E�H�E�H��8H�U�H�E�H��H���y��H�E�HE����{��H��H�M�H�E�H��H�����HE�H�E�H���H��tAH�E���H�E��H���d#H�E�H�E�H���H�U�H�E�H��H���?y��H�E�HE���=!H��H�M�H�E�H��H���+���HE�H�E�H��@H��tAH�E���H�E��H����"H�E�H�E�H��@H�U�H�E�H��H����x��H�E�HE���� H��H�M�H�E�H��H�����HE�H�E�H���H��tAH�E���H�E��H���"H�E�H�E�H���H�U�H�E�H��H���_x��H�E�HE��&H�E�H���d��H��H�M�H�E�H��H���D���HE�H�E�H��HH��tAH�E���H�E��H���
"H�E�H�E�H��HH�U�H�E�H��H����w��H�E�HE��&H�E�H������H��H�M�H�E�H��H������HE�H�E�H���H��tAH�E���H�E��H���!H�E�H�E�H���H�U�H�E�H��H���qw��H�E�HE��H�M�H�E�H��H���`���HE�H�E�H��PH��tAH�E���H�E��H���)!H�E�H�E�H��PH�U�H�E�H��H���w��H�E�HE��H�M�H�E�H��H����HE�H�E�H�PH�U��H�E�H��� H�E�ǀH��<H�E�H��P�H�E�H�E�H��X�H�E�H�E�HǀP�H�E�HǀX�H�U�H�u�H�E�A��H���k�E��}��u&H�E�H�U�H��P�H�E�H�U�H��X��E���}�t@H�E�H�@H�M�H�U�H��H���H�E�ǀH��M�H�E�H�����H����`H�E�H��`H��tH�E�H�@H�M�H�U�H��`H��H���H�E�H�U�H��`H�E�H�U�H��hH�E�ǀH����UH��H��0H�}�H�u�H�U�H�M�H�E�H;E�s
���H�U�H�M�H�E�H��H���iq����u%H�E�H;E�tH�U�H�E�H��<,u	H�E��H�E�H�E��PH�E�H�U�H�M�H�E�H��H���q����u0H�E�H+E�H��H�E�H�H9E�tH�U�H�E�H��<,uH�E��=H�E��,H���Er��H�E�H�}�tH�E�H+E�H��H�E�H)�H9E��x������UH��H�� H�}�H�u�H�U��GH�E�H�H�H���q��H9E�u*H�E�H�H�H�U�H�M�H��H���\p����u	H�E�H��H�E�H�E�H�H��u����UH��H��PH�}�H�u�H�U�H�M��s��H�E�H�E�H�@`H����H�E�H�@`H�E���H�E�,H���Sq��H�E�H�}�t
H�E�H+E��H�E�H����p��H�E�H�M�H�U�H�u�H�E�H�����H��twH�U�H�M�H�E�H��H�����H�E�H�}�u
������@H�E���H��t
H�E�H�@0H��t2H�E���H��t
H�E�H�@ H��tH�E�H�U�H�����H�}�t
H�E�H����H�E�H�}�tH�E��������������H�E�H�H�H����o��H��H�E�H�H�H�u�H�E�H������H�E�H�}�tQH�E���H��tH�E�H�H�@0H��t5H�E���H��tH�E�H�H�@ H��tH�E�H�H�E�H�����0H�E�H�}�tH�E�H�H��tH�E�H�H�H���J����������UH��H��`H�}�H�u�H�U�H�M�L�E�H�F"H�E�H�E�H�@XH����H�E�H�@XH�E��H�E�,H���Io��H�E�H�}�t
H�E�H+E��H�E�H���n��H�E�H�M�H�U�H�u�H�E�H����H�E�H�}���H�U�H�M�H�E�H��H������H�E�H�}�u
������rH�E�H�@H��H�M�H�U�H�E�H��������uFH�E�H�U�H�PxH�E��������tH�E�H;E�uH�E����������	H�}�t
H�E�H����H�E�H�}�tH�E���������������H�E�H�H�H���m��H��H�E�H�H�H�u�H�E�H�����H�E�H�}�tlH�E�H�H�@H��H�M�H�U�H�E�H���+�����uFH�E�H�H�E�H�PxH�E��������tH�E�H;E�uH�E����������)H�E�H�E�H�H��tH�E�H�H�H���6����������UH��H��PH�}�H�u�H�U�H�M���q��H�E�H�E�H�@PH���2H�E�H�@PH�E��H�E�,H���	m��H�E�H�}�t
H�E�H+E��H�E�H���xl��H�E�H�M�H�U�H�u�H�E�H�����H��tBH�U�H�M�H�E�H��H�����H�E�H�}�u
�������H�E�H�U�H�P��H�}�t
H�E�H����H�E�H�}�tH�E�����;���������uH�E�H�H�H����k��H��H�E�H�H�H�u�H�E�H������H�E�H�}�tH�E�H�H�E�H�P��%H�E�H�E�H�H��tH�E�H�H�H��u��������UH��H��PH�}�H�u�H�U�H�M��'H�E�H�E�H�@XH���2H�E�H�@XH�E��H�E�,H���k��H�E�H�}�t
H�E�H+E��H�E�H����j��H�E�H�M�H�U�H�u�H�E�H���*���H��tBH�U�H�M�H�E�H��H������H�E�H�}�u
�������H�E�H�U�H�P(��H�}�t
H�E�H����H�E�H�}�tH�E�����;���������uH�E�H�H�H���Fj��H��H�E�H�H�H�u�H�E�H���}���H�E�H�}�tH�E�H�H�E�H�P(��%H�E�H�E�H�H��tH�E�H�H�H��u��������UH��H��PH�}�H�u�H�U�H�M�H�E�H��註��H�E�H�E�H�@`H���2H�E�H�@`H�E��H�E�,H���i��H�E�H�}�t
H�E�H+E��H�E�H���ei��H�E�H�M�H�U�H�u�H�E�H�����H��tBH�U�H�M�H�E�H��H�����H�E�H�}�u
�������H�E�H�U�H�P@��H�}�t
H�E�H����H�E�H�}�tH�E�����;���������uH�E�H�H�H���h��H��H�E�H�H�H�u�H�E�H����H�E�H�}�tH�E�H�H�E�H�P@��%H�E�H�E�H�H��tH�E�H�H�H��u��������UH��H��@H�}�H�u�H�U�H�M�L�E�H�E�H�H�E�H�E�H������H�E�H�H�E�H�H�E�H+E�H��H�E�H)�H��H9�v��.H�E�H�PH�E�H�H�E�H�H��HE�H�E�H�U�H����UH��H��H��h���H��`�����\���H��`���H��x���H��x���H��H��x���H��x���H��H��x�����\���H�}�H�M�H��`���H��x���I��H������t
��������\���H�}�H�M�H��`���H��x���I��H�������t
���������\���H�}�H�M�H��`���H��x���I��H�������t
��������\���H�}�H�M�H��`���H��x���I��H���T�����t
������o��\���H�}�H�M�H��`���H��x���I��H��������t
������:��\���H�}�H�M�H��`���H��x���I��H�������t
��������\���H�}�H�M�H��`���H��x���I��H�������t
���������\���H�}�H�M�H��`���H��x���I��H�������t
������H��x���H�PH��x��������H��h����у������	ʈ��H��x���H+�`���9�\���s
������CH�}�H�M�H�U�H�u�H��h���I��H��������t
������H�M�H�U�H��h���H��XH��h���H���,�����u)H�M�H�U�H��h���H���H��h���H��������t
������H�M�H�U�H��h���H��XH��h���H���V�����u)H�M�H�U�H��h���H���H��h���H���-�����t������^H�M�H�U�H��h���H��XH��h���H�������u)H�M�H�U�H��h���H���H��h���H���Z�����t���������UH��H��0H�}�u�H�U��E�H�E�@h����H�E�PhH�E؋����H�E�@h����H�E�Ph�}�teH�E�H�@xH�E�H���H��t:H�E�H���H�@8H��t&H�E�H���H�@8H�U�H���H�U�H��H���H�E�Hǀ�H�E��H�E�H�@xH��tH�E�H���H����H�E؋��uEH�E�H��`H�E�H��pH�E�H��hH�E�H��xH�E�Hǀ`H�E��H�E؋����H�E�H���x��E��}��uH�E�@h���H�E�Ph�E��_�}�tfH�E�H��pH�E�H��`H�E�H��xH�E�H��hH�E��H�E�@h���H�E�PhH�E�@h���H�E�Ph�������H�E��H�E؋����H�E�H�pH�E�H��hH�E�H��`H�E�VjA�A��H���1H���E��}��uH�E�@h���H�E�Ph�E��t�}���H�E�H��`H��tH�E�H�@H�M�H�U�H��`H��H���H�E�H��pH�E�H��`H�E�H��xH�E�H��hH�E��H�E�@h���H�E�PhH�E�@h���H�E�Ph�������H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��`H�E�H���H�E�H��hH�E�H���H�E�H��h��H�E�H��`H�E�H��H�������t�E�����H�E���
H�E���}�u}H�E�H�@xH��tpH�E؋��ueH�E�H�@xH�@H�U�H�JH�U�H��H��ЉE��}��uH�E�@h���H�E�Ph�E����}�tH�E�H�޶�����H����
�E�H�E�H��`H��t.H�E�H�@H�M�H�U�H��`H��H���H�E�Hǀ`H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�@h���H�E�PhH�E�@h���H�E�PhH�E���E���UH��H��`H�}��u�H�U�H�E�H���6_���E�}�	�9�E�H��H����H�H���H��H�E�H��XH�E�H��5"H�E��H�E�H��`H�E��Ya��H�E��H�E�H�H�E��c��H�E���H�E�H8H�E��c��H�E���H�E�H�H�E��b	H�E��H�E�H@H�E��F	H�E��H�E�H�H�E�H�E�H���1���H�E��mH�E�HHH�E�H�E�H������H�E��MH�E�H�H�E�H�E��5H�E�HPH�E�H�E��H�E�H�մ����H������H�E�H�@H�M��U��Hc�H��H���H�E�H�E�H�E�H�}�uH�E�H��������H���u�u�E�Hc�H�M�H�E�H��H���:`����H�E�,H����]��H�E�H�}�t
H�E�H+E��H�E�H���3]���E̋E�Hc�H�U�H�E�H��H���p�H��uVH�}�t0H�E�H���\��H�‹E�H�H)�H�E�H�HH�E�H��H���_���H�E�H;E�vH�m�H�E���H�E��H�}�t
H�E�H����H�E�H�}�tH�E����tH�}�� ���H�E����u2H�E�H�@H�M�H�U�H��H���H�E�H�������H���4�7H�E�H�H��tH�E�H�@H�M�H�U�H�H��H���H�E�H�U�H����UH��H��@H�}؉u�H�U�H�}�uH�E�H�������H�����@�}�wc�E�H��H�Գ�H�H�ȳH��H��2"H�E��P�^��H�E��E�`��H�E��:�dH�E��/H�E�H���`���H�E��H�E�H�&�����H���A�H�}�uH�E�H������H�����E��E��%�E�H��H�E�H�H�H�H��t�E��E��E�H��H�E�H�H�H��u��}�uH�E�H�������H����$H�E�H�@H�U؋M�H��H��H���H��H�E�H�H�E�H�H��uH�E�H�i������H���]���E��E��Y�E�H��H�E�H�H�H�H��t7�E�H��H�E�H�H�H�E�H�0�E��H�M���H��H�H�H����E��E�H��H�E�H�H�H��t�E�;E�r��E�;E�t@H�E�H�@H�M�H�U�H�H��H���H�E�H�H�E�H�������H�����E���UH��H�}�H�u�H�U�H�M�H�E�H�U�H�H�E���]�UH��H��H�}�H�u�H�E�H�H��tH�E�H�@H�M�H�U�H�H��H���H�E�H����UH��H��`H�����H������������H������D������L������������H�������H�����X��H��H�EH�0H����H�ѺH���W��H�����H�����H��H���nZ��������H������H����H��H���OZ��H������t"�}t�UH������H����H��H���#Z��H������H�����H��H����\��H����H���FY�����UH��H��PH�}�H�uЉU�H�M�D�E�L�M�L�M�D�E�H�M��U�H�u�H�E�u�}WH�����H��H�M�H�EкH��H���~Z�����UH��H��`H�����H������������H������D������L������������H�������H���.�V��H��H�EH�0H����H�ѺH���V��H�����H�����H��H���X��������H������H����H��H����X��H������t"�}t�UH������H����H��H���X��H������H�����H��H���O[��H����H����W�����UH��H��@H�}�H�u�U�H�M�D�E�L�M�L�M�D�E�H�MЋU�H�u�H�E�u�}WH�����H��H�M�H�E�H��H���Y�����UH��H��`H�����H������������H������D������L������������H�������H�����Y��H��H�EH�0H����H�ѺH���U��H�����H�����H��H���W��������H������H����H��H���cW��H������t"�}t�UH������H����H��H���7W��H������H�����H��H����Y��H����H���ZV�����UH��H�8,"]�UH��H�}��u�H�U�H�E�H�U�H��H�E��U��E�]�UH��H��0�}�H�u�H�U؉M�L�EЋM�H�U�H�u�E���gS��H�E�H�}�y"�wS�����u	H�������bS�����H��H�E���UH��H��0�}�H�u�H�U؉M�L�EЋM�H�U�H�u�E���T��H�E�H�}�y
�S�����H��H�E���UH��H�}�H�E��������H�E�H�������	�H�E�H�������	�H�E�H�����	�]�UH��H�}�H�E����H��H��H�E�H�����H��H	�H�E�H�����H��H	�H�E�H�����H	�H�E�H�E�H�����H��H��H�E�H�����H��H	�H�E�H�����H��H	�H�E�H�����H	�H�E�H�E�H�� HE�]�UH��H�}��u�E����H�E���E����H�E�H����E����H�E�H���H�E�H���U��]�UH��H��H�}��u�H�E�H��U��H�����H�E�H�H�PH�E�H����UH��H�� H�}�H�u�H�U�H�E��H�E���H�����H�}�t/H�E�H�H�U�H�M�H��H���0U��H�E�H�H�E�H�H�E�H����UH��H��PH�}�H�u�H�U�H�M�D�E��E��E�H�E�H�HH�u؋U����������H���H��H�E�H�H�E�H�H�E�H�}�uH�E�H�U������H�������H�E�H�E��PH�E����H�H�H���f�E�f�}�� �E��Ѓ�)Ѓ�tB��	��t���t{�������E��E�Hc�H�E�HЍ�����E�P�U�Hc�H�U�H�����U�f��	�Hc�H�E�HЉʈ�E��E�Hc�H�E�H���ʈ�y�E�P�U�Hc�H�U�H�����U�f��	�Hc�H�E�HЉʈ�E��E�Hc�H�E�H���ʈ�-�E�P�U�Hc�H�U�H�����U�	�Hc�H�E�HЉʈ��E���H�E��U�H�E�H�H9E�������E��Ѓ�)Ѓ�u5H�E�H�@H�M�H�U�H�H��H���H�E�H�Ǭ����H�������U�H�Eȉ���UH��H��PH�}�H�u�H�U�H�M�H�E�H�E�H�E�H�H�}�uH�E�H���O��H�E�H�E�H�HH�u�H�E�H��H���������H��H��H��H��H���H�E�H�E�H�E�H�}����$�E��E��E��7H�}�t"�E�H�E���‹E�H��T�H�E�H�m��
�E�H��D��E��}�~��E���E��E�������0���E��	ЈE��E�������<���E��	ЈE��E߃�?�E܃}�t�}�tZ���E���H�H�p�����E���H�H�Y����H�E�A�ȉ�H����H�Ǹ�0O����E���H�H������E���H�H������E���H�H�����H�E�A��A�ȉ�H���H�Ǹ�N����E���H�H�������E���H�H�������E���H�H�~�����E���H�H�g����H�E�H��QA��A���H����H�Ǹ�6N��H���H�E�H�}������H�E��H�E�H�U�H�H�E�H���CM����UH��H��H�}�H�u�H�E�H�@H�M�H�U�H��H��А��UH��H�}��u�]�UH��H�}�H�u�H�U�]�UH��H�}�H�E�H�H�E�H�H�E�H�P�]�UH��H�}�H�u�H�E�H�U�H�PH�E�H�H�E�H�H�E�H�PH�E�H�U�H�H�E�H�@H��tH�E�H�@H�U�H��H�E�H�U�H�P�]�UH��H�}�H�E�H�@]�UH��H�}�H�E�H�]�UH��H�}�H�E�H�@]�UH��H�}�H�E�H�@H��tH�E�H�@H�U�H�H��H�E�H�@H�U�H�H�PH�E�H�H��tH�E�H�H�U�H�RH�P�H�E�H�@H�U�H�RH��]�UH��H�� H�}�H�u�H�E�H�@H�M�H�U�H��H���H�E�H�}�tH�U�H�E��H���L��H�E���UH��H��`H�}�H�u�H�U�H�M�H�E�&H�E�H�H������H�E��E�H�E������H�E�H��H�E�H�E�H��������H�E��P@H�E�H�E�H�������H�E��PDH�E�H�E�H�������H�E��PHH�E�H�E�H�������H�E��PTH�E�H�E�H�U�H�P0H�E��@T��HE�H�E�H���P�����H�E��PLH�E�H�E�H���6�����H�E��PXH�E�H�E�H�U�H�P8H�E��@X��HE�H�E�H��������H�E��PPH�E��H�E�������zH�E��P(H�E��@L9��TH�E�H�@ H����I��H��H�E��@T��H9��/H�E��@T��H�E�H�H0H�E�H�@ H��H���tK�����H�E�H�E�H�@`H�E�����H�E��@D��t%H�E��PDH�E��@@9��E�H�E����H�E���H�����H�E�H�}�u+H�E�H�R������H�����E�H�E���H�E�H�U�H�P`H�E�H�U�H�P`H�E��@ H�E�H�@H�U�H�M؋I ����H��H���H��H�E�H�PH�E�H�@H��uCH�E�H�̥�����H����H�E�H�@H�M�H�U�H��H����E�H�E����H�E؋@ ����H�E�H�@H�5��H���!K��H�E��P@H�E؉PDH�E��@H H�E��@L H�E��@P�H�E�H����N����H�E؉P0H�E��PDH�E؉P4H�E��PDH�E؉P8H�E��PHH�E؉P<H�E�H��H�E�H�E�H�PH�U��[H�E؋PDH�Eȉ�H�����H�E؋P0H�Eȉ�H����H�E؋PHH�Eȉ�H����H�E؋PPH�Eȉ�H����H�E��H�E������H�E�H�pH�E�A���H����>�Eԃ}��u�E��w�}�t'H�E���M�H�E�H�h���H������JH�E�H�@`H��t/H�E�H�@`H��H�E�H��0H��H������H�E��@@�PH�E��P@H�E����H�E�H���Q���H�E�H�}��{���H�E��H�E�H��H�E�H�E�H�PH�U��\H�E��P@H�Eȉ�H���s��U�H�Eȉ�H���a�H�EȺH�5��H����H�EȾH�����H�E�H�pH�U�H�E�A��H���=�Eԃ}��u�E��9�}�t$H�E���M�H�E�H�i���H�����H�E�����UH��H��PH�}�H�u�H�U�H�M��E�H�E�(H�E�H�@PH�E�H�E������H�E�H��H�E�H�E�H�����H�E��P8H�E�H�E�H�����H�E��P<H�E�H�E�H������H�E��P@H�E�H�E�H������H�E��PHH�E�H�E�H�U�H�P0H�E��@H��HE�H�E�H�����H�E��PDH�E��H�E�H�@@H����H�E������H�EȾ�H������H�E�H�}�u$H�E�H�9������H���V��E��uH�E�H�U�H�P`H�E��@ H�E�H�@H�U�H�M�I ����H��H���H��H�E�H�PH�E�H�@H��u<H�E�H�ơ�����H�����H�E�H�@H�M�H�U�H��H����E���H�E�@ ����H�E�H�@H�5��H���F��H�E��P8H�E�PDH�E��@H H�E��@L H�E��@P�H�E�H���PJ����H�E�P0H�E��P<H�E�P4H�E��P<H�E�P8H�E��P@H�E�P<H�E�H��H�E�H�E�H�PH�U��[H�E�PDH�EЉ�H���3�H�E�P0H�EЉ�H����H�E�PHH�EЉ�H���	�H�E�PPH�EЉ�H�����H�E��H�E������H�E�H�pH�E�A���H���2:�E܃}��u�E��p�}�t'H�E��H�E�H�̟�����H���I��CH�E�H�U�H���H��H���x���H�E�H�@`H�@@H�U�H�R`I��H�U��RDA��H�U�H�R0H�M�H�y`H�u�D���H�E������E�H�E�H��H�E�H�E�H�PH�U��\H�E��P8H�EЉ�H������U�H�EЉ�H�����H�EкH�5��H�����H�EоH���S�H�E�H�pH�U�H�E�A��H���8�E܃}��u�E��9�}�t$H�E���M�H�E�H�ў��H�����H�E�����UH��H��H�}�H�u�H��x�����t����E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���E�H�E���p�������H��H�ԟ�H�H�ȟH��t����ulH�E�H�@8H��t*H�E�H�@8H�U�H��x���A��H�u�H�}�H��D��Ѕ�t5H�E�H�@H�M�H�U�H��H���H�E�H�������H�����H�E�ǀp���H�E���p����Y�EŃ�b�=��H��H�L��H�H�@�H��H��x����H�E�H��H���b���H�E�H��x�����H�E�H��H���>���H�E�H��x���H��
H9E�ssH�E�H��	H�E�H�E�H�P	H�E�H�H������H�E�H�E�H�P
H�E�H�H�E�H��x���H+E�H��
H9E�v*H�E�H�E�H�E�H�E�H�E�H�E��H�E�H�E�H�@0H��tDH�E�H�@0H�M�H�U�A��H�U�A��H�U�A��H�u�H�U�H�}�H��QE��I��D��D���H��H�E�H�@H�M�H�U�H��H���H�E�ǀ����H�E�ǀp�H�E�H�j���H���0��=H��x���v<H�E�H�@ H��t]H�E�H�@ H�U�H��x�����A��H�M�H�qH�}�H��D����.H�E�H�@ H��t!H�E�H�@ H�U�H�}�H�ѺH�5����H�E�H�@H�M�H�U�H��H���H�E�ǀp���H��x�����H�E�H������E�H��x���vxH�E�H��H���-���H�E�H��x���H��
H9E�wQH�E�H��H�E�H�E�H�PH�E�H�H�������H�E�H��x���H+E�H��
H9E�wH�E�H�P
H�E�H�H�E�H�E�H�@(H��t7H�E�H�@(H�M�H�U�A��H�U�A��L�E�H�U�u�H�}�H��QD���H��H�E�H�@H�M�H�U�H��H���H�E�ǀp���
H��x������E��E�H�E�H��H���(��E��E�����H9�x���r�E�����H�E�H���Eǀ}�tE��H�E�ǀp�H�E�A���H�5�H���3�E��}��u�E���	H�E�H�@H�M�H�U�H��H���H�E�ǀp���	H�E�H�E�	H��x���H;E�r$H�E�H��H���]���H�E���H����B��H�E�H�}�uHH�E�H������H���K�H�E�H�@H�M�H�U�H��H���H�E�ǀp���-	H�E��@V<���}�_��H�E�H�@H�M�H�U�H��H���H�EЋ@\��H��x���H�H+E�H��H�EЋ@L��H9�r"H�EЋPLH�EЋ@\)‰Љ�H�E�H�H��x���H�EЋ@LH�Uȉ�H��x���)щ��H�EЉPLH�E�H�U�H��x���H�E�ǀp�H��x����p�H�E�H��x���H���o���E��}��u�E��8H�E�ǀp��� H�EЋ@P��H��x���H+E�H9�s/H�E�H�X����H�����H�EЋ@P��H�E�H�H��x���H�EЋPLH�EЋ@\9�wHH�E�H�_����H����H�E�H�@H�M�H�U�H��H���H�E�ǀp���~H�E��@UH�EЋ@\��H��x���H�H+E�H��H�EЋ@L��H9�v:H�E�H�����H���$�H�EЋPLH�EЋ@\)‰Љ�H�E�H�H��x���H�EЋ@\H��x�����H�U�)щ��H�EЉP\�WH��x���v$H�E�H��H������H�E���H���@��H�E�H�}�tH�E��@UH�E�H�@H�M�H�U�H��H���H�E�ǀp���H��x����H�E�H��H���0��E�H�E�H��H�����E��E��E�H��x���H��
H9�s�E���	��H�E�H���Eƃ}�uhH�E�H��	�H��H�=���9����uHH��x���v�U�H�E���H���0?��H�E�H�}��	H�E�H��H������H�EЉP$���}���H�E�H��	�H��H�=���Q9������H��x���v�U�H�E���H���>��H�E�H�}���H�E�H��H�����E�H�E�H�@H�U��M�����H��H���H��H�E�H�P(H�E�H�@(H��uH�E�H�:������H������E��/�U�H�E�H�HH�E�H�@(H��H���9��H�E�H�P(�E�H���}�tS��H�E�ǀp��E�dH�E�H����E�H�u�H�E�A���H���.�E��}��u�E��oH�E�H�@H�M�H�U�H��H���H�E�ǀp��E��AH��x���v$H�E�H��H�������H�E���H���g=��H�E�H�}�u0H�E�H�@H�M�H�U�H��H���H�E�ǀp����H�E��@TH�E��@UH�E�H�@H�M�H�U�H��H���H�E�ǀp���H��x����/H��x�����H�E�H��H���=���uwH�E�H���H�5��H���7����uWH�E�H���h�H���6����H�E�ǀp�H�E�H����H��x���H�u�H�E�H�����E��H��x�����H�E�H��H������urH�E�H���H�5��H���y6����uRH�E�H���X�H����5����H�E�ǀp�
H�E�H����H��x���H�u�H�E�H�����E��}��u�E��QH�E�H�@H�M�H�U�H��H���H�E�ǀp��E��#H��x���vQH�E�H��H�������E�H�E�H��H��������H�E���H���6;��H�E�H�}�tH�EЋP8�E��H�EЉP8H�E�H�@H�M�H�U�H��H���H�E�ǀp����H�E�ǀp�H�E���p�����H�E�H�@H�U�H�ֿ0��H�E�H�}�u0H�E�H�@H�M�H�U�H��H���H�E�ǀp�������%H�E�H�U�H�PH�E�H��x���H�P H�E�H�U�H�P(H�E�H�U�H���H��H��� �H�E�ǀp��}�uH�E��@h����tH�E���p�����H�E���p���uH�E�ǀp�H�E�ǀH�H�E�HǀHBH�E�ǀp�H�E�ǀ@�H�E�H�����H���3��H�E�H����H�E��H������E��}��u�E��H�E�ǀp����UH��H��@H�}��H�U�H�M�D�E�L�MȈE�H�E�H�H���q�H�E��H�E�H�@�8E���H�E�H�@ �U�Hc�H�UH�H9�rxH�}�t(H�E�H�P�E�H�H�H�E�H�UH��H���-3����uIH�E�H�PH�E�H�H�E�H�P H�E�H�H�E�H����H�E�H�@H�M�H�U�H��H��и� H�E�H�����H�E�H�}��?����������UH��H��@H�}�H�u�H�U�H�M�D�E�L�M�H�E�H����0���E��E��N�E�Hc�H�E�H����L�E��}�H�M�H�U�H�E�H���uM��A��H�����H����u���E��E�;E�|��������UH��H��@H�}��H�U�H�M�D�E�L�MȈE�H�EH�@H���-�u�L�Eȋ}�H�M�H�U�H�E�H���uM��A��H���	���H����u
����3��H��H�EH�P��H�E�H���[�E��}��u�E����}�yH�EH�@�E���E�9E�uD�u�L�Eȋ}�H�M�H�U�H�E�H���uM��A��H���q���H���E�H�EH�@�E��h�}�uK��k2��H��H�EH�@H)�H�к<H)�H��H�E�H�}�H�EH�@������������H�E苀����������UH��H��0H�����H�����H���������S�E���E���H��U������E����E��}��u��E�H�M�H�U�H����H�����H��jA�A�H���k���H����u1H�E���E�H�����H�@H�����H�U�H��H����E���H�������H�����H����E��}��u�E���}�yH�������E���}�u�g�E���H�M�H�U�H�����H��jA�A�H�����H����u0H�����H�@H�����H�U�H��H���H�������E��H����������A�������UH��H��@H�}�H�u�H�U�H�M�D�E�L�M�L�E��}�H�M�H�U�H�u�H�E�H���uM��A��H������H����uH�EH���H�EH�H������/��H��H�EH���H�E�H���B�E��}�y�}��tH�EH��E���}�M��/��H��H�EH�H)�H�к<H)�H��H�E�H�}�H�EH�������v�}��u�E��k�U�H�E��H���,��H��t2L�E��}�H�M�H�U�H�u�H�E�H���uM��A��H������H���#H�E苀����$���H�EH�����UH��H��0H�}�H�u�U܃}�uH�}�tH�E�@��u�E��}�x�}�~
H�Z�H�E��%�E�Hc�H��H�H�H��H��H�7�!H�H�E�H�U�H�E����H���<�����UH��H��@H�}�H�u�H�U�H�E�H�H�E�H�E�H�@`H�E�H�E�H�H�E�H�H�E؋@����H�U�H�E���H���c���E�}��u�E��_�}�tH�E�H�������H������<H�E�H���n����H�E�H�PH�E�H�@H�M�H�U�H�RH��H���H��H�E�H�PH�E�H�@H��uH�E�H�\������H���9����H�E��@H�E؋@����H�E�H�HH�E�H�PH�E��H���b���E�}��u�E��H�E�H�@9E�tMH�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�E��@H�E�H�����H������.H�E�H�PH�E�H�H�E�H�PH�E�H�H�E��@���UH��H��0H�}�H�u�H�E�H�H�E�H���!H�E�H�}�w
������H�E�H�������H�E�H�E�H�m�H�E�H;E�sT������_H�E��@H�H9E�u9H�E�H�@H�U�H�M�H��H����'����uH�U�H�E�H�H�E�H�H�E���H�E�H�E�H�@H��u��������UH��H��@H�}�H�E�H�H�@`H�E�H�U�H�M�H�E�H��H���-����E�}��u�E���}�tH�E�H�Š���H���7����H�E�H�E�H�U�H�E�H��H������E�}�uXH�E�H��������H�E�H�E�H�@H�M�H�U�H��H���H�}�u��}H�E��H�M�H�E�H��H�����������]H�E�H�@H�M�H�U�H��H��Ѓ}�yH�E�H�C�����H������%H�E�H�Q�����H���f��H�E�������UH��SH��XH�}�H�E���(���u;H�E�Hǀ@�H�E�Hǀ0�H�E�Hǀ8�H�E�ǀ(�H�E���(�����H�E�H��jA�A��� �H�5͉H����.��H��H��H�E�H��8�H�E�H��8�H��u8H�E�H���)�����u
��H�E�H������H���j���H�E�ǀ(�H�E���(�����H�E�H��8�A�	H�
i��	H�5H�H���KR���E�}��u"H�E�H�:�����H��������}�tH�E�H�B����H��������H�E�ǀ(�H�E���(����?H�E�H��8��H���6]���E�}��u"H�E�H�������H���p����{H�E���H�����H��H�E�H��0�H�E�H��0�H��uH�E�H��������H������DH�E�H��0�H�U�H��8�H�H�E�H��0��@H�E�HP�H�E�H�E�H�����H�E�H�E�H�����H�E�H�E�H�5څH���'��H�E�H�E�H���o��H�E�Hǀh�H�E�ǀ(�H�E���(�����H�E�H��h��H��H)�H�E�H��P�H�E�H��8��H���b���E�}��u"H�E�H�ȇ����H��������}�y�M�H�E�H�͇��H�������H�E�H��h��E�H�H�H�E�H��h�H�E�H��h�H��w"H�E�H�������H�������H�E�ǀ(�H�E���(�����H�E�H��H�H�E�H��@�H�E�H��0�H��H������E�}��u"H�E�H�d�����H��������}�tH�E�H�t����H�������H�E�H��@�H�E�H�E�H��H�H�E�H��H���^����E܃}�yH�E�H�-�����H�������}�t�}����^H�E�H���S����H�E�H�E�H��H�E�H�E�H���5����H�E�H�E�H��H�E�H�U�H�E�H�H�E�H�E�H�������H�E�H�E�H��H�E�H�U�H�E�H�H�E�H�E�H��@�H�E�H��H�H�H�E�H9�sH�E�H�������H��������H�EЉ�H�E�H�ƿ����H�E�H�U�H��0�H���u���CH�E�H��0��@��vH�E�H��0��@H�E�H�@H�M�H�U�H��@�H��H���H�E�Hǀ@�H�E�ǀ(�H�E�H��0��7H�E�H�������H���
��H�E�H�@H�M�H�U�H��@�H��H���H�E�Hǀ@��y����H�E�ǀ(�H�E�H��8�H��t>H�E�H��8�H����e���E�}��u"H�E�H�������H�������H�E�H��0�H��t.H�E�H�@H�M�H�U�H��0�H��H���H�E�Hǀ0�H�E�H��@�H��t.H�E�H�@H�M�H�U�H��@�H��H���H�E�Hǀ@�H�E�ǀ(��H�]���UH��H��0H�}ؿ�#��H�E�H�E�H���h���H�E�H�E؋����t4H�}�u-H�E�H��� "�����uH�U�H�E�H��H���bC�E�}�t�H�E���UH��H��pH�}�H�u�H�U�H�M�L�E�D�ȈE�H�U�H�E�H�H��H�E�H�E�H�E�H�}�u
������H�E�H�H�E�H�E�H�@`H�E�H�E��@ ����H�E�H�@(H�E��@����H�E��H�U�H��H��H�H��H��H�EH�H�@H����H�U�H��H��H�H��H��H�EH�H��H�5��H�������uJH�U�H��H��H�H��H��H�EH�H�@H�E�H�U�H��H��H�H��H��H�EH�H�@H�E��H�E�H�E�H;E�B���H�U�H�E�H�H��H�E��qH�E�H�E��XH�U�H��H��H�H��H��H�EH�H�HH�U�H��H��H�H��H��H�EH�H�@H�H�E�H�H��	H�E�H�E�H�E�H;Er�H�E�H�@H�M�H�U�H��H���H��H�E�H�P(H�E�H�@(H��uH�E�H��������H���B����H�E�H�P(H�E�H�P0H�E�P�H�E�H�@0��H�����H�E�H�@0H�PH�E�H�P0H�E�H�@0�H������H�E�H�@0H�PH�E�H�P0H�E�H�@0�H�5.�H�����H�E�H�@0H�PH�E�H�P0H�E��@���&H�E��H�E�H�@0��H���g��H�E�H�@0H�PH�E�H�P0H�}�t2H�E�H�@0H�U�H�M�H��H���/��H�E�H�P0H�E�H�H�E�H�P0H�E���H�E�H�@0��H�����H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H������H�E�H�P0H�E�H�H�E�H�P0H�E���H�E�H�@0��H�����H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H���s��H�E�H�P0H�E�H�H�E�H�P0�	H�E���H�E�H�@0��H���A��H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H�����H�E�H�P0H�E�H�H�E�H�P0H�E���H�E�H�@0��H������H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H�����H�E�H�P0H�E�H�H�E�H�P0�}�@��H�E�H�@0H�HH�U�H�J0��H�E��H�E�H�@0��H���e��H�E�H�@0H�PH�E�H�P0H�E���H�U�H��H��H�H��H��H�EH�H�@��H�E�H�@0��H�����H�E�H�@0H�PH�E�H�P0H�U�H��H��H�H��H��H�EH�H�pH�U�H��H��H�H��H��H�EH�H�H�E�H�@0H��H��H�����H�E�H�H0H�U�H��H��H�H��H��H�EH�H�@H�H�E�H�P0H�U�H��H��H�H��H��H�EH�H�@��H�E�H�@0��H���?��H�E�H�@0H�PH�E�H�P0H�U�H��H��H�H��H��H�EH�H�pH�U�H��H��H�H��H��H�EH�H�HH�E�H�@0H��H��H������H�E�H�H0H�U�H��H��H�H��H��H�EH�H�@H�H�E�H�P0H�U�H��H��H�H��H��H�EH��@ ��@��H�E�H�@0H�HH�U�H�J0��H�E�H�E�H;E����H�E��@ H�E��@ ����H�E�H�P0H�E�H�@(H)�H��H��H�E�H�P(H�EؾH���V���Ẽ}��u�E��H�E�H�P0H�E�H�@(H)‹E�H�H9�tBH�E�H�@H�M�H�U�H�R(H��H���H�E�H�@(H�E�H�0}�����H������[H�E�H�@H�M�H�U�H�R(H��H���H�E�H�@(H�E��@ H�E�H������Ẽ}��u�E��H�E��@ �E���UH��H��PH�}�H�u�H�U�H�M�L�E�H�U�H�E�H�H��H�E�H�}�u
������H�E�H�H�E�H�E�H�@`H�E�H�E؋@8����H�E�H�@@H�E�H�@H�M�H�U�H��H���H��H�E�H�P@H�E�H�@@H��uH�E�H�?|�����H������uH�E�H�P@H�E�H�PHH�E��P�H�E�H�@H��H���N��H�E�H�@HH�PH�E�H�PHH�E�H�@H�H���%��H�E�H�@HH�PH�E�H�PHH�E�H�@H�H�5�{H������H�E�H�@HH�PH�E�H�PHH�Eȉ�H�E�H�@H��H������H�E�H�@HH�PH�E�H�PHH�E�H�@HH�U�H�M�H��H�����H�E�H�PHH�E�H�H�E�H�PHH�E���H�E�H�@H��H���k��H�E�H�@HH�PH�E�H�PHH�E�H�@HH�U�H�M�H��H���:��H�E�H�PHH�E�H�H�E�H�PHH�E��@8H�E؋@8����H�E�H�PHH�E�H�@@H)�H��H��H�E�H�P@H�E�H���S���E�}��u�E���H�E�H�PHH�E�H�@@H)‹E�H�H9�tMH�E�H�@H�M�H�U�H�R@H��H���H�E�H�@@H�E��@8H�E�H�bz�����H���w����[H�E�H�@H�M�H�U�H�R@H��H���H�E�H�@@H�E��@8H�E�H�����E�}��u�E��H�E��@8�E���UH��SH��H��x���H��p���H��h���H�E�H�E�H�E�H�E�H��x���u
�����H��x���H�H�E�H�E�H�@`H�E�H��x����@P����H��x���H�@pH��x���H�P`H��x���H�PXH�EȍP�H��x���H�@X��H���>���H��x���H�@XH�PH��x���H�PXH��x���H�@X�H������H��x���H�@XH�PH��x���H�PXH��x���H�@X�H�5�xH������H��x���H�@XH�PH��x���H�PXH��x����@PH��x����@P����H��x���H�@XH��x���H��`H)�H��H��x���H�P`H�E��H���
Q���E��}��u�E��I
H��x���H�@XH��x���H��`H)�H�‹E�H�H9�t+H��x����@PH�E�H�6x�����H�������H��x����@PH��x���H�PxH��x���H�HpH��x���H��H�����E��}��u�E���}�tH�E�H�<t���H��豼��� H��x���H�PpH��x���H�PXH��x���H�@xH��x���H��XH��H�����E��}�yH�E�H��u����H���T������}�t�}����cH��x���H�@XH��������H�E�H��x���H�@XH�PH��x���H�PXH��x���H�@XH���Ӽ����H�E�H��x���H�@XH�PH��x���H�PXH��x���H�PXH�E�H�H��x���H�PXH��x���H�@XH��胼����H�E�H��x���H�@XH�PH��x���H�PXH��x���H�PXH�E�H�H��x���H�PXH��x���H�PXH��x���H�HpH��x���H�@xH�H9�vH�E�H��t����H���&����
H�}�ubH�E�H�@H�M�H��x���H�RpH��H���H��x���H�@pH��h���H�U�H�H��p���H�U�H�H��x����@P��
H�E���H�M�H��x���H��H������
H�E�H;E���H�E�H�}�t6H�E�H�HH�u�H�E�H�PH��H��H)�H��H��H�E�H��H��H����'H�E�H�HH�u�H�E�H�PH��H��H)�H��H���H�E�H�}�uH�E�H�@u�����H������l	H�E�H�E�H��x����@���}H��x���H�@XH��詺����H�E�H��x���H�@XH�PH��x���H�PXH�}���H�U�H��H��H)�H��H��H�E�H�H�@(H�E�H�HH�u�H�U�H��H��H)�H��H��H�E�H��(��H�C0H�U�H��H��H)�H��H��H�E�H�H�@0H��uH�E�H�}t�����H���
����yH�U�H��H��H)�H��H��H�E�H�H�@0H�
sH�H�U�H��H��H)�H��H��H�E�H�H�@0H�@H�U�H��H��H)�H��H��H�E�H�H�@0H��x���H�RXH�PH�U�H��H��H)�H��H��H�E�H�H�@0H�U�H�PH�U�H��H��H)�H��H��H�E�H�H�@0�@ H��x���H�PXH�E�H�H��x���H�PX�HH�U�H��H��H)�H��H��H�E�H�H�@(H�U�H��H��H)�H��H��H�E�H�H�@0H��x���H�@XH��蝸����H�U�H��H��H)�H��H��H�E�HЉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@H�H��x���H�PXH��x���H�@XH�������H�U�H��H��H)�H��H��H�E�HЉ�H�P H��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@ H�H��x���H�PX�&H��x���H�@XH���,�����H�U�H��H��H)�H��H��H�E�HЉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@H�H��x���H�PXH��x���H�@XH���v�����H�U�H��H��H)�H��H��H�E�HЉ�H�P H��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@ H�H��x���H�PXH��x���H�@XH�������H�U�H��H��H)�H��H��H�E�HЉ�H�P(H��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�@(H���H�E�H�HH�u�H�U�H��H��H)�H��H��H�E�H�H�P(H��H��H�H��H��H�U�H��H��H)�H��H��H�E�H���H�C0H�U�H��H��H)�H��H��H�E�H�H�@0H��uH�E�H�Po�����H���ݳ���LH�E��AH��x���H�@XH��藴����H�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��Hȉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��H�H��x���H�@XH�H��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�p0H�U�H��H��H�H��H�H�@H�H��x���H�PXH��x���H�@XH��薳����H�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��Hȉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�p0H�U�H��H��H�H��H�H�@H�H��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��H��@ H�E�H�U�H��H��H)�H��H��H�E�H�H�@(H9E�������$H�U�H��H��H)�H��H��H�E�H�H�@0H�U�H��H��H)�H��H��H�E�H�H��x���H�@pH�H�E�H�U�H��H��H)�H��H��H�E�H�H�H��x���H�@p�FH�E�H��h����H��述��H�E�H�@H�M�H��x���H�RpH��H���H��x���H�@p��H��x���H�@pH��t.H�E�H�@H�M�H��x���H�RpH��H���H��x���H�@pH�}�tH�U�H��x���H��H���'
��H��x����@P�����H�Ę[]�UH��H�� H�}�H�u�H�E�H�E�H�}���H�}���H�E�H�H�@`H�E��IH�E�H�@0H��tH�E�H�@H�M�H�U�H�R0H��H���H�E�H�@H�M�H�U�H�H��H���H�E�8H�E�H�H��u�H�E�H�@H�M�H�U�H��H�������UH��H�� H�}�H�}�u
�����H�E�H�H�@`H�E�H�E�H�@H��t(H�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�E�H�@(H��t(H�E�H�@H�M�H�U�H�R(H��H���H�E�H�@(H�E�H�@@H��t(H�E�H�@H�M�H�U�H�R@H��H���H�E�H�@@H�E�H�@pH��t(H�E�H�@H�M�H�U�H�RpH��H���H�E�H�@pH�E�H�H���	L���E�}��u�E��H�E�H�@H�M�H�U�H��H��и��UH��H�}�H�uЉU��E��U�H�E�H�H�E�H�E�H�E�H�E�H�E��H�E������!����'�6�}�t5�}�t�}��`H�E�H��H9E�w
��cH�E�H�PH�U��"�7H�E�H��H9E�w
��:H�E�H�PH�U��'H�E�H�PH�U��"��E��6�}�tr�}�t�}�t.�H�E�H��H9E�w
���H�E�H�PH�U��\�oH�E�H��H9E�w
��H�E�H�PH�U��"H�E�H�PH�U��\�7H�E�H��H9E�w
��H�E�H�PH�U��'H�E�H�PH�U��\��E��~�}�to�}�t�}�t+�bH�E�H��H9E�w
��+H�E�H�PH�U��'�9H�E�H��H9E�w
��H�E�H�PH�U��"H�E�H�PH�U��'���E��H�E�H��H9E�w
��H�E�H�PH�U��H�E�H�PH�U�ʈH�E����tH�E�H��H9E������}�t4�}�tT�}�t�MH�E�H��H9E�w��\H�E�H�PH�U��"�'H�E�H��H9E�w��6H�E�H�PH�U��'��H�E�H��H9E�w��H�E��H�E�H+E�]�UH��H��pH�}�H�u�H�U�H�E���x����qH�E�Hǀ��H�E�Hǀ��H�E�Hǀ��H�E�Hǀ��H�E�H�����H��H��H�H�H�}�t���H�H�P
H�E�H����H�E�H�@H�M�H�U�H����H��H���H��H�E�H����H�E�H����H��u"H�E�H��e�����H���O�����H�}�t	H�	f�H�fH�U�H����H�U�H����H��H��e�����H�E�H����H�������E�H�E�H�����‹E�)�H�E�H�����E�H�H�H�E�H��H�����H�E�ǀx�H�E���x�����H�E�H��jA�A��� �H�5QeH�����H��H��H�E�H����H�E�H����H��uqH�E�H���������t>H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀx��H�E�H��d����H�������7
H�E�ǀx�H�E���x�����H�E�H����H�E�H����H�E�H����I��H�ѺH�5�dH���)���E��}��u"H�E�H�}d����H���Z������}�t3H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ���H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ƀ��H�E�ǀx�H�E���x���uzH�E�H����H�E�H������H���.;���E��}��u"H�E�H��c����H���x�������}��PH�E�Hǀ��H�E�ǀx�H�E���x����DH�E���x����`�,H�E���x�����H�E�H����H�E�H����H�H�E�H������H���4���E��}��u"H�E�H�%c����H��貦�����}�y�M�H�E�H�c��H��芦���r
�}��%
H�E�H����H�PH�E�H����H�E�����<T��H�E�H�����H���8��H�E�H�E�H�@H�U�H�M�H��H��H���H�E�H�}�uH�E�H��b�����H������	H�E�H����H�M�H�U�H���3��H�U�H�E�H��H�E�H�rb���H��訥��H�E�H�@H�M�H�U�H��H����x	H�E�H����H����H�E�H����H�P�H�E�����</vH�E�H����H�P�H�E�����<9vzH�E�H����H�P�H�E�����< t[H�E�H����H�P�H�E�����<
t<H�E�H����H�P�H�E�����<
tH�E�H��a���H�����H�E�H����H��vH�E�H����H�P�H�E�����<
tNH�E�H����H=��H�E�H�Za���H���_����GH�E�H����H�P�H�E�H����H�E�H����H�P�H�E�����<
t�H�E�H����H�P�H�E�����<
t�H�E�H����H�U�Ƅ��H�E�H����H��wH�E�H��`���H���£���H�E�H��H��H�E�H�E� H��� ���H�E�H�}�t
H�E�H+E�H��H�E�H��`���H���j����RH�E�H�PH�U��H�E�
�H������H��H�E�H����H�Eؾ H�����H�E�H�}�t
H�E�H+E�H��H�E�H�|`���H������H�E�H�E� H���\���H�E�H�}�t
H�E�H+E�H��H�E�H�i`���H��覢���H�E��H�E�
�H���Z���H��H�E�H����H�E�ƀ��H�E�ǀx�H�E���x���u^H�E�H����H�E�H������H���5���E��}��u"H�E�H�`����H��������[�}�t%��H�}�tH�E�H����H=��������H�E�ǀx�H�E���x���uH�E�Hǀ��H�E�ǀx�H�E���x����{H�E���x���	���cH�E�H�E���x�����H�E�H����H�E�H����H�H�E�H������H����.���E��}��u"H�E�H�k]����H�������N�}�y�M�H�E�H�e]��H���Р����}��nH�E�H����H�PH�E�H����H�E�����<CtH�E�H��^���H��耠���hH�E�H����H��vzH�E�H����H�P�H�E�����<
t[H�E�H����H�P�H�E�����<
t<H�E�H����H�P�H�E�����<wH�E�H��\���H�������H�E�H����H��vH�E�H����H�P�H�E�����<
tNH�E�H����H=��H�E�H��\���H��葟���yH�E�H����H�P�H�E�H����H�E�H����H�P�H�E�����<
t�H�E�H����H�P�H�E�����<
t�H�E�H����H�U�Ƅ��H�E�H����H��wH�E�H�\���H������H�E�H��H��H�E�H�Eо H���R�H�E�H�}�t
H�E�H+E�H��H�E�H��\���H��蜞���H�E�H�PH�U��H�M�H�EкH��H���F���H��H�E�H����H�E�H��t(H�E����tH�E�H��\���H���6����H�EȾ H����H�E�H�}�t
H�E�H+E�H��H�E�H��[���H������H�E��H�M�H�EȺ
H��H���2���H��H�E�H����H�E�H��t(H�E����tH�E�H�M\���H��蒝���zH�E�ƀ��H�E�ǀx�	H�E���x���	u^H�E�H����H�E�H������H����0���E��}��u"H�E�H�\����H��������r�}�t��H�E�H����H=��������H�E�ǀx�
H�}�tdH�E����H���(�H�E�H����H�E�H�PXH�E�H����H�E�H�PHH�E�H����H�E�H�P0H�E�H������H�E��PH�E�ǀx�H�E�H��������H�E�H����H�����tH�E�H�)[���H���#����H�E�H�����t�H�E����E�H�E�H��H�E��H�E�H����H������t�H�E��Uĉ�H�E�H�U�H��H�E�Hǀ��H�E�ǀx����UH��H��@H�}�H�u�H�Uȿ��H�E�H�U�H�M�H�E�H��H���"�H�E�H�E؋����t4H�}�u-H�E�H�������uH�U�H�E�H��H����E�}�t�H�E���UH��H��`H�}�H�u��U�H�M�L�E�L�M�H�Eȋ������cH�E�H�����H��H��H�H�H�}�uH�}�t���H�H�P
H�E�H����H�E�H�@H�M�H�U�H����H��H���H��H�E�H����H�E�H����H��u"H�E�H�rY�����H���O������H�}�uH�}�t	H�V�H��UH�U�H����H�U�H����H��H�QY����H�E�H����H�����E�H�E�H�����‹E�)�H�E�H�����E�H�H�H�E�H��H����H�E�H����H�E�H����H��H��H�E�ǀ��H�Eȋ�������H�E�H��jA�A��� �H�5*UH���m���H��H��H�E�H����H�E�H����H��uqH�E�H������t>H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ���H�E�H��T����H��躘����SH�E�ǀ��H�Eȋ�������H�E�H����H�E�H����H�E�H����I��H�ѺH�5jTH������E�}��u"H�E�H�VT����H���3�������}�tKH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�@W���H���ݗ���H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ��H�Eȋ������H�E�H����H�E�H������H���$%���E�}��u"H�E�H��V����H���@�������}�y�M�H�E�H��V��H�������C�}���H�E�������tH�E�H��V���H������
H�}�uH�}�t=H�E�H����H�U�H�E�I��H��H��V���v�Hc�H�E�H����H�E�ǀ��H�}�uH�}��|H�Eȋ�������H�E�H����H�E�H����H�E�H����H��H��H���)���E�}��u"H�E�H�
V����H���
�����H�E�H����9E�tH�E�H�V�����H���ؕ���H�E�ǀ��H�Eȋ�������H�E�H����H�E�H������H���M#���E�}��u"H�E�H��U����H���i������}�y�M�H�E�H��T��H���A����l�}�� H�E�������tH�E�H��U���H�������6H�E�ǀ���H�Eȋ�����uH�E�ǀ��H�Eȋ�����u{H�E��/H����H�E�H�}�tH�E��H�E�H�E�H�E�H����H�M�H�U��E�I��I�Љ�H�U���A�Hc�H�E�H����H�E�ǀ��H�Eȋ�������H�E�H����H�E�H����H�E�H����H��H��H���'���E�}��u"H�E�H��T����H�������H�E�H����9E�tH�E�H��T�����H��赓����H�E�ǀ��	H�Eȋ�����	�\H�E�H����H�E�H������H���*!���E�}��u"H�E�H��S����H���F�������}�yH�E�H��R���H�������I�}��H�E���������H�E�H�����H���Z%��H�E�H�E�H�@H�U�H�M�H��H��H���H�E�H�}�uH�E�H��S�����H��衒����H�E�H����H�M�H�U�H���? ���E�}�~H�U�H�E�H��H�E�H�@H�M�H�U�H��H���H�E�H�HS���H���5����cH�E�ǀ��H�E�H����������H�E�H����H���Q���tH�E�H��P���H���ߑ���
H�E�H�����sH�Eȋ��E�H�E�H��H�EАH�E�H����H���V����t�H�EȋU܉�H�E�H�U�H��H�E�Hǀ��H�E�ǀ�����UH��H��PH�}�H�uЉU�H�M�L�E�L�M���h�H�E�H�M�L�E�H�}��U�H�u�H�E�M��I��H����H�E�H�E؋����t4H�}�u-H�E�H���j����uH�U�H�E�H��H���	�E�}�t�H�E���UH��H��PH�}�H�uЉU�H�M�L�E�L�M�����H�E�L�E�H�}�H�M��U�H�u�H�E�M��I��H���R���H�E�H�E؋����t4H�}�u-H�E�H��������uH�U�H�E�H��H���	�E�}�t�H�E���UH��H��H�}�H�u�H�E�H������UH��H��H�}�H�u�H�E�H�������UH��H�� H�}�H�u�H�U�H�U�H�E�H��H������UH��H�� H�}�H�E苀8���u�E�H�E�ǀ8��:H�E�H��@��E��'�E�H�E苀���H�E艐H�E�H�@PH�M�H�U�Rl��tA��A�@H�U苺H�u�I��D�ɺ�ЉE��}��}�yV�}��u)H�E�ǀ�E�Hc�H�E�H��@������H�E�ǀ8�H�E�Hǀ@�������}�uH�E�ǀ�������x�E���u'H�E�ǀ8�H�E�Hǀ@�������I�E��P�U��M�H�U�H���<��}��,�}������E���H�U�H���<�<
�������m��}�t0�E���H�U�H���<�<
tދE���H�U�H���<�<
t�H�E�ǀ8�H�E�Hǀ@��}�u
������H�E�H�@H�M�U���Hc�H��H���H��H�E�H���H�E�H���H��uH�E�H��N�����H���`����B�E�Hc�H�E�H��<�H�E�H���H��H����H�E�H����E�H�H�����UH��H��0H�}�H�NNH�E��E�H�E؋�8���uCH�E�H��XH��t%H�E�H��XH������E�H�E�H��XH�E�H�E�ǀ8�H�E؋����H�E؉�H�E�H�@HH�M�H�U؋Rl��tA��A�@�U�Hc�H�U�H��@�H)�H��I��H�U�H��@�H��H�U�H�H�U؋�I��D��L���H�E�E�Hc�H�E�H��@�H)�H��H9E�tkH�}�yH�}�u9H�E�ǀH�}�~H�E�H��@�H�E�H�H�E�H��@������FH�E�ǀ8�H�E�Hǀ@������"H�E�ǀ8�H�E�Hǀ@����UH��H�� �}�u�E���Ǹ�����E��}�t�E����‹E��Ǹ�����E���‹E��Ǹ�����UH��H�� �}�E���Ǹ�o���E��}��u���E�%��UH��H�� H�}�H�u�H�}�tH�E�H��������H�E�H�E�H��XH��t.H�E�H�@H�M�H�U�H��XH��H���H�E�HǀXH�}�u
���H�E�H�@H�U�H�M�H��H��H���H��H�E�H��XH�E�H��XH��uH�E�H�sK�����H�������H�E�H��XH�U�H�M�H��H�����H�E�H��XH�E�H��H�E�H��XH�E�H�PH�U�H��
H�E�H��XH�E�H�PH�U�H��
H�E�H��XH�E�H�����UH��H��H�}�H�u�H�U�H�E�H��H�������UH��H��@H�}�H�u�H�U�H�M�H����H�E�H�"���H�E�H�6���H�E�H�}�tH�E�H�E�H�}�tH�E�H�E�H�}�tH�E�H�E�H�U�H�E�H�ֿ����H�E�H�}���H�E���H�����H�E�H�U�H�PH�E�H�U�H�PH�E�H�U�H�PH�E�H����H�PHH�E�H�����H�PPH�U�H�E�H�H�E�Hǀ�H�E�ǀ��&H�E���UH��H�}�u�H�U؃}����E�H��H��I�H�H��IH��H�E�H�@ H�E�H�U�H�E�H�P H�E��H�E�H�@(H�E�H�U�H�E�H�P(H�E��H�E�H�@0H�E�H�U�H�E�H�P0H�E��}H�E�H�@8H�E�H�U�H�E�H�P8H�E��_H�E�H�@@H�E�H�U�H�E�H�P@H�E��AH�E�H�@HH�E�H�U�H�E�H�PHH�E��#H�E�H�@PH�E�H�U�H�E�H�PPH�E���]�UH��H��PH�}�H�u�H�E�H�E�ǀH�U�H�E�H��H���
���E�}�y�E��}�E�i��H�H�E�H�E�H������E�}�uH�E��H�E�H���H�����Eԅ�t�E�Hc�H�E�H���H9�~����H�E�H�U�H�E�H��H������f(���I�Y��H,�H�E�H�E�H���H9E�~H�E�ǀ����������H�E�H���H+E�H�E��E��H�}�~	�E���E�H�E����E�f�E�f�E��E����t�EЃ�f�EЋE����t�EЃ�f�EЃ}�tH�E��������H�E̾H������E�}�H�E�ǀ�������������UH��H�� H�}�u�H�E苀`������}�uH�E�H��F����H��������H�E�U䉐H�E苀�����������H�E艐H�E苀��t<H�E苀����F����E��}�t�M�H�E�H�nF��H��螄���iH�E�ǀ`�H�E苀`���uNH�E�H���V����E��}�t�M�H�E�H�WF��H���O����H�E�ǀ`�H�E�ǀ8�H�E苀`���ucH�E�H���Z�E��}�t�M�H�E�H�F��H�����H�E�H����H��H�=�E������u�H�E�ǀ`�H�E苀`���uPH�E�H����H�E�H���~t���E��}�t�M�H�E�H��E��H���p����;H�E�ǀ`�H�E苀`���uVH�E�ƀx�H�E�Hx�H���H������H�E�Hx�H���H�5gEH������H�E�ǀ`�H�E苀`���u[H�E�H��x�H�E�A���H���r��E��}�t�M�H�E�H�E��H��衂���lH�E�ǀ`�H�E苀`����FH�E�H����H�E�H��p�H�E�H��h�H�E�VjA�A��H�����H���E��}�t�E��H�E�H��h�H��H�������H�E�H����H�E�H����H��u0H�E�H����H�U�H��h�H�JH��H��H�="D������tHH�E�H�@H�M�H�U�H��h�H��H���H�E�Hǀh�H�E�H�D��H���z����HH�E�H�@H�M�H�U�H��h�H��H���H�E�Hǀh�H�E�ǀ`���������UH��H�� H�}�u��K��H�E�U�H�E��H������E��}��u*H�E苀���tH�U�H�E�H��H������E��}�t��E���UH��H��H�}��u�U�H�E���H���N����UH��H��@H�}��E�H�Eȋ�(���uH�E�ǀ(�H�Eȋ�(���uJ�H�E�H������E�}��u�E��d
H�E�H�H�����H�E�H�}�u�H�E�ǀ(�H�Eȋ�(���uJ�H�E�H������E�}��u�E��
H�E�H�H��薈��H�E�H�}�u�H�E�ǀ(�H�Eȋ@h�����9H�E�H���H��t:H�E�H���H�@8H��t&H�E�H���H�@8H�U�H���H�U�H��H���H�E�H��pH��t:H�E�H��pH�@0H��t&H�E�H��pH�@0H�U�H��xH�U�H��H���H�E�H���H��t<H�E�H���H�@(H��t(H�E�H���H�@(H�U�H� H�MȾH���H�E�H���H��t:H�E�H���H�@ H��t&H�E�H���H�@ H�U�H���H�U�H��H���H�E�H��H��t:H�E�H��H�@0H��t&H�E�H��H�@0H�U�H��H�U�H��H���H�E�H��(H��t<H�E�H��(H�@(H��t(H�E�H��(H�@(H�U�H��0H�MȾH���H�E�H��H��t:H�E�H��H�@ H��t&H�E�H��H�@ H�U�H�� H�U�H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��XH��tH�E�H�@H�M�H�U�H��XH��H���H�E�H�@XH��tH�E�H�@H�M�H�U�H�RXH��H���H�E�H�@`H��tH�E�H�@H�M�H�U�H�R`H��H���H�E�H��`H��tH�E�H�@H�M�H�U�H��`H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��8H��tH�E�H�@H�M�H�U�H��8H��H���H�E�H��@H��tH�E�H�@H�M�H�U�H��@H��H���H�E�H��HH��tH�E�H�@H�M�H�U�H��HH��H���H�E�H��PH��tH�E�H�@H�M�H�U�H��PH��H���H�E�H��P�H��tH�E�H�@H�M�H�U�H��P�H��H���H�E�H��h�H��tH�E�H�@H�M�H�U�H��h�H��H���H�E�H��X�H��tH�E�H�@H�M�H�U�H��X�H��H���H�E�H��x�H��tH�E�H�@H�M�H�U�H��x�H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��H�H��tH�E�H�@H�M�H�U�H��H�H��H���H�E�H��X�H��tH�E�H�@H�M�H�U�H��X�H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��@�H��tH�E�H�@H�M�H�U�H��@�H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H��X�H��tH�E�H�@H�M�H�U�H��X�H��H���H�E�H��HBH��teH�E�H�@H�M�H�U�H��PBH��H����D�E�H�E�H�����H�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�M�H�U�H��H���H�E�H�H�����H�E�H�}�u�H�Eȋ���tH�Eȋ�������E�H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H�@H�M�H�U�H��H��и��UH��H�� H�}����H�E�H�E�H�������E��}��u*H�E苀���tH�U�H�E�H��H���s��E��}�t��E���UH��H��@H�}؉u�H�U�H�M�H�E�H�E�H�E؋�,�����H�}�tH�E�H���O��H�E�H�}�tH�E�H���8��H�E�H�}�vH�E�H��7����H���t����H�U�H�E�H�H�P
H�E�H��@�H�E�H0�H�E�H�E�H�PH�U���U�H�E��H����v��H�U�H�M�H�E�H��H���w��H�E��H�E��H���v��H�E�ǀ,�H�E�H��@�H�E�H��0�H�}�H�M�H�E�I��H����E�}��u�E��H�E�ǀ,����UH��H��0H�}�u�H�U�H�Mп�;��H�E�H�M�H�U؋u�H�E�H���e����E��}��u*H�E苀���tH�U�H�E�H��H�����E��}�t��E���UH��H�� H�}�u�H�E��}�	���E�H��H��6�H�H��6H��H�E�H�@xH�E��H�E�H���H�E��H�E�H��pH�E��H�E�H��H�E��uH�E�H���H�E��dH�E�H��H�E��SH�E�H���H�E��BH�E�H��(H�E��1H��5�UH��5�LH�E�H��5����H���r����-H�}�uH�E�H��5���H���r����H�E�H���UH��H�}�H�E�]�UH��H��0H�}�H�u�H�U؉M�H�E�H�E苀��unH�}�tL�}�t8H�E�H�@H�U�H�ֿ��H��H�E�H�H�E�H�H��tH�E�H���H�E�H��4H�H�}�t
H�E�����H�}���H�E�H��H��t
H�E�H���H�q4H�E�H�E�H�����H�E��}�t_H�E�H�@H�U�H�M�H��H��H���H��H�E�H�H�E�H�H��t8H�E�H�H�U�H�M�H��H���(��H�E�H�H�E�H���H�E�H�U�H�H�}�tH�E���H�E؉H�E苀��UH��H�}�H�E���]�UH��H�}��u�U�}�t�}�t�H�E��U�Pl�H�E��U�Pp�������]�UH��H�}�u�H�E苀��E�H�E�U䉐��E�]�UH��H��H�}��u�U�H�E���H��������UH��H�}�H�E����]�UH��H�}�H�u�H�E�H�U�H����]�UH��H�}�H�E�H���]�UH��SH��(H�}؉u�H�}�u
�����H�E�H�@`H�E�H�E�H�H���x��H�E��vH�E؋X0H�E�H�@H��H���p��9�uG�}�u%H�E�H�@�<_tH�E�H�@�<^u��8�}�uH�E�H�@�<^u��H�E�H���.x��H�E�H�}�u��H��([]�UH��H�}�H�E��@8������]�UH��H��H�}�H�E�H��0H����w��H��������UH��H��pH�}��u�H�U�H�E��E�H��H�P�H��Hп�H��Hk�H)�H��H��H��H��H�E��E���E�H��H��H�E�H�H�@�E�H��H��H�E�H�����������	�����E�H��H��H�E�HЋU�H��H�U�Hʋ@��E�H��H��H�E�H�H�P�E�H��H�E�H�f�P�E�H��H�E�H�f�@�F�E�H��H��H�E�H�H�@H�@`�U�H��H�U�Hʋ���E�H��H�E�H�f�@�E�H��H�E�H�f�@H�}����E�H��H��H�E�H�H�@H�@`H�E���E�H��H��H�E�H�H�@H�@�U�H��H�U�Hʋ���E�H��H�E�H�f�@�E�H��H�E�H�f�@H�}�uK�E�H��H��H�E�H�H�@H�@H�E��,H�}�tH�E�H�0����H���l������������E��E�;E����H�E�H�E��E��E����E�H��H��H�E�H�H�P�E�H��H��H�E�H�H�@H9����E�H��H��H�E�H������t�����q�E�H��H��H�E�H�H�@��H��tw�E�H��H��H�E�H�H�@��H��uZ�E�H��H��H�E�H�H�@�H��虿���������U�H��H��H�U�H�H�JHcЋE�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@��H��t�E�H��H��H�E�H�H�@��H��ub�E�H��H��H�E�H�H�@�H��������t����E�H��H��H�E�H�H�HHc֋E�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@��H��tz�E�H��H��H�E�H�H�@��H��u]�E�H��H��H�E�H�H�@H���K�����t����E�H��H��H�E�H�H�HHc֋E�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@�@T��u�E�H��H��H�E�H�H�@�@@��t-�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʀH�P�E�H��H��H�E�H�H�@H�@`�������E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P���E�H��H��H�E�H�H�@��H��tr�E�H��H��H�E�H�H�@��H��uU�E�H��H��H�E�H�H�@H�������������U�H��H��H�U�H�H�JHcЋE�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@H�@�����u5�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P�������E�H��H��H�E�H�H�@H��t�E��E��E�;E������}�tH�E�H�E��H���W���H�E��‹M�H�E�H��H�������E�H�E��H���+���H�U�H�E�H)�H��Hi����HE�H�U�H�E�H��H)�H��S㥛� H��H��H��H��H��?H��H)�H��HE��}���E���E�H��H��H�E�H�����������#�����E�H��H�E�H��@�U�H��H��H�U�H�H��H�B�E�H��H�E�H�f�@�E�H��H��H�E�H�H�@H���^�E��U�E�H��H�E�H��@�����t&��E�H��H��H�E�H�H�@H�@`H��莪��ۋE�H��H�E�H��@�����t-�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P�E�H��H�E�H�f�@��E�H��H�E�H��@�����t&��E�H��H��H�E�H�H�@H�@H������ۋE�H��H�E�H��@�����t-�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P�E�H��H�E�H�f�@���E��E�;E������H�}�~
�}��*����E���UH��H�}�H�E���]�UH��H�}�H�}�u��"H�E�H���H��u��H�E�H���]�UH��H�}�H�E������PH�E������H�E����H�E����]�UH��H�}�H�u�H�E�H�� �E�H�E�H�H�E�E�����H�E��E�����H�E�H����E�����H�E�H���H�E�H���U��H�E�H��H��H�E�H���H�E�H��H��H�E�H���H�E�H��H��H�E�H���H�E�H��H�U�H�E�H�H�PH�E�H��]�UH��H�� H�}�u�H�E�H�� H���m��H�E��H�E��@9E�tH�E�H���l��H�E�H�}�u���H�E���UH��H�� H�}�u�H�E�H�H�@`H�E��U�H�E��H�����H�E�H�}�t$H�E�H����l��H�E�H�@H�M�H�U�H��H��А��UH��H�� H�}�u�H�E�H�H�@`H�E�H�E�H�H�@`H�@H�U�H�H�R`H�ֿ ��H�E�H�}�uH�E�H��&�����H���Wc���&H�E�U�PH�E�H�U�H�� H��H���k�����UH��H��@H�}�H�u�H�U�H�E�H�H�@`H�E�H�E������i��e}1����w�'-���vH�E�H�p&���H����b�����H�E�H��H���c���E�H�E��<etH�E��<guF�U�H�E؉�H������H��t0H�E�H�@H�M�H�U�H��H��ЋU�H�E؉�H���?�����yH�E�H�@H�U�H�ֿ0��H�E�H�}�uH�E�H��%�����H���b���>H�E�H�U�H�P H�E�H�U�H�P(H�E�U�PH�E�H�U�H��H��H���/j�����UH��H��@H�}�H�E�H�H�E�H�E�H�@`H�E�H�E�H�Eȋ����t��t!�9H�E�ǀ�H�E�H�@PH�E��wH�E�ǀ�H�E�H�@PH�E�H�}���H�E�H�@H�H��H)�H�E�H�@HH�P@H�E�H�H�PH�E�H�����H�E�H�}��u	H�E��H�}�y H�E�H�E�H��$��H����`���H�E�H�PHH�E�H�H�E�H�PHH�E�H�@HH��t
�����iH�E�H��DH���a����H�EȉPXH�Eȋ@X=�8vH�E�H�n$���H���q`���%H�E�H�@H�U�H�MȋIX��H��H���H�E�H�}�uH�E�H�?$�����H���,`����H�E�H�@HH�E�H�@`H�E�H�U�H�PPH�E��H����H�E�H�Eȋ@X��H9E��H�Eȋ@X�4H�E��H����H�H�E�H�}��u���H�Eȉ��H�}����H�E��8H�Eȋ@X��H�E�H�@`H��H)�H�E�H�P`H�E�H�H�E�H����H�E�H�}��uH�E�ǀ�H�E���H�}�yDH�E�H�@H�M�H�U�H��H���H�E�H�@PH�E�H�E�H�#��H����^���H�E�H�P`H�E�H�H�E�H�P`H�Eȋ@X��H�E�H�@`H9��+���H�E�H�@PH�E�����E�H�Eȋ@X��H�M�H�E�H��H���H���H�H�E�H�}�tH�E�H�@H�M�H�U�H��H���H�E���E���UH��H��PH�}�H�E�H�@H�E�H�E�H�H�@`H�E�H�E�HxH����f��H�E���H�E�H���f��H�E�H�E��P0H�u�H�M�H�E�I��eH����E�}�t&H�E��P0H�u�H�M�H�E�I��gH����E�}�uH�E�H�@H�M�H�U�H��H����"H�E�H�@ H��tH�E��P0H�E��H�����H�E�H���@f��H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}��%������UH��H��0H�}��U�H�M�L�EЈE�H�E�H�H�@`H�E�H�E�H��H���e��H�E�H�}���������H�E�H�@ �8E�u[�}�tH�E��@9E�uIH�E�H�P H�E�H�H�E�H�P(H�E�H�H�E�H���re��H�E�H�@H�M�H�U�H��H��и� H�E�H���$e��H�E�H�}��z����������UH��H��0H�}��U�H�M�L�EЈE�H�E�H�H�@`H�E��u�H�}�H�M؋U�H�E�I��H��������uJ��VH�E�H���
����E�}�y�E��<�u�H�}�H�M؋U�H�E�I��H�������u��H�E�����t�����UH��H��@H�}�u�H�U؉M�L�E�L�M�H�E�H�@hH�����蕳��H��H�E�H�Ph���E��K�E�Hc�H�E�H����H�}�H�MЋU�H�E�I��H������uH�E�H�@h���E��E�;E�|�H�E�H���
����E��}�y�}��tH�E�H�@h�E���}�O����H��H�E�H�@hH)�H�к<H)�H��H�E�H�}�H�E�H�@h������5�}��u�E��*H�E�H�H�@`�����
���H�E�H�@h����UH��H�� H�}�H�u�H�E�H�E��E�H�}�uH�E�H���[�����H�E�H�#E���H�E��H��� \��H�E�H���H��tH�E�H�PH�E�H��H����H�E�H���H��t0H�E�H�@��H�E��H����[��H�E�H�@��H�E��H���[��H�E�H���H��tH�E�H�@ ��H�E��H���[��H�E�H���H��t0H�E�H�@(��H�E��H���m[��H�E�H�@0��H�E��H���U[��H�E�H+E���UH��H�� H�}�H�u�H�E�H�E�H�E�8�H���N���H�E�H���Y����H�E�H�H�E�H�E�H���H��tH�E�H����Y��H��H�E�H�PH�E�H�E�H���H��t6H�E�H���gY����H�E�H�PH�E�H�E�H���LY����H�E�H�PH�E�H�E�H���H��tH�E�H���"Y����H�E�H�P H�E�H�E�H���H��t6H�E�H���X����H�E�H�P(H�E�H�E�H����X����H�E�H�P0H�E�H�E�H+E���UH��H��0H�}�H�u�H�U�H�M�H�E�H�H�E�H�E�H�@PH��tH�E�H�@H�M�H�U�H�RPH��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H�@H�M�H�U�H��H��А��UH��H��PH�}�H�E���T���uLH�E�H��X�H��tH�
�$��H�5UH�=Y����H�E�HǀX�H�E�ǀT�H�E�H��X�H�E�H�E���T�����H�E�H��jA�A��� �H�5
H���³��H��H��H�E�H��`�H�E�H��`�H��u[H�E�H�������uH�E�H������H���MV���&H�E�H�����H���3V��H�E�ǀT����H�E�ǀT�H�E���T�����H�E�H��`�A�H�
��	H�5�H������E�}��u"H�E�H������H���U����d�}�tH�E�H�����H���U����H�E�ǀT�H�E���T����H�E�H��`��H�����H�H�E�H�}��u"H�E�H�E����H���"U�����H�E��`H���g^��H��H�E�H��X�H�E�H��X�H�E�H�}�uH�E�H������H����T���H�E�H��`�H�E�H�H�E��@H�E�Hh��H���zV��H�E�ƀl�H�E�Hh�H���H���TV��H�E�ǀt�H�E�ǀT�H�E���T�����H�E���t��	)‰�Hc�H�E�H��h�H�E���t�H�H�4H�E�H��`�H��H��H����H�E�H�}��u"H�E�H�F����H����S����H�}�yH�E�H�>�����H���S����H�E���t���H�E�Љ�H�E���t�H�E���t���	uH�E�ǀT�H�M�H�U�H�E�I��H�Ѻ�H�����H�H�E�H�}��u
���H�}�t H�E�H�E�H����H���S���HH�E�H��w5H�E�H�����H����R��H�E�H�@H�M�H�U�H��H����	H�E�H��H�E�H�E�H���S����H�E�PH�E�H�E�@��vKH�E��@�>H�E�H���US����H�E�H�E�H�E�HE�H�E�H���6S����H�E�H�E�H�E�HE�H�U�H�E�H�H9E�r�H�E�H�@H�M�H�U�H��H���H�E�H�H�U�H�PhH�E�H�H�y!H�PpH�E�ǀT�H�E�HǀX�H�E�Hǀ`�H�E�H��0H����Y��H�E��y�H�E�H��`�H���Y����t�H�E�Hǀ`�H�E�H��X�H��t.H�E�H�@H�M�H�U�H��X�H��H���H�E�HǀX�H�E�ǀT����UH��H��0H�}�H�}�u
��H�E؋@h����uH�E�H�����H���P����d�����H�E�H�E�H�����H�E�H�E؋����t4H�}�u-H�E�H���:������uH�U�H�E�H��H���|���E�}�t�H�E���UH��H�� H�}�H�E�H�H�@`H�E�H�E�H�@PH��t(H�E�H�@H�M�H�U�H�RPH��H���H�E�H�@PH�E�H�@xH��t(H�E�H�@H�M�H�U�H�RxH��H���H�E�H�@xH�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H��H��t.H�E�H�@H�M�H�U�H��H��H���H�E�HǀH�E�H��H��t.H�E�H�@H�M�H�U�H��H��H���H�E�HǀH�E�H�� H��t.H�E�H�@H�M�H�U�H�� H��H���H�E�Hǀ H�E�H��0H��t.H�E�H�@H�M�H�U�H��0H��H���H�E�Hǀ0H�E�H��@H��t.H�E�H�@H�M�H�U�H��@H��H���H�E�Hǀ@H�E�H��PH��t.H�E�H�@H�M�H�U�H��PH��H���H�E�HǀPH�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���(H�E�H�H�����E�E���UH��H�� H�}�H�}�u�����^��M���H�E�H�E�H���z����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H������E��}�t��E���UH��H��H��h���H��`���H��X�����T���L��H���D��P���H��h���H�H�E�H�E�H�@`H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���P��������E�H��h����@p�����}�t���������H��X���ЍP
H��h������H��h���Hǀ�H�E�H�@H�U�H��h��������H��H���H��H��h���H�PxH��h���H�@xH�E�H��h���H�@xH��u"H�E�H�������H���jK����4�}�t����@H�H���H�E�H��h�������P�H�E���H���ZM���}�t���H�E�H�PH�U��H��h����@�HH��h����JH��h������H��h������H�E���H���L��H��X���H��`���H�E�H��H���M���}�t5��T���H�E���H����L��H�E�H�U�H��H���6�H��H�E�H�H�E�H��h����@pH��h����@p���fH��h��������H��h���H���H��H)�H��h���H�PxH��h���H���H�H�E�H�����H�E�H�}��u"H�E�H�M����H����I����H�}�yaH�E؉�H�E�H�R��H���I��H�E�H�@H�M�H��h���H�RxH��H���H��h���H�@xH��h����@p��<H��h���H���H�E�H�H��h���H���H��h��������H��h���H���H9�u<H�E�H�@H�M�H��h���H�RxH��H���H��h���H�@xH��h����@pH��h����@p����H��h������H�u�H��x���H��h���I��I�ȉ�H���H����H�H�E�H�}��u"H�E�H�7����H���tH����>H��h����@pH�}�t%H�E؉�H�E�H�"��H���:H����H��x����<e�;�E�H�E�H��w=H�E�H����H���G��H�E�H�@H�M�H��x���H��H��и�H��x���H��H���H����H��h����P@H��h����@@��u}H�E�H�@H�M�H��x���H��H���H��h������H�u�H��x���H��h���I��fH����H�H�E�H�}��uH��h����@p��H�}�u�E��}�t=H�E�H�+���H���G��H�E�H�@H�M�H��x���H��H��и�H�E�H��	w=H�E�H��
���H���F��H�E�H�@H�M�H��x���H��H��и�pH�E辈H����O��H�E�H�}�u=H�E�H��
�����H���hF��H�E�H�@H�M�H��x���H��H��и��}�����H�EЉ�(H��x���H��H���F����H�E�H�� H�E�H�� H=vH�E�Hǀ H�E�H�� H�U�H��	H9�vH�E�H�P�H�E�H�� H�E�H�� H��x���H�r	H�U�H�J H��H������H�E�H�@H�M�H��x���H��H���H�E�H��h���H��0H��H���M��H�E�H��h���H�PH�E�Hǀ0H�E�Hǀ8H�E�����UH��H��PH�}�H�uЉU�H�M�L�E�D�M�H�}�u
����&���H�E�H�E�A�‹Ű}�H�M�H�u�H�E�A��I��D��H������H�E�H�E�H�H�@`�����tFH�}�u?H�E�H�H�@`H���������u'H�E�H�H�@`H�U�H��H���P����E�}��w���H�E���UH��H��H��h���H��`���H��X���H��h���H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H��h���H0H�E�H�E؋���������r����H�E�H�@(H����H�E�H�@(H9�X���HF�X���H�E�H�E�H�PH�E�H�H H�E�H�@(H)�H��H�H�U�H��`���H��H���\���H�E�H�@(H+E�H��H�E�H�P(H�E�H�H�E�H�H�E�H�H�E�H�@(H��u(H�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�E��H�E��@0����H�E�H�PH�E�H�H)�H��H�E�H��X���H��H�E�H�}��vH�E��H�E�H;E�vH�E�H+E�H�E�H�E�H���H��虙��H�E�H�E�H;E��H�E�4�H�E�H���H���;��H�H�E�H�}��u,H�E�H�@(H��tH�
*�HH�5sH�=�	�:���H�}��u+H�E��@0��tH�
��IH�5AH�=�	����H�}���H�E�����H�}��HFE��E�H��h���H�� ���E�H�E�H�@H�UȋM�H��8H��H���H�E�H�}�uH�E�H�T	�����H���wA��H��Y�U�H�E�H�P�U�H�E�H�P(H�E�H�@ H�E�H��4H�E��E��P�H�E���H���cC��H�E�H�PH�U��H�E؋@�HH�U؉J�E�H�E�U��P0�U�H�E���H���%C��H��h���H�� H��h���H�H H�E�H��H���5C��H�E�H�PH�E�H��H�����H�E�H�P�E�H�H�E�H�P�U�H�E���H���B��H�E�H��h���H��xH��H���H���E�H)E�H�}��}���H�E�ǀ�H��h���HxH����H��H�E��H�E�H�@(H����H�E�H�@(H��H�E�H�@ H�P0H�E�H�H�PH�EоH�����H�E�H�}�yH�E�ǀ�H�E��H�E�H�@(H+E�H��H�E�H�P(H�E�H�P H�E�H�H�E�H�P H�E�H�@(H��uH�E�H���LH��H�E�H�}��D�����H�E�ǀ�H��h���HxH���H��H�E��H�E�H�@(H��t��H�E�P0H��p���H��x���H�E�I��I�ȉ�H�
�H���d�H�H�E�H�}�yH�E�ǀ�H�E��H��x��������et��g���TH�E�H���G��H�E�H�@H�M�H�U�H��H���H��h���H���@�H��x���H��H���Q?���E�H�E�H�@H�M�H��x���H��H��Ѓ}�uH�E��@0��%H�E؋U�P@H�E�H����H���>��H��H��x���H��H����>���E�E�H��p���H��	H9�vH�E�H�����H����=��H���U�H�E�H�@H9�vH�E�H�����H���=��H���U�H�E�H�@H9�t$H�E�H�P�M�H�E�H�@H)�H��H�H�E�H�P�E�H9�X���s?�E�H+�X���H��H�E�H�P(H��X����E�H��x���H�E�H�PH��p���H�E�H�P �H�E�H�@ �U�H��x���H�H	H��`���H��H���ה��H�E�H��E�H�H�E�H�H�E�H�@ H��uH�E�H�@H�M�H��x���H��H���H�E�H���sE��H�E�H�E�H���E��H�E�H�@H�M�H�U�H��H���H�E��}�t�E��WH�E�H�E��H�E�H�����H���L<��H��1H�}�������H�
"
�H�5kH�=��2������UH��H��0H�}�H�u�H�U�H�}�u	H�����x�����H�E�H�U�H�M�H�E�H��H���o���H�E�H�}��uDH�E�H�@H�H�@`�����t+H�E�H�@H�H�@`H�U�H��H���j���H�H�E�H�}�t�H�E���UH��H���H��X���H��P���H��H���H��@���L��8���L��0���H��X���H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H��X���H�� ��
�E�H�E�����H��X�����0����H��X���H��@H�E�H�E�H���;����H�E�H�E�H��H�E�H�E�H�E�H�E�H;�H���r
H�E�����3H�M�H�U�H��P���H��H���[���H��P���H�E�H��H�U�H�E�H�H�E�H�E�H���(;����H�E�H�E�H��H�E�H��@���tWH��8���vMH�E�H�E�H�E�H;�8���r
H�E�����H�M�H�U�H��@���H��H���͑��H��@���H�E�H��H�U�H�E�H�H�E�H��0���tH��0����8�H���
���H�U�H��0���u	H��`����H��0���H��H���e�H�U�H�H�H�E�H�U�H��X���H��@H��X�����0�P�H��X�����0H��X�����0��u"H�E�H�@H�M�H��X���H��8H��H���H�E��H�E�H�@H�M�U�H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E�H�R�����H���8��H��=�E܍P�H�E���H���:��H�E�H�PH�U��H�E�@�HH�U�JH�U�H�E�H�E���H���:��H��X���H�� H��X���H�H H�E�H��H���:��H�E�ǀ�H�E������M�H�E�H���H�E�H���w��H�E�H�}��u	H�E��k�E�H9E�t[H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E�H�T�����H���q7��H��H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E�H�u�H�M�H�E�I��I�ȉ�H��H���d��H�H�E�H�}��u	H�E��H�}�t0H�E�ǀ�H�E���H�E�H�����H���6��H��LH�E��<e��H�E�H��H���o7����H�E�H�E�H�@H�M�H�U�H��H���H�}�uH�E�ǀ����H�E���H�E�P@H�E�ǀ�H�E�H�#����H��� 6��H��H�E�ǀ�H�E�H��H����6���E��}�uH�E�H�@H�M�H�U�H��H��и�pH��X����U���0H�U�H��X���H��8H�E�H�P	H��X���H��@L��0���H��8���H��@���H��H���H��P���H��X���M��I��H�������UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�}�u
�������\���H�E�L�E�H�}�H�M�H�U�H�u�H�E�M��I��H������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H��蜭���E��}�t��E���UH��H��H��x���H��p���H��h���H��x���H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H��h���H�E�H�E苀����H��x���H��8H��x���H��0H)�H��x���H��@H�H�E�H��h���H;E�rH�E�H�p���H�E�H)�h����HDžh���H�E�ǀ���0uH��h���0uHF�h����E�H��x���H�� �‹E�Ѓ��E�H�E�H�@H�U؋M�H��8H��H���H�E�H�}�uH�E�H�4������H���W3��H��9�U�H�E�H�PH�E�H�@ �U�H�E�H�P(H�E�H��4H�E��E��P�H�E���H���C5��H�E�H�PH�U��H�E�@�HH�U�J�E�H�E��U��P0�U�H�E���H���5��H��x���H�� H��x���H�H H�E�H��H���5��H��x���H��8H�E�H��H���Z��H��x���H��8�E�H�H��x���H��8�U�H��p���H�E�H��H���4��H�E�H��x���H��xH��H���:���E�H�p����E�H)�h���H��h����F���H��x���HxH���:��H�E��H�E�H�@(H����H�E�H�@(H��H�E�H�@ H�P0H�E�H�H�PH�E�H���D��H�E�H�}�y	H�E��H�E�H�@(H+E�H��H�E�H�P(H�E�H�P H�E�H�H�E�H�P H�E�H�@(H��uH�E�H���:��H�E�H�}��R�����H�E�ǀ�H��x���HxH����9��H�E��H�E�H�@(H����H�}���H�E��P0H�u�H�M�H�E�I��eH�����H�H�E�H�}�yH�}��uH�E�ǀ�H�E��H�E�H��H���{1���E�H�E�H�@H�M�H�U�H��H���H�E�U��P@�}�utH�E�H�@HE�H��x���H��0H�E�H�@H�H��x���H��0H�E�H���8��H�E�H�E�H���9��H�E�H�@H�M�H�U�H��H���H�E�H�E��H��x���H�����H��x���H��0H��x���H��@H)�H��x���H��0H��x���H��0H��x���H��8H��x���Hǀ@H�E�H������H���{/��H��`H�}��V��������H��x���H��@HE�H�}�t0H�E�H9E�HFE�H�E�H�E�H�U�H)�H��x���H��@H�E�����UH��H��0H�}�H�u�H�U�H�}�u	H�����x�����H�E�H�U�H�M�H�E�H��H������H�E�H�}��uDH�E�H�@H�H�@`�����t+H�E�H�@H�H�@`H�U�H��H���j���H�H�E�H�}�t�H�E���UH��H��`H�}�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� ��"�E�H�E�����H�E�H�@H�M�U�H��H���H�E�H�E�H�E�H�}�uH�E�H�������H����-���K�E܍P�H�E���H���/��H�E�H�PH�U���H�E�@�HH�U�JH�U�H�E�H�E���H���/��H�E��H�5�H����/��H�E�H�� H�E�H�H H�E�H��H���/��H�E�ǀ��H�E�H���H�E�H�E������M�H�U�H�E�H�����H�E�H�}��tH�}�x"�E�H9E�}H�E�H�U�H��������=H�E�H�@H�M�H�U�H��H���H�E�Hǀ�H�}�y+H�E�ǀ�H�E�H�_������H���|,����H�E�ǀ�H�E�H�u�H�M�H�E�I��eH�����H�H�E�H�}��u	H�E��H�}�t+H�E�ǀ�H�EЉ�H�E�H�m���H���+���hH�E�ǀ�H�E�H��H���,���E�H�E�H�@H�M�H�U�H��H��Ѓ}�t$H�E�ỦP@H�E�H�2����H���+������UH��H�� H�}�H�}�u�����f�裃��H�E�H�E�H������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H������E��}�t��E���UH��SH��xH�}�H�u��U�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� �Ã}�tH�E�H�H���P����؃�
�E�H�E苀����H�E�H�@H�M؋U�H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E�H��������H���9*�����EԍP�H�E���H���U,���}�t�
��H�E�H�PH�U��H�E�@�HH�U�JH�U艂�H�E苐�H�E���H���,��H�E�H�� H�E�H�H H�E�H��H���,���}�t!H�E�H�U�H��H���L��H��H�E�H�H�E�H�E�ǀ�H�E苀������M�H�E�H���H�E�H���ټ��H�E�H�}��u	H�E����E�H9E�tkH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��}�t	H����H���H�M�H�¾����H���(���bH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E苐�H�u�H�M�H�E�I��I�ȉ�H�W��H�����H�H�E�H�}��u	H�E���H�}�t.H�E�ǀ�H�Eȉ�H�E�H�����H���(���H�E�ǀ�H�E��<eu\H�E�H��H���(���E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��XH�E�UĉP@H�E�H������H���'���4H�E�H�PH�E�H��H���a��H�E�H�@H�M�H�U�H��H��иH��x[]�UH��H��0H�}�H�u�U�H�}�tH�}�u�����p��W��H�E�U�H�M�H�E�H��H������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H��觟���E��}�t��E���UH��H��H�}�H�u�H�}���H�E�H��0H9E�uH�E�H��8H9E���H�E�H�U�H��8H�E�H��8H�E�H��0H�E�H�����H�E�H��XH��tlH�E�H�@H�H�@`H�@H�U�H�RH�H�R`H��H�U�H��HH��H���H�E�HǀPH�E�H��PH�E�H��XH�E�HǀHH�E�ƀ`������UH��H��H�}�H�u�H�U�H�E�H��H����}�����UH��H�}�H�}�u��H�E�H��0]�UH��H�}�H�}�u��H�E�H��0]�UH��H��@H�}�H�E�H�H�E�H�E�H�@`H�E�H�E�H��H����-��H�E�H�E�H�� H���-��H�E��XH�E�H���-��H�E�H�E�H����-��H�E�H�@H�M�H�U�H�R H��H���H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}�u��<H�E�H���\-��H�E�H�E�H���o-��H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}�u����UH��H��PH�}�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� ��
�E�H�E��E�H�E���h����H�E�H�@H�M�U�H��H���H��H�E�H��pH�E�H��pH�E�H�E�H��pH��u.H�E�ǀhH�E�H��������H���#���E���E܍P�H�Eȉ�H���%��H�E�H�PH�U��H�E�@�HH�U�JH�U���lH�E���lH�Eȉ�H���d%��H�E�H�� H�E�H�H H�E�H��H���z%��H�E�ǀhH�E���h�����M�H�E�H��pH�E�H���b����E��}��u�E��8�U܋E�H�H9�t+H�E�ǀhH�E�H��������H���"���E��H�E�ǀhH�E�H�@H�M�H�U�H��pH��H���H�E�HǀpH�E���h��ucH�E���lH�u�H�M�H�E�I��eH�������E��}��u�E��~�}�t�M�H�E�H�\���H����!��H�E�ǀhH�E�H��u)�}���H�
���Z	H�5��H�=8��w��H�E�H��H���s"���E�H�E�H�@H�M�H�U�H��H��Ѓ}�t3�U�H�E�P@H�E�ǀhH�E�H�F����H���C!���E�H�E�H���!*��H�E���(��u/H�E���0��t!H�E�H�@H�M�H�U�H��8H��H����/H�E�H��HH��tH�E�H�@H�M�H�U�H��HH��H���H�E�H���v��H�E�ǀ�H�E�ǀhH�E�H�@H�M�H�U�H��H��ЋE���UH��H�� H�}�H�}�u�����f��x��H�E�H�E�H������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H������E��}�t��E���UH��H��`H�}�H�u�H�U�H�E�H�H�E�H�E�H�@`H�E�H�E���
�E�H�E��������H�E�H�@H�M�U�H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E�H�������H���]���-�E�P�H�EЉ�H���y!��H�E�H�PH�U��
H�E��@�HH�U��JH�U����H�E����H�EЉ�H���7!��H�U�H�M�H�E�H��H���X!��H�E�ǀ�H�E���������M�H�E�H���H�E��H���@����E�}��u�E��o�U�E�H�H9�tYH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E�H�������H���9���	H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E����H�u�H�M�H�E�I��eH������E�}��u�E���}�t(H�E�ǀ��M�H�E�H�����H������hH�E�ǀ�H�E�H��H���T���E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��"�U�H�E��P@H�E�H�.����H���+����UH��H��0H�}�H�u�U�H�}�u�����h��4u��H�E�U�H�M�H�E�H��H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H��茕���E��}�t��E���UH��H��pH�}�H�u��U�H�M�D�E�L�M�H�E�H�H�E�H�E�H�@`H�E�U��E��H�E��@��v���Ѓ��E�H�E��@��wH�E�H�/����H������H�E�������GH�E�H�@H�M�U�H��H���H��H�E�H���H�E�H���H�E�H���H�E�H���H��uH�E�H��������H�������E�P�H�E�H���H�����H�E�H���H�HH�U�H����H�E��@�HH�U��JH�U����H�E����H�U�H�����H���a���U�H�E�H���H�E�H��H���|���U�H�E�H���H�E�H��H���_��H�E��@��vH�E���H�E�H���H�����H�E�ǀ�H�E��������H�E�H���H�E�H���H)�H��H��H�E�H���H�E�H������H�E�H�}��u	H�E����E�H9E�tYH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E�H�b������H������dH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E����H�u�H�M�H�E�I��eH���T���H�H�E�H�}��u	H�E���H�}�t.H�E�ǀ�H�E؉�H�E�H�D���H���R���H�E�ǀ�H�E�H��H������E�H�E�H�@H�M�H�U�H��H��ЋU�H�E��P@�}�t2�}�t�}�uC�E��VH�E�H�b����H�������E��9H�E�H������H������E��H�E�H������H������E���E���UH��H��@H�}�H�u�U�H�M�D�E�L�M�H�}�u�����v��p��H�E�L�Eȋ}�H�MЋU�H�u�H�E�M��A��H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H���ݐ���E��}�t��E���UH��H��`H�}�H�u�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� ��%�E�H�E�����H�E�H�@H�M�U�H��H���H�E�H�E�H�E�H�}�uH�E�H��������H���W���!�E܍P�H�E���H���s��H�E�H�PH�U���H�E�@�HH�U�JH�U�H�E�H�E���H���1��H�E��H�5��H���Q��H�E�H�� H�E�H�H H�E�H��H���/��H�E�ǀ��H�E�H��H�E�H�E������M�H�U�H�E�H���
���H�E�H�}��tH�}�x"�E�H9E�}H�E�H�U�H�������H�E�H�@H�M�H�U�H��H���H�E�HǀH�}�y+H�E�ǀ�H�E�H��������H�������H�E�ǀ�H�E�H�u�H�M�H�E�I��I�ȉ�H����H������H�H�E�H�}��u	H�E��dH�}�t.H�E�ǀ�H�EЉ�H�E�H�����H���e���/H�E��<eu`H�E�H��H���$���E�H�E�ǀ�H�E�H�@H�M�H�U�H��H��ЋU�H�E�P@H�E�H������H�������H�E�H��\wCH�E�H�@H�M�H�U�H��H���H�E�ǀ�H�E�H������H������wH�E�ǀ�H�E�H��H�����H��H�E�H�H�E�H��
H�����H��H�E�H�PH�E�H��H�����H��H�E�H�PH�E�H��H���h��H��H�E�H�PH�E�H��%H���M��H��H�E�H�P H�E�H��-H���2��H��H�E�H�P(H�E�H��5H�����H��H�E�H�P0H�E�H��=H�����H��H�E�H�P8H�E�H��EH������H��H�E�H�P@H�E�H��MH�������E�H�E�H��UH�����H��H�E�H�PP�E�H���H��H�E�H�PHH�E�H�@H�Uȃ�H	�H�E�H�PHH�E�H�@H�M�H�U�H��H��и��UH��H�� H�}�H�u�H�}�tH�}�u�����m��6k��H�E�H�U�H�E�H��H������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H��艋���E��}�t��E���UH��H��pH�}�H�u��U�H�M�H�E�H�H�E�H�E�H�@`H�E�E���$�E�H�E�������H�E�H�@H�M�U�H��H���H�E�H�E�H�E�H�}�uH�E�H�;������H�������E�P�H�E���H���,��H�E�H�PH�U���H�E��@�HH�U��JH�U���H�E���H�E���H������H�E��H�5��H���
���U�H�M�H�E�H��H������H�E�ǀ�H�E�H��H�E�H�E��������M�H�U�H�E�H���Ҥ��H�E�H�}��tH�}�x"�E�H9E�}H�E�H�U�H�������H�E�H�@H�M�H�U�H��H���H�E�HǀH�}�y+H�E�ǀH�E�H��������H������H�E�ǀH�E���H�u�H�M�H�E�I��I�ȉ�H����H���ش��H�H�E�H�}��u	H�E��dH�}�t.H�E�ǀH�E؉�H�E�H�����H���*���/H�E��<eu`H�E�H��H�������E�H�E�ǀH�E�H�@H�M�H�U�H��H��ЋU�H�E��P@H�E�H������H�������H�E�H��\wCH�E�H�@H�M�H�U�H��H���H�E�ǀH�E�H�m����H���r���wH�E�ǀH�E�H��H���}��H��H�E�H�H�E�H��
H���c��H��H�E�H�PH�E�H��H���H��H��H�E�H�PH�E�H��H���-��H��H�E�H�PH�E�H��%H�����H��H�E�H�P H�E�H��-H�����H��H�E�H�P(H�E�H��5H������H��H�E�H�P0H�E�H��=H�����H��H�E�H�P8H�E�H��EH�����H��H�E�H�P@H�E�H��MH������E�H�E�H��UH���x��H��H�E�H�PP�E�H���H��H�E�H�PHH�E�H�@H�UЃ�H	�H�E�H�PHH�E�H�@H�M�H�U�H��H��и��UH��H��0H�}�H�u�H�U�H�M�H�}�tH�}�u�����q���e��H�E�H�E؉�H�U�H�u�H�E�H�щ�H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H���B����E��}�t��E���UH��H��H��x���H��p�����l���H��`���H��x���H�H�E�H�E�H�@`H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���l����‹�l���Ѓ�
��H�E�H��x��������	H�E�H�@H�M�H�U�H��H���H�E�H�E�H�E�H�}�uH�E�H��������H���g���H��`�����@H�E�H�E�P�H�E���H���t��H�E�H�PH�U��H��x����@�HH��x����JH��x�����(H��x�����(H�E���H���&����l���H��p���H�E�H��H���B��H�E�H�U�H��H���|���H��H�E�H�H�E�H��x���ǀ�H��x���H�� H�E�H��x���������H�M�H�U�H�E�H������E܃}��uH��x���H�U�H�� �E��h�E�H�H9E�tFH�E�H�@H�M�H�U�H��H���H��x���ǀH�E�H��������H����
���H�E�H�@H�M�H�U�H��H���H��x���ǀH��x���Hǀ H��x�����(H�u�H�M�H��x���I��eH���A����E܃}��u�E���}�t+H��x���ǀ�M�H�E�H�7���H���E
���nH��x���ǀH�E�H��H������E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��%�U�H��x����P@H�E�H������H����	����UH��H��0H�}�H�u�U�H�M�H�}�u�����i���a��H�E�H�MЋU�H�u�H�E�H���5����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H���1����E��}�t��E���UH��H��`H�}�H�u��U�H�E�H�H�E�H�E�H�@`H�E�E���
��H�E�H�E���,����H�E�H�@H�M�H�U�H��H���H��H�E�H��0H�E�H��0H�E�H�E�H��0H��uH�E�H�������H������,H�E�P�H�EЉ�H���
��H�E�H�PH�U��H�E��@�HH�U��JH�U���8H�E���8H�EЉ�H���w
���U�H�M�H�E�H��H���
��H�E�ǀ,H�E���,����H�M�H�E�H��0H�E��H��耛���E�}��u�E��m�E�H�H9E�tYH�E�H�@H�M�H�U�H��0H��H���H�E�Hǀ0H�E�ǀ,H�E�H�������H���{���	H�E�H�@H�M�H�U�H��0H��H���H�E�Hǀ0H�E�ǀ,H�E���8H�u�H�M�H�E�I��eH���Ъ���E�}��u�E���}�t(H�E�ǀ,�M�H�E�H�����H�������hH�E�ǀ,H�E�H��H������E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��"�U�H�E��P@H�E�H�p����H���m����UH��H��0H�}�H�u�U�H�}�u�����h��v^��H�E�U�H�M�H�E�H��H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����~���E��}�t��E���UH��H��`H�}�H�u��U��M�L�E�H�E�H�H�E�H�E�H�@`H�E�}�uH�E�H�H���4��������E�Ѓ�
��H�E�H�E���<���2H�E�H�@H�M�H�U�H��H���H��H�E�H��@H�E�H��@H�E�H�E�H��@H��uH�E�H��������H�������H�E�P�H�EЉ�H���/���}�t�}�u"H�E�H�PH�U��	� H�E�H�PH�U���H�E�H�PH�U��H�E��@�HH�U��JH�U���HH�E���HH�EЉ�H������U�H�M�H�E�H��H�������}�u!H�E�H�U�H��H������H��H�E�H�H�E�H�E�ǀ<H�E���<����H�M�H�E�H��@H�E��H��街���E�}��u�E����E�H�H9E�tYH�E�H�@H�M�H�U�H��@H��H���H�E�Hǀ@H�E�ǀ<H�E�H��������H������oH�E�H�@H�M�H�U�H��@H��H���H�E�Hǀ@H�E�ǀ<H�E���HH�u�H�M�H�E�I��I�ȉ�H�R��H��葧���E�}��u�E����}�t+H�E�ǀ<�M�H�E�H�����H�������H�E�ǀ<H�E��<eu\H�E�H��H������E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��n�U�H�E��P@H�E�H�w����H���t���JH�E��8�H����X��H�E�H�PH�E�H��H���/���H�E�H�@H�M�H�U�H��H��и��UH��H��0H�}�H�u�U܉M�L�E�H�}�u�����o��*Z��H�E�H�}ЋM؋U�H�u�H�E�I��H�����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H���{z���E��}�t��E���UH��H�ĀH�}�H�u��U�H�M�D�E�D�M�H�E�H�H�E�H�E�H�@`H�E�}�u�E��P���E�Ѓ�
��H�E�H�E��@��w#�}�tH�E�H�'����H�������H�E���L���'H�E�H�@H�M�H�U�H��H���H��H�E�H��PH�E�H��PH�E�H�E�H��PH��uH�E�H��������H������SH�E�P�H�E���H������}�t�}�u"H�E�H�PH�U��� H�E�H�PH�U���H�E�H�PH�U��H�E��@�HH�U��JH�U���XH�E���XH�E���H���C���U�H�M�H�E�H��H���e���}�u�U�H�M�H�E�H��H���I��H�E�ǀLH�E���L����H�M�H�E�H��PH�E�H���0���H�E�H�}��u	H�E��GH�E�H;E�tYH�E�H�@H�M�H�U�H��PH��H���H�E�HǀPH�E�ǀLH�E�H��������H���)�����H�E�H�@H�M�H�U�H��PH��H���H�E�HǀPH�E�ǀLH�E���XH�u�H�M�H�E�I��I�ȉ�H����H�������E��}��u�E��e�}�t+H�E�ǀL�M�H�E�H�����H���y����4H�E�ǀLH�E��<eubH�E�H��H���*����E�H�E�H�@H�M�H�U�H��H��Ѓ}�u
����U�H�E��P@H�E�H�����H������H�E�H��H��������u2H�E�H�@H�M�H�U�H��H���H�E�H�h����H������sH�E�H��	H�������H�EȋE�H9E�s2H�E�H�H
H�U�H�E�H��H���_U��H�U�H�E�H��H�EȉE���E����H�E�H�@H�M�H�U�H��H��ЋE���UH��H��@H�}�H�u�U�H�M�D�E�D�M�H�}�u�����v��=U��H�E�D�E̋}�H�MЋU�H�u�H�E�E��A��H���R����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H���u���E��}�t��E���UH��H�}�H�}�u��	H�E��@@��]�UH��H�}�H�}�u��H�E�H�]�UH��H��@H�}�H�uЉU�H�E؋�P�����H�E�Hh���H���~R���Ẽ���H�E�H��`�H�E�H�@H�M�H�U�H��`�H��H���H��H�E�H��X�H�E�H��X�H�E�H�E�H��X�H��u"H�E�H��������H��������H�E�H�PH�U��2�U�H�M�H�E�H��H������H�E�H�5��H������H�E�H���~���H�E�ǀP�H�E؋�P�����H�E�H��`�H�E�H��X�H�E�A�H�
b�H���G�E��}��u"H�E�H�K�����H��������!H�E�H�@H�M�H�U�H��X�H��H���H�E�HǀX��}�t0H�E�H�������H�����H�E�ǀP���H�E�ǀP�H�E؋�P�����H�E�H��h�H�E�H��`�H�E�H��X�H�E�VjA�A�H�5I�H����!��H���E��}��u"H�E�H�T�����H�������*�}�t0�M�H�E�H�v���H�����H�E�ǀP����H�E�H��X��<4unH�E�H�O��H���w���H�E�H�@H�M�H�U�H��X�H��H���H�E�HǀX�H�E؋@h����H�E؉PhH�E�ǀP���tH�E�H��X�H��H�������H�E�H�E�H��X�H�HH�E�H��X�H�U�H��H���R��H�E�H��X�H�E�H��H�E�ǀP�H�E�H��X���UH��H��@H�}�H�uЉU̿��P��H�E��U�H�M�H�E�H��H������H�E�H�E؋����t4H�}�u-H�E�H����O�����uH�U�H�E�H��H���q���E�}�t�H�E���UH��H�}�H�E��@h����]�UH��H��@H�}�H�u�U�H�M�D�E�L�M�H�E苀p����&H�E�H����H���*N���E܃�(��H�E�H����H�E�ƀ���H�E�H�@H�M�H�U�H����H��H���H��H�E�H��x�H�E�H��x�H�E�H�E�H��x�H��uH�E�H�%������H���B����H�E�H�PH�U��2�U�H�M�H�E�H��H�����H�E�H�5Z�H���m���H�E�H�5��H���U���H�E�H�PH�U���U�H�E��H�����H�E�ǀp�H�E苀p������}�H�E�H����H�E�H��x�H�M�H�E�I��H���+C�E��}��uH�E�H�������H���Z����H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx��}�t+H�E�ǀp�H�E�H�N������H������H�E�ǀp���H�E苀p���t"H�E苀p���tH�E苀p����H�E苀p�����H�E�H����H�E�H����H�E�H��x�H�E�VjA�A�H�5��H�����H���E��}�t1�}��tH�E�ǀp��M�H�E�H�����H���%�����H�E�H��x��<4uYH�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�@h����H�E�PhH�E�ǀp���pH�E�H��x��<3uYH�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�ǀp�H�E�H������H���O��H�E�Hǀ��H�E�ǀ��H�E�ǀp�H�E�H��x��<<tH�E�����<<�aH�E�ƀ��<H�E苀p���tH�E苀p����H�E苀p���u.H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�}���H�E苀p�����H�U�H�E�L����H�E�H����H�}�H�E�H��L���H�E�H����H��uH�E�H�����H��� ����U܋E�Ѓ�,��H�E�H����H�E�H�@H�M�H�U�H����H��H���H��H�E�H��x�H�E�H��x�H�E�H�E�H��x�H��uKH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�d������H���q��'H�E�H�PH�U��2�U�H�M�H�E�H��H����H�E�H�5��H����H�E�H�5-�H����H�E�H�PH�U���U�H�M�H�E�H��H���_�H�E苀����H�E��H���
�H�E�ǀp�H�E苀p����H�E苀��Hc�H�E�H����H�E�H����H�E�H��x�H�E�I��H���*>�E��}��uH�E�H�������H���Y��H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ���}�tH�E�H�%������H������H�E�ǀp�����H�E�ǀp�H�E�H����H�����U�H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�ǀp�H�E�H�����H���E���UH��H��@H�}�H�u�U�H�M�D�E�L�Mȿ�PH��H�E�L�Eȋ}�H�MЋU�H�u�H�E�M��A��H������E��}��u*H�E苀���tH�U�H�E�H��H���h���E��}�t��E���UH��H�ĀH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E�H�5/�H���]I��H�E�H�}�u"H�E�H����H���T��H�E�H�E�H����F����u3H�U�H�E�H�Ѻ�H���cC��H��u�E�<
t�E�<
u�H�E�H���F����tH�m�H�E�H���D��H�}�w)H�E�H����C��H�E�H�����H�����}H�E�H�@H�M�H�U�H��H���H�E�H�}�u)H�E�H���}C��H�E�H�r������H���o��1H�M�H�U�H�E�H���B��H9E�tAH�E�H�@H�M�H�U�H��H���H�E�H���C��H�E�H�B���H������H�E�H����B���H�m�H�}�t2��H��H�H�U�H�J�H�U�H����H�H����% ��u�H�}�u5H�E�H�@H�M�H�U�H��H���H�E�H�޾��H�����IH�U�H�E� H���3D��H�E�H�}�u5H�E�H�@H�M�H�U�H��H���H�E�H�����H���2���H�E�H�E�H;E�vH�E�H+E�H����H�E�H�E�H+E�H��H�Eؾ H���C��H�E�H�}�uH�U�H�E�H�H�E�H�E�H+E؉�H�M�H�U�H�u�H�E�A��H���rB����t2H�E�H�@H�M�H�U�H��H���H�E�H����H���x��=H�E�H�U�H�H�E�H+E�H��H��H�E�H�H�U�H�E�H��E���H�E�H����UH��H��@H�}�H�u�H�U�H�M�D�E�L�M��C��H�E�H�E�H�H�E�H��HH�E�H�H�@H��t3�E�Hc�H�E�H�H�H�M�H��H����?����uH�E�H�H�E�H�� H�E�H�E�H�H��tH�E�H�H�H��u�H�E�H�H��uH�E�H�"����H���o��CH�E�H�H�@H�U�H�u�H�}�H��H�U�Ѕ�tH�E�H����H���1�����UH��H��`H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H�xH�E�L�H�E�H�� �A��H�E�H���H�U�H�u�H�E�H��WM��E��H������H���E�}�t�E��H�E�H�E�H�E�H�E�H�E�H�@(L�E�H�M�H�U�H�u�H�}�M��I�ȹ�Ѕ�t,H�E�H�@8H��tH�E�H�@8H�M�H�U�H��H��и�����*H�E�H�@8H��tH�E�H�@8H�M�H�U�H��H��и��UH��H��H��h���H��`���H��X���H��P���L��H���L��@���H��h����������dH�E�H��h���H����H���@��H��P���tWH��h���H����H��h���H����L��P���H�M�H�U�H��h���M��I��H��H��H������E��}�tm�E��
H��h���H����H��h���H����L��H���H�M�H�U�H��h���H����@���M��I��H��H��H���}H���E��}�t�E��H
H��h���H����H��X���H�H�EH�H�E(H�H�E�H�H�P4H��h���H����H��h���H�@H��h���H��h���H����H��h���H����H�H�M�H�H��H��H���H��H��h���H����H��h���H����H��h���H����H��h���H����H��uxH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H�U�H��H���H��h���H��������H�����
	H��h���H����H�HH��h���H�����2H��h���H����H��X���H��`���H��H����H��h���H���H�5��H����H��h���H���	H�5�H���{�H��h���H����H��h���H����H��h���H����H��H���F�H�U�H�E�H��h���H����H��H���%�H��h���H�@H��h���H�U�H��H���H��h���H����H�EH��H�uH�����H��h���H����H�U(H�E H��H�����H��h���H����A��H��h���H����H��H���H�U�H�u�H��h���H����@���I��H������H���E��}�t|H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ���E��H��h������H�E���H���R�H�E�H��p���HDžx���H��h���H���H�E�H��h��������H�E�H��h���H����H�E�H��h���H����H�E�H�E�H�@(L�E�H��p���H�U�H�u�H��h���M��I�ȹ�Ѕ���H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H�E�H�@8H��tH�E�H�@8H�M�H��h���H��H��и�����H�E�H�@8H��tH�E�H�@8H�M�H��h���H��H���H�U�H�E�H9��{H��h���H����H��tQH��h���H�@H��h���H��h���H����H��h���H����H�H�M�H�H�qH��h���H����H����DH��h���H�@H��h���H��h���H����H��h���H����H�H�M�H�H��H��H���H�E�H�}���H��h���H�@H��h���H�U�H��H���H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H��������H�����H��h���H�U�H����H��h���H����H��h���H����H�H��h���H����H��h���H������H�E�ЍPH��h���H����H���R�H��h���H����H��h���H����H��h���H����H��H���U�H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H�U�H�E�H��h���H����H��H����H��h���H�@H��h���H�U�H��H���H��h���ǀ��H��h����������2H��h���H����H��h���H����H)�H��H��H��h���H����H��h���A��H���-�E��}��u H��h���H�;�����H������E�}�tkH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���ǀ��H��h���H�ٲ�����H���f���H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���ǀ��H��h����������H��h���H����H��h���H����H�U�H��h���QjA�A�H��H��H�5��H���s��H���E��}��u H��h���H������H������H��h���ǀ���}�t H��h���H�����H���V����H��h���H�����<4uZH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h����@h����H��h����Ph��UH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�8����H�������UH��H��@H�}�H�u�U�H�M�L�E�L�M���6��H�E�D�E(�}�U�L�M�L�U�H�M�H�u�H�E�AP�u W�uM��H��� �H�� �E��}��u*H�E苀���tH�U�H�E�H��H����V���E��}�t��E���UH��SH��xH�}�H�u��U�H�M�L�E�L�M��E�4�E�3�E�<�E�H�E���������H�}�wH�E�H������H������;
H�E�H8���H����3��H�E�H���H����H�E�H���-����H�E�H�� �H�E�H�� �H9E�sH�E�H�3����H�������H�E�H�@H�M�H�U�H�� �H��H���H��H�E�H���H�E�H���H��uH�E�H��������H������jH�E�H�� �H�E�H�HH�E�H���H��H���v4���;H�E�H�� �H�E�H���V����H9�tH�E�H�s����H���X����U�H�E�H�� �H�H�E�H�H�P-H�E�H���H�E�H�@H�U�H�M�H���H�M�H�� �H�H�M�H�H��H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uKH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H��������H������-H�E�H�PH�U��2�U�H�M�H�E�H��H������H�EȺH�5��H�����H�EȺ	H�5P�H�����H�U�H�E�H��0�H�E�H�PH�U��H�E�H�� �H�E�H���H�E�H��H���Q��H�U�H�M�H�E�H��H���:��H�E�ǀ��H�E���������H�E�H���H�E�H���H�E�A��H���/'�E�}��uH�E�H�¬����H���^���

�}���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�H�������H�������y	H�E�ǀ��H�E���������H�E�H��8�H�E�H���H�E�H����H�u�H�E�WjA�A�H���%��H���E�}��uH�E�H�������H���B�����}���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�H�����H������]H�E�H�����<4��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E��@h����H�E��PhH�E�ǀ����H�E�H�����<3��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�H������H�������H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H��0��H�E�ǀ��H�E���������H�E�H�@H�U�H�M��������H�M�H���H�H��H���H�E�H�E�H�E�H�}�uH�E�H�������H���]���	H�E������H�E�H���H�E�H��H�����H�E�H���H�E�H���H�E�H��H����-��H�U�H�E�H���H�H�E�H�E�H+E�I��H�M�H�U�H�u�H�}�H�E�L�M�ЉE�H�E�H�@H�M�H�U�H��H��Ѓ}��uH�E�H�������H������E�}���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�H�����H������H�E�H9E��GH�E�H���H��tBH�E�H�@H�U�H�M�H���H�M�H�� �H�H�M�H�H�qH�M�H���H����8H�E�H�@H�U�H�M�H���H�M�H�� �H�H�M�H�H��H��H���H�E�H�}���H�E�H�@H�M�H�U�H��H���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�H�ŧ�����H�������nH�E�H�U�H���H�E�H���H�E�H���H�H�E�H�E�Hǀ0�H�E�H�� ���H�E�ЍPH�Eȉ�H�����H�E�H�� �H�E�H���H�E�H��H�����H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�U�H�M�H�E�H��H���a��H�E�H�@H�M�H�U�H��H���H�U�H�E�H��(�H�E�ǀ��H�E��������H�E�H��(�H�E�H���H)�H��H��H�E�H���H�E�A��H����E�}��uH�E�H�������H���J����}�tYH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�H�&������H�������H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ���E�H�E�H��8�H�E�H���H�E�H����H�u�H�E�WjA�A�H���$���H���E�}��uH�E�H�������H���A�����}�t+H�E�ǀ��H�E�H�[����H������H�E�H�����<4uVH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E��@h����H�E��PhH�E�ǀ����TH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ��H�E�H������H���O��H�]���UH��H��pH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���������H�}�tKH�E�H�� �H�E�H���L�E�H�M�H�U�H�E�M��I��H��H��H�������E��}�t[�E��H�E�H�� �H�E�H���L�E�H�M�H�U�H�E�H���u�M��I��H��H��H���dH���E��}�t�E��cH�}�H�U�H�E�A��H�u�H�E�H��H�M�QL�
��I��H��D��H���"�H���E�H�E�H��tH�E�H�@H�M�H�U�H��H��ЋE���UH��H��@H�}�H�u�U�H�M�L�E�L�M�H�}�uH��H�E����&��H�E�U�L�E�H�}�H�M�H�u�H�E�M��I��H���8����E��}��u*H�E苀���tH�U�H�E�H��H���7G���E��}�t��E���UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�}�u
�������D&��H�E�H�E�H���#��A��H�}�H�M�H�U�H�u�H�E�H���u�I��I��H��D��H�����H���E��}��u*H�E苀���tH�U�H�E�H��H���~F���E��}�t��E���UH��SH��HH�}�H�u��U�H�M�H�Eȋ�@����dH�E�Hǀp�H�E�Hǀ��H�E�ǀ��H�E�ǀ��H�E�Hǀ��H�E�Hǀ��H�E�H����H���X#���E���7��H�E�H��`�H�E�H�@H�M�H�U�H��`�H��H���H�E�H�U�H�E�H��H�H�E�H��uH�E�H�������H������H�E�H�PH�U��2�U�H�M�H�E�H��H������H�EغH�5��H�����H�EغH�5�H�����H�EؾH���V��H�EؾH���E��H�E�ǀ@�H�Eȋ�@�����H�E�H��`�H�E�H��H�H�E�A��H���r�E�}��uH�E�H������H������
�}�tYH�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�ǀ@�H�E�H�������H���B���a
H�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�ǀ@�H�Eȋ�@����7H�E�H����H�E�H��P�H�E�H��H�H�E�VjA�A�H�5��H���i�H���E�}��uH�E�H������H������	�}�t+H�E�ǀ@�H�E�H�X����H���U���t	H�E�H��H��<4uYH�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�Eȋ@h����H�EȉPhH�E�ǀ@���		H�E�H��H��<3uYH�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�ǀ@�H�E�H������H������H�E�H��H�H��H�E�H�E�H���:����H�Eȉ�h�H�E�H��H�E�H�Eȋ�h�����H�E�H�@H�U�H�Mȋ�h���H��H���H��H�E�H��p�H�E�H��p�H��uH�E�H�6������H�������H�Eȋ�h���H�M�H�E�H��p�H��H��� ��H�U�H�Eȋ�h���H�H�E�H�E�H���l����H�Eȉ�x�H�E�H��H�E�H�Eȋ�x�����H�E�H�@H�U�H�Mȋ�x���H��H���H��H�E�H����H�E�H����H��uH�E�H��������H���
����H�Eȋ�x���H�M�H�E�H����H��H������H�U�H�Eȋ�x���H�H�E�H�E�H������E�H�E�H��H�E�H�U؋E�H�H�E�H�E�H���u����H�Eȉ���H�E�H��H�E�H�Eȋ�������H�Eȋ�����H��H��H�E�H��H�����H��H�E�H����H�E�H����H��uH�E�H�������H�������H�Eȋ�����H��H��H�E�H��H���M��H��H�E�H����H�E�H����H��uH�E�H�������H�������E��H�E�H�U�H�����M�H��H�
H���c���CH�E�H��H�E�H�E�H�����U�H��HЋ@��H�E�H�����U�H��H�H�E�H��H�����H�H�E�H�����U�H��H�H�H��uH�E�H��������H�������H�U�H�E�H�����M�H��Hȋ@��H�H�E�H�E�H�PH�U�H�U�H�����M�H��H���B�E�H�Eȋ���9E���H�M�H�E�H����H�U�L����H�Uȋ�����H�Uȋ�x�A��H�U�H����H�uȋ�h�A��H�u�H��p�QPH�E�M��A��D��D���H��H�E�Hǀ`��E��:H�E�H��`�H�E�H�����M�H��Hȋ@����H�H�E�H��`��E�H�Eȋ���9E�r�H�E�H�@H�M�H�U�H��H�H��H���H�E�H�@H�M�H�U�H��`�H��H���H�E�H�U�H�E�H��H�H�E�H��uH�E�H� ������H���U���0H�E��=H�E�H��H�E�H�Eȋ���H�E؉�H���Z���E��HH�E�H�����U�H��HЋ@��H�E�H�����U�H��H�H�H�E�H��H��H���E���E�H�Eȋ���9E�r�H�E�ǀ@�H�Eȋ�@�����H�E�H��`�H�E�H��H�H�E�A��H���'�E�}��uH�E�H�������H���V���u�}�tH�E�H�F������H���3���H�E�ǀ����H�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�H����H��td�E��LH�E�H�@H�M�H�U�H�����u�H��H�H�H��H���H�E�H�����U�H��H�H��E�H�Eȋ���9E�r�H�E�H����H��td�E��LH�E�H�@H�M�H�U�H�����u�H��H�H�H��H���H�E�H�����U�H��H�H��E�H�Eȋ���9E�r�H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H��p�H��t.H�E�H�@H�M�H�U�H��p�H��H���H�E�Hǀp�H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�Eȋ�����tH�E�ǀ@�������H�E�ǀ@�����H�]���UH��H��0H�}�H�u�U�H�Mп����H�E�H�MЋU�H�u�H�E�H���
�E��}��u*H�E苀���tH�U�H�E�H��H���P9���E��}�t��E���UH��H��0H�}�H�u�H�U؉M�H�E�H H�E�H�E�H���@�E�Eԙ�}�Ѕ���H�
����H�5^�H�=c����H�E�H��H�@(H�U�H���U�Hc�H�u�H�}�Ѕ�t&H�E�H�@H�M�H�U�H��0@H��H��и��B�E�Hc�H�M�H�E�H��H���u���E�)EԋE�H�HE؋E�H�HE�E�;E��o������UH��H��PH�}��u�H�E�H H�E�H�E���@����WH�E�ǀD�H�E���@����H�E�H��H��}���H�E�H��H�@H�U�L�� H�U�H��H�A��H�U�L��0@H�U�H��@H�U���H�u�H�}�AQARM��A���H��H�E�H���@Hc�H�E�H��0@H�E�H��H�H�H�E�H��H���=����tH�E�ǀD�����H�E����PH�E���H�E�H��H�H�E���@��H)�H�E�H��H�H�E�H���H��t9H�E�H����@��t'H�E��@h����uH�E�H����@��t����E�}���H�E�H��0H����H�E�H��(H�@ H�U�L��0H�U�L��H�H�U�H��0@H�U�H�u�H�}�H��AQM��I�ȹ@���H���E�H�E�H�@H�M�H�U�H��0@H��H��Ѓ}�t�E��H�U�H�E�H��0@H�U�H�E�H��H�H�E�H��0@���H�E���P�H�E�ǀ@�H�E���@���uSH�E���D�H�E�H��H�H�E�H��0@H�E�H������E�}��u�E��1�}�tH�E�ǀ@��E��H�E�ǀ@�H�E���P���UH��H�ĀH�}�H�E�H H�E��E�H�E������H�E���H�E��@h����t;H�E��@h����u-H�E�H����H�E��H���ݬ���E܃}�t�E��H�E���H���u H�E�ǀH�H�E���L��E��sH�E������u
��H�E��@h����tH�E�H���@�E���E��E�H�E�H��@��H�E�H��@)‰ЉE��}�yH�
Ғ�]H�5��H�=���:���E�;E��B�}�tI�E�Hc�H�E�H��@H�E�H�H�E�H��H�����H�E�Hǀ@�E�Hc�H�E�H��@�%H�E�Hǀ@H�E�H��@H�E�H��@H�E�H�@PL�E�H�U��Rl��tA��A�@�@+U�HcҋM�Hc�H�M�H�H�M���D���H�E�H�}�;H�}�y*H�}�u#H�E�������H�E��������9�����/H�E�H��@H�E�H�H�E�H��@H�E�H��@��H�E�H��@)‰ЉE��E��E�H�E�H��(@H���C�E�;E�}#H�E�������H�E���������}�tfH�E�H��@H�E�H�4�M�H�U�H�E�H�������E܃}�t�E��qH�E�H��@H�E�H�H�E�H@�H��H���
���'�E�Hc�H�E�H��@H�E�H�H�E�H��H������H�E�H��@�E�H�H�H�E�H��@H�E�H��賹����H�E�@H�E�@��u
�����U�H�E�@H�E�@�}�tH�E�H���@��Ѓ���H�E�H�}�@�v
�����{H�E�H�@H�M�H�U�H��H���H��H�E�H��0@H�E�H��0@H��u
������;H�E�H�U�H��(@H�E�H��0@H�E�H��8@�}�~J�E��Hc�H�E�H��8@H�M�H��H��H�����H�E�H��8@�U�Hc�H��H�H�E�H��8@H�E�H��8@H�E�H��0@H)�H��H��H�E�H�� @�E�)E�H�E�H��(@��H�E�H�� @)‰ЉEċE�;E�~�EĉE��}���H�E�H���@�E�H�E�H�� @�E�H�H�H�E�H��(@�E�H�H)�H��H9�v&H�E�H��(@�‹E�)�H�E�H�� @)‰ЉE��,�E��E�E�}�U��}�t�E�)E��E���E��}���H�E�H��8@H�E�H��@H�E�H�4�M�H�E�H�������E܃}�tH�E�Hǀ(@�E��vH�E�H��@�E�H�H�H�E�H��@H�E�H��8@�E�H�H�H�E�H��8@H�E�H�� @�E�H�H�H�E�H�� @�E�)E��}����E�Hc�H�E�H��@H�E�H�H�E�H��8@H��H���
��H�E�H��@�E�H�H�H�E�H��@H�E�H��8@�E�H�H�H�E�H��8@H�E�H�� @�E�H�H�H�E�H�� @H�E�H��(@��H�E�H�� @)‰ЉEă}��������U�H�E���H�������E܃}��u.H�E���p���tH�E��U쉐L�H�E�ǀH��E��H�E�Hǀ(@�E���UH��H��@H�}�H�u�H�U�H�M�H�E�H H�E�H�E�H���H��uH�E�H���DH�E�H���H9E�uH�E�H���H9E�t
�����H�E�H�H�E�����Hc�H�E�H���H)�H��H�E�H�E�H�@HL�E�H�U؋Rl��tA��A�@H�U�H�M�H���H��@@H�M�H�H�M؋�D���H�E�H�E�H;E�u$H�E�ǀ��H�E�Hǀ���hH�}�y.H�}�t������SH�E؋�����H�E؉������3H�E�H���H�E�H�H�E�H���H�E�H;E�}��������UH��H��H�}�H�u�H��x���H��p���L��h���H�E��@h����tH�E�H��p�@���E�H�E�H H�E�H�E�H�E�H��x���H�E�H�E��@h����t;H�E��@h����u-H�E�H����H�E��H��薣���E��}�t�E��H�M�H��x���H�u�H�E�H������E��}�t�E���H�E������H�E���H�E�H��t�E���H�E��@h����E�H�E�H���H��t9H�E�H����@��t'H�E��@h����uH�E�H����@��t����Eȃ}���}���H�E���H�E�H�E�H�E�H���H�@H�U�L���H�U�H��E@L��x���H�M�H�U�H�}��ЉE��}�t�E��H��p���tjH��h���t`H�U�H�E�H)�H��H�E�H�E�H���H�@H�U�L���H�U�H��H��@@H�U�H�4L��h���H��p���H�U�H�}��ЉE��H�E��}�t�E��lH�U�H�E�H�H��x����H��x���H��h���H�H=��v
�����2H�E�H��E@H��x���H�E�H��H���t��H��p���t=H��h���t3H��x���H��H��@@H�E�H�H��h���H��p���H��H���-��H��h���H�x���H��x���H��H�E��M�E�Hc�H�E��H��H��)��ȉE��}��E�E��E�H�HE��}�tH�E�H����@����H�E�ЉE�H�E��P�H�E�H@@��H��蝱���E���H�E�D@H�E�H��@@H��x���H��H‹E���H�������}���H�E�H���H�@H�U�L���H�U�A��H�U�H��@@H�U����H�u�H��@@H�u�H�H�}�APjA�E���H��H�E��mH�E�H��@@H�E�H�H�E�H�E�H��pH�@(H�U�H��xH�U�H��p�RHc�H�u�H�}��Ѕ�t
�����7H�E�H��p�@H�HE�H�E�H;E�r�H�E�����PH�E����H�E�H�@HL�E�H�U��Rl��tA��A�@�U�Hc�H�M�H��@@H�M���D���H�E��E�Hc�H�E�H9���H�E�H��y
H�E�H���uiH�E�������H�E���H�E�H�U�H���H�E�H�U�H���H�E��H��HH�H��H�E�H���H�E�U����������*������#H�E�Hǀ�H�E�Hǀ����UH��}��}�	H����]�UH��H��H�}�H�u�H�}���H�E�H�@XH��tH�E�H�@H�M�H�U�H�RXH��H���H�E�H�@HH��tH�E�H�@H�M�H�U�H�RHH��H���H�E�H�@@H��tH�E�H�@H�M�H�U�H�R@H��H���H�E�H�@0H��tH�E�H�@H�M�H�U�H�R0H��H���H�E�H�@H��tH�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�M�H�U�H��H��А��UH��H�� H�}�H�E�H�@H�U�H�ֿ��H�E�H�}�uH�E�H�փ�����H��������H�E�H�U�H�H�E�H��H������H�E���UH��H�}�H�E�H��hH�E�H�E���ʭ�H�E�H�U�H�PH�E�@,����u
H�E�H�@��H�U�H�BH�E�H�P@H�E�H�PH�E�P,H�E��P H�E�]�UH��H��`H�}�H�u�H�U�H�M�L�E�L�M�H�E�H���a��H�E�E(%��u H�E�H�H������H��� ����H�E�H���H���g���H�E�H�}�u H�E�H�H�������H������SH�E�U(�P,H�E�@,��������t	���.H�E�H�H�@H�U�H�H��H�U�H��H��H���H��H�E�H�PH�E�H�@H��u#H�E�H�H��������H���Y����E��H�E�H�PH�E�H�@H�M�H��H�����H�E�H�U�H�P �H�E��H�E�H�H�M�H�U�H�u�A��H�������E��}��JH�U�H�E�H�P�Eԉ�H�E�H�P H�E�H�������H�E�H�H�M�H�U�H�u�A��H���q����E��}���H�U�H�E�H�P0�Eԉ�H�E�H�P8�#H�E�H�H�ˁ����H���h����E���E(%����H�}uH�E�H���S���H�EH�E�H�H�@H�U�H�H��H�UH��H��H���H��H�E�H�P@H�E�H�@@H��u#H�E�H�H�\������H������E��7H�EH�PH�E�H�@@H�M�H��H�����H�E�H�P@H�EH���XH�E�H�H�U�H�u�H��H�UH��褭��H�E�H�}�u#H�E�H�H�������H���b����E��H�U�H�E�H�P@H�}����E(%=��H�E�H�H�@H�U�H�H��H�U�H��H��H���H��H�E�H�PHH�E�H�@HH��u#H�E�H�H��������H���ا���E��.H�E�H�@HH�U�H�M�H��H�����H�E�H�PHH�E�H��H�E�H�U�H�PPH�}��H�E�H�H�@H�U�H�H��H�U H��H��H���H��H�E�H�PXH�E�H�@XH��u#H�E�H�H�7������H���4����E��H�E H�PH�E�H�@XH�MH��H����H�E�H�PXH�E H��H�E�H�U H�P`�H�E�H�@XH�E�H�U�H��H��H������H�}0tH�E�H������H��H�E0H������H�E�H�H�U�H��H���1����E���UH��H��0H�}�H�u�H�U�H�M�L�E�D�M�H�}�H�U�H�u�H�E�H���u�M�Qjj�u�I��A��H�����H��0��UH��H��0H�}�H�u�H�U�H�M�L�E�L�M�H�}�H�U�H�u�H�E�H���u �MQ�u�u�u�I��A��H���X���H��0��UH��H���H��X���H��P�����L���H��@���L��8���D��H���H�E���H������E�H�E��E��E��}�u
����L�������L���H��P���H������A��H��H�I~�H�Ǹ���EЃ}�x	�}�
~(H��X���H�H�~����H�������:H������H�E��E��H��P���H�E��E���H���%��ubH��X���H�H�M�H��8���H��@���H��褩��H�E�H�}�u(H��X���H�H�}�����H���_�����H�E�H��@���H��X���H��H�����H�E��H�E��@,����tp��t:���%�}��H�E�H�PH�E�H��H���6����������E���}���H�E�H�PH�E�H��H�������������E����}���H�E�H�@ H�������H��H�E�H�@8��H�E�H�p0H��`���H������H�E�H���t���H��H�M�H��`���H��H���;���H������H��`����H��H������H��`���H���^���H�E�H�HH�������H��H��������u�E��	��
��������}�����H���%�E�H�E��@,%�E��}�ti�}�t�E�;E�u[H�E�H�P@H��@���H��H��������u.H�}tH�E�H�����H��H�EH�H�E��E��1H�}�uH�E�H�E��E�H�E�H�����H�E�H�}������H��P���H�E�}�u�m��}������H�}�t$H�}tH�E�H������H��H�EH��E�H�E�H��t'H��X���H�H�@H��X���H�H��H�U�H��H��ЋE���UH��H��0H�}�H�u�H�U�H�M�D�E�L�MЋ}�H�M�H�U�H�u�H�E�H���u�A��I��H�Ѻ����H�����H����UH��H��0H�}�H�u�U�H�M�L�E�D�M�D�E�H�}�H�M�U�H�u�H�E�H���uE��I��H���;���H����UH��H�� H�}�H�u�H�}�t
H�E�=�ʭ�tH�E�H�H�z����H��迠���IH�E�H�@H�E�H�E�H��蒩��H�E�(�H�����H�E�H�H�U�H��H������UH��H�� H�}�H�E�H��H������H�E��.H�E�H������H�E�H�E�H�H�U�H��H�����H�E�H�E�H�}�u�H�E�H�H�@H�U�H�H��H�U�H��H��А��UH��H��PH�����H�����H�����H������L������L�������E�H�E�H�����H�����H�H�E�H������&H�����H�H��x����H���r����H�m�H�E�H�E�H;����tH�E�H���<,��H�}�v#H�����H�H��x����H�������H�U�H�M�H����H��H�����H����H�E�H���E
A��H������H������H������H����H�����H��jAP�u(�u �uI��I��H�ѺH����H��0�E��}�t�E��.H�E�H;����v
H�E�H�m�H�E�H;��������E���UH��H��pH������H������H������H������L������L������H������H��H�E�H������H�E�H�E��H�E�H�E����tH�E��<|u�H�E��<|�SH�E�H�E�H+E�H�E�H�}�v#H������H�H�~w����H��蛝���H�U�H�M�H�E�H��H���e���H�U�H�E�H��H�E�H�E�H�E�H��H�E�H�E�H������H������H+E�H��H������H�������v#H������H�H��v����H�������H������H������H������H��H�����H������H������H���E
A��L������H������H������H�U�H������H������H��jAQ�u(�u �uM��I��H����H��0����UH��H��`H�}�H�u�H�U�H�M�L�E�H�E�H�E�H�E�H�E�H�}�w H�E�H�H�?v����H��������H�E������0��	w�E��IH�E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< tH�E��<	u�H�E�H+E�H�E�H�U�H�E�H�5�uH������u	�E��7H�U�H�E�H�5�uH������u	�E���E��
H�E�H�m�H�E��< t�H�E��<	t�H�E�H�E�H�E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< tH�E��<	u�H�E�H)E�H�}�uH�E��
H�E�H�m�H�}�t!H�E����tH�E��< t�H�E��<	tΐH�}�vOH�E��H�5�tH���g��t3L�M�L�E�H�M�H�U�H�u�H�E�u�u��}�W�u�H���i���H�� �1L�M�L�E�H�M�H�U�H�u�H�E�u�u��}�W�u�H������H�� ��UH��H��PH�}�H�u�H�U��M��}�t H�E�H�H�Zt����H������H�E�H�E��
H�E�H�m�H�}�tH�E��< t�H�E��<	t�H�}�t!H�E����tH�E��<#tH�E��<
u
��&H�E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< tH�E��<	u�H�E�H+E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< t�H�E��<	t�H�E����tH�}�uH�E�H�H��s����H���ޘ���{H�E�H�E�H�E�H�E��
H�E�H�m�H�}�tH�E����tH�E��<
u�H�E��<
uH�m�H�}�H�M�H�U�H�u�H�E�I��H������Eԃ}�t�E�����UH��H��0H����H����������E������t#H����H�H�}r����H��������H����H�5�rH�����H�E�H�}����^H���H�����H�Nj����H���H������H��H������t#H����H�H�\r����H��著���E��!�E�H�U�H����H���V�H��u�H�E�H���U��E��H����H�H�(r��H���<�����UH��H��pH�}�H�u�H�U�H�M�L�E�D�M��}�t H�E�H�H�dq����H������H�E��@,%=t2=	=t�m=t0=t>�]H�E�H�E��kH��pH�E�H�E��VH��pH�E�H�E��AH�E�H�@HH�E�H�}�tH�E�H�@PH�E�� H�E�H�H�Lq����H���I����FH�E�H�@@H���J�H�E�H�}�tH�U�H�E�H�H��H�E�H�E�H�@XH��tH�E�H�P`H�E�H�H��H�E�H�E��@,�����^H�E�H�P H�E�H�pH�E�H�H�M�H���ؚ��H�E�H�}�u H�E�H�H��p�����H��薕���H�E�H�P8H�E�H�p0H�E�H�H�M�H��芚��H�E�H�}�uAH�E�H�H�@H�U�H�H��H�U�H��H���H�E�H�H��p�����H���'����$H�U�H�E�H�H�E�H�H��H�E�H�E�H;E��2H�E�H�@XH��tMH�}�tFH�E�H�xXH�E�H�H@L�E�H�U�L�M�H�u�H�E�WQH��H�>pH�Ǹ��H����H�E�H�@XH��tKH�E�H�HXH�E�L�@@H�}�H�U�H�u�H�E�H��QM��I��H��H��oH�Ǹ�'�H���H�}�tDH�E�H�H@H�}�H�U�L�E�H�u�H�E�H��QM��I��H��H��oH�Ǹ���H���5H�E�H�x@H�M�H�U�H�u�H�E�I��I��H��H��oH�Ǹ��H�E�H�H�@H�U�H�H��H�U�H��H���H�E�H�H�@H�U�H�H��H�U�H��H����HH�E�H�P H�E�H�H��H�E�H�E�H;E��#H�E�H�@XH��tVH�}�tOH�E�H�HXH�E�L�@@H�E�H�PH�}�H�u�H�E�H��QM��I��H��H��nH�Ǹ���H���H�E�H�@XH��t?H�E�H�xXH�E�H�H@H�E�H�PH�u�H�E�I��I��H��H��nH�Ǹ���tH�}�t;H�E�H�x@H�E�H�PH�M�H�u�H�E�I��I��H��H�?nH�Ǹ�C��2H�E�H�H@H�E�H�PH�u�H�E�I��H��H�nH�Ǹ��H�E�H�P�H�E�H�H�E�H;E�w��H�E�H�H�1k����H�������UH��H��@H�}�H�u�H�U�H�M�L�E�D�M�H�E�=�ʭ�tH�E�H�H�	k����H��贑���2H�E�H�@H�E�D�E�H�}�H�M�H�U�H�u�H�E�E��I��H���F�����UH��H��PH�����H�������������E�������t#H�����H�H��k����H���1����'H������H�5�lH����H�E�H�}�u#H�����H�H��k��H�������H�����H��H��荙��H�E��HDž���������H�����H����H�u�H�����A��I�ȹH���U����E�}�uqH�����H�M�H�����H�����H�E�H�����H9E�t$H�����H�H�l��H���8����E��H�E�H����H�E�H�}��K�����H�E�H�����E���UH��H��0H�}�H�u�H�U�H�}�t+H�E�H�@H��tH�E�H�@H�E�H�E�H��荘��H�E��H�E�H��H���e���H�E�H�}�u��H�E�H����H��H�E�H����UH��H��H��x���H�=Kk��H�E�H�}�u#H��x���H�H�8k����H���7���������D���H��x����PH��x����@��y H��x���H�H��j����H������}f�E�H�E�H�U�H�J�lH��H������E�H��x����@H�M��nH�Ή�����t1H��x����@����H��x���H�H��j����H���n�������UH��H�� H�}�H�u�H�E�@ ����H�E�H�@��H�E���H������H�E�H�H�@HH�U�H�H��H�U�zH�u�I�ȹ��ЉE��}��u
������}�y H�E�H�H�j�����H���ʍ����H�E��@ H�E�@ ��uvH�E�H�H�@HH�U�H�I��H�U�H�RH�M�H�1H�M�y��ЉE��}��u
������}�y H�E�H�H��i�����H���H����mH�E��@ H�E�@ ����H�E�H�H�@PH�U�H�H��H�U�zH�u�I�ȹ��ЉE��}�y0�}��u
�����
H�E�H�H�"i����H���Ō����H�E�H��蓍����H�E�H�PH�E�H�H�@H�U�H�H��H�U�H�RH��H���H��H�E�H�PH�E�H�@H��u
������H�E��@ H�E�@ ��uqH�E�H�H�@PH�U�H�I��H�U�H�RH�M�H�qH�M�y��ЉE��}�y*�}��u�����-H�E�H�H�Eh�����H������H�E��@ ���UH��H�� H�}�H�E�@���@��E��}��uH�E�H�H�	h��H��薋������UH��H��pH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H��H�E�H�E�H�@@H�E�H�E�H�P0H�E�H�H��
H�E�H�E�@ ����H�E�H�@H�M�H�U�H��H���H��H�E�H�H�E�H�H�E�H�E�H�H��uH�E�H�kg�����H���ӊ���H�E�H�PH�U��
H�E�H�P0H�E�H�H(H�E�H��H���
���H�U�H�M�H�E�H��H�����H�EȾH��譌��H�U�H�E�H�H)�H��H��H�E�H�PH�E��@ H�E�H��<
tH�E�H��f����H���+����nH�E�H�@H��uH�E�H��f����H�������DH�E�H�@H�@H�M�H�U�H��H��ЉE��}���H�E�H�@H�M�H�U�H�H��H���H�E�H�H�E�H�@H�E�H�E�H�@H�E�H�m�H�}�y�E�����_H�E��<t�E�����HH�E�H��H�E�H�m�H�}�y�E�����$H�E�H��H�E�H�m�H�}�y�E�����H�E�H������H�E�H�E�H��H�E�H�E�H)E�H�}�y�E������H�U�H�E�H�H�E�H�m�H�}�y�E�����H�E�H��葉����H�E�H�H�E�H��H�E�H�U�H�E�H�H)�H��H�E�H�}�y	�E�����ZH�E�H�@H�M�H�U�H�H��H���H��H�E�H�H�E�H�H��u	�E������ H�E�H�H�M�H�E�H�H��H������H�E�H�@H�M�H�U�H�H��H���H�E�H�H�E�H�@H�M�H�U�H�RH��H���H�E�H�@�M�H�E�H�d��H��踇����UH��H��PH�}�H�E�H��H�E��E�H�E؋@ ��u"H�E�H�U�H�H�E�H�@H�E��@ H�E�H��<t H�E�H�H�!d����H���D����8H�E�H�@H��u H�E�H�H��c����H�������H�E�H�@H�@H�M�H�U�H��H��ЉE�}���H�E�H�H�E�H�@H�E�H�E�H�@H�E�H�m�H�}�y�E�����[H�E��<t�E�����DH�E�H�m�H�}�y�E�����'H�E�H���M�����H�E�H�E���H�m�H�}�y�E������H�E�H�H�@H�U�H�H�ֿ@��H�E�H�}�u�E����H�E�H�������H�E�H�P0H�E�H�U�H�E�H�@0H)�H��H�E�H�}�y-�E����H�E�H�H�@H�U�H�H��H�U�H��H����[H�E�H�H�@H�U�H�H��H�U�H�R0H��H���H��H�E�H�P(H�E�H�@(H��u-�E���H�E�H�H�@H�U�H�H��H�U�H��H�����H�E�H�P0H�E�H�@(H�M�H��H�����H�E�H�@0HE�H�m�H�}�yR�E����H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H��H����hH�E�H��莅����H�E�H�E�H�E�H)E�H�}�yR�E����H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H��H�����H�E�H�H�@H�U�H�H��H�U�H��H��H���H��H�E�H�P8H�E�H�@8H��uO�E���H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H��H����dH�E�H�P8H�E�H��H�U�H�E�H�@8H�M�H��H���p��H�E�HE�H�E�H�U�H��HH��H��蹋��H�E�H�P�H�U�H���������H�E�H�H�@H�U�H�H��H�U�H�RH��H���H�E�H�@H�E�H��M�H��_��H��������UH��H�� H�}�H�E�H��HH��衋��H�E��H�E�H��螋��H�E�H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H�R8H��H���H�E�H�H�@H�U�H�H��H�U�H��H���H�E�H�E�H�}��r���H�E�H��HH���k������UH��H�}�H�E�H��H�E�H�E����;H�E�H�U�H�PH�E�]�UH��H�� H�}�H�E�XH���R���H�E�H�}�uH�E�H��^�����H���ρ����*H�E��@����H�E�H�U�H�H�E�H��HH���ˉ��H�E���UH��H�� H�}��E������E��G�E�H�H��H��H�� H�H�E�H�PH�E�H�@H�H�U�H��ЉE��}�u��#�E��E�H�H��H��H��� H�H��u��E���UH��H��H�}�H�E�H���(�H���X��H�E�H�����H�E�H���$�����UH��H��0H�}�H�u�H�U�H�}�t+H�E�H�@H��tH�E�H�@H�E�H�E�H���b���H�E��H�E�H��HH���:���H�E�H�}�u��H�E�H���%���H��H�E�H����UH��ATSH��@H�}�H�u�H�U�H�E�H�E�H�E�H�������u*H�E�H���(�H���o��H�E�H�PH�E�H�P@��%��H�E�H�E�L�`H�E�H�XH�E�H��������H�E�H�H�u�H��H�U�RL�
%�M��H�ى�H��財��H���E�}��u4H�E�H������t#H�E�H�H�U�H��H���N����E�}��v����E�H�e�[A\]�UH��H��H�}�H�E�H�@H��t#H�E��@���tH�E�H�@H�@H�U�H�������UH��H��H�}�H�E��@���tH�E�H�����H�E�H������H�E�H�H�@H�U�H�H��H�U�H��H��А��UH��SH��8H�}�H�u�H�U�H�M�L�E�L�M�����H��H�E�H�H�E�H��(��H�C(H�E�H�H�P(H�E؉�H�E��H�����H�E�H����H�C H�E�H�H�P H�Eȉ�H�EЉ�H���f��H�}��H�E�H����H�C0H�E�H�H�P0H�E��H�E���H���,��H�E�H����H�C8H�E�H�H�P8H�E ��H�E��H�����H�E�H��a��H�C@H�E�H�H�P@H�E0��H�E(��H������H�E�H��2��H�CHH�E�H�H�PHH�E@��H�E8��H�����H�E�H����H�CPH�E�H�H�PPH�EP��H�EH��H���p��H�E�H�����H�CXH�E�H�H�PXH�E`��H�EX��H���A���H��8[]�UH��H��PH�}�H�u�H�U�H�M�L�E�H�U�H�M�H�E�H��H���B��H�Eȉ�H�M�H�U�H�E�I��A��H�ѺH�ƿ@�U���E��}�u���������UH��SH��8H�}�H�u�H�U�H�M�L�E�L�M����H��H�E�H�H�E�H�����H�CH�E�H�H�PH�E؉�H�E��H���_��H�E�H�����H�C H�E�H�H�P H�Eȉ�H�EЉ�H���0��H�E�H����H�C(H�E�H�H�P(H�E��H�E���H�����H�E�H��e��H�C0H�E�H�H�P0H�E ��H�E��H������H�}0t/H�E�H��/��H�C8H�E�H�H�P8H�E0��H�E(��H������H��8[]�UH��H��PH�}�H�u�H�U�H�M�����H�E�H�U�H�E��H���Z������H�E�H�E�H�U�H�JH�¾H���5��H�U�H�M�H�E�H��H���^��H�M�H�U�H�E�H������E�H�E�H���v��H�E�H���j���}�u���������UH��H��0H�}�H�u�H�U�H�M�D�E�H�E�H�����H�E��H�Nju�H�M�H�U�H�E�A��H��H���H����������UH��H��`H�}�H�u��U�H�M�L�E�H�E���H�U�H�u�H�E�H���9���E��}�uH�U�H�M�H�E�H��H�������}�������UH��H��0H�}�H�u�H�U؉M�H�E�@h��t�� t��u!���H�E�� �0��H�E�����H�E��
������H�E�H�}�u
���������H��H�E�H���H�E�H���H��uH�E�H��������H�E�H���H�U�H�u��H���X����t&H�E�H���H�����H�E�H�������MH�E�H����H���5��H�E�H��H�E�H�PH�H�H�QH�U�H�E�H��H��������UH��H��PH�}�H�u�H�U�H�M�H�E�H������H�E�H�E��E�H�}�t
���H�}�u
���H�E�H��H�E�H���H�U�H�u�A�H�������t
��H�E��4H�E�H�PH�U��0H�U�H�E�H��H�E�H�PH�U�1Ή�H�E�H�}�v�H�E��H�}�t6H�m�H�U�H�E�H�H��PH�u�H�M�H�H���<�t������UH��H�� H�}�H�E�H�����H�E�H�}�u��GH�E�H���H��t&H�E�H���H���9��H�E�H���H������H�E�H��������UH��H�}�H�u�H�E��@H�E���H�E�PH�E��@H�E�H����H�PH�E�H����H�P H�E�H�5���H�P(H�E�]�UH��o� ��uH�5\� ������H�I� ]�UH���� ��uH�5�� ��U����H�� ]�UH��ۣ ��uH�5ȣ � �+����H��� ]�UH���y�����������]�UH��H��0H�}�u�U�H�M�H�E�H������E��E�;E�	�E���E��E�Hc�H�M�H�E�H��H������E�Hc�H�E�H���E���UH��H��0H�}�H�u�H�U�H�M�H�E�H�H�E�H�5�RH���S��H�E�H�}�u������KH�U�H�}�H�E�H��H�>������H��H�E�H�H�E�H�����H�E�H�H��t���������UH��H��0H�}�H�u�H�U�H�M�H�� H�E��H�M�H�U�H�u�H�E�H���+�����UH��H��0H�}�H�u�H�U�H�M�H��� H�E��dH�M�H�U�H�u�H�E�H�������UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H���$���E�H�E�H�@H�U�M��H��H���H�E�H�}�u������rH�EЉ�H�u�H�M�H�U�H�E�I��I��H�щ�H�ƿ@����E�}�uH�E�H�@H�M�H�U�H��H��и�����H�E�H�U�H��E��H�E�H����UH��H��0H�}�H�u�H�U�H�M�H�U�H�E�H�����H�E�H�}�u
������H�E�H�H���q�����P��H���E�}�~�}�~H�E�H���X��������H�E�H�@H���.�����P��H���E�}�~�}�~H�E�H�����������sH�Eк(�H���H���+E�Hc�H�E�H�H�E�H�H��H�������+E�H�H�PH�E�H�H�E�H�@H��H������H�E�H��������UH��H��H�}�H�E�H���a��H�=�O���H��H�E�H��H���S����UH��H��PH�}�H�u�H�U�H�E�H���!��H�=TO���H��H�E�H��H�����H�U�H�M�H�E�H��H�����H�M�H�EкH��H���T�����UH��H��H�}�H�E�H�����H�=�N�M��H��H�E�H��H�������UH��H��PH�}�H�u�H�U�H�E�H���y��H�=�N�
��H��H�E�H��H���k��H�U�H�M�H�E�H��H���t��H�M�H�EкH��H��������UH��H��0H�}�H�u�U�H�E�H�E�H�E�H�E��H�E�H�PH�E�H��H���+��H�E�H�����x!�m��E�Hc�H�E�H�HH�E�H��H���k���E�H�U�H����H���r���E�Hc�H�E�H���UH��H��@H�}�H�u�H�U�H�E�H�@(H��������P��H�����E�H�E�H�@ H���_�����P��H�����E��E��P�E��H�H�E�H�E�H�@H�M�H�U�H��H���H�E�H�}�u
��H�E�H�E�H�E�H����q��H�E�H�E�H�5MH�����H�E�H�E�H�H(�U�H�E�H��H������H�E�H�E�H�H �U�H�E�H��H���a���H�E�H�E�H+E�H��H�E�H�H�E���UH��H��PH�}�H�u�H�U�H�E�H�@H���Z�����P��H�����E�H�E�H�@ H���6�����P��H�����E�H�E�H�@(H��������P��H�����E�H�E�H�@0H���������P��H�����E�E��P�E�ЍP�E�ЍP�E��H�H�E�H�E�H�@H�M�H�U�H��H���H�E�H�}�u
���H�E�H�E�H�EؾH���Up��H�E�H�EغH�5�KH���6��H�E�H�E�H�H�U�H�E�H��H�����H�E�H�E�H�H �U�H�E�H��H�����H�E�H�E�H�H(�U�H�E�H��H������H�E�H�E�H�H0�U�H�E�H��H�����H�E�H�E�H+E�H��H�E�H�H�E���UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E�H�����H�E�H�}���H�E�H�@H�U�H�ֿ��H�E�H�}�t|H�U�H�M�H�E�H��H�����H�E�H�}�t]H�E�H�����H�E��H�5JJH������H�E�H�U�H�H�E�H�H�E�H�U�H�H�U�H�E�H���Q�����H�}�tH�E�H���"��H�}�tH�E�H�@H�M�H�U�H��H���H�E�H��I�����H���l����UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E�H�����H�E�H�}���H�E�H�@H�U�H�ֿ��H�E�H�}�t|H�U�H�M�H�E�H��H�����H�E�H�}�t]H�E�H�����H�E��H�5IH�����H�E�H�U�H�H�E�H�H�E�H�U�H�H�U�H�E�H���Q�����H�}�tH�E�H�����H�}�tH�E�H�@H�M�H�U�H��H���H�E�H��H�����H���Mk����UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�5NHH�����H�E�H�}�uH�E�H��H��H���j���H�=�H�
��H��u���H�E���H�����H�E�H�M��H������H�E�H�E�H���k��H�}�uH�E�H�YH��H���vj���H�E���t��tt-�VL�E�H�}�H�M�H�U�H�u�H�E�M��I��H���~����E��GL�E�H�}�H�M�H�U�H�u�H�E�M��I��H������E��H�E�H�LH��H����i���E��H�E�H��藿���E���UH��H�� H�}��u�H�U�H�U�M�H�E���H�����H��u
������H�E����t8H�E�H��褾��H�P�H�E�H��<
uH�E�H��膾��H�P�H�E�H��H�E����t8H�E�H���a���H�P�H�E�H��<
uH�E�H���C���H�P�H�E�H�����UH��H���H��X���H��P���H��H���H��@���L��8���L��0���H�E��E�ƅ`���H��@���H��`�����H��������t
������H��P���H��`���H��H���ѿ����u�ƅ`�����`�������H��`���H���x���H�E�H�}�t'H��X���H�@H��X����u�H�M�H�H�M�H����$H��X���H�@H��X����u�H�M�H�H��H���H�E�H�}�u�E�����U�H�E�H�H�U�H��`���H��H��躿��H�E�H�E�H�E�E�ƅ`���H��@���H��`�����H��������t	�E���jH��H���H��`���H��H���þ���������H�}�u������c�}�H�M�H��0���H��8���H��X���A��H��������t	�E����E�H�}�tH��X���H�@H��X���H�U�H��H��ЋE���UH��H�}�u�H�U؃}�u
������H�E����H�E؉H�E؋��vgH�E؋���E�H�E�H�����H�E؉�E���9E�s������h�}�v6H�E؋����H�E؉H�E؋H�E�H�����	�H�E؉��E��E����E��}�wH�E؋�E�Ѓ�9E�s�������E�]�UH��H�� H�}�H�u�H�E���u
������H�E�H��<0t
������H�E�H�H�PH�E�H�H�E��P�H�E�H�E�H�E�H�H�U���H������E��}�x�U��E��H�E�9�t������,H�E�H��E�H�H�H�E�H�H�E��E�)�H�E����UH��H��0H�}�H�u�H�U�H�M�H�E���u
�������H�E�H��<t
�������H�E�H�H�PH�E�H�H�E��P�H�E�H�E�H�E�H�H�U���H������E��}�x�U��E��H�E�9�v������jH�E�H��E�H�H�H�E�H�H�E��E�)�H�E�H�E�H�H�E�H��U�H�EЉH�E�H��U���H�H�E�H�H�E��E�)�H�E����UH��H�}��u�U�}�uH�E�ǀ���
�U�H�E������}�����H�E������]�UH��H��@H�}�H�u�H�Eȋ�����uH�}�t
H�E����"�����H�E�H�E�H����H�Eȋ���H�H�H9E���H�cBH�dBH�E�H�U�H�]BH�E�[B�E�H�E�H�Eȋ���H�E�H���T�H�U�H�u�H�E�A��H������E�}�t#�}��tH�E�H��A�����H���c���E��]H�E�H�U�H����H�}�tBH�Eȋ���H�E���0H�}�t)H�E�H������H�E�)‰Љ�H�Eȋ����H�E�����UH��H���}���� ��u�E�����u
�ù���k��p� ���g� �e� E��\� ���UH��G� ��t�=� ���4� ���]�UH��$� ��u
�螹���]���H��H���Unable to allocate space for channel dataFailed allocating memory for channel type nameUnable to allocate temporary space for packetWould block sending channel-open requestUnable to send channel-open requestWould blockChannel open failureUnable to allocate memory for direct-tcpip connectiondirect-tcpip0.0.0.0Unable to allocate memory for setenv packettcpip-forwardWould block sending global-request packet for forward listen requestUnable to send global-request packet for forward listen requestUnknownUnable to allocate memory for listener queueUnable to complete request for forward-listencancel-tcpip-forwardWould block sending forward requestWould block waiting for packetChannel not foundenvWould block sending setenv requestUnable to send channel-request packet for setenv requestUnable to complete request for channel-setenvterm + mode lengths too largepty-reqWould block sending pty requestUnable to send pty-request packetFailed to require the PTY packageUnable to complete request for channel request-ptywindow-changeWould block sending window-change requestUnable to send window-change packetUnable to allocate memory for pty-requestx11-reqMIT-MAGIC-COOKIE-1%02XWould block sending X11-req packetUnable to send x11-req packetwaiting for x11-req response packetUnable to complete request for channel x11-reqUnable to allocate memory for channel-process requestWould block sending channel requestUnable to send channel requestFailed waiting for channel successUnable to complete request for channel-process-startupUnable to allocate memory for signal nameWould block sending window adjustUnable to send transfer-window adjustment packet, deferringtransport readwould blockWe've already closed this channelEOF has already been received, data might be ignoredFailure while draining incoming flowUnable to send channel dataWould block sending EOFUnable to send EOF on channel_libssh2_transport_read() bailed out!Unable to send EOF, but closing channel anywayWould block sending close-channelUnable to send close-channel request, but closing anywaylibssh2_channel_wait_closed() invoked when channel is not in EOF statechannel.csession[\QRcdcdcdcd_libssh2_channel_freenoneUnable to allocate memory for zlib compression/decompression1.2.11compression failuredecompression uninitializedUnable to allocate decompression bufferdecompression failureExcessive growth in decompression phaseUnable to expand decompression bufferzlibzlib@openssh.comaes128-ctraes192-ctraes256-ctraes128-cbcaes192-cbcaes256-cbcrijndael-cbc@lysator.liu.seblowfish-cbcarcfourarcfour128cast128-cbc3des-cbcssh-rsassh-dssInvalid DSS signature lengthOut of memory errorUnable to send KEX init messageTimed out waiting for KEX replyUnable to allocate memory for a copy of the host keyUnable to initialize hostkey importerUnable to allocate buffer for KSSH-2.0-libssh2_1.5.0Unable to verify hostkey signatureUnable to send NEWKEYS messageTimed out waiting for NEWKEYSUnable to allocate buffer for SHA digestACBDEFUnable to send Group Exchange RequestTimeout waiting for GEX_GROUP replydiffie-hellman-group1-sha1diffie-hellman-group14-sha1diffie-hellman-group-exchange-sha1Unable to allocate memoryUnable to send KEXINIT packet to remote hostUnrecoverable error exchanging keysInvalid parameter specified for method_typeError allocated space for method preferencesThe requested method(s) are not currently supportedvI���I���I���I���I��J��J��<J��\J��tJ��algs must not be NULLUnknown method typeNo algorithm foundMemory allocation failedInternal error=L��JL��UL��UL��`L��`L��kL��kL�����������ڢ!h�4��b����)N�g�t��;�"QJy�4����:C0+
m�_7O�5mmQ�E䅵vb^~��LB�7�k�\�����8k�Z�����$|K�I(fQ��S������������������ڢ!h�4��b����)N�g�t��;�"QJy�4����:C0+
m�_7O�5mmQ�E䅵vb^~��LB�7�k�\�����8k�Z�����$|K�I(fQ��[=�|��c���H6UӚi?��$�_�e]#ܣ��b�V �R���)p��mg5NJ���tl�!|2�^F.6�;�w,��'�������]�oLR��+��X9�I|�j��&��r�Z���h��������hmac-sha1hmac-sha1-96hmac-md5hmac-md5-96hmac-ripemd160hmac-ripemd160@openssh.comABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=��������������������������������������������������������������������������������������>������?456789:;<=��������������	

������������ !"#$%&'()*+,-./0123��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Unable to allocate memory for base64 decodingInvalid base64ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/%c%c==%c%c%c=%c%c%c%cUnable to allocate a channel for new connectionforwarded-tcpipUnable to send channel open confirmationForward not requestedUnable to send open failureallocate a channel for new connectionx11X11 Forward UnavailableInvalid MAC receivedsocket disconnectPacket received for unknown channelPacket contains more data than we offered to receive, truncatingThe current receive window is full, data ignoredRemote sent more data than current window allows, truncatingexit-statusexit-signalmemory for signal name=`���`���`���`���`���`���`���`���`���`���`��9f���k��%l���i���d���l���`��;b���l���b���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���l���c���l���l���l���l���l���l���l���l���l���j���l���l��Ul���d���d���g��7j���g��Rstatusversionpublickeysuccessaccess deniedstorage exceededversion not supportedkey not foundkey not supportedkey already presentgeneral failurerequest not supportedunknownInvalid response from publickey subsystemUnable to allocate publickey response bufferTimeout waiting for publickey subsystem response packetTimeout waiting for response from publickey subsystemInvalid publickey subsystem responseUnexpected publickey subsystem responsesessionUnable to startup channelsubsystemWould block starting publickey subsystemUnable to request publickey subsystemUnable to allocate a new publickey structureWould block sending publickey version packetUnable to send publickey version packetNeed to be called again to complete thisWould block waiting for response from publickey subsystemInvalid publickey subsystem response codeMalformed publickey subsystem packetUnexpected publickey subsystem response, ignoringWould block closing channelcommentUnable to allocate memory for publickey "add" packetaddUnable to send publickey add packetUnable to allocate memory for publickey "remove" packetremoveUnable to send publickey remove packetlistUnable to send publickey list packetUnable to allocate memory for publickey listUnable to allocate memory for publickey attributesUnable to allocate a command buffer for SCP sessionpscp -%sf sessionWould block starting up channelexecWould block requesting SCP startupWould block sending initial wakeupWould block waiting for SCP responseFailed reading SCP responseFailed to get memory Failed to recv fileInvalid data in SCP responseUnterminated response from SCP serverInvalid response from SCP server, too shortInvalid response from SCP server, malformed mtimeInvalid response from SCP server, malformed mtime.usecInvalid response from SCP server, too short or malformedWould block waiting to send SCP ACKInvalid response from SCP serverInvalid response from SCP server, malformed modeInvalid response from SCP server, invalid modeInvalid response from SCP server, invalid sizeWould block sending SCP ACKUnexpected channel closeUnable to allocate a command buffer for scp sessionscp -%st Unknown error while getting error stringWould block waiting for response from remoteSCP failureInvalid ACK response from remoteT%ld 0 %ld 0
Would block sending time data for SCP fileUnable to send time data for SCP fileWould block waiting for responseInvalid SCP ACK responseC0%o %lld %s
Would block send core file data for SCP fileUnable to send core file data for SCP filefailed to get memoryfailed to send fileError allocating space for remote bannerSSH-2.0-libssh2_1.5.0
Unable to allocate memory for local bannero�����������϶�������)���Bad socket providedFailed changing socket's blocking state to non-blockingFailed sending bannerFailed getting bannerSSH-Unable to exchange encryption keysssh-userauthUnable to ask for ssh-userauth serviceInvalid response received from servertoo long descriptionInvalid parameter specified for method_typeNo method negotiated����������������������������Invalid descriptor passed to libssh2_poll()@�@malloc fail for zombie request  IDOut of sync with the worldUnable to allocate datablock for SFTP packetchannel readSFTP packet too largeUnable to allocate SFTP packetError waiting for SFTP packetsftp.csession->sftpInit_sftp == NULLsessionWould block starting up channelUnable to startup channelsftpsubsystemWould block to request SFTP subsystemUnable to request SFTP subsystemWould block requesting handle extended dataUnable to allocate a new SFTP structureWould block sending SSH_FXP_INITUnable to send SSH_FXP_INITTimeout waiting for response from SFTP subsystemInvalid SSH_FXP_VERSION responsesession not authenticated yetUnable to allocate memory for FXP_OPEN or FXP_OPENDIR packetWould block sending FXP_OPEN or FXP_OPENDIR commandUnable to send FXP_OPEN*Would block waiting for status messageTimeout waiting for status messageToo small FXP_STATUSFailed opening remote fileToo small FXP_HANDLEUnable to allocate new SFTP handle structurerc != LIBSSH2_ERROR_EAGAIN || !filep->data_leftrc != LIBSSH2_ERROR_EAGAIN || !filep->eofmalloc fail for FXP_WRITESFTP READ errorSFTP Protocol badnessFXP_READ response too bigSFTP Protocol badness: unrecognised read request response!"State machine error; unrecognised read state"Unable to allocate memory for FXP_READDIR packet_libssh2_channel_write() failedSFTP Protocol ErrorFXP write failedUnable to allocate memory for FXP_EXTENDED packetfsync@openssh.comError waiting for FXP EXTENDED REPLYfsync failedUnable to allocate memory for FSTAT/FSETSTAT packetUnable to send FXP_FSETSTATUnable to send FXP_FSTAT commandUnable to allocate memory for FXP_CLOSE packetUnable to send FXP_CLOSE commandError waiting for status messagercUnable to allocate memory for FXP_REMOVE packetUnable to send FXP_REMOVE commandError waiting for FXP STATUSServer does not support RENAMEUnable to allocate memory for FXP_RENAME packetUnable to send FXP_RENAME commandFile already exists and SSH_FXP_RENAME_OVERWRITE not specifiedOperation Not Supportedfstatvfs@openssh.comSFTP Protocol Error: short responsestatvfs@openssh.comUnable to allocate memory for FXP_MKDIR packetUnable to allocate memory for FXP_RMDIR packetUnable to send FXP_RMDIR commandUnable to allocate memory for FXP_*STAT packetUnable to send STAT/LSTAT/SETSTAT commandServer does not support SYMLINK or READLINKUnable to allocate memory for SYMLINK/READLINK/REALPATH packetUnable to send SYMLINK/READLINK commandInvalid READLINK/REALPATH response, no name entriessftp_initfesftp_readgeheiesftp_close_handle�e�eieheUnable to allocate memory for userauth_listssh-connectionnoneWould block requesting userauth listUnable to send userauth-none requestFailed getting responseNo errorUnable to allocate memory for userauth-password requestpasswordWould block writing password requestUnable to send userauth-password requestWaiting for password responseAuthentication failed (username/password)Password expired, and callback failedUnable to allocate memory for userauth password change requestWould block waitingUnable to send userauth password-change requestPassword Expired, and no callback specifiedAuthentication failedrUnable to open public key fileInvalid data in public key fileUnable to allocate memory for public key dataUnable to read public key from fileMissing public key dataInvalid public key dataInvalid key data, not base64 encodedNo handler for specified private keyUnable to initialize private key from fileOut of memoryhostbasedFailed allocating additional space for userauth-hostbased packetWould blockUnable to send userauth-hostbased requestAuth failedInvalid signature for supplied public key, or bad username/public key combinationInvalid public key, too shortInvalid public keypublickeyUnable to send userauth-publickey requestWaiting for USERAUTH responseUsername/PublicKey combination invalidUnable to allocate memory for userauth-publickey signed dataCallback returned errorFailed allocating additional space for userauth-publickey packetWaiting for publickey USERAUTH responseUnable to allocate memory for keyboard-interactive authenticationkeyboard-interactiveUnable to send keyboard-interactive requestWaiting for keyboard USERAUTH responseAuthentication failed (keyboard-interactive)Unable to allocate memory for keyboard-interactive 'name' request fieldUnable to allocate memory for keyboard-interactive 'instruction' request fieldUnable to allocate memory for keyboard-interactive prompts arrayUnable to allocate memory for keyboard-interactive responses arrayUnable to allocate memory for keyboard-interactive prompt messageUnable to allocate memory for keyboard-interactive response packetUnable to send userauth-keyboard-interactive request4343<4343<transport.c(len % blocksize) == 0remainbuf >= 0decrypt_libssh2_transport_read1.5.0Unable to allocate memory for known-hosts collectionNo key type setUnable to allocate memory for known host entryUnable to allocate memory for host nameUnknown host name typeUnable to allocate memory for keyUnable to allocate memory for base64-encoded keyUnable to allocate memory for key typeUnable to allocate memory for comment[%s]:%dKnown-host write buffer too smallInvalid host informationFailed to parse known_hosts line (no host names)Failed to parse known_hosts line (unexpected length)Failed to parse known_hosts line (unexpectedly long salt)Failed to parse known_hosts line (key too short)ssh-dssssh-rsa|1|Unsupported type of known-host information storeFailed to parse known_hosts linerFailed to parse known hosts fileFailed to open fileUnsupported type of known-host entryUnable to allocate memory for base64-encoded host nameUnable to allocate memory for base64-encoded salt|1|%s|%s %s %s %s
|1|%s|%s %s %s
|1|%s|%s %s
%s %s %s %s
%s %s %s
%s %s
wWrite failedSSH_AUTH_SOCKno auth sock variablefailed creating socketfailed connecting with agentagent send failedagent recv failedfailed closing the agent socketUnixout of memoryillegal requestagent not connectedagent sign failureillegal agent requestagent list id failedUnable to allocate space for agent connectionrsha1md5ssh-rsassh-dssUnable to allocate memory for private key dataUnable to extract public key from private key file: Unable to open private key filedesUnable to extract public key from private key file: Wrong passphrase or invalid/unrecognized private key file formatUnable to extract public key from private key file: Unsupported private key file formatUnable to send keepalive messagePkeepalive@libssh2.orgW;�
R�t���
	}���
|}��D~�� ����Dp���d}��������U���������\���Б��$����D2���d���������>�������ʜ��
Z���$
����D
M���d
�����
Q����
����
���
i�������$����D����d0���������>���������ݮ��v���$����D����dҷ���e�������������2���к��(D���H9���h�����[����Ͼ�����������p��(���H���h���A���t���d���$�����(��H@��h���_�������s���������(5��H���hz�������'���������L��(���H���h��������5���������G���(����H���h�������������������C	��(�
��HO��h�
���q����������!�����(���H��h!���������������
!��!��(J!��H�!��h�!���H"���#���O#����#���#��(6&��H�(��h)���,)���C)���h)����)���)��(�)��H*��hz*����*����0���5���.D��2E��(�E��H?G��h�H���XJ����J����L����M���N��(5V��L�V��l�^���b���q����q����r���u��0|���P���p�����]�������������8���a���0���P����p
����K���������͗���ߘ������0Û��P��pR����t����7���������� h���0 ����P ����p ���� )���� k���� ����� ����!̰��0!��P!����p!ͱ���!���!
����!f����!z���"����8"��X"����x"�����"^����"���"@����"���#���8#���X#���x#����#���#5���#����#���$���8$���X$Y��x$����$����$��$���$��%l�8%�X%��x%�����%����%����%a����%b���&����<&����\&���|&����&����&���&����&|��'���<'+	��\'�
��|'���'&���'����'G���'���(���<(:��\(���|(����(�#���(�$���(�$���(�$�� )o(��@)�(��`)	)���)�0���)`1���)�4���)�5��*7�� *�B��@**C��`*�P���*5R���*�R���*�S���*D`��+�`��(+�a��H+�d��h+9l���+�m���+�s���+�s���+�t��,/u��(,�u��H,�z��h,�z���,Q{���,u���,����,���-����(-#���H-Ƃ��h-�����-��-�����-���-���.����(.���H.����h.�����.F����.�����.d����.���/۞��(/���H/~���h/����/B����/Ǡ���/š���/���0\���00���T0����t0�����0z����0Ҧ���03����0����1����81���X1���x1�����1Ӫ���1�����1����1w���2���82N���X2����x2^����2�����2Ϯ���2?����2w���3��83y���X3����x3_����3�����3ϵ���3>����3���4���84��X4����x4ļ���4����4i����4�����4ھ��5zRx�$�i���FJw�?;*3$"D!r��sA�C
ndtr���A�C
� �s��yA�C
E�o�qz���A�C
��{��
A�C
��|���A�C
�q}��8A�C
3(�����A�C
�H	���gA�C
bhP���tA�C
o������A�C
��Z����A�C
��Ɔ��VA�C
Q������A�C
�p���"A�C
(r����A�C
�H����A�C
�h�����A�C
��.���_A�C
Z�m����A�C
����pA�C
k�1����A�C
�����.A�C
i(����nA�C
iH���|A�C
wh]���A�C
Z�\���pA�C
k������A�C
��(����A�C
�������A�C
����A�C
z(r���|A�C
wH��#A�C
^hџ���A�C
��J���A�C
�D���A�C
�C���#A�C
�F����A�C
������A�C
�(C���tA�C
o H�����A�C
E��l"����A�C
������tA�C
o���A�C
��ɬ��tA�C
o�����A�C
�����tA�C
o,����@A�C
;L���tA�C
ols����A�C
��@���<A�C
w�\���#A�C
^�_���9A�C
t�x���9A�C
t����3A�C
n,�����A�C
�Lt����A�C
�l����A�C
��|���oA�C
j�˵��%A�C
`���A�C
������NA�C
I����kA�C
f,�����A�C
�L����
A�C
Hlp���9A�C
4�����|A�C
w���VA�C
Q�����A�C
����9A�C
t	���tA�C
o,	W���|A�C
wL	����pA�C
kl	���9A�C
4�	���9A�C
t�	5���
A�C
H�	"���MA�C
H�	O����A�C
�
��A�C
�,
e���� A�C
� L
��*A�C
%l

�*A�C
%�
�NA�C
I�
E�|A�C
w�
���A�C
��
>��A�C
���A�C
,��pA�C
kL	�A�C
�l��FA�C
A��A�C
��y�A�C
������A�C
��L����A�C
������A�C
�,7����A�C
�L��FA�C
Al��yA�C
t�j��0A�C
k�z��IA�C
D����A�C
	����hA�C
c
���A�C
	,
���hA�C
cL
��A�C
	l
���
A�C
H�
���0A�C
k�
���bA�C
]�
<	��MA�C
H�
i	��OA�C
J�	���A�C
�,2
��MA�C
HL_
��8A�C
slw
��aA�C
\��
��NA�C
I�����A�C
����+A�C
f����A�C
M|��A�C
R,s��%A�C
`Lx��jA�C
el���A�C
M����A�C
L����A�C
M����sA�C
n����NA�C
I���A�C
�,����A�C
�L+��A�C
l)��A�C
��*���A�C
��w*��xA�C
s��+���A�C
��H-���A�C
{�.���A�C
�,/���A�C
�L�0���A�C
�lr1��AA�C
< ��2��rA�C
E�h��9��rA�C
m�3:��%A�C
 �8B��6A�C
1 NE��A�C
H��4.T���A�C
�T�T��<A�C
7t�U���A�C
���X���A�C
��$h���A�C
���h���	A�C
�	�'r���A�C
��r���A�C
�4#s��A�C
YT!s��A�C
Zt s��)A�C
d�)s���A�C
���u���A�C
��)w��lA�C
g�uw��>A�C
y�w��]A�C
X4�x��%A�C
`T�x��A�C

t�y��A�C
��z���A�C
��k|��)A�C
$�t���fA�C
a�����"A�C
]�����
A�C
�
4_���^A�C
YT����_A�C
Zt܌��tA�C
o�0���2A�C
-�B���A�C
I�0���mA�C
h�}���A�C
Oq���BA�C
}4����*A�C
eT����#A�C
^t����A�C
O�����A�C
Y�����A�C
P ������A�C
E���1���A�C
T*���'A�C
b81���Y	A�C
T	Xj���A�C
O x^���:A�C
u�t���5A�C
p������A�C
��,���QA�C
L�]���aA�C
\�����A�C
�<
���SA�C
N\@����A�C
�|���� A�C
������A�C
��v����A�C
�����RA�C
M�4���0A�C
+D���1A�C
,<U����A�C
�\˥��A�C

|�����A�C
��M���RA�C
M����zA�C
u�ٯ���A�C
��P����A�C
�����HA�C
C<%����A�C
�\����A�C
|����A�C
��,���A�C
������A�C
��#���A�C
������A�C
} K���A�C
E��@����A�C
�`]��A�C
��>��&A�C
a�D��#A�C
^�G��#A�C
^�J���A�C
����A�C
� ����A�C
}@6���A�C
�`����A�C
��X��
A�C
�B��A�C
�����A�C
��g��A�C
����A�C
� b��A�C
�@���A�C
|`C��A�C
�����A�C
��k�A�C
����A�C
��p����A�C
���OA�C
J ����A�C
�@����!A�C
\ `����A�C
Z������A�C
��'����A�C
~�����A�C
R������A�C
�/���A�C
�$����A�C
~D�
��A�C

d���A�C
�����A�C
|�G���A�C
� �����
A�C
E��
�E&��dA�C
_ �'���A�C
�( (���A�C
� H �(���A�C
E��l 45��tA�C
o� �5���A�C
�� f6��A�C
�� H9���A�C
|� �@���A�C
�!B���A�C
�,!�G�� A�C
[L!�G��A�C
�l!�H��mA�C
h�!�H��tA�C
o�!SI���A�C
��!#N��^A�C
Y�!aN��`A�C
["�N��$A�C
,"�R��VA�C
QL"�R��QA�C
Ll"S���A�C
��"xS��{A�C
v�"�S���A�C
��"VU���A�C
��"W��SA�C
N#CY���A�C
�,#�Z��%A�C
 L#�[��>A�C
9l#a��~A�C
y�#la��{A�C
v�#�b���A�C
��#,c��A�C
�#%d���A�C
�$�f��GA�C
B,$�f���A�C
�L$tj���A�C
�l$o���A�C
��$�o��0A�C
k�$�o��sA�C
n�$p���A�C
�$rp��@A�C
{%�p���A�C
� ,%�p���A�C
G���P%�q��CA�C
~ p%�q��TA�C
O �%$r���A�C
E���%�s��wA�C
r �%t��.A�C
E�$�% u���A�C
�&�u��XA�C
S<&�u��aA�C
\\&3v��OA�C
J|&bw��(A�C
#�&jx��sA�C
n�&�x��bA�C
]�&�x��*A�C
e�&	y��*A�C
e'y��*A�C
e<'y��A�C
Q\'y��dA�C
_|'Wy���A�C
��'�y��BA�C
}�'�y��BA�C
}�'z���A�C
��'�z��9A�C
4(�{��8A�C
s<(�{��pA�C
k\(?|��8A�C
s|(W|��pA�C
k�(�|���A�C
��(}��)A�C
$�("~���A�C
��(���8A�C
3)׀��8A�C
3<)��oA�C
j\)>����A�C
�|)��A�C
�)؅���A�C
��)�����A�C
��)6���A�C
	�)$���HA�C
C*L���]A�C
X<*����NA�C
I\*����#A�C
^|*����A�C
V�TpT#8�\��F�$��Ԝ\�K�$��Ԝ\��0�i��;�*���c�צS�ç���������8�����J���z���J��z���J�9�z���J�G�z�̧J���z�ۧJ���z������	��
'�8�N�
\�n�����\�����/�g�����Y�r� ������}������������� ������ ����������ǡ����ϡz����ڡ��������������(L
���#�#���o��
% #p�@�0�	���o�0���o�o�.���o��#fLvL�L�L�L�L�L�L�L�LMM&M6MFMVMfMvM�M�M�M�M�M�M�M�MNN&N6NFNVNfNvN�N�N�N�N�N�N�N�NOO&O6OFOVOfOvO�O�O�O�O�O�O�O�OPP&P6PFPVPfPvP�P�P�P�P�P�P�P�PQQ&Q6QFQVQfQvQ�Q�Q�Q�Q�Q�Q�Q�QRR&R6RFRVRfRvR�R�R�R�R�R�R�R�RSS&S6SFSVSfSvS�S�S�S�S�S�S�S�S`#�# # #�#�# #�# #�#`#`#�#�# #`#�# #�#�#`#�##@#�#�##Liej�lP�@%#GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)GA$3a1TTGA$3a1(L>LGA$3a1����GA$3a1T�TGA$3a1����GA$3a1����GA$3a1>LCLGA$3a1��������.�0�0�@	(L
PLT��
����P��#�##�#�# #$#�%#�&c�T0T!pT7�%#F�#m�Ty�#���
�� ^
��`8�
�O�i���jV
��n"'

�9�r�R
u_b

�t
�L"������]���
 ����\�#��9� #0���9��3$��)��?Ԝ�W\�om`#0~�#0$# � $#��������N��k��#@��#@ #@3`#@S�#@s�#@� #@�`#@��#@z���#@9 #@Z`#@x@$#h���0�9�*�9�i�|��V;��/�#@Fc�tb��9~צ|�S�p�ç9� #@M!�$#������� ��*M
 ��[��*�
�����N�`#��##�#P�$# dE�|v����~���4��9�p������F�����y������
���!��,�2J�0Iz�I`��z�#(��h�#(�9��@#(�G�h
	�#($	��C	�#(]	#(j%#8�	��	
�A�	
A��	
`��	
��A�	��	x��	3��	
��	�
@#` 
�#�7
"�N
�"�g
m$�}
2%Ai&s&r�
��
�J�q"�M��
�]�	�
��
�h�
�h�
�h)i��k�Qml/�m>�ss)�$x�
FE�_Y}�l��'���d�5�����\�Q���a������S����� ���-���A2�RV��0d��1Y{�r
��
�&=�R�~���	���
���%m�H�
��
�
���S��
���&��tS��
���

���r��0

��J
���V
,�
�'���b

���/��r

���
v���
����
����

���
=�O�

���
�Iq���

��
��
�	�.�C�
Q��m
��(d�:+��
����h8��
X��f9
`��C�,�6�BoKL�Lt�SM�*S$b�X�tvZ�{P\S/�a>���Li�ej���lG�`%# �=m�`)q���u���v0�#�~O02�(BZ�sŔb_�%#Xt&#X�`&#X�Âd�'�������)�)�R����8G�84���:ȑ�K�W�`�&#u�&#������{w�����_�#��Ts�f���-*~XB��bP�d��w*N�@���wx��fg���������
˟%,�%#3\�MA�o[��a��
v��O��~a��%�@��j���/�*�Uy%�ypF��B_���u/~n������8�o�����Y�*���*2B|.C���j7�a}p}��#�@%#��q������*�,U�zE�-�sBh<�Z�n�&#s�0�� ���%#��#���B�����@��9z���/�%#; #Q��Mb���v#	(Lx����9��t�Xo%����t!�@R���l9���OK ���� ��t�E�#��*����,f�N�W�dgI<R�����^���)��
zt�.�yTA�W?�~�����t�����Lg{�_���^�'�f~CWg��R��[�#��H�����t8�p'0wx�GVj�f��|�����p�-`������/�ODD��]��Ns�x"��g�#���8n�4�pQ���c
h�v�3�����R`��m]��D
6��$���9BV�&huyC�CR^�������X�m
  3��5 B |�^ ��]u � � � {WQ� � �N� iy�!Ň)!��FE!5�
]!o!�! �!i���!�!&m}��!���!�!""��!","}oD"��t]"'�pi",]�z"	�"h��"�"��"1�!�"�"#%#rLm<#Q#J�j#G�8|#�#�#�q��#�#�#��Y	�#*�:�#$$$.$.w�D$N$V$�+c$x$�$k`%�$W.%�$�$�$�$%B�M%t�H5% �<U%j%{%�%�w��%�%����%�8�%&��%���
& &|66<&j�#a&�-rx&og��&��z�&�H��&����&�7t�&��!'�vs4'�it='���U'�2m'x'���y#�
�'~.�'��y�'�'�'(8�#(.(�G(w��](q(�(�(����( �(�m]�(��(�wf))هB2)�|X)�w@v)XX{�)"�)�)�)����)�)*%WV*/*C*�h�crtstuff.cderegister_tm_clones__do_global_dtors_auxcompleted.7295__do_global_dtors_aux_fini_array_entryframe_dummy__frame_dummy_init_array_entrychannel.creply_codes.14469channel_direct_tcpipchannel_forward_listenreply_codes.14520channel_setenvreply_codes.14584channel_request_ptyreply_codes.14611channel_request_pty_sizechannel_x11_reqreply_codes.14662reply_codes.14694__PRETTY_FUNCTION__.14931comp.ccomp_method_none_compcomp_method_none_decompcomp_method_nonecomp_method_zlib_alloccomp_method_zlib_freecomp_method_zlib_initcomp_method_zlib_compcomp_method_zlib_decompcomp_method_zlib_dtorcomp_method_zlibcomp_method_zlib_opensshno_comp_methodscrypt.ccrypt_initcrypt_encryptcrypt_dtorlibssh2_crypt_method_aes128_ctrlibssh2_crypt_method_aes192_ctrlibssh2_crypt_method_aes256_ctrlibssh2_crypt_method_aes128_cbclibssh2_crypt_method_aes192_cbclibssh2_crypt_method_aes256_cbclibssh2_crypt_method_rijndael_cbc_lysator_liu_selibssh2_crypt_method_blowfish_cbclibssh2_crypt_method_arcfourcrypt_init_arcfour128libssh2_crypt_method_arcfour128libssh2_crypt_method_cast128_cbclibssh2_crypt_method_3des_cbc_libssh2_crypt_methodshostkey.chostkey_method_ssh_rsa_inithostkey_method_ssh_rsa_dtorhostkey_method_ssh_rsa_initPEMhostkey_method_ssh_rsa_sig_verifyhostkey_method_ssh_rsa_signvhostkey_method_ssh_rsahostkey_method_ssh_dss_inithostkey_method_ssh_dss_dtorhostkey_method_ssh_dss_initPEMhostkey_method_ssh_dss_sig_verifyhostkey_method_ssh_dss_signvhostkey_method_ssh_dsshostkey_typekex.cdiffie_hellman_sha1kex_method_diffie_hellman_group1_sha1_key_exchangep_value.14428kex_method_diffie_hellman_group14_sha1_key_exchangep_value.14434kex_method_diffie_hellman_group_exchange_sha1_key_exchangekex_method_diffie_helman_group1_sha1kex_method_diffie_helman_group14_sha1kex_method_diffie_helman_group_exchange_sha1libssh2_kex_methodskex_method_strlenkex_method_listkexinitkex_agree_instrkex_get_method_by_namekex_agree_hostkeykex_agree_kex_hostkeykex_agree_cryptkex_agree_mackex_agree_compkex_string_pairkex_agree_methodsmac.cmac_method_common_initmac_method_common_dtormac_method_hmac_sha1_hashmac_method_hmac_sha1mac_method_hmac_sha1_96_hashmac_method_hmac_sha1_96mac_method_hmac_md5_hashmac_method_hmac_md5mac_method_hmac_md5_96_hashmac_method_hmac_md5_96mac_method_hmac_ripemd160_hashmac_method_hmac_ripemd160mac_method_hmac_ripemd160_openssh_commisc.cbase64_tablebase64_padbase64_reverse_tabletable64packet.cpacket_queue_listenerpacket_x11_openpacket.14520publickey.cpublickey_response_codespublickey_status_codespublickey_status_errorpublickey_packet_receivepublickey_response_idpublickey_response_successscp.cshell_quoteargscp_sendsession.clibssh2_default_alloclibssh2_default_freelibssh2_default_reallocbanner_receivebanner_sendsession_nonblockget_socket_nonblockingsession_disconnectpoll_channel_writepoll_listener_queuedsftp.csftp_attrsize_libssh2_store_u64find_zombie_requestremove_zombie_requestadd_zombie_requestsftp_packet_addsftp_packet_readsftp_packetlist_flushsftp_packet_asksftp_packet_requiresftp_packet_requirevsftp_attr2binsftp_bin2attr__PRETTY_FUNCTION__.14627sftp_packet_flushsftp_openfopen_responses.14675__PRETTY_FUNCTION__.14708read_responses.14724sftp_readdirread_responses.14759sftp_fstatfstat_responses.14855__PRETTY_FUNCTION__.14907sftp_unlinksftp_renameresponses.14984responses.15009sftp_mkdirsftp_rmdirsftp_statstat_responses.15082sftp_symlinklink_responses.15116userauth.creply_codes.14482userauth_passwordreply_codes.14512file_read_publickeyfile_read_privatekeysign_fromfileuserauth_hostbased_fromfilereply_codes.14605userauth_publickey_fromfileuserauth_keyboard_interactivereply_codes.14704transport.cdecrypt__PRETTY_FUNCTION__.14518fullpacket__PRETTY_FUNCTION__.14546send_existingversion.cknownhost.cfree_hostknownhost_to_externaloldstyle_hostlinehashed_hostlineagent.cagent_connect_unixagent_transact_unixagent_disconnect_unixsupported_backendsagent_signagent_free_identitiesagent_publickey_to_externalopenssl.caes_ctr_initaes_ctr_do_cipheraes_ctr_cleanupmake_ctr_evpaes_ctr_cipher.14497aes_ctr_cipher.14501aes_ctr_cipher.14505passphrase_cbread_private_key_from_filewrite_bngen_publickey_from_rsagen_publickey_from_dsagen_publickey_from_rsa_evpgen_publickey_from_dsa_evppem.cread_asn1_lengthkeepalive.cglobal.c_libssh2_initialized_libssh2_init_flags__FRAME_END___libssh2_rsa_sha1_verify_libssh2_pem_decode_sequence_libssh2_channel_write_libssh2_channel_nextid_libssh2_pem_decode_integer_libssh2_packet_askv_libssh2_cipher_init_libssh2_recv_libssh2_list_first_libssh2_pem_parse_libssh2_calloc_libssh2_rsa_sha1_sign_libssh2_packet_require_libssh2_channel_forward_cancel_libssh2_ntohu64_libssh2_list_next_libssh2_userauth_publickey_libssh2_comp_methods_edata_libssh2_send_libssh2_pub_priv_keyfile_fini_libssh2_mac_methods_libssh2_ntohu32_libssh2_cipher_crypt_libssh2_list_init_libssh2_channel_packet_data_len_libssh2_list_add_libssh2_list_prev_libssh2_EVP_aes_128_ctr_libssh2_channel_open_libssh2_channel_process_startup_libssh2_dsa_new_private_libssh2_channel_read_libssh2_channel_flush_libssh2_channel_close_libssh2_store_u32_libssh2_channel_extended_data_libssh2_base64_encode_libssh2_EVP_aes_192_ctr_libssh2_packet_ask_libssh2_EVP_aes_256_ctr_libssh2_dsa_new_libssh2_channel_receive_window_adjust_libssh2_store_str_libssh2_dsa_sha1_verify__dso_handleagent_ops_unix_libssh2_wait_socket_libssh2_init_if_needed_libssh2_session_set_blocking_libssh2_channel_locate_libssh2_transport_send_libssh2_list_remove_libssh2_transport_read_libssh2_packet_add_end_libssh2_error_libssh2_packet_requirev__bss_start_DYNAMIC_libssh2_rsa_new_private_libssh2_packet_burn_libssh2_channel_free_libssh2_dsa_sha1_sign_libssh2_rsa_new__GNU_EH_FRAME_HDR__TMC_END___GLOBAL_OFFSET_TABLE__libssh2_htonu32_libssh2_kex_exchange_libssh2_init_aes_ctrlibssh2_publickey_list_fetchlibssh2_channel_wait_closedlibssh2_banner_setgetenv@@GLIBC_2.2.5libssh2_channel_wait_eofBN_randfree@@GLIBC_2.2.5libssh2_userauth_authenticatedrecv@@GLIBC_2.2.5libssh2_poll_channel_readlibssh2_sftp_fsync__errno_location@@GLIBC_2.2.5libssh2_versionEVP_CipherInitstrncpy@@GLIBC_2.2.5strncmp@@GLIBC_2.2.5_ITM_deregisterTMCloneTableBN_set_wordinflatelibssh2_sftp_mkdir_exlibssh2_channel_forward_listen_exlibssh2_knownhost_dellibssh2_publickey_shutdownlibssh2_session_hostkeyfread@@GLIBC_2.2.5libssh2_session_freeEVP_PKEY_get1_DSAlibssh2_userauth_publickey_fromfile_exHMAC_InitEVP_md5libssh2_channel_request_pty_size_exlibssh2_agent_freelibssh2_userauth_listlibssh2_userauth_hostbased_fromfile_exfcntl@@GLIBC_2.2.5DSA_newBN_newRSA_sizeEVP_aes_256_cbclibssh2_session_block_directionslibssh2_knownhost_writefilelibssh2_sftp_rmdir_exlibssh2_knownhost_readlinelibssh2_knownhost_writelinefclose@@GLIBC_2.2.5EVP_aes_192_cbcPEM_read_bio_DSAPrivateKeyBN_num_bitslibssh2_sftp_get_channellibssh2_sftp_tell64strlen@@GLIBC_2.2.5libssh2_sftp_close_handlelibssh2_session_disconnect_exlibssh2_channel_get_exit_signalEVP_sha1libssh2_agent_userauthlibssh2_channel_forward_acceptlibssh2_channel_flush_exBN_bin2bnsend@@GLIBC_2.2.5RAND_bytesRSA_freelibssh2_sha1libssh2_channel_direct_tcpip_exstrchr@@GLIBC_2.2.5libssh2_sftp_statvfsdifftime@@GLIBC_2.2.5rewind@@GLIBC_2.2.5libssh2_channel_get_exit_statusEVP_PKEY_freelibssh2_base64_decodesnprintf@@GLIBC_2.2.5libssh2_session_startupstrrchr@@GLIBC_2.2.5libssh2_exitgettimeofday@@GLIBC_2.2.5EVP_DigestInit__assert_fail@@GLIBC_2.2.5EVP_Cipherdeflatelibssh2_channel_setenv_exlibssh2_session_callback_setlibssh2_sftp_initlibssh2_scp_send64HMAC_CTX_cleanuplibssh2_channel_eofmemset@@GLIBC_2.2.5libssh2_knownhost_addcBN_CTX_freelibssh2_channel_open_exPEM_read_bio_RSAPrivateKeyEVP_rc4libssh2_sftp_rename_exlibssh2_sftp_open_exDSA_freeEVP_CIPHER_CTX_initlibssh2_sftp_seeklibssh2_agent_disconnectlibssh2_knownhost_addmemchr@@GLIBC_2.2.5memcmp@@GLIBC_2.2.5libssh2_userauth_password_exfgets@@GLIBC_2.2.5libssh2_session_last_errorHMAC_Updatelibssh2_channel_window_read_exDSA_SIG_freelibssh2_session_set_timeoutlibssh2_keepalive_sendOPENSSL_add_all_algorithms_noconfstrcmp@@GLIBC_2.2.5deflateInit_libssh2_knownhost_checkpstrtoll@@GLIBC_2.2.5libssh2_initlibssh2_channel_x11_req_exlibssh2_session_last_errnolibssh2_session_method_preflibssh2_hostkey_methodsEVP_EncryptUpdatefeof@@GLIBC_2.2.5__gmon_start__libssh2_sftp_readdir_exDSA_do_verifystrtol@@GLIBC_2.2.5libssh2_session_get_timeoutmemcpy@@GLIBC_2.14BN_mod_expBN_CTX_newlibssh2_sftp_dtorinflateEndlibssh2_session_init_exlibssh2_channel_send_eoflibssh2_md5libssh2_scp_recvEVP_DigestUpdatelibssh2_session_get_blockingEVP_aes_128_ecblibssh2_sftp_seek64libssh2_sftp_last_errorEVP_CIPHER_CTX_set_paddingEVP_PKEY_get1_RSAmalloc@@GLIBC_2.2.5libssh2_knownhost_initEVP_get_digestbynamelibssh2_session_abstractlibssh2_sha1_initRSA_verifyBIO_ctrllibssh2_channel_request_pty_exBIO_freeEVP_aes_256_ecblibssh2_polllibssh2_session_banner_getEVP_MD_CTX_initEVP_ripemd160deflateEndEVP_get_cipherbynamelibssh2_agent_connectBN_bn2binRSA_newlibssh2_freerealloc@@GLIBC_2.2.5EVP_CIPHER_CTX_get_app_datalibssh2_knownhost_readfilelibssh2_publickey_add_exEVP_DigestFinalinflateInit_poll@@GLIBC_2.2.5EVP_aes_128_cbclibssh2_hostkey_hashlibssh2_keepalive_configlibssh2_channel_window_write_exmemmove@@GLIBC_2.2.5EVP_des_ede3_cbcHMAC_Finallibssh2_agent_get_identityOpenSSL_add_all_cipherslibssh2_sftp_readlibssh2_md5_initlibssh2_channel_read_exlibssh2_channel_write_exfopen@@GLIBC_2.2.5libssh2_publickey_remove_exlibssh2_channel_handle_extended_datalibssh2_publickey_initlibssh2_scp_send_exlibssh2_sftp_shutdownlibssh2_publickey_list_freelibssh2_sftp_writelibssh2_userauth_keyboard_interactive_exlibssh2_channel_receive_window_adjust2libssh2_agent_initRSA_signlibssh2_sftp_symlink_exlibssh2_session_methodsEVP_bf_cbclibssh2_sftp_fstatvfslibssh2_channel_set_blockinglibssh2_session_supported_algssprintf@@GLIBC_2.2.5PEM_read_bio_PrivateKeyEVP_EncryptInitlibssh2_sftp_tellconnect@@GLIBC_2.2.5libssh2_trace_sethandlerlibssh2_sftp_fstat_exfwrite@@GLIBC_2.2.5EVP_CIPHER_CTX_set_app_dataEVP_aes_192_ecblibssh2_sftp_stat_ex_ITM_registerTMCloneTablelibssh2_session_banner_setlibssh2_tracelibssh2_session_handshakeBN_clear_freelibssh2_session_flaglibssh2_channel_handle_extended_data2libssh2_agent_list_identitieslibssh2_knownhost_free__cxa_finalize@@GLIBC_2.2.5BIO_new_fileEVP_cast5_cbclibssh2_sftp_unlink_exDSA_do_sign__ctype_b_loc@@GLIBC_2.3libssh2_knownhost_checkEVP_CIPHER_CTX_cleanupsocket@@GLIBC_2.2.5libssh2_knownhost_get.symtab.strtab.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.text.fini.rodata.eh_frame_hdr.eh_frame.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.comment.gnu.build.attributes��$.���o��8�@��%H���o�.�.�U���o�0�0@d�0�0�nB�@�@px(L(LsPLPL�~TT�B�����
������@ ������
�P�P��*��#���#��#� ��#���#�8� # ��$#$� ��%#�%@ �0�%,��&c�% �&P7^	 ^Y*y�PK-{FZvD��lib/pkgconfig/libssh2.pcnu�[���###########################################################################
# libssh2 installation details
###########################################################################

prefix=/usr/local/libssh2
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include

Name: libssh2
URL: http://www.libssh2.org/
Description: Library for SSH-based communication
Version: 1.5.0
Requires.private: libssl,libcrypto,zlib
Libs: -L${libdir} -lssh2 -L/usr/local/openssl-1.0.0/lib 
Libs.private: 
Cflags: -I${includedir}
PK-{FZ�u���lib/libssh2.lanuȯ��# libssh2.la - a libtool library file
# Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.7
#
# Please DO NOT delete this file!
# It is necessary for linking the library.

# The name that we can dlopen(3).
dlname='libssh2.so.1'

# Names of this library.
library_names='libssh2.so.1.0.1 libssh2.so.1 libssh2.so'

# The name of the static archive.
old_library='libssh2.a'

# Linker flags that can not go in dependency_libs.
inherited_linker_flags=''

# Libraries that this one depends upon.
dependency_libs=' -R/usr/local/openssl-1.0.0/lib -L/usr/local/openssl-1.0.0/lib -lssl -lcrypto -lz'

# Names of additional weak libraries provided by this library
weak_library_names=''

# Version information for libssh2.
current=1
age=0
revision=1

# Is this an already installed library?
installed=yes

# Should we warn about portability when linking against -modules?
shouldnotlink=no

# Files to dlopen/dlpreopen
dlopen=''
dlpreopen=''

# Directory that this library needs to be installed in:
libdir='/usr/local/libssh2/lib'
PK-{FZI������
lib/libssh2.anu�[���!<arch>
/               1670404310  0     0     0       5338      `
���6�R�R�R���u������������������������������������������������������6�6�6�6�6�6?2?2?2{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F{F�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z���������2�2~rrrrrrrrrrrrX�X�X�X�X�X�X�X��:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�����������.�.�._libssh2_channel_nextid_libssh2_channel_locate_libssh2_channel_openlibssh2_channel_open_exlibssh2_channel_direct_tcpip_exlibssh2_channel_forward_listen_ex_libssh2_channel_forward_cancel_libssh2_channel_freelibssh2_channel_forward_cancellibssh2_channel_forward_acceptlibssh2_channel_setenv_exlibssh2_channel_request_pty_exlibssh2_channel_request_pty_size_exlibssh2_channel_x11_req_ex_libssh2_channel_process_startuplibssh2_channel_process_startuplibssh2_channel_set_blocking_libssh2_channel_flush_libssh2_channel_receive_window_adjustlibssh2_channel_flush_exlibssh2_channel_get_exit_statuslibssh2_channel_get_exit_signallibssh2_channel_receive_window_adjustlibssh2_channel_receive_window_adjust2_libssh2_channel_extended_datalibssh2_channel_handle_extended_data2libssh2_channel_handle_extended_data_libssh2_channel_readlibssh2_channel_read_exlibssh2_channel_window_read_ex_libssh2_channel_packet_data_len_libssh2_channel_writelibssh2_channel_write_exlibssh2_channel_send_eoflibssh2_channel_eoflibssh2_channel_wait_eof_libssh2_channel_closelibssh2_channel_closelibssh2_channel_wait_closedlibssh2_channel_freelibssh2_channel_window_write_ex_libssh2_comp_methodslibssh2_crypt_methodslibssh2_hostkey_methodslibssh2_hostkey_hashlibssh2_session_hostkey_libssh2_kex_exchangelibssh2_session_method_preflibssh2_session_supported_algs_libssh2_mac_methods_libssh2_error_libssh2_recv_libssh2_send_libssh2_ntohu32_libssh2_ntohu64_libssh2_htonu32_libssh2_store_u32_libssh2_store_strlibssh2_base64_decode_libssh2_base64_encodelibssh2_freelibssh2_tracelibssh2_trace_sethandler_libssh2_list_init_libssh2_list_add_libssh2_list_first_libssh2_list_next_libssh2_list_prev_libssh2_list_remove_libssh2_calloc_libssh2_packet_add_libssh2_packet_ask_libssh2_packet_askv_libssh2_packet_require_libssh2_packet_burn_libssh2_packet_requirevlibssh2_publickey_initlibssh2_publickey_add_exlibssh2_publickey_remove_exlibssh2_publickey_list_fetchlibssh2_publickey_list_freelibssh2_publickey_shutdownlibssh2_scp_recvlibssh2_scp_send_exlibssh2_scp_send64libssh2_session_banner_setlibssh2_banner_setlibssh2_session_init_exlibssh2_session_callback_set_libssh2_wait_socketlibssh2_session_block_directionslibssh2_session_handshakelibssh2_session_startuplibssh2_session_freelibssh2_session_disconnect_exlibssh2_session_methodslibssh2_session_abstractlibssh2_session_last_errorlibssh2_session_last_errnolibssh2_session_flag_libssh2_session_set_blockinglibssh2_session_set_blockinglibssh2_session_get_blockinglibssh2_session_set_timeoutlibssh2_session_get_timeoutlibssh2_poll_channel_readlibssh2_polllibssh2_session_banner_getlibssh2_sftp_dtorlibssh2_sftp_initlibssh2_sftp_shutdownlibssh2_sftp_open_exlibssh2_sftp_readlibssh2_sftp_readdir_exlibssh2_sftp_writelibssh2_sftp_fsynclibssh2_sftp_fstat_exlibssh2_sftp_seek64libssh2_sftp_seeklibssh2_sftp_telllibssh2_sftp_tell64libssh2_sftp_close_handlelibssh2_sftp_unlink_exlibssh2_sftp_rename_exlibssh2_sftp_fstatvfslibssh2_sftp_statvfslibssh2_sftp_mkdir_exlibssh2_sftp_rmdir_exlibssh2_sftp_stat_exlibssh2_sftp_symlink_exlibssh2_sftp_last_errorlibssh2_sftp_get_channellibssh2_userauth_listlibssh2_userauth_authenticatedlibssh2_userauth_password_exlibssh2_userauth_hostbased_fromfile_ex_libssh2_userauth_publickeylibssh2_userauth_publickey_fromfile_exlibssh2_userauth_publickeylibssh2_userauth_keyboard_interactive_ex_libssh2_transport_read_libssh2_transport_sendlibssh2_versionlibssh2_knownhost_initlibssh2_knownhost_addlibssh2_knownhost_addclibssh2_knownhost_checklibssh2_knownhost_checkplibssh2_knownhost_dellibssh2_knownhost_freelibssh2_knownhost_readlinelibssh2_knownhost_readfilelibssh2_knownhost_writelinelibssh2_knownhost_writefilelibssh2_knownhost_getagent_ops_unixlibssh2_agent_initlibssh2_agent_connectlibssh2_agent_list_identitieslibssh2_agent_get_identitylibssh2_agent_userauthlibssh2_agent_disconnectlibssh2_agent_free_libssh2_rsa_new_libssh2_rsa_sha1_verifylibssh2_sha1_libssh2_dsa_new_libssh2_dsa_sha1_verify_libssh2_cipher_init_libssh2_cipher_crypt_libssh2_EVP_aes_128_ctr_libssh2_EVP_aes_192_ctr_libssh2_EVP_aes_256_ctr_libssh2_init_aes_ctr_libssh2_rsa_new_private_libssh2_dsa_new_private_libssh2_rsa_sha1_sign_libssh2_dsa_sha1_signlibssh2_sha1_initlibssh2_md5_initlibssh2_md5_libssh2_pub_priv_keyfile_libssh2_pem_parse_libssh2_pem_decode_sequence_libssh2_pem_decode_integerlibssh2_keepalive_configlibssh2_keepalive_sendlibssh2_initlibssh2_exit_libssh2_init_if_neededchannel.o/      1670404304  0     0     100644  36536     `
ELF>x�@@
UH��H�� H�}�H�E苀��E�H�E�H�H���H�E��&H�E�@09E�s
H�E�@0�E�H�E�H���H�E�H�}�uӋE��PH�E艐��E���UH��H�� H�}�u�H�E�H�H���H�E��%H�E��@09E�u	H�E��H�E�H���H�E�H�}�u�H�E�H�H���H�E��OH�E�H��0H���H�E��"H�E��@09E�uH�E��3H�E�H���H�E�H�}�u�H�E�H���H�E�H�}�u����UH��SH��XH�}�H�u��U��M�D�E�L�M�H�Eȋ�������H�E�Hǀ��H�E�Hǀ��H�E�Hǀ���E�����H�E�H����H�E�H�����H�Eȉ���H�E�H����H���H�EȾ�H���H��H�E�H����H�E�H����H��u H�EȺ�����H�����oH�E�H�����U��P H�E�H�@H�MȋU�H�u�H����H��H���H�CH�E�H����H�@H��uNH�EȺ�����H���H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ������U�H�E�H����H�@H�M�H��H���H�E�H����H�Uȋ����P0H�E�H�����U��PLH�E�H�����U��PHH�E�H�����U��PPH�E�H����H�U�H�P`H�E�H����H��H�E�H�H��H���H�E�H�@H�M�H�U�H����H��H���H��H�E�H����H�E�H����H�E�H�E�H����H��uH�EȺ�����H�����H�E�H�PH�U��Z�U�H�M�H�E�H��H���H�Eȋ���H�E��H����U�H�E��H����U�H�E��H���H�E�ǀ��H�Eȋ�������H�E�H����H�E�H����H�M�H�E�L�EH����E�}��u �M�H�EȺ��H������}�t�M�H�EȺ��H����H�E�ǀ��H�Eȋ�������H�E�H����H�E�H�����U�H��H�<H�E�H����H�E�H����H�E�VjI��A��H���H���E�}��u H�EȺ����H�����7�}��QH�E�H�����<[�H�E�H����H�PH�E�H����H����CDH�E�H����H�P	H�E�H����H����C8H�E�H����H�P	H�E�H����H����C4H�E�H����H�P
H�E�H����H����C<H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ��H�E�H�����	H�E�H�����<\uH�EȺ���H�������H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H���8H�E�H�@H�M�H�U�H����H�RH��H���H�E�H����H���H�E�H�����P0H�E܉�H����.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H�E�H����H�u�H�E�H��jI��A��^H���H����y�H�E�H����H�E�H����H�u�H�E�H��jI��A��_H���H�����J���H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ���H�]���UH��H��PH�}�H�uЉỦM�D�E�L�M�H�}�u
����H�E��}L�M�D�EċMȋU�H�u�H�E�H��WH���H��H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H��0H�}�H�u�U�H�M�D�E�H�E苀�����&H�E�H���H��H�E�H����H�E�H���H��H�E�H����H�E�H����H�E�H����H�H�PH�E�H���H�E�H�@H�M�H�U�H���H��H���H��H�E�H����H�E�H����H�E�H�E�H����H��u H�E������H�����H�E�H����H�M�H�E�H��H����U�H�E��H���H�E�H����H�M�H�E�H��H����U�H�E��H���H�E�H���H�E�H����H�E�H��RI��A��� ��H���H��H�E�H�}�u&H�E�H������uH�E�ǀ����@H�E�ǀ��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E���UH��H��@H�}�H�uЉU�H�M�D�E�H�}�u��u��H�E��}�H�M��U�H�u�H�E�A��H�����H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H��PH�}�H�u��U�H�M�D�E�H�}�uH�E�H�Eȋ�����*H�E�H�����H�Eȉ��H�Eȋ���PH�Eȉ��H�E�H ���H���H�E�H�@H�U�H�Mȋ����H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��u H�EȺ�����H�����+H�E�H�PH�U��PH�E�
�H���H�E�H�PH�U��H�Eȋ����H�M�H�E�H��H����U�H�E��H���H�E�ǀ�H�Eȋ������H�Eȋ����H�E�H���H�E�A��H����E�}��u H�EȺ����H�����O�}�t\H�EȺ�����H���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ����H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�Eȋ������H�E�H�� �H�M�H�U�H�E�VjA�A��H���H���E�}��u H�EȺ����H�����>�}�t.H�EȺ��H���H�E�ǀ���
H�E��<Q��H�EȾ`H���H�E�H�}�uH�EȺ�����H����7H�E�H�@H�U�H�Mȋ������H��H���H��H�E�H�P H�E�H�@ H��u;H�EȺ�����H���H�E�H�@H�M�H�U�H��H���H�E��H�E�H�U�H�PH�Eȋ����H�E�H�@ H�M�H��H���H�E�H�P H�Eȋ����H��H�E�H��v!�}�uH�E�H��H�����H�E��P(�
H�E��U��P(H�E��@@H�E��U��PDH�E�H�U�H���H��H���H�}�t
H�E��P(H�E��H�E�H�@H�M�H�U�H��H���H�E�ǀ�H�E��aH�E��<RuCH�E�H�@H�M�H�U�H��H���H�EȺ���H���H�E�ǀ���H�E�ǀ����UH��H��@H�}�H�uЉU�H�M�D�E�H�}�u��u��H�E��}�H�M��U�H�u�H�E�A��H�����H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H��`H�}�H�E�H�@H�E�H�E�H�@ H���H�E�H�E�H��"H�E��E�H�E��@H����H�E�H�@H�M�H�U�H��H���H�E�H�E�H�E�H�}�u H�E������H����������H�E�H�PH�U��PH�E���H���H�E�H�PH�U��H�E�H�H H�U�H�E�H��H���H�E��@(��H�E���H���H�E��@H�H�E�H�@PH�E�H�E��@H����H�U�H�u�H�E�A��H����Ẽ}��u*�M�H�E���H���H�E�H�U�H�PP�E����}�t(H�E������H���H�E��@H�E���H�E�H�@H�M�H�U�H��H���H�E��@HH�E�H��0H���H�E��2H�E�H���H�E�H�E�H����Ẽ}��u�E��RH�E�H�E�H�}�u�H�E�H�@H�M�H�U�H�R H��H���H�E�H���H�E�H�@H�M�H�U�H��H��ЋE���UH��H�� H�}�H�}�u�����X��H�E�H�E�H����E��}��u2H�E�H�@�����t H�E�H�@H�U�H��H����E��}�t��E���UH��H�� H�}�H�E�H�@H����E��}��H�E�H��0H���H��tUH�E�H��0H���H�E�H�E�H���H�E�@@�P�H�E�P@H�E�H�U�H�R`H���H��H���H�E��A�}��uH�E�H�@�����H����H�E�H�@����H������UH��H��0H�}�H�}�u��p��H�E�H�E�H�����H�E�H�E�H�@�����t<H�}�u5H�E�H�@H������u H�E�H�@H�U�H��H����E�}�t�H�E���UH��H��PH�}�H�u��U�H�M�D�E�H�E�H�@`H�E�H�Eȋ@x����U��E�Ѓ���H�E�H���H�E�H���H���H�E�H�@H�M�H�U�H���H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E�������H����wH�E�H�PH�U��bH�EȋPDH�E��H���H�E��H���H�E�H�PH�U���U�H�M�H�E�H��H����U�H�M�H�E�H��H���H�E��@xH�Eȋ@x���H�E�H���H�E�H���H�E�A��H����E�}��u�M�H�E����H����E���}�tTH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E��@xH�E�������H����9H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�Eȋ@0H�U�H���H���H�E��@xH�Eȋ@x����H�E�H���H�E�H���H�M�H�U�H�E�VjI��A��H���H���E�}��u�E���}�tH�E��@x�E��nH�E��<cu*H�E�H�@H�M�H�U�H��H���H�E��@x��9H�E�H�@H�M�H�U�H��H���H�E��@xH�E�����H�����UH��H��0H�}�H�u�U�H�M�D�E�H�}�u�����i��H�E�}�H�MЋU�H�u�H�E�A��H���b����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��`H�}�H�u��U�H�M�D�E�D�M�H�E�H�@`H�E�H�Eȋ�����3�U��E��=vH�E������H�����U��E�Ѓ�)��H�E�H���H�E�H���H���H�E�H�H�E�H�E�H�PH�U��bH�EȋPDH�E��H���H�E��H���H�E�H�PH�U���U�H�M�H�E�H��H����U�H�E��H����UH�E��H����UH�E��H����U H�E��H����U�H�M�H�E�H��H���H�E�ǀ�H�Eȋ������H�E�H���H�E�H���H�E�A��H����E�}��u�M�H�E����H����E��8�}�t)H�E�ǀ��M�H�E����H����	H�Eȋ@0H�U�H�����H���H�E�ǀ�H�Eȋ������H�E�H���H�E�H���H�M�H�U�H�E�VjI��A��H���H���E�}��u�E���}�t&H�E�ǀ�H�E����H����SH�E���E�H�E�H�@H�M�H�U�H��H���H�E�ǀ��}�cu��H�E�����H�����UH��H��@H�}�H�u�U�H�M�D�E�D�M�H�}�u�������H�E�D�M�D�E�H�MЋU�H�u�H�E�H���} W�}W�}WH�����H�� �E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��@H�}؉uԉUЉM�D�E�H�E�H�@`H�E��E��H�E؋������H�E�Hǀ�'H�E�H���H���H�E�H�H�E�H�E�H�PH�U��bH�E؋PDH�E��H���H�E�
�H���H�E�H�PH�U���U�H�E��H����U�H�E��H����U�H�E��H����U�H�E��H���H�E�ǀ�H�E؋������H�E�H���H�E�H���H�E�A��H����E�}��u�M�H�E���H����E��`�}�t&H�E�ǀ��M�H�E���H����4H�E؋@0H�U�H�����H����E�H�E�ǀ��E���UH��H��0H�}�u�U�M�D�E�H�}�u�����g��H�E�}؋M܋U�u�H�E�A��H�������E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H�ĀH�}��u�H�U�H�M�D�E�H�E�H�@`H�E�H�}�tH�E�H�����H�E�H�}�tH�E�H����� H�E�H�E��������H�U�H�E�H�H�PH�E�H���H�E�H��H���H�E�H�@H�M�H�U�H���H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E������H����6H�E�H�PH�U��bH�E��PDH�EЉ�H���H�Eк�H���H�E�H�PH�U���}���H�E�H�PH�UЉʈH�}�tH�E���H�U�H�M�H��H���H�E��H�EЉ�H���H�}�tH�E�H�U�H�M�H��H����TH�E��H����E��4�E�H��D���H�MЋU��Hc�Hщ¾H�ϸ��E��}�~�H�U�H�E�H�H�EЋU�H�EЉ�H���H�E�ǀ�H�E�������	H�E�H���H�E�H���H�E�A��H����E܃}��u�M�H�E���H����E���}�tWH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��M�H�E���H����7H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E��@0H�U�H����H���H�E�ǀ�H�E��������H�E�H��H�E�H��H�M�H�U�H�E�VjI��A��H���H���E܃}��u�E���}�t&H�E�ǀ��M�H�E���H����SH�E���E�H�E�H�@H�M�H�U�H��H���H�E�ǀ��}�cu��H�E����H�����UH��H��0H�}�u�H�U�H�M�D�E�H�}�u�����i��H�E�}�H�M�H�U؋u�H�E�A��H���b����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��`H�}�H�u�H�U�H�M�L�E�H�E�H�@`H�E�H�Eȋ����*H�E�H�P
H�E�H�� H�E�H0��H���H�}�tH�E�H�� H�PH�E�H�� H�E�H�@H�M�H�U�H�� H��H���H��H�E�H��H�E�H��H�E�H�E�H��H��uH�E�������H����nH�E�H�PH�U��bH�EȋPDH�E��H���H�U�H�M�H�E�H��H���H�E�H�PH�U��H�}�tH�E���H�E��H���H�E�ǀH�Eȋ����	H�E�H�� H�E�H��H�}�H�M�H�E�I��H����E�}��u�M�H�E����H����E���}�tWH�E�H�@H�M�H�U�H��H��H���H�E�HǀH�E�ǀ�M�H�E����H����7H�E�H�@H�M�H�U�H��H��H���H�E�HǀH�Eȋ@0H�U�H��(��H���H�E�ǀH�Eȋ�����H�E�H��0H�E�H��(H�M�H�U�H�E�VjI��A��H���H���E�}��u�E���}�t&H�E�ǀ�M�H�E����H����SH�E���E�H�E�H�@H�M�H�U�H��H���H�E�ǀ�}�cu��H�E�����H�����UH��H��0H�}�H�u�U�H�M�D�E�H�}�u�����i��H�E�}؋U�H�M�H�u�H�E�I��H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��H�}��u�H�}�tH�E�H�@`�U��H������UH��H��@H�}ȉu�H�Eȋ�8����H�E�H�@`H�H���H�E�H�E�Hǀ@H�E�HǀH�eH�E�H���H�E�H�E�H�@��E�}�^t
�}�_�/H�E�H�@H��H�����H�Eȋ@09��
�}�^tH�E�H�@H��H�������H�E�}�t+�}�_u�}�t�E�H�H9E�t�}�^���}���H�E�H�@ ��H�E�H�@()‰ЉE�H�E�H��@H�E�H�@ H�H�P�H�E�H��@H�E�H��H�E�H�H�H�E�H��HH�E�H�@`H�@H�U�H�R`H��H�U�H�RH��H���H�E�H���H�E�H�@`H�@H�U�H�R`H��H�U�H��H���H�E�H�E�H�}������H�E�ǀ8H�EȋP\H�E�H��H)�H�EȉP\H�EȋPLH�E�H��H)�H�EȉPLH�E�H��@H��t1H�E�H��@��H�Eȹ�H����E؃}��u�E��H�E�ǀ8H�E�H��H��UH��H�� H�}�u�H�}�u�����]��H�E�U�H�E��H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H�}�H�}�u��H�E��@$]�UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�}��4H�E�H�@`H�E�H�E�H�@(H����H�E�H�@(H���H�E�H�}�t|H�E�H�@H�U�H�M�H��H��H���H��H�E�H�H�E�H�H��uH�E������H����H�E�H�H(H�E�H�H�U�H��H���H�E�H�H�E�H��H�}�t1H�E�H�U�H��$H�}�tH�E�H�H�}�tH�E�H�H�}�tH�E�H�H�}�tH�E�H�H�}�tH�E�H�H�}tH�EH����UH��H��0H�}�u��H�M؈E�H�}�t
H�E�PLH�E؉H�E苀P�����}�u0H�E�PX�E��=�wH�E�PX�E��H�E�PX��"�}�uH�E�@X��u
��H�E�@XE�H�E��@XH�E�ƀT]H�E�@DH�U�H��U��H���H�E�H��Y�E��H���H�E�ǀPH�E�H��TH�E�H�@`A���	H����E��}��uH�E�H�@`�M����H����E��R�}�t&H�E�U�PXH�E�H�@`������H����&H�E�PL�E��H�E�PLH�E�ǀP���UH��H��@H�}�H�uЉЈE�H�}�u	H�����u��H�E��U�H�EЉ�H�M�H�E�H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��}�t�E�H���E���UH��H��0H�}�H�u��H�MЈE�H�}�u�����f��H�E��U�H�E��H�M�H�E�H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H�� H�}�u�H�E苀���u�E��H�E�PVH�E�ǀ�H�E苀���u%�}�uH�E����H����E��}��u�E��H�E�ǀ����UH��H�� H�}�u�H�}�u�����]��H�E�U�H�E��H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��H�}��u�U�H�E���H������UH��H��`H�}��u�H�U�H�M�H�E�H�@`H�E��E�H�E���`��t)H�E��@L��H�E��@H���‰��Љ�H�E�H�H9�ssH�E��@HH�U��H�E��@L)‰ЉE�}�w�E�H�E�ǀ`�u�H�E���H����Eԃ}�t
�E�H���H�E�ǀ`H�E�H����Eԃ}��}�y#�}��t�M�H�Eغ��H���H��H�E�H�H���H�E���H�E�H�E�H�E�H���H�E�H�E�H�@H��H�����H�E���d�}�t=H�E�H�@�<_u.H�E��P0H�E���d9�uH�E�H�@H��H���9E�tp�}�u$H�E�H�@�<^uH�E��P0H�E���d9�tF�}��#H�E�H�@�<_�H�E��P0H�E���d9���H�E��@V<��H�E��‹E�)‰ЉE��E�H�E�H�@ ��H�E�H�@()‰�9E�| H�E�H�@ ��H�E�H�@()‰ЉE��E��E�H�H�U�H�JH�U�H�R(H�4�U�Hc�H�U�H�H��H���H�E�H�P(�E�H�H�H�E�H�P(�E�E��}�t@H�E�H���H�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}�t
H�E�9E������}�uFH�E��@U��uH�E��@T��t��R�}��t��E�M�H�Eغ��H���H��+H�E��P\�E�)�H�E��P\H�E��PL�E�)�H�E��PL�E�H���UH��H��@H�}؉u�H�U�H�M�H�}�uH������H�Eغ�H���H�E�H�E�H;E�ve��H�E�H�E���H�Eع�H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t���H�E�H�M�H�Uȋu�H�E�H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E�H���UH��H��0H�}؉u�H�E�H�@`H�E�H�E�H�H���H�E�H�}������H�E�H�@H��H����E�}�t4H�E�H�@�<_u%H�E؋@09E�uH�E�H�@H��H���9E�tN�}�uH�E�H�@�<^uH�E؋@09E�t-�}�u?H�E�H�@�<_u0H�E؋@09E�u$H�E��@V<uH�E�H�P H�E�H�@(H)�H��� H�E�H���H�E�H�}��.������UH��H��@H�}؉u�H�U�H�M��E�H�E�H�@`H�E�H�E�H�}��vH�E��H�E؋�h����H�E�HlH�E�H�E��@@��t!H�E�H�@`����H���H��H�E��@A��t!H�E�H�@`����H���H��YH�E�H����E��}��}�y'�}��t!H�E�H�@`�M����H���H��H�E؋@8��u*H�E�ǀ�}��uH���������H�E�H�U�H����}�t�_��^H�E�H�PH�U�H�E؋PDH�E��H����}�t�U�H�E��H���H�E�H���H�E؋@8��H9�vH�E؋@8��H�E�H���H�E�H���H�E؋@<��H9�vH�E؋@<��H�E�H���H�E�H�����H�E��H���H�E�H�U�H��lH)�H��H�E�H���H�E�ǀhH�E؋�h����H�E�H���H�E�H���H�E�H��lH�M�H�E�I��H����E��}��u�M�H�E���H���H��z�}�t(H�E�ǀh�M�H�E���H���H��LH�E؋P8H�E�H���)�H�E؉P8H�E�H���H�E�H�H�E�H�E�ǀhH�E��H������UH��H��0H�}�u�H�U�H�M�H�}�u	H�����j��H�E�H�M�H�U؋u�H�E�H���H�E�H�}��u6H�E�H�@`�����t$H�E�H�@`H�U�H��H���H�H�E�H�}�t�H�E���UH��H��0H�}�H�E�H�@`H�E��E�`H�E؋PDH�E�H����H���H�u�H�E�A���H����E�}��u�M�H�E����H����E��+�}�tH�E�������H����
H�E��@A���UH��H�� H�}�H�}�u�����X��H�E�H�E�H���&����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��SH��(H�}�H�}�u
�����H�E�H�@`H�E�H�E�H�H���H�E��TH�E�H�@�<^tH�E�H�@�<_u&H�E؋X0H�E�H�@H��H���9�u��"H�E�H���H�E�H�}�u�H�E��@U��H��([]�UH��H�� H�}�H�E�H�@`H�E�H�E苀���uH�E�ǀ�H�E��@U��uFH�E�H����E�}��u�E��@�}�y�H�E�ǀ��M�H�E����H�����H�E�ǀ����UH��H�� H�}�H�}�u�����X��H�E�H�E�H���0����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H�� H�}�H�E�H�@`H�E��E�H�E��@@��tH�E�ǀ���H�E��@A��u9H�E�H�������E��}�t$�}��u�E��{�M�H�E���H���H�E苀���u9H�E�ƀ�aH�E�@DH�U�H�”H����H���H�E�ǀ�H�E苀���uzH�E�H���H�E�A���H����E��}��u�M�H�E���H����E���}�t�M�H�E���H����H�E�ǀ�H�E苀���u2�H�E�H����E�H�E��@T��u�}�uH�E����uЃ}��tAH�E��@@H�E�H�@pH��tH�E�H�@pH�U�H�JhH�u�H�U�H�}��H�E�ǀ���}�NE���UH��H�� H�}�H�}�u�����X��H�E�H�E�H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H�� H�}�H�E�H�@`H�E�H�E�H�����uH�E������H����jH�E苀���uH�E�ǀ�H�E��@T��u/H�E�H����E�H�E��@T��u�}�����}�y�E��H�E�ǀ����UH��H�� H�}�H�}�u�����X��H�E�H�E�H��� ����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��0H�}�H�E�H�@`H�E�H�}�u���	���H�E؋����uH�E�ǀ�H�E��@@��u+H�E�����uH�E�H����E�}��u�E��H�E�ǀ�H�E�H�@(H��tH�E�H�@H�M�H�U�H�R(H��H���H�E؋P0H�E��H����H�E�H�@H�M�H�U�H��H���H�u�H�M�H�U�H�E�H��jI��A��^H���H����y�H�u�H�M�H�U�H�E�H��jI��A��_H���H����y�H�E�H�@H��tH�E�H�@H�M�H�U�H�RH��H���H�E�H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��H��tH�E�H�@H�M�H�U�H��H��H���H�E�H�@H�M�H�U�H��H��и��UH��H�� H�}�H�}�u�����X��H�E�H�E�H����E��}��u2H�E�H�@`�����t H�E�H�@`H�U�H��H����E��}�t��E���UH��H��@H�}�H�u�H�U�H�}�u
���H�}�tH�E؋@H��H�E�H�H�}���H�E�H�E�H�@`H�H���H�E��eH�E�H�@��E�}�^t�}�_u;H�E�H�@H��H�����H�E؋@09�uH�E�H�P H�E�H�@(H)�H��HE�H�E�H���H�E�H�}�u�H�E�H�U�H�H�E؋@L����UH��H�}�H�u�H�}�u�� H�}�tH�E��@4��H�E�H�H�E��@8��]�Unable to allocate space for channel dataFailed allocating memory for channel type nameUnable to allocate temporary space for packetWould block sending channel-open requestUnable to send channel-open requestWould blockChannel open failureUnable to allocate memory for direct-tcpip connectiondirect-tcpip0.0.0.0Unable to allocate memory for setenv packettcpip-forwardWould block sending global-request packet for forward listen requestUnable to send global-request packet for forward listen requestUnknownUnable to allocate memory for listener queueUnable to complete request for forward-listencancel-tcpip-forwardWould block sending forward requestWould block waiting for packetChannel not foundenvWould block sending setenv requestUnable to send channel-request packet for setenv requestUnable to complete request for channel-setenvterm + mode lengths too largepty-reqWould block sending pty requestUnable to send pty-request packetFailed to require the PTY packageUnable to complete request for channel request-ptywindow-changeWould block sending window-change requestUnable to send window-change packetUnable to allocate memory for pty-requestx11-reqMIT-MAGIC-COOKIE-1%02XWould block sending X11-req packetUnable to send x11-req packetwaiting for x11-req response packetUnable to complete request for channel x11-reqUnable to allocate memory for channel-process requestWould block sending channel requestUnable to send channel requestFailed waiting for channel successUnable to complete request for channel-process-startupUnable to allocate memory for signal nameWould block sending window adjustUnable to send transfer-window adjustment packet, deferringtransport readwould blockWe've already closed this channelEOF has already been received, data might be ignoredFailure while draining incoming flowUnable to send channel dataWould block sending EOFUnable to send EOF on channel_libssh2_transport_read() bailed out!Unable to send EOF, but closing channel anywayWould block sending close-channelUnable to send close-channel request, but closing anywaylibssh2_channel_wait_closed() invoked when channel is not in EOF statechannel.csession[\QRcdcdcdcd_libssh2_channel_freeGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�sA�C
n<�A�C
� \iA�C
E�_��A�C
��	A�C
��A�C
��!A�C
�A�C
� _A�C
Z@tA�C
o`�A�C
���A�C
��JA�C
E��A�C
��A�C
�A�C
� �A�C
�@�A�C
�`JA�C
E��A�C
��aA�C
\��A�C
��.A�C
inA�C
i |A�C
w@A�C
Z`nA�C
i��A�C
���A�C
���A�C
��A�C
z|A�C
w #A�C
^@�A�C
�`A�C
�A�C
�A�C
��A�C
���A�C
�tA�C
o  �A�C
E��D�A�C
�dtA�C
o��A�C
��tA�C
o��A�C
��tA�C
o:A�C
5$tA�C
oD�A�C
�d<A�C
w�A	W		2!ID	C��[�JjG	|��J	�����J�M	�P	�:�<�<�l@��`		s!5Hs�`;iv}�������2CW��ot���`��!���_
&A:� t#;f�Z<�t���g����A$���$a�6(��(.#A�(nXo-�f+|��+�,nY/���/��20�0|D-1#iP1��4��C���5�7�7:�p;t �;�4/=tM�=�N�?td�@t�`Ct��D<channel.creply_codes.14469channel_direct_tcpipchannel_forward_listenreply_codes.14520channel_setenvreply_codes.14584channel_request_ptyreply_codes.14611channel_request_pty_sizechannel_x11_reqreply_codes.14662reply_codes.14694__PRETTY_FUNCTION__.14931_libssh2_channel_nextid_libssh2_list_first_libssh2_list_next_libssh2_channel_locate_libssh2_channel_openmemset_libssh2_calloc_libssh2_errormemcpy_libssh2_list_add_libssh2_store_str_libssh2_store_u32_libssh2_transport_send_libssh2_packet_requirev_libssh2_ntohu32_libssh2_list_remove_libssh2_htonu32_libssh2_packet_asklibssh2_channel_open_extimelibssh2_session_last_errno_libssh2_wait_socketstrlenlibssh2_channel_direct_tcpip_exlibssh2_channel_forward_listen_ex_libssh2_channel_forward_cancel_libssh2_channel_free_libssh2_transport_readlibssh2_channel_forward_acceptlibssh2_channel_setenv_exlibssh2_channel_request_pty_exlibssh2_channel_request_pty_size_exRAND_bytessprintflibssh2_channel_x11_req_ex_libssh2_channel_process_startuplibssh2_channel_set_blocking_libssh2_session_set_blocking_libssh2_channel_flush_libssh2_channel_receive_window_adjustlibssh2_channel_flush_exlibssh2_channel_get_exit_statuslibssh2_channel_get_exit_signallibssh2_channel_receive_window_adjust2_libssh2_channel_extended_datalibssh2_channel_handle_extended_data2libssh2_channel_handle_extended_data_libssh2_channel_readlibssh2_channel_read_exlibssh2_channel_window_read_ex_libssh2_channel_packet_data_len_libssh2_channel_writelibssh2_channel_write_exlibssh2_channel_send_eoflibssh2_channel_eoflibssh2_channel_wait_eof_libssh2_channel_closelibssh2_channel_wait_closed__assert_faillibssh2_channel_window_write_ex'��������O����������������������������������������������������%��������������������������� ��������
!!��������
0�!���������"��������f#���������
`�!���������$��������
%��������%��������,%��������w&���������
��!���������
��!��������.
A	6'��������L
�Y!���������(���������(���������(��������(���������
��!���������)���������*��������+��������M+���������-��������	��������,	.��������D	/���������	0���������	0��������1

>
!��������f
$��������w
%���������
$���������
%���������

>�
��������.���������-���������.���������/��������&KD0������������������
X�!��������


�
$��������C
$��������T
%���������
&���������

��
!���������

��
!���������
D	�'���������
��!���������
 �!��������1 ��������E
(R!���������
(�!���������"��������6(��������z#���������
X�!��������P-���������.���������/���������0��������?
XL!��������s
�{$���������$���������%��������&��������
�#!��������F
�S!���������������������������4���������)��������@-��������P3���������/���������6���������������������������)��������#��������2
�?!��������N
�[!���������-���������.���������/��������X���������
X�!���������%���������
��$��������$��������4$��������|&���������
�!���������
(�!��������G*���������
G	�'��������)
h6!��������k-���������/��������!
�.!��������g���������%���������
��$���������$���������%���������%��������%��������%��������.$��������|&���������
��!���������
��!���������*��������B
J	J'��������y
�!���������
0�!��������-��������}/�����������������&%��������4
c<$��������\%��������m%��������~%���������%���������&���������
x�!��������!
�+!��������I*���������-���������/��������- 0��������K 0��������� ��������� 
�!!��������)!%��������7!
�?!$��������w!
�!$���������!%���������!"���������!;���������!
"<��������2"%���������"&���������"
 �"!���������"
C�"!��������N#*���������#
M	�#'���������#
h�#!��������.$
�;$!��������p$-���������$/��������:%���������%
��%!���������%%���������%$��������'&%��������u&&���������&
��&!���������&
 �&!��������C'*���������'
P	�''���������'
@�'!��������#(
h0(!��������e(-���������(>���������(/���������(A��������+)��������^)���������)(���������)(���������*)��������9+C���������+-���������+B���������+/��������],0���������,
��,!���������,"��������6.*��������N.*���������.&���������.
��.!���������.
��.!��������2/-��������P/C���������//���������/-���������/C�������� 0/���������0B���������0-���������0I��������1/��������I1J��������2C��������-26��������N2
4X2!��������q2���������2���������2(���������2(���������3"��������4)���������4
C�4!��������!5N��������95-��������Y5C���������5/���������5-���������5L���������5/��������(6��������U6(���������6(��������7���������7
P�7!���������7
x�7!���������76��������	8
�8!���������8%���������8%��������9%���������9&���������9
��9!���������9
��9!��������d:-��������:P���������:/���������:*��������;&��������0;
�:;!��������N;
	[;!���������;-���������;/��������<��������[<(��������r<���������<6��������	=
(=!��������O=-���������=/��������>
P'>!��������`>*���������>&���������>
��>!���������>
��>!��������?6���������?-���������?U���������?/��������&@S��������3@
�@@!��������v@6���������@-��������A/��������FA
`	PA
/	UA
9	ZAX���������AU���������A*��������?B+��������sB+���������B)���������C-���������C4���������C/��������5D��������iD(���������D�������� @s`;���W	�`�!$�D d��f���<���$�Dgd��A$��$�6(��(�($f+D�+d,�o-�/��/�20�0$-1DP1d�4��5�7�7:��:p;$�;H�<h/=��=��?�@��@&A(`CH�Ch�D.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @�D@�d�!
&=E,=E1@Ev	90�N-B�NW�N�R@H��
hU�	�]��acomp.o/         1670404304  0     0     100644  5864      `
ELF>(@@UH��H�}�H�u�H�U�H�M�L�E�L�Mи]�UH��H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�U�H�H�E�H�U�H��]�UH��H�� H�}�u�U�H�E�H�E�H�E�H�@H�U��M��M��H��H�����UH��H�� H�}�H�u�H�E�H�E�H�E�H�@H�M�H�U�H��H��А��UH��H��0H�}�u�H�U�H�E�pH���H�E�H�}�uH�E������H����H�E�H�U�H�PPH�E�H�@@H�E�H�@H�}�t H�E�p������H����E��H�E�p�H����E��}�tH�E�H�@H�M�H�U�H��H��и����H�E�H�U�H����UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H��E�H�E�H�U�H�H�Eȉ�H�E��PH�E�H�U�H�P�U�H�E��P H�E��H����E�}�u)H�E��@ ��t�U�H�E��@ )‰Љ�H�E�H���H�E����H�����UH��H��`H�}�H�u�H�U�H�M�L�E�L�M�H�EH�H�E�H�E����E�H�}�uH�EȺ����H����%�}��E�H�E�9E�~H�E��E�H�E�H�U�H�H�E���H�E�PH�E�H�@H�MȋU�Hc�H��H���H��H�E�H�PH�E�H�@H�E��U�H�E�P H�E�H�@H��uH�EȺ�����H����H�E�H����E�}�uH�E�@ ��tB�<�}��1H�E�H�@H�M�H�U�H��H���H�EȺ���H����&H�E�9E�|3H�E�H�@H�M�H�U�H��H���H�EȺ���H������U�H�E�@ )‰Љ�H�E��e�H�}�tH�E�H�@H�UȋM�Hc�H�M�H����H�E�H�@H�MȋU�Hc�H��H���H�E�H�}�u0H�E�H�@H�M�H�U�H��H���H�EȺ�����H����ZH�E�H�E�H�U�H�E�H�H�E�H�P�E�H�U�)Љ�H�E�P ����H�E�H�U�H��U�H�E�@ )‰Љ�H�E�H����UH��H��0H�}�u�H�U�H�E�H�H�E�H�}�t8�}�tH�E�H����H�E�H���H�E�H�@H�M�H�U�H��H���H�E�H����UH��H�}�H�E��@p��t���]�noneUnable to allocate memory for zlib compression/decompression1.2.11compression failuredecompression uninitializedUnable to allocate decompression bufferdecompression failureExcessive growth in decompression phaseUnable to expand decompression bufferzlibzlib@openssh.comGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�#A�C
^<9A�C
t\9A�C
t|3A�C
n��A�C
���A�C
��~A�C
y�oA�C
j!A�C
\�##96 0G\9^�3t������j~��o�`0��0p � 	
'4AIQ\gW!comp.ccomp_method_none_compcomp_method_none_decompcomp_method_nonecomp_method_zlib_alloccomp_method_zlib_freecomp_method_zlib_initcomp_method_zlib_compcomp_method_zlib_decompcomp_method_zlib_dtorcomp_method_zlibcomp_method_zlib_opensshno_comp_methods_libssh2_calloc_libssh2_errordeflateInit_inflateInit_deflateinflatedeflateEndinflateEnd_libssh2_comp_methods����������
P	��������&\2�F
�S��������f
�n����������������W
�d���������
����������C
�P��������f���������
�����������
���������y
0�����������������)��������k
r
 `�    8@#`Vp�x��j���������j�� @#`\�������j� W.symtab.strtab.shstrtab.rela.text.rela.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @x@�
�+�0 &@H`1�;� 6@�8C0�-La 8\@��
X	�
	@}�kcrypt.o/        1670404304  0     0     100644  6880      `
ELF> @@UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�@H�U�H�ֿ���H�E�H�}�u
������H�E��U�H�E�H�P8H�E�H�PH�E�H�@H�U�H�zH�M�H�U�D�EH�����tH�E�H�@H�M�H�U�H��H��и�����$H�EH�U�H�H�E��H�E�����UH��H��0H�}�H�u�H�U�H�M�H�E�H�H�E�H�E��H�E�H�@H�M�H�yH�u�H�M�I��H�����UH��H�� H�}�H�u�H�E�H�E�H�}�tEH�E�H�H��t9H�E�H�H��H���H�E�H�@H�M�H�U�H�H��H���H�E�H����UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�L�M�L�E�H�M�H�U�H�u�H�E�u�}WH���/���H���E�}�uPH�EH�H�E�H�E��4H�EЋ@Hc�H�E�H�E�H�@H�M�H�yH�M�I��H���H�m�H�}�uŋE���UH��]�aes128-ctraes192-ctraes256-ctr aes128-cbcaes192-cbcaes256-cbc rijndael-cbc@lysator.liu.se blowfish-cbcarcfourarcfour128cast128-cbc3des-cbcGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx��A�C
�<NA�C
I\kA�C
f|�A�C
��A�C
F�	��N"k- @M�@m�@�@@��@�@�`@�@@ @]��s�@��@�@@�h	
��+D]v�������3crypt.ccrypt_initcrypt_encryptcrypt_dtorlibssh2_crypt_method_aes128_ctrlibssh2_crypt_method_aes192_ctrlibssh2_crypt_method_aes256_ctrlibssh2_crypt_method_aes128_cbclibssh2_crypt_method_aes192_cbclibssh2_crypt_method_aes256_cbclibssh2_crypt_method_rijndael_cbc_lysator_liu_selibssh2_crypt_method_blowfish_cbclibssh2_crypt_method_arcfourcrypt_init_arcfour128libssh2_crypt_method_arcfour128libssh2_crypt_method_cast128_cbclibssh2_crypt_method_3des_cbc_libssh2_crypt_methods_libssh2_cipher_init_libssh2_cipher_cryptEVP_CIPHER_CTX_cleanup_libssh2_EVP_aes_128_ctr_libssh2_EVP_aes_192_ctr_libssh2_EVP_aes_256_ctrEVP_aes_128_cbcEVP_aes_192_cbcEVP_aes_256_cbcEVP_bf_cbcEVP_rc4EVP_cast5_cbcEVP_des_ede3_cbc�����������������Y����������������8
 �� `(�0@8�@�H P�X@ @H�PX�`��������@ `h�px �������!� (�08"`@�����"�������# @H�PX$�`������$���%@ `h�px& @�`���3.symtab.strtab.shstrtab.rela.text.rela.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @>@x+�h &@x 1�;� 6@��C0�-L�a��\@8x
h�
	(��khostkey.o/      1670404304  0     0     100644  7448      `
ELF>X@@UH��H��`H�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H���H�E�H�H�E�H�E�H�E�H�����H�E�H�E�H�}�uH�E���H�����t
������H�E�H�E�H�����H�E�H�E�H�E�H�E�H�E�HE�H�E�H�����H�E�H�E�H�E�H�E�H�}�H�M�H�U�H�u�H�E�H��jjjjjjjjjjjA�I��H���H��`��t������H�U�H�E�H����UH��H��0H�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H���H�E�H�H�M�H�U�H�u�H�E�H����E��}�t������H�U�H�E�H����UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H�m�H�}�H�M�H�U�H�u�H�E�I��H�����UH��H��H�}�H�u�H�U��M�L��x���L��p���H��p���H�H�E�H�E�H����E��F�E�H�H��H��H��x���H�H�P�E�H�H��H��H��x���H�H�H�E�H��H����E��E�;E�|�H�M�H�E��H��H���H�}�H�M�H�U�H�u�H�E�I��I�ȹH����E�}�t���������UH��H�� H�}�H�u�H�E�H�H�E�H�E�H���H�E�H����UH��H�ĀH�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H���^H�E�H�H�E�H�E�H�E�H�����H�E�H�E�H�}�uH�E���H�����t
�������H�E�H�E�H�����H�E�H�E�H�E�H�E�H�E�HE�H�E�H�����H�E�H�E�H�E�H�E�H�E�HE�H�E�H�����H�E�H�E�H�E�H�E�H�E�HE�H�E�H�����H�E�H�E�H�E�H�E�L�E�H�}�H�M�H�U�H�u�H�E�H��jj�u��u��u�M��I��H���H��0H�U�H�E�H����UH��H��0H�}�H�u�H�U�H�M�H�E�H�H��tH�U�H�E�H��H����H�E�H�H�M�H�U�H�u�H�E�H����E��}�t������H�U�H�E�H����UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H�m�H�}�(tH�E���H����H�M�H�U�H�u�H�E�H�����UH��H��H�}�H�u�H�U��M�L��x���L��p���H��p���H�H�E�H�E��(H���H��H�E�H�H�E�H�H��u
�������H�E�H�(H�E�H����E��F�E�H�H��H��H��x���H�H�P�E�H�H��H��H��x���H�H�H�E�H��H����E��E�;E�|�H�M�H�E��H��H���H�E�H�H�u�H�E�H�ѺH�����t"H�E�H�@H�M�H�U�H�H��H��и��������UH��H�� H�}�H�u�H�E�H�H�E�H�E�H���H�E�H����UH��]�UH��H�}��u�}�t�}�t#�-H�E������tH�E�H����H�E�H���]�UH��H��0H�}�H�u��E��E��E��E��E�s�E�s�E�h�E�-�E�r�E�s�E�a�E��E��E��E��E�s�E�s�E�h�E�-�E�d�E�s�E�sH�}�
w��KH�M�H�E��H��H�����u��(H�M�H�E�H��H�����u�����UH��H�� H�}�H�u�H�U�H�E������tXH�}�tH�E������H�E�H�H�}�t*H�E������H�E�H���H��H��������H�E�H�E�H����H�}�tH�E�H����ssh-rsassh-dssInvalid DSS signature lengthGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�7A�C
2<|A�C
w\VA�C
Q|�A�C
��9A�C
t�rA�C
m�|A�C
w�nA�C
i9A�C
4<9A�C
t\A�C
F|MA�C
H��A�C
���A�C
��7'�9C7|b�V�	�� @�1r��9��|n1�9N�@�eW�	
r�������!2KZs�����
M���hostkey.chostkey_method_ssh_rsa_inithostkey_method_ssh_rsa_dtorhostkey_method_ssh_rsa_initPEMhostkey_method_ssh_rsa_sig_verifyhostkey_method_ssh_rsa_signvhostkey_method_ssh_rsahostkey_method_ssh_dss_inithostkey_method_ssh_dss_dtorhostkey_method_ssh_dss_initPEMhostkey_method_ssh_dss_sig_verifyhostkey_method_ssh_dss_signvhostkey_method_ssh_dsshostkey_type_libssh2_ntohu32strncmp_libssh2_rsa_new_libssh2_rsa_new_private_libssh2_rsa_sha1_verifylibssh2_sha1_initEVP_DigestUpdateEVP_DigestFinal_libssh2_rsa_sha1_signRSA_free_libssh2_dsa_new_libssh2_dsa_new_private_libssh2_error_libssh2_dsa_sha1_verify_libssh2_calloc_libssh2_dsa_sha1_signDSA_freelibssh2_hostkey_methodslibssh2_hostkey_hashmemcmplibssh2_session_hostkeyR��������r
z���������������������������������������������������G����������������������������������� ������������������
`�����������������������������������?���������!���������"��������`
hm#���������$���������%����������������R��������v���������&���������'��������
�*��������*�������� � 087@�H	X��`�1������� @7`��	���1�� �@�`��
�W�.symtab.strtab.shstrtab.rela.text.rela.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @�@0+�&@H01	; 	� 6@x C0
-L-
a0
�\@�P
 
	(��kkex.o/          1670404304  0     0     100644  33200     `
ELF>�}@@UH��H���H��8���H��0���H��(�����$���D��D�ʈ� ����Ј�����E�H�E ����8H�E H�@H�E H�@H�E Hǀ��H��H�E H�PP�H��H�E H�PX�H��H�E H�P`�H��H�E H�Ph�H��H�E H�PpH�E H���H���H�E H�@X��$���������H���H�E H�xPH�E H�PXH�E H�@`H��(���H��0���I��H���H�E H�@`H������P��H����Hc�H�E H�P8H�E H�@`H�������tH�E H�@8H�P�H�E H�P8H��8���H�@H��8���H�U H�R8H��H���H��H�E H�PH�E H�@H��u!H��8���������H����E��bH�E H�@�� ����H�E H�@8�P�H�E H�@H����H���H�E H�@`H�������t!H�E H�@H�PH�E H�@`H��H����.H�E H�@H���H�E H�@H�PH�E H�@`H��H���H�E �H�E ���ulH�E H�P8H�E H�pH��8���A��H����E��}��u�E����}�t!�M�H��8������H����E��SH�E �H�E ���uuH��8����������tVH�E H���H��8���H��H����E��}��u�E��N�}��E��E���H��8����������H�E �H�E ����9
H�E H���H�E H�H@H�E H�P�����H��8���WjA�A�H���H���E��}��u�E���}�t!H��8���������H����E��>H�E H�@H�PH�E H�PxH�E H�@xH�����H��8������H�E H�@xH�PH�E H�PxH��8���H�@H��8���H��8��������H��H���H��H��8���H���H��8���H���H��u!H��8���������H����E��H��8��������H�E H�HxH��8���H���H��H���H�E H�PxH��8��������H�H�E H�PxH��@���H�����tgH��8��������H��8���H���H��@���H��H���H��8���H���H��@����H��H���H��8���ǀ��H��8���ǀ�H��@���H���H��8��������H��8���H���H��@���H��H���H��8���H���H��@����H��H���H��8���H���H�@H��8���H���H��8������A��H��8���H���H��8���L��Ѕ�t!H��8���������H����E���H�E H�@xH�����H�E H���H�E H�@xH�PH�E H�PxH�E H�PxH�E H���H�E H�PxH�E H���H�H�E H�PxH�E H�PhH�E H�����H�E H�����H���H�E H�@xH�����H�E H���H�E H�@xH�PH�E H�PxH�E H�PxH�E H���H�E H�xPH�E H�PXH�E H�phH�E H�@pH��(���I��H���H�E H�@pH������P��H����Hc�H�E H���H�E H�@pH�������tH�E H���H�P�H�E H���H��8���H�@H��8���H�U H���H��H���H��H�E H���H�E H���H��u!H��8���������H����E��H�E H����P�H�E H�����H���H�E H�@pH�������t$H�E H���H�PH�E H�@pH��H����4H�E H���H���H�E H���H�PH�E H�@pH��H���H�E H�H���H��8���H��XH����H��8���H��XH����P�H�E H�� ��H���H�E H�H H�E H��H��H���H��8���H��XH���H�P�H��8���H��XH�M H���H��H����SH�E H�� �H���H�E H�H H�E H��H��H���H�E H���H���H��8���H���H�����H�E H�� ��H���H�E H�H H�E H��H��H���H��8���H���H���H��H��8���H���H�U H���H��H��H���H��8���H��h��H�E H�� ��H���H�E H�H H�E H��H��H���H��8���H��hH��8���H��`H�M H���H��H���H��8���H�����H�E H�� ��H���H�E H�H H�E H��H��H���H��8���H���H��8���H���H�M H���H��H���H��8������H�U H�� ��H���H�E H�H H�E H��H��H���H��8��������H��8���H���H�U H���H��H��H����� ��� uiH�E H�� �H���H�E H�� H���H���H�E H�� H���H���H�E H�H H�E H��H��H���H�}tH�E H���H�EH��H�uH���H�E H�@8H�P�H�E H�@H�HH�E H�H��H���H�E H�����H�E H�� ��H���H�E H�H H�E H��H��H���H�E H���H�E H���H�M H���H��H���H�E H���H�E H���H�M H���H��H���H�E H�H H�E H��H��H���H��8���H���H�@ H��8���L���H�U L�R H�U H���H�M H���H��8���M��A�L��Ѕ�t!H��8���������H����E��H�E �@4H�E �H�E ���uiH�E H�p4H��8���A���H����E��}��u�E���}�t!�M�H��8������H����E��H�E �H�E �����H�E H���H�E H�HHH�E H�PH��8���VjA�A��H���H���E��}��u�E���}�t!�M�H��8������H����E��H��8����@h����H��8����PhH��8���H�@H��8���H�U H�RH��H���H��8���H���H����H��8���H�@H��8���H�ֿ��H��H��8���H���H��8���H���H��u!H��8���������H����E���H�E H�H H��8���H����H��H���H��8���ǀ�H��8���H��pH�@0H��t/H��8���H��pH�@0H��8���H��xH��8���H��H���H��8���H��pH�@ H���FH�E�H�E��E��E�H�E�H�}�u5H��8���H�@H��8���H��8���H��p�R��Hc�H��H���H�E�H�}����H��@���H���H�E H���H�E H���H��@���H��H���H�E H�H H��@����H��H���H�}�tH�U�H�M�H��@���H��H����HH��@�����H���H��8��������H��8���H���H��@���H��H���H�U�H�E�H�H��@����H��H���H�E�H��8���H��p�@H�H9E������H�}�u�E������
H�E�H�}�u5H��8���H�@H��8���H��8���H��p�R��Hc�H��H���H�E�H�}����H��@���H���H�E H���H�E H���H��@���H��H���H�E H�H H��@����H��H���H�}�tH�U�H�M�H��@���H��H����HH��@�����H���H��8��������H��8���H���H��@���H��H���H�U�H�E�H�H��@����H��H���H�E�H��8���H��p�@H�H9E������H�}�u*H��8���H�@H��8���H�U�H��H����E������#H��8���H��pH�@ H��8���L��xH��8���H��pL�M�L�E�H�M�H�U�H��8���ARj��H����tIH��8���H�@H��8���H�U�H��H���H��8���H�@H��8���H�U�H��H����E��������E���tCH��8���H��p�@Hc�H�E�H���H��8���H�@H��8���H�U�H��H��ЋE���tCH��8���H��p�@Hc�H�E�H���H��8���H�@H��8���H�U�H��H���H��8���H��H�@0H��t/H��8���H��H�@0H��8���H��H��8���H��H���H��8���H��H�@ H���FH�E�H�E��E��E�H�E�H�}�u5H��8���H�@H��8���H��8���H���R��Hc�H��H���H�E�H�}����H��@���H���H�E H���H�E H���H��@���H��H���H�E H�H H��@����H��H���H�}�tH�U�H�M�H��@���H��H����HH��@�����H���H��8��������H��8���H���H��@���H��H���H�U�H�E�H�H��@����H��H���H�E�H��8���H���@H�H9E������H�}�u�E������	H�E�H�}�u5H��8���H�@H��8���H��8���H���R��Hc�H��H���H�E�H�}����H��@���H���H�E H���H�E H���H��@���H��H���H�E H�H H��@����H��H���H�}�tH�U�H�M�H��@���H��H����HH��@�����H���H��8��������H��8���H���H��@���H��H���H�U�H�E�H�H��@����H��H���H�E�H��8���H���@H�H9E������H�}�u*H��8���H�@H��8���H�U�H��H����E������|H��8���H��H�@ H��8���L��H��8���H��L�M�L�E�H�M�H�U�H��8���ARj��H����tIH��8���H�@H��8���H�U�H��H���H��8���H�@H��8���H�U�H��H����E���������E���tCH��8���H���@Hc�H�EоH���H��8���H�@H��8���H�U�H��H��ЋE���tCH��8���H���@Hc�H�EȾH���H��8���H�@H��8���H�U�H��H���H��8���H���H�@ H��t/H��8���H���H�@ H��8���H���H��8���H��H���H��8���H���H�@H���H�E�Dž|���H�E�H�}�u5H��8���H�@H��8���H��8���H����R��Hc�H��H���H�E�H�}����H��@���H���H�E H���H�E H���H��@���H��H���H�E H�H H��@����H��H���H�}�tH�U�H�M�H��@���H��H����HH��@�����H���H��8��������H��8���H���H��@���H��H���H�U�H�E�H�H��@����H��H���H�E�H��8���H����@H�H9E������H�}�u�E������lH��8���H���H�@H��8���H���H��|���H�u�H��8����Ћ�|�����tCH��8���H����@Hc�H�E��H���H��8���H�@H��8���H�U�H��H���H��8���H��H�@ H��t/H��8���H��H�@ H��8���H�� H��8���H��H���H��8���H��H�@H���H�E�Džx���H�E�H�}�u5H��8���H�@H��8���H��8���H���R��Hc�H��H���H�E�H�}����H��@���H���H�E H���H�E H���H��@���H��H���H�E H�H H��@����H��H���H�}�tH�U�H�M�H��@���H��H����HH��@�����H���H��8��������H��8���H���H��@���H��H���H�U�H�E�H�H��@����H��H���H�E�H��8���H���@H�H9E������H�}�u�E������H��8���H��H�@H��8���H�� H��x���H�u�H��8����Ћ�x�����tCH��8���H���@Hc�H�E��H���H��8���H�@H��8���H�U�H��H���H��8���H���H��tHH��8���H���H�@(H��t1H��8���H���H�@(H��8���H� H��8����H���H��8���H���H��tXH��8���H���H�@H��tAH��8���H���H�@H��8���H� H��8����H��Ѕ�t�E�������H��8���H��(H��tHH��8���H��(H�@(H��t1H��8���H��(H�@(H��8���H��0H��8����H���H��8���H��(H��tUH��8���H��(H�@H��t>H��8���H��(H�@H��8���H��0H��8����H��Ѕ�t	�E�������H�E H�@XH���H�E H�@XH�E H�@`H���H�E H�@`H�E H�@hH���H�E H�@hH�E H�@pH���H�E H�@pH�E H�@PH���H�E H�@PH�E H�@H��t.H��8���H�@H��8���H�U H�RH��H���H�E H�@H�E H�@H��t.H��8���H�@H��8���H�U H�RH��H���H�E H�@H�E H���H��t4H��8���H�@H��8���H�U H���H��H���H�E Hǀ�H�E ��E���UH��H�� H�}�H�u�H�E���ue�H��H�E�H���H��H�E�H��H�E�H���H���H�E�H��H�¾���H�E��H�E�H�HH�E�H��H�E�H��H�E�H��QjjA�A���H�����H�� �E��}��u�E��QH�E�H��H���H�E�HǀH�E�H��H���H�E�HǀH�E���E���UH��H�� H�}�H�u�H�E���ue�H��H�E�H���H��H�E�H��H�E�H���H���H�E�H��H�¾��H�E��H�E�H�HH�E�H��H�E�H��H�E�H��QjjA�A��H���y��H�� �E��}��u�E��QH�E��H�E�H��H���H�E�HǀH�E�H��H���H�E�Hǀ�E���UH��H��0H�}�H�u��E�H�EЋ�����H��H�E�H���H��H�E�H��H�E�ƀ "H�E�H H���H���H�E�H H���H���H�E�H H��	�H���H�E�Hǀ8
H�E��H�EЋ��ulH�E�H��8H�E�H�� H�E�A��H����E��}��u�E��?�}�t�M�H�Eغ��H����E���H�E��H�EЋ����H�E�H�pH�E�H��@H�E�H��0H�E�VjA�A��H���H���E��}��u�E���}�t�M�H�Eغ��H����E��:H�E��H�EЋ��� H�E�H��0H��H�E�H�E�H�����H�E�H�E�H�E�H��H�E�H�E��H���H�E�HE�H�E�H�����H�E�H�E�H�E�H��H�E�H�E��H���H�E�L�@H�E�H��@H�x�H�E�H��0H�HH�E�A��H�E�H��H�E�H��H�E�H��APWQA�!A� D��H���Q��H�� �E��}��u�E��sH�E�H�@H�M�H�U�H��0H��H�����H�E��H�E�H��H���H�E�HǀH�E�H��H���H�E�Hǀ�E���UH��H�� H�}�H�E�H�}�tH�E�H�H��u0��LH�E�H�H�H���H��H�E�H�H��H�E�H�E�H�E�H�H��tH�E�H�H�H��u�H�E�H����UH��H��0H�}�H�u�H�U�H�E��H�E��H���H�E�H�}�tH�E�H�H��uX��tH�E�H�H�H����E��E�Hc�H�E�H�H�H�E�H��H����E�H�HE�H�E�H�PH�U��,H�E�H�E�H�H��tH�E�H�H�H��u�H�E�H����UH��H�ĀH�}�H�E�>H�E�H�E���H����PH�E�H�@XH��tH�E�H�@XH����
��p���H�E�H�E�H�@`H��tH�E�H�@`H����
�H���@���H�E�H�E�H���H��tH�E�H���H����
�H���
���H�E�H�E�H��8H��tH�E�H��8H����
�H������H�E�H�E�H���H��tH�E�H���H����
�H�����H�E�H�E�H��@H��tH�E�H��@H����
�H���h���H�E�H�E�H���H��tH�E�H���H����H�E�H���H���+���H�E�H�E�H��HH��tH�E�H��HH����H�E�H���H�����H�E�H�E�H���H��tH�E�H���H����
����H�E�H�E�H��PH��tH�E�H��PH����
����H�E�H�U�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�H�E�H�HE�H�E�H�@H�M�H�U�H��H���H�E�H�E�H�E�H�}�uH�E�������H�����H�E�H�PH�U��H�E�H���H�E�H�E�H�@XH��t>H�E؉�H�E��H���H�E�H�E�H�HXH�U�H�E�H��H���H�E�HE��H�M�H�E�H��H�����HE�H�E�H�@`H��t>H�E��H�E��H���H�E�H�E�H�H`H�U�H�E�H��H���H�E�HE���H��H�M�H�E�H��H�����HE�H�E�H���H��tAH�EЉ�H�E��H���H�E�H�E�H���H�U�H�E�H��H���H�E�HE���H��H�M�H�E�H��H������HE�H�E�H��8H��tAH�Eȉ�H�E��H���H�E�H�E�H��8H�U�H�E�H��H���H�E�HE���H��H�M�H�E�H��H�����HE�H�E�H���H��tAH�E���H�E��H���H�E�H�E�H���H�U�H�E�H��H���H�E�HE���H��H�M�H�E�H��H���1���HE�H�E�H��@H��tAH�E���H�E��H���H�E�H�E�H��@H�U�H�E�H��H���H�E�HE���H��H�M�H�E�H��H�����HE�H�E�H���H��tAH�E���H�E��H���H�E�H�E�H���H�U�H�E�H��H���H�E�HE��&H�E�H���H��H�M�H�E�H��H���J���HE�H�E�H��HH��tAH�E���H�E��H���H�E�H�E�H��HH�U�H�E�H��H���H�E�HE��&H�E�H���H��H�M�H�E�H��H������HE�H�E�H���H��tAH�E���H�E��H���H�E�H�E�H���H�U�H�E�H��H���H�E�HE��H�M�H�E�H��H���f���HE�H�E�H��PH��tAH�E���H�E��H���H�E�H�E�H��PH�U�H�E�H��H���H�E�HE��H�M�H�E�H��H�����HE�H�E�H�PH�U��H�E�H���H�E�ǀH��<H�E�H��P�H�E�H�E�H��X�H�E�H�E�HǀP�H�E�HǀX�H�U�H�u�H�E�A��H����E��}��u&H�E�H�U�H��P�H�E�H�U�H��X��E���}�t>H�E�H�@H�M�H�U�H��H���H�E�ǀH��M�H�E����H����`H�E�H��`H��tH�E�H�@H�M�H�U�H��`H��H���H�E�H�U�H��`H�E�H�U�H��hH�E�ǀH����UH��H��0H�}�H�u�H�U�H�M�H�E�H;E�s
���H�U�H�M�H�E�H��H�����u%H�E�H;E�tH�U�H�E�H��<,u	H�E��H�E�H�E��PH�E�H�U�H�M�H�E�H��H�����u0H�E�H+E�H��H�E�H�H9E�tH�U�H�E�H��<,uH�E��=H�E��,H���H�E�H�}�tH�E�H+E�H��H�E�H)�H9E��x������UH��H�� H�}�H�u�H�U��GH�E�H�H�H���H9E�u*H�E�H�H�H�U�H�M�H��H�����u	H�E�H��H�E�H�E�H�H��u����UH��H��PH�}�H�u�H�U�H�M��H�E�H�E�H�@`H����H�E�H�@`H�E���H�E�,H���H�E�H�}�t
H�E�H+E��H�E�H���H�E�H�M�H�U�H�u�H�E�H�����H��twH�U�H�M�H�E�H��H�����H�E�H�}�u
������@H�E���H��t
H�E�H�@0H��t2H�E���H��t
H�E�H�@ H��tH�E�H�U�H�����H�}�t
H�E�H����H�E�H�}�tH�E��������������H�E�H�H�H���H��H�E�H�H�H�u�H�E�H������H�E�H�}�tQH�E���H��tH�E�H�H�@0H��t5H�E���H��tH�E�H�H�@ H��tH�E�H�H�E�H�����0H�E�H�}�tH�E�H�H��tH�E�H�H�H���J����������UH��H��`H�}�H�u�H�U�H�M�L�E�H�E�H�E�H�@XH����H�E�H�@XH�E��H�E�,H���H�E�H�}�t
H�E�H+E��H�E�H���H�E�H�M�H�U�H�u�H�E�H����H�E�H�}���H�U�H�M�H�E�H��H������H�E�H�}�u
������rH�E�H�@H��H�M�H�U�H�E�H��������uFH�E�H�U�H�PxH�E��������tH�E�H;E�uH�E����������	H�}�t
H�E�H����H�E�H�}�tH�E���������������H�E�H�H�H���H��H�E�H�H�H�u�H�E�H�����H�E�H�}�tlH�E�H�H�@H��H�M�H�U�H�E�H���.�����uFH�E�H�H�E�H�PxH�E��������tH�E�H;E�uH�E����������)H�E�H�E�H�H��tH�E�H�H�H���6����������UH��H��PH�}�H�u�H�U�H�M��H�E�H�E�H�@PH���2H�E�H�@PH�E��H�E�,H���H�E�H�}�t
H�E�H+E��H�E�H���H�E�H�M�H�U�H�u�H�E�H�����H��tBH�U�H�M�H�E�H��H�����H�E�H�}�u
�������H�E�H�U�H�P��H�}�t
H�E�H����H�E�H�}�tH�E�����;���������uH�E�H�H�H���H��H�E�H�H�H�u�H�E�H������H�E�H�}�tH�E�H�H�E�H�P��%H�E�H�E�H�H��tH�E�H�H�H��u��������UH��H��PH�}�H�u�H�U�H�M��H�E�H�E�H�@XH���2H�E�H�@XH�E��H�E�,H���H�E�H�}�t
H�E�H+E��H�E�H���H�E�H�M�H�U�H�u�H�E�H���-���H��tBH�U�H�M�H�E�H��H������H�E�H�}�u
�������H�E�H�U�H�P(��H�}�t
H�E�H����H�E�H�}�tH�E�����;���������uH�E�H�H�H���H��H�E�H�H�H�u�H�E�H�����H�E�H�}�tH�E�H�H�E�H�P(��%H�E�H�E�H�H��tH�E�H�H�H��u��������UH��H��PH�}�H�u�H�U�H�M�H�E�H���H�E�H�E�H�@`H���2H�E�H�@`H�E��H�E�,H���H�E�H�}�t
H�E�H+E��H�E�H���H�E�H�M�H�U�H�u�H�E�H�����H��tBH�U�H�M�H�E�H��H�����H�E�H�}�u
�������H�E�H�U�H�P@��H�}�t
H�E�H����H�E�H�}�tH�E�����;���������uH�E�H�H�H���H��H�E�H�H�H�u�H�E�H����H�E�H�}�tH�E�H�H�E�H�P@��%H�E�H�E�H�H��tH�E�H�H�H��u��������UH��H��@H�}�H�u�H�U�H�M�L�E�H�E�H�H�E�H�E�H�����H�E�H�H�E�H�H�E�H+E�H��H�E�H)�H��H9�v��.H�E�H�PH�E�H�H�E�H�H��HE�H�E�H�U�H����UH��H��H��h���H��`�����\���H��`���H��x���H��x���H��H��x���H��x���H��H��x�����\���H�}�H�M�H��`���H��x���I��H������t
��������\���H�}�H�M�H��`���H��x���I��H�������t
���������\���H�}�H�M�H��`���H��x���I��H�������t
��������\���H�}�H�M�H��`���H��x���I��H���T�����t
������o��\���H�}�H�M�H��`���H��x���I��H��������t
������:��\���H�}�H�M�H��`���H��x���I��H�������t
��������\���H�}�H�M�H��`���H��x���I��H�������t
���������\���H�}�H�M�H��`���H��x���I��H�������t
������H��x���H�PH��x��������H��h����у������	ʈ��H��x���H+�`���9�\���s
������CH�}�H�M�H�U�H�u�H��h���I��H��������t
������H�M�H�U�H��h���H��XH��h���H���,�����u)H�M�H�U�H��h���H���H��h���H��������t
������H�M�H�U�H��h���H��XH��h���H���V�����u)H�M�H�U�H��h���H���H��h���H���-�����t������^H�M�H�U�H��h���H��XH��h���H�������u)H�M�H�U�H��h���H���H��h���H���Z�����t���������UH��H��0H�}�u�H�U��E�H�E�@h����H�E�PhH�E؋����H�E�@h����H�E�Ph�}�teH�E�H�@xH�E�H���H��t:H�E�H���H�@8H��t&H�E�H���H�@8H�U�H���H�U�H��H���H�E�Hǀ�H�E��H�E�H�@xH��tH�E�H���H����H�E؋��uEH�E�H��`H�E�H��pH�E�H��hH�E�H��xH�E�Hǀ`H�E��H�E؋����H�E�H�����E��}��uH�E�@h���H�E�Ph�E��]�}�tfH�E�H��pH�E�H��`H�E�H��xH�E�H��hH�E��H�E�@h���H�E�PhH�E�@h���H�E�Ph�������H�E��H�E؋����H�E�H�pH�E�H��hH�E�H��`H�E�VjA�A��H���H���E��}��uH�E�@h���H�E�Ph�E��r�}���H�E�H��`H��tH�E�H�@H�M�H�U�H��`H��H���H�E�H��pH�E�H��`H�E�H��xH�E�H��hH�E��H�E�@h���H�E�PhH�E�@h���H�E�Ph�������H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��`H�E�H���H�E�H��hH�E�H���H�E�H��h��H�E�H��`H�E�H��H�������t�E�����H�E���
H�E���}�u{H�E�H�@xH��tnH�E؋��ucH�E�H�@xH�@H�U�H�JH�U�H��H��ЉE��}��uH�E�@h���H�E�Ph�E����}�tH�E������H����E�H�E�H��`H��t.H�E�H�@H�M�H�U�H��`H��H���H�E�Hǀ`H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�@h���H�E�PhH�E�@h���H�E�PhH�E���E���UH��H��`H�}��u�H�U�H�E�H����E�}�	� �E�H����H�E�H��XH�E�H�E��H�E�H��`H�E��H�E��H�E�H�H�E��H�E���H�E�H8H�E��H�E���H�E�H�H�E��H�E��H�E�H@H�E��H�E��H�E�H�H�E�H�E�H���H�E��kH�E�HHH�E�H�E�H���H�E��KH�E�H�H�E�H�E��3H�E�HPH�E�H�E��H�E������H����H�E�H�@H�M��U��Hc�H��H���H�E�H�E�H�E�H�}�uH�E�������H����s�E�Hc�H�M�H�E�H��H�����H�E�,H���H�E�H�}�t
H�E�H+E��H�E�H����E̋E�Hc�H�U�H�E�H��H����H��uVH�}�t0H�E�H���H�‹E�H�H)�H�E�H�HH�E�H��H����H�E�H;E�vH�m�H�E���H�E��H�}�t
H�E�H����H�E�H�}�tH�E����tH�}�� ���H�E����u0H�E�H�@H�M�H�U�H��H���H�E������H����7H�E�H�H��tH�E�H�@H�M�H�U�H�H��H���H�E�H�U�H����UH��H��@H�}؉u�H�U�H�}�uH�Eغ����H�����}�wJ�E�H����H�E��N�H�E��C�H�E��8�H�E��-H�E�H���H�E��H�Eغ����H����H�}�uH�Eغ����H�����E��E��%�E�H��H�E�H�H�H�H��t�E��E��E�H��H�E�H�H�H��u��}�uH�Eغ����H���� H�E�H�@H�U؋M�H��H��H���H��H�E�H�H�E�H�H��uH�Eغ�����H������E��E��Y�E�H��H�E�H�H�H�H��t7�E�H��H�E�H�H�H�E�H�0�E��H�M���H��H�H�H����E��E�H��H�E�H�H�H��t�E�;E�r��E�;E�t>H�E�H�@H�M�H�U�H�H��H���H�E�H�H�Eغ����H�����E���Out of memory errorUnable to send KEX init messageTimed out waiting for KEX replyUnable to allocate memory for a copy of the host keyUnable to initialize hostkey importerUnable to allocate buffer for KSSH-2.0-libssh2_1.5.0Unable to verify hostkey signatureUnable to send NEWKEYS messageTimed out waiting for NEWKEYSUnable to allocate buffer for SHA digestACBDEFUnable to send Group Exchange RequestTimeout waiting for GEX_GROUP replydiffie-hellman-group1-sha1diffie-hellman-group14-sha1diffie-hellman-group-exchange-sha1Unable to allocate memoryUnable to send KEXINIT packet to remote hostUnrecoverable error exchanging keysInvalid parameter specified for method_typeError allocated space for method preferencesThe requested method(s) are not currently supportedalgs must not be NULLUnknown method typeNo algorithm foundMemory allocation failedInternal error���������ڢ!h�4��b����)N�g�t��;�"QJy�4����:C0+
m�_7O�5mmQ�E䅵vb^~��LB�7�k�\�����8k�Z�����$|K�I(fQ��S������������������ڢ!h�4��b����)N�g�t��;�"QJy�4����:C0+
m�_7O�5mmQ�E䅵vb^~��LB�7�k�\�����8k�Z�����$|K�I(fQ��[=�|��c���H6UӚi?��$�_�e]#ܣ��b�V �R���)p��mg5NJ���tl�!|2�^F.6�;�w,��'�������]�oLR��+��X9�I|�j��&��r�Z���h��������GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�� A�C
� <(A�C
#\(A�C
#|JA�C
E�|A�C
w��A�C
���A�C
��A�C
pA�C
k<A�C
�\CA�C
>|�A�C
���A�C
���A�C
���A�C
���A�C
��A�C
�<'A�C
"\TA�C
O�� � (N��\�!(� ��"J��@$�Q e6&|w�&��o'��0�"1p��1��3C��5��_7���8�r:�;�	
-8?FNYet��������0p:HT`x�������>��oC'�FTkex.cdiffie_hellman_sha1kex_method_diffie_hellman_group1_sha1_key_exchangep_value.14428kex_method_diffie_hellman_group14_sha1_key_exchangep_value.14434kex_method_diffie_hellman_group_exchange_sha1_key_exchangekex_method_diffie_helman_group1_sha1kex_method_diffie_helman_group14_sha1kex_method_diffie_helman_group_exchange_sha1libssh2_kex_methodskex_method_strlenkex_method_listkexinitkex_agree_instrkex_get_method_by_namekex_agree_hostkeykex_agree_kex_hostkeykex_agree_cryptkex_agree_mackex_agree_compkex_string_pairkex_agree_methodsBN_CTX_newBN_newmemsetBN_randBN_mod_expBN_num_bits_libssh2_error_libssh2_htonu32BN_bn2bin_libssh2_transport_send_libssh2_packet_burn_libssh2_packet_require_libssh2_ntohu32memcpylibssh2_md5_initEVP_DigestUpdateEVP_DigestFinallibssh2_sha1_initBN_bin2bnBN_clear_freeBN_CTX_freeBN_set_wordlibssh2_hostkey_methodslibssh2_crypt_methods_libssh2_mac_methods_libssh2_comp_methodsRAND_bytesstrncmpstrchr_libssh2_kex_exchangelibssh2_session_method_preflibssh2_session_supported_algsw��������� ��������� ��������� ��������� ���������!���������"��������/#��������?$��������k$���������
�%��������&��������#$��������I'��������y'���������(���������
�%��������7)���������*���������
8�%��������)+���������
X�%���������,��������-��������N.��������s/���������0���������.���������/��������T
�a%��������y+���������1��������+��������k#��������{$���������$��������
�'%��������R&��������b$���������'���������'���������0��������	2��������	&��������7	.��������M	2��������u	.���������	&���������	.���������	
��	.���������	2���������	&��������
.��������,
2��������V
.��������x
&���������
.���������
.���������
&��������.��������B.��������a&���������.���������.���������&���������&��������	&��������+.��������P.��������}.���������&���������.���������.��������
.��������8
/���������

��
%���������
(��������
$%���������*���������
7�%��������]
Xj%���������,���������0���������.���������.���������.��������
�.��������=.��������`/���������0�������� .��������?.��������`.��������s
�{.���������.���������/���������!��������2!��������20��������Z.��������y.���������.���������
��.���������.��������/���������0���������.���������.��������.��������
�".��������Q.��������t/���������!���������!���������0���������.��������.��������5.��������H
�P.��������.���������/��������:!��������.0��������V.��������u.���������.���������
��.���������.��������/���������!��������S3��������o3���������3���������3���������4���������  ���������  ��������� 5��������!
�
!1���������!3���������!3���������! ���������! ��������"5��������0"
 5"1���������"3���������"3��������# ��������%# ��������Y#&��������t#&���������#&���������#(��������$
�
$%��������l$*���������$
��$%���������$+��������%1��������%+��������E%1���������%3��������&3��������r&2���������&&��������'2��������)',���������'2���������'
�'2���������'6��������(2�������� (7��������O(2��������V(7���������(2���������(8���������(2���������(8���������(2���������(9��������.)2��������<)9��������k)2���������)2��������)*
�6*%��������[*:���������*&���������*,���������*
�*&��������+,��������+6��������U+&��������x+,���������+7���������+&���������+,���������+7��������5,&��������X,,��������g,8���������,&���������,,���������,8��������-&��������8-,��������N-9���������-&���������-,���������-9��������.&��������&.,��������p.&���������.,���������.&��������D/(���������/
��/%��������\0;���������0;���������0<��������F12��������i1;���������16���������1<��������22���������22���������3�3<��������
42��������52���������57��������)6<��������J62���������62��������x78���������7<���������72��������|82��������99��������<9<��������]92��������	:2���������:+���������@*���������B
��B%���������C2���������C��C�C6���������C7��������D7��������"D8��������>D8��������aD9���������D9���������D
�D%��������E
@E%��������9E,��������OE<��������pE2���������E2���������E,��������JF
pWF%���������F
��F%���������F`�F�F6���������F7���������F8��������G9�������� G
-G%��������BG
"OG%���������G
"�G%���������G
5H%���������H
N�H%��������@��� @H�!�X��"��C��C��C��C�D�/D�KD�kD��D��D`�Fh�Fp�Fx�F��F��F�	G�	G @� `�!��"�6&��&�o'0 "1@�1`�3��5�_7��8�r:; �>@oC`�F.symtab.strtab.shstrtab.rela.text.rela.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @�H@P\�+@I  &@0yH1`I;`I  6@xy@C0�O-L�Oa�Ox\@�{�
(R
	(X$�}kmac.o/          1670404304  0     0     100644  5928      `
ELF>h@@UH��H�}�H�u�H�U�H�M�H�E�H�U�H�H�E���]�UH��H��H�}�H�u�H�E�H�H��tH�E�H�@H�M�H�U�H�H��H���H�E�H����UH��H��`H�����H������������H������D������L������������H�������H����H��H�EH�0H����H�ѺH���H�����H�����H��H���������H������H����H��H���H������t"�}t�UH������H����H��H���H������H�����H��H���H����H������UH��H��PH�}�H�uЉU�H�M�D�E�L�M�L�M�D�E�H�M��U�H�u�H�E�u�}WH�����H��H�M�H�EкH��H������UH��H��`H�����H������������H������D������L������������H�������H����H��H�EH�0H����H�ѺH���H�����H�����H��H���������H������H����H��H���H������t"�}t�UH������H����H��H���H������H�����H��H���H����H������UH��H��@H�}�H�u�U�H�M�D�E�L�M�L�M�D�E�H�MЋU�H�u�H�E�u�}WH�����H��H�M�H�E�H��H������UH��H��`H�����H������������H������D������L������������H�������H����H��H�EH�0H����H�ѺH���H�����H�����H��H���������H������H����H��H���H������t"�}t�UH������H����H��H���H������H�����H��H���H����H������UH��]�hmac-sha1hmac-sha1-96hmac-md5hmac-md5-96hmac-ripemd160hmac-ripemd160@openssh.comGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�0A�C
k<IA�C
D\A�C
	|hA�C
c�A�C
	�hA�C
c�A�C
	�A�C
F�00I5yO (d�h�`(����(��h��(�e (2�(�8	
Xir|������smac.cmac_method_common_initmac_method_common_dtormac_method_hmac_sha1_hashmac_method_hmac_sha1mac_method_hmac_sha1_96_hashmac_method_hmac_sha1_96mac_method_hmac_md5_hashmac_method_hmac_md5mac_method_hmac_md5_96_hashmac_method_hmac_md5_96mac_method_hmac_ripemd160_hashmac_method_hmac_ripemd160mac_method_hmac_ripemd160_openssh_com_libssh2_htonu32EVP_sha1HMAC_InitHMAC_UpdateHMAC_FinalHMAC_CTX_cleanupmemcpyEVP_md5EVP_ripemd160_libssh2_mac_methods�����������������������������������#��������O��������m��������|�����������������6��������;��������\��������z��������������������������������������������Z����������������������������������������������������;��������Y��������h��������x
 `��  (� 08y@0`Hpx��0������0�����0 08e@0�H��e�0 @0`y�������es.symtab.strtab.shstrtab.rela.text.rela.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @~@��+�8 &@h�1�;� 6@�@C0�-L�a�\@8�
�
	��kmisc.o/         1670404304  0     0     100644  7560      `
ELF>H@@
UH��H�}��u�H�U�H�E�H�U�H��H�E��U��E�]�UH��H��0�}�H�u�H�U؉M�L�EЋM�H�U�H�u�E���H�E�H�}�y"����u	H����������H��H�E���UH��H��0�}�H�u�H�U؉M�L�EЋM�H�U�H�u�E���H�E�H�}�y
����H��H�E���UH��H�}�H�E��������H�E�H�������	�H�E�H�������	�H�E�H�����	�]�UH��H�}�H�E����H��H��H�E�H�����H��H	�H�E�H�����H��H	�H�E�H�����H	�H�E�H�E�H�����H��H��H�E�H�����H��H	�H�E�H�����H��H	�H�E�H�����H	�H�E�H�E�H�� HE�]�UH��H�}��u�E����H�E���E����H�E�H����E����H�E�H���H�E�H���U��]�UH��H��H�}��u�H�E�H��U��H���H�E�H�H�PH�E�H����UH��H�� H�}�H�u�H�U�H�E��H�E���H���H�}�t/H�E�H�H�U�H�M�H��H���H�E�H�H�E�H�H�E�H����UH��H��PH�}�H�u�H�U�H�M�D�E��E��E�H�E�H�HH�u؋U����������H���H��H�E�H�H�E�H�H�E�H�}�uH�Eغ�����H����H�E�H�E��IH�E����H���f�E�f�}�� �E��Ѓ�)Ѓ�tB��	��t���t{�������E��E�Hc�H�E�HЍ�����E�P�U�Hc�H�U�H�����U�f��	�Hc�H�E�HЉʈ�E��E�Hc�H�E�H���ʈ�y�E�P�U�Hc�H�U�H�����U�f��	�Hc�H�E�HЉʈ�E��E�Hc�H�E�H���ʈ�-�E�P�U�Hc�H�U�H�����U�	�Hc�H�E�HЉʈ��E���H�E��U�H�E�H�H9E�������E��Ѓ�)Ѓ�u3H�E�H�@H�M�H�U�H�H��H���H�Eغ����H�����U�H�Eȉ���UH��H��PH�}�H�u�H�U�H�M�H�E�H�E�H�E�H�H�}�uH�E�H���H�E�H�E�H�HH�u�H�E�H��H���������H��H��H��H��H���H�E�H�E�H�E�H�}������E��E��E��7H�}�t"�E�H�E���‹E�H��T�H�E�H�m��
�E�H��D��E��}�~��E���E��E�������0���E��	ЈE��E�������<���E��	ЈE��E߃�?�E܃}�t�}�tP��E���H������E���H�����H�E�A�ȉѺ�H�Ǹ����E���H������E���H������E���H�����H�E�A��A�ȉѺ�H�Ǹ��y�E���H������E���H������E���H������E���H�����H�E�H��QA��A��Ѻ�H�Ǹ�H���H�E�H�}��'���H�E��H�E�H�U�H�H�E�H�����UH��H��H�}�H�u�H�E�H�@H�M�H�U�H��H��А��UH��H�}��u�]�UH��H�}�H�u�H�U�]�UH��H�}�H�E�H�H�E�H�H�E�H�P�]�UH��H�}�H�u�H�E�H�U�H�PH�E�H�H�E�H�H�E�H�PH�E�H�U�H�H�E�H�@H��tH�E�H�@H�U�H��H�E�H�U�H�P�]�UH��H�}�H�E�H�@]�UH��H�}�H�E�H�]�UH��H�}�H�E�H�@]�UH��H�}�H�E�H�@H��tH�E�H�@H�U�H�H��H�E�H�@H�U�H�H�PH�E�H�H��tH�E�H�H�U�H�RH�P�H�E�H�@H�U�H�RH��]�UH��H�� H�}�H�u�H�E�H�@H�M�H�U�H��H���H�E�H�}�tH�U�H�E��H���H�E���ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=��������������������������������������������������������������������������������������>������?456789:;<=��������������	

������������ !"#$%&'()*+,-./0123��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Unable to allocate memory for base64 decodingInvalid base64ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/%c%c==%c%c%c=%c%c%c%cGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�0A�C
k<bA�C
]\MA�C
H|OA�C
J��A�C
��MA�C
H�8A�C
s�aA�C
\CA�C
><�A�C
�\+A�C
f|A�C
M�A�C
R�%A�C
`�jA�C
e�A�C
MA�C
L<A�C
M\sA�C
n|NA�C
I�AA `5�A=0L0bUZk�Mty�O�.���M�58�ma���C��
�+#�1�J�%]jo�������s�(	N�misc.cbase64_tablebase64_padbase64_reverse_tabletable64_libssh2_error_libssh2_recv__errno_location_libssh2_send_libssh2_ntohu32_libssh2_ntohu64_libssh2_htonu32_libssh2_store_u32_libssh2_store_strmemcpylibssh2_base64_decode_libssh2_base64_encodestrlensnprintflibssh2_freelibssh2_tracelibssh2_trace_sethandler_libssh2_list_init_libssh2_list_add_libssh2_list_first_libssh2_list_next_libssh2_list_prev_libssh2_list_remove_libssh2_callocmemset[��������k�����������������������������������T��������������������������;
`H
��������n`�
��
��������K��������W�j�{
�����������������
������������&�9�R
�d�����������������l	'�������� @0`����.���5m �@`��������� �@�`��(	.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @v	@�
&�	,�	1�	� 90�-B�W��R@�
��
	@��apacket.o/       1670404304  0     0     100644  18752     `
ELF>�E@@
UH��H��`H�}�H�u�H�U�H�M�H�E�&H�E�H�H���H�E��E�H�E������H�E�H��H�E�H�E�H�����H�E��P@H�E�H�E�H�����H�E��PDH�E�H�E�H�����H�E��PHH�E�H�E�H�����H�E��PTH�E�H�E�H�U�H�P0H�E��@T��HE�H�E�H�����H�E��PLH�E�H�E�H�����H�E��PXH�E�H�E�H�U�H�P8H�E��@X��HE�H�E�H�����H�E��PPH�E��H�E�������rH�E��P(H�E��@L9��LH�E�H�@ H���H��H�E��@T��H9��'H�E��@T��H�E�H�H0H�E�H�@ H��H�������H�E�H�E�H�@`H�E�����H�E��@D��t%H�E��PDH�E��@@9��E�H�E����H�E���H���H�E�H�}�u)H�E�������H����E�H�E���~H�E�H�U�H�P`H�E�H�U�H�P`H�E��@ H�E�H�@H�U�H�M؋I ����H��H���H��H�E�H�PH�E�H�@H��uAH�E�������H���H�E�H�@H�M�H�U�H��H����E�H�E����H�E؋@ ����H�E�H�@�H���H�E��P@H�E؉PDH�E��@H H�E��@L H�E��@P�H�E�H�����H�E؉P0H�E��PDH�E؉P4H�E��PDH�E؉P8H�E��PHH�E؉P<H�E�H��H�E�H�E�H�PH�U��[H�E؋PDH�Eȉ�H���H�E؋P0H�Eȉ�H���H�E؋PHH�Eȉ�H���H�E؋PPH�Eȉ�H���H�E��H�E������H�E�H�pH�E�A���H����Eԃ}��u�E��q�}�t%H�E���M�H�E����H����FH�E�H�@`H��t/H�E�H�@`H��H�E�H��0H��H���H�E��@@�PH�E��P@H�E����H�E�H���H�E�H�}������H�E��H�E�H��H�E�H�E�H�PH�U��\H�E��P@H�Eȉ�H����U�H�Eȉ�H���H�EȺ�H���H�EȾH���H�E�H�pH�U�H�E�A��H����Eԃ}��u�E��7�}�t"H�E���M�H�E����H����H�E�����UH��H��PH�}�H�u�H�U�H�M��E�H�E�(H�E�H�@PH�E�H�E������H�E�H��H�E�H�E�H�����H�E��P8H�E�H�E�H�����H�E��P<H�E�H�E�H�����H�E��P@H�E�H�E�H�����H�E��PHH�E�H�E�H�U�H�P0H�E��@H��HE�H�E�H�����H�E��PDH�E��H�E�H�@@H����H�E������H�EȾ�H���H�E�H�}�u"H�EȺ�����H����E��oH�E�H�U�H�P`H�E��@ H�E�H�@H�U�H�M�I ����H��H���H��H�E�H�PH�E�H�@H��u:H�EȺ�����H���H�E�H�@H�M�H�U�H��H����E���H�E�@ ����H�E�H�@�H���H�E��P8H�E�PDH�E��@H H�E��@L H�E��@P�H�E�H�����H�E�P0H�E��P<H�E�P4H�E��P<H�E�P8H�E��P@H�E�P<H�E�H��H�E�H�E�H�PH�U��[H�E�PDH�EЉ�H���H�E�P0H�EЉ�H���H�E�PHH�EЉ�H���H�E�PPH�EЉ�H���H�E��H�E������H�E�H�pH�E�A���H����E܃}��u�E��j�}�t%H�E��H�EȺ�����H����?H�E�H�U�H���H��H���H�E�H�@`H�@@H�U�H�R`I��H�U��RDA��H�U�H�R0H�M�H�y`H�u�D���H�E������E�H�E�H��H�E�H�E�H�PH�U��\H�E��P8H�EЉ�H����U�H�EЉ�H���H�Eк�H���H�EоH���H�E�H�pH�U�H�E�A��H����E܃}��u�E��7�}�t"H�E���M�H�EȺ��H����H�E�����UH��H��H�}�H�u�H��x�����t����E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���E�H�E���p�������H����t����ujH�E�H�@8H��t*H�E�H�@8H�U�H��x���A��H�u�H�}�H��D��Ѕ�t3H�E�H�@H�M�H�U�H��H���H�E�������H�����
H�E�ǀp���H�E���p����+�EŃ�b���H����H��x����H�E�H��H�����H�E�H��x�����H�E�H��H�����H�E�H��x���H��
H9E�ssH�E�H��	H�E�H�E�H�P	H�E�H�H�����H�E�H�E�H�P
H�E�H�H�E�H��x���H+E�H��
H9E�v*H�E�H�E�H�E�H�E�H�E�H�E��H�E�H�E�H�@0H��tDH�E�H�@0H�M�H�U�A��H�U�A��H�U�A��H�u�H�U�H�}�H��QE��I��D��D���H��H�E�H�@H�M�H�U�H��H���H�E�ǀ����H�E�ǀp�H�E����H����'H��x���v<H�E�H�@ H��t[H�E�H�@ H�U�H��x�����A��H�M�H�qH�}�H��D����,H�E�H�@ H��tH�E�H�@ H�U�H�}�H�Ѻ���H�E�H�@H�M�H�U�H��H���H�E�ǀp���H��x�����H�E�H������E�H��x���vxH�E�H��H�����H�E�H��x���H��
H9E�wQH�E�H��H�E�H�E�H�PH�E�H�H�����H�E�H��x���H+E�H��
H9E�wH�E�H�P
H�E�H�H�E�H�E�H�@(H��t7H�E�H�@(H�M�H�U�A��H�U�A��L�E�H�U�u�H�}�H��QD���H��H�E�H�@H�M�H�U�H��H���H�E�ǀp���p
H��x������E��E�H�E�H��H����E��E�����H9�x���r�E�����H�E�H���Eǀ}�tC��H�E�ǀp�H�E�A����H����E��}��u�E���	H�E�H�@H�M�H�U�H��H���H�E�ǀp���	H�E�H�E�	H��x���H;E�r$H�E�H��H�����H�E���H���H�E�H�}�uFH�E�����H���H�E�H�@H�M�H�U�H��H���H�E�ǀp���	H�E��@V<���}�_��H�E�H�@H�M�H�U�H��H���H�EЋ@\��H��x���H�H+E�H��H�EЋ@L��H9�r"H�EЋPLH�EЋ@\)‰Љ�H�E�H�H��x���H�EЋ@LH�Uȉ�H��x���)щ��H�EЉPLH�E�H�U�H��x���H�E�ǀp�H��x����p�H�E�H��x���H����E��}��u�E��(H�E�ǀp���H�EЋ@P��H��x���H+E�H9�s-H�E�����H���H�EЋ@P��H�E�H�H��x���H�EЋPLH�EЋ@\9�wFH�E�����H���H�E�H�@H�M�H�U�H��H���H�E�ǀp���rH�E��@UH�EЋ@\��H��x���H�H+E�H��H�EЋ@L��H9�v8H�E�����H���H�EЋPLH�EЋ@\)‰Љ�H�E�H�H��x���H�EЋ@\H��x�����H�U�)щ��H�EЉP\�MH��x���v$H�E�H��H�����H�E���H���H�E�H�}�tH�E��@UH�E�H�@H�M�H�U�H��H���H�E�ǀp���wH��x�����H�E�H��H����E�H�E�H��H����E��E��E�H��x���H��
H9�s�E���	��H�E�H���Eƃ}�ufH�E�H��	�H�ƿ���uHH��x���v�U�H�E���H���H�E�H�}��H�E�H��H�����H�EЉP$���}���H�E�H��	�H�ƿ�����H��x���v�U�H�E���H���H�E�H�}���H�E�H��H����E�H�E�H�@H�U��M�����H��H���H��H�E�H�P(H�E�H�@(H��uH�E�������H����E��/�U�H�E�H�HH�E�H�@(H��H���H�E�H�P(�E�H���}�tS��H�E�ǀp��E�dH�E�H����E�H�u�H�E�A���H����E��}��u�E��kH�E�H�@H�M�H�U�H��H���H�E�ǀp��E��=H��x���v$H�E�H��H�����H�E���H���H�E�H�}�u0H�E�H�@H�M�H�U�H��H���H�E�ǀp����H�E��@TH�E��@UH�E�H�@H�M�H�U�H��H���H�E�ǀp���H��x����+H��x�����H�E�H��H�����uuH�E�H����H�����uWH�E�H���h�H�����H�E�ǀp�H�E�H����H��x���H�u�H�E�H������E��H��x�����H�E�H��H�����upH�E�H����H�����uRH�E�H���X�H�����H�E�ǀp�
H�E�H����H��x���H�u�H�E�H�����E��}��u�E��QH�E�H�@H�M�H�U�H��H���H�E�ǀp��E��#H��x���vQH�E�H��H����E�H�E�H��H�����H�E���H���H�E�H�}�tH�EЋP8�E��H�EЉP8H�E�H�@H�M�H�U�H��H���H�E�ǀp����H�E�ǀp�H�E���p�����H�E�H�@H�U�H�ֿ0��H�E�H�}�u0H�E�H�@H�M�H�U�H��H���H�E�ǀp�������%H�E�H�U�H�PH�E�H��x���H�P H�E�H�U�H�P(H�E�H�U�H���H��H���H�E�ǀp��}�uH�E��@h����tH�E���p�����H�E���p���uH�E�ǀp�H�E�ǀH�H�E�HǀHBH�E�ǀp�H�E�ǀ@�H�E�H�����H���H�E�H����H�E��H����E��}��u�E��H�E�ǀp����UH��H��@H�}��H�U�H�M�D�E�L�MȈE�H�E�H�H���H�E��H�E�H�@�8E���H�E�H�@ �U�Hc�H�UH�H9�rxH�}�t(H�E�H�P�E�H�H�H�E�H�UH��H�����uIH�E�H�PH�E�H�H�E�H�P H�E�H�H�E�H���H�E�H�@H�M�H�U�H��H��и� H�E�H���H�E�H�}��?����������UH��H��@H�}�H�u�H�U�H�M�D�E�L�M�H�E�H����E��E��N�E�Hc�H�E�H����L�E��}�H�M�H�U�H�E�H���uM��A��H���H����u���E��E�;E�|��������UH��H��@H�}��H�U�H�M�D�E�L�MȈE�H�EH�@H���-�u�L�Eȋ}�H�M�H�U�H�E�H���uM��A��H���H����u
����H��H�EH�P��H�E�H����E��}��u�E����}�yH�EH�@�E���E�9E�uD�u�L�Eȋ}�H�M�H�U�H�E�H���uM��A��H���H���E�H�EH�@�E��h�}�uK��H��H�EH�@H)�H�к<H)�H��H�E�H�}�H�EH�@������������H�E苀����������UH��H��0H�����H�����H���������S�E���E���H��U������E����E��}��u��E�H�M�H�U�H����H�����H��jA�A�H���H����u1H�E���E�H�����H�@H�����H�U�H��H����E���H�������H�����H����E��}��u�E���}�yH�������E���}�u�g�E���H�M�H�U�H�����H��jA�A�H���H����u0H�����H�@H�����H�U�H��H���H�������E��H����������A�������UH��H��@H�}�H�u�H�U�H�M�D�E�L�M�L�E��}�H�M�H�U�H�u�H�E�H���uM��A��H���H����uH�EH���H�EH�H������H��H�EH���H�E�H����E��}�y�}��tH�EH��E���}�M��H��H�EH�H)�H�к<H)�H��H�E�H�}�H�EH�������v�}��u�E��k�U�H�E��H���H��t2L�E��}�H�M�H�U�H�u�H�E�H���uM��A��H���H���#H�E苀����$���H�EH�����Unable to allocate a channel for new connectionforwarded-tcpipUnable to send channel open confirmationForward not requestedUnable to send open failureallocate a channel for new connectionx11X11 Forward UnavailableInvalid MAC receivedsocket disconnectPacket received for unknown channelPacket contains more data than we offered to receive, truncatingThe current receive window is full, data ignoredRemote sent more data than current window allows, truncatingexit-statusexit-signalmemory for signal nameRGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx��A�C
�<�A�C
�\�A�C
�|A�C
���A�C
��xA�C
s��A�C
���A�C
{�
� ��0�	=Qbip��������";
�6Nu|������x�����3packet.cpacket_queue_listenerpacket_x11_openpacket.14520_libssh2_list_first_libssh2_ntohu32strlenmemcmp_libssh2_calloc_libssh2_errormemcpy_libssh2_channel_nextid_libssh2_store_u32_libssh2_transport_send_libssh2_list_add_libssh2_list_next_libssh2_store_str_libssh2_htonu32_libssh2_packet_add_libssh2_channel_locate_libssh2_channel_receive_window_adjustmemset_libssh2_kex_exchange_libssh2_packet_ask_libssh2_list_remove_libssh2_packet_askv_libssh2_packet_requiretime_libssh2_transport_read_libssh2_packet_burn_libssh2_packet_requirevstrchr.��������\
��������v
���������
���������
���������
���������
��������*
��������w�������������������������0
=���������
���������
0
��������H��������������������������������������������'��������T
@^������������������������������������������(
i0��������A��������d���������
���������
��������
��������8
��������R
���������
������������������
����������N
�[���������
�������������������>��������S��������h��������}������������������
@���������	���������	���������	���������	
��	���������	���������	��������

$
���������
(
�%��������e��
���������
���������
���������
����������K

	�

���������

���������
��������
����������
������������������
������������������
8!��������S
�`���������
����������8
��������H���������
���������
��������
���������*��������I
��������v
{������������������
���������


��������-������������������
������������������
���������
0������������������.
��������E
�M��������m���������
��������
������������������������������������������7������������������ �����������������4��������{�����������������#��������3$������������������#���������!���������$��������Z���������!��������1#��������L$��������~#���������'��������!��������(�
0>8>@>H>P>X>`>h>p>x>�����s�J���n�k���n��
�n�n�n�n�n�nnnnn n(n0n8n@nHnPnXn`nhnpnxn�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�nnnnn n(n0n8n@nHnPnXn`nhnpnxn�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�nnnnn n(�0n8n@nHnPnXn`nhnpnxn�n�n���f�a�"���� @�`;
������.symtab.strtab.shstrtab.rela.text.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @2@�,P
&r,r6x�1@�9�
>09%-Gf%\h%W@�D�	�&�	@*:XEfpublickey.o/    1670404304  0     0     100644  19136     `
ELF>@G@@
UH��H��0H�}�H�u�U܃}�uH�}�tH�E�@��u�E��}�x�}�~
H�E�� �E�Hc�H��H�H�H��HH�H�E�H�U�H�E����H������UH��H��@H�}�H�u�H�U�H�E�H�H�E�H�E�H�@`H�E�H�E�H�H�E�H�H�E؋@����H�U�H�E���H����E�}��u�E��Y�}�tH�E�����H����8H�E�H�����H�E�H�PH�E�H�@H�M�H�U�H�RH��H���H��H�E�H�PH�E�H�@H��uH�E������H�����H�E��@H�E؋@����H�E�H�HH�E�H�PH�E��H����E�}��u�E��H�E�H�@9E�tKH�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�E��@H�E����H����.H�E�H�PH�E�H�H�E�H�PH�E�H�H�E��@���UH��H��0H�}�H�u�H�E�H�H�E�H�E�H�}�w
������H�E�H�����H�E�H�E�H�m�H�E�H;E�sT������_H�E��@H�H9E�u9H�E�H�@H�U�H�M�H��H�����uH�U�H�E�H�H�E�H�H�E���H�E�H�E�H�@H��u��������UH��H��@H�}�H�E�H�H�@`H�E�H�U�H�M�H�E�H��H���6����E�}��u�E���}�tH�E�����H�����H�E�H�E�H�U�H�E�H��H������E�}�uXH�E�H�����H�E�H�E�H�@H�M�H�U�H��H���H�}�u��yH�E��H�M�H�E�H��H������������YH�E�H�@H�M�H�U�H��H��Ѓ}�yH�E������H����#H�E������H���H�E������UH��SH��XH�}�H�E���(���u;H�E�Hǀ@�H�E�Hǀ0�H�E�Hǀ8�H�E�ǀ(�H�E���(�����H�E�H��jA�A��� ��H���H��H��H�E�H��8�H�E�H��8�H��u6H�E�H������u
��uH�E�����H����qH�E�ǀ(�H�E���(�����H�E�H��8�A�	��	�H����E�}��u H�E������H�������}�tH�E�����H�����H�E�ǀ(�H�E���(����9H�E�H��8��H����E�}��u H�E������H�����eH�E���H���H��H�E�H��0�H�E�H��0�H��uH�E�������H����2H�E�H��0�H�U�H��8�H�H�E�H��0��@H�E�HP�H�E�H�E�H���H�E�H�E�H���H�E�H�E��H���H�E�H�E�H���H�E�Hǀh�H�E�ǀ(�H�E���(�����H�E�H��h��H��H)�H�E�H��P�H�E�H��8��H����E�}��u H�E������H������}�y�M�H�E����H�����H�E�H��h��E�H�H�H�E�H��h�H�E�H��h�H��w H�E������H�����H�E�ǀ(�H�E���(����}H�E�H��H�H�E�H��@�H�E�H��0�H��H��� ����E�}��u H�E������H������}�tH�E�����H����H�E�H��@�H�E�H�E�H��H�H�E�H��H������E܃}�yH�E������H�����}�t�}����\H�E�H�����H�E�H�E�H��H�E�H�E�H�����H�E�H�E�H��H�E�H�U�H�E�H�H�E�H�E�H�����H�E�H�E�H��H�E�H�U�H�E�H�H�E�H�E�H��@�H�E�H��H�H�H�E�H9�sH�E������H�����H�EЉ�H�E�H�ƿ�'�����H�E�H�U�H��0�H����CH�E�H��0��@��vH�E�H��0��@H�E�H�@H�M�H�U�H��@�H��H���H�E�Hǀ@�H�E�ǀ(�H�E�H��0��3H�E������H���H�E�H�@H�M�H�U�H��@�H��H���H�E�Hǀ@�����H�E�ǀ(�H�E�H��8�H��t<H�E�H��8�H����E�}��u H�E������H�����H�E�H��0�H��t.H�E�H�@H�M�H�U�H��0�H��H���H�E�Hǀ0�H�E�H��@�H��t.H�E�H�@H�M�H�U�H��@�H��H���H�E�Hǀ@�H�E�ǀ(��H�]���UH��H��0H�}ؿ�H�E�H�E�H�����H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H��pH�}�H�u�H�U�H�M�L�E�D�ȈE�H�U�H�E�H�H��H�E�H�E�H�E�H�}�u
�����H�E�H�H�E�H�E�H�@`H�E�H�E��@ ����H�E�H�@(H�E��@����H�E��H�U�H��H��H�H��H��H�EH�H�@H��uH�U�H��H��H�H��H��H�EH�H���H�����uJH�U�H��H��H�H��H��H�EH�H�@H�E�H�U�H��H��H�H��H��H�EH�H�@H�E��H�E�H�E�H;E�H���H�U�H�E�H�H��H�E��qH�E�H�E��XH�U�H��H��H�H��H��H�EH�H�HH�U�H��H��H�H��H��H�EH�H�@H�H�E�H�H��	H�E�H�E�H�E�H;Er�H�E�H�@H�M�H�U�H��H���H��H�E�H�P(H�E�H�@(H��uH�Eк�����H�����H�E�H�P(H�E�H�P0H�E�P�H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�E�H�@0�H���H�E�H�@0H�PH�E�H�P0H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�E��@���&H�E��H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�}�t2H�E�H�@0H�U�H�M�H��H���H�E�H�P0H�E�H�H�E�H�P0H�E���H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H���H�E�H�P0H�E�H�H�E�H�P0H�E���H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H���H�E�H�P0H�E�H�H�E�H�P0�	H�E���H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H���H�E�H�P0H�E�H�H�E�H�P0H�E���H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�E�H�@0H�U�H�M�H��H���H�E�H�P0H�E�H�H�E�H�P0�}�@��H�E�H�@0H�HH�U�H�J0��H�E��H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�E���H�U�H��H��H�H��H��H�EH�H�@��H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�U�H��H��H�H��H��H�EH�H�pH�U�H��H��H�H��H��H�EH�H�H�E�H�@0H��H��H���H�E�H�H0H�U�H��H��H�H��H��H�EH�H�@H�H�E�H�P0H�U�H��H��H�H��H��H�EH�H�@��H�E�H�@0��H���H�E�H�@0H�PH�E�H�P0H�U�H��H��H�H��H��H�EH�H�pH�U�H��H��H�H��H��H�EH�H�HH�E�H�@0H��H��H���H�E�H�H0H�U�H��H��H�H��H��H�EH�H�@H�H�E�H�P0H�U�H��H��H�H��H��H�EH��@ ��@��H�E�H�@0H�HH�U�H�J0��H�E�H�E�H;E����H�E��@ H�E��@ ����H�E�H�P0H�E�H�@(H)�H��H��H�E�H�P(H�EؾH����Ẽ}��u�E��H�E�H�P0H�E�H�@(H)‹E�H�H9�t@H�E�H�@H�M�H�U�H�R(H��H���H�E�H�@(H�Eк�����H����[H�E�H�@H�M�H�U�H�R(H��H���H�E�H�@(H�E��@ H�E�H���
��Ẽ}��u�E��H�E��@ �E���UH��H��PH�}�H�u�H�U�H�M�L�E�H�U�H�E�H�H��H�E�H�}�u
������H�E�H�H�E�H�E�H�@`H�E�H�E؋@8����H�E�H�@@H�E�H�@H�M�H�U�H��H���H��H�E�H�P@H�E�H�@@H��uH�E������H����qH�E�H�P@H�E�H�PHH�E��P�H�E�H�@H��H���H�E�H�@HH�PH�E�H�PHH�E�H�@H�H���H�E�H�@HH�PH�E�H�PHH�E�H�@H��H���H�E�H�@HH�PH�E�H�PHH�Eȉ�H�E�H�@H��H���H�E�H�@HH�PH�E�H�PHH�E�H�@HH�U�H�M�H��H���H�E�H�PHH�E�H�H�E�H�PHH�E���H�E�H�@H��H���H�E�H�@HH�PH�E�H�PHH�E�H�@HH�U�H�M�H��H���H�E�H�PHH�E�H�H�E�H�PHH�E��@8H�E؋@8����H�E�H�PHH�E�H�@@H)�H��H��H�E�H�P@H�E�H����E�}��u�E���H�E�H�PHH�E�H�@@H)‹E�H�H9�tKH�E�H�@H�M�H�U�H�R@H��H���H�E�H�@@H�E��@8H�E������H����[H�E�H�@H�M�H�U�H�R@H��H���H�E�H�@@H�E��@8H�E�H������E�}��u�E��H�E��@8�E���UH��SH��H��x���H��p���H��h���H�E�H�E�H�E�H�E�H��x���u
�����H��x���H�H�E�H�E�H�@`H�E�H��x����@P����H��x���H�@pH��x���H�P`H��x���H�PXH�EȍP�H��x���H�@X��H���H��x���H�@XH�PH��x���H�PXH��x���H�@X�H���H��x���H�@XH�PH��x���H�PXH��x���H�@X��H���H��x���H�@XH�PH��x���H�PXH��x����@PH��x����@P����H��x���H�@XH��x���H��`H)�H��H��x���H�P`H�E��H����E��}��u�E��6
H��x���H�@XH��x���H��`H)�H�‹E�H�H9�t)H��x����@PH�E�������H�����H��x����@PH��x���H�PxH��x���H�HpH��x���H��H������E��}��u�E���}�tH�E�����H����H��x���H�PpH��x���H�PXH��x���H�@xH��x���H��XH��H���]��E��}�yH�E������H�����}�t�}����XH��x���H�@XH�����H�E�H��x���H�@XH�PH��x���H�PXH��x���H�@XH�����H�E�H��x���H�@XH�PH��x���H�PXH��x���H�PXH�E�H�H��x���H�PXH��x���H�@XH�����H�E�H��x���H�@XH�PH��x���H�PXH��x���H�PXH�E�H�H��x���H�PXH��x���H�PXH��x���H�HpH��x���H�@xH�H9�vH�E������H����
H�}�ubH�E�H�@H�M�H��x���H�RpH��H���H��x���H�@pH��h���H�U�H�H��p���H�U�H�H��x����@P��
H�E���H�M�H��x���H��H���1��
H�E�H;E���H�E�H�}�t6H�E�H�HH�u�H�E�H�PH��H��H)�H��H��H�E�H��H��H����'H�E�H�HH�u�H�E�H�PH��H��H)�H��H���H�E�H�}�uH�E�������H����c	H�E�H�E�H��x����@���xH��x���H�@XH�����H�E�H��x���H�@XH�PH��x���H�PXH�}���H�U�H��H��H)�H��H��H�E�H�H�@(H�E�H�HH�u�H�U�H��H��H)�H��H��H�E�H��(��H�C0H�U�H��H��H)�H��H��H�E�H�H�@0H��uH�E�������H����rH�U�H��H��H)�H��H��H�E�H�H�@0H�H�U�H��H��H)�H��H��H�E�H�H�@0H�@H�U�H��H��H)�H��H��H�E�H�H�@0H��x���H�RXH�PH�U�H��H��H)�H��H��H�E�H�H�@0H�U�H�PH�U�H��H��H)�H��H��H�E�H�H�@0�@ H��x���H�PXH�E�H�H��x���H�PX�HH�U�H��H��H)�H��H��H�E�H�H�@(H�U�H��H��H)�H��H��H�E�H�H�@0H��x���H�@XH�����H�U�H��H��H)�H��H��H�E�HЉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@H�H��x���H�PXH��x���H�@XH�����H�U�H��H��H)�H��H��H�E�HЉ�H�P H��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@ H�H��x���H�PX�$H��x���H�@XH�����H�U�H��H��H)�H��H��H�E�HЉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@H�H��x���H�PXH��x���H�@XH�����H�U�H��H��H)�H��H��H�E�HЉ�H�P H��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�@ H�H��x���H�PXH��x���H�@XH�����H�U�H��H��H)�H��H��H�E�HЉ�H�P(H��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�@(H���H�E�H�HH�u�H�U�H��H��H)�H��H��H�E�H�H�P(H��H��H�H��H��H�U�H��H��H)�H��H��H�E�H���H�C0H�U�H��H��H)�H��H��H�E�H�H�@0H��uH�E�������H����JH�E��AH��x���H�@XH�����H�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��Hȉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��H�H��x���H�@XH�H��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�p0H�U�H��H��H�H��H�H�@H�H��x���H�PXH��x���H�@XH�����H�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��Hȉ�H�PH��x���H�@XH�PH��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��H�H��x���H�@XH�BH��x���H�HXH�U�H��H��H)�H��H��H�E�H�H�p0H�U�H��H��H�H��H�H�@H�H��x���H�PXH�U�H��H��H)�H��H��H�E�H�H�H0H�U�H��H��H�H��H��@ H�E�H�U�H��H��H)�H��H��H�E�H�H�@(H9E�������$H�U�H��H��H)�H��H��H�E�H�H�@0H�U�H��H��H)�H��H��H�E�H�H��x���H�@pH�H�E�H�U�H��H��H)�H��H��H�E�H�H�H��x���H�@p�DH�E������H���H�E�H�@H�M�H��x���H�RpH��H���H��x���H�@p��H��x���H�@pH��t.H�E�H�@H�M�H��x���H�RpH��H���H��x���H�@pH�}�tH�U�H��x���H��H���H��x����@P�����H�Ę[]�UH��H�� H�}�H�u�H�E�H�E�H�}���H�}���H�E�H�H�@`H�E��IH�E�H�@0H��tH�E�H�@H�M�H�U�H�R0H��H���H�E�H�@H�M�H�U�H�H��H���H�E�8H�E�H�H��u�H�E�H�@H�M�H�U�H��H�������UH��H�� H�}�H�}�u
�����H�E�H�H�@`H�E�H�E�H�@H��t(H�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�E�H�@(H��t(H�E�H�@H�M�H�U�H�R(H��H���H�E�H�@(H�E�H�@@H��t(H�E�H�@H�M�H�U�H�R@H��H���H�E�H�@@H�E�H�@pH��t(H�E�H�@H�M�H�U�H�RpH��H���H�E�H�@pH�E�H�H����E�}��u�E��H�E�H�@H�M�H�U�H��H���statusversionpublickey	successaccess deniedstorage exceededversion not supportedkey not foundkey not supportedkey already presentgeneral failurerequest not supported

unknownInvalid response from publickey subsystemUnable to allocate publickey response bufferTimeout waiting for publickey subsystem response packetTimeout waiting for response from publickey subsystemInvalid publickey subsystem responseUnexpected publickey subsystem responsesessionUnable to startup channelsubsystemWould block starting publickey subsystemUnable to request publickey subsystemUnable to allocate a new publickey structureWould block sending publickey version packetUnable to send publickey version packetNeed to be called again to complete thisWould block waiting for response from publickey subsystemInvalid publickey subsystem response codeMalformed publickey subsystem packetUnexpected publickey subsystem response, ignoringWould block closing channelcommentUnable to allocate memory for publickey "add" packetaddUnable to send publickey add packetUnable to allocate memory for publickey "remove" packetremoveUnable to send publickey remove packetlistUnable to send publickey list packetUnable to allocate memory for publickey listUnable to allocate memory for publickey attributesGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx��A�C
|<�A�C
�\�A�C
�|;A�C
6 �NA�C
E�D�rA�C
m�A�C
0A�C
+  �A�C
H��D�A�C
�d<A�C
7�
 `& �=�T��mW��;�TN	������
.M]nu���r����-0	]�&L&�B�&<]publickey.cpublickey_response_codespublickey_status_codespublickey_status_errorpublickey_packet_receivepublickey_response_idpublickey_response_success_libssh2_error_libssh2_channel_read_libssh2_ntohu32strncmp_libssh2_channel_openlibssh2_session_last_errno_libssh2_channel_process_startup_libssh2_channel_extended_data_libssh2_calloc_libssh2_htonu32memcpy_libssh2_channel_write_libssh2_channel_closelibssh2_publickey_inittime_libssh2_wait_socketlibssh2_publickey_add_exlibssh2_publickey_remove_exlibssh2_publickey_list_fetchlibssh2_publickey_list_freelibssh2_publickey_shutdown_libssh2_channel_freeC^(z�����������������
��������%��������l
Hy�����������������
x!��������v ������������������g
�t�����������������
�)��������4
A���������
8�����������������,
@9��������u

Z����������
h����������
����������
��������
h)��������D��������k
�x���������������������������
�����������������w���������
�����������
 ����������
H��������o
x|���������
�����������
����������	��������3	��������`	���������	
��	���������	��������n

{
���������
���������

B�
����������������������������������

^
��������,
h9��������g������������������
�������������������0��������_����������������������������������� ��������O��������~��������������������������Q�����������������"�����������������^���������
�����������
������������������8��������^
f�����������������������������������������������������
�����������������M��������|
7������������������E
@R���������
����������
���������B��������u�����������������4
�A��������[
hh�����������������L
�Y���������^���������X�������� ��������� ��������!��������t"
��"���������"���������#���������%
�%��������+&#��������(%��������(@X(�@�X�p���������� @�`W��T���-$]HL&h�&.symtab.strtab.shstrtab.rela.text.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @9(@7�
&y(,y(6�(� 1@�D >0K/-Gx/\x/�W@�E	�0�	�4s�Ffscp.o/          1670404304  0     0     100644  15320     `
ELF>�8@@
UH��H�}�H�uЉU��E��U�H�E�H�H�E�H�E�H�E�H�E�H�E��H�E������!����'�6�}�t5�}�t�}��`H�E�H��H9E�w
��cH�E�H�PH�U��"�7H�E�H��H9E�w
��:H�E�H�PH�U��'H�E�H�PH�U��"��E��6�}�tr�}�t�}�t.�H�E�H��H9E�w
���H�E�H�PH�U��\�oH�E�H��H9E�w
��H�E�H�PH�U��"H�E�H�PH�U��\�7H�E�H��H9E�w
��H�E�H�PH�U��'H�E�H�PH�U��\��E��~�}�to�}�t�}�t+�bH�E�H��H9E�w
��+H�E�H�PH�U��'�9H�E�H��H9E�w
��H�E�H�PH�U��"H�E�H�PH�U��'���E��H�E�H��H9E�w
��H�E�H�PH�U��H�E�H�PH�U�ʈH�E����tH�E�H��H9E������}�t4�}�tT�}�t�MH�E�H��H9E�w��\H�E�H�PH�U��"�'H�E�H��H9E�w��6H�E�H�PH�U��'��H�E�H��H9E�w��H�E��H�E�H+E�]�UH��H��pH�}�H�u�H�U�H�E���x����lH�E�Hǀ��H�E�Hǀ��H�E�Hǀ��H�E�Hǀ��H�E�H���H��H��H�H�H�}�t���H�H�P
H�E�H����H�E�H�@H�M�H�U�H����H��H���H��H�E�H����H�E�H����H��u H�E�������H�����jH�}�t���H�E�H����H�E�H����H�ѺH�Ǹ�H�E�H����H����E�H�E�H�����‹E�)�H�E�H�����E�H�H�H�E�H��H�����H�E�ǀx�H�E���x�����H�E�H��jA�A��� ��H���H��H��H�E�H����H�E�H����H��uoH�E�H������t>H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀx��H�E������H�����
H�E�ǀx�H�E���x�����H�E�H����H�E�H����H�E�H����I��H�Ѻ�H����E��}��u H�E������H������}�t3H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ����H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ƀ��H�E�ǀx�H�E���x���uxH�E�H����H�E�H������H����E��}��u H�E������H������}��"H�E�Hǀ��H�E�ǀx�H�E���x����.H�E���x����J�H�E���x�����H�E�H����H�E�H����H�H�E�H������H����E��}��u H�E������H������
�}�y�M�H�E����H����H
�}���	H�E�H����H�PH�E�H����H�E�����<T��H�E�H�����H���H�E�H�E�H�@H�U�H�M�H��H��H���H�E�H�}�uH�E�������H����	H�E�H����H�M�H�U�H���H�U�H�E�H��H�E�����H���H�E�H�@H�M�H�U�H��H����R	H�E�H����H����H�E�H����H�P�H�E�����</vH�E�H����H�P�H�E�����<9vxH�E�H����H�P�H�E�����< tYH�E�H����H�P�H�E�����<
t:H�E�H����H�P�H�E�����<
tH�E�����H����H�E�H����H��vH�E�H����H�P�H�E�����<
tLH�E�H����H=�{H�E�����H����%H�E�H����H�P�H�E�H����H�E�H����H�P�H�E�����<
t�H�E�H����H�P�H�E�����<
t�H�E�H����H�U�Ƅ��H�E�H����H��wH�E�����H����H�E�H��H��H�E�H�E� H���H�E�H�}�t
H�E�H+E�H��H�E�����H����4H�E�H�PH�U��H�E�
�H���H��H�E�H����H�Eؾ H���H�E�H�}�t
H�E�H+E�H��H�E�����H����H�E�H�E� H���H�E�H�}�t
H�E�H+E�H��H�E�����H����tH�E��H�E�
�H���H��H�E�H����H�E�ƀ��H�E�ǀx�H�E���x���u\H�E�H����H�E�H������H����E��}��u H�E������H�����C�}�t%��H�}�tH�E�H����H=�������H�E�ǀx�H�E���x���uH�E�Hǀ��H�E�ǀx�H�E���x����eH�E���x���	�z�MH�E�H�E���x�����H�E�H����H�E�H����H�H�E�H������H����E��}��u H�E������H�����8�}�y�M�H�E����H�����}��\H�E�H����H�PH�E�H����H�E�����<CtH�E�����H����VH�E�H����H��vxH�E�H����H�P�H�E�����<
tYH�E�H����H�P�H�E�����<
t:H�E�H����H�P�H�E�����<wH�E�����H�����H�E�H����H��vH�E�H����H�P�H�E�����<
tLH�E�H����H=��H�E�����H����kH�E�H����H�P�H�E�H����H�E�H����H�P�H�E�����<
t�H�E�H����H�P�H�E�����<
t�H�E�H����H�U�Ƅ��H�E�H����H��wH�E�����H�����H�E�H��H��H�E�H�Eо H���H�E�H�}�t
H�E�H+E�H��H�E�����H����zH�E�H�PH�U��H�M�H�EкH��H���H��H�E�H����H�E�H��t&H�E����tH�E�����H����H�EȾ H���H�E�H�}�t
H�E�H+E�H��H�E�����H�����H�E��H�M�H�EȺ
H��H���H��H�E�H����H�E�H��t&H�E����tH�E�����H����vH�E�ƀ��H�E�ǀx�	H�E���x���	u\H�E�H����H�E�H������H����E��}��u H�E������H�����p�}�t��H�E�H����H=��������H�E�ǀx�
H�}�tdH�E����H���H�E�H����H�E�H�PXH�E�H����H�E�H�PHH�E�H����H�E�H�P0H�E�H������H�E��PH�E�ǀx�H�E�H��������H�E�H����H�����tH�E�����H����H�E�H�����t�H�E����E�H�E�H��H�E��H�E�H����H������t�H�E��Uĉ�H�E�H�U�H��H�E�Hǀ��H�E�ǀx����UH��H��@H�}�H�u�H�Uȿ�H�E�H�U�H�M�H�E�H��H���_�H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H��`H�}�H�u��U�H�M�L�E�L�M�H�Eȋ������^H�E�H���H��H��H�H�H�}�uH�}�t���H�H�P
H�E�H����H�E�H�@H�M�H�U�H����H��H���H��H�E�H����H�E�H����H��u H�EȺ�����H�����H�}�uH�}�t���H�E�H����H�E�H����H�ѺH�Ǹ�H�E�H����H����E�H�E�H�����‹E�)�H�E�H�����E�H�H�H�E�H��H�����H�E�H����H�E�H����H��H��H�E�ǀ��H�Eȋ�������H�E�H��jA�A��� ��H���H��H��H�E�H����H�E�H����H��uoH�E�H������t>H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ���H�EȺ����H�����+H�E�ǀ��H�Eȋ�������H�E�H����H�E�H����H�E�H����I��H�Ѻ�H����E�}��u H�EȺ����H������}�tIH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�EȺ���H�����H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ��H�Eȋ�������H�E�H����H�E�H������H����E�}��u H�EȺ����H������}�y�M�H�EȺ��H����%�}���H�E�������tH�EȺ���H�����H�}�uH�}�t;H�E�H����H�U�H�E�I��H������Hc�H�E�H����H�E�ǀ��H�}�uH�}��rH�Eȋ�������H�E�H����H�E�H����H�E�H����H��H��H����E�}��u H�EȺ����H�����H�E�H����9E�tH�EȺ�����H�����H�E�ǀ��H�Eȋ�������H�E�H����H�E�H������H����E�}��u H�EȺ����H�������}�y�M�H�EȺ��H����Z�}��H�E�������tH�EȺ���H����&H�E�ǀ���H�Eȋ�����uH�E�ǀ��H�Eȋ�����uyH�E��/H���H�E�H�}�tH�E��H�E�H�E�H�E�H����H�M�H�U��E�I��I�Љ�����Hc�H�E�H����H�E�ǀ��H�Eȋ�������H�E�H����H�E�H����H�E�H����H��H��H����E�}��u H�EȺ����H�����tH�E�H����9E�tH�EȺ�����H�����H�E�ǀ��	H�Eȋ�����	�TH�E�H����H�E�H������H����E�}��u H�EȺ����H�������}�yH�EȺ���H����C�}���H�E���������H�E�H�����H���H�E�H�E�H�@H�U�H�M�H��H��H���H�E�H�}�uH�EȺ�����H�����H�E�H����H�M�H�U�H����E�}�~H�U�H�E�H��H�E�H�@H�M�H�U�H��H���H�EȺ���H����aH�E�ǀ��H�E�H����������H�E�H����H�����tH�EȺ���H����
H�E�H�����sH�Eȋ��E�H�E�H��H�EАH�E�H����H������t�H�EȋU܉�H�E�H�U�H��H�E�Hǀ��H�E�ǀ�����UH��H��PH�}�H�uЉU�H�M�L�E�L�M���H�E�H�M�L�E�H�}��U�H�u�H�E�M��I��H���!���H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H��PH�}�H�uЉU�H�M�L�E�L�M���H�E�L�E�H�}�H�M��U�H�u�H�E�M��I��H�����H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���Unable to allocate a command buffer for SCP sessionpscp -%sf sessionWould block starting up channelexecWould block requesting SCP startupWould block sending initial wakeupWould block waiting for SCP responseFailed reading SCP responseFailed to get memory Failed to recv fileInvalid data in SCP responseUnterminated response from SCP serverInvalid response from SCP server, too shortInvalid response from SCP server, malformed mtimeInvalid response from SCP server, malformed mtime.usecInvalid response from SCP server, too short or malformedWould block waiting to send SCP ACKInvalid response from SCP serverInvalid response from SCP server, malformed modeInvalid response from SCP server, invalid modeInvalid response from SCP server, invalid sizeWould block sending SCP ACKUnexpected channel closeUnable to allocate a command buffer for scp sessionscp -%st Unknown error while getting error stringWould block waiting for response from remoteSCP failureInvalid ACK response from remoteT%ld 0 %ld 0
Would block sending time data for SCP fileUnable to send time data for SCP fileWould block waiting for responseInvalid SCP ACK responseC0%o %lld %s
Would block send core file data for SCP fileUnable to send core file data for SCP filefailed to get memoryfailed to send fileGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx��A�C
�<hA�C
c\�A�C
�|�	A�C
�	��A�C
���A�C
���,�h��	&5>To��������$L�5:OW^�k��scp.cshell_quoteargscp_sendstrlen_libssh2_errorsnprintf_libssh2_channel_openlibssh2_session_last_errno_libssh2_channel_process_startup_libssh2_channel_write_libssh2_channel_read_libssh2_channel_packet_data_lenstrchrstrtolstrtollmemsetlibssh2_channel_eoflibssh2_channel_freelibssh2_scp_recvtime_libssh2_wait_socketstrrchrlibssh2_scp_send_exlibssh2_scp_send64N���������
�
���������
4�
6

7��������-���������
A������������������,
P9
���������
p����������
x�
��������}���������
��
��������A��������S
�`
��������|
��
�����������������
	
��������@��������W
d
��������:	
3G	
���������	
P�	
��������7

xD

��������l
���������

��

���������
���������
��������
�
��������,��������M
Z
��������|������������������
X�
������������������
�

�������� 

�*

��������k

�x

���������

3
��������V
Pc
���������
x�
��������&��������G
�T
������������������
��
������������������
�
�������� ��������K
X
������������������
?�
��������&������������������
[�
����������������f��������������������������
���������
x�
���������
4�
6�
��������������������
A������������������
P#
��������
p����������
x�
���������
��
��������v���������
��
���������
�
���������
(�
�������� 
I/������������������
X�
���������
��
��������A��������S
�`
��������|
�
���������
��
����������������I
�X������������������
��
���������
(

��������X��������j
�w
���������
(�
�����������������
S
��������=��������u
h�
������������������
[�
�������������������������������������������!��������o����������������� @�`L���^��.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @�@)�
&�,�1�|90\#-B�#W�#�R@�7�
h$	�'~08asession.o/      1670404304  0     0     100644  20440     `
ELF>XL@@
UH��H��H�}�H�u�H�E�H�����UH��H��H�}�H�u�H�E�H������UH��H�� H�}�H�u�H�U�H�U�H�E�H��H�����UH��H�� H�}�H�E苀8���u�E�H�E�ǀ8��:H�E�H��@��E��'�E�H�E苀���H�E艐H�E�H�@PH�M�H�U�Rl��tA��A�@H�U苺H�u�I��D�ɺ�ЉE��}��}�yV�}��u)H�E�ǀ�E�Hc�H�E�H��@������H�E�ǀ8�H�E�Hǀ@�������}�uH�E�ǀ�������v�E���u'H�E�ǀ8�H�E�Hǀ@�������G�E��P�U��M�H�U�H���<��}��,�}������E���H�U�H���<�<
�������m��}�t0�E���H�U�H���<�<
tދE���H�U�H���<�<
t�H�E�ǀ8�H�E�Hǀ@��}�u
������H�E�H�@H�M�U���Hc�H��H���H��H�E�H���H�E�H���H��uH�E������H����B�E�Hc�H�E�H��<�H�E�H���H��H���H�E�H����E�H�H�����UH��H��0H�}�H�E��E�H�E؋�8���uCH�E�H��XH��t%H�E�H��XH����E�H�E�H��XH�E�H�E�ǀ8�H�E؋����H�E؉�H�E�H�@HH�M�H�U؋Rl��tA��A�@�U�Hc�H�U�H��@�H)�H��I��H�U�H��@�H��H�U�H�H�U؋�I��D��L���H�E�E�Hc�H�E�H��@�H)�H��H9E�tkH�}�yH�}�u9H�E�ǀH�}�~H�E�H��@�H�E�H�H�E�H��@������FH�E�ǀ8�H�E�Hǀ@������"H�E�ǀ8�H�E�Hǀ@����UH��H�� �}�u�E���Ǹ��E��}�t�E����‹E��Ǹ���E���‹E��Ǹ���UH��H�� �}�E���Ǹ��E��}��u���E�%��UH��H�� H�}�H�u�H�}�tH�E�H�����H�E�H�E�H��XH��t.H�E�H�@H�M�H�U�H��XH��H���H�E�HǀXH�}�u
���H�E�H�@H�U�H�M�H��H��H���H��H�E�H��XH�E�H��XH��uH�E������H����H�E�H��XH�U�H�M�H��H���H�E�H��XH�E�H��H�E�H��XH�E�H�PH�U�H��
H�E�H��XH�E�H�PH�U�H��
H�E�H��XH�E�H�����UH��H��H�}�H�u�H�U�H�E�H��H�����UH��H��@H�}�H�u�H�U�H�M�H�E�H�E�H�E�H�}�tH�E�H�E�H�}�tH�E�H�E�H�}�tH�E�H�E�H�U�H�E�H�ֿ����H�E�H�}�tH�E���H���H�E�H�U�H�PH�E�H�U�H�PH�E�H�U�H�PH�E�H�@HH�E�H�@PH�U�H�E�H�H�E�Hǀ�H�E�ǀ��H�E���UH��H�}�u�H�U؃}����E�H����H�E�H�@ H�E�H�U�H�E�H�P H�E��H�E�H�@(H�E�H�U�H�E�H�P(H�E��H�E�H�@0H�E�H�U�H�E�H�P0H�E��}H�E�H�@8H�E�H�U�H�E�H�P8H�E��_H�E�H�@@H�E�H�U�H�E�H�P@H�E��AH�E�H�@HH�E�H�U�H�E�H�PHH�E��#H�E�H�@PH�E�H�U�H�E�H�PPH�E���]�UH��H��PH�}�H�u�H�E�H�E�ǀH�U�H�E�H��H����E�}�y�E��}�E�i��H�H�E�H�E�H����E�}�uH�E��H�E�H���H�����Eԅ�t�E�Hc�H�E�H���H9�~��H�E�H�U�H�E�H��H���f(���Y��H,�H�E�H�E�H���H9E�~H�E�ǀ����������H�E�H���H+E�H�E��E��H�}�~	�E���E�H�E����E�f�E�f�E��E����t�EЃ�f�EЋE����t�EЃ�f�EЃ}�tH�E��������H�E̾H����E�}�H�E�ǀ�������������UH��H�� H�}�u�H�E苀`������}�uH�E�����H�����H�E�U䉐H�E苀������������H�E艐H�E苀��t:H�E苀����s����E��}�t�M�H�E���H����YH�E�ǀ`�H�E苀`���uLH�E�H������E��}�t�M�H�E���H����H�E�ǀ`�H�E�ǀ8�H�E苀`���u_H�E�H����E��}�t�M�H�E���H����H�E�H����H�ƿ���u�H�E�ǀ`�H�E苀`���uNH�E�H����H�E�H����E��}�t�M�H�E���H����3H�E�ǀ`�H�E苀`���uTH�E�ƀx�H�E�Hx�H���H���H�E�Hx�H����H���H�E�ǀ`�H�E苀`���uYH�E�H��x�H�E�A���H����E��}�t�M�H�E���H����hH�E�ǀ`�H�E苀`����BH�E�H����H�E�H��p�H�E�H��h�H�E�VjA�A��H���H���E��}�t�E���H�E�H��h�H��H�����H�E�H����H�E�H����H��u.H�E�H����H�U�H��h�H�JH��H�ο���tFH�E�H�@H�M�H�U�H��h�H��H���H�E�Hǀh�H�E���H����HH�E�H�@H�M�H�U�H��h�H��H���H�E�Hǀh�H�E�ǀ`���������UH��H�� H�}�u��H�E�U�H�E��H������E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���UH��H��H�}��u�U�H�E���H�����UH��H��@H�}��E�H�Eȋ�(���uH�E�ǀ(�H�Eȋ�(���uJ�H�E�H����E�}��u�E��d
H�E�H�H���H�E�H�}�u�H�E�ǀ(�H�Eȋ�(���uJ�H�E�H����E�}��u�E��
H�E�H�H���H�E�H�}�u�H�E�ǀ(�H�Eȋ@h�����9H�E�H���H��t:H�E�H���H�@8H��t&H�E�H���H�@8H�U�H���H�U�H��H���H�E�H��pH��t:H�E�H��pH�@0H��t&H�E�H��pH�@0H�U�H��xH�U�H��H���H�E�H���H��t<H�E�H���H�@(H��t(H�E�H���H�@(H�U�H� H�MȾH���H�E�H���H��t:H�E�H���H�@ H��t&H�E�H���H�@ H�U�H���H�U�H��H���H�E�H��H��t:H�E�H��H�@0H��t&H�E�H��H�@0H�U�H��H�U�H��H���H�E�H��(H��t<H�E�H��(H�@(H��t(H�E�H��(H�@(H�U�H��0H�MȾH���H�E�H��H��t:H�E�H��H�@ H��t&H�E�H��H�@ H�U�H�� H�U�H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��XH��tH�E�H�@H�M�H�U�H��XH��H���H�E�H�@XH��tH�E�H�@H�M�H�U�H�RXH��H���H�E�H�@`H��tH�E�H�@H�M�H�U�H�R`H��H���H�E�H��`H��tH�E�H�@H�M�H�U�H��`H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��8H��tH�E�H�@H�M�H�U�H��8H��H���H�E�H��@H��tH�E�H�@H�M�H�U�H��@H��H���H�E�H��HH��tH�E�H�@H�M�H�U�H��HH��H���H�E�H��PH��tH�E�H�@H�M�H�U�H��PH��H���H�E�H��P�H��tH�E�H�@H�M�H�U�H��P�H��H���H�E�H��h�H��tH�E�H�@H�M�H�U�H��h�H��H���H�E�H��X�H��tH�E�H�@H�M�H�U�H��X�H��H���H�E�H��x�H��tH�E�H�@H�M�H�U�H��x�H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��H�H��tH�E�H�@H�M�H�U�H��H�H��H���H�E�H��X�H��tH�E�H�@H�M�H�U�H��X�H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H��@�H��tH�E�H�@H�M�H�U�H��@�H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H����H��tH�E�H�@H�M�H�U�H����H��H���H�E�H��X�H��tH�E�H�@H�M�H�U�H��X�H��H���H�E�H��HBH��teH�E�H�@H�M�H�U�H��PBH��H����D�E�H�E�H���H�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�M�H�U�H��H���H�E�H�H���H�E�H�}�u�H�Eȋ���tH�Eȋ�������E�H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H�@H�M�H�U�H��H��и��UH��H�� H�}��H�E�H�E�H�������E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���UH��H��@H�}؉u�H�U�H�M�H�E�H�E�H�E؋�,�����H�}�tH�E�H���H�E�H�}�tH�E�H���H�E�H�}�vH�Eغ����H�����H�U�H�E�H�H�P
H�E�H��@�H�E�H0�H�E�H�E�H�PH�U���U�H�E��H���H�U�H�M�H�E�H��H���H�E��H�E��H���H�E�ǀ,�H�E�H��@�H�E�H��0�H�}�H�M�H�E�I��H����E�}��u�E��H�E�ǀ,����UH��H��0H�}�u�H�U�H�Mп�H�E�H�M�H�U؋u�H�E�H���g����E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���UH��H�� H�}�u�H�E��}�	���E�H����H�E�H�@xH�E��H�E�H���H�E��H�E�H��pH�E��H�E�H��H�E��oH�E�H���H�E��^H�E�H��H�E��MH�E�H���H�E��<H�E�H��(H�E��+��O��HH�E�����H�����+H�}�uH�E����H�����H�E�H���UH��H�}�H�E�]�UH��H��0H�}�H�u�H�U؉M�H�E�H�E苀��ukH�}�tI�}�t8H�E�H�@H�U�H�ֿ��H��H�E�H�H�E�H�H��tH�E�H���H�E�H�H�}�t
H�E�����H�}���H�E�H��H��t
H�E�H����H�E�H�E�H���H�E��}�t_H�E�H�@H�U�H�M�H��H��H���H��H�E�H�H�E�H�H��t8H�E�H�H�U�H�M�H��H���H�E�H�H�E�H���H�E�H�U�H�H�}�tH�E���H�E؉H�E苀��UH��H�}�H�E���]�UH��H�}��u�U�}�t�}�t�H�E��U�Pl�H�E��U�Pp�������]�UH��H�}�u�H�E苀��E�H�E�U䉐��E�]�UH��H��H�}��u�U�H�E���H������UH��H�}�H�E����]�UH��H�}�H�u�H�E�H�U�H����]�UH��H�}�H�E�H���]�UH��SH��(H�}؉u�H�}�u
�����H�E�H�@`H�E�H�E�H�H���H�E��vH�E؋X0H�E�H�@H��H���9�uG�}�u%H�E�H�@�<_tH�E�H�@�<^u��8�}�uH�E�H�@�<^u��H�E�H���H�E�H�}�u��H��([]�UH��H�}�H�E��@8������]�UH��H��H�}�H�E�H��0H���H��������UH��H��pH�}��u�H�U�H�E��E�H��H�P�H��Hп�H��Hk�H)�H��H��H��H��H�E��E���E�H��H��H�E�H�H�@�E�H��H��H�E�H�����������	�����E�H��H��H�E�HЋU�H��H�U�Hʋ@��E�H��H��H�E�H�H�P�E�H��H�E�H�f�P�E�H��H�E�H�f�@�D�E�H��H��H�E�H�H�@H�@`�U�H��H�U�Hʋ���E�H��H�E�H�f�@�E�H��H�E�H�f�@H�}����E�H��H��H�E�H�H�@H�@`H�E���E�H��H��H�E�H�H�@H�@�U�H��H�U�Hʋ���E�H��H�E�H�f�@�E�H��H�E�H�f�@H�}�uI�E�H��H��H�E�H�H�@H�@H�E��*H�}�tH�E�����H�������������E��E�;E���H�E�H�E��E��E����E�H��H��H�E�H�H�P�E�H��H��H�E�H�H�@H9����E�H��H��H�E�H������t�����q�E�H��H��H�E�H�H�@��H��tw�E�H��H��H�E�H�H�@��H��uZ�E�H��H��H�E�H�H�@�H����������U�H��H��H�U�H�H�JHcЋE�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@��H��t�E�H��H��H�E�H�H�@��H��ub�E�H��H��H�E�H�H�@�H�����t����E�H��H��H�E�H�H�HHc֋E�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@��H��tz�E�H��H��H�E�H�H�@��H��u]�E�H��H��H�E�H�H�@H���M�����t����E�H��H��H�E�H�H�HHc֋E�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@�@T��u�E�H��H��H�E�H�H�@�@@��t-�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʀH�P�E�H��H��H�E�H�H�@H�@`�������E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P���E�H��H��H�E�H�H�@��H��tr�E�H��H��H�E�H�H�@��H��uU�E�H��H��H�E�H�H�@H�������������U�H��H��H�U�H�H�JHcЋE�H��H��H�E�H�H	�H�P�E�H��H��H�E�H�H�@H�@�����u5�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P�������E�H��H��H�E�H�H�@H��t�E��E��E�;E������}�tH�E�H�E��H���H�E��‹M�H�E�H��H����E�H�E��H���H�U�H�E�H)�H��Hi����HE�H�U�H�E�H��H)�H��S㥛� H��H��H��H��H��?H��H)�H��HE��}���E���E�H��H��H�E�H�����������#�����E�H��H�E�H��@�U�H��H��H�U�H�H��H�B�E�H��H�E�H�f�@�E�H��H��H�E�H�H�@H���^�E��U�E�H��H�E�H��@�����t&��E�H��H��H�E�H�H�@H�@`H�����ۋE�H��H�E�H��@�����t-�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P�E�H��H�E�H�f�@��E�H��H�E�H��@�����t&��E�H��H��H�E�H�H�@H�@H�����ۋE�H��H�E�H��@�����t-�E�H��H��H�E�H�H�P�E�H��H��H�E�HȀʐH�P�E�H��H�E�H�f�@���E��E�;E������H�}�~
�}��*����E���UH��H�}�H�E���]�UH��H�}�H�}�u��"H�E�H���H��u��H�E�H���]�Error allocating space for remote bannerSSH-2.0-libssh2_1.5.0
Unable to allocate memory for local bannerBad socket providedFailed changing socket's blocking state to non-blockingFailed sending bannerFailed getting bannerSSH-Unable to exchange encryption keysssh-userauthUnable to ask for ssh-userauth serviceInvalid response received from servertoo long descriptionInvalid parameter specified for method_typeNo method negotiatedInvalid descriptor passed to libssh2_poll()@�@GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�A�C
Y<A�C
Z\)A�C
d|�A�C
���A�C
��lA�C
g�>A�C
y�[A�C
V%A�C
`<�A�C
�\A�C
|�A�C
��A�C
�fA�C
a�"A�C
]��
A�C
�
^A�C
Y<]A�C
X\tA�C
o|A�C
�A�C
I�hA�C
c�A�C
O�BA�C
}*A�C
e<#A�C
^\A�C
O|A�C
Y�A�C
P ��A�C
E���A�C
T'A�C
b W	A�C
R	@A�C
O `:A�C
u�!6=)Nf�]�i�lz
>|�
�5�
�V]�i �� '	��F�����K[�%$��<CQ_w������*��h��1IZ�ft"������^&�tD'\;uIh����B�*�1#�T�h�3��M`� W	mz�*:session.clibssh2_default_alloclibssh2_default_freelibssh2_default_reallocbanner_receivebanner_sendsession_nonblockget_socket_nonblockingsession_disconnectpoll_channel_writepoll_listener_queuedmalloc_libssh2_errormemcpystrlenfcntllibssh2_session_banner_setlibssh2_banner_setlibssh2_session_init_exmemset_libssh2_send_libssh2_recv_libssh2_init_if_neededlibssh2_session_callback_set_libssh2_wait_socketlibssh2_keepalive_sendlibssh2_session_block_directionsdifftimestrncmp_libssh2_kex_exchange_libssh2_htonu32_libssh2_transport_send_libssh2_packet_require_libssh2_ntohu32libssh2_session_handshakelibssh2_session_startup_libssh2_channel_free_libssh2_list_first_libssh2_channel_forward_cancel_libssh2_list_removelibssh2_session_free_libssh2_store_u32_libssh2_store_strlibssh2_session_disconnect_exlibssh2_session_methodslibssh2_session_abstractlibssh2_session_last_errorlibssh2_session_last_errnolibssh2_session_flag_libssh2_session_set_blockinglibssh2_session_get_blockinglibssh2_session_set_timeoutlibssh2_session_get_timeoutlibssh2_poll_channel_read_libssh2_list_nextlibssh2_pollgettimeofday_libssh2_transport_readlibssh2_session_banner_get��������6��������`���������
������������������)K����������������������������������-��������j��������
H��������7��������������������=W��������� �!�"���������x	%��������0	&��������|	'���������	(���������	�o
)���������

��
��������?
�I���������
����������
���������
,*��������P+��������e
8o���������,���������
[���������
-��������0

h:
���������
.���������
/��������
[*��������P
�]���������'��������$��������/0��������}2���������3���������4���������3��������.5��������t3��������
'��������D$���������������������������
����������&7��������=8��������Q7���������-���������'��������$��������O�
��
��
���������
�'����������

���������p��������M?���������3���������/��������N E��������� 3���������"
h�"���������#D���������$D��������O'G��������g')��������{'G���������(H��������l)H��������x���2�P�n����U f(z0�8�@�H�P�X�`� @`=�f����
K �@�`�����
���5 �@V`��'�;�I��� @1`T�h�����i � $� D*d*.symtab.strtab.shstrtab.rela.text.data.bss.rela.rodata.comment.note.GNU-stack.rela.eh_frame @N*@�=�	&�*,�*6�*�1@G�>00--G]-\`-�W@�HH	�1�	�8��Kfsftp.o/         1670404304  0     0     100644  48256     `
ELF>@�@@
UH��H�}�H�E������PH�E������H�E����H�E����]�UH��H�}�H�u�H�E�H�� �E�H�E�H�H�E�E�����H�E��E�����H�E�H����E�����H�E�H���H�E�H���U��H�E�H��H��H�E�H���H�E�H��H��H�E�H���H�E�H��H��H�E�H���H�E�H��H�U�H�E�H�H�PH�E�H��]�UH��H�� H�}�u�H�E�H�� H���H�E��H�E��@9E�tH�E�H���H�E�H�}�u���H�E���UH��H�� H�}�u�H�E�H�H�@`H�E��U�H�E��H�����H�E�H�}�t$H�E�H���H�E�H�@H�M�H�U�H��H��А��UH��H�� H�}�u�H�E�H�H�@`H�E�H�E�H�H�@`H�@H�U�H�H�R`H�ֿ ��H�E�H�}�uH�E�������H����&H�E�U�PH�E�H�U�H�� H��H������UH��H��@H�}�H�u�H�U�H�E�H�H�@`H�E�H�E������i��e}/����w�%-���vH�E�����H������H�E�H��H����E�H�E��<etH�E��<guF�U�H�E؉�H��� ���H��t0H�E�H�@H�M�H�U�H��H��ЋU�H�E؉�H���C�����wH�E�H�@H�U�H�ֿ0��H�E�H�}�uH�E�������H����>H�E�H�U�H�P H�E�H�U�H�P(H�E�U�PH�E�H�U�H��H��H������UH��H��@H�}�H�E�H�H�E�H�E�H�@`H�E�H�E�H�Eȋ����t��t!�9H�E�ǀ�H�E�H�@PH�E��qH�E�ǀ�H�E�H�@PH�E�H�}���H�E�H�@H�H��H)�H�E�H�@HH�P@H�E�H�H�PH�E�H���H�E�H�}��u	H�E��H�}�yH�E�H�E���H����H�E�H�PHH�E�H�H�E�H�PHH�E�H�@HH��t
�����cH�E�H��DH�����H�EȉPXH�Eȋ@X=�8vH�E����H����!H�E�H�@H�U�H�MȋIX��H��H���H�E�H�}�uH�E������H�����H�E�H�@HH�E�H�@`H�E�H�U�H�PPH�E��H���H�E�H�Eȋ@X��H9E��H�Eȋ@X�4H�E��H���H�H�E�H�}��u���H�Eȉ��H�}����H�E��6H�Eȋ@X��H�E�H�@`H��H)�H�E�H�P`H�E�H�H�E�H���H�E�H�}��uH�E�ǀ�H�E���H�}�yBH�E�H�@H�M�H�U�H��H���H�E�H�@PH�E�H�E���H����H�E�H�P`H�E�H�H�E�H�P`H�Eȋ@X��H�E�H�@`H9��-���H�E�H�@PH�E�����E�H�Eȋ@X��H�M�H�E�H��H���T���H�H�E�H�}�tH�E�H�@H�M�H�U�H��H���H�E���E���UH��H��PH�}�H�E�H�@H�E�H�E�H�H�@`H�E�H�E�HxH���H�E���H�E�H���H�E�H�E��P0H�u�H�M�H�E�I��eH����E�}�t&H�E��P0H�u�H�M�H�E�I��gH����E�}�uH�E�H�@H�M�H�U�H��H����"H�E�H�@ H��tH�E��P0H�E��H�����H�E�H���H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}��%������UH��H��0H�}��U�H�M�L�EЈE�H�E�H�H�@`H�E�H�E�H��H���H�E�H�}���������H�E�H�@ �8E�u[�}�tH�E��@9E�uIH�E�H�P H�E�H�H�E�H�P(H�E�H�H�E�H���H�E�H�@H�M�H�U�H��H��и� H�E�H���H�E�H�}��z����������UH��H��0H�}��U�H�M�L�EЈE�H�E�H�H�@`H�E��u�H�}�H�M؋U�H�E�I��H��������uJ��VH�E�H�������E�}�y�E��<�u�H�}�H�M؋U�H�E�I��H�������u��H�E�����t�����UH��H��@H�}�u�H�U؉M�L�E�L�M�H�E�H�@hH������H��H�E�H�Ph���E��K�E�Hc�H�E�H����H�}�H�MЋU�H�E�I��H������uH�E�H�@h���E��E�;E�|�H�E�H�������E��}�y�}��tH�E�H�@h�E���}�O��H��H�E�H�@hH)�H�к<H)�H��H�E�H�}�H�E�H�@h������5�}��u�E��*H�E�H�H�@`�����
���H�E�H�@h����UH��H�� H�}�H�u�H�E�H�E��E�H�}�uH�E�H������H�E�H�#E���H�E��H���H�E�H���H��tH�E�H�PH�E�H��H����H�E�H���H��t0H�E�H�@��H�E��H���H�E�H�@��H�E��H���H�E�H���H��tH�E�H�@ ��H�E��H���H�E�H���H��t0H�E�H�@(��H�E��H���H�E�H�@0��H�E��H���H�E�H+E���UH��H�� H�}�H�u�H�E�H�E�H�E�8�H���H�E�H�����H�E�H�H�E�H�E�H���H��tH�E�H���H��H�E�H�PH�E�H�E�H���H��t6H�E�H�����H�E�H�PH�E�H�E�H�����H�E�H�PH�E�H�E�H���H��tH�E�H�����H�E�H�P H�E�H�E�H���H��t6H�E�H�����H�E�H�P(H�E�H�E�H�����H�E�H�P0H�E�H�E�H+E���UH��H��0H�}�H�u�H�U�H�M�H�E�H�H�E�H�E�H�@PH��tH�E�H�@H�M�H�U�H�RPH��H���H�E�H���H��tH�E�H�@H�M�H�U�H���H��H���H�E�H�@H�M�H�U�H��H��А��UH��H��PH�}�H�E���T���uFH�E�H��X�H��t������H�E�HǀX�H�E�ǀT�H�E�H��X�H�E�H�E���T�����H�E�H��jA�A��� ��H���H��H��H�E�H��`�H�E�H��`�H��uWH�E�H������uH�E������H����$H�E�����H���H�E�ǀT����H�E�ǀT�H�E���T�����H�E�H��`�A���	�H����E�}��u H�E������H�����S�}�tH�E�����H����H�E�ǀT�H�E���T����H�E�H��`��H���H�H�E�H�}��u H�E������H������H�E��`H���H��H�E�H��X�H�E�H��X�H�E�H�}�uH�E�������H����H�E�H��`�H�E�H�H�E��@H�E�Hh��H���H�E�ƀl�H�E�Hh�H���H���H�E�ǀt�H�E�ǀT�H�E���T�����H�E���t��	)‰�Hc�H�E�H��h�H�E���t�H�H�4H�E�H��`�H��H��H���H�E�H�}��u H�E������H�����yH�}�yH�E�������H�����H�E���t���H�E�Љ�H�E���t�H�E���t���	uH�E�ǀT�H�M�H�U�H�E�I��H�Ѻ�H������H�H�E�H�}��u
���H�}�tH�E�H�E����H����CH�E�H��w3H�E�����H���H�E�H�@H�M�H�U�H��H����H�E�H��H�E�H�E�H�����H�E�PH�E�H�E�@��vKH�E��@�>H�E�H�����H�E�H�E�H�E�HE�H�E�H�����H�E�H�E�H�E�HE�H�U�H�E�H�H9E�r�H�E�H�@H�M�H�U�H��H���H�E�H�H�U�H�PhH�E�H�H�@pH�E�ǀT�H�E�HǀX�H�E�Hǀ`�H�E�H��0H���H�E��y�H�E�H��`�H������t�H�E�Hǀ`�H�E�H��X�H��t.H�E�H�@H�M�H�U�H��X�H��H���H�E�HǀX�H�E�ǀT����UH��H��0H�}�H�}�u
��H�E؋@h����uH�Eغ����H�����d��H�E�H�E�H�����H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H�� H�}�H�E�H�H�@`H�E�H�E�H�@PH��t(H�E�H�@H�M�H�U�H�RPH��H���H�E�H�@PH�E�H�@xH��t(H�E�H�@H�M�H�U�H�RxH��H���H�E�H�@xH�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H��H��t.H�E�H�@H�M�H�U�H��H��H���H�E�HǀH�E�H��H��t.H�E�H�@H�M�H�U�H��H��H���H�E�HǀH�E�H�� H��t.H�E�H�@H�M�H�U�H�� H��H���H�E�Hǀ H�E�H��0H��t.H�E�H�@H�M�H�U�H��0H��H���H�E�Hǀ0H�E�H��@H��t.H�E�H�@H�M�H�U�H��@H��H���H�E�Hǀ@H�E�H��PH��t.H�E�H�@H�M�H�U�H��PH��H���H�E�HǀPH�E�H���H��t.H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H���'H�E�H�H����E�E���UH��H�� H�}�H�}�u�����^��H�E�H�E�H���z����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H��H��h���H��`���H��X�����T���L��H���D��P���H��h���H�H�E�H�E�H�@`H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���P��������E�H��h����@p�����}�t����������H��X���ЍP
H��h������H��h���Hǀ�H�E�H�@H�U�H��h��������H��H���H��H��h���H�PxH��h���H�@xH�E�H��h���H�@xH��u H�E������H�����"�}�t����@H�H���H�E�H��h�������P�H�E���H����}�t���H�E�H�PH�U��H��h����@�HH��h����JH��h������H��h������H�E���H���H��X���H��`���H�E�H��H����}�t5��T���H�E���H���H�E�H�U�H��H���]�H��H�E�H�H�E�H��h����@pH��h����@p���bH��h��������H��h���H���H��H)�H��h���H�PxH��h���H���H�H�E�H���H�E�H�}��u H�E�����H�����H�}�y_H�E؉�H�E���H���H�E�H�@H�M�H��h���H�RxH��H���H��h���H�@xH��h����@p��.H��h���H���H�E�H�H��h���H���H��h��������H��h���H���H9�u<H�E�H�@H�M�H��h���H�RxH��H���H��h���H�@xH��h����@pH��h����@p����H��h������H�u�H��x���H��h���I��I�ȉѺ�H���.�H�H�E�H�}��u H�E�����H�����4H��h����@pH�}�t#H�E؉�H�E���H�����H��x����<e�7�E�H�E�H��w;H�E����H���H�E�H�@H�M�H��x���H��H��и�H��x���H��H�����H��h����P@H��h����@@��u}H�E�H�@H�M�H��x���H��H���H��h������H�u�H��x���H��h���I��fH���H�H�H�E�H�}��uH��h����@p��H�}�u�E��}�t;H�E����H���H�E�H�@H�M�H��x���H��H��и�H�E�H��	w;H�E����H���H�E�H�@H�M�H��x���H��H��и�nH�E辈H���H�E�H�}�u;H�E������H���H�E�H�@H�M�H��x���H��H��и��}�����H�EЉ�(H��x���H��H�����H�E�H�� H�E�H�� H=vH�E�Hǀ H�E�H�� H�U�H��	H9�vH�E�H�P�H�E�H�� H�E�H�� H��x���H�r	H�U�H�J H��H���H�E�H�@H�M�H��x���H��H���H�E�H��h���H��0H��H���H�E�H��h���H�PH�E�Hǀ0H�E�Hǀ8H�E�����UH��H��PH�}�H�uЉU�H�M�L�E�D�M�H�}�u
����H�E�H�E�A�‹Ű}�H�M�H�u�H�E�A��I��D��H������H�E�H�E�H�H�@`�����tFH�}�u?H�E�H�H�@`H������u'H�E�H�H�@`H�U�H��H����E�}��w���H�E���UH��H��H��h���H��`���H��X���H��h���H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H��h���H0H�E�H�E؋���������d����H�E�H�@(H����H�E�H�@(H9�X���HF�X���H�E�H�E�H�PH�E�H�H H�E�H�@(H)�H��H�H�U�H��`���H��H���H�E�H�@(H+E�H��H�E�H�P(H�E�H�H�E�H�H�E�H�H�E�H�@(H��u(H�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�E���H�E��@0����H�E�H�PH�E�H�H)�H��H�E�H��X���H��H�E�H�}��vH�E��H�E�H;E�vH�E�H+E�H�E�H�E�H���H���H�E�H�E�H;E��
H�E�4�H�E�H���H���H�H�E�H�}��u&H�E�H�@(H��t��H���H�}��u%H�E��@0��t��I���H�}��H�E����H�}��HFE��E�H��h���H�� ���E�H�E�H�@H�UȋM�H��8H��H���H�E�H�}�uH�EȺ�����H���H��I�U�H�E�H�P�U�H�E�H�P(H�E�H�@ H�E�H��4H�E��E��P�H�E���H���H�E�H�PH�U��H�E؋@�HH�U؉J�E�H�E�U��P0�U�H�E���H���H��h���H�� H��h���H�H H�E�H��H���H�E�H�PH�E�H��H������H�E�H�P�E�H�H�E�H�P�U�H�E���H���H�E�H��h���H��xH��H����E�H)E�H�}�����H�E�ǀ�H��h���HxH���H�E��H�E�H�@(H����H�E�H�@(H��H�E�H�@ H�P0H�E�H�H�PH�EоH���H�E�H�}�yH�E�ǀ�H�E��H�E�H�@(H+E�H��H�E�H�P(H�E�H�P H�E�H�H�E�H�P H�E�H�@(H��uH�E�H���H�E�H�}��D�����H�E�ǀ�H��h���HxH���H�E���H�E�H�@(H��t��H�E�P0H��p���H��x���H�E�I��I�ȉѺ�H����H�H�E�H�}�yH�E�ǀ�H�E��H��x��������et��g���NH�E�H���H�E�H�@H�M�H�U�H��H���H��h���H����H��x���H��H����E�H�E�H�@H�M�H��x���H��H��Ѓ}�uH�E��@0��H�E؋U�P@H�EȺ���H���H���H��x���H��H����E�E�H��p���H��	H9�vH�EȺ���H���H���U�H�E�H�@H9�vH�EȺ���H���H��}�U�H�E�H�@H9�t$H�E�H�P�M�H�E�H�@H)�H��H�H�E�H�P�E�H9�X���s?�E�H+�X���H��H�E�H�P(H��X����E�H��x���H�E�H�PH��p���H�E�H�P �H�E�H�@ �U�H��x���H�H	H��`���H��H���H�E�H��E�H�H�E�H�H�E�H�@ H��uH�E�H�@H�M�H��x���H��H���H�E�H���H�E�H�E�H���H�E�H�@H�M�H�U�H��H���H�E��}�t�E��OH�E�H�E��H�EȺ���H���H��+H�}��������������UH��H��0H�}�H�u�H�U�H�}�u	H�����x��H�E�H�U�H�M�H�E�H��H�����H�E�H�}��uDH�E�H�@H�H�@`�����t+H�E�H�@H�H�@`H�U�H��H���H�H�E�H�}�t�H�E���UH��H���H��X���H��P���H��H���H��@���L��8���L��0���H��X���H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H��X���H�� ��
�E�H�E�����H��X�����0����H��X���H��@H�E�H�E�H�����H�E�H�E�H��H�E�H�E�H�E�H�E�H;�H���r
H�E�����3H�M�H�U�H��P���H��H���H��P���H�E�H��H�U�H�E�H�H�E�H�E�H�����H�E�H�E�H��H�E�H��@���tWH��8���vMH�E�H�E�H�E�H;�8���r
H�E�����H�M�H�U�H��@���H��H���H��@���H�E�H��H�U�H�E�H�H�E�H��0���tH��0����8�H���H�U�H��0���u	H��`����H��0���H��H����H�U�H�H�H�E�H�U�H��X���H��@H��X�����0�P�H��X�����0H��X�����0��u"H�E�H�@H�M�H��X���H��8H��H���H�E��H�E�H�@H�M�U�H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E������H���H��5�E܍P�H�E���H���H�E�H�PH�U��H�E�@�HH�U�JH�U�H�E�H�E���H���H��X���H�� H��X���H�H H�E�H��H���H�E�ǀ�H�E������M�H�E�H���H�E�H���H�E�H�}��u	H�E��c�E�H9E�tYH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E������H���H��H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E�H�u�H�M�H�E�I��I�ȉѺ�H�����H�H�E�H�}��u	H�E��H�}�t.H�E�ǀ�H�E���H�E���H���H��JH�E��<e��H�E�H��H�����H�E�H�E�H�@H�M�H�U�H��H���H�}�uH�E�ǀ����H�E���H�E�P@H�E�ǀ�H�E����H���H��H�E�ǀ�H�E�H��H����E��}�uH�E�H�@H�M�H�U�H��H��и�pH��X����U���0H�U�H��X���H��8H�E�H�P	H��X���H��@L��0���H��8���H��@���H��H���H��P���H��X���M��I��H�������UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�}�u
�������H�E�L�E�H�}�H�M�H�U�H�u�H�E�M��I��H������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H����E��}�t��E���UH��H��H��x���H��p���H��h���H��x���H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H��h���H�E�H�E苀�����H��x���H��8H��x���H��0H)�H��x���H��@H�H�E�H��h���H;E�rH�E�H�p���H�E�H)�h����HDžh���H�E�ǀ���0uH��h���0uHF�h����E�H��x���H�� �‹E�Ѓ��E�H�E�H�@H�U؋M�H��8H��H���H�E�H�}�uH�Eغ�����H���H��7�U�H�E�H�PH�E�H�@ �U�H�E�H�P(H�E�H��4H�E��E��P�H�E���H���H�E�H�PH�U��H�E�@�HH�U�J�E�H�E��U��P0�U�H�E���H���H��x���H�� H��x���H�H H�E�H��H���H��x���H��8H�E�H��H������H��x���H��8�E�H�H��x���H��8�U�H��p���H�E�H��H���H�E�H��x���H��xH��H����E�H�p����E�H)�h���H��h����H���H��x���HxH���H�E��H�E�H�@(H����H�E�H�@(H��H�E�H�@ H�P0H�E�H�H�PH�E�H���H�E�H�}�y	H�E��H�E�H�@(H+E�H��H�E�H�P(H�E�H�P H�E�H�H�E�H�P H�E�H�@(H��uH�E�H���H�E�H�}��R�����H�E�ǀ�H��x���HxH���H�E��H�E�H�@(H����H�}���H�E��P0H�u�H�M�H�E�I��eH�����H�H�E�H�}�yH�}��uH�E�ǀ�H�E��H�E�H��H����E�H�E�H�@H�M�H�U�H��H���H�E�U��P@�}�utH�E�H�@HE�H��x���H��0H�E�H�@H�H��x���H��0H�E�H���H�E�H�E�H���H�E�H�@H�M�H�U�H��H���H�E�H�E��H��x���H�����H��x���H��0H��x���H��@H)�H��x���H��0H��x���H��0H��x���H��8H��x���Hǀ@H�Eغ���H���H��`H�}��X��������H��x���H��@HE�H�}�t0H�E�H9E�HFE�H�E�H�E�H�U�H)�H��x���H��@H�E�����UH��H��0H�}�H�u�H�U�H�}�u	H�����x��H�E�H�U�H�M�H�E�H��H���"���H�E�H�}��uDH�E�H�@H�H�@`�����t+H�E�H�@H�H�@`H�U�H��H���H�H�E�H�}�t�H�E���UH��H��`H�}�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� ��"�E�H�E�����H�E�H�@H�M�U�H��H���H�E�H�E�H�E�H�}�uH�E������H����C�E܍P�H�E���H���H�E�H�PH�U���H�E�@�HH�U�JH�U�H�E�H�E���H���H�E���H���H�E�H�� H�E�H�H H�E�H��H���H�E�ǀ��H�E�H���H�E�H�E������M�H�U�H�E�H���H�E�H�}��tH�}�x"�E�H9E�}H�E�H�U�H��������7H�E�H�@H�M�H�U�H��H���H�E�Hǀ�H�}�y)H�E�ǀ�H�E������H�����H�E�ǀ�H�E�H�u�H�M�H�E�I��eH���j��H�H�E�H�}��u	H�E��H�}�t)H�E�ǀ�H�EЉ�H�E���H����fH�E�ǀ�H�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�t"H�E�ỦP@H�E����H�������UH��H�� H�}�H�}�u�����f��H�E�H�E�H�����E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H����E��}�t��E���UH��SH��xH�}�H�u��U�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� �Ã}�tH�E�H�H��������؃�
�E�H�E苀����H�E�H�@H�M؋U�H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�Eغ�����H������EԍP�H�E���H����}�t�
��H�E�H�PH�U��H�E�@�HH�U�JH�U艂�H�E苐�H�E���H���H�E�H�� H�E�H�H H�E�H��H����}�t!H�E�H�U�H��H�����H��H�E�H�H�E�H�E�ǀ�H�E苀������M�H�E�H���H�E�H���H�E�H�}��u	H�E����E�H9E�tdH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��}�t���H�Eؾ����H����\H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E苐�H�u�H�M�H�E�I��I�ȉѺ�H���0��H�H�E�H�}��u	H�E���H�}�t,H�E�ǀ�H�Eȉ�H�Eغ��H����H�E�ǀ�H�E��<euZH�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��VH�E�UĉP@H�Eغ���H����4H�E�H�PH�E�H��H������H�E�H�@H�M�H�U�H��H��иH��x[]�UH��H��0H�}�H�u�U�H�}�tH�}�u�����p��H�E�U�H�M�H�E�H��H�������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H����E��}�t��E���UH��H��H�}�H�u�H�}���H�E�H��0H9E�uH�E�H��8H9E���H�E�H�U�H��8H�E�H��8H�E�H��0H�E�H�����H�E�H��XH��tlH�E�H�@H�H�@`H�@H�U�H�RH�H�R`H��H�U�H��HH��H���H�E�HǀPH�E�H��PH�E�H��XH�E�HǀHH�E�ƀ`������UH��H��H�}�H�u�H�U�H�E�H��H������UH��H�}�H�}�u��H�E�H��0]�UH��H�}�H�}�u��H�E�H��0]�UH��H��@H�}�H�E�H�H�E�H�E�H�@`H�E�H�E�H��H���H�E�H�E�H�� H���H�E��XH�E�H���H�E�H�E�H���H�E�H�@H�M�H�U�H�R H��H���H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}�u��<H�E�H���H�E�H�E�H���H�E�H�@H�M�H�U�H��H���H�E�H�E�H�}�u����UH��H��PH�}�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� ��
�E�H�E��E�H�E���h����H�E�H�@H�M�U�H��H���H��H�E�H��pH�E�H��pH�E�H�E�H��pH��u,H�E�ǀhH�E������H����E���E܍P�H�Eȉ�H���H�E�H�PH�U��H�E�@�HH�U�JH�U���lH�E���lH�Eȉ�H���H�E�H�� H�E�H�H H�E�H��H���H�E�ǀhH�E���h�����M�H�E�H��pH�E�H����E��}��u�E��(�U܋E�H�H9�t)H�E�ǀhH�E������H����E��H�E�ǀhH�E�H�@H�M�H�U�H��pH��H���H�E�HǀpH�E���h��uaH�E���lH�u�H�M�H�E�I��eH���Q���E��}��u�E��p�}�t�M�H�E���H���H�E�ǀhH�E�H��u�}�u{��Z	���H�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�t1�U�H�E�P@H�E�ǀhH�E����H����E�H�E�H���H�E���(��u/H�E���0��t!H�E�H�@H�M�H�U�H��8H��H����/H�E�H��HH��tH�E�H�@H�M�H�U�H��HH��H���H�E�H�����H�E�ǀ�H�E�ǀhH�E�H�@H�M�H�U�H��H��ЋE���UH��H�� H�}�H�}�u�����f��H�E�H�E�H�������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H����E��}�t��E���UH��H��`H�}�H�u�H�U�H�E�H�H�E�H�E�H�@`H�E�H�E���
�E�H�E��������H�E�H�@H�M�U�H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uH�E������H����'�E�P�H�EЉ�H���H�E�H�PH�U��
H�E��@�HH�U��JH�U����H�E����H�EЉ�H���H�U�H�M�H�E�H��H���H�E�ǀ�H�E���������M�H�E�H���H�E��H����E�}��u�E��i�U�E�H�H9�tWH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E������H����H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E����H�u�H�M�H�E�I��eH���"���E�}��u�E���}�t&H�E�ǀ��M�H�E���H����fH�E�ǀ�H�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�u�� �U�H�E��P@H�E����H�����UH��H��0H�}�H�u�U�H�}�u�����h��H�E�U�H�M�H�E�H��H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H��pH�}�H�u��U�H�M�D�E�L�M�H�E�H�H�E�H�E�H�@`H�E�U��E��H�E��@��v���Ѓ��E�H�E��@��wH�E����H����uH�E�������EH�E�H�@H�M�U�H��H���H��H�E�H���H�E�H���H�E�H���H�E�H���H��uH�E������H�����E�P�H�E�H���H���H�E�H���H�HH�U�H����H�E��@�HH�U��JH�U����H�E����H�U�H�����H����U�H�E�H���H�E�H��H����U�H�E�H���H�E�H��H���H�E��@��vH�E���H�E�H���H���H�E�ǀ�H�E��������H�E�H���H�E�H���H)�H��H��H�E�H���H�E�H���H�E�H�}��u	H�E���E�H9E�tWH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E������H����\H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ�H�E����H�u�H�M�H�E�I��eH����H�H�E�H�}��u	H�E���H�}�t,H�E�ǀ�H�E؉�H�E���H����H�E�ǀ�H�E�H��H����E�H�E�H�@H�M�H�U�H��H��ЋU�H�E��P@�}�t0�}�t�}�u?�E��PH�E����H����E��5H�E����H����E��H�E����H����E���E���UH��H��@H�}�H�u�U�H�M�D�E�L�M�H�}�u�����v��H�E�L�Eȋ}�H�MЋU�H�u�H�E�M��A��H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H��`H�}�H�u�H�E�H�@H�E�H�E�H�H�E�H�E�H�@`H�E�H�E�H�� ��%�E�H�E�����H�E�H�@H�M�U�H��H���H�E�H�E�H�E�H�}�uH�E������H�����E܍P�H�E���H���H�E�H�PH�U���H�E�@�HH�U�JH�U�H�E�H�E���H���H�E���H���H�E�H�� H�E�H�H H�E�H��H���H�E�ǀ��H�E�H��H�E�H�E������M�H�U�H�E�H���H�E�H�}��tH�}�x"�E�H9E�}H�E�H�U�H�������	H�E�H�@H�M�H�U�H��H���H�E�HǀH�}�y)H�E�ǀ�H�E������H����H�E�ǀ�H�E�H�u�H�M�H�E�I��I�ȉѺ�H�����H�H�E�H�}��u	H�E��^H�}�t,H�E�ǀ�H�EЉ�H�E���H����+H�E��<eu^H�E�H��H����E�H�E�ǀ�H�E�H�@H�M�H�U�H��H��ЋU�H�E�P@H�E����H�����H�E�H��\wAH�E�H�@H�M�H�U�H��H���H�E�ǀ�H�E����H����wH�E�ǀ�H�E�H��H���H��H�E�H�H�E�H��
H���H��H�E�H�PH�E�H��H���H��H�E�H�PH�E�H��H���H��H�E�H�PH�E�H��%H���H��H�E�H�P H�E�H��-H���H��H�E�H�P(H�E�H��5H���H��H�E�H�P0H�E�H��=H���H��H�E�H�P8H�E�H��EH���H��H�E�H�P@H�E�H��MH����E�H�E�H��UH���H��H�E�H�PP�E�H���H��H�E�H�PHH�E�H�@H�Uȃ�H	�H�E�H�PHH�E�H�@H�M�H�U�H��H��и��UH��H�� H�}�H�u�H�}�tH�}�u�����m��H�E�H�U�H�E�H��H�������E��}��u@H�E�H�@H�H�@`�����t'H�E�H�@H�H�@`H�U�H��H����E��}�t��E���UH��H��pH�}�H�u��U�H�M�H�E�H�H�E�H�E�H�@`H�E�E���$�E�H�E�������H�E�H�@H�M�U�H��H���H�E�H�E�H�E�H�}�uH�E������H����	�E�P�H�E���H���H�E�H�PH�U���H�E��@�HH�U��JH�U���H�E���H�E���H���H�E���H����U�H�M�H�E�H��H���H�E�ǀ�H�E�H��H�E�H�E��������M�H�U�H�E�H���H�E�H�}��tH�}�x"�E�H9E�}H�E�H�U�H�������	H�E�H�@H�M�H�U�H��H���H�E�HǀH�}�y)H�E�ǀH�E������H����H�E�ǀH�E���H�u�H�M�H�E�I��I�ȉѺ�H��蔵��H�H�E�H�}��u	H�E��^H�}�t,H�E�ǀH�E؉�H�E���H����+H�E��<eu^H�E�H��H����E�H�E�ǀH�E�H�@H�M�H�U�H��H��ЋU�H�E��P@H�E����H�����H�E�H��\wAH�E�H�@H�M�H�U�H��H���H�E�ǀH�E����H����wH�E�ǀH�E�H��H���H��H�E�H�H�E�H��
H���H��H�E�H�PH�E�H��H���H��H�E�H�PH�E�H��H���H��H�E�H�PH�E�H��%H���H��H�E�H�P H�E�H��-H���H��H�E�H�P(H�E�H��5H���H��H�E�H�P0H�E�H��=H���H��H�E�H�P8H�E�H��EH���H��H�E�H�P@H�E�H��MH����E�H�E�H��UH���H��H�E�H�PP�E�H���H��H�E�H�PHH�E�H�@H�UЃ�H	�H�E�H�PHH�E�H�@H�M�H�U�H��H��и��UH��H��0H�}�H�u�H�U�H�M�H�}�tH�}�u�����q��H�E�H�E؉�H�U�H�u�H�E�H�щ�H���
����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H��H��x���H��p�����l���H��`���H��x���H�H�E�H�E�H�@`H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���<����‹�l���Ѓ�
��H�E�H��x��������H�E�H�@H�M�H�U�H��H���H�E�H�E�H�E�H�}�uH�E������H����H��`�����@H�E�H�E�P�H�E���H���H�E�H�PH�U��H��x����@�HH��x����JH��x�����(H��x�����(H�E���H�����l���H��p���H�E�H��H���H�E�H�U�H��H���@���H��H�E�H�H�E�H��x���ǀ�H��x���H�� H�E�H��x���������H�M�H�U�H�E�H����E܃}��uH��x���H�U�H�� �E��b�E�H�H9E�tDH�E�H�@H�M�H�U�H��H���H��x���ǀH�E������H����H�E�H�@H�M�H�U�H��H���H��x���ǀH��x���Hǀ H��x�����(H�u�H�M�H��x���I��eH�������E܃}��u�E���}�t)H��x���ǀ�M�H�E���H����lH��x���ǀH�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��#�U�H��x����P@H�E����H�����UH��H��0H�}�H�u�U�H�M�H�}�u�����i��H�E�H�MЋU�H�u�H�E�H���=����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H��`H�}�H�u��U�H�E�H�H�E�H�E�H�@`H�E�E���
��H�E�H�E���,����H�E�H�@H�M�H�U�H��H���H��H�E�H��0H�E�H��0H�E�H�E�H��0H��uH�E������H����&H�E�P�H�EЉ�H���H�E�H�PH�U��H�E��@�HH�U��JH�U���8H�E���8H�EЉ�H����U�H�M�H�E�H��H���H�E�ǀ,H�E���,����H�M�H�E�H��0H�E��H����E�}��u�E��g�E�H�H9E�tWH�E�H�@H�M�H�U�H��0H��H���H�E�Hǀ0H�E�ǀ,H�E������H����H�E�H�@H�M�H�U�H��0H��H���H�E�Hǀ0H�E�ǀ,H�E���8H�u�H�M�H�E�I��eH��螫���E�}��u�E���}�t&H�E�ǀ,�M�H�E���H����fH�E�ǀ,H�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�u�� �U�H�E��P@H�E����H�����UH��H��0H�}�H�u�U�H�}�u�����h��H�E�U�H�M�H�E�H��H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H��`H�}�H�u��U��M�L�E�H�E�H�H�E�H�E�H�@`H�E�}�uH�E�H�H�����������E�Ѓ�
��H�E�H�E���<���0H�E�H�@H�M�H�U�H��H���H��H�E�H��@H�E�H��@H�E�H�E�H��@H��uH�E������H�����H�E�P�H�EЉ�H����}�t�}�u"H�E�H�PH�U��	� H�E�H�PH�U���H�E�H�PH�U��H�E��@�HH�U��JH�U���HH�E���HH�EЉ�H����U�H�M�H�E�H��H����}�u!H�E�H�U�H��H�����H��H�E�H�H�E�H�E�ǀ<H�E���<����H�M�H�E�H��@H�E��H����E�}��u�E����E�H�H9E�tWH�E�H�@H�M�H�U�H��@H��H���H�E�Hǀ@H�E�ǀ<H�E������H����iH�E�H�@H�M�H�U�H��@H��H���H�E�Hǀ@H�E�ǀ<H�E���HH�u�H�M�H�E�I��I�ȉѺ�H���i����E�}��u�E����}�t)H�E�ǀ<�M�H�E���H����H�E�ǀ<H�E��<euZH�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�u��l�U�H�E��P@H�E����H����JH�E��8�H���H�E�H�PH�E�H��H������H�E�H�@H�M�H�U�H��H��и��UH��H��0H�}�H�u�U܉M�L�E�H�}�u�����o��H�E�H�}ЋM؋U�H�u�H�E�I��H������E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H�ĀH�}�H�u��U�H�M�D�E�D�M�H�E�H�H�E�H�E�H�@`H�E�}�u�E��P���E�Ѓ�
��H�E�H�E��@��w!�}�tH�E����H����H�E���L���%H�E�H�@H�M�H�U�H��H���H��H�E�H��PH�E�H��PH�E�H�E�H��PH��uH�E������H����IH�E�P�H�E���H����}�t�}�u"H�E�H�PH�U��� H�E�H�PH�U���H�E�H�PH�U��H�E��@�HH�U��JH�U���XH�E���XH�E���H����U�H�M�H�E�H��H����}�u�U�H�M�H�E�H��H���H�E�ǀLH�E���L����H�M�H�E�H��PH�E�H���H�E�H�}��u	H�E��=H�E�H;E�tWH�E�H�@H�M�H�U�H��PH��H���H�E�HǀPH�E�ǀLH�E������H�����H�E�H�@H�M�H�U�H��PH��H���H�E�HǀPH�E�ǀLH�E���XH�u�H�M�H�E�I��I�ȉѺ�H�������E��}��u�E��_�}�t)H�E�ǀL�M�H�E���H����0H�E�ǀLH�E��<eu`H�E�H��H����E�H�E�H�@H�M�H�U�H��H��Ѓ}�u
����U�H�E��P@H�E����H����H�E�H��H�����u0H�E�H�@H�M�H�U�H��H���H�E����H����sH�E�H��	H�����H�EȋE�H9E�s2H�E�H�H
H�U�H�E�H��H���H�U�H�E�H��H�EȉE���E����H�E�H�@H�M�H�U�H��H��ЋE���UH��H��@H�}�H�u�U�H�M�D�E�D�M�H�}�u�����v��H�E�D�E̋}�H�MЋU�H�u�H�E�E��A��H���`����E��}��u8H�E�H�H�@`�����t#H�E�H�H�@`H�U�H��H����E��}�t��E���UH��H�}�H�}�u��	H�E��@@��]�UH��H�}�H�}�u��H�E�H�]�malloc fail for zombie request  IDOut of sync with the worldUnable to allocate datablock for SFTP packetchannel readSFTP packet too largeUnable to allocate SFTP packetError waiting for SFTP packetsftp.csession->sftpInit_sftp == NULLsessionWould block starting up channelUnable to startup channelsftpsubsystemWould block to request SFTP subsystemUnable to request SFTP subsystemWould block requesting handle extended dataUnable to allocate a new SFTP structureWould block sending SSH_FXP_INITUnable to send SSH_FXP_INITTimeout waiting for response from SFTP subsystemInvalid SSH_FXP_VERSION responsesession not authenticated yetUnable to allocate memory for FXP_OPEN or FXP_OPENDIR packetWould block sending FXP_OPEN or FXP_OPENDIR commandUnable to send FXP_OPEN*Would block waiting for status messageTimeout waiting for status messageToo small FXP_STATUSFailed opening remote fileToo small FXP_HANDLEUnable to allocate new SFTP handle structurerc != LIBSSH2_ERROR_EAGAIN || !filep->data_leftrc != LIBSSH2_ERROR_EAGAIN || !filep->eofmalloc fail for FXP_WRITESFTP READ errorSFTP Protocol badnessFXP_READ response too bigSFTP Protocol badness: unrecognised read request response!"State machine error; unrecognised read state"Unable to allocate memory for FXP_READDIR packet_libssh2_channel_write() failedSFTP Protocol ErrorFXP write failedUnable to allocate memory for FXP_EXTENDED packetfsync@openssh.comError waiting for FXP EXTENDED REPLYfsync failedUnable to allocate memory for FSTAT/FSETSTAT packetUnable to send FXP_FSETSTATUnable to send FXP_FSTAT commandUnable to allocate memory for FXP_CLOSE packetUnable to send FXP_CLOSE commandError waiting for status messagercUnable to allocate memory for FXP_REMOVE packetUnable to send FXP_REMOVE commandError waiting for FXP STATUSServer does not support RENAMEUnable to allocate memory for FXP_RENAME packetUnable to send FXP_RENAME commandFile already exists and SSH_FXP_RENAME_OVERWRITE not specifiedOperation Not Supportedfstatvfs@openssh.comSFTP Protocol Error: short responsestatvfs@openssh.comUnable to allocate memory for FXP_MKDIR packetUnable to allocate memory for FXP_RMDIR packetUnable to send FXP_RMDIR commandUnable to allocate memory for FXP_*STAT packetUnable to send STAT/LSTAT/SETSTAT commandServer does not support SYMLINK or READLINKUnable to allocate memory for SYMLINK/READLINK/REALPATH packetUnable to send SYMLINK/READLINK commandInvalid READLINK/REALPATH response, no name entriessftp_initfesftp_readgeheiesftp_close_handle�e�eieheGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�5A�C
p<�A�C
�\QA�C
L|aA�C
\��A�C
��OA�C
J��A�C
�� A�C
�A�C
�<�A�C
�\RA�C
M|0A�C
+�1A�C
,��A�C
���A�C
���A�C
�RA�C
M<zA�C
u\�A�C
~|�A�C
��*A�C
%��A�C
��A�C
��A�C
��A�C
�<�A�C
�\�A�C
�|�A�C
} ��A�C
E����A�C
��A�C
�&A�C
a #A�C
^@#A�C
^`�A�C
���A�C
���A�C
}��A�C
���A�C
��A�C
� �A�C
�@�A�C
�`�A�C
���A�C
���A�C
��yA�C
t��A�C
��A�C
� �A�C
�@�A�C
�`�A�C
��AA�C
<��A�C
��!A�C
\ �A�C
Z�55�)�Q=IaS��f7Ov��� �3��	���	R�0�B1M	��h

t�R�?�r�(r
�� *>x

X�
m�)z�
�I0��|6���9���
k�@���
��D��"H���L���
�	R���
BWy
K[��^�"�
7�bAD�
Ym�������#(9LSds
�v�����/E��Wl�z�������(���/���5��X9��=�!>+"?&=H?#Ok?#cFD�}�G��L��uQ���V���Z��^�Vb�0g�/�g!G�gsftp.csftp_attrsize_libssh2_store_u64find_zombie_requestremove_zombie_requestadd_zombie_requestsftp_packet_addsftp_packet_readsftp_packetlist_flushsftp_packet_asksftp_packet_requiresftp_packet_requirevsftp_attr2binsftp_bin2attr__PRETTY_FUNCTION__.14627sftp_packet_flushsftp_openfopen_responses.14675__PRETTY_FUNCTION__.14708read_responses.14724sftp_readdirread_responses.14759sftp_fstatfstat_responses.14855__PRETTY_FUNCTION__.14907sftp_unlinksftp_renameresponses.14984responses.15009sftp_mkdirsftp_rmdirsftp_statstat_responses.15082sftp_symlinklink_responses.15116_libssh2_list_first_libssh2_list_next_libssh2_list_remove_libssh2_error_libssh2_list_add_libssh2_ntohu32_libssh2_channel_readlibssh2_channel_window_read_ex_libssh2_channel_receive_window_adjusttime_libssh2_htonu32_libssh2_store_u32memset_libssh2_ntohu64libssh2_sftp_dtor__assert_fail_libssh2_channel_openlibssh2_session_last_errno_libssh2_channel_process_startup_libssh2_channel_extended_data_libssh2_calloc_libssh2_channel_write_libssh2_list_init_libssh2_channel_freelibssh2_sftp_init_libssh2_wait_socketlibssh2_sftp_shutdown_libssh2_store_strmemcpylibssh2_sftp_open_exlibssh2_sftp_readlibssh2_sftp_readdir_exlibssh2_sftp_writelibssh2_sftp_fsynclibssh2_sftp_fstat_exlibssh2_sftp_seek64libssh2_sftp_seeklibssh2_sftp_telllibssh2_sftp_tell64libssh2_sftp_close_handlelibssh2_sftp_unlink_exlibssh2_sftp_rename_exlibssh2_sftp_fstatvfslibssh2_sftp_statvfslibssh2_sftp_mkdir_exlibssh2_sftp_rmdir_exlibssh2_sftp_stat_exlibssh2_sftp_symlink_exlibssh2_sftp_last_errorlibssh2_sftp_get_channel3��������14���������5���������
		6��������,7���������
	#�6���������8��������3
	@@6��������{7��������B9��������l
	mv6���������8���������
	z�6��������
	�*6��������i:���������;��������9��������j
	�t6��������H3��������]4��������5��������j3���������5���������4���������	<���������
<��������E=��������i>���������>���������>���������>��������>��������4>��������l?��������x8���������@���������8���������8��������
8��������;
8��������V
8��������4
	h
>
	�C
	�HB���������
	��C���������D���������
	�6��������
	 6��������d
	:n
	?vE���������
	P�6���������
	x�6���������F��������
	�6��������7G��������d
	�q6���������=���������=��������NH��������b
	�o6���������
	�6��������'
	816��������I
	pV6���������8���������8���������8��������7AsI���������J��������(
	�56��������F<��������{D���������L���������J��������<��������`L���������
	��6��������>��������g>���������N���������>��������0H��������D
	�Q6��������q
	${6���������
	r
�
	@�6���������
	h�6��������
	�,6��������d8��������

	�6��������O
	�\6���������G���������
	��6���������8���������O���������7��������+ <��������� D��������� L���������!O���������":���������";���������"
	x
�"
	��"
	�"B��������	#
	x
#
	�#
	0#B���������#
	Z�#6���������#>��������$>��������E$N���������$>���������$7���������$3��������"%H���������%4���������%3��������&
	�
_&5���������&8���������&
	t�&6��������	'8��������('
	�5'6��������U'
	�b'6��������(O��������\(4��������l(5���������(
	��(6���������(
	x
�(
	��(
	��(B��������)<��������s)L��������:*8���������*O���������*8��������+O��������Y+?��������G,
	(T,6��������o,>���������,>���������,N��������-H��������{-
	`�-6���������-
	�
5.
	h?.6��������e.8���������.
	��.6���������.8���������/<��������70L���������1
	Z�16���������1>��������!2>��������I2N���������2N���������27���������23��������B3H���������34���������33��������U48���������44���������45��������g5
	�t56��������6<��������e6L���������6
	�
76��������#7>��������e7>��������s7
	�{7N���������7N���������7H��������`8
	`m86���������8
	��86��������
98��������>9
	K96��������x9<���������9L���������:
	(�:6���������:>��������;>��������8;N���������;H��������<
	\
<
	x<6��������<
	�
�<
	h�<6���������<8��������9=
	�F=6���������=<��������>L��������A?V���������?3���������?3���������?4���������?5��������D@4��������T@5��������:A
	�GA6��������cA>���������A>���������AN��������BH��������<B
	�IB6���������B
	��B6��������C
	�
C
	�C
	"CB��������2C8��������tC
	��C6���������C5��������fD<���������DL��������XE
	 eE6��������~E>���������E>���������EN��������FH��������zF
	P�F6��������G
	r)G6��������IG8���������G
	��G6���������G<��������HL���������H
	��H6��������	I
	�I6��������5I>���������I>���������IN���������IN���������I>��������HJH���������J
	��J6��������XK
	rbK6���������K8���������K
	�K6���������K
	G�K6��������L
	�L6��������QL<���������LL��������HM
	�UM6��������nM>���������M>���������M
	_�MN���������MN��������2NH���������N
	`�N6���������N
	�
5O
	�?O6��������_O8���������O
	��O6���������O
	x�O6��������P@��������0P@��������KP@��������fP@���������P@���������P@���������P@���������P@���������P@��������Q@��������Q@���������Q<���������QL���������R
	��R6���������R>���������R>���������R
	��RN��������SN��������_SH���������S
	`�S6��������T
	�
bT
	�lT6���������T8���������T
	��T6��������U
	x U6��������CU@��������]U@��������xU@���������U@���������U@���������U@���������U@���������U@��������V@��������5V@��������HV@���������V<��������0WL��������X
	�)X6��������QX>���������X>���������XN��������0YH���������Y
	`�Y6��������=Z
	rGZ6��������jZ8���������Z
	��Z6���������Z<��������9[L���������[
	��[6��������\>��������F\>��������\\N���������\H���������\
		]6���������]
	r�]6���������]8��������^
	�^6��������B^<���������^L��������__
	8	l_6���������_>���������_>��������`N��������t`H���������`
	h	�`6��������Fa
	�
�a
	h�a6���������a8���������a
	�b6��������b?���������b<���������bL��������]c
	�	jc6���������c
	�	�c6���������c>��������fd>��������|dN���������dN���������dH��������<e
	
Ie6���������e
	�
�e
	��e6��������#f8��������af
	�nf6���������f8���������f
	0
�f6���������f8���������fO��������cg<���������gL�������� @5`��I���7�� 3@	`�	��B�s
�	� �@�`r���� ��(��)�/ I0@�5`|6�X9��9��=�!>"?$H?Dk?d�?��@�FD��D��G"H$LD�LduQ�	R��V�BW��ZK[$^D�^dVb��b�0g��g��g.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @h@��)
&Uh,Uh1`h�
90
s-B7sW8sR@��(
8zx	3	��`ظauserauth.o/     1670404304  0     0     100644  27872     `
ELF>�i@@
UH��H��@H�}�H�uЉU�H�E؋�P�����H�E�Hh���H����Ẽ���H�E�H��`�H�E�H�@H�M�H�U�H��`�H��H���H��H�E�H��X�H�E�H��X�H�E�H�E�H��X�H��u H�Eغ�����H������H�E�H�PH�U��2�U�H�M�H�E�H��H���H�E��H���H�E�H���H�E�ǀP�H�E؋�P�����H�E�H��`�H�E�H��X�H�E�A��H����E��}��u H�Eغ����H�����H�E�H�@H�M�H�U�H��X�H��H���H�E�HǀX��}�t.H�Eغ�����H���H�E�ǀP���H�E�ǀP�H�E؋�P����{H�E�H��h�H�E�H��`�H�E�H��X�H�E�VjA�A��H���H���E��}��u H�Eغ����H�����&�}�t.�M�H�Eغ��H���H�E�ǀP����H�E�H��X��<4ulH�Eغ�H���H�E�H�@H�M�H�U�H��X�H��H���H�E�HǀX�H�E؋@h����H�E؉PhH�E�ǀP���tH�E�H��X�H��H�����H�E�H�E�H��X�H�HH�E�H��X�H�U�H��H���H�E�H��X�H�E�H��H�E�ǀP�H�E�H��X���UH��H��@H�}�H�uЉU̿�H�E��U�H�M�H�E�H��H���-���H�E�H�E؋����t4H�}�u-H�E�H������uH�U�H�E�H��H����E�}�t�H�E���UH��H�}�H�E��@h����]�UH��H��@H�}�H�u�U�H�M�D�E�L�M�H�E苀p���� H�E�H����H����E܃�(��H�E�H����H�E�ƀ���H�E�H�@H�M�H�U�H����H��H���H��H�E�H��x�H�E�H��x�H�E�H�E�H��x�H��uH�E������H�����H�E�H�PH�U��2�U�H�M�H�E�H��H���H�E��H���H�E��H���H�E�H�PH�U���U�H�E��H���H�E�ǀp�H�E苀p������}�H�E�H����H�E�H��x�H�M�H�E�I��H����E��}��uH�E�����H����H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx��}�t)H�E�ǀp�H�E������H����H�E�ǀp���H�E苀p���t"H�E苀p���tH�E苀p����H�E苀p����|H�E�H����H�E�H����H�E�H��x�H�E�VjA�A��H���H���E��}�t/�}��tH�E�ǀp��M�H�E���H�����H�E�H��x��<4uYH�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�@h����H�E�PhH�E�ǀp���^H�E�H��x��<3uWH�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�ǀp�H�E����H����H�E�Hǀ��H�E�ǀ��H�E�ǀp�H�E�H��x��<<tH�E�����<<�SH�E�ƀ��<H�E苀p���tH�E苀p�����H�E苀p���u.H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�}���H�E苀p�����H�U�H�E�L����H�E�H����H�}�H�E�H��L���H�E�H����H��uH�E���H������U܋E�Ѓ�,��H�E�H����H�E�H�@H�M�H�U�H����H��H���H��H�E�H��x�H�E�H��x�H�E�H�E�H��x�H��uIH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E������H����H�E�H�PH�U��2�U�H�M�H�E�H��H���H�E��H���H�E��H���H�E�H�PH�U���U�H�M�H�E�H��H���H�E苀����H�E��H���H�E�ǀp�H�E苀p����H�E苀��Hc�H�E�H����H�E�H����H�E�H��x�H�E�I��H����E��}��uH�E�����H����	H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ���}�tH�E������H����H�E�ǀp����H�E�ǀp�H�E���H����S�H�E�H�@H�M�H�U�H��x�H��H���H�E�Hǀx�H�E�ǀp�H�E����H�����UH��H��@H�}�H�u�U�H�M�D�E�L�Mȿ�H�E�L�Eȋ}�H�MЋU�H�u�H�E�M��A��H�������E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���UH��H�ĀH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E��H���H�E�H�}�u H�E����H����
H�E�H�E�H�����u3H�U�H�E�H�Ѻ�H���H��u�E�<
t�E�<
u�H�E�H�����tH�m�H�E�H���H�}�w'H�E�H���H�E����H����sH�E�H�@H�M�H�U�H��H���H�E�H�}�u'H�E�H���H�E�������H����)H�M�H�U�H�E�H���H9E�t?H�E�H�@H�M�H�U�H��H���H�E�H���H�E����H�����H�E�H����H�m�H�}�t2�H�H�U�H�J�H�U�H����H�H����% ��u�H�}�u3H�E�H�@H�M�H�U�H��H���H�E����H����EH�U�H�E� H���H�E�H�}�u3H�E�H�@H�M�H�U�H��H���H�E����H�����H�E�H�E�H;E�vH�E�H+E�H����H�E�H�E�H+E�H��H�Eؾ H���H�E�H�}�uH�U�H�E�H�H�E�H�E�H+E؉�H�M�H�U�H�u�H�E�A��H�����t0H�E�H�@H�M�H�U�H��H���H�E����H����=H�E�H�U�H�H�E�H+E�H��H��H�E�H�H�U�H�E�H��E���H�E�H����UH��H��@H�}�H�u�H�U�H�M�D�E�L�M��H�E�H�E�H�H�E�H��HH�E�H�H�@H��t3�E�Hc�H�E�H�H�H�M�H��H�����uH�E�H�H�E�H�� H�E�H�E�H�H��tH�E�H�H�H��u�H�E�H�H��uH�E����H����AH�E�H�H�@H�U�H�u�H�}�H��H�U�Ѕ�tH�E���H�������UH��H��`H�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H�xH�E�L�H�E�H�� �A��H�E�H���H�U�H�u�H�E�H��WM��E��H�����H���E�}�t�E��H�E�H�E�H�E�H�E�H�E�H�@(L�E�H�M�H�U�H�u�H�}�M��I�ȹ�Ѕ�t,H�E�H�@8H��tH�E�H�@8H�M�H�U�H��H��и�����*H�E�H�@8H��tH�E�H�@8H�M�H�U�H��H��и��UH��H��H��h���H��`���H��X���H��P���L��H���L��@���H��h����������\H�E�H��h���H����H���H��P���tWH��h���H����H��h���H����L��P���H�M�H�U�H��h���M��I��H��H��H������E��}�tm�E��
H��h���H����H��h���H����L��H���H�M�H�U�H��h���H����@���M��I��H��H��H���H���E��}�t�E��4
H��h���H����H��X���H�H�EH�H�E(H�H�E�H�H�P4H��h���H����H��h���H�@H��h���H��h���H����H��h���H����H�H�M�H�H��H��H���H��H��h���H����H��h���H����H��h���H����H��h���H����H��uvH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H�U�H��H���H��h���������H����H��h���H����H�HH��h���H�����2H��h���H����H��X���H��`���H��H���H��h���H����H���H��h���H���	�H���H��h���H����H��h���H����H��h���H����H��H���H�U�H�E�H��h���H����H��H���H��h���H�@H��h���H�U�H��H���H��h���H����H�EH��H�uH���H��h���H����H�U(H�E H��H���H��h���H����A��H��h���H����H��H���H�U�H�u�H��h���H����@���I��H�����H���E��}�t|H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ���E���H��h������H�E���H���H�E�H��p���HDžx���H��h���H���H�E�H��h��������H�E�H��h���H����H�E�H��h���H����H�E�H�E�H�@(L�E�H��p���H�U�H�u�H��h���M��I�ȹ�Ѕ���H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H�E�H�@8H��tH�E�H�@8H�M�H��h���H��H��и�����H�E�H�@8H��tH�E�H�@8H�M�H��h���H��H���H�U�H�E�H9��yH��h���H����H��tQH��h���H�@H��h���H��h���H����H��h���H����H�H�M�H�H�qH��h���H����H����DH��h���H�@H��h���H��h���H����H��h���H����H�H�M�H�H��H��H���H�E�H�}���H��h���H�@H��h���H�U�H��H���H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���������H�����H��h���H�U�H����H��h���H����H��h���H����H�H��h���H����H��h���H������H�E�ЍPH��h���H����H���H��h���H����H��h���H����H��h���H����H��H���H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H�U�H�E�H��h���H����H��H���H��h���H�@H��h���H�U�H��H���H��h���ǀ��H��h����������.H��h���H����H��h���H����H)�H��H��H��h���H����H��h���A��H����E��}��uH��h��������H����;�}�tiH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���ǀ��H��h���������H�����H��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h���ǀ��H��h����������H��h���H����H��h���H����H�U�H��h���QjA�A�H��H��H���H���E��}��uH��h��������H����H��h���ǀ���}�tH��h�������H�����H��h���H�����<4uZH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h����@h����H��h����Ph��SH��h���H�@H��h���H��h���H����H��H���H��h���Hǀ��H��h�������H�����UH��H��@H�}�H�u�U�H�M�L�E�L�M���H�E�D�E(�}�U�L�M�L�U�H�M�H�u�H�E�AP�u W�uM��H���4�H�� �E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���UH��SH��xH�}�H�u��U�H�M�L�E�L�M��E�4�E�3�E�<�E�H�E���������H�}�wH�E�����H����
H�E�H8���H���H�E�H���H����H�E�H�����H�E�H�� �H�E�H�� �H9E�sH�E�����H����H�E�H�@H�M�H�U�H�� �H��H���H��H�E�H���H�E�H���H��uH�E�������H����FH�E�H�� �H�E�H�HH�E�H���H��H����9H�E�H�� �H�E�H�����H9�tH�E�����H������U�H�E�H�� �H�H�E�H�H�P-H�E�H���H�E�H�@H�U�H�M�H���H�M�H�� �H�H�M�H�H��H��H���H��H�E�H���H�E�H���H�E�H�E�H���H��uIH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�������H����
H�E�H�PH�U��2�U�H�M�H�E�H��H���H�EȺ�H���H�EȺ	�H���H�U�H�E�H��0�H�E�H�PH�U��H�E�H�� �H�E�H���H�E�H��H���H�U�H�M�H�E�H��H���H�E�ǀ��H�E���������H�E�H���H�E�H���H�E�A��H����E�}��uH�E������H�����	�}���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�������H����a	H�E�ǀ��H�E���������H�E�H��8�H�E�H���H�E�H����H�u�H�E�WjA�A�H���H���E�}��uH�E������H������}���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�����H����IH�E�H�����<4��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E��@h����H�E��PhH�E�ǀ����~H�E�H�����<3��H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�����H����H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H��0��H�E�ǀ��H�E���������H�E�H�@H�U�H�M��������H�M�H���H�H��H���H�E�H�E�H�E�H�}�uH�E�������H����H�E������H�E�H���H�E�H��H���H�E�H���H�E�H���H�E�H��H���H�U�H�E�H���H�H�E�H�E�H+E�I��H�M�H�U�H�u�H�}�H�E�L�M�ЉE�H�E�H�@H�M�H�U�H��H��Ѓ}��uH�E������H����7�}���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�����H����H�E�H9E��EH�E�H���H��tBH�E�H�@H�U�H�M�H���H�M�H�� �H�H�M�H�H�qH�M�H���H����8H�E�H�@H�U�H�M�H���H�M�H�� �H�H�M�H�H��H��H���H�E�H�}���H�E�H�@H�M�H�U�H��H���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�������H����dH�E�H�U�H���H�E�H���H�E�H���H�H�E�H�E�Hǀ0�H�E�H�� ���H�E�ЍPH�Eȉ�H���H�E�H�� �H�E�H���H�E�H��H���H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�U�H�M�H�E�H��H���H�E�H�@H�M�H�U�H��H���H�U�H�E�H��(�H�E�ǀ��H�E���������H�E�H��(�H�E�H���H)�H��H��H�E�H���H�E�A��H����E�}��uH�E������H������}�tWH�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ��H�E�������H����H�E�H�@H�M�H�U�H���H��H���H�E�Hǀ�H�E�ǀ���E�H�E�H��8�H�E�H���H�E�H����H�u�H�E�WjA�A�H���H���E�}��uH�E������H������}�t)H�E�ǀ��H�E�����H����H�E�H�����<4uVH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E��@h����H�E��PhH�E�ǀ����RH�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�ǀ��H�E�����H���H�]���UH��H��pH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E�H�E���������H�}�tKH�E�H�� �H�E�H���L�E�H�M�H�U�H�E�M��I��H��H��H���F��E��}�t[�E��H�E�H�� �H�E�H���L�E�H�M�H�U�H�E�H���u�M��I��H��H��H���H���E��}�t�E��bH�}�H�U�H�E�A��H�u�H�E�H��H�M�QA�I��H��D��H���H���E�H�E�H��tH�E�H�@H�M�H�U�H��H��ЋE���UH��H��@H�}�H�u�U�H�M�L�E�L�M�H�}�uH�E���H�E�U�L�E�H�}�H�M�H�u�H�E�M��I��H���<����E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�}�u
�������H�E�H�E�H���A��H�}�H�M�H�U�H�u�H�E�H���u�I��I��H��D��H���H���E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���UH��SH��HH�}�H�u��U�H�M�H�Eȋ�@����^H�E�Hǀp�H�E�Hǀ��H�E�ǀ��H�E�ǀ��H�E�Hǀ��H�E�Hǀ��H�E�H����H����E���7��H�E�H��`�H�E�H�@H�M�H�U�H��`�H��H���H�E�H�U�H�E�H��H�H�E�H��uH�EȺ�����H����H�E�H�PH�U��2�U�H�M�H�E�H��H���H�Eغ�H���H�Eغ�H���H�EؾH���H�EؾH���H�E�ǀ@�H�Eȋ�@�����H�E�H��`�H�E�H��H�H�E�A��H����E�}��uH�EȺ����H����
�}�tWH�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�ǀ@�H�EȺ�����H����E
H�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�ǀ@�H�Eȋ�@����#H�E�H����H�E�H��P�H�E�H��H�H�E�VjA�A��H���H���E�}��uH�EȺ����H����	�}�t)H�E�ǀ@�H�EȺ���H����^	H�E�H��H��<4uYH�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�Eȋ@h����H�EȉPhH�E�ǀ@����H�E�H��H��<3uWH�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�ǀ@�H�EȺ���H����H�E�H��H�H��H�E�H�E�H�����H�Eȉ�h�H�E�H��H�E�H�Eȋ�h�����H�E�H�@H�U�H�Mȋ�h���H��H���H��H�E�H��p�H�E�H��p�H��uH�EȺ�����H����H�Eȋ�h���H�M�H�E�H��p�H��H���H�U�H�Eȋ�h���H�H�E�H�E�H�����H�Eȉ�x�H�E�H��H�E�H�Eȋ�x�����H�E�H�@H�U�H�Mȋ�x���H��H���H��H�E�H����H�E�H����H��uH�EȺ�����H�����H�Eȋ�x���H�M�H�E�H����H��H���H�U�H�Eȋ�x���H�H�E�H�E�H����E�H�E�H��H�E�H�U؋E�H�H�E�H�E�H�����H�Eȉ���H�E�H��H�E�H�Eȋ�������H�Eȋ�����H��H��H�E�H��H���H��H�E�H����H�E�H����H��uH�EȺ�����H�����H�Eȋ�����H��H��H�E�H��H���H��H�E�H����H�E�H����H��uH�EȺ�����H�����E��H�E�H�U�H�����M�H��H�
H����CH�E�H��H�E�H�E�H�����U�H��HЋ@��H�E�H�����U�H��H�H�E�H��H���H�H�E�H�����U�H��H�H�H��uH�EȺ�����H�����H�U�H�E�H�����M�H��Hȋ@��H�H�E�H�E�H�PH�U�H�U�H�����M�H��H���B�E�H�Eȋ���9E���H�M�H�E�H����H�U�L����H�Uȋ�����H�Uȋ�x�A��H�U�H����H�uȋ�h�A��H�u�H��p�QPH�E�M��A��D��D���H��H�E�Hǀ`��E��:H�E�H��`�H�E�H�����M�H��Hȋ@����H�H�E�H��`��E�H�Eȋ���9E�r�H�E�H�@H�M�H�U�H��H�H��H���H�E�H�@H�M�H�U�H��`�H��H���H�E�H�U�H�E�H��H�H�E�H��uH�EȺ�����H����(H�E��=H�E�H��H�E�H�Eȋ���H�E؉�H����E��HH�E�H�����U�H��HЋ@��H�E�H�����U�H��H�H�H�E�H��H��H����E�H�Eȋ���9E�r�H�E�ǀ@�H�Eȋ�@���uH�E�H��`�H�E�H��H�H�E�A��H����E�}��uH�EȺ����H����s�}�tH�EȺ�����H����H�E�ǀ����H�E�H�@H�M�H�U�H��H�H��H���H�E�HǀH�H�E�H����H��td�E��LH�E�H�@H�M�H�U�H�����u�H��H�H�H��H���H�E�H�����U�H��H�H��E�H�Eȋ���9E�r�H�E�H����H��td�E��LH�E�H�@H�M�H�U�H�����u�H��H�H�H��H���H�E�H�����U�H��H�H��E�H�Eȋ���9E�r�H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�E�H��p�H��t.H�E�H�@H�M�H�U�H��p�H��H���H�E�Hǀp�H�E�H����H��t.H�E�H�@H�M�H�U�H����H��H���H�E�Hǀ��H�Eȋ�����tH�E�ǀ@�������H�E�ǀ@����H�]���UH��H��0H�}�H�u�U�H�Mп�H�E�H�MЋU�H�u�H�E�H���0�E��}��u*H�E苀���tH�U�H�E�H��H����E��}�t��E���Unable to allocate memory for userauth_listssh-connectionnoneWould block requesting userauth listUnable to send userauth-none requestFailed getting responseNo errorUnable to allocate memory for userauth-password requestpasswordWould block writing password requestUnable to send userauth-password requestWaiting for password responseAuthentication failed (username/password)Password expired, and callback failedUnable to allocate memory for userauth password change requestWould block waitingUnable to send userauth password-change requestPassword Expired, and no callback specifiedAuthentication failedrUnable to open public key fileInvalid data in public key fileUnable to allocate memory for public key dataUnable to read public key from fileMissing public key dataInvalid public key dataInvalid key data, not base64 encodedNo handler for specified private keyUnable to initialize private key from fileOut of memoryhostbasedFailed allocating additional space for userauth-hostbased packetWould blockUnable to send userauth-hostbased requestAuth failedInvalid signature for supplied public key, or bad username/public key combinationInvalid public key, too shortInvalid public keypublickeyUnable to send userauth-publickey requestWaiting for USERAUTH responseUsername/PublicKey combination invalidUnable to allocate memory for userauth-publickey signed dataCallback returned errorFailed allocating additional space for userauth-publickey packetWaiting for publickey USERAUTH responseUnable to allocate memory for keyboard-interactive authenticationkeyboard-interactiveUnable to send keyboard-interactive requestWaiting for keyboard USERAUTH responseAuthentication failed (keyboard-interactive)Unable to allocate memory for keyboard-interactive 'name' request fieldUnable to allocate memory for keyboard-interactive 'instruction' request fieldUnable to allocate memory for keyboard-interactive prompts arrayUnable to allocate memory for keyboard-interactive responses arrayUnable to allocate memory for keyboard-interactive prompt messageUnable to allocate memory for keyboard-interactive response packetUnable to send userauth-keyboard-interactive request4343<4343<GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx��A�C
�<�A�C
~\A�C
R|�A�C
���A�C
��sA�C
n�A�C
�A�C
mA�C
h<�A�C
� \}
A�C
E�s
�cA�C
^��A�C
���A�C
� ��A�C
E��tA�C
o���	6�0	BmsV�k�ym�	��+c�A.��	��	/G`qy���������-4Jbj��t��}
���,���-�
�:tuserauth.creply_codes.14482userauth_passwordreply_codes.14512file_read_publickeyfile_read_privatekeysign_fromfileuserauth_hostbased_fromfilereply_codes.14605userauth_publickey_fromfileuserauth_keyboard_interactivereply_codes.14704memset_libssh2_error_libssh2_store_str_libssh2_store_u32_libssh2_transport_send_libssh2_packet_requirev_libssh2_ntohu32memmovelibssh2_userauth_listtimelibssh2_session_last_errno_libssh2_wait_socketlibssh2_userauth_authenticatedlibssh2_userauth_password_exfopenfeoffreadrewindfclose__ctype_b_locmemchrlibssh2_base64_decodelibssh2_hostkey_methodsstrncmp_libssh2_pub_priv_keyfile_libssh2_htonu32libssh2_userauth_hostbased_fromfile_ex_libssh2_userauth_publickeymemcpylibssh2_userauth_publickey_fromfile_exstrlen_libssh2_calloclibssh2_userauth_keyboard_interactive_ex=���������
�������������������
,�����������������N
;V��������h
@u���������
h���������;
	C��������Y
@f���������
�����������
����������9��������h�������������������������� �����������������
����������)��������7
,?��������M
�U��������u������������������
����������1
 >���������
	���������
I���������
h���������	
�	���������	
��	���������	���������	
,�	��������

�
��������9
��������S
���������
���������

��
��������@
M��������|
H����������
t���������	��������[ ���������
��#���������
�����������$��������
%��������$
$��������9
&��������L
'��������U

�b
���������
'���������

��
���������
%���������
'���������


��������'��������.(���������
$����������)���������
<���������*)��������i*���������
X���������+��������L,���������
�����������
����������t��������%-��������a
�n������������������
,����������
����������0��������Q���������������������������.��������i
�v�������������������������z����������������!
1.���������
@���������D
	L��������e
1r���������
j���������a
xn������������������ ��������]
�j���������������������������
����������*
�7��������e1��������~���������
����������c 
�p ��������� ��������� 
,� ��������� 
�� ��������	!�������� !��������n!���������!
1�!��������"
"���������"���������"
1�"��������'#
24#���������$
P�$��������w%
x�%���������%���������%1��������9&
1F&���������&
��&��������(
�(��������}(���������(���������(��������p)���������)
1�)���������)
�)��������q*���������*
@�*���������*
�*��������u+
x�+��������u,-���������,
��,0��������-@#-��������v- ���������-���������-4��������.0��������/. ���������.��������2/
H?/��������i/��������w/
,/���������/
��/���������/���������/��������0��������0
1$0��������t0
��0��������1
	1��������,1
191��������[1
�h1��������/2
�<2��������`2���������2
(�2��������	31��������,3���������3
p�3���������31���������3��������!4��������m45���������4
��4���������45���������4
�4��������/5��������}55���������5
P�5��������M7
�Z7���������7���������7��������48��������F8
1S8��������g8
�t8���������:��������7; �������� @�`�6���m��� @t`��+��,��-�A.�:.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @I;@pOH
&�;,�;1�;#	90�D-B�DW�D R@�g�
G(	(LF8iatransport.o/    1670404304  0     0     100644  7696      `
ELF>�@@
UH��H��0H�}�H�u�H�U؉M�H�E�H H�E�H�E�H���@�E�Eԙ�}�Ѕ���������H�E�H��H�@(H�U�H���U�Hc�H�u�H�}�Ѕ�t&H�E�H�@H�M�H�U�H��0@H��H��и��B�E�Hc�H�M�H�E�H��H����E�)EԋE�H�HE؋E�H�HE�E�;E��o������UH��H��PH�}��u�H�E�H H�E�H�E���@����WH�E�ǀD�H�E���@����H�E�H��H��}���H�E�H��H�@H�U�L�� H�U�H��H�A��H�U�L��0@H�U�H��@H�U���H�u�H�}�AQARM��A���H��H�E�H���@Hc�H�E�H��0@H�E�H��H�H�H�E�H��H�����tH�E�ǀD�����H�E����PH�E���H�E�H��H�H�E���@��H)�H�E�H��H�H�E�H���H��t9H�E�H����@��t'H�E��@h����uH�E�H����@��t����E�}���H�E�H��0H����H�E�H��(H�@ H�U�L��0H�U�L��H�H�U�H��0@H�U�H�u�H�}�H��AQM��I�ȹ@���H���E�H�E�H�@H�M�H�U�H��0@H��H��Ѓ}�t�E��H�U�H�E�H��0@H�U�H�E�H��H�H�E�H��0@���H�E���P�H�E�ǀ@�H�E���@���uSH�E���D�H�E�H��H�H�E�H��0@H�E�H����E�}��u�E��1�}�tH�E�ǀ@��E��H�E�ǀ@�H�E���P���UH��H�ĀH�}�H�E�H H�E��E�H�E������H�E���H�E��@h����t;H�E��@h����u-H�E�H����H�E��H����E܃}�t�E��H�E���H���u H�E�ǀH�H�E���L��E��mH�E������u
��H�E��@h����tH�E�H���@�E���E��E�H�E�H��@��H�E�H��@)‰ЉE��}�y��]����E�;E��B�}�tI�E�Hc�H�E�H��@H�E�H�H�E�H��H���H�E�Hǀ@�E�Hc�H�E�H��@�%H�E�Hǀ@H�E�H��@H�E�H��@H�E�H�@PL�E�H�U��Rl��tA��A�@�@+U�HcҋM�Hc�H�M�H�H�M���D���H�E�H�}�;H�}�y*H�}�u#H�E�������H�E��������9�����/H�E�H��@H�E�H�H�E�H��@H�E�H��@��H�E�H��@)‰ЉE��E��E�H�E�H��(@H���C�E�;E�}#H�E�������H�E���������}�tfH�E�H��@H�E�H�4�M�H�U�H�E�H�������E܃}�t�E��qH�E�H��@H�E�H�H�E�H@�H��H����'�E�Hc�H�E�H��@H�E�H�H�E�H��H���H�E�H��@�E�H�H�H�E�H��@H�E�H�����H�E�@H�E�@��u
�����U�H�E�@H�E�@�}�tH�E�H���@��Ѓ���H�E�H�}�@�v
�����{H�E�H�@H�M�H�U�H��H���H��H�E�H��0@H�E�H��0@H��u
������;H�E�H�U�H��(@H�E�H��0@H�E�H��8@�}�~J�E��Hc�H�E�H��8@H�M�H��H��H���H�E�H��8@�U�Hc�H��H�H�E�H��8@H�E�H��8@H�E�H��0@H)�H��H��H�E�H�� @�E�)E�H�E�H��(@��H�E�H�� @)‰ЉEċE�;E�~�EĉE��}���H�E�H���@�E�H�E�H�� @�E�H�H�H�E�H��(@�E�H�H)�H��H9�v&H�E�H��(@�‹E�)�H�E�H�� @)‰ЉE��,�E��E�E�}�U��}�t�E�)E��E���E��}���H�E�H��8@H�E�H��@H�E�H�4�M�H�E�H���#����E܃}�tH�E�Hǀ(@�E��vH�E�H��@�E�H�H�H�E�H��@H�E�H��8@�E�H�H�H�E�H��8@H�E�H�� @�E�H�H�H�E�H�� @�E�)E��}����E�Hc�H�E�H��@H�E�H�H�E�H��8@H��H���H�E�H��@�E�H�H�H�E�H��@H�E�H��8@�E�H�H�H�E�H��8@H�E�H�� @�E�H�H�H�E�H�� @H�E�H��(@��H�E�H�� @)‰ЉEă}��������U�H�E���H�������E܃}��u.H�E���p���tH�E��U쉐L�H�E�ǀH��E��H�E�Hǀ(@�E���UH��H��@H�}�H�u�H�U�H�M�H�E�H H�E�H�E�H���H��uH�E�H���DH�E�H���H9E�uH�E�H���H9E�t
�����H�E�H�H�E�����Hc�H�E�H���H)�H��H�E�H�E�H�@HL�E�H�U؋Rl��tA��A�@H�U�H�M�H���H��@@H�M�H�H�M؋�D���H�E�H�E�H;E�u$H�E�ǀ��H�E�Hǀ���hH�}�y.H�}�t������SH�E؋�����H�E؉������3H�E�H���H�E�H�H�E�H���H�E�H;E�}��������UH��H��H�}�H�u�H��x���H��p���L��h���H�E��@h����tH�E�H��p�@���E�H�E�H H�E�H�E�H�E�H��x���H�E�H�E��@h����t;H�E��@h����u-H�E�H����H�E��H����E��}�t�E��H�M�H��x���H�u�H�E�H������E��}�t�E���H�E������H�E���H�E�H��t�E���H�E��@h����E�H�E�H���H��t9H�E�H����@��t'H�E��@h����uH�E�H����@��t����Eȃ}���}���H�E���H�E�H�E�H�E�H���H�@H�U�L���H�U�H��E@L��x���H�M�H�U�H�}��ЉE��}�t�E��H��p���tjH��h���t`H�U�H�E�H)�H��H�E�H�E�H���H�@H�U�L���H�U�H��H��@@H�U�H�4L��h���H��p���H�U�H�}��ЉE��H�E��}�t�E��lH�U�H�E�H�H��x����H��x���H��h���H�H=��v
�����2H�E�H��E@H��x���H�E�H��H���H��p���t=H��h���t3H��x���H��H��@@H�E�H�H��h���H��p���H��H���H��h���H�x���H��x���H��H�E��M�E�Hc�H�E��H��H��)��ȉE��}��E�E��E�H�HE��}�tH�E�H����@����H�E�ЉE�H�E��P�H�E�H@@��H����E���H�E�D@H�E�H��@@H��x���H��H‹E���H����}���H�E�H���H�@H�U�L���H�U�A��H�U�H��@@H�U����H�u�H��@@H�u�H�H�}�APjA�E���H��H�E��mH�E�H��@@H�E�H�H�E�H�E�H��pH�@(H�U�H��xH�U�H��p�RHc�H�u�H�}��Ѕ�t
�����7H�E�H��p�@H�HE�H�E�H;E�r�H�E�����PH�E����H�E�H�@HL�E�H�U��Rl��tA��A�@�U�Hc�H�M�H��@@H�M���D���H�E��E�Hc�H�E�H9���H�E�H��y
H�E�H���uiH�E�������H�E���H�E�H�U�H���H�E�H�U�H���H�E��H��HH�H��H�E�H���H�E�U����������*������#H�E�Hǀ�H�E�Hǀ����transport.c(len % blocksize) == 0remainbuf >= 0decrypt_libssh2_transport_readGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx��A�C
�<A�C
�\{A�C
v|�A�C
���A�C
��
�8/�:@Tu�bpw~��{����
��transport.cdecrypt__PRETTY_FUNCTION__.14518fullpacket__PRETTY_FUNCTION__.14546send_existing__assert_failmemcpymemcmp_libssh2_packet_add_libssh2_transport_read_libssh2_kex_exchangememmove_libssh2_ntohu32_libssh2_transport_send_libssh2_htonu32RAND_bytesH
8R
W
\�����������������������������������h��������
@$
)
#.��������g��������+��������T��������~������������������
���������
������������������������������������������� @�`��u�
.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @�@�(
&,1 X90x-B�W��R@�x
`X	�
haversion.o/      1670404304  0     0     100644  1464      `
ELF>x@@
UH��}��}����]�1.5.0GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�A�C
Y�version.clibssh2_version
 .symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @@�
&^,^1^90d-B�W�8R@�
��		�aknownhost.o/    1670404304  0     0     100644  16104     `
ELF>�;@@
UH��H��H�}�H�u�H�}���H�E�H�@XH��tH�E�H�@H�M�H�U�H�RXH��H���H�E�H�@HH��tH�E�H�@H�M�H�U�H�RHH��H���H�E�H�@@H��tH�E�H�@H�M�H�U�H�R@H��H���H�E�H�@0H��tH�E�H�@H�M�H�U�H�R0H��H���H�E�H�@H��tH�E�H�@H�M�H�U�H�RH��H���H�E�H�@H�M�H�U�H��H��А��UH��H�� H�}�H�E�H�@H�U�H�ֿ��H�E�H�}�uH�E������H�����H�E�H�U�H�H�E�H��H���H�E���UH��H�}�H�E�H��hH�E�H�E���ʭ�H�E�H�U�H�PH�E�@,����u
H�E�H�@��H�U�H�BH�E�H�P@H�E�H�PH�E�P,H�E��P H�E�]�UH��H��`H�}�H�u�H�U�H�M�L�E�L�M�H�E�H���H�E�E(%��uH�E�H������H����H�E�H���H���H�E�H�}�uH�E�H�������H����GH�E�U(�P,H�E�@,��������t	���,H�E�H�H�@H�U�H�H��H�U�H��H��H���H��H�E�H�PH�E�H�@H��u!H�E�H�������H����E��H�E�H�PH�E�H�@H�M�H��H���H�E�H�U�H�P �H�E��H�E�H�H�M�H�U�H�u�A��H����E��}��@H�U�H�E�H�P�Eԉ�H�E�H�P H�E�H�����H�E�H�H�M�H�U�H�u�A��H����E��}���H�U�H�E�H�P0�Eԉ�H�E�H�P8�!H�E�H������H����E���E(%����H�}uH�E�H���H�EH�E�H�H�@H�U�H�H��H�UH��H��H���H��H�E�H�P@H�E�H�@@H��u!H�E�H�������H����E��1H�EH�PH�E�H�@@H�M�H��H���H�E�H�P@H�EH���VH�E�H�H�U�H�u�H��H�UH���H�E�H�}�u!H�E�H�������H����E��H�U�H�E�H�P@H�}����E(%=��H�E�H�H�@H�U�H�H��H�U�H��H��H���H��H�E�H�PHH�E�H�@HH��u!H�E�H�������H����E��,H�E�H�@HH�U�H�M�H��H���H�E�H�PHH�E�H��H�E�H�U�H�PPH�}��H�E�H�H�@H�U�H�H��H�U H��H��H���H��H�E�H�PXH�E�H�@XH��u!H�E�H�������H����E��H�E H�PH�E�H�@XH�MH��H���H�E�H�PXH�E H��H�E�H�U H�P`�H�E�H�@XH�E�H�U�H��H��H���H�}0tH�E�H������H��H�E0H������H�E�H�H�U�H��H���C����E���UH��H��0H�}�H�u�H�U�H�M�L�E�D�M�H�}�H�U�H�u�H�E�H���u�M�Qjj�u�I��A��H������H��0��UH��H��0H�}�H�u�H�U�H�M�L�E�L�M�H�}�H�U�H�u�H�E�H���u �MQ�u�u�u�I��A��H���h���H��0��UH��H���H��X���H��P�����L���H��@���L��8���D��H���H�E���H������E�H�E��E��E��}�u
����L���x}��L���H��P���H������A��H�Ѻ�H�Ǹ��EЃ}�x	�}�
~&H��X���H������H�����8H������H�E��E��H��P���H�E��E���H���%��u`H��X���H�H�M�H��8���H��@���H���H�E�H�}�u&H��X���H�������H�����H�E�H��@���H��X���H��H���H�E��H�E��@,����tp��t:���%�}��H�E�H�PH�E�H��H����������E���}���H�E�H�PH�E�H��H����������E����}���H�E�H�@ H�����H��H�E�H�@8��H�E�H�p0H��`���H���H�E�H���H��H�M�H��`���H��H���H������H��`����H��H���H��`���H���H�E�H�HH�������H��H�����u�E��	��
��������}�����H���%�E�H�E��@,%�E��}�ti�}�t�E�;E�u[H�E�H�P@H��@���H��H�����u.H�}tH�E�H�����H��H�EH�H�E��E��1H�}�uH�E�H�E��E�H�E�H���H�E�H�}������H��P���H�E�}�u�m��}������H�}�t$H�}tH�E�H������H��H�EH��E�H�E�H��t'H��X���H�H�@H��X���H�H��H�U�H��H��ЋE���UH��H��0H�}�H�u�H�U�H�M�D�E�L�MЋ}�H�M�H�U�H�u�H�E�H���u�A��I��H�Ѻ����H�����H����UH��H��0H�}�H�u�U�H�M�L�E�D�M�D�E�H�}�H�M�U�H�u�H�E�H���uE��I��H���E���H����UH��H�� H�}�H�u�H�}�t
H�E�=�ʭ�tH�E�H������H����IH�E�H�@H�E�H�E�H���H�E�(�H���H�E�H�H�U�H��H���<���UH��H�� H�}�H�E�H��H���H�E��.H�E�H���H�E�H�E�H�H�U�H��H�����H�E�H�E�H�}�u�H�E�H�H�@H�U�H�H��H�U�H��H��А��UH��H��PH�����H�����H�����H������L������L�������E�H�E�H�����H�����H�H�E�H������"H�����H������H����H�m�H�E�H�E�H;����tH�E�H���<,��H�}�v!H�����H������H����H�U�H�M�H����H��H���H����H�E�H���E
A��H������H������H������H����H�����H��jAP�u(�u �uI��I��H�ѺH���?�H��0�E��}�t�E��.H�E�H;����v
H�E�H�m�H�E�H;��������E���UH��H��pH������H������H������H������L������L������H������H��H�E�H������H�E�H�E��H�E�H�E����tH�E��<|u�H�E��<|�OH�E�H�E�H+E�H�E�H�}�v!H������H������H����H�U�H�M�H�E�H��H���H�U�H�E�H��H�E�H�E�H�E�H��H�E�H�E�H������H������H+E�H��H������H�������v!H������H������H����H������H������H������H��H���H������H������H���E
A��L������H������H������H�U�H������H������H��jAQ�u(�u �uM��I��H���4�H��0����UH��H��`H�}�H�u�H�U�H�M�L�E�H�E�H�E�H�E�H�E�H�}�wH�E�H������H�����H�E������0��	w�E��EH�E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< tH�E��<	u�H�E�H+E�H�E�H�U�H�E�H�����u	�E��5H�U�H�E�H�����u	�E���E��
H�E�H�m�H�E��< t�H�E��<	t�H�E�H�E�H�E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< tH�E��<	u�H�E�H)E�H�}�uH�E��
H�E�H�m�H�}�t!H�E����tH�E��< t�H�E��<	tΐH�}�vMH�E���H�����t3L�M�L�E�H�M�H�U�H�u�H�E�u�u��}�W�u�H���y���H�� �1L�M�L�E�H�M�H�U�H�u�H�E�u�u��}�W�u�H�����H�� ��UH��H��PH�}�H�u�H�U��M��}�tH�E�H������H����H�E�H�E��
H�E�H�m�H�}�tH�E��< t�H�E��<	t�H�}�t!H�E����tH�E��<#tH�E��<
u
��$H�E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< tH�E��<	u�H�E�H+E�H�E��
H�E�H�m�H�}�t!H�E����tH�E��< t�H�E��<	t�H�E����tH�}�uH�E�H������H����{H�E�H�E�H�E�H�E��
H�E�H�m�H�}�tH�E����tH�E��<
u�H�E��<
uH�m�H�}�H�M�H�U�H�u�H�E�I��H�������Eԃ}�t�E�����UH��H��0H����H����������E������t!H����H������H�����H�����H���H�E�H�}����\H���H���H�Nj����H���H������H��H�����t!H����H������H����E��!�E�H�U�H����H���H��u�H�E�H����E��H����H����H�����UH��H��pH�}�H�u�H�U�H�M�L�E�D�M��}�tH�E�H������H�����H�E��@,%=t2=	=t�g=t-=t8�WH�E�H�E��cH�E�H�E��QH�E�H�E��?H�E�H�@HH�E�H�}�tH�E�H�@PH�E��H�E�H������H����-H�E�H�@@H���H�E�H�}�tH�U�H�E�H�H��H�E�H�E�H�@XH��tH�E�H�P`H�E�H�H��H�E�H�E��@,�����OH�E�H�P H�E�H�pH�E�H�H�M�H���H�E�H�}�uH�E�H�������H����|H�E�H�P8H�E�H�p0H�E�H�H�M�H���H�E�H�}�u?H�E�H�H�@H�U�H�H��H�U�H��H���H�E�H�������H����H�U�H�E�H�H�E�H�H��H�E�H�E�H;E��'H�E�H�@XH��tKH�}�tDH�E�H�xXH�E�H�H@L�E�H�U�L�M�H�u�H�E�WQH�ѺH�Ǹ�H����H�E�H�@XH��tFH�E�H�HXH�E�L�@@H�}�H�U�H�u�H�E�H��QM��I��H�ѺH�Ǹ�H���|H�}�tBH�E�H�H@H�}�H�U�L�E�H�u�H�E�H��QM��I��H�ѺH�Ǹ�H���3H�E�H�x@H�M�H�U�H�u�H�E�I��I��H�ѺH�Ǹ�H�E�H�H�@H�U�H�H��H�U�H��H���H�E�H�H�@H�U�H�H��H�U�H��H����@H�E�H�P H�E�H�H��H�E�H�E�H;E��H�E�H�@XH��tTH�}�tMH�E�H�HXH�E�L�@@H�E�H�PH�}�H�u�H�E�H��QM��I��H�ѺH�Ǹ�H���H�E�H�@XH��t=H�E�H�xXH�E�H�H@H�E�H�PH�u�H�E�I��I��H�ѺH�Ǹ��pH�}�t9H�E�H�x@H�E�H�PH�M�H�u�H�E�I��I��H�ѺH�Ǹ��0H�E�H�H@H�E�H�PH�u�H�E�I��H�ѺH�Ǹ�H�E�H�P�H�E�H�H�E�H;E�w��H�E�H������H�����UH��H��@H�}�H�u�H�U�H�M�L�E�D�M�H�E�=�ʭ�tH�E�H������H����2H�E�H�@H�E�D�E�H�}�H�M�H�U�H�u�H�E�E��I��H���k�����UH��H��PH�����H�������������E�������t!H�����H������H����!H�������H���H�E�H�}�u!H�����H����H�����H�����H��H���H�E��HDž���������H�����H����H�u�H�����A��I�ȹH������E�}�uoH�����H�M�H�����H���H�E�H�����H9E�t"H�����H����H����E��H�E�H���H�E�H�}��M�����H�E�H����E���UH��H��0H�}�H�u�H�U�H�}�t+H�E�H�@H��tH�E�H�@H�E�H�E�H���H�E��H�E�H��H���H�E�H�}�u��H�E�H���	�H��H�E�H����Unable to allocate memory for known-hosts collectionNo key type setUnable to allocate memory for known host entryUnable to allocate memory for host nameUnknown host name typeUnable to allocate memory for keyUnable to allocate memory for base64-encoded keyUnable to allocate memory for key typeUnable to allocate memory for comment[%s]:%dKnown-host write buffer too smallInvalid host informationFailed to parse known_hosts line (no host names)Failed to parse known_hosts line (unexpected length)Failed to parse known_hosts line (unexpectedly long salt)Failed to parse known_hosts line (key too short)ssh-dssssh-rsa|1|Unsupported type of known-host information storeFailed to parse known_hosts linerFailed to parse known hosts fileFailed to open fileUnsupported type of known-host entryUnable to allocate memory for base64-encoded host nameUnable to allocate memory for base64-encoded salt|1|%s|%s %s %s %s
|1|%s|%s %s %s
|1|%s|%s %s
%s %s %s %s
%s %s %s
%s %s
wWrite failedGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�A�C
�<kA�C
f\tA�C
o|�A�C
��^A�C
Y�`A�C
[�A�C
�VA�C
QQA�C
L<�A�C
�\{A�C
v|�A�C
���A�C
��KA�C
F��A�C
��A�C
A�C
<|A�C
w\sA�C
n|�A�C
��
nt�����-F
�?��F�K^�Okfu��������^� `/6?IU`qx��V��Q�A�����{
�(�CIOV|r~s����knownhost.cfree_hostknownhost_to_externaloldstyle_hostlinehashed_hostlinelibssh2_knownhost_init_libssh2_error_libssh2_list_initstrlen_libssh2_callocmemcpylibssh2_base64_decode_libssh2_base64_encode_libssh2_list_addlibssh2_knownhost_addlibssh2_knownhost_addcsnprintf_libssh2_list_firststrcmpEVP_sha1HMAC_InitHMAC_UpdateHMAC_FinalHMAC_CTX_cleanupmemcmp_libssh2_list_nextlibssh2_knownhost_checklibssh2_knownhost_checkplibssh2_knownhost_del_libssh2_list_removememsetlibssh2_knownhost_freestrncmplibssh2_knownhost_readlinelibssh2_knownhost_readfilefopenfgetsfcloselibssh2_knownhost_writelinelibssh2_knownhost_writefilefwritelibssh2_knownhost_get5
B��������d��������
��������&
53��������L��������c
Hp���������
x�����������������R���������������������������
������������������]
�j���������������������������
����������b
o�����������������
@��������8��������{��������
f$��������E
pR������������������
����������	��������K	��������|	���������	���������	 ���������	���������	!��������
"��������#
#��������B
$���������
��������%��������m
�z���������)���������*������������������%���������

��
��������

���������9���������
 ������������������
� ��������E��������
`���������
��,���������
��,���������
��$��������+
�8��������:
�G��������
���������"
*/��������J��������n-���������
����������0���������1���������
)���������
�"��������t����
@������������������W��������n
h{������������������
����������W
�d���������
�����������
���������/
�<���������
��������D
Q���������
����������
����������
p���������7
�D���������
�����������
 �/���������
)�����������������4���������
"����������%���������1��������-%��������C�������� @`n����� ��� �@A`��F
������ �@`~��.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @v@p,�
&�,�1�/90�!-B"W"�R@`9�
�$	�)�@;aagent.o/        1670404304  0     0     100644  10088     `
ELF>�#@@
UH��H��H��x�����H�E�H�}�u!H��x���H������H�����������H��x����PH��x����@��yH��x���H������H����{f�E�H�E�H�U�H�J�lH��H����E�H��x����@H�M��nH�Ή����t/H��x����@���H��x���H������H�������UH��H�� H�}�H�u�H�E�@ ����H�E�H�@��H�E���H���H�E�H�H�@HH�U�H�H��H�U�zH�u�I�ȹ��ЉE��}��u
�����
�}�yH�E�H�������H�����H�E��@ H�E�@ ��utH�E�H�H�@HH�U�H�I��H�U�H�RH�M�H�1H�M�y��ЉE��}��u
������}�yH�E�H�������H����iH�E��@ H�E�@ ����H�E�H�H�@PH�U�H�H��H�U�zH�u�I�ȹ��ЉE��}�y.�}��u
�����H�E�H������H�����H�E�H�����H�E�H�PH�E�H�H�@H�U�H�H��H�U�H�RH��H���H��H�E�H�PH�E�H�@H��u
������H�E��@ H�E�@ ��uoH�E�H�H�@PH�U�H�I��H�U�H�RH�M�H�qH�M�y��ЉE��}�y(�}��u�����+H�E�H�������H����H�E��@ ���UH��H�� H�}�H�E�@����E��}��uH�E�H����H�������UH��H��pH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�H�E�H�E�H��H�E�H�E�H�@@H�E�H�E�H�P0H�E�H�H��
H�E�H�E�@ ����H�E�H�@H�M�H�U�H��H���H��H�E�H�H�E�H�H�E�H�E�H�H��uH�E�������H����H�E�H�PH�U��
H�E�H�P0H�E�H�H(H�E�H��H���H�U�H�M�H�E�H��H���H�EȾH���H�U�H�E�H�H)�H��H��H�E�H�PH�E��@ H�E�H��<
tH�E������H����jH�E�H�@H��uH�E������H����BH�E�H�@H�@H�M�H�U�H��H��ЉE��}���H�E�H�@H�M�H�U�H�H��H���H�E�H�H�E�H�@H�E�H�E�H�@H�E�H�m�H�}�y�E�����_H�E��<t�E�����HH�E�H��H�E�H�m�H�}�y�E�����$H�E�H��H�E�H�m�H�}�y�E�����H�E�H�����H�E�H�E�H��H�E�H�E�H)E�H�}�y�E������H�U�H�E�H�H�E�H�m�H�}�y�E�����H�E�H�����H�E�H�H�E�H��H�E�H�U�H�E�H�H)�H��H�E�H�}�y	�E�����ZH�E�H�@H�M�H�U�H�H��H���H��H�E�H�H�E�H�H��u	�E������ H�E�H�H�M�H�E�H�H��H�����H�E�H�@H�M�H�U�H�H��H���H�E�H�H�E�H�@H�M�H�U�H�RH��H���H�E�H�@�M�H�E����H�����UH��H��PH�}�H�E�H��H�E��E�H�E؋@ ��u"H�E�H�U�H�H�E�H�@H�E��@ H�E�H��<tH�E�H������H����4H�E�H�@H��uH�E�H������H����	H�E�H�@H�@H�M�H�U�H��H��ЉE�}���H�E�H�H�E�H�@H�E�H�E�H�@H�E�H�m�H�}�y�E�����[H�E��<t�E�����DH�E�H�m�H�}�y�E�����'H�E�H�����H�E�H�E���H�m�H�}�y�E������H�E�H�H�@H�U�H�H�ֿ@��H�E�H�}�u�E����H�E�H�����H�E�H�P0H�E�H�U�H�E�H�@0H)�H��H�E�H�}�y-�E����H�E�H�H�@H�U�H�H��H�U�H��H����[H�E�H�H�@H�U�H�H��H�U�H�R0H��H���H��H�E�H�P(H�E�H�@(H��u-�E���H�E�H�H�@H�U�H�H��H�U�H��H�����H�E�H�P0H�E�H�@(H�M�H��H���H�E�H�@0HE�H�m�H�}�yR�E����H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H��H����hH�E�H�����H�E�H�E�H�E�H)E�H�}�yR�E����H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H��H�����H�E�H�H�@H�U�H�H��H�U�H��H��H���H��H�E�H�P8H�E�H�@8H��uO�E���H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H��H����dH�E�H�P8H�E�H��H�U�H�E�H�@8H�M�H��H���H�E�HE�H�E�H�U�H��HH��H���H�E�H�P�H�U�H���������H�E�H�H�@H�U�H�H��H�U�H�RH��H���H�E�H�@H�E�H��M���H�����UH��H�� H�}�H�E�H��HH���H�E��H�E�H���H�E�H�E�H�H�@H�U�H�H��H�U�H�R(H��H���H�E�H�H�@H�U�H�H��H�U�H�R8H��H���H�E�H�H�@H�U�H�H��H�U�H��H���H�E�H�E�H�}��r���H�E�H��HH������UH��H�}�H�E�H��H�E�H�E����;H�E�H�U�H�PH�E�]�UH��H�� H�}�H�E�XH���H�E�H�}�uH�E������H�����*H�E��@����H�E�H�U�H�H�E�H��HH���H�E���UH��H�� H�}��E������E��B�E�H�H��HH�H�E�H�PH�E�H�@H�H�U�H��ЉE��}�u���E��E�H�H��HH�H��u��E���UH��H��H�}�H�E�H���(�H���H�E�H�����H�E�H���6�����UH��H��0H�}�H�u�H�U�H�}�t+H�E�H�@H��tH�E�H�@H�E�H�E�H���H�E��H�E�H��HH���H�E�H�}�u��H�E�H���1���H��H�E�H����UH��ATSH��@H�}�H�u�H�U�H�E�H�E�H�E�H�������u*H�E�H���(�H���H�E�H�PH�E�H�P@��H�E�H�E�L�`H�E�H�XH�E�H�����H�E�H�H�u�H��H�U�RA�M��H�ى�H���H���E�}��u4H�E�H������t#H�E�H�H�U�H��H����E�}��w����E�H�e�[A\]�UH��H��H�}�H�E�H�@H��t#H�E��@���tH�E�H�@H�@H�U�H�������UH��H��H�}�H�E��@���tH�E�H���H�E�H�����H�E�H�H�@H�U�H�H��H�U�H��H��А��SSH_AUTH_SOCKno auth sock variablefailed creating socketfailed connecting with agentagent send failedagent recv failedfailed closing the agent socketUnixout of memoryillegal requestagent not connectedagent sign failureillegal agent requestagent list id failedUnable to allocate space for agent connectionGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�A�C
<�A�C
�\EA�C
@|�A�C
���A�C
���A�C
��0A�C
k�qA�C
lzA�C
u<@A�C
{\�A�C
� |�A�C
G����CA�C
~ �TA�C
O�	�0�EF  Y�����dY�z
0	��*��������*>QdO
qw��
z�:@��z������1�CJ?Tagent.cagent_connect_unixagent_transact_unixagent_disconnect_unixsupported_backendsagent_signagent_free_identitiesagent_publickey_to_externalgetenv_libssh2_errorstrncpyclose_libssh2_htonu32_libssh2_ntohu32agent_ops_unix_libssh2_store_str_libssh2_store_u32memcpy_libssh2_list_add_libssh2_list_first_libssh2_list_next_libssh2_list_initlibssh2_agent_init_libssh2_calloclibssh2_agent_connectlibssh2_agent_list_identitiesmemsetlibssh2_agent_get_identitylibssh2_agent_userauthtimestrlen_libssh2_userauth_publickey_libssh2_wait_socketlibssh2_agent_disconnectlibssh2_agent_free
��������2
?��������X���������
$�������������������������������������
;��������E���������
X���������
X&���������
j������������������u
j�������������������
�����������
�������������������������������������,
�9��������T
�a��������P�����������������A���������
����������

���������8
�E�����������������U	��������7
���������
��������������������������I
S��������q�����������������
 ��������h
"��������|

�
���������
 ���������
() \%��������������������������E%��������_(��������)���������
��*���������+��������_,��������� �( @`������Y�
O
 �
@:`z�����?.symtab.strtab.shstrtab.rela.text.rela.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @�@(�+�@ &@�!x1 6 F>0f-G�\��W@0"P	xP	�]�#fopenssl.o/      1670404304  0     0     100644  15984     `
ELF>0;@@
UH��SH��8H�}�H�u�H�U�H�M�L�E�L�M��H��H�E�H�H�E�H��H�C(H�E�H�H�P(H�E؉�H�E��H���H�E�H��H�C H�E�H�H�P H�Eȉ�H�EЉ�H���H�}��H�E�H��H�C0H�E�H�H�P0H�E��H�E���H���H�E�H��H�C8H�E�H�H�P8H�E ��H�E��H���H�E�H��H�C@H�E�H�H�P@H�E0��H�E(��H���H�E�H��H�CHH�E�H�H�PHH�E@��H�E8��H���H�E�H��H�CPH�E�H�H�PPH�EP��H�EH��H���H�E�H��H�CXH�E�H�H�PXH�E`��H�EX��H����H��8[]�UH��H��PH�}�H�u�H�U�H�M�L�E�H�U�H�M�H�E�H��H���H�Eȉ�H�M�H�U�H�E�I��A��H�ѺH�ƿ@��E��}�u���������UH��SH��8H�}�H�u�H�U�H�M�L�E�L�M��H��H�E�H�H�E�H��H�CH�E�H�H�PH�E؉�H�E��H���H�E�H��H�C H�E�H�H�P H�Eȉ�H�EЉ�H���H�E�H��H�C(H�E�H�H�P(H�E��H�E���H���H�E�H��H�C0H�E�H�H�P0H�E ��H�E��H���H�}0t/H�E�H��H�C8H�E�H�H�P8H�E0��H�E(��H����H��8[]�UH��H��PH�}�H�u�H�U�H�M��H�E�H�U�H�E��H����H�E�H�E�H�U�H�JH�¾H���H�U�H�M�H�E�H��H���H�M�H�U�H�E�H����E�H�E�H���H�E�H����}�u���������UH��H��0H�}�H�u�H�U�H�M�D�E�H�E�H���H�E��H�Nju�H�M�H�U�H�E�A��H��H�����������UH��H��`H�}�H�u��U�H�M�L�E�H�E���H�U�H�u�H�E�H����E��}�uH�U�H�M�H�E�H��H����}�������UH��H��0H�}�H�u�H�U؉M�H�E�@h��t�� t��u!�H�E�� �H�E���H�E��
����H�E�H�}�u
������H��H�E�H���H�E�H���H��uH�E�H�����H�E�H���H�U�H�u��H�����t&H�E�H���H���H�E�H�����MH�E�H����H���H�E�H��H�E�H�PH�H�H�QH�U�H�E�H��H������UH��H��PH�}�H�u�H�U�H�M�H�E�H���H�E�H�E��E�H�}�t
���H�}�u
���H�E�H��H�E�H���H�U�H�u�A�H�����t
��H�E��4H�E�H�PH�U��0H�U�H�E�H��H�E�H�PH�U�1Ή�H�E�H�}�v�H�E��H�}�t6H�m�H�U�H�E�H�H��PH�u�H�M�H�H���<�t������UH��H�� H�}�H�E�H���H�E�H�}�u��GH�E�H���H��t&H�E�H���H���H�E�H���H���H�E�H������UH��H�}�H�u�H�E��@H�E���H�E�PH�E��@H�E�H�@H�E�H�@ H�E�H�@(H�E�]�UH����u�������]�UH����u���d�����]�UH����u�� �>�����]�UH������]�UH��H��0H�}�u�U�H�M�H�E�H����E��E�;E�	�E���E��E�Hc�H�M�H�E�H��H����E�Hc�H�E�H���E���UH��H��0H�}�H�u�H�U�H�M�H�E�H�H�EؾH���H�E�H�}�u������IH�U�H�}�H�E�H�Ѻ���H��H�E�H�H�E�H���H�E�H�H��t���������UH��H��0H�}�H�u�H�U�H�M�H�E��H�M�H�U�H�u�H�E�H���2�����UH��H��0H�}�H�u�H�U�H�M�H�E��H�M�H�U�H�u�H�E�H������UH��H��@H�}�H�u�H�U�H�M�L�E�L�M�H�E�H����E�H�E�H�@H�U�M��H��H���H�E�H�}�u������rH�EЉ�H�u�H�M�H�U�H�E�I��I��H�щ�H�ƿ@��E�}�uH�E�H�@H�M�H�U�H��H��и�����H�E�H�U�H��E��H�E�H����UH��H��0H�}�H�u�H�U�H�M�H�U�H�E�H���H�E�H�}�u
������H�E�H�H������P��H���E�}�~�}�~H�E�H���������H�E�H�@H������P��H���E�}�~�}�~H�E�H���������sH�Eк(�H����+E�Hc�H�E�H�H�E�H�H��H����+E�H�H�PH�E�H�H�E�H�@H��H���H�E�H������UH��H��H�}�H�E�H�����H��H�E�H��H�����UH��H��PH�}�H�u�H�U�H�E�H�����H��H�E�H��H���H�U�H�M�H�E�H��H���H�M�H�EкH��H������UH��H��H�}�H�E�H�����H��H�E�H��H�����UH��H��PH�}�H�u�H�U�H�E�H�����H��H�E�H��H���H�U�H�M�H�E�H��H���H�M�H�EкH��H������UH��H��0H�}�H�u�U�H�E�H�E�H�E�H�E��H�E�H�PH�E�H��H���H�E�H�����x!�m��E�Hc�H�E�H�HH�E�H��H����E�H�U�H����H����E�Hc�H�E�H���UH��H��@H�}�H�u�H�U�H�E�H�@(H������P��H�����E�H�E�H�@ H������P��H�����E��E��P�E��H�H�E�H�E�H�@H�M�H�U�H��H���H�E�H�}�u
��H�E�H�E�H�E�H���H�E�H�E��H���H�E�H�E�H�H(�U�H�E�H��H�����H�E�H�E�H�H �U�H�E�H��H���c���H�E�H�E�H+E�H��H�E�H�H�E���UH��H��PH�}�H�u�H�U�H�E�H�@H������P��H�����E�H�E�H�@ H������P��H�����E�H�E�H�@(H������P��H�����E�H�E�H�@0H������P��H�����E�E��P�E�ЍP�E�ЍP�E��H�H�E�H�E�H�@H�M�H�U�H��H���H�E�H�}�u
���H�E�H�E�H�EؾH���H�E�H�Eغ�H���H�E�H�E�H�H�U�H�E�H��H������H�E�H�E�H�H �U�H�E�H��H�����H�E�H�E�H�H(�U�H�E�H��H������H�E�H�E�H�H0�U�H�E�H��H�����H�E�H�E�H+E�H��H�E�H�H�E���UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E�H���H�E�H�}���H�E�H�@H�U�H�ֿ��H�E�H�}�tzH�U�H�M�H�E�H��H�����H�E�H�}�t[H�E�H���H�E���H���H�E�H�U�H�H�E�H�H�E�H�U�H�H�U�H�E�H���O�����H�}�tH�E�H���H�}�tH�E�H�@H�M�H�U�H��H���H�Eغ�����H�����UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�H�E�H�E�H�E�H���H�E�H�}���H�E�H�@H�U�H�ֿ��H�E�H�}�tzH�U�H�M�H�E�H��H�����H�E�H�}�t[H�E�H���H�E���H���H�E�H�U�H�H�E�H�H�E�H�U�H�H�U�H�E�H���O�����H�}�tH�E�H���H�}�tH�E�H�@H�M�H�U�H��H���H�Eغ�����H�����UH��H��PH�}�H�u�H�U�H�M�L�E�L�M�H�E��H���H�E�H�}�uH�Eغ��H������H��u�H�E���H���H�E�H�M��H���H�E�H�E�H���H�}�uH�Eغ��H����H�E���t��tt-�VL�E�H�}�H�M�H�U�H�u�H�E�M��I��H������E��EL�E�H�}�H�M�H�U�H�u�H�E�M��I��H������E��H�Eغ��H����E��H�E�H����E���rsha1md5ssh-rsassh-dssUnable to allocate memory for private key dataUnable to extract public key from private key file: Unable to open private key filedesUnable to extract public key from private key file: Wrong passphrase or invalid/unrecognized private key file formatUnable to extract public key from private key file: Unsupported private key file formatGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx� �A�C
E��@wA�C
r `.A�C
E�$��A�C
��XA�C
S�aA�C
\�OA�C
J(A�C
#$sA�C
nDYA�C
Td&A�C
a�&A�C
a�&A�C
a�A�C
Q�dA�C
_�A�C
�$?A�C
zD?A�C
zd�A�C
��9A�C
4�6A�C
q�nA�C
i�6A�C
qnA�C
i$�A�C
�D'A�C
"d�A�C
��4A�C
/�4A�C
/�eA�C
`��O&(*Ns:�YGX\`Xq�X��d�	��d
���
'����44�-5<F�w_Rnlw6.��d����X���va%5EU9\l�����&@&f&3�IP]f�	?���	?��
���
9&2>KR\6n~�����6��n���#5>@eXm���openssl.caes_ctr_initaes_ctr_do_cipheraes_ctr_cleanupmake_ctr_evpaes_ctr_cipher.14497aes_ctr_cipher.14501aes_ctr_cipher.14505passphrase_cbread_private_key_from_filewrite_bngen_publickey_from_rsagen_publickey_from_dsagen_publickey_from_rsa_evpgen_publickey_from_dsa_evp_libssh2_rsa_newRSA_newBN_newBN_bin2bn_libssh2_rsa_sha1_verifylibssh2_sha1RSA_verify_libssh2_dsa_newDSA_new_libssh2_dsa_sha1_verifyDSA_do_verifyBN_clear_free_libssh2_cipher_initEVP_CIPHER_CTX_initEVP_CipherInit_libssh2_cipher_cryptEVP_CiphermemcpyEVP_aes_128_ecbEVP_aes_192_ecbEVP_aes_256_ecbmallocEVP_EncryptInitEVP_CIPHER_CTX_set_paddingEVP_CIPHER_CTX_set_app_dataEVP_CIPHER_CTX_get_app_dataEVP_EncryptUpdateEVP_CIPHER_CTX_cleanup_libssh2_EVP_aes_128_ctr_libssh2_EVP_aes_192_ctr_libssh2_EVP_aes_256_ctr_libssh2_init_aes_ctrstrlenBIO_new_fileBIO_free_libssh2_rsa_new_privatePEM_read_bio_RSAPrivateKey_libssh2_init_if_needed_libssh2_dsa_new_privatePEM_read_bio_DSAPrivateKey_libssh2_rsa_sha1_signRSA_sizeRSA_sign_libssh2_dsa_sha1_signDSA_do_signBN_num_bitsDSA_SIG_freememsetBN_bn2binlibssh2_sha1_initEVP_MD_CTX_initEVP_get_digestbynameEVP_DigestInitEVP_DigestUpdateEVP_DigestFinallibssh2_md5_initlibssh2_md5memmove_libssh2_htonu32EVP_PKEY_get1_RSARSA_free_libssh2_errorEVP_PKEY_get1_DSADSA_free_libssh2_pub_priv_keyfileEVP_get_cipherbynameOpenSSL_add_all_ciphersBIO_ctrlPEM_read_bio_PrivateKeyEVP_PKEY_free"��������8��������[��������g��������������������������������������������������������������"��������.��������Q��������]����������������������������������������������������X��������n����������������������������������������������������������������������1��������T��������}���������������������������������������������!���������"��������"��������B$��������h%���������'���������(��������)��������*��������+��������5,��������T,��������~-���������.���������-���������-���������/��������0��������F1���������2��������b1���������3���������-���������-����������&N )
:
FdO
``
`l�u
��
��4���������5���������6���������8���������(��������.	

6	9��������\	
�y	:���������	<�	=���������	?�	=��������=
A���������
B��������D��������0E��������YF��������sE���������F���������G���������H��������H��������F��������0J��������5

:K��������LL��������nJ��������s

xK���������L���������M���������N���������J���������

�K���������L��������
J��������



K��������.
L��������E
M��������]
N���������
H���������
Q���������
R��������E��������:E���������R���������

�(��������=E��������aE���������E���������E��������$R��������7

?(��������S��������nT��������|

�(���������T���������

 U��������DV���������W���������

�(��������W��������-

 :U��������e

m9���������

P�U���������

��Y���������Z���������[���������\���������:���������

�	U��������

 �U���������]�������� D�d6�d��v��&(NH�h�@�f����	(�	H�	h
��
��R���(d
H�
h����@.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @�@)�
&�, 1x90x-B�W��R@�7�
��	X#��:apem.o/          1670404304  0     0     100644  3528      `
ELF>�
@@UH��H�� H�}��u�H�U�H�U�M�H�E���H���H��u
������H�E����t8H�E�H���H�P�H�E�H��<
uH�E�H���H�P�H�E�H��H�E����t8H�E�H���H�P�H�E�H��<
uH�E�H���H�P�H�E�H�����UH��H���H��X���H��P���H��H���H��@���L��8���L��0���H�E��E�ƅ`���H��@���H��`�����H��������t
������H��P���H��`���H��H�����u�ƅ`�����`�������H��`���H���H�E�H�}�t'H��X���H�@H��X����u�H�M�H�H�M�H����$H��X���H�@H��X����u�H�M�H�H��H���H�E�H�}�u�E�����U�H�E�H�H�U�H��`���H��H���H�E�H�E�H�E�E�ƅ`���H��@���H��`�����H��������t	�E���jH��H���H��`���H��H����������H�}�u������c�}�H�M�H��0���H��8���H��X���A��H�����t	�E����E�H�}�tH��X���H�@H��X���H�U�H��H��ЋE���UH��H�}�u�H�U؃}�u
������H�E����H�E؉H�E؋��vgH�E؋���E�H�E�H�����H�E؉�E���9E�s������h�}�v6H�E؋����H�E؉H�E؋H�E�H�����	�H�E؉��E��E����E��}�wH�E؋�E�Ѓ�9E�s�������E�]�UH��H�� H�}�H�u�H�E���u
������H�E�H��<0t
������H�E�H�H�PH�E�H�H�E��P�H�E�H�E�H�E�H�H�U���H������E��}�x�U��E��H�E�9�t������,H�E�H��E�H�H�H�E�H�H�E��E�)�H�E����UH��H��0H�}�H�u�H�U�H�M�H�E���u
�������H�E�H��<t
�������H�E�H�H�PH�E�H�H�E��P�H�E�H�E�H�E�H�H�U���H������E��}�x�U��E��H�E�9�v������jH�E�H��E�H�H�H�E�H�H�E��E�)�H�E�H�E�H�H�E�H��U�H�EЉH�E�H��U���H�H�E�H�H�E��E�)�H�E����GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx��A�C
�<A�C
\�A�C
�|�A�C
��A�C
	����!'.�AHOe���xpem.creadlineread_asn1_lengthfgetsstrlen_libssh2_pem_parsestrcmpmemcpylibssh2_base64_decode_libssh2_pem_decode_sequence_libssh2_pem_decode_integer$
��������J��������h��������������������������M
��������v����������������[
����������������� @�`����x.symtab.strtab.shstrtab.rela.text.data.bss.comment.note.GNU-stack.rela.eh_frame @�@	�	&�,�10�-:�O��J@�	x	��

	`�h
Ykeepalive.o/    1670404304  0     0     100644  2312      `
ELF>�@@
UH��H�}��u�U�}�uH�E�ǀ���
�U�H�E������}�����H�E������]�UH��H��@H�}�H�u�H�Eȋ�����uH�}�t
H�E���� ��H�E�H�E�H����H�Eȋ���H�H�H9E���H�H�H�E�H�U�H�H�E��E�H�E�H�Eȋ���H�E�H���T�H�U�H�u�H�E�A��H����E�}�t!�}��tH�EȺ�����H����E��]H�E�H�U�H����H�}�tBH�Eȋ���H�E���0H�}�t)H�E�H������H�E�)‰Љ�H�Eȋ����H�E�����Unable to send keepalive messagePkeepalive@libssh2.orgWGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�HA�C
C<[A�C
V�
H&H[=BZkeepalive.clibssh2_keepalive_configlibssh2_keepalive_sendtime_libssh2_transport_send_libssh2_error�����������%�-�5��������.
;
�������� @H.symtab.strtab.shstrtab.rela.text.data.bss.rodata.comment.note.GNU-stack.rela.eh_frame @�@p�
&�,�1�=90%-BRWXXR@00
�P		i`aglobal.o/       1670404304  0     0     100644  2120      `
ELF>H@@UH��H���}����u�E�����u
�������E�����UH����t�������]�UH����u
���]�GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-4)zRx�NA�C
I<#A�C
^\A�C
V�
3N@bxN#�qglobal.c_libssh2_initialized_libssh2_init_flagslibssh2_initOPENSSL_add_all_algorithms_noconf_libssh2_init_aes_ctrlibssh2_exit_libssh2_init_if_needed
�������� ��������%��������+��������4��������:CT��������^��������g��������w���������
�������� @N`q.symtab.strtab.shstrtab.rela.text.data.bss.comment.note.GNU-stack.rela.eh_frame @�@� 	&�,�10�-:�OxJ@�H	xh

	���YPK-{FZ�إv..include/libssh2_publickey.hnu�[���PK-{FZ�e7���yinclude/libssh2.hnu�[���PK-{FZ��#Md=d=~�include/libssh2_sftp.hnu�[���PK-{FZ�@��.(share/man/man3/libssh2_session_disconnect_ex.3nu�[���PK-{FZIxݿyy&�share/man/man3/libssh2_knownhost_get.3nu�[���PK-{FZ���DRR$tshare/man/man3/libssh2_sftp_rename.3nu�[���PK-{FZZ,'�$share/man/man3/libssh2_sftp_seek64.3nu�[���PK-{FZ����#share/man/man3/libssh2_trace.3nu�[���PK-{FZx#����'�'share/man/man3/libssh2_sftp_rename_ex.3nu�[���PK-{FZu�~���!0share/man/man3/libssh2_scp_recv.3nu�[���PK-{FZM=����$4share/man/man3/libssh2_scp_send_ex.3nu�[���PK-{FZ��/�%E:share/man/man3/libssh2_channel_free.3nu�[���PK-{FZu>��kk,�=share/man/man3/libssh2_channel_request_pty.3nu�[���PK-{FZ~g2j��(u@share/man/man3/libssh2_knownhost_check.3nu�[���PK-{FZ=�?nn#qIshare/man/man3/libssh2_agent_init.3nu�[���PK-{FZ����00&2Mshare/man/man3/libssh2_sftp_closedir.3nu�[���PK-{FZ�
��))$�Oshare/man/man3/libssh2_sftp_unlink.3nu�[���PK-{FZy����(5Rshare/man/man3/libssh2_sftp_last_error.3nu�[���PK-{FZ� oo*~Ushare/man/man3/libssh2_channel_subsystem.3nu�[���PK-{FZ�6�Ϥ�%GXshare/man/man3/libssh2_hostkey_hash.3nu�[���PK-{FZ���((#@\share/man/man3/libssh2_sftp_mkdir.3nu�[���PK-{FZUy>(OO�^share/man/man3/libssh2_exit.3nu�[���PK-{FZX����-W`share/man/man3/libssh2_publickey_list_fetch.3nu�[���PK-{FZGK��+{ashare/man/man3/libssh2_session_last_errno.3nu�[���PK-{FZN��[[)�cshare/man/man3/libssh2_channel_wait_eof.3nu�[���PK-{FZ;f��#�fshare/man/man3/libssh2_scp_send64.3nu�[���PK-{FZj���'�lshare/man/man3/libssh2_publickey_init.3nu�[���PK-{FZ�͵���#�mshare/man/man3/libssh2_sftp_write.3nu�[���PK-{FZ�ӆ{{/�yshare/man/man3/libssh2_channel_forward_listen.3nu�[���PK-{FZ�f�5KK&�|share/man/man3/libssh2_channel_write.3nu�[���PK-{FZ(2q��� vshare/man/man3/libssh2_version.3nu�[���PK-{FZ�"�ȋ�*��share/man/man3/libssh2_poll_channel_read.3nu�[���PK-{FZ��f��1x�share/man/man3/libssh2_channel_request_pty_size.3nu�[���PK-{FZ�],UU&q�share/man/man3/libssh2_agent_connect.3nu�[���PK-{FZ�t��``-�share/man/man3/libssh2_channel_write_stderr.3nu�[���PK-{FZSA��'ُshare/man/man3/libssh2_sftp_unlink_ex.3nu�[���PK-{FZ�I���-�share/man/man3/libssh2_session_get_blocking.3nu�[���PK-{FZ#	hh�share/man/man3/libssh2_free.3nu�[���PK-{FZXL9��(͙share/man/man3/libssh2_session_init_ex.3nu�[���PK-{FZO�_}}*��share/man/man3/libssh2_channel_setenv_ex.3nu�[���PK-{FZ�cc,Ѧshare/man/man3/libssh2_channel_window_read.3nu�[���PK-{FZ@����5��share/man/man3/libssh2_channel_handle_extended_data.3nu�[���PK-{FZ����+��share/man/man3/libssh2_knownhost_readline.3nu�[���PK-{FZchF>>#�share/man/man3/libssh2_sftp_rmdir.3nu�[���PK-{FZ	�Lӫ�6~�share/man/man3/libssh2_channel_handle_extended_data2.3nu�[���PK-{FZ`��g==&��share/man/man3/libssh2_sftp_fsetstat.3nu�[���PK-{FZs��||0"�share/man/man3/libssh2_channel_process_startup.3nu�[���PK-{FZ.��+��share/man/man3/libssh2_session_banner_get.3nu�[���PK-{FZ��T
��"x�share/man/man3/libssh2_sftp_seek.3nu�[���PK-{FZ!y�Umm,d�share/man/man3/libssh2_knownhost_writefile.3nu�[���PK-{FZ��TT,-�share/man/man3/libssh2_channel_read_stderr.3nu�[���PK-{FZ`=���,��share/man/man3/libssh2_session_set_timeout.3nu�[���PK-{FZ�y���4��share/man/man3/libssh2_userauth_publickey_fromfile.3nu�[���PK-{FZ��([PP#��share/man/man3/libssh2_banner_set.3nu�[���PK-{FZ'+88!V�share/man/man3/libssh2_scp_send.3nu�[���PK-{FZ|f��)��share/man/man3/libssh2_keepalive_config.3nu�[���PK-{FZޕ���	�	)��share/man/man3/libssh2_knownhost_checkp.3nu�[���PK-{FZ�f'c����share/man/man3/libssh2_poll.3nu�[���PK-{FZ���844#	�share/man/man3/libssh2_sftp_fstat.3nu�[���PK-{FZ-dm���)��share/man/man3/libssh2_agent_disconnect.3nu�[���PK-{FZ|�e��+�share/man/man3/libssh2_userauth_publickey.3nu�[���PK-{FZ�ww/�share/man/man3/libssh2_channel_forward_cancel.3nu�[���PK-{FZ�D�.

$��share/man/man3/libssh2_sftp_rewind.3nu�[���PK-{FZ�LL&share/man/man3/libssh2_channel_shell.3nu�[���PK-{FZ�6���
�
%�share/man/man3/libssh2_sftp_statvfs.3nu�[���PK-{FZ��N^��1�
share/man/man3/libssh2_session_block_directions.3nu�[���PK-{FZ��Bb��-�share/man/man3/libssh2_userauth_password_ex.3nu�[���PK-{FZ��v�
�
&�share/man/man3/libssh2_sftp_fstat_ex.3nu�[���PK-{FZ|Õ���+�)share/man/man3/libssh2_channel_x11_req_ex.3nu�[���PK-{FZ˧l>==&0share/man/man3/libssh2_knownhost_del.3nu�[���PK-{FZ�?&��
�
/�3share/man/man3/libssh2_session_supported_algs.3nu�[���PK-{FZ~��[��'�>share/man/man3/libssh2_knownhost_free.3nu�[���PK-{FZ,q006�@share/man/man3/libssh2_userauth_keyboard_interactive.3nu�[���PK-{FZR*��)�Dshare/man/man3/libssh2_session_abstract.3nu�[���PK-{FZ���YY'�Gshare/man/man3/libssh2_channel_setenv.3nu�[���PK-{FZ����%jJshare/man/man3/libssh2_session_free.3nu�[���PK-{FZ��N��2WMshare/man/man3/libssh2_channel_forward_listen_ex.3nu�[���PK-{FZI;�_jj+�Tshare/man/man3/libssh2_session_disconnect.3nu�[���PK-{FZ�vNL00#uWshare/man/man3/libssh2_sftp_fsync.3nu�[���PK-{FZ�o�D**0�\share/man/man3/libssh2_channel_window_write_ex.3nu�[���PK-{FZD!e���,�`share/man/man3/libssh2_publickey_remove_ex.3nu�[���PK-{FZ82����+�ashare/man/man3/libssh2_session_banner_set.3nu�[���PK-{FZ�sNuaa&�fshare/man/man3/libssh2_sftp_mkdir_ex.3nu�[���PK-{FZ=�'�/Flshare/man/man3/libssh2_channel_request_pty_ex.3nu�[���PK-{FZ.�����(�rshare/man/man3/libssh2_session_hostkey.3nu�[���PK-{FZ��+�ushare/man/man3/libssh2_session_last_error.3nu�[���PK-{FZ�zGV��":zshare/man/man3/libssh2_sftp_read.3nu�[���PK-{FZ�gi&e�share/man/man3/libssh2_publickey_add.3nu�[���PK-{FZh=��hh%��share/man/man3/libssh2_sftp_readdir.3nu�[���PK-{FZ�D/{�share/man/man3/libssh2_userauth_authenticated.3nu�[���PK-{FZ�u���%�share/man/man3/libssh2_sftp_symlink.3nu�[���PK-{FZ�s�$��-�share/man/man3/libssh2_channel_direct_tcpip.3nu�[���PK-{FZ+M��88#َshare/man/man3/libssh2_sftp_lstat.3nu�[���PK-{FZv�I�PP7d�share/man/man3/libssh2_channel_receive_window_adjust2.3nu�[���PK-{FZt;]���&�share/man/man3/libssh2_channel_close.3nu�[���PK-{FZ�#�QQ'e�share/man/man3/libssh2_knownhost_init.3nu�[���PK-{FZ��.XX,
�share/man/man3/libssh2_knownhost_writeline.3nu�[���PK-{FZ���d  &��share/man/man3/libssh2_sftp_fstatvfs.3nu�[���PK-{FZ{����,7�share/man/man3/libssh2_publickey_list_free.3nu�[���PK-{FZ��,��	�	&X�share/man/man3/libssh2_knownhost_add.3nu�[���PK-{FZ�7�%}�share/man/man3/libssh2_session_init.3nu�[���PK-{FZqZ		%�share/man/man3/libssh2_sftp_stat_ex.3nu�[���PK-{FZ�RÕ�&a�share/man/man3/libssh2_sftp_readlink.3nu�[���PK-{FZ�"��LL(L�share/man/man3/libssh2_channel_x11_req.3nu�[���PK-{FZ>�԰��6�share/man/man3/libssh2_channel_receive_window_adjust.3nu�[���PK-{FZ���
�
(R�share/man/man3/libssh2_sftp_symlink_ex.3nu�[���PK-{FZe�Q((#��share/man/man3/libssh2_sftp_close.3nu�[���PK-{FZ����??%�share/man/man3/libssh2_channel_read.3nu�[���PK-{FZ����/��share/man/man3/libssh2_channel_forward_accept.3nu�[���PK-{FZͺ4h>>-��share/man/man3/libssh2_channel_flush_stderr.3nu�[���PK-{FZ��`��+��share/man/man3/libssh2_publickey_shutdown.3nu�[���PK-{FZ�0�s00%��share/man/man3/libssh2_sftp_opendir.3nu�[���PK-{FZٗ����"+�share/man/man3/libssh2_sftp_tell.3nu�[���PK-{FZYS[qr
r
'�share/man/man3/libssh2_knownhost_addc.3nu�[���PK-{FZYs�)��share/man/man3/libssh2_publickey_add_ex.3nu�[���PK-{FZP#t��
�
(/�share/man/man3/libssh2_sftp_readdir_ex.3nu�[���PK-{FZ�>��QQ7�share/man/man3/libssh2_userauth_publickey_fromfile_ex.3nu�[���PK-{FZ8�^.��(�share/man/man3/libssh2_session_methods.3nu�[���PK-{FZ����*	share/man/man3/libssh2_userauth_password.3nu�[���PK-{FZL�Ux��,
share/man/man3/libssh2_channel_wait_closed.3nu�[���PK-{FZ��E''-[share/man/man3/libssh2_session_set_blocking.3nu�[���PK-{FZ���-�share/man/man3/libssh2_channel_set_blocking.3nu�[���PK-{FZ'���&share/man/man3/libssh2_base64_decode.3nu�[���PK-{FZG�>�::",share/man/man3/libssh2_sftp_stat.3nu�[���PK-{FZ�TT(�share/man/man3/libssh2_channel_read_ex.3nu�[���PK-{FZth�Ƀ�%d$share/man/man3/libssh2_session_flag.3nu�[���PK-{FZ��j���.<(share/man/man3/libssh2_agent_list_identities.3nu�[���PK-{FZk~�])	)	9O+share/man/man3/libssh2_userauth_keyboard_interactive_ex.3nu�[���PK-{FZ�j��"")�4share/man/man3/libssh2_channel_write_ex.3nu�[���PK-{FZ/J��^^%\<share/man/man3/libssh2_channel_exec.3nu�[���PK-{FZ�����+?share/man/man3/libssh2_agent_get_identity.3nu�[���PK-{FZ>֥)Dshare/man/man3/libssh2_channel_flush_ex.3nu�[���PK-{FZ���GG-Hshare/man/man3/libssh2_channel_open_session.3nu�[���PK-{FZkC���/#Kshare/man/man3/libssh2_channel_window_read_ex.3nu�[���PK-{FZy��,IOshare/man/man3/libssh2_session_method_pref.3nu�[���PK-{FZ�{׊�,'Ushare/man/man3/libssh2_session_get_timeout.3nu�[���PK-{FZ?�c��$
Xshare/man/man3/libssh2_channel_eof.3nu�[���PK-{FZ��yee'\Zshare/man/man3/libssh2_keepalive_send.3nu�[���PK-{FZ��MM"]share/man/man3/libssh2_sftp_init.3nu�[���PK-{FZyʣ~))&�bshare/man/man3/libssh2_channel_flush.3nu�[���PK-{FZ/���46eshare/man/man3/libssh2_userauth_hostbased_fromfile.3nu�[���PK-{FZ�f�a��&�hshare/man/man3/libssh2_sftp_shutdown.3nu�[���PK-{FZ��,��5�kshare/man/man3/libssh2_channel_ignore_extended_data.3nu�[���PK-{FZiY�.��0�nshare/man/man3/libssh2_channel_direct_tcpip_ex.3nu�[���PK-{FZ}��	AA?tshare/man/man3/libssh2_init.3nu�[���PK-{FZQ0���4�vshare/man/man3/libssh2_channel_request_pty_size_ex.3nu�[���PK-{FZ�����+xshare/man/man3/libssh2_knownhost_readfile.3nu�[���PK-{FZ$�I??)@|share/man/man3/libssh2_sftp_get_channel.3nu�[���PK-{FZ~C��'�~share/man/man3/libssh2_agent_userauth.3nu�[���PK-{FZ�5���0Âshare/man/man3/libssh2_channel_get_exit_status.3nu�[���PK-{FZ��D	D	%��share/man/man3/libssh2_sftp_open_ex.3nu�[���PK-{FZ��̕��)B�share/man/man3/libssh2_channel_send_eof.3nu�[���PK-{FZ�U��&��share/man/man3/libssh2_sftp_rmdir_ex.3nu�[���PK-{FZ�S��++)��share/man/man3/libssh2_trace_sethandler.3nu�[���PK-{FZ���kk-�share/man/man3/libssh2_channel_window_write.3nu�[���PK-{FZYdy���0ߟshare/man/man3/libssh2_channel_get_exit_signal.3nu�[���PK-{FZ�ޑj��)��share/man/man3/libssh2_publickey_remove.3nu�[���PK-{FZ�y2>gg(�share/man/man3/libssh2_session_startup.3nu�[���PK-{FZ�Y)�OO(Ůshare/man/man3/libssh2_channel_open_ex.3nu�[���PK-{FZ��+�==%l�share/man/man3/libssh2_sftp_setstat.3nu�[���PK-{FZ?�]M��7��share/man/man3/libssh2_userauth_hostbased_fromfile_ex.3nu�[���PK-{FZ;��JJ&@�share/man/man3/libssh2_userauth_list.3nu�[���PK-{FZ��lrr*�share/man/man3/libssh2_sftp_close_handle.3nu�[���PK-{FZT�kk$��share/man/man3/libssh2_sftp_tell64.3nu�[���PK-{FZ�͆���&k�share/man/man3/libssh2_sftp_realpath.3nu�[���PK-{FZ�K��

-j�share/man/man3/libssh2_session_callback_set.3nu�[���PK-{FZ�rX*��share/man/man3/libssh2_session_handshake.3nu�[���PK-{FZ���GG"H�share/man/man3/libssh2_sftp_open.3nu�[���PK-{FZ�,|o��#��share/man/man3/libssh2_agent_free.3nu�[���PK-{FZ={��АА �lib/libssh2.so.1.0.1nuȯ��PK-{FZvD��4olib/pkgconfig/libssh2.pcnu�[���PK-{FZ�u����qlib/libssh2.lanuȯ��PK-{FZI������
�ulib/libssh2.anu�[���PK��^F�T
© 2025 GrazzMean