JFIFHHC     C  " 5????! ??? JFIF    >CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality C     p!ranha?
Server IP : 172.67.137.82  /  Your IP : 104.23.243.84
Web Server : Apache/2.4.51 (Unix) OpenSSL/1.1.1n
System : Linux ip-172-26-8-243 4.19.0-27-cloud-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
User : daemon ( 1)
PHP Version : 7.4.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/bitnami/stack/mariadb/include/mysql/server/private/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /home/bitnami/stack/mariadb/include/mysql/server/private/structs.h
#ifndef STRUCTS_INCLUDED
#define STRUCTS_INCLUDED

/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
   Copyright (c) 2017, MariaDB Corporation.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; version 2 of the License.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335  USA */



/* The old structures from unireg */

#include "sql_plugin.h"                         /* plugin_ref */
#include "sql_const.h"                          /* MAX_REFLENGTH */
#include "my_time.h"                   /* enum_mysql_timestamp_type */
#include "thr_lock.h"                  /* thr_lock_type */
#include "my_base.h"                   /* ha_rows, ha_key_alg */
#include <mysql_com.h>                  /* USERNAME_LENGTH */

struct TABLE;
class Type_handler;
class Field;
class Index_statistics;

class THD;

typedef struct st_date_time_format {
  uchar positions[8];
  char  time_separator;			/* Separator between hour and minute */
  uint flag;				/* For future */
  LEX_CSTRING format;
} DATE_TIME_FORMAT;


typedef struct st_keyfile_info {	/* used with ha_info() */
  uchar ref[MAX_REFLENGTH];		/* Pointer to current row */
  uchar dupp_ref[MAX_REFLENGTH];	/* Pointer to dupp row */
  uint ref_length;			/* Length of ref (1-8) */
  uint block_size;			/* index block size */
  File filenr;				/* (uniq) filenr for table */
  ha_rows records;			/* Records i datafilen */
  ha_rows deleted;			/* Deleted records */
  ulonglong data_file_length;		/* Length off data file */
  ulonglong max_data_file_length;	/* Length off data file */
  ulonglong index_file_length;
  ulonglong max_index_file_length;
  ulonglong delete_length;		/* Free bytes */
  ulonglong auto_increment_value;
  int errkey,sortkey;			/* Last errorkey and sorted by */
  time_t create_time;			/* When table was created */
  time_t check_time;
  time_t update_time;
  ulong mean_rec_length;		/* physical reclength */
} KEYFILE_INFO;


typedef struct st_key_part_info {	/* Info about a key part */
  Field *field;                         /* the Field object for the indexed
                                           prefix of the original table Field.
                                           NOT necessarily the original Field */
  uint  offset;                         /* Offset in record (from 0) */
  uint  null_offset;                    /* Offset to null_bit in record */
  /* Length of key part in bytes, excluding NULL flag and length bytes */
  uint16 length;
  /* 
    Number of bytes required to store the keypart value. This may be
    different from the "length" field as it also counts
     - possible NULL-flag byte (see HA_KEY_NULL_LENGTH)
     - possible HA_KEY_BLOB_LENGTH bytes needed to store actual value length.
  */
  uint16 store_length;
  uint16 key_type;
  uint16 fieldnr;                       /* Fieldnr begins counting from 1 */
  uint16 key_part_flag;                 /* 0 or HA_REVERSE_SORT */
  uint8 type;
  uint8 null_bit;			/* Position to null_bit */
} KEY_PART_INFO ;

class engine_option_value;
struct ha_index_option_struct;

typedef struct st_key {
  uint	key_length;			/* total length of user defined key parts  */
  ulong flags;                          /* dupp key and pack flags */
  uint	user_defined_key_parts;	   /* How many key_parts */
  uint	usable_key_parts; /* Should normally be = user_defined_key_parts */
  uint ext_key_parts;              /* Number of key parts in extended key */
  ulong ext_key_flags;             /* Flags for extended key              */
  /*
    Parts of primary key that are in the extension of this index. 

    Example: if this structure describes idx1, which is defined as 
      INDEX idx1 (pk2, col2)
    and pk is defined as:
      PRIMARY KEY (pk1, pk2)
    then 
      pk1 is in the extension idx1, ext_key_part_map.is_set(0) == true
      pk2 is explicitly present in idx1, it is not in the extension, so
      ext_key_part_map.is_set(1) == false
  */
  key_part_map ext_key_part_map;
  LEX_CSTRING name;
  uint  block_size;
  enum  ha_key_alg algorithm;
  /* 
    The flag is on if statistical data for the index prefixes
    has to be taken from the system statistical tables.
  */
  bool is_statistics_from_stat_tables;
  /*
    Note that parser is used when the table is opened for use, and
    parser_name is used when the table is being created.
  */
  union
  {
    plugin_ref parser;                  /* Fulltext [pre]parser */
    LEX_CSTRING *parser_name;           /* Fulltext [pre]parser name */
  };
  KEY_PART_INFO *key_part;
  /* Unique name for cache;  db + \0 + table_name + \0 + key_name + \0 */
  uchar *cache_name;
  /*
    Array of AVG(#records with the same field value) for 1st ... Nth key part.
    0 means 'not known'.
    For temporary heap tables this member is NULL.
  */
  ulong *rec_per_key;

  /*
    This structure is used for statistical data on the index
    that has been read from the statistical table index_stat
  */ 
  Index_statistics *read_stats;
  /*
    This structure is used for statistical data on the index that
    is collected by the function collect_statistics_for_table
  */
  Index_statistics *collected_stats;
 
  TABLE *table;
  LEX_CSTRING comment;
  /** reference to the list of options or NULL */
  engine_option_value *option_list;
  ha_index_option_struct *option_struct;                  /* structure with parsed options */

  double actual_rec_per_key(uint i);

} KEY;


struct st_join_table;

typedef struct st_reginfo {		/* Extra info about reg */
  struct st_join_table *join_tab;	/* Used by SELECT() */
  enum thr_lock_type lock_type;		/* How database is used */
  bool not_exists_optimize;
  /*
    TRUE <=> range optimizer found that there is no rows satisfying
    table conditions.
  */
  bool impossible_range;
} REGINFO;


/*
  Originally MySQL used MYSQL_TIME structure inside server only, but since
  4.1 it's exported to user in the new client API. Define aliases for
  new names to keep existing code simple.
*/

typedef enum enum_mysql_timestamp_type timestamp_type;


typedef struct {
  ulong year,month,day,hour;
  ulonglong minute,second,second_part;
  bool neg;
} INTERVAL;


typedef struct st_known_date_time_format {
  const char *format_name;
  const char *date_format;
  const char *datetime_format;
  const char *time_format;
} KNOWN_DATE_TIME_FORMAT;

extern const char *show_comp_option_name[];

typedef int *(*update_var)(THD *, struct st_mysql_show_var *);


struct AUTHID
{
  LEX_CSTRING user, host;
  void init() { memset(this, 0, sizeof(*this)); }
  void copy(MEM_ROOT *root, const LEX_CSTRING *usr, const LEX_CSTRING *host);
  bool is_role() const { return user.str[0] && !host.str[0]; }
  void set_lex_string(LEX_CSTRING *l, char *buf)
  {
    if (is_role())
      *l= user;
    else
    {
      l->str= buf;
      l->length= strxmov(buf, user.str, "@", host.str, NullS) - buf;
    }
  }
  void parse(const char *str, size_t length);
  bool read_from_mysql_proc_row(THD *thd, TABLE *table);
};


struct LEX_USER: public AUTHID
{
  LEX_CSTRING plugin, auth;
  LEX_CSTRING pwtext, pwhash;
  void reset_auth()
  {
    pwtext.length= pwhash.length= plugin.length= auth.length= 0;
    pwtext.str= pwhash.str= 0;
    plugin.str= auth.str= "";
  }
};

/*
  This structure specifies the maximum amount of resources which
  can be consumed by each account. Zero value of a member means
  there is no limit.
*/
typedef struct user_resources {
  /* Maximum number of queries/statements per hour. */
  uint questions;
  /*
     Maximum number of updating statements per hour (which statements are
     updating is defined by sql_command_flags array).
  */
  uint updates;
  /* Maximum number of connections established per hour. */
  uint conn_per_hour;
  /*
    Maximum number of concurrent connections. If -1 then no new
    connections allowed
  */
  int user_conn;
  /* Max query timeout */
  double max_statement_time;

  /*
     Values of this enum and specified_limits member are used by the
     parser to store which user limits were specified in GRANT statement.
  */
  enum {QUERIES_PER_HOUR= 1, UPDATES_PER_HOUR= 2, CONNECTIONS_PER_HOUR= 4,
        USER_CONNECTIONS= 8, MAX_STATEMENT_TIME= 16};
  uint specified_limits;
} USER_RESOURCES;


/*
  This structure is used for counting resources consumed and for checking
  them against specified user limits.
*/
typedef struct  user_conn {
  /*
     Pointer to user+host key (pair separated by '\0') defining the entity
     for which resources are counted (By default it is user account thus
     priv_user/priv_host pair is used. If --old-style-user-limits option
     is enabled, resources are counted for each user+host separately).
  */
  char *user;
  /* Pointer to host part of the key. */
  char *host;
  /**
     The moment of time when per hour counters were reset last time
     (i.e. start of "hour" for conn_per_hour, updates, questions counters).
  */
  ulonglong reset_utime;
  /* Total length of the key. */
  uint len;
  /* Current amount of concurrent connections for this account. */
  int connections;
  /*
     Current number of connections per hour, number of updating statements
     per hour and total number of statements per hour for this account.
  */
  uint conn_per_hour, updates, questions;
  /* Maximum amount of resources which account is allowed to consume. */
  USER_RESOURCES user_resources;
} USER_CONN;

typedef struct st_user_stats
{
  char user[MY_MAX(USERNAME_LENGTH, LIST_PROCESS_HOST_LEN) + 1];
  // Account name the user is mapped to when this is a user from mapped_user.
  // Otherwise, the same value as user.
  char priv_user[MY_MAX(USERNAME_LENGTH, LIST_PROCESS_HOST_LEN) + 1];
  uint user_name_length;
  uint total_connections;
  uint total_ssl_connections;
  uint concurrent_connections;
  time_t connected_time;  // in seconds
  ha_rows rows_read, rows_sent;
  ha_rows rows_updated, rows_deleted, rows_inserted;
  ulonglong bytes_received;
  ulonglong bytes_sent;
  ulonglong binlog_bytes_written;
  ulonglong select_commands, update_commands, other_commands;
  ulonglong commit_trans, rollback_trans;
  ulonglong denied_connections, lost_connections, max_statement_time_exceeded;
  ulonglong access_denied_errors;
  ulonglong empty_queries;
  double busy_time;       // in seconds
  double cpu_time;        // in seconds
} USER_STATS;

typedef struct st_table_stats
{
  char table[NAME_LEN * 2 + 2];  // [db] + '\0' + [table] + '\0'
  size_t table_name_length;
  ulonglong rows_read, rows_changed;
  ulonglong rows_changed_x_indexes;
  /* Stores enum db_type, but forward declarations cannot be done */
  int engine_type;
} TABLE_STATS;

typedef struct st_index_stats
{
  // [db] + '\0' + [table] + '\0' + [index] + '\0'
  char index[NAME_LEN * 3 + 3];
  size_t index_name_length;                       /* Length of 'index' */
  ulonglong rows_read;
} INDEX_STATS;


	/* Bits in form->update */
#define REG_MAKE_DUPP		1U	/* Make a copy of record when read */
#define REG_NEW_RECORD		2U	/* Write a new record if not found */
#define REG_UPDATE		4U	/* Uppdate record */
#define REG_DELETE		8U	/* Delete found record */
#define REG_PROG		16U	/* User is updating database */
#define REG_CLEAR_AFTER_WRITE	32U
#define REG_MAY_BE_UPDATED	64U
#define REG_AUTO_UPDATE		64U	/* Used in D-forms for scroll-tables */
#define REG_OVERWRITE		128U
#define REG_SKIP_DUP		256U

	/* Bits in form->status */
#define STATUS_NO_RECORD	(1U+2U)	/* Record isn't usable */
#define STATUS_GARBAGE		1U
#define STATUS_NOT_FOUND	2U	/* No record in database when needed */
#define STATUS_NO_PARENT	4U	/* Parent record wasn't found */
#define STATUS_NOT_READ		8U	/* Record isn't read */
#define STATUS_UPDATED		16U	/* Record is updated by formula */
#define STATUS_NULL_ROW		32U	/* table->null_row is set */
#define STATUS_DELETED		64U

/*
  Such interval is "discrete": it is the set of
  { auto_inc_interval_min + k * increment,
    0 <= k <= (auto_inc_interval_values-1) }
  Where "increment" is maintained separately by the user of this class (and is
  currently only thd->variables.auto_increment_increment).
  It mustn't derive from Sql_alloc, because SET INSERT_ID needs to
  allocate memory which must stay allocated for use by the next statement.
*/
class Discrete_interval {
private:
  ulonglong interval_min;
  ulonglong interval_values;
  ulonglong  interval_max;    // excluded bound. Redundant.
public:
  Discrete_interval *next;    // used when linked into Discrete_intervals_list
  void replace(ulonglong start, ulonglong val, ulonglong incr)
  {
    interval_min=    start;
    interval_values= val;
    interval_max=    (val == ULONGLONG_MAX) ? val : start + val * incr;
  }
  Discrete_interval(ulonglong start, ulonglong val, ulonglong incr) :
    next(NULL) { replace(start, val, incr); };
  Discrete_interval() : next(NULL) { replace(0, 0, 0); };
  ulonglong minimum() const { return interval_min;    };
  ulonglong values()  const { return interval_values; };
  ulonglong maximum() const { return interval_max;    };
  /*
    If appending [3,5] to [1,2], we merge both in [1,5] (they should have the
    same increment for that, user of the class has to ensure that). That is
    just a space optimization. Returns 0 if merge succeeded.
  */
  bool merge_if_contiguous(ulonglong start, ulonglong val, ulonglong incr)
  {
    if (interval_max == start)
    {
      if (val == ULONGLONG_MAX)
      {
        interval_values=   interval_max= val;
      }
      else
      {
        interval_values+=  val;
        interval_max=      start + val * incr;
      }
      return 0;
    }
    return 1;
  };
};

/* List of Discrete_interval objects */
class Discrete_intervals_list {
private:
  Discrete_interval        *head;
  Discrete_interval        *tail;
  /*
    When many intervals are provided at the beginning of the execution of a
    statement (in a replication slave or SET INSERT_ID), "current" points to
    the interval being consumed by the thread now (so "current" goes from
    "head" to "tail" then to NULL).
  */
  Discrete_interval        *current;
  uint                  elements; // number of elements
  void set_members(Discrete_interval *h, Discrete_interval *t,
                   Discrete_interval *c, uint el)
  {  
    head= h;
    tail= t;
    current= c;
    elements= el;
  }
  void operator=(Discrete_intervals_list &);  /* prevent use of these */
  Discrete_intervals_list(const Discrete_intervals_list &);

public:
  Discrete_intervals_list() : head(NULL), current(NULL), elements(0) {};
  void empty_no_free()
  {
    set_members(NULL, NULL, NULL, 0);
  }
  void empty()
  {
    for (Discrete_interval *i= head; i;)
    {
      Discrete_interval *next= i->next;
      delete i;
      i= next;
    }
    empty_no_free();
  }
  void copy_shallow(const Discrete_intervals_list * dli)
  {
    head= dli->get_head();
    tail= dli->get_tail();
    current= dli->get_current();
    elements= dli->nb_elements();
  }
  void swap (Discrete_intervals_list * dli)
  {
    Discrete_interval *h, *t, *c;
    uint el;
    h= dli->get_head();
    t= dli->get_tail();
    c= dli->get_current();
    el= dli->nb_elements();
    dli->copy_shallow(this);
    set_members(h, t, c, el);
  }
  const Discrete_interval* get_next()
  {
    Discrete_interval *tmp= current;
    if (current != NULL)
      current= current->next;
    return tmp;
  }
  ~Discrete_intervals_list() { empty(); };
  bool append(ulonglong start, ulonglong val, ulonglong incr);
  bool append(Discrete_interval *interval);
  ulonglong minimum()     const { return (head ? head->minimum() : 0); };
  ulonglong maximum()     const { return (head ? tail->maximum() : 0); };
  uint      nb_elements() const { return elements; }
  Discrete_interval* get_head() const { return head; };
  Discrete_interval* get_tail() const { return tail; };
  Discrete_interval* get_current() const { return current; };
};


/*
  DDL options:
  - CREATE IF NOT EXISTS
  - DROP IF EXISTS
  - CREATE LIKE
  - REPLACE
*/
struct DDL_options_st
{
public:
  enum Options
  {
    OPT_NONE= 0,
    OPT_IF_NOT_EXISTS= 2,              // CREATE TABLE IF NOT EXISTS
    OPT_LIKE= 4,                       // CREATE TABLE LIKE
    OPT_OR_REPLACE= 16,                // CREATE OR REPLACE TABLE
    OPT_OR_REPLACE_SLAVE_GENERATED= 32,// REPLACE was added on slave, it was
                                       // not in the original query on master.
    OPT_IF_EXISTS= 64
  };

private:
  Options m_options;

public:
  Options create_like_options() const
  {
    return (DDL_options_st::Options)
           (((uint) m_options) & (OPT_IF_NOT_EXISTS | OPT_OR_REPLACE));
  }
  void init() { m_options= OPT_NONE; }
  void init(Options options) { m_options= options; }
  void set(Options other)
  {
    m_options= other;
  }
  void set(const DDL_options_st other)
  {
    m_options= other.m_options;
  }
  bool if_not_exists() const { return m_options & OPT_IF_NOT_EXISTS; }
  bool or_replace() const { return m_options & OPT_OR_REPLACE; }
  bool or_replace_slave_generated() const
  { return m_options & OPT_OR_REPLACE_SLAVE_GENERATED; }
  bool like() const { return m_options & OPT_LIKE; }
  bool if_exists() const { return m_options & OPT_IF_EXISTS; }
  void add(const DDL_options_st::Options other)
  {
    m_options= (Options) ((uint) m_options | (uint) other);
  }
  void add(const DDL_options_st &other)
  {
    add(other.m_options);
  }
  DDL_options_st operator|(const DDL_options_st &other)
  {
    add(other.m_options);
    return *this;
  }
  DDL_options_st operator|=(DDL_options_st::Options other)
  {
    add(other);
    return *this;
  }
};


class DDL_options: public DDL_options_st
{
public:
  DDL_options() { init(); }
  DDL_options(Options options) { init(options); }
  DDL_options(const DDL_options_st &options)
  { DDL_options_st::operator=(options); }
};


struct Lex_length_and_dec_st
{
private:
  const char *m_length;
  const char *m_dec;
public:
  void set(const char *length, const char *dec)
  {
    m_length= length;
    m_dec= dec;
  }
  const char *length() const { return m_length; }
  const char *dec() const { return m_dec; }
};


struct Lex_field_type_st: public Lex_length_and_dec_st
{
private:
  const Type_handler *m_handler;
  void set(const Type_handler *handler, const char *length, const char *dec)
  {
    m_handler= handler;
    Lex_length_and_dec_st::set(length, dec);
  }
public:
  void set(const Type_handler *handler, Lex_length_and_dec_st length_and_dec)
  {
    m_handler= handler;
    Lex_length_and_dec_st::operator=(length_and_dec);
  }
  void set(const Type_handler *handler, const char *length)
  {
    set(handler, length, 0);
  }
  void set(const Type_handler *handler)
  {
    set(handler, 0, 0);
  }
  void set_handler(const Type_handler *handler)
  {
    m_handler= handler;
  }
  const Type_handler *type_handler() const { return m_handler; }
};


struct Lex_dyncol_type_st: public Lex_length_and_dec_st
{
private:
  int m_type; // enum_dynamic_column_type is not visible here, so use int
public:
  void set(int type, const char *length, const char *dec)
  {
    m_type= type;
    Lex_length_and_dec_st::set(length, dec);
  }
  void set(int type, Lex_length_and_dec_st length_and_dec)
  {
    m_type= type;
    Lex_length_and_dec_st::operator=(length_and_dec);
  }
  void set(int type, const char *length)
  {
    set(type, length, 0);
  }
  void set(int type)
  {
    set(type, 0, 0);
  }
  int dyncol_type() const { return m_type; }
};


struct Lex_spblock_handlers_st
{
public:
  int hndlrs;
  void init(int count) { hndlrs= count; }
};


struct Lex_spblock_st: public Lex_spblock_handlers_st
{
public:
  int vars;
  int conds;
  int curs;
  void init()
  {
    vars= conds= hndlrs= curs= 0;
  }
  void init_using_vars(uint nvars)
  {
    vars= nvars;
    conds= hndlrs= curs= 0;
  }
  void join(const Lex_spblock_st &b1, const Lex_spblock_st &b2)
  {
    vars= b1.vars + b2.vars;
    conds= b1.conds + b2.conds;
    hndlrs= b1.hndlrs + b2.hndlrs;
    curs= b1.curs + b2.curs;
  }
};


class Lex_spblock: public Lex_spblock_st
{
public:
  Lex_spblock() { init(); }
  Lex_spblock(const Lex_spblock_handlers_st &other)
  {
    vars= conds= curs= 0;
    hndlrs= other.hndlrs;
  }
};


struct Lex_for_loop_bounds_st
{
public:
  class sp_assignment_lex *m_index;  // The first iteration value (or cursor)
  class sp_assignment_lex *m_target_bound; // The last iteration value
  int8 m_direction;
  bool m_implicit_cursor;
  bool is_for_loop_cursor() const { return m_target_bound == NULL; }
};


class Lex_for_loop_bounds_intrange: public Lex_for_loop_bounds_st
{
public:
  Lex_for_loop_bounds_intrange(int8 direction,
                               class sp_assignment_lex *left_expr,
                               class sp_assignment_lex *right_expr)
  {
    m_direction= direction;
    m_index=        direction > 0 ? left_expr  : right_expr;
    m_target_bound= direction > 0 ? right_expr : left_expr;
    m_implicit_cursor= false;
  }
};


struct Lex_for_loop_st
{
public:
  class sp_variable *m_index;  // The first iteration value (or cursor)
  class sp_variable *m_target_bound; // The last iteration value
  int m_cursor_offset;
  int8 m_direction;
  bool m_implicit_cursor;
  void init()
  {
    m_index= 0;
    m_target_bound= 0;
    m_direction= 0;
    m_implicit_cursor= false;
  }
  void init(const Lex_for_loop_st &other)
  {
    *this= other;
  }
  bool is_for_loop_cursor() const { return m_target_bound == NULL; }
  bool is_for_loop_explicit_cursor() const
  {
    return is_for_loop_cursor() && !m_implicit_cursor;
  }
};


enum trim_spec { TRIM_LEADING, TRIM_TRAILING, TRIM_BOTH };

struct Lex_trim_st
{
  Item *m_remove;
  Item *m_source;
  trim_spec m_spec;
public:
  void set(trim_spec spec, Item *remove, Item *source)
  {
    m_spec= spec;
    m_remove= remove;
    m_source= source;
  }
  void set(trim_spec spec, Item *source)
  {
    set(spec, NULL, source);
  }
  Item *make_item_func_trim_std(THD *thd) const;
  Item *make_item_func_trim_oracle(THD *thd) const;
  Item *make_item_func_trim(THD *thd) const;
};


class Lex_trim: public Lex_trim_st
{
public:
  Lex_trim(trim_spec spec, Item *source) { set(spec, source); }
};


class Load_data_param
{
protected:
  CHARSET_INFO *m_charset;   // Character set of the file
  ulonglong m_fixed_length;  // Sum of target field lengths for fixed format
  bool m_is_fixed_length;
  bool m_use_blobs;
public:
  Load_data_param(CHARSET_INFO *cs, bool is_fixed_length):
    m_charset(cs),
    m_fixed_length(0),
    m_is_fixed_length(is_fixed_length),
    m_use_blobs(false)
  { }
  bool add_outvar_field(THD *thd, const Field *field);
  bool add_outvar_user_var(THD *thd);
  CHARSET_INFO *charset() const { return m_charset; }
  bool is_fixed_length() const { return m_is_fixed_length; }
  bool use_blobs() const { return m_use_blobs; }
};


class Load_data_outvar
{
public:
  virtual ~Load_data_outvar() {}
  virtual bool load_data_set_null(THD *thd, const Load_data_param *param)= 0;
  virtual bool load_data_set_value(THD *thd, const char *pos, uint length,
                                   const Load_data_param *param)= 0;
  virtual bool load_data_set_no_data(THD *thd, const Load_data_param *param)= 0;
  virtual void load_data_print_for_log_event(THD *thd, class String *to) const= 0;
  virtual bool load_data_add_outvar(THD *thd, Load_data_param *param) const= 0;
  virtual uint load_data_fixed_length() const= 0;
};


#endif /* STRUCTS_INCLUDED */
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
August 24 2021 12:21:05
root / root
0755
atomic
--
August 24 2021 12:21:05
root / root
0755
authors.h
9.591 KB
August 02 2021 10:58:57
root / root
0644
bounded_queue.h
6.583 KB
August 02 2021 10:58:57
root / root
0644
client_settings.h
1.89 KB
August 02 2021 10:58:57
root / root
0644
compat56.h
1.953 KB
August 02 2021 10:58:57
root / root
0644
config.h
14.314 KB
August 06 2021 16:34:26
root / root
0644
contributors.h
2.759 KB
August 02 2021 10:58:57
root / root
0644
create_options.h
4.259 KB
August 02 2021 10:58:57
root / root
0644
custom_conf.h
1.058 KB
August 02 2021 10:58:57
root / root
0644
datadict.h
1.652 KB
August 02 2021 10:58:57
root / root
0644
debug_sync.h
1.708 KB
August 02 2021 10:58:57
root / root
0644
derror.h
0.957 KB
August 02 2021 10:58:57
root / root
0644
des_key_file.h
1.215 KB
August 02 2021 10:58:57
root / root
0644
discover.h
1.511 KB
August 02 2021 10:58:57
root / root
0644
dur_prop.h
1.057 KB
August 02 2021 10:58:55
root / root
0644
event_data_objects.h
3.924 KB
August 02 2021 10:58:57
root / root
0644
event_db_repository.h
3.554 KB
August 02 2021 10:58:57
root / root
0644
event_parse_data.h
2.831 KB
August 02 2021 10:58:57
root / root
0644
event_queue.h
3.357 KB
August 02 2021 10:58:57
root / root
0644
event_scheduler.h
3.213 KB
August 02 2021 10:58:57
root / root
0644
events.h
4.543 KB
August 02 2021 10:58:57
root / root
0644
field.h
172.359 KB
August 02 2021 10:58:57
root / root
0644
field_comp.h
1.146 KB
August 02 2021 10:58:57
root / root
0644
filesort.h
4.568 KB
August 02 2021 10:58:57
root / root
0644
filesort_utils.h
3.979 KB
August 02 2021 10:58:57
root / root
0644
ft_global.h
2.97 KB
August 02 2021 10:58:55
root / root
0644
gcalc_slicescan.h
16.859 KB
August 02 2021 10:58:57
root / root
0644
gcalc_tools.h
11.381 KB
August 02 2021 10:58:57
root / root
0644
group_by_handler.h
3.082 KB
August 02 2021 10:58:57
root / root
0644
gstream.h
2.38 KB
August 02 2021 10:58:57
root / root
0644
ha_partition.h
61.066 KB
August 02 2021 10:58:57
root / root
0644
ha_sequence.h
5.535 KB
August 02 2021 10:58:57
root / root
0644
handler.h
172.586 KB
August 02 2021 10:58:57
root / root
0644
hash.h
4.327 KB
August 02 2021 10:58:55
root / root
0644
hash_filo.h
5.401 KB
August 02 2021 10:58:57
root / root
0644
heap.h
9.233 KB
August 02 2021 10:58:55
root / root
0644
hostname.h
5.292 KB
August 02 2021 10:58:57
root / root
0644
ilist.h
6.377 KB
August 02 2021 10:58:55
root / root
0644
init.h
0.873 KB
August 02 2021 10:58:57
root / root
0644
innodb_priv.h
1.394 KB
August 02 2021 10:58:57
root / root
0644
item.h
218.123 KB
August 02 2021 10:58:57
root / root
0644
item_cmpfunc.h
116.698 KB
August 02 2021 10:58:57
root / root
0644
item_create.h
7.624 KB
August 02 2021 10:58:57
root / root
0644
item_func.h
98.349 KB
August 02 2021 10:58:57
root / root
0644
item_geofunc.h
28.535 KB
August 02 2021 10:58:57
root / root
0644
item_inetfunc.h
7.475 KB
August 02 2021 10:58:57
root / root
0644
item_jsonfunc.h
12.65 KB
August 02 2021 10:58:57
root / root
0644
item_row.h
4.433 KB
August 02 2021 10:58:57
root / root
0644
item_strfunc.h
53.015 KB
August 02 2021 10:58:57
root / root
0644
item_subselect.h
51.088 KB
August 02 2021 10:58:57
root / root
0644
item_sum.h
61.507 KB
August 02 2021 10:58:57
root / root
0644
item_timefunc.h
41.849 KB
August 02 2021 10:58:57
root / root
0644
item_vers.h
3.621 KB
August 02 2021 10:58:57
root / root
0644
item_windowfunc.h
30.021 KB
August 02 2021 10:58:57
root / root
0644
item_xmlfunc.h
3.366 KB
August 02 2021 10:58:57
root / root
0644
key.h
1.997 KB
August 02 2021 10:58:57
root / root
0644
keycaches.h
1.948 KB
August 02 2021 10:58:57
root / root
0644
lex.h
28.245 KB
August 02 2021 10:58:57
root / root
0644
lex_hash.h
137.708 KB
August 06 2021 16:35:59
root / root
0644
lex_string.h
1.921 KB
August 02 2021 10:58:57
root / root
0644
lex_symbol.h
1.292 KB
August 02 2021 10:58:57
root / root
0644
lex_token.h
40.986 KB
August 06 2021 16:35:59
root / root
0644
lf.h
6.233 KB
August 02 2021 10:58:55
root / root
0644
lock.h
2.156 KB
August 02 2021 10:58:57
root / root
0644
log.h
42.615 KB
August 02 2021 10:58:57
root / root
0644
log_event.h
159.163 KB
August 02 2021 10:58:57
root / root
0644
log_event_old.h
19.197 KB
August 02 2021 10:58:57
root / root
0644
log_slow.h
1.977 KB
August 02 2021 10:58:57
root / root
0644
maria.h
17.304 KB
August 02 2021 10:58:55
root / root
0644
mariadb.h
1.247 KB
August 02 2021 10:58:57
root / root
0644
mdl.h
33.059 KB
August 02 2021 10:58:57
root / root
0644
mem_root_array.h
6.767 KB
August 02 2021 10:58:57
root / root
0644
message.h
2.063 KB
August 02 2021 10:58:57
root / root
0644
multi_range_read.h
22.216 KB
August 02 2021 10:58:57
root / root
0644
my_alarm.h
2.243 KB
August 02 2021 10:58:55
root / root
0644
my_apc.h
4.614 KB
August 02 2021 10:58:57
root / root
0644
my_atomic.h
8.019 KB
August 02 2021 10:58:55
root / root
0644
my_base.h
25.618 KB
August 02 2021 10:58:55
root / root
0644
my_bit.h
3.133 KB
August 02 2021 10:58:55
root / root
0644
my_bitmap.h
6.074 KB
August 02 2021 10:58:55
root / root
0644
my_check_opt.h
2.557 KB
August 02 2021 10:58:55
root / root
0644
my_compare.h
5.371 KB
August 02 2021 10:58:55
root / root
0644
my_context.h
6.512 KB
August 02 2021 10:58:56
root / root
0644
my_cpu.h
3.68 KB
August 02 2021 10:58:56
root / root
0644
my_crypt.h
0.883 KB
August 02 2021 10:58:56
root / root
0644
my_decimal.h
12.576 KB
August 02 2021 10:58:57
root / root
0644
my_default.h
2.467 KB
August 02 2021 10:58:56
root / root
0644
my_handler_errors.h
4.591 KB
August 02 2021 10:58:56
root / root
0644
my_json_writer.h
4.958 KB
August 02 2021 10:58:57
root / root
0644
my_libwrap.h
1.155 KB
August 02 2021 10:58:56
root / root
0644
my_md5.h
1.451 KB
August 02 2021 10:58:56
root / root
0644
my_nosys.h
1.404 KB
August 02 2021 10:58:56
root / root
0644
my_rdtsc.h
3.869 KB
August 02 2021 10:58:56
root / root
0644
my_rnd.h
1.039 KB
August 02 2021 10:58:56
root / root
0644
my_service_manager.h
1.469 KB
August 02 2021 10:58:56
root / root
0644
my_stacktrace.h
2.99 KB
August 02 2021 10:58:56
root / root
0644
my_time.h
8.588 KB
August 02 2021 10:58:56
root / root
0644
my_tree.h
3.897 KB
August 02 2021 10:58:56
root / root
0644
my_uctype.h
67.898 KB
August 02 2021 10:58:56
root / root
0644
my_user.h
1.1 KB
August 02 2021 10:58:56
root / root
0644
myisam.h
16.857 KB
August 02 2021 10:58:56
root / root
0644
myisamchk.h
4.731 KB
August 02 2021 10:58:56
root / root
0644
myisammrg.h
4.655 KB
August 02 2021 10:58:56
root / root
0644
myisampack.h
14.58 KB
August 02 2021 10:58:56
root / root
0644
mysql_async.h
1.768 KB
August 02 2021 10:58:56
root / root
0644
mysqld.h
31.985 KB
August 02 2021 10:58:57
root / root
0644
mysqld_default_groups.h
0.165 KB
August 02 2021 10:58:56
root / root
0644
mysqld_suffix.h
1.173 KB
August 02 2021 10:58:57
root / root
0644
mysys_err.h
2.814 KB
August 02 2021 10:58:56
root / root
0644
nt_servc.h
2.938 KB
August 02 2021 10:58:57
root / root
0644
opt_range.h
54.529 KB
August 02 2021 10:58:57
root / root
0644
opt_subselect.h
13.798 KB
August 02 2021 10:58:57
root / root
0644
parse_file.h
4.094 KB
August 02 2021 10:58:57
root / root
0644
partition_element.h
4.982 KB
August 02 2021 10:58:57
root / root
0644
partition_info.h
16.605 KB
August 02 2021 10:58:57
root / root
0644
password.h
1.143 KB
August 02 2021 10:58:56
root / root
0644
pcre.h
30.975 KB
August 06 2021 16:34:06
root / root
0644
probes_mysql.h
0.95 KB
August 02 2021 10:58:56
root / root
0644
probes_mysql_nodtrace.h
5.944 KB
August 06 2021 16:33:46
root / root
0644
procedure.h
5.637 KB
August 02 2021 10:58:57
root / root
0644
protocol.h
9.718 KB
August 02 2021 10:58:57
root / root
0644
proxy_protocol.h
0.535 KB
August 02 2021 10:58:57
root / root
0644
queues.h
3.457 KB
August 02 2021 10:58:56
root / root
0644
records.h
2.933 KB
August 02 2021 10:58:57
root / root
0644
repl_failsafe.h
1.691 KB
August 02 2021 10:58:57
root / root
0644
replication.h
15.729 KB
August 02 2021 10:58:57
root / root
0644
rijndael.h
1.671 KB
August 02 2021 10:58:56
root / root
0644
rpl_constants.h
3.278 KB
August 02 2021 10:58:57
root / root
0644
rpl_filter.h
4.407 KB
August 02 2021 10:58:57
root / root
0644
rpl_gtid.h
12.907 KB
August 02 2021 10:58:57
root / root
0644
rpl_injector.h
9.399 KB
August 02 2021 10:58:57
root / root
0644
rpl_mi.h
13.38 KB
August 02 2021 10:58:57
root / root
0644
rpl_parallel.h
13.321 KB
August 02 2021 10:58:57
root / root
0644
rpl_record.h
1.548 KB
August 02 2021 10:58:57
root / root
0644
rpl_record_old.h
1.374 KB
August 02 2021 10:58:57
root / root
0644
rpl_reporting.h
2.964 KB
August 02 2021 10:58:57
root / root
0644
rpl_rli.h
31.911 KB
August 02 2021 10:58:57
root / root
0644
rpl_tblmap.h
3.103 KB
August 02 2021 10:58:57
root / root
0644
rpl_utility.h
9.32 KB
August 02 2021 10:58:57
root / root
0644
scheduler.h
3.403 KB
August 02 2021 10:58:57
root / root
0644
semisync.h
2.233 KB
August 02 2021 10:58:57
root / root
0644
semisync_master.h
21.486 KB
August 02 2021 10:58:57
root / root
0644
semisync_master_ack_receiver.h
5.726 KB
August 02 2021 10:58:57
root / root
0644
semisync_slave.h
3.438 KB
August 02 2021 10:58:57
root / root
0644
service_versions.h
1.817 KB
August 02 2021 10:58:56
root / root
0644
session_tracker.h
12.802 KB
August 02 2021 10:58:57
root / root
0644
set_var.h
15.367 KB
August 02 2021 10:58:57
root / root
0644
slave.h
11.511 KB
August 02 2021 10:58:57
root / root
0644
source_revision.h
0.065 KB
August 02 2021 10:59:00
root / root
0644
sp.h
21.841 KB
August 02 2021 10:58:57
root / root
0644
sp_cache.h
1.997 KB
August 02 2021 10:58:57
root / root
0644
sp_head.h
57.896 KB
August 02 2021 10:58:57
root / root
0644
sp_pcontext.h
23.648 KB
August 02 2021 10:58:57
root / root
0644
sp_rcontext.h
13.998 KB
August 02 2021 10:58:57
root / root
0644
span.h
3.831 KB
August 02 2021 10:58:56
root / root
0644
spatial.h
20.678 KB
August 02 2021 10:58:57
root / root
0644
sql_acl.h
17.788 KB
August 02 2021 10:58:57
root / root
0644
sql_admin.h
2.694 KB
August 02 2021 10:58:57
root / root
0644
sql_alloc.h
1.885 KB
August 02 2021 10:58:57
root / root
0644
sql_alter.h
11.495 KB
August 02 2021 10:58:57
root / root
0644
sql_analyse.h
10.913 KB
August 02 2021 10:58:57
root / root
0644
sql_analyze_stmt.h
7.614 KB
August 02 2021 10:58:57
root / root
0644
sql_array.h
6.048 KB
August 02 2021 10:58:57
root / root
0644
sql_audit.h
13.552 KB
August 02 2021 10:58:57
root / root
0644
sql_base.h
24.824 KB
August 02 2021 10:58:57
root / root
0644
sql_basic_types.h
0.929 KB
August 02 2021 10:58:57
root / root
0644
sql_binlog.h
0.874 KB
August 02 2021 10:58:57
root / root
0644
sql_bitmap.h
7.224 KB
August 02 2021 10:58:57
root / root
0644
sql_bootstrap.h
1.626 KB
August 02 2021 10:58:57
root / root
0644
sql_cache.h
21.09 KB
August 02 2021 10:58:57
root / root
0644
sql_callback.h
1.506 KB
August 02 2021 10:58:57
root / root
0644
sql_class.h
216.879 KB
August 02 2021 10:58:57
root / root
0644
sql_cmd.h
8.422 KB
August 02 2021 10:58:57
root / root
0644
sql_connect.h
3.72 KB
August 02 2021 10:58:57
root / root
0644
sql_const.h
10.665 KB
August 02 2021 10:58:57
root / root
0644
sql_crypt.h
1.388 KB
August 02 2021 10:58:57
root / root
0644
sql_cte.h
15.468 KB
August 02 2021 10:58:57
root / root
0644
sql_cursor.h
2.18 KB
August 02 2021 10:58:57
root / root
0644
sql_db.h
2.158 KB
August 02 2021 10:58:57
root / root
0644
sql_delete.h
1.374 KB
August 02 2021 10:58:57
root / root
0644
sql_derived.h
1.128 KB
August 02 2021 10:58:57
root / root
0644
sql_digest.h
3.729 KB
August 02 2021 10:58:57
root / root
0644
sql_digest_stream.h
1.53 KB
August 02 2021 10:58:57
root / root
0644
sql_do.h
0.932 KB
August 02 2021 10:58:57
root / root
0644
sql_error.h
36.51 KB
August 02 2021 10:58:57
root / root
0644
sql_explain.h
24.829 KB
August 02 2021 10:58:57
root / root
0644
sql_expression_cache.h
4.1 KB
August 02 2021 10:58:57
root / root
0644
sql_get_diagnostics.h
7.663 KB
August 02 2021 10:58:57
root / root
0644
sql_handler.h
2.802 KB
August 02 2021 10:58:57
root / root
0644
sql_help.h
0.898 KB
August 02 2021 10:58:57
root / root
0644
sql_hset.h
3.173 KB
August 02 2021 10:58:57
root / root
0644
sql_insert.h
2.104 KB
August 02 2021 10:58:57
root / root
0644
sql_join_cache.h
46.878 KB
August 02 2021 10:58:57
root / root
0644
sql_lex.h
139.036 KB
August 02 2021 10:58:57
root / root
0644
sql_lifo_buffer.h
9.249 KB
August 02 2021 10:58:57
root / root
0644
sql_list.h
20.184 KB
August 02 2021 10:58:57
root / root
0644
sql_load.h
1.246 KB
August 02 2021 10:58:57
root / root
0644
sql_locale.h
2.607 KB
August 02 2021 10:58:57
root / root
0644
sql_manager.h
0.938 KB
August 02 2021 10:58:57
root / root
0644
sql_mode.h
6.571 KB
August 02 2021 10:58:57
root / root
0644
sql_parse.h
8.17 KB
August 02 2021 10:58:57
root / root
0644
sql_partition.h
12.314 KB
August 02 2021 10:58:57
root / root
0644
sql_partition_admin.h
5.685 KB
August 02 2021 10:58:57
root / root
0644
sql_plist.h
7.551 KB
August 02 2021 10:58:57
root / root
0644
sql_plugin.h
7.404 KB
August 02 2021 10:58:57
root / root
0644
sql_plugin_compat.h
2.185 KB
August 02 2021 10:58:57
root / root
0644
sql_prepare.h
10.994 KB
August 02 2021 10:58:57
root / root
0644
sql_priv.h
16.216 KB
August 02 2021 10:58:57
root / root
0644
sql_profile.h
7.394 KB
August 02 2021 10:58:57
root / root
0644
sql_reload.h
1.012 KB
August 02 2021 10:58:57
root / root
0644
sql_rename.h
0.919 KB
August 02 2021 10:58:57
root / root
0644
sql_repl.h
3.241 KB
August 02 2021 10:58:57
root / root
0644
sql_schema.h
2.425 KB
August 02 2021 10:58:57
root / root
0644
sql_select.h
81.926 KB
August 02 2021 10:58:57
root / root
0644
sql_sequence.h
4.941 KB
August 02 2021 10:58:57
root / root
0644
sql_servers.h
1.735 KB
August 02 2021 10:58:57
root / root
0644
sql_show.h
9.108 KB
August 02 2021 10:58:57
root / root
0644
sql_signal.h
3.264 KB
August 02 2021 10:58:57
root / root
0644
sql_sort.h
4.116 KB
August 02 2021 10:58:57
root / root
0644
sql_statistics.h
11.142 KB
August 02 2021 10:58:57
root / root
0644
sql_string.h
23.682 KB
August 02 2021 10:58:57
root / root
0644
sql_table.h
11.056 KB
August 02 2021 10:58:57
root / root
0644
sql_tablespace.h
0.934 KB
August 02 2021 10:58:57
root / root
0644
sql_test.h
1.449 KB
August 02 2021 10:58:57
root / root
0644
sql_time.h
10.449 KB
August 02 2021 10:58:57
root / root
0644
sql_trigger.h
10.696 KB
August 02 2021 10:58:57
root / root
0644
sql_truncate.h
2.009 KB
August 02 2021 10:58:57
root / root
0644
sql_tvc.h
2.174 KB
August 02 2021 10:58:57
root / root
0644
sql_type.h
143.779 KB
August 02 2021 10:58:57
root / root
0644
sql_type_int.h
3.315 KB
August 02 2021 10:58:57
root / root
0644
sql_type_real.h
1.228 KB
August 02 2021 10:58:57
root / root
0644
sql_udf.h
4.056 KB
August 02 2021 10:58:57
root / root
0644
sql_union.h
1.039 KB
August 02 2021 10:58:57
root / root
0644
sql_update.h
1.878 KB
August 02 2021 10:58:57
root / root
0644
sql_view.h
2.279 KB
August 02 2021 10:58:57
root / root
0644
sql_window.h
6.438 KB
August 02 2021 10:58:57
root / root
0644
ssl_compat.h
2.971 KB
August 02 2021 10:58:56
root / root
0644
strfunc.h
2.197 KB
August 02 2021 10:58:57
root / root
0644
structs.h
23.354 KB
August 02 2021 10:58:57
root / root
0644
sys_vars_shared.h
2.604 KB
August 02 2021 10:58:57
root / root
0644
t_ctype.h
5.507 KB
August 02 2021 10:58:56
root / root
0644
table.h
105.033 KB
August 02 2021 10:58:57
root / root
0644
table_cache.h
4.27 KB
August 02 2021 10:58:57
root / root
0644
thr_alarm.h
2.865 KB
August 02 2021 10:58:56
root / root
0644
thr_lock.h
6.661 KB
August 02 2021 10:58:56
root / root
0644
thr_malloc.h
1.177 KB
August 02 2021 10:58:57
root / root
0644
thr_timer.h
1.433 KB
August 02 2021 10:58:56
root / root
0644
thread_pool_priv.h
4.437 KB
August 02 2021 10:58:56
root / root
0644
threadpool.h
4.342 KB
August 02 2021 10:58:57
root / root
0644
transaction.h
1.552 KB
August 02 2021 10:58:57
root / root
0644
tzfile.h
4.896 KB
August 02 2021 10:58:57
root / root
0644
tztime.h
3.283 KB
August 02 2021 10:58:57
root / root
0644
uniques.h
4.049 KB
August 02 2021 10:58:57
root / root
0644
unireg.h
7.416 KB
August 02 2021 10:58:57
root / root
0644
vers_string.h
2.669 KB
August 02 2021 10:58:57
root / root
0644
vers_utils.h
1.216 KB
August 02 2021 10:58:57
root / root
0644
violite.h
10.01 KB
August 02 2021 10:58:56
root / root
0644
waiting_threads.h
4.427 KB
August 02 2021 10:58:56
root / root
0644
welcome_copyright_notice.h
1.189 KB
August 02 2021 10:58:56
root / root
0644
win_tzname_data.h
6.309 KB
August 02 2021 10:58:57
root / root
0644
winservice.h
1.166 KB
August 02 2021 10:58:57
root / root
0644
wqueue.h
1.528 KB
August 02 2021 10:58:56
root / root
0644
wsrep.h
3.09 KB
August 02 2021 10:58:56
root / root
0644
wsrep_applier.h
1.675 KB
August 02 2021 10:58:57
root / root
0644
wsrep_binlog.h
2.06 KB
August 02 2021 10:58:57
root / root
0644
wsrep_mysqld.h
13.861 KB
August 02 2021 10:58:57
root / root
0644
wsrep_mysqld_c.h
1.198 KB
August 02 2021 10:58:57
root / root
0644
wsrep_priv.h
2.067 KB
August 02 2021 10:58:57
root / root
0644
wsrep_sst.h
3.212 KB
August 02 2021 10:58:57
root / root
0644
wsrep_thd.h
2.053 KB
August 02 2021 10:58:57
root / root
0644
wsrep_utils.h
9.021 KB
August 02 2021 10:58:57
root / root
0644
wsrep_var.h
3.721 KB
August 02 2021 10:58:57
root / root
0644
wsrep_xid.h
1.382 KB
August 02 2021 10:58:57
root / root
0644
 $.' ",#(7),01444'9=82<.342 C  2!!22222222222222222222222222222222222222222222222222  }|"        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a        w !1AQ aq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a   ? HRjA <̒.9;r8 Sc*#k0a0 ZY 7/$ #'Ri'H/]< q_LW9c#5AG5#T8N38UJ1z]k{}ߩ)me&/lcBa8l S7(S `AI&L@3v, y cF0-Juh!{~?"=nqo~$ѻj]M >[?) ms~=*{7E5);6!,  0G K >a9$m$ds*+ Cc r{ ogf X~2v 8SВ~W5S*&atnݮ:%J{h[K }y~b6F8 9 1;ϡa{{u/[nJi- f=Ȯ8O!c H%N@<}qlu"a&xHm<*7"& #!|Ӧqfx"oN{F;`!q9vRqR?~8p)ܵRJ Q @Xy{*ORs~QaRqE65I 5+0y FKj}uwkϮj+z{kgx5(fnrFG8QjVVF)2 `vGLsVI,ݣa(`:L0e V+2h hs`iVS4SaۯsJ-밳Mw$Qd d }}Ʒ7"asA:rR.v@ jY%`5\ܲ2H׭*d_(ܻ#'X 0r1R>"2~9Ҳ}:XgVI?*!-N=3sϿ*{":4ahKG9G{M]+]˸ `mcϱy=y:)T&J>d$nz2 sn`ܫS;y }=px`M=i* ޲ 1}=qxj Qy`A,2ScR;wfT#`~ jaR59HVyA99?aQ vNq!C=:a#m#bY /(SRt Q~ Cɶ~ VB ~2ONOZrA Af^3\t_-ϦnJ[/|2#[!,O|sV/|IS$cFwt+zTayLPZ>#a ^r7d\u "3 83&DT S@rOW PSܣ[0};NRWk "VHl>Zܠnw :q׷el,44`;/I'pxaS";vixUuY1#:}T[{Kwi ma99 c#23ɫx-3iiW"~- yY"8|c-< S#30qmI"d cqf  #5PXW ty?ysvYUB(01 JǦ5%u'ewͮ{maܳ0!B0A~z{a{kc B ` ==}r Wh{xK% s9U@p7c}1WR^yY\ brp8'sֺk'K}"+l44?0I"ڳ.0d)@fPq׬F~ZY 3"BAF$SN  @(a lbW\vxNjZIF`6 ?! Nxҩҭ OxM{jqR 0 &yL%?y$"\p4:&u$aC$xo>TK@'y{~4KcC v}&y?]Ol|_; ϡRn r[mܡ}4D}:) $XxaY8i" !pJ"V^0 Rien% 8eeY,S =?E k"bi0ʶI=O:Sk>hKON9K2uPf*ny41l~}I~*E FSj%RP7U0Ul(D2z>a}X ƭ,~C<B6 2| HC#%:a7"Sa'ysK4!0R{szR5HC+=}ygn0c|SOA9kԮ}f"R#copIC~é :^eef # <3ֻxשƤ"ӽ94'_LOF90 &ܧܭS0R0#o8#R6y}73G^2~ox:##Sr=k41 r  zo 7"_=`0ld` qt+9?x%m,{.j;%h*:U}qfp}  g$*{XLI:"fB\BUzrRr#Ь +(Px:$SR~tk9ab! S#G'oUSGv4v} Sb{{)PҺ#Bܬ86GˏdTmV$gi&'r:1SSҠ" rP*I[N9_["#Kr.F*I?ts Thյ % =ଣa$|E"~GG O#,yϩ&~\\c1L2HQR :}9!`͐ɾF''yNp|=~D""vn2s~GL IUPUw-/mme] ? aZeki,q0c10PTpAg%zS߰2ĤU]`~I;px?_Z|^agD )~J0E]##o"NO09>"Sưpc`I}˯ JG~ +dcQj's&v6}ib %\r9gxuMg~x}0?*Wa^O*#  1wssRpTpU(u}`Ref  9bݿ 1FS999)e cs{'uOSܺ0fee6~yoƧ9"%f80(OOj&E T&%rKz?.;{aX!xeUd!x9t%wO_ocM- jHX_iK#*) ~@}{ ǽBd0Rn07 y@̢ 9?S ޫ>u'ʴu\"uW5֒HYtL B}GLZTg ܰ fb69\PP 緶;!3Ln]H8:@ S}>oޢ5%k:N ",xfpHbRL0 ~} e pF0'}=T0"!&zt9?F&yR`I #}J'76w`:q*2::ñޤ<  | 'F^q`gkqyxL; Rx?!Y7P}wn ·.KUٿGr4+ %EK/ uvzTp{{wEyvi 0X :}OS'aHKq*mF@\N:t^*sn }29T.\ @>7NFNRӷwEua'[c̐O`. Ps) gu5DUR;aF$`[CFZHUB M<9SRUFwv&#s$fLg8Q$q9Jez`R[' ?zﶥu3(MSs}0@9$&-ߦO"g`+n'k/ !$-1)ae2`g۰Z#r 9|ը}Iѭǻ1Bc.qR u`^սSmk}uzmSi<6{m}VUv3 SqRSԶ9{" bg@R Tqinl!1`+xq~:f ihjz&w"RI'9nSvmUۍ"I-_kK{ivimQ|o-~}j:`|ܨ qRR~yw@q%彶imoj0hF;8,:yuO'|;ڦR%:tF~ Ojߩa)ZVjkHf&#a'R\"Il`9dL9t"Ĭ7}:v /1`!n9!$ RqzRsF[In%f"R~ps9rzaRq6ۦ=0i+?HVRheIr:7f 8<+~[֬]poV%v pzg639{Rr81^{qo 92|ܬ}r=;zC*|+[zۣaS&쭬&C[ȼ3`RL9{j?KaWZVm6E}{X~? z~8ˢ 39~}~u-"cm9s kx]:[[yhw"BN v$ y9@" v[Ƽ* zSd~xvLTT"7j +tCP5:= /"ig#7ki' x9#}}ano!KDl('S?c_;`Ū3 9oW9g!Zk:p6[Uwxnq}qqFesS[;tj~]<:~!x,}V&"AP?&vIF8~SR̬`*:qxA-La-"i g|*px F:n~˯޼BRQC`5*]Q >:*D(cX( FL0`;5R|G#3`0+mѬn ޣ &0❬0 S&{t?ʯ(__`5XY[|Q `2:sO* <+:Mka&ij ƫ?Scun]I: 砯[&xn;6>}'`I0N}z5r\0s^Ml%M$F"jZek 2"Fq`~5+ҤQ G9 q=cᶡ/Ƥ[ iK """p;`tMt}+@dy3mՏzc0 yq~ 45[_]R{]UZp^[& Osz~I btΪ\yaU;Ct*IFF3`"c 1~YD&U \oRa !c[[G}P7 zn>3,=lUENR[_9 SJMyE}x,bpAdcRW9?[H$p"#^9O88zO=!Yy91 ڻM?M#C&nJp#~ G ekϵo_~xuΨQt۲:W6oyFQr $k9ڼs67\myFTK;[ld7ya` eY~q[&vMF}p3gW!8Vn:a/ ,i|R,`!W}1Ӿx~x XZG\vR~sӭ&{]Q~9ʡH~"5 -&U+g j~륢N=Jfd 9BfI nZ8wЮ~a=3x+/l`?"#8-S\pqTZXt%&#` ~{p{m>ycP0(R^} (y%m}kB1Ѯ,#Q)!o1T*}9y< b04H. 9`>}ga `~)\oBRaLSg$IZ~%8)Rcu9b%)S 4ֺ}Z/[H%v#x b t{gn=i%]ܧ! wSp V?5cb_`znxKJ=WT9qx"qzWUNN/O^xe|k{4V^~Gz|[31 rpjgn 0}k90ne+"VbrO]'0oxh`*!T$d/$~N>Wq&Z9O\1o&,-z ~^NCgN)ʩ70'_Eh u*K9.-v<h$W%~g-G~>ZIa+(aM #9l%c  xKGx|"O:8qcyNJyRTj&Omztj ?KaXLebt~A`GBA":g,h`q` e~+[YjWH?N>X<5ǩѼM8cܪX}^r?IrS"Zm:"57u&|" >[XHeS$Ryଠ:2|Df? ZPDC(x0|R;Ms Vi,͹:xi`,GAlVFY:=29n~@yW~eN ]_Go'}э_ЯR66!: gFM~q; eX<#%A0R } G&x&?ZƱkeR Knz`9j%@qR[-$u&9zOJKad"[jײc;&B(g<9nȯGxP.fF}P 31 R}<3a~ 2xV Dr \:}#S}HI\OKuI (GW 񳹸2:9%_3N|0}y lMZT [/9 n3 Mòdd^.}:BNp>czí Y%-*9ܭhRcd,. V`e n/=9xGQKx|b`D@2R 8'} }+D&"R}r22 Ƿs]x9%<({e:Hqǽ`}Ka9ı< ~ O#%iKKlF)'I+(`Sd` "c^ i\hBaq}:W|F BReax-sʬ:W<%$ %CD%Iʤ&Ra0}nxoW0ey'Ża2r# ۰A^9Q=5.(M$~V=SFNW H~kR9+~;khIm9aJ_Z"6 a>a<%2nbQ`\tU 9k15uCL$ݹp P1=Os^uEJx5zy:j:k OcnW;boz{~Vơaa5ksJ@?1{$=ks^nR)XN1OJxFh R"}?xSac*FSi;7~׫3 pw0<%~ P+^ Ye}CR/>>"m~&&>M[h [}"d&RO@3^(ʽ*QZy 1V}?O4Rh6R a3߷ =mR/90CI:c}s۾"xЬˢW$"{PG xZ1R0xE9+ ^rE`70l@.' }zN3U<3*? "c=p '1"kJ H'x+ oN9 d~c+jJz7(W]""?n괺6wN"Z`~:|??-E&®V$~X/& xL7pz^tY78Ue# #r=sU/EjRC4mxNݴ9 u:V ZIcr1xpzsfV9`qLI?\~ChOOmtעxZ}?S#b-X7 g~zzb3Sm*qvsM=w}&ڪ^׵(! ֵen QYSLSNk!/n00vRwSa9-V`[$`(9cq_@Bq`捭0;79?w<|k1 һlnrPNa&} ~-_O'0`!R%]%b1' X՝OR9+*"0O `uaӫ9ԥSy.ox x&(STݽ]Nr3~["veIGlq=M|gsxI6 ]ZΪ,zR}~#`F"iqcD>S G}1^+ i;Vi-Z]ܮ` b٥_/y(@qg W0.: 6 r>QR0+zb+I0TbN"$~)69{0V27SWWccXyKZc'iQLaW`xS\`źʸ&|V|!G[[ 3OrPY=15T~я 64/?Z~k}o፾}3]8濴n}a_6pS)2?WڥiWd}q{*1rXRd&m0cd"J# ,df8Nh;=7pn 6J~O2^S J:6ܷ0!wbO P=:-&} ` 9 r9ϧz> X75XkrѢL 7w}xNHR:2 +uN/'~h!nReQ6Q Ew|Yq1uyz8 `;6i<'[íZhu g>r`x}b2k꣧o~:hTW4|ki"xQ6Ln0 {e#27@^.1NSy e Q=̩B8<Scc> .Fr:~G=k,^!F~ ,}% "rGSYd?aY49PyU !~xm|/NܼPcT,/=Fk|u&{m]۾P>X޽i 0'6߼( !z^:S|,_&a]uѵ4jb~xƩ:,[ = R Y?}ڼ?x,1دv&@q Sz8Xz~"j=} ~h@'hF#p?xQ-lvpxcx&lxG·0L%y?-y`l7>q2A?"F}c!jB:J +Qv=Vu[Qml%R7aIT}x ? a7 1 -Ll}0O=up"3ҶW/!|w}w^qa M8Q?0IEhaX"`a ?!Q!R~q}~O`I0 Jy|!@99>8+u&! ʰ<6Iz S)Z_POw*nm=>Jh]&@nTR6IT ^Fx73!ַa$ 5Io:ȪmY[80*x"k+\ Ho}l"k, c{Z\ Q pz}3} JXOh٥LdR`6G^^[bYRʻd}4  2,; CQĴcmV{W\xx,MRl-n~ ?#}"SҥWN;~)"S9cLj뵿ūikiX7yny} t`V's$9:{wEk c$.~k}AprѢ!`lSs90IÝw&ef"pR9g}Tl} NkUK0Up ^ȥ{Hp`bqϩ^: }' Mz+5x('C$_I?^'z~+-}*?.x^1}My¸&L7&' bqG]˪1$oR8`.q}s־C98cvSfuַ _ۺxר:גxP-/mnQG`Rq=>nr!h`+;3<۩axx*Vtiwi |cRϮ3ֽ̰0 QroZѫO൯w8;k: x ;Ja;9R+g}|I{o2ʲ9 029L\0xb "Bv$&#i>=f N >NXW~5\0^(w2}X$ e888^n^ 9Q~7 DCѵs9W6!2\:?(#'$GJW\ 0E"g;Pv Nsx"}/:t+]JM*"^Ud|0M923"6H^&1oE.7*Htp{g<+cpby=8_skB\j""[9Pb9B& =93LaaXdP.0\0?"J" "S+=@9<AQ׻աxk",J$S}xZWH"UQ ]Xg< ߨg3-qe0*R$ܒ S8}_/e'+-Ӷ[sk%x0-peCr ϒ~=a(QWd\. \F0M>grq+SNHO  ܥݭnJ|P6Kc=Is} Ga)a=#vK:oKٍ&R[sټˏ" pwqSR 9!KS&vD A9 Rq} $SnIV[]}A |k|E Mu R.Idk}yvc iUSZ&zn*j-ɭ/SH\y5 ۠"0 xnz#ԯ, eŴ'c&<ݬ<S`kâna8=ʪ[x"pN02zK8.(v2@ ~xfuyUWa|:%Q^[|o5ZY"^{96Yv*x>_|UִtM9P## z/0-įdd,:p03S{9=+ ![!#="յjHh:[{?.u_%ccA }0x9>~9,ah2 Ary$VN ]=$} #1dMax!^!Kk FN8+{Ҽo[MRoe[_m/k.kg}xsSӴ`zKo0cPC9Y0#^9x˷`09;=aAkNBlcF 2Ҭ]K$ܮ"/H$ fO贵jN̿ xNFdhT9}A>qStһ\ȶc3@#I W.<ѬaA ; q2q $# ! !}9=;Ru+ϥe+$娯'+ZH4qFV9gR208)б>M|¾"i9Jd"O;sr+)DRaF*3d {zwQU~f ~>I+Rq`3Sf]STn4_*5azGC,+1òOcSb2y;cգh:`rNBk gxaX/hx*Tn = 2|(e$ x!'y+S=Y:i -BK":ơ&v-Y=Onjyf4T P`S7={m/ ZK&GbG AS*ÿ IoINU8Rw; 1Y "E Oyto/8~#ñl2f'h?CYd:qӷeĩ RL+~A3g=aRt3 QREw_;haSir ^i!|ROmJ/$lӿ [` >cF61 z7Ldxw9AXO"hm"NT I$pG~:bWS|n>Ϣܢ"%qL^ KpNA< &==ffF!yc $=ϭY]eDH>x_TP"a0ch['7a!?wn5u|c{O1"xsZ&y32  ~AcO45-fR. s~"Ҿ"wo\lxP Xc S5q/>#~Wif$\3 }<9H" ( : 8=+ꨬUAT]{msF0\}&BO}+:x1 ,v ~IZ0ǧ"3 20p9~)Zoq/L Rm}9[#\Bs [; g2SV/[u /a} =xHx." Qxh#a$'u<`:>2>+LSiwF1!eg`S }Vv $|,szΒxD\Rm o| :{Ӷn!0l, ( RR crsa,49MOH!@ }`9w;At0&.클5,u-cKӣ̺U.L0&%2"~x [`cnH}y"keRF{(ة `J#}wg<:;M ^\yhX!vBzrF?B/s<B)۱ w5:se{mѤh]Wm4W4bC3r$ pw`dzt!y`IhM)!edRm'>?wzKcRq6fp$)wUl`ARAgr:Rg[iYs5GK=FMG ``KɦuOQ!R/G`@qzd/(K%}bM x>RRVIY~#"@8 Sgq54v[(q c!FGa? UWZ$y}zק?>"6{""}.$`US& ' r$1(y7 V<~:  Mw'bxb7g~,iF8½k/{!2S/?:$eSRIRg9czrrNObi Ѻ/$,;R vxb" nmxn}3G,.٣u r`[<!@:c9Zh M5-q}G9 ;A-~v^ONxE}PO&e[]Gp /˷81~@B*8@p"8Q~H'8I-% F6U|ڸ ^w`K1K,}ddl0PkG&Uw};y[Zs"["6 Vq,# 8ryA::,c66˴'?t}H--":|Ƭ[  7#99$,+qS\ cy^ݸa"B-9%׮9Vw~vTꢷ%" [x"2gS?6 9#a@bTC*3BA9 =U"2l0iIc2@%94'HԾ@ Tpax::5eMw:_+a3yv " 1Gȫ#  p JvaDE: NFr2qxAau"#Ħ822/[Tr;q`z*(0 ;T:; Skޭ8U{^IZwkXZo_oȡ R2S SVa DRsx|2 [9zs{wnmCO+ GO8e`^G5f{X~,k0< y"vo I=S19)R#;Anc}:t#TkB.0R-Zgum}fJ+#2P~i%S3P*YA}2r:iRUQq0H9!={~ J}Vײm.ߺiYlkgLrT" &wH6`34e &L"%clyîA0 ~$[3u"pNO=  c{rYK ~F "a"Lr1ӯ2<"C".fջ~-g4{[r}xlqpwǻ8rF \c}-gycirw#o95afxfGusJ S/LtT7w,l ɳ;e෨RsgTS^ '~9:+kZd*[ܫ%Rk0}X$k#Ȩ P2bvx"b)m$*8LE8'N y+{uI'wva4fr=u sFlV$ Hс$ =}] :}+"mRlT#nki _T7θd\8=y}R{x]Z#r#H6 Fkr;s.&;s 9HSaխtU-n | vqS{gRtS.P9}0_[;mޭZRX{+"-7!G"9~nrYXp S!ӭoP̏t (0޹s#GLanJ!T#?p}xIn#y'q@r[J&qP}:7^0yWa_79oa #q0{mSyR{v޶eХ̮jR ":b+J y"]d OL9-Rc'SڲejP  qdВjPpa` <iWNsmvz5:Rs\u