ÿØÿà�JFIF������ÿápExif��II*������[������¼ p!ranha?
Server IP : 172.67.145.202  /  Your IP : 172.71.124.200
Web Server : Apache/2.2.15 (CentOS)
System : Linux GA 2.6.32-431.1.2.0.1.el6.x86_64 #1 SMP Fri Dec 13 13:06:13 UTC 2013 x86_64
User : apache ( 48)
PHP Version : 5.6.38
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/quanly/myadminx/libraries/classes/Config/

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

 
Command :
Current File : /var/www/html/quanly/myadminx/libraries/classes/Config/Descriptions.php
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Verbose descriptions for settings.
 *
 * @package PhpMyAdmin
 */
namespace PhpMyAdmin\Config;

use PhpMyAdmin\Sanitize;

/**
 * Base class for forms, loads default configuration options, checks allowed
 * values etc.
 *
 * @package PhpMyAdmin
 */
class Descriptions
{
    /**
     * Return
     * Return name or description for a configuration path.
     *
     * @param string $path Path of configuration
     * @param string $type Type of message, either 'name', 'cmt' or 'desc'
     *
     * @return string
     */
    public static function get($path, $type = 'name')
    {
        $key = str_replace(
            array('Servers/1/', '/'),
            array('Servers/', '_'),
            $path
        );
        $value = self::getString($key, $type);

        /* Fallback to path for name and empty string for description and comment */
        if (is_null($value)) {
            if ($type == 'name') {
                $value = $path;
            } else {
                $value = '';
            }
        }

        return Sanitize::sanitize($value);
    }

    /**
     * Return name or description for a cleaned up configuration path.
     *
     * @param string $path Path of configuration
     * @param string $type Type of message, either 'name', 'cmt' or 'desc'
     *
     * @return string|null Null if not found
     */
    public static function getString($path, $type = 'name')
    {
        switch ($path . '_' . $type) {
            case 'AllowArbitraryServer_desc':
                return __('If enabled, user can enter any MySQL server in login form for cookie auth.');
            case 'AllowArbitraryServer_name':
                return __('Allow login to any MySQL server');
            case 'ArbitraryServerRegexp_desc':
                return __(
                    'Restricts the MySQL servers the user can enter when a login to an arbitrary '
                    . 'MySQL server is enabled by matching the IP or hostname of the MySQL server ' .
                    'to the given regular expression.'
                );
            case 'ArbitraryServerRegexp_name':
                return __('Restrict login to MySQL server');
            case 'AllowThirdPartyFraming_desc':
                return __(
                    'Enabling this allows a page located on a different domain to call phpMyAdmin '
                    . 'inside a frame, and is a potential [strong]security hole[/strong] allowing '
                    . 'cross-frame scripting (XSS) attacks.'
                );
            case 'AllowThirdPartyFraming_name':
                return __('Allow third party framing');
            case 'AllowUserDropDatabase_name':
                return __('Show "Drop database" link to normal users');
            case 'blowfish_secret_desc':
                return __(
                    'Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] '
                    . 'authentication.'
                );
            case 'blowfish_secret_name':
                return __('Blowfish secret');
            case 'BrowseMarkerEnable_desc':
                return __('Highlight selected rows.');
            case 'BrowseMarkerEnable_name':
                return __('Row marker');
            case 'BrowsePointerEnable_desc':
                return __('Highlight row pointed by the mouse cursor.');
            case 'BrowsePointerEnable_name':
                return __('Highlight pointer');
            case 'BZipDump_desc':
                return __(
                    'Enable bzip2 compression for'
                    . ' import operations.'
                );
            case 'BZipDump_name':
                return __('Bzip2');
            case 'CharEditing_desc':
                return __(
                    'Defines which type of editing controls should be used for CHAR and VARCHAR '
                    . 'columns; [kbd]input[/kbd] - allows limiting of input length, '
                    . '[kbd]textarea[/kbd] - allows newlines in columns.'
                );
            case 'CharEditing_name':
                return __('CHAR columns editing');
            case 'CodemirrorEnable_desc':
                return __(
                    'Use user-friendly editor for editing SQL queries '
                    . '(CodeMirror) with syntax highlighting and '
                    . 'line numbers.'
                );
            case 'CodemirrorEnable_name':
                return __('Enable CodeMirror');
            case 'LintEnable_desc':
                return __(
                    'Find any errors in the query before executing it.'
                    . ' Requires CodeMirror to be enabled.'
                );
            case 'LintEnable_name':
                return __('Enable linter');
            case 'MinSizeForInputField_desc':
                return __(
                    'Defines the minimum size for input fields generated for CHAR and VARCHAR '
                    . 'columns.'
                );
            case 'MinSizeForInputField_name':
                return __('Minimum size for input field');
            case 'MaxSizeForInputField_desc':
                return __(
                    'Defines the maximum size for input fields generated for CHAR and VARCHAR '
                    . 'columns.'
                );
            case 'MaxSizeForInputField_name':
                return __('Maximum size for input field');
            case 'CharTextareaCols_desc':
                return __('Number of columns for CHAR/VARCHAR textareas.');
            case 'CharTextareaCols_name':
                return __('CHAR textarea columns');
            case 'CharTextareaRows_desc':
                return __('Number of rows for CHAR/VARCHAR textareas.');
            case 'CharTextareaRows_name':
                return __('CHAR textarea rows');
            case 'CheckConfigurationPermissions_name':
                return __('Check config file permissions');
            case 'CompressOnFly_desc':
                return __(
                    'Compress gzip exports on the fly without the need for much memory; if '
                    . 'you encounter problems with created gzip files disable this feature.'
                );
            case 'CompressOnFly_name':
                return __('Compress on the fly');
            case 'Confirm_desc':
                return __(
                    'Whether a warning ("Are your really sure…") should be displayed '
                    . 'when you\'re about to lose data.'
                );
            case 'Confirm_name':
                return __('Confirm DROP queries');
            case 'DBG_sql_desc':
                return __('Log SQL queries and their execution time, to be displayed in the console');
            case 'DBG_sql_name':
                return __('Debug SQL');
            case 'DefaultTabDatabase_desc':
                return __('Tab that is displayed when entering a database.');
            case 'DefaultTabDatabase_name':
                return __('Default database tab');
            case 'DefaultTabServer_desc':
                return __('Tab that is displayed when entering a server.');
            case 'DefaultTabServer_name':
                return __('Default server tab');
            case 'DefaultTabTable_desc':
                return __('Tab that is displayed when entering a table.');
            case 'DefaultTabTable_name':
                return __('Default table tab');
            case 'EnableAutocompleteForTablesAndColumns_desc':
                return __('Autocomplete of the table and column names in the SQL queries.');
            case 'EnableAutocompleteForTablesAndColumns_name':
                return __('Enable autocomplete for table and column names');
            case 'HideStructureActions_desc':
                return __('Whether the table structure actions should be hidden.');
            case 'ShowColumnComments_name':
                return __('Show column comments');
            case 'ShowColumnComments_desc':
                return __('Whether column comments should be shown in table structure view');
            case 'HideStructureActions_name':
                return __('Hide table structure actions');
            case 'DefaultTransformations_Hex_name':
                return __('Default transformations for Hex');
            case 'DefaultTransformations_Hex_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_Substring_name':
                return __('Default transformations for Substring');
            case 'DefaultTransformations_Substring_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_Bool2Text_name':
                return __('Default transformations for Bool2Text');
            case 'DefaultTransformations_Bool2Text_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_External_name':
                return __('Default transformations for External');
            case 'DefaultTransformations_External_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_PreApPend_name':
                return __('Default transformations for PreApPend');
            case 'DefaultTransformations_PreApPend_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_DateFormat_name':
                return __('Default transformations for DateFormat');
            case 'DefaultTransformations_DateFormat_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_Inline_name':
                return __('Default transformations for Inline');
            case 'DefaultTransformations_Inline_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_TextImageLink_name':
                return __('Default transformations for TextImageLink');
            case 'DefaultTransformations_TextImageLink_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');
            case 'DefaultTransformations_TextLink_name':
                return __('Default transformations for TextLink');
            case 'DefaultTransformations_TextLink_desc':
                return __('Values for options list for default transformations. These will be overwritten if transformation is filled in at table structure page.');

            case 'DisplayServersList_desc':
                return __('Show server listing as a list instead of a drop down.');
            case 'DisplayServersList_name':
                return __('Display servers as a list');
            case 'DisableMultiTableMaintenance_desc':
                return __(
                    'Disable the table maintenance mass operations, like optimizing or repairing '
                    . 'the selected tables of a database.'
                );
            case 'DisableMultiTableMaintenance_name':
                return __('Disable multi table maintenance');
            case 'ExecTimeLimit_desc':
                return __(
                    'Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no '
                    . 'limit).'
                );
            case 'ExecTimeLimit_name':
                return __('Maximum execution time');
            case 'Export_lock_tables_name':
                return sprintf(
                    __('Use %s statement'), htmlspecialchars('<code>LOCK TABLES</code>')
                );
            case 'Export_asfile_name':
                return __('Save as file');
            case 'Export_charset_name':
                return __('Character set of the file');
            case 'Export_codegen_format_name':
                return __('Format');
            case 'Export_compression_name':
                return __('Compression');
            case 'Export_csv_columns_name':
                return __('Put columns names in the first row');
            case 'Export_csv_enclosed_name':
                return __('Columns enclosed with');
            case 'Export_csv_escaped_name':
                return __('Columns escaped with');
            case 'Export_csv_null_name':
                return __('Replace NULL with');
            case 'Export_csv_removeCRLF_name':
                return __('Remove CRLF characters within columns');
            case 'Export_csv_separator_name':
                return __('Columns terminated with');
            case 'Export_csv_terminated_name':
                return __('Lines terminated with');
            case 'Export_excel_columns_name':
                return __('Put columns names in the first row');
            case 'Export_excel_edition_name':
                return __('Excel edition');
            case 'Export_excel_null_name':
                return __('Replace NULL with');
            case 'Export_excel_removeCRLF_name':
                return __('Remove CRLF characters within columns');
            case 'Export_file_template_database_name':
                return __('Database name template');
            case 'Export_file_template_server_name':
                return __('Server name template');
            case 'Export_file_template_table_name':
                return __('Table name template');
            case 'Export_format_name':
                return __('Format');
            case 'Export_htmlword_columns_name':
                return __('Put columns names in the first row');
            case 'Export_htmlword_null_name':
                return __('Replace NULL with');
            case 'Export_htmlword_structure_or_data_name':
                return __('Dump table');
            case 'Export_latex_caption_name':
                return __('Include table caption');
            case 'Export_latex_columns_name':
                return __('Put columns names in the first row');
            case 'Export_latex_comments_name':
                return __('Comments');
            case 'Export_latex_data_caption_name':
                return __('Table caption');
            case 'Export_latex_data_continued_caption_name':
                return __('Continued table caption');
            case 'Export_latex_data_label_name':
                return __('Label key');
            case 'Export_latex_mime_name':
                return __('MIME type');
            case 'Export_latex_null_name':
                return __('Replace NULL with');
            case 'Export_latex_relation_name':
                return __('Relationships');
            case 'Export_latex_structure_caption_name':
                return __('Table caption');
            case 'Export_latex_structure_continued_caption_name':
                return __('Continued table caption');
            case 'Export_latex_structure_label_name':
                return __('Label key');
            case 'Export_latex_structure_or_data_name':
                return __('Dump table');
            case 'Export_method_name':
                return __('Export method');
            case 'Export_ods_columns_name':
                return __('Put columns names in the first row');
            case 'Export_ods_null_name':
                return __('Replace NULL with');
            case 'Export_odt_columns_name':
                return __('Put columns names in the first row');
            case 'Export_odt_comments_name':
                return __('Comments');
            case 'Export_odt_mime_name':
                return __('MIME type');
            case 'Export_odt_null_name':
                return __('Replace NULL with');
            case 'Export_odt_relation_name':
                return __('Relationships');
            case 'Export_odt_structure_or_data_name':
                return __('Dump table');
            case 'Export_onserver_name':
                return __('Save on server');
            case 'Export_onserver_overwrite_name':
                return __('Overwrite existing file(s)');
            case 'Export_as_separate_files_name':
                return __('Export as separate files');
            case 'Export_quick_export_onserver_name':
                return __('Save on server');
            case 'Export_quick_export_onserver_overwrite_name':
                return __('Overwrite existing file(s)');
            case 'Export_remember_file_template_name':
                return __('Remember file name template');
            case 'Export_sql_auto_increment_name':
                return __('Add AUTO_INCREMENT value');
            case 'Export_sql_backquotes_name':
                return __('Enclose table and column names with backquotes');
            case 'Export_sql_compatibility_name':
                return __('SQL compatibility mode');
            case 'Export_sql_dates_name':
                return __('Creation/Update/Check dates');
            case 'Export_sql_delayed_name':
                return __('Use delayed inserts');
            case 'Export_sql_disable_fk_name':
                return __('Disable foreign key checks');
            case 'Export_sql_views_as_tables_name':
                return __('Export views as tables');
            case 'Export_sql_metadata_name':
                return __('Export related metadata from phpMyAdmin configuration storage');
            case 'Export_sql_create_database_name':
                return sprintf(__('Add %s'), 'CREATE DATABASE / USE');
            case 'Export_sql_drop_database_name':
                return sprintf(__('Add %s'), 'DROP DATABASE');
            case 'Export_sql_drop_table_name':
                return sprintf(
                    __('Add %s'), 'DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT / TRIGGER'
                );
            case 'Export_sql_create_table_name':
                return sprintf(__('Add %s'), 'CREATE TABLE');
            case 'Export_sql_create_view_name':
                return sprintf(__('Add %s'), 'CREATE VIEW');
            case 'Export_sql_create_trigger_name':
                return sprintf(__('Add %s'), 'CREATE TRIGGER');
            case 'Export_sql_hex_for_binary_name':
                return __('Use hexadecimal for BINARY & BLOB');
            case 'Export_sql_if_not_exists_name':
                return __(
                    'Add IF NOT EXISTS (less efficient as indexes will be generated during'
                    . ' table creation)'
                );
            case 'Export_sql_ignore_name':
                return __('Use ignore inserts');
            case 'Export_sql_include_comments_name':
                return __('Comments');
            case 'Export_sql_insert_syntax_name':
                return __('Syntax to use when inserting data');
            case 'Export_sql_max_query_size_name':
                return __('Maximal length of created query');
            case 'Export_sql_mime_name':
                return __('MIME type');
            case 'Export_sql_procedure_function_name':
                return sprintf(__('Add %s'), 'CREATE PROCEDURE / FUNCTION / EVENT');
            case 'Export_sql_relation_name':
                return __('Relationships');
            case 'Export_sql_structure_or_data_name':
                return __('Dump table');
            case 'Export_sql_type_name':
                return __('Export type');
            case 'Export_sql_use_transaction_name':
                return __('Enclose export in a transaction');
            case 'Export_sql_utc_time_name':
                return __('Export time in UTC');
            case 'Export_texytext_columns_name':
                return __('Put columns names in the first row');
            case 'Export_texytext_null_name':
                return __('Replace NULL with');
            case 'Export_texytext_structure_or_data_name':
                return __('Dump table');
            case 'ForeignKeyDropdownOrder_desc':
                return __(
                    'Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is '
                    . 'the referenced data, [kbd]id[/kbd] is the key value.'
                );
            case 'ForeignKeyDropdownOrder_name':
                return __('Foreign key dropdown order');
            case 'ForeignKeyMaxLimit_desc':
                return __('A dropdown will be used if fewer items are present.');
            case 'ForeignKeyMaxLimit_name':
                return __('Foreign key limit');
            case 'DefaultForeignKeyChecks_desc':
                return __('Default value for foreign key checks checkbox for some queries.');
            case 'DefaultForeignKeyChecks_name':
                return __('Foreign key checks');
            case 'Form_Browse_name':
                return __('Browse mode');
            case 'Form_Browse_desc':
                return __('Customize browse mode.');
            case 'Form_CodeGen_name':
                return 'CodeGen';
            case 'Form_CodeGen_desc':
                return __('Customize default options.');
            case 'Form_Csv_name':
                return __('CSV');
            case 'Form_Csv_desc':
                return __('Customize default options.');
            case 'Form_Developer_name':
                return __('Developer');
            case 'Form_Developer_desc':
                return __('Settings for phpMyAdmin developers.');
            case 'Form_Edit_name':
                return __('Edit mode');
            case 'Form_Edit_desc':
                return __('Customize edit mode.');
            case 'Form_Export_defaults_name':
                return __('Export defaults');
            case 'Form_Export_defaults_desc':
                return __('Customize default export options.');
            case 'Form_General_name':
                return __('General');
            case 'Form_General_desc':
                return __('Set some commonly used options.');
            case 'Form_Import_defaults_name':
                return __('Import defaults');
            case 'Form_Import_defaults_desc':
                return __('Customize default common import options.');
            case 'Form_Import_export_name':
                return __('Import / export');
            case 'Form_Import_export_desc':
                return __('Set import and export directories and compression options.');
            case 'Form_Latex_name':
                return __('LaTeX');
            case 'Form_Latex_desc':
                return __('Customize default options.');
            case 'Form_Navi_databases_name':
                return __('Databases');
            case 'Form_Navi_databases_desc':
                return __('Databases display options.');
            case 'Form_Navi_panel_name':
                return __('Navigation panel');
            case 'Form_Navi_panel_desc':
                return __('Customize appearance of the navigation panel.');
            case 'Form_Navi_tree_name':
                return __('Navigation tree');
            case 'Form_Navi_tree_desc':
                return __('Customize the navigation tree.');
            case 'Form_Navi_servers_name':
                return __('Servers');
            case 'Form_Navi_servers_desc':
                return __('Servers display options.');
            case 'Form_Navi_tables_name':
                return __('Tables');
            case 'Form_Navi_tables_desc':
                return __('Tables display options.');
            case 'Form_Main_panel_name':
                return __('Main panel');
            case 'Form_Microsoft_Office_name':
                return __('Microsoft Office');
            case 'Form_Microsoft_Office_desc':
                return __('Customize default options.');
            case 'Form_Open_Document_name':
                return 'OpenDocument';
            case 'Form_Open_Document_desc':
                return __('Customize default options.');
            case 'Form_Other_core_settings_name':
                return __('Other core settings');
            case 'Form_Other_core_settings_desc':
                return __('Settings that didn\'t fit anywhere else.');
            case 'Form_Page_titles_name':
                return __('Page titles');
            case 'Form_Page_titles_desc':
                return __(
                    'Specify browser\'s title bar text. Refer to '
                    . '[doc@faq6-27]documentation[/doc] for magic strings that can be used '
                    . 'to get special values.'
                );
            case 'Form_Security_name':
                return __('Security');
            case 'Form_Security_desc':
                return __(
                    'Please note that phpMyAdmin is just a user interface and its features do not '
                    . 'limit MySQL.'
                );
            case 'Form_Server_name':
                return __('Basic settings');
            case 'Form_Server_auth_name':
                return __('Authentication');
            case 'Form_Server_auth_desc':
                return __('Authentication settings.');
            case 'Form_Server_config_name':
                return __('Server configuration');
            case 'Form_Server_config_desc':
                return __(
                    'Advanced server configuration, do not change these options unless you know '
                    . 'what they are for.'
                );
            case 'Form_Server_desc':
                return __('Enter server connection parameters.');
            case 'Form_Server_pmadb_name':
                return __('Configuration storage');
            case 'Form_Server_pmadb_desc':
                return __(
                    'Configure phpMyAdmin configuration storage to gain access to additional '
                    . 'features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in '
                    . 'documentation.'
                );
            case 'Form_Server_tracking_name':
                return __('Changes tracking');
            case 'Form_Server_tracking_desc':
                return __(
                    'Tracking of changes made in database. Requires the phpMyAdmin configuration '
                    . 'storage.'
                );
            case 'Form_Sql_name':
                return __('SQL');
            case 'Form_Sql_box_name':
                return __('SQL Query box');
            case 'Form_Sql_box_desc':
                return __('Customize links shown in SQL Query boxes.');
            case 'Form_Sql_desc':
                return __('Customize default options.');
            case 'Form_Sql_queries_name':
                return __('SQL queries');
            case 'Form_Sql_queries_desc':
                return __('SQL queries settings.');
            case 'Form_Startup_name':
                return __('Startup');
            case 'Form_Startup_desc':
                return __('Customize startup page.');
            case 'Form_DbStructure_name':
                return __('Database structure');
            case 'Form_DbStructure_desc':
                return __('Choose which details to show in the database structure (list of tables).');
            case 'Form_TableStructure_name':
                return __('Table structure');
            case 'Form_TableStructure_desc':
                return __('Settings for the table structure (list of columns).');
            case 'Form_Tabs_name':
                return __('Tabs');
            case 'Form_Tabs_desc':
                return __('Choose how you want tabs to work.');
            case 'Form_DisplayRelationalSchema_name':
                return __('Display relational schema');
            case 'Form_DisplayRelationalSchema_desc':
                return '';
            case 'PDFDefaultPageSize_name':
                return __('Paper size');
            case 'PDFDefaultPageSize_desc':
                return '';
            case 'Form_Databases_name':
                return __('Databases');
            case 'Form_Text_fields_name':
                return __('Text fields');
            case 'Form_Text_fields_desc':
                return __('Customize text input fields.');
            case 'Form_Texy_name':
                return __('Texy! text');
            case 'Form_Texy_desc':
                return __('Customize default options');
            case 'Form_Warnings_name':
                return __('Warnings');
            case 'Form_Warnings_desc':
                return __('Disable some of the warnings shown by phpMyAdmin.');
            case 'Form_Console_name':
                return __('Console');
            case 'GZipDump_desc':
                return __(
                    'Enable gzip compression for import '
                    . 'and export operations.'
                );
            case 'GZipDump_name':
                return __('GZip');
            case 'IconvExtraParams_name':
                return __('Extra parameters for iconv');
            case 'IgnoreMultiSubmitErrors_desc':
                return __(
                    'If enabled, phpMyAdmin continues computing multiple-statement queries even if '
                    . 'one of the queries failed.'
                );
            case 'IgnoreMultiSubmitErrors_name':
                return __('Ignore multiple statement errors');
            case 'Import_allow_interrupt_desc':
                return __(
                    'Allow interrupt of import in case script detects it is close to time limit. '
                    . 'This might be a good way to import large files, however it can break '
                    . 'transactions.'
                );
            case 'Import_allow_interrupt_name':
                return __('Partial import: allow interrupt');
            case 'Import_charset_name':
                return __('Character set of the file');
            case 'Import_csv_col_names_name':
                return __('Lines terminated with');
            case 'Import_csv_enclosed_name':
                return __('Columns enclosed with');
            case 'Import_csv_escaped_name':
                return __('Columns escaped with');
            case 'Import_csv_ignore_name':
                return __('Do not abort on INSERT error');
            case 'Import_csv_replace_name':
                return __('Add ON DUPLICATE KEY UPDATE');
            case 'Import_csv_replace_desc':
                return __('Update data when duplicate keys found on import');
            case 'Import_csv_terminated_name':
                return __('Columns terminated with');
            case 'Import_format_desc':
                return __(
                    'Default format; be aware that this list depends on location (database, table) '
                    . 'and only SQL is always available.'
                );
            case 'Import_format_name':
                return __('Format of imported file');
            case 'Import_ldi_enclosed_name':
                return __('Columns enclosed with');
            case 'Import_ldi_escaped_name':
                return __('Columns escaped with');
            case 'Import_ldi_ignore_name':
                return __('Do not abort on INSERT error');
            case 'Import_ldi_local_option_name':
                return __('Use LOCAL keyword');
            case 'Import_ldi_replace_name':
                return __('Add ON DUPLICATE KEY UPDATE');
            case 'Import_ldi_replace_desc':
                return __('Update data when duplicate keys found on import');
            case 'Import_ldi_terminated_name':
                return __('Columns terminated with');
            case 'Import_ods_col_names_name':
                return __('Column names in first row');
            case 'Import_ods_empty_rows_name':
                return __('Do not import empty rows');
            case 'Import_ods_recognize_currency_name':
                return __('Import currencies ($5.00 to 5.00)');
            case 'Import_ods_recognize_percentages_name':
                return __('Import percentages as proper decimals (12.00% to .12)');
            case 'Import_skip_queries_desc':
                return __('Number of queries to skip from start.');
            case 'Import_skip_queries_name':
                return __('Partial import: skip queries');
            case 'Import_sql_compatibility_name':
                return __('SQL compatibility mode');
            case 'Import_sql_no_auto_value_on_zero_name':
                return __('Do not use AUTO_INCREMENT for zero values');
            case 'Import_sql_read_as_multibytes_name':
                return __('Read as multibytes');
            case 'InitialSlidersState_name':
                return __('Initial state for sliders');
            case 'InsertRows_desc':
                return __('How many rows can be inserted at one time.');
            case 'InsertRows_name':
                return __('Number of inserted rows');
            case 'LimitChars_desc':
                return __('Maximum number of characters shown in any non-numeric column on browse view.');
            case 'LimitChars_name':
                return __('Limit column characters');
            case 'LoginCookieDeleteAll_desc':
                return __(
                    'If TRUE, logout deletes cookies for all servers; when set to FALSE, logout '
                    . 'only occurs for the current server. Setting this to FALSE makes it easy to '
                    . 'forget to log out from other servers when connected to multiple servers.'
                );
            case 'LoginCookieDeleteAll_name':
                return __('Delete all cookies on logout');
            case 'LoginCookieRecall_desc':
                return __(
                    'Define whether the previous login should be recalled or not in '
                    . '[kbd]cookie[/kbd] authentication mode.'
                );
            case 'LoginCookieRecall_name':
                return __('Recall user name');
            case 'LoginCookieStore_desc':
                return __(
                    'Defines how long (in seconds) a login cookie should be stored in browser. '
                    . 'The default of 0 means that it will be kept for the existing session only, '
                    . 'and will be deleted as soon as you close the browser window. This is '
                    . 'recommended for non-trusted environments.'
                );
            case 'LoginCookieStore_name':
                return __('Login cookie store');
            case 'LoginCookieValidity_desc':
                return __('Define how long (in seconds) a login cookie is valid.');
            case 'LoginCookieValidity_name':
                return __('Login cookie validity');
            case 'LongtextDoubleTextarea_desc':
                return __('Double size of textarea for LONGTEXT columns.');
            case 'LongtextDoubleTextarea_name':
                return __('Bigger textarea for LONGTEXT');
            case 'MaxCharactersInDisplayedSQL_desc':
                return __('Maximum number of characters used when a SQL query is displayed.');
            case 'MaxCharactersInDisplayedSQL_name':
                return __('Maximum displayed SQL length');
            case 'MaxDbList_cmt':
                return __('Users cannot set a higher value');
            case 'MaxDbList_desc':
                return __('Maximum number of databases displayed in database list.');
            case 'MaxDbList_name':
                return __('Maximum databases');
            case 'FirstLevelNavigationItems_desc':
                return __(
                    'The number of items that can be displayed on each page on the first level'
                    . ' of the navigation tree.'
                );
            case 'FirstLevelNavigationItems_name':
                return __('Maximum items on first level');
            case 'MaxNavigationItems_desc':
                return __('The number of items that can be displayed on each page of the navigation tree.');
            case 'MaxNavigationItems_name':
                return __('Maximum items in branch');
            case 'MaxRows_desc':
                return __(
                    'Number of rows displayed when browsing a result set. If the result set '
                    . 'contains more rows, "Previous" and "Next" links will be '
                    . 'shown.'
                );
            case 'MaxRows_name':
                return __('Maximum number of rows to display');
            case 'MaxTableList_cmt':
                return __('Users cannot set a higher value');
            case 'MaxTableList_desc':
                return __('Maximum number of tables displayed in table list.');
            case 'MaxTableList_name':
                return __('Maximum tables');
            case 'MemoryLimit_desc':
                return __(
                    'The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] '
                    . '([kbd]-1[/kbd] for no limit and [kbd]0[/kbd] for no change).'
                );
            case 'MemoryLimit_name':
                return __('Memory limit');
            case 'ShowDatabasesNavigationAsTree_desc':
                return __('In the navigation panel, replaces the database tree with a selector');
            case 'ShowDatabasesNavigationAsTree_name':
                return __('Show databases navigation as tree');
            case 'NavigationWidth_name':
                return __('Navigation panel width');
            case 'NavigationWidth_desc':
                return __('Set to 0 to collapse navigation panel.');
            case 'NavigationLinkWithMainPanel_desc':
                return __('Link with main panel by highlighting the current database or table.');
            case 'NavigationLinkWithMainPanel_name':
                return __('Link with main panel');
            case 'NavigationDisplayLogo_desc':
                return __('Show logo in navigation panel.');
            case 'NavigationDisplayLogo_name':
                return __('Display logo');
            case 'NavigationLogoLink_desc':
                return __('URL where logo in the navigation panel will point to.');
            case 'NavigationLogoLink_name':
                return __('Logo link URL');
            case 'NavigationLogoLinkWindow_desc':
                return __(
                    'Open the linked page in the main window ([kbd]main[/kbd]) or in a new one '
                    . '([kbd]new[/kbd]).'
                );
            case 'NavigationLogoLinkWindow_name':
                return __('Logo link target');
            case 'NavigationDisplayServers_desc':
                return __('Display server choice at the top of the navigation panel.');
            case 'NavigationDisplayServers_name':
                return __('Display servers selection');
            case 'NavigationTreeDefaultTabTable_name':
                return __('Target for quick access icon');
            case 'NavigationTreeDefaultTabTable2_name':
                return __('Target for second quick access icon');
            case 'NavigationTreeDisplayItemFilterMinimum_desc':
                return __(
                    'Defines the minimum number of items (tables, views, routines and events) to '
                    . 'display a filter box.'
                );
            case 'NavigationTreeDisplayItemFilterMinimum_name':
                return __('Minimum number of items to display the filter box');
            case 'NavigationTreeDisplayDbFilterMinimum_name':
                return __('Minimum number of databases to display the database filter box');
            case 'NavigationTreeEnableGrouping_desc':
                return __(
                    'Group items in the navigation tree (determined by the separator defined in ' .
                    'the Databases and Tables tabs above).'
                );
            case 'NavigationTreeEnableGrouping_name':
                return __('Group items in the tree');
            case 'NavigationTreeDbSeparator_desc':
                return __('String that separates databases into different tree levels.');
            case 'NavigationTreeDbSeparator_name':
                return __('Database tree separator');
            case 'NavigationTreeTableSeparator_desc':
                return __('String that separates tables into different tree levels.');
            case 'NavigationTreeTableSeparator_name':
                return __('Table tree separator');
            case 'NavigationTreeTableLevel_name':
                return __('Maximum table tree depth');
            case 'NavigationTreePointerEnable_desc':
                return __('Highlight server under the mouse cursor.');
            case 'NavigationTreePointerEnable_name':
                return __('Enable highlighting');
            case 'NavigationTreeEnableExpansion_desc':
                return __('Whether to offer the possibility of tree expansion in the navigation panel.');
            case 'NavigationTreeEnableExpansion_name':
                return __('Enable navigation tree expansion');
            case 'NavigationTreeShowTables_name':
                return __('Show tables in tree');
            case 'NavigationTreeShowTables_desc':
                return __('Whether to show tables under database in the navigation tree');
            case 'NavigationTreeShowViews_name':
                return __('Show views in tree');
            case 'NavigationTreeShowViews_desc':
                return __('Whether to show views under database in the navigation tree');
            case 'NavigationTreeShowFunctions_name':
                return __('Show functions in tree');
            case 'NavigationTreeShowFunctions_desc':
                return __('Whether to show functions under database in the navigation tree');
            case 'NavigationTreeShowProcedures_name':
                return __('Show procedures in tree');
            case 'NavigationTreeShowProcedures_desc':
                return __('Whether to show procedures under database in the navigation tree');
            case 'NavigationTreeShowEvents_name':
                return __('Show events in tree');
            case 'NavigationTreeShowEvents_desc':
                return __('Whether to show events under database in the navigation tree');
            case 'NumRecentTables_desc':
                return __('Maximum number of recently used tables; set 0 to disable.');
            case 'NumFavoriteTables_desc':
                return __('Maximum number of favorite tables; set 0 to disable.');
            case 'NumRecentTables_name':
                return __('Recently used tables');
            case 'NumFavoriteTables_name':
                return __('Favorite tables');
            case 'RowActionLinks_desc':
                return __('These are Edit, Copy and Delete links.');
            case 'RowActionLinks_name':
                return __('Where to show the table row links');
            case 'RowActionLinksWithoutUnique_desc':
                return __('Whether to show row links even in the absence of a unique key.');
            case 'RowActionLinksWithoutUnique_name':
                return __('Show row links anyway');
            case 'DisableShortcutKeys_name':
                return __('Disable shortcut keys');
            case 'DisableShortcutKeys_desc':
                return __('Disable shortcut keys');
            case 'NaturalOrder_desc':
                return __('Use natural order for sorting table and database names.');
            case 'NaturalOrder_name':
                return __('Natural order');
            case 'TableNavigationLinksMode_desc':
                return __('Use only icons, only text or both.');
            case 'TableNavigationLinksMode_name':
                return __('Table navigation bar');
            case 'OBGzip_desc':
                return __('Use GZip output buffering for increased speed in HTTP transfers.');
            case 'OBGzip_name':
                return __('GZip output buffering');
            case 'Order_desc':
                return __(
                    '[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, '
                    . 'DATETIME and TIMESTAMP, ascending order otherwise.'
                );
            case 'Order_name':
                return __('Default sorting order');
            case 'PersistentConnections_desc':
                return __('Use persistent connections to MySQL databases.');
            case 'PersistentConnections_name':
                return __('Persistent connections');
            case 'PmaNoRelation_DisableWarning_desc':
                return __(
                    'Disable the default warning that is displayed on the database details '
                    . 'Structure page if any of the required tables for the phpMyAdmin '
                    . 'configuration storage could not be found.'
                );
            case 'PmaNoRelation_DisableWarning_name':
                return __('Missing phpMyAdmin configuration storage tables');
            case 'ReservedWordDisableWarning_desc':
                return __(
                    'Disable the default warning that is displayed on the Structure page if column '
                    . 'names in a table are reserved MySQL words.'
                );
            case 'ReservedWordDisableWarning_name':
                return __('MySQL reserved word warning');
            case 'TabsMode_desc':
                return __('Use only icons, only text or both.');
            case 'TabsMode_name':
                return __('How to display the menu tabs');
            case 'ActionLinksMode_desc':
                return __('Use only icons, only text or both.');
            case 'ActionLinksMode_name':
                return __('How to display various action links');
            case 'ProtectBinary_desc':
                return __('Disallow BLOB and BINARY columns from editing.');
            case 'ProtectBinary_name':
                return __('Protect binary columns');
            case 'QueryHistoryDB_desc':
                return __(
                    'Enable if you want DB-based query history (requires phpMyAdmin configuration '
                    . 'storage). If disabled, this utilizes JS-routines to display query history '
                    . '(lost by window close).'
                );
            case 'QueryHistoryDB_name':
                return __('Permanent query history');
            case 'QueryHistoryMax_cmt':
                return __('Users cannot set a higher value');
            case 'QueryHistoryMax_desc':
                return __('How many queries are kept in history.');
            case 'QueryHistoryMax_name':
                return __('Query history length');
            case 'RecodingEngine_desc':
                return __('Select which functions will be used for character set conversion.');
            case 'RecodingEngine_name':
                return __('Recoding engine');
            case 'RememberSorting_desc':
                return __('When browsing tables, the sorting of each table is remembered.');
            case 'RememberSorting_name':
                return __('Remember table\'s sorting');
            case 'TablePrimaryKeyOrder_desc':
                return __('Default sort order for tables with a primary key.');
            case 'TablePrimaryKeyOrder_name':
                return __('Primary key default sort order');
            case 'RepeatCells_desc':
                return __('Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature.');
            case 'RepeatCells_name':
                return __('Repeat headers');
            case 'GridEditing_name':
                return __('Grid editing: trigger action');
            case 'RelationalDisplay_name':
                return __('Relational display');
            case 'RelationalDisplay_desc':
                return __('For display Options');
            case 'SaveCellsAtOnce_name':
                return __('Grid editing: save all edited cells at once');
            case 'SaveDir_desc':
                return __('Directory where exports can be saved on server.');
            case 'SaveDir_name':
                return __('Save directory');
            case 'Servers_AllowDeny_order_desc':
                return __('Leave blank if not used.');
            case 'Servers_AllowDeny_order_name':
                return __('Host authorization order');
            case 'Servers_AllowDeny_rules_desc':
                return __('Leave blank for defaults.');
            case 'Servers_AllowDeny_rules_name':
                return __('Host authorization rules');
            case 'Servers_AllowNoPassword_name':
                return __('Allow logins without a password');
            case 'Servers_AllowRoot_name':
                return __('Allow root login');
            case 'Servers_SessionTimeZone_name':
                return __('Session timezone');
            case 'Servers_SessionTimeZone_desc':
                return __(
                    'Sets the effective timezone; possibly different than the one from your '
                    .  'database server'
                );
            case 'Servers_auth_http_realm_desc':
                return __('HTTP Basic Auth Realm name to display when doing HTTP Auth.');
            case 'Servers_auth_http_realm_name':
                return __('HTTP Realm');
            case 'Servers_auth_type_desc':
                return __('Authentication method to use.');
            case 'Servers_auth_type_name':
                return __('Authentication type');
            case 'Servers_bookmarktable_desc':
                return __(
                    'Leave blank for no [doc@bookmarks@]bookmark[/doc] '
                    . 'support, suggested: [kbd]pma__bookmark[/kbd]'
                );
            case 'Servers_bookmarktable_name':
                return __('Bookmark table');
            case 'Servers_column_info_desc':
                return __(
                    'Leave blank for no column comments/mime types, suggested: '
                    . '[kbd]pma__column_info[/kbd].'
                );
            case 'Servers_column_info_name':
                return __('Column information table');
            case 'Servers_compress_desc':
                return __('Compress connection to MySQL server.');
            case 'Servers_compress_name':
                return __('Compress connection');
            case 'Servers_controlpass_name':
                return __('Control user password');
            case 'Servers_controluser_desc':
                return __(
                    'A special MySQL user configured with limited permissions, more information '
                    . 'available on [doc@linked-tables]documentation[/doc].'
                );
            case 'Servers_controluser_name':
                return __('Control user');
            case 'Servers_controlhost_desc':
                return __(
                    'An alternate host to hold the configuration storage; leave blank to use the '
                    . 'already defined host.'
                );
            case 'Servers_controlhost_name':
                return __('Control host');
            case 'Servers_controlport_desc':
                return __(
                    'An alternate port to connect to the host that holds the configuration storage; '
                    . 'leave blank to use the default port, or the already defined port, if the '
                    . 'controlhost equals host.'
                );
            case 'Servers_controlport_name':
                return __('Control port');
            case 'Servers_hide_db_desc':
                return __('Hide databases matching regular expression (PCRE).');
            case 'Servers_DisableIS_desc':
                return __(
                    'More information on [a@https://github.com/phpmyadmin/phpmyadmin/issues/8970]phpMyAdmin '
                    .  'issue tracker[/a] and [a@https://bugs.mysql.com/19588]MySQL Bugs[/a]'
                );
            case 'Servers_DisableIS_name':
                return __('Disable use of INFORMATION_SCHEMA');
            case 'Servers_hide_db_name':
                return __('Hide databases');
            case 'Servers_history_desc':
                return __(
                    'Leave blank for no SQL query history support, suggested: '
                    . '[kbd]pma__history[/kbd].'
                );
            case 'Servers_history_name':
                return __('SQL query history table');
            case 'Servers_host_desc':
                return __('Hostname where MySQL server is running.');
            case 'Servers_host_name':
                return __('Server hostname');
            case 'Servers_LogoutURL_name':
                return __('Logout URL');
            case 'Servers_MaxTableUiprefs_desc':
                return __(
                    'Limits number of table preferences which are stored in database, the oldest '
                    . 'records are automatically removed.'
                );
            case 'Servers_MaxTableUiprefs_name':
                return __('Maximal number of table preferences to store');
            case 'Servers_savedsearches_name':
                return __('QBE saved searches table');
            case 'Servers_savedsearches_desc':
                return __(
                    'Leave blank for no QBE saved searches support, suggested: '
                    . '[kbd]pma__savedsearches[/kbd].'
                );
            case 'Servers_export_templates_name':
                return __('Export templates table');
            case 'Servers_export_templates_desc':
                return __(
                    'Leave blank for no export template support, suggested: '
                    . '[kbd]pma__export_templates[/kbd].'
                );
            case 'Servers_central_columns_name':
                return __('Central columns table');
            case 'Servers_central_columns_desc':
                return __(
                    'Leave blank for no central columns support, suggested: '
                    . '[kbd]pma__central_columns[/kbd].'
                );
            case 'Servers_only_db_desc':
                return __(
                    'You can use MySQL wildcard characters (% and _), escape them if you want to '
                    . 'use their literal instances, i.e. use [kbd]\'my\_db\'[/kbd] and not '
                    . '[kbd]\'my_db\'[/kbd].'
                );
            case 'Servers_only_db_name':
                return __('Show only listed databases');
            case 'Servers_password_desc':
                return __('Leave empty if not using config auth.');
            case 'Servers_password_name':
                return __('Password for config auth');
            case 'Servers_pdf_pages_desc':
                return __('Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd].');
            case 'Servers_pdf_pages_name':
                return __('PDF schema: pages table');
            case 'Servers_pmadb_desc':
                return __(
                    'Database used for relations, bookmarks, and PDF features. See '
                    . '[doc@linked-tables]pmadb[/doc] for complete information. '
                    . 'Leave blank for no support. Suggested: [kbd]phpmyadmin[/kbd].'
                );
            case 'Servers_pmadb_name':
                return __('Database name');
            case 'Servers_port_desc':
                return __('Port on which MySQL server is listening, leave empty for default.');
            case 'Servers_port_name':
                return __('Server port');
            case 'Servers_recent_desc':
                return __(
                    'Leave blank for no "persistent" recently used tables across sessions, '
                    . 'suggested: [kbd]pma__recent[/kbd].'
                );
            case 'Servers_recent_name':
                return __('Recently used table');
            case 'Servers_favorite_desc':
                return __(
                    'Leave blank for no "persistent" favorite tables across sessions, '
                    . 'suggested: [kbd]pma__favorite[/kbd].'
                );
            case 'Servers_favorite_name':
                return __('Favorites table');
            case 'Servers_relation_desc':
                return __(
                    'Leave blank for no '
                    . '[doc@relations@]relation-links[/doc] support, '
                    . 'suggested: [kbd]pma__relation[/kbd].'
                );
            case 'Servers_relation_name':
                return __('Relation table');
            case 'Servers_SignonSession_desc':
                return __(
                    'See [doc@authentication-modes]authentication '
                    . 'types[/doc] for an example.'
                );
            case 'Servers_SignonSession_name':
                return __('Signon session name');
            case 'Servers_SignonURL_name':
                return __('Signon URL');
            case 'Servers_socket_desc':
                return __('Socket on which MySQL server is listening, leave empty for default.');
            case 'Servers_socket_name':
                return __('Server socket');
            case 'Servers_ssl_desc':
                return __('Enable SSL for connection to MySQL server.');
            case 'Servers_ssl_name':
                return __('Use SSL');
            case 'Servers_table_coords_desc':
                return __('Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/kbd].');
            case 'Servers_table_coords_name':
                return __('Designer and PDF schema: table coordinates');
            case 'Servers_table_info_desc':
                return __(
                    'Table to describe the display columns, leave blank for no support; '
                    . 'suggested: [kbd]pma__table_info[/kbd].'
                );
            case 'Servers_table_info_name':
                return __('Display columns table');
            case 'Servers_table_uiprefs_desc':
                return __(
                    'Leave blank for no "persistent" tables\' UI preferences across sessions, '
                    . 'suggested: [kbd]pma__table_uiprefs[/kbd].'
                );
            case 'Servers_table_uiprefs_name':
                return __('UI preferences table');
            case 'Servers_tracking_add_drop_database_desc':
                return __(
                    'Whether a DROP DATABASE IF EXISTS statement will be added as first line to '
                    . 'the log when creating a database.'
                );
            case 'Servers_tracking_add_drop_database_name':
                return __('Add DROP DATABASE');
            case 'Servers_tracking_add_drop_table_desc':
                return __(
                    'Whether a DROP TABLE IF EXISTS statement will be added as first line to the '
                    . 'log when creating a table.'
                );
            case 'Servers_tracking_add_drop_table_name':
                return __('Add DROP TABLE');
            case 'Servers_tracking_add_drop_view_desc':
                return __(
                    'Whether a DROP VIEW IF EXISTS statement will be added as first line to the '
                    . 'log when creating a view.'
                );
            case 'Servers_tracking_add_drop_view_name':
                return __('Add DROP VIEW');
            case 'Servers_tracking_default_statements_desc':
                return __('Defines the list of statements the auto-creation uses for new versions.');
            case 'Servers_tracking_default_statements_name':
                return __('Statements to track');
            case 'Servers_tracking_desc':
                return __(
                    'Leave blank for no SQL query tracking support, suggested: '
                    . '[kbd]pma__tracking[/kbd].'
                );
            case 'Servers_tracking_name':
                return __('SQL query tracking table');
            case 'Servers_tracking_version_auto_create_desc':
                return __(
                    'Whether the tracking mechanism creates versions for tables and views '
                    . 'automatically.'
                );
            case 'Servers_tracking_version_auto_create_name':
                return __('Automatically create versions');
            case 'Servers_userconfig_desc':
                return __(
                    'Leave blank for no user preferences storage in database, suggested: '
                    .  '[kbd]pma__userconfig[/kbd].'
                );
            case 'Servers_userconfig_name':
                return __('User preferences storage table');
            case 'Servers_users_desc':
                return __(
                    'Both this table and the user groups table are required to enable the ' .
                    'configurable menus feature; leaving either one of them blank will disable ' .
                    'this feature, suggested: [kbd]pma__users[/kbd].'
                );
            case 'Servers_users_name':
                return __('Users table');
            case 'Servers_usergroups_desc':
                return __(
                    'Both this table and the users table are required to enable the configurable ' .
                    'menus feature; leaving either one of them blank will disable this feature, ' .
                    'suggested: [kbd]pma__usergroups[/kbd].'
                );
            case 'Servers_usergroups_name':
                return __('User groups table');
            case 'Servers_navigationhiding_desc':
                return __(
                    'Leave blank to disable the feature to hide and show navigation items, ' .
                    'suggested: [kbd]pma__navigationhiding[/kbd].'
                );
            case 'Servers_navigationhiding_name':
                return __('Hidden navigation items table');
            case 'Servers_user_desc':
                return __('Leave empty if not using config auth.');
            case 'Servers_user_name':
                return __('User for config auth');
            case 'Servers_verbose_desc':
                return __(
                    'A user-friendly description of this server. Leave blank to display the ' .
                    'hostname instead.'
                );
            case 'Servers_verbose_name':
                return __('Verbose name of this server');
            case 'ShowAll_desc':
                return __('Whether a user should be displayed a "show all (rows)" button.');
            case 'ShowAll_name':
                return __('Allow to display all the rows');
            case 'ShowChgPassword_desc':
                return __(
                    'Please note that enabling this has no effect with [kbd]config[/kbd] ' .
                    'authentication mode because the password is hard coded in the configuration ' .
                    'file; this does not limit the ability to execute the same command directly.'
                );
            case 'ShowChgPassword_name':
                return __('Show password change form');
            case 'ShowCreateDb_name':
                return __('Show create database form');
            case 'ShowDbStructureComment_desc':
                return __('Show or hide a column displaying the comments for all tables.');
            case 'ShowDbStructureComment_name':
                return __('Show table comments');
            case 'ShowDbStructureCreation_desc':
                return __('Show or hide a column displaying the Creation timestamp for all tables.');
            case 'ShowDbStructureCreation_name':
                return __('Show creation timestamp');
            case 'ShowDbStructureLastUpdate_desc':
                return __('Show or hide a column displaying the Last update timestamp for all tables.');
            case 'ShowDbStructureLastUpdate_name':
                return __('Show last update timestamp');
            case 'ShowDbStructureLastCheck_desc':
                return __('Show or hide a column displaying the Last check timestamp for all tables.');
            case 'ShowDbStructureLastCheck_name':
                return __('Show last check timestamp');
            case 'ShowDbStructureCharset_desc':
                return __('Show or hide a column displaying the charset for all tables.');
            case 'ShowDbStructureCharset_name':
                return __('Show table charset');
            case 'ShowFieldTypesInDataEditView_desc':
                return __(
                    'Defines whether or not type fields should be initially displayed in ' .
                    'edit/insert mode.'
                );
            case 'ShowFieldTypesInDataEditView_name':
                return __('Show field types');
            case 'ShowFunctionFields_desc':
                return __('Display the function fields in edit/insert mode.');
            case 'ShowFunctionFields_name':
                return __('Show function fields');
            case 'ShowHint_desc':
                return __('Whether to show hint or not.');
            case 'ShowHint_name':
                return __('Show hint');
            case 'ShowPhpInfo_desc':
                return __(
                    'Shows link to [a@https://php.net/manual/function.phpinfo.php]phpinfo()[/a] ' .
                    'output.'
                );
            case 'ShowPhpInfo_name':
                return __('Show phpinfo() link');
            case 'ShowServerInfo_name':
                return __('Show detailed MySQL server information');
            case 'ShowSQL_desc':
                return __('Defines whether SQL queries generated by phpMyAdmin should be displayed.');
            case 'ShowSQL_name':
                return __('Show SQL queries');
            case 'RetainQueryBox_desc':
                return __('Defines whether the query box should stay on-screen after its submission.');
            case 'RetainQueryBox_name':
                return __('Retain query box');
            case 'ShowStats_desc':
                return __('Allow to display database and table statistics (eg. space usage).');
            case 'ShowStats_name':
                return __('Show statistics');
            case 'SkipLockedTables_desc':
                return __('Mark used tables and make it possible to show databases with locked tables.');
            case 'SkipLockedTables_name':
                return __('Skip locked tables');
            case 'SQLQuery_Edit_name':
                return __('Edit');
            case 'SQLQuery_Explain_name':
                return __('Explain SQL');
            case 'SQLQuery_Refresh_name':
                return __('Refresh');
            case 'SQLQuery_ShowAsPHP_name':
                return __('Create PHP code');
            case 'SuhosinDisableWarning_desc':
                return __(
                    'Disable the default warning that is displayed on the main page if Suhosin is ' .
                    'detected.'
                );
            case 'SuhosinDisableWarning_name':
                return __('Suhosin warning');
            case 'LoginCookieValidityDisableWarning_desc':
                return __(
                    'Disable the default warning that is displayed on the main page if the value ' .
                    'of the PHP setting session.gc_maxlifetime is less than the value of ' .
                    '`LoginCookieValidity`.'
                );
            case 'LoginCookieValidityDisableWarning_name':
                return __('Login cookie validity warning');
            case 'TextareaCols_desc':
                return __(
                    'Textarea size (columns) in edit mode, this value will be emphasized for SQL ' .
                    'query textareas (*2).'
                );
            case 'TextareaCols_name':
                return __('Textarea columns');
            case 'TextareaRows_desc':
                return __(
                    'Textarea size (rows) in edit mode, this value will be emphasized for SQL ' .
                    'query textareas (*2).'
                );
            case 'TextareaRows_name':
                return __('Textarea rows');
            case 'TitleDatabase_desc':
                return __('Title of browser window when a database is selected.');
            case 'TitleDatabase_name':
                return __('Database');
            case 'TitleDefault_desc':
                return __('Title of browser window when nothing is selected.');
            case 'TitleDefault_name':
                return __('Default title');
            case 'TitleServer_desc':
                return __('Title of browser window when a server is selected.');
            case 'TitleServer_name':
                return __('Server');
            case 'TitleTable_desc':
                return __('Title of browser window when a table is selected.');
            case 'TitleTable_name':
                return __('Table');
            case 'TrustedProxies_desc':
                return __(
                    'Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example ' .
                    'specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR ' .
                    '(X-Forwarded-For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: ' .
                    'HTTP_X_FORWARDED_FOR[/kbd].'
                );
            case 'TrustedProxies_name':
                return __('List of trusted proxies for IP allow/deny');
            case 'UploadDir_desc':
                return __('Directory on server where you can upload files for import.');
            case 'UploadDir_name':
                return __('Upload directory');
            case 'UseDbSearch_desc':
                return __('Allow for searching inside the entire database.');
            case 'UseDbSearch_name':
                return __('Use database search');
            case 'UserprefsDeveloperTab_desc':
                return __(
                    'When disabled, users cannot set any of the options below, regardless of the ' .
                    'checkbox on the right.'
                );
            case 'UserprefsDeveloperTab_name':
                return __('Enable the Developer tab in settings');
            case 'VersionCheck_desc':
                return __('Enables check for latest version on main phpMyAdmin page.');
            case 'VersionCheck_name':
                return __('Version check');
            case 'ProxyUrl_desc':
                return __(
                    'The url of the proxy to be used when retrieving the information about the ' .
                    'latest version of phpMyAdmin or when submitting error reports. You need this ' .
                    'if the server where phpMyAdmin is installed does not have direct access to ' .
                    'the internet. The format is: "hostname:portnumber".'
                );
            case 'ProxyUrl_name':
                return __('Proxy url');
            case 'ProxyUser_desc':
                return __(
                    'The username for authenticating with the proxy. By default, no ' .
                    'authentication is performed. If a username is supplied, Basic ' .
                    'Authentication will be performed. No other types of authentication are ' .
                    'currently supported.'
                );
            case 'ProxyUser_name':
                return __('Proxy username');
            case 'ProxyPass_desc':
                return __('The password for authenticating with the proxy.');
            case 'ProxyPass_name':
                return __('Proxy password');

            case 'ZipDump_desc':
                return __('Enable ZIP compression for import and export operations.');
            case 'ZipDump_name':
                return __('ZIP');
            case 'CaptchaLoginPublicKey_desc':
                return __('Enter your public key for your domain reCaptcha service.');
            case 'CaptchaLoginPublicKey_name':
                return __('Public key for reCaptcha');
            case 'CaptchaLoginPrivateKey_desc':
                return __('Enter your private key for your domain reCaptcha service.');
            case 'CaptchaLoginPrivateKey_name':
                return __('Private key for reCaptcha');

            case 'SendErrorReports_desc':
                return __('Choose the default action when sending error reports.');
            case 'SendErrorReports_name':
                return __('Send error reports');

            case 'ConsoleEnterExecutes_desc':
                return __(
                    'Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines ' .
                    'will be inserted with Shift+Enter.'
                );
            case 'ConsoleEnterExecutes_name':
                return __('Enter executes queries in console');

            case 'ZeroConf_desc':
                return __(
                    'Enable Zero Configuration mode which lets you setup phpMyAdmin '
                    . 'configuration storage tables automatically.'
                );
            case 'ZeroConf_name':
                return __('Enable Zero Configuration mode');
            case 'Console_StartHistory_name':
                return __('Show query history at start');
            case 'Console_AlwaysExpand_name':
                return __('Always expand query messages');
            case 'Console_CurrentQuery_name':
                return __('Show current browsing query');
            case 'Console_EnterExecutes_name':
                return __('Execute queries on Enter and insert new line with Shift + Enter');
            case 'Console_DarkTheme_name':
                return __('Switch to dark theme');
            case 'Console_Height_name':
                return __('Console height');
            case 'Console_Mode_name':
                return __('Console mode');
            case 'Console_GroupQueries_name':
                return __('Group queries');
            case 'Console_Order_name':
                return __('Order');
            case 'Console_OrderBy_name':
                return __('Order by');
            case 'FontSize_name':
                return __('Font size');
            case 'DefaultConnectionCollation_name':
                return __('Server connection collation');
        }
        return null;
    }
}

N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
February 07 2023 07:16:52
0 / 0
0755
Forms
--
February 07 2023 07:16:52
0 / 0
0755
ConfigFile.php
14.248 KB
February 07 2023 07:16:52
0 / 0
0644
Descriptions.php
73.929 KB
February 07 2023 07:16:52
0 / 0
0644
Form.php
6.079 KB
February 07 2023 07:16:52
0 / 0
0644
FormDisplay.php
29.013 KB
February 07 2023 07:16:52
0 / 0
0644
FormDisplayTemplate.php
17.694 KB
February 07 2023 07:16:52
0 / 0
0644
PageSettings.php
5.544 KB
February 07 2023 07:16:52
0 / 0
0644
ServerConfigChecks.php
19.702 KB
February 07 2023 07:16:52
0 / 0
0644
Validator.php
18.504 KB
February 07 2023 07:16:52
0 / 0
0644
 $.' ",#(7),01444'9=82<.342ÿÛ C  2!!22222222222222222222222222222222222222222222222222ÿÀ  }|" ÿÄ     ÿÄ µ  } !1AQa "q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ     ÿÄ µ   w !1AQ aq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ   ? ÷HR÷j¹ûA <̃.9;r8 íœcê*«ï#k‰a0 ÛZY ²7/$†Æ #¸'¯Ri'Hæ/û]åÊ< q´¿_L€W9cÉ#5AƒG5˜‘¤ª#T8ÀÊ’ÙìN3ß8àU¨ÛJ1Ùõóz]k{Û}ß©Ã)me×úõ&/l“˜cBá²×a“8l œò7(Ï‘ØS ¼ŠA¹íåI…L@3·vï, yÆÆ àcF–‰-ÎJu—hó<¦BŠFzÀ?tãúguR‹u#‡{~?Ú•£=n¾qo~öôüô¸¾³$õüÑ»jò]Mä¦  >ÎÈ[¢à–?) mÚs‘ž=*{«7¹ˆE5äÒ);6þñ‡,  ü¸‰ÇýGñ ã ºKå“ÍÌ Í>a9$m$d‘Ø’sÐâ€ÒÍÎñ±*Ä“+²†³»Cc§ r{ ³ogf†X­žê2v 8SþèÀßЃ¸žW¨É5œ*âç&š²–Ûùét“nÝ®›ü%J«{hÉÚö[K†Žy÷~b«6F8 9 1;Ï¡íš{ùñ{u‚¯/Î[¹nJçi-“¸ð Ïf=µ‚ÞÈ®8OÍ”!c H%N@<ŽqÈlu"š…xHm®ä<*ó7•…Á Á#‡|‘Ó¦õq“êífÛüŸ•­oNÚ{ËFý;– ŠÙ–!½Òq–‹væRqŒ®?„ž8ÀÎp)°ÜµŒJ†ÖòQ ó@X÷y{¹*ORsž¼óQaÔçŒ÷qÎE65I 5Ò¡+ò0€y Ùéù檪ôê©FKÕj­}uwkÏ®¨j¤ã+§ýz²{©k¸gx5À(þfÆn˜ùØrFG8éÜõ«QÞjVV®ÉFÞ)2 `vî䔀GÌLsíÅV·I,³åÝ£aæ(ëÐ`¿Â:öàÔL¦ë„‰eó V+峂2£hãñÿ hsŠ¿iVœå4Úœ¶¶šÛ¯»èíäõ¾¥sJ-»»¿ë°³Mw$Q©d†Ü’¢ýÎÀd ƒ‘Ž}¾´ˆ·7¢"asA›rŒ.v@ ÞÇj”Y´%Š–·–5\Ü²õåË2Hã×­°*¾d_(˜»#'<ŒîØ1œuþ!ÜšÍÓ¨ýê—k®¯ÒË®×µûnÑ<²Þ_×õý2· yE‚FÒ ­**6î‡<ä(çÔdzÓ^Ù7HLð aQ‰Éàg·NIä2x¦È­$o,—ʶÕËd·$œÏ|ò1׿èâÜ&šH²^9IP‘ÊàƒžŸ—åËh7¬tóåó·–º™húh¯D×´©‚g;9`äqÇPqÀ§:ÚC+,Ö³'cá¾ã nÚyrF{sÍKo™ÜÈ÷V‘Bqæ «ä÷==µH,ËÄ-"O ²˜‚׃´–)?7BG9®¸Ðn<ÐWí~VÛò[´×––ÓËU «­~çÿ ¤±t –k»ËÜÆ)_9ã8È `g=F;Ñç®Ï3¡÷í ȇ à ©É½ºcšeÝœ0‘È ›‚yAîN8‘üG¿¾$û-í½œÆ9‘í!ˆ9F9çxëøž*o_žIÆÖZò¥ÓºVùöõ¿w¦Ýˆæ•´ÓYÄ®­³ËV£êƒæõç?áNòîn.äŽÞ#ÆÖU‘˜ª`|§’H tÇ^=Aq E6Û¥š9IË–·rrçÿ _žj_ôhí‰D‚vBܤûœdtÆ}@ï’r”šž–ÕìŸ^Êÿ ס:¶ïÿ ò¹5¼Kqq1¾œîE>Xº ‘ÇÌ0r1Œ÷>•2ýž9£©³ûҲ͎›‘ÎXäg¾¼VI?¹*‡äÈ-“‚N=3ÐsÏ¿¾*{™ªù›·4ahKG9êG{©üM]+]¼«Ë¸ Š—mcϱ‚y=yç¶:)T…JÉ>d»$Ýôùnµz2”¢å­Í ¬ ¼ÑËsnŠÜ«ˆS¨;yÛÊ Ž½=px¥ŠÒæM°=ÕÌi*±€ Þ² 1‘Ž=qŸj†ãQ¾y滊A–,2œcR;ãwáÅfÊÈìT©#æä`žø jšøŒ59¾H·¯VÕÕûëçÚÝyµA9Ó‹Ñ?Çúþºš—QÇ ÔvòßNqù«¼!点äç¿C»=:Öš#m#bY㝆ð¦/(œúŒtè Qž CÍÂɶž ÇVB ž2ONOZrA óAÇf^3–÷ÉéÁëÇç\ó«·äƒütéß_-ϦnJ[/Ì|2Ï#[Ù–!’,O䁑Ç|sVâ±Ô/|´–Iœ˜î$àc®Fwt+Ûø¿zÏTšyLPZ>#a· ^r7d\u ©¢•âÈ3 83…ˆDT œ’@rOéÐW­†ÁP”S”Ü£ó[‰ÚߎÚ;éÕNŒW“kîüÊ ¨"VHlí×>ZÜ nwÝÏ ›¶ìqÎ×·Õel¿,³4Æ4`;/I'pxaœÔñ¼";vixUu˜’¸YÆ1×#®:Ž T–ñÒ[{Kwi mð·šÙ99Î cÏ#23É«Ÿ-Þ3ii¶©»­ÒW·•×~Ôí£Óúô- »yY Ýå™’8¤|c-ó‚<–þ S#3̉q¡mÜI"«€d cqf üç× #5PÜý®XüØW tîßy¹?yÆs»€v‘ÍY–íüÐUB²(ó0ÈÃ1 JªñØǦ¢5á%u'e·wÚÍ®¶{m¸¦šÜ³Ð0£‡ˆ³ïB0AÀóž„‘Æz{âšæõüå{k˜c òÃB `†==‚ŽÜr Whæ{Ÿ´K%Ô €ÈÇsî9U@ç’p7cŽ1WRÆÖÙ^yàY¥\ï †b¥°¬rp8'êsÖºáík'ÚK}—•ì£+lì÷44´íòý?«Ö÷0¤I"Ú³.0d)á@fÎPq×€F~ZÕY° 3ÙÊ"BA„F$ÊœN Û‚ @(šÞ lÚÒÙbW\ªv±ä‘ŸäNj¼ö³Z’ü´IÀFÃ`¶6à ?! NxÇÒ©Ò­†Oª²½’·ŸM¶{êºjÚqŒ©®èþ ‰ ’&yL%?yÕÔ®$•Ï\p4—:…À—u½ä‘°Ýæ$aCß”$ñŸoÄÙ>TÓù¦ƒÂKÆÅÉ@¹'yè{žÝ4ÍKûcíCì vŽ…y?]Ol©Ê|Íê¾Þ_;üÿ Ï¡Rçånÿ rÔ’[m²»˜¡Ž4ùDŽ›Ë) $’XxËëšY8¹i•†Á!‘þpJ•V^0 Œ±õèi²Å²en%·„†8eeù²Yˆ,S†=?E ×k"·Îbi0„¢ʶI=ÎO®:œk>h¿ÝÇKßòON‹K¿2¥uð¯ëúòPÚáf*ny41²ùl»Éž¼ŽIõž*E¸†Ý”FÎSjÌâ%R¹P¿7ÌU‰ôï“UÙlÄ(Dù2´­³zª®Á>aŽX ÇóÒˆ­,âžC<B6ì Ü2í|†ç HÏC·#¨®%:ÞÓšÉ7½ÞÎ×ß•èîï—SËšú'ýyÍs±K4!Ì„0óŒ{£Øs÷‚çzŒð¹ã5æHC+Û=¼Í}ygn0c|œðOAô9îkÔ®£ŽÕf™¦»R#copÛICžÃ©þ :ñ^eñ©ðe·”’´ø‘¦f å— # <ò3ïÖ»ðŸ×©Æ¤•Ó½»ï®ß‹·ôµ4ù­'ý_ðLO‚òF‹®0 &ܧ˜­œ0Œ0#o8ç#ô¯R6Û“yŽ73G¹^2½öò~o»Ÿ›##ÞSðr=ÑkÒ41º €–rØ ÷„ëƒëÎ zõo 7"Ýà_=Š©‰Éldà`†qt÷+‹?æxù©%m,ö{.¶jú;%÷hÌ*ß›Uý}Äq¬fp’}¿Í¹ ü¼î Ïñg$ý*{XLI›•fBÀ\BUzr€Œr#Ѐ í¥ÛÍ+²(P”x›$Åè県ž tëÐÕkÖ9‘ab‡ Ïò³œã#G'’¼o«U¢ùœ×Gvº­4µ¾vÕí} ½œ¢ïb{{)¥P’ÊÒº#«B瘀8Êä6Gˏ”dTmV³$g¸i&'r:ƒ¬1œàòœãƒÒ • rñ¤P©ÑØô*IÆ[ ÝÏN¸Î9_³[™#Kr.Fí¤í*IÁ?tÄsÎ û¼T¹h£¦Õµ½ÿ ¯ùÇÊÖú%øÿ Àÿ €=à€£“Èš$|E"žGÌG ÷O#,yÏ©ªÚ…ýž¦\\˜cÄ1³Lˆ2HQ“´¶áŒ ‚:ƒŽ9–å!Š–͐‚ɾF''‘÷yÇNüûãëpÆ|=~¢D•䵕vn2„sÓžGLë IUP´Uíw®Ú-/mm£²×Ì–ìíeý] ? øÑüa¨ÞZÏeki,q‰c10PTpAÜÀg%zSß°2Ĥ¡U]®ØŠÜçžI;€èpx?_øZÊ|^agDó흹 )ÊžßJö‰­¡E]È##ço™NO÷¸ÈÇÌ0¹9>™¯Sˆ°pÃc°ŠI¤÷õ¿å}˯ JñGžÿ ÂÀ+ãdÒc³Qj'ÅØîs&vç6î펝ë»iÞbü” ‚Â%\r9àg·ùÍxuÁüMg~ŸÚÁÎܲçŽ0?*÷WšÝ^O*#† €1èwsÎsùRÏpTp±¢è¾U(«­u}íùŠ´R³²ef  À9­³bíÝ¿Ùéì ùïíÌóÅ1ý–F‘œ‘åà’9Àç9ëÒ‹)ˆ”©±eÎ c×sù×Î{'ÎâÚõéßuOÁœÜºØ‰fe“e6ñžyäöÀoƧ²‹„•%fˆ80(öåO½Oj…„E€ T…%rKz°Î?.;{šXÙ‡ŸeUÚd!üx9þtã%wO_øoòcM- j–ÒHX_iK#*) ž@Ž{ ôǽBd¹‰RÝn–ê0«7ˆìyÀ÷Í@¬Ì¢³³’ 9é÷½?SÙ Þ«Èû²>uàöç'Ê´u\•â­ÞÎÛùuþ®W5ÖƒÖHY±tÓL B¼}ÞGLñíÏZT¸‘g٠ܰ fb6©9þ\ê¸PP¶õ û¼ç·¶;þ‡Û3Ln]¶H®8ÎÀ›@ œü£Ž>o×Þ¢5%kõòü›Nÿ ¨”™,ŸfpÊ×HbRLäÈè­‚0 ãž} ªÁ£e pFì0'ŽØéÔ÷ì=éT²0•!…Îzt9ç¾?”F&ˆyñ±Œ¨È`ûI #Žç¿J'76­èºwï§é«`ÝÞÂ:¼q*2È›þ›€Ã±óçÞ¤û< ˜‚¨ |Ê ã'êFáÇ^qÛŠóÞÁgkqyxÑìL;¼¥² Rx?‡¯Y7PŽwnù¶†û¾Ü·.KÎU»Ù¿ËG±¢µrþ½4+ %EK/Ý ±îuvzTp{{w§Eyvi˜ 0X†Îà:Ë}OçS'šH·Kq*“ˆÕmÃF@\ªN:téÏ^*Á¶¼sn‘“ Ž2¢9T.½„\ ýò@>˜7NFïNRÓ·wèôßEÕua'¬[þ¾cö¡̐Oæ¦âÅŠ². Ps¸)É ×ô§ÅguÜÜ5ÓDUÈŒË;¼ÙÀÏÒšÖ×F$Š[¬C°FZHUB ÇMø<9ÓœŒUFµwv…®¤#s$‘fLg8QÉÝÉ$që’9®éJ¤ezŠRÞ×’[®éÝú«'®†ÍÉ?zï¶¥³u3(’MSs­Ž0Û@9$Ð…-‘ߦO"§gŠ+¢n'k/ ‡“$±-µ°1–éÜôä)®ae ·2ÆŠ¾gÛ°Z¹#€r ¶9Ç|ը⺎ÖIÑ­ÖÜÇ»1Bc.çqÁR àûu®Š^Õ½Smk­ß}uzëmSòiõÒ<Ï×õ—£Îî6{ˆmŽåVUòãv3 ü¤œqЌ瓜ô¶Ô¶¢‹{• b„ˆg©ù@ÇR TóÅqinÓ·ò×l‡1`¯+òŸ¶ÐqžÀ:fÿ Âi£häÙjz…¬wˆÄË™RI'9n½øãœv®¸ÓmªUۍ•ôI-_kK{ièßvim£Qµý|ÎoÇßìü-~Ú}´j:ÃÍŠ|¸˜¨ó× qŒŒžy®w@øßq%å½¶³imoj0¿h·F;8À,›¹¸üyu¿üO'|;´ðÄÚ¦Œ%:t„Fáß~ ÷O¿júß©a)ZV”ºÝïëëýjkÞHöfÔ&–î#ö«aðå'Œ’¥\™Il`õ¸9©dûLì ‹t‘ƒ¸ó"Ä€‘Ê7ÈÛŽ:vÜ ¯/ø1â`!»Ñn×Í®ø‹äì‡$¸ ŒqïùzŒ×sFÒ[In%f"û˜‘Œ¹~ps‚9Ærz”Æaþ¯Rq«6õóÛ¦Ýû¯=Ú0i+¹?ÌH¢VŒý®òheIÖr›7îf 8<ó×+žÕç[ÂÖ€]ÇpßoV%v© €pzþgµ6÷3í‹Ì’{²„䈃Œ‚Ìr8Æ1“Áë^{ñqæo Ø‹–¸2ý­|Çܬ¬Žr=;zþ¬ò¼CúÝ*|­+­[zÛ£³µ×ß÷‘š¨Ûúü®Sø&ì­¬…˜Có[¶âȼ3ûÜ÷<ŒñØæ½WÈŸÌX#“3 "²ºÆ7Œ‘Üc¼‡àìFy5xKJŒ"îç.r@ï×Þ½Ä-ÿ þ“}ª}’*Þ!,Fm¸Î@†9b?1W{Yæ3„`Ú¼VõŠÚÛ_kùöG.mhÎñ ôíhí§Ô$.ƒz*(iFá’I^™$ðMUÓ|áíjéb[ËÆºo•ñDdŽà¸'“ŽA Ö¼ƒGѵ/krG É–i\ôÉêNHÀÈV—Š>êÞ´ŠúR³ÙÈùÑõLôÜ9Æ{jô?°°Kýš¥WíZ¿V—m6·E}{X~Æ? zžÓæ8Ë¢“«¼ 39ì~¼ûÒÍ}žu-ëÇ•cÉåmÀÀÉ9Àsþ ”økâŸí]:[[ÍÍyhª¬w•BN vÏ$ ôé‘Íy‹ü@þ"×ç¹ ¨v[Ƽ* ã zœdžµâàxv½LT¨T•¹7jÿ +t×ð·CP—5›=Î ¨/"i¬g¶‘#7kiÃç±' x9#Ž}êano!òKD‘ílï”('¿SÔð?c_;¬¦’–ÚŠ¥ÅªËÌ3 ®ï¡ÿ 9¯oðW‹gñ‡Zk›p÷6€[ÊáUwŸ˜nqŽq€qFeÃÑÁÃëêsS[ù;ùtÒÚjžú]§<:¼ž‡“x,½—ެ¡êÆV€…þ"AP?ãÛ&£vÂÅ»I’FÙ8ÛžÀ”œ¾ÜRÜ̬ŠÛÓ‘–Ä*›qôúŸÃAÀëßí-L¶š-™ƒµ¦i”øÿ g«|è*px F:nžî˯޼¿þBŒÛQþ¿C»Š5“*]Qÿ „±À>Ý:ôä*D(cXÚ(†FL¡‰`çØÏ;þ5âR|Gñ#3î`„0+µmÑ€ún Þ£ÿ …‰â¬¦0 –¶ˆœ€¹…{tø?ʯ(_çþ_Š5XY[¡Ù|Q¿ú µŠ2︛sO* Бÿ ×â°<+à›MkÂ÷š…ij ·Ü–ˆ«ò‚?ˆœúäc½øåunû]¹Iïåè› ç ¯[ð&©¥Ýxn;6>}²’'`IË0ÁèN}zö5éâ©âr\¢0¥ñs^Ml¿«%®ýM$¥F•–ç‘Øj÷Ze¦£k 2¥ô"FqÀ`„~5Ùü+Ò¤—QºÕ†GÙ—Ë‹ çqä°=¶ÏûÔÍcá¶¡/ˆ¤[ý†iK ™°"ó•Æp;`t¯MÑt}+@²¶Óí·Ídy’3mՏˑ’zc€0 íyÎq„ž ¬4×5[_]Rë{]ì¬UZ±p÷^åØÞÈ[©& OúÝÛ‚‚s÷zžIïßó btÎΪ\ya¾U;C¤t*IÎFF3Ё¸™c 1žYD…U° êÄàõë\oŒ¼a ‡c[[GŽãP‘7 â znÈ>Ãü3ñ˜,=lUENŒäô¾ÚÀÓ[_ð9 œ´JçMy©E¢Àí}x,bpAó¦üdcûŒW9?Å[Há$¿¹pÄ™#^9O88©zO=«Ë!µÖüY¨³ªÍy9ûÒ1 úôÚ»M?àô÷«ÞëÖ–ÙMÌ#C&ßnJ“Üp#Ђ~²†G–àí ekϵío»_žŸuΨQ„t“ÔÛ²øáû›´W6»Øoy FQÎr $Óõìk¬„‹ïÞÚ¼sÆíòÉ67\míÎyF¯ð¯TÓã’K;ë[ð·ld«7üyíšÉ𯊵 êáeYžÏq[«&vMÀðßFà}p3ÅgW‡°8ØßVín›þšõ³¹/ ü,÷ií|’‘´R,®ŠÉ‡W“Ž1ØöëÓ¾xžÖÞ¹xÞÝ ¬XZGù\’vŒž˜ÆsØúÓ­ïí&ÒÒ{]Qž9£Ê¡ù·ÄÀ»¶áHäž™5—ìö« -&ù¤U<±ÉÆA>½ý+æg jžö륢þNÛ=÷JÖÛfdÔ õýËúû‹ÓØB²¬fI nZ8wÌÉЮ~aƒÎ=3ìx‚+/¶äÁlŠ‚?™Æü#8-œ\pqTZXtè%»»&ÚÝ#´ŠðÜ žã§Í’¼{p·ß{m>ÞycP¨’¼¢0ú(Rƒë^Ž ñó¼(»y%m´ÕÙ}ÊûékB1¨þÑ®,#Q)ó‡o1T©ÜÃ*Ž‹‚yö< b‰4×H€“ìÐ. ¤²9ÌŠ>„Žãøgšñ ¯Š~)¸ßå\ÛÛoBŒa·L²œg$‚Iã¯ZÈ—Æ~%”äë—È8â)Œcƒ‘Âàu9¯b%)ÞS²¿Ïïÿ 4Öºù}Z/[H%¤vÉ#Ì’x§†b © ³´tÜ{gn=iï%õªÇç]ܧ—! åw„SÓp ·VÈÏ¡?5Âcâb¥_ĤŠz¬—nàþÖΟñKÄöJé=ÌWèêT‹¸÷qÎჟ•q’zWUN«N/ØO^Ÿe|í¾©k{üõ4öV^ïù~G¹êzÂèº|·÷×[’Þ31†rpjg·n Æ0Ý}kåË‹‰nîe¹ËÍ+™ÏVbrOç]'‰¼o®xÎh`¹Ç*±ÙÚ!T$d/$žN>¼WqᯅZ9ÑÒO\ÜÛê1o&,-z ~^NCgNÕéá)ÒÊ©7‰¨¯'Õþ¯þ_¿Ehîþóâ €ï¬uÛûý*ÎK9ä.â-öv<²‘×h$àãúW%ö¯~«g-ÕõÀàG~>Zú¾Iš+(šM³ Û#9äl%ðc¬ ûÝ xÖKG´x®|¸¤Ï™O:Ê8Ã’qÉcÔä‚yÇNJyËŒTj¥&µOmztjÿ ?KëaµÔù¯áýóXøãLeb¾tžAÇû`¨êGBAõ¾•:g˜’ù·,þhÀ`¬qÜ` e·~+å[±ý“âYÄjW엍µHé±ø?Nõô>½âX<5 Ç©ÏѼM¶8cܪXŽÉ^r?¼IróÈS•ZmÇ›™5»òÚÚ7ïu«&|·÷•Ά >[©ÞXHeS$Œyà€ ÷ù²:ò2|óãDf? Z¼PD¶ÓßC(xÆ0|©ßR;ôMsÿ µ´ÔVi¬,͹›Ìxâi˜`¹,GAéÇlV§ÄýF×Yø§ê–‘:Ã=ò2³9n±ÉžØÏ@yÎWžæ±Ãàe„ÄÒN ]ïòêìú_Go'¦ŽÑ’_×õЯðR66þ!›ÑÄ gFMÙ— äžäqôÈ;ÿ eX<#%»Aö‰ãR¤ Í”Ž¹È G&¹Ÿƒ&á?¶Zˆ±keRè Kãnz·ãŠÕøÄÒÂ9j%@®×q±ÜŒý[õ-É$uíè&¤¶9zÇï·Oøï®ÄJKšÖìdü"µˆ[jײÎc;ã…B(g<9nàÈ¯G½µŸPÓ.´Éfâ¼FŽP 31 ‘ÏR}<3šä~ Ã2xVöî Dr Ç\›}Ý#S÷ÈÀëŽHÆI®à\OçKuäI¹†ó(”—GWî ñ³¹¸æ2¨›‹ºÚû%¾ýÖ_3ºNú¯ëúì|ÕÅÖ‰}y lM’ZËîTÿ á[ðÐñ/ˆ9Àû ¸ón3 Mòd‘÷ döª^.Êñް›BâîNp>cëÏçÍzïíôÏ YÍ%ª¬·ãÏ-*9Ü­ÂãhéŒc¾dÈêú¼Ë,. VŠ÷çeÿ n/¡¼äãõâ=‹xGQKx”|¹bÌŠD@2Œ 8'Ž àúƒŽ+áDÒ&¡¨"Œ§–Žr22 Ç·s]ŸÄ‹«ð%ÚÄ<¹ä’(×{e›HÀqÁç©Ç½`üŽÚõK饚9ƒÄ±€< –úƒú~ çðñO#­Í%iKKlµ¦¾F)'Iê¬Î+Ç(`ñ¾£œdÈ’` ™ºcßéé^ÿ i¸”Û\ý¡æhÔB«aq¸}ãÀÆ:ÜWƒ|FÛÿ BŒÇÀeaŸ-sÊ€:úW½ÜÝÜ<%$µ†%CóDªÀí%IÈÏʤ…ôäñÞŒ÷‘a0“ôŽÚë¤nŸoW÷0«e¶y'Å»aΗ2r’# Û°A^ý9ÉQÔõ=ù5¬£Öü.(Þ’M$~V«=éSÄFN½®©ÔWô»ÿ þHžkR‹ìÏ+µµžöê;khÚI¤m¨‹Ôš–âÖçJ¾_Z•’6 a”Èô> ÕÉaÕ<%®£2n bQŠå\tÈõUÿ ø»þ‹k15‚ÃuCL$ݹp P1=Oøýs¯^u éEJ”–éêŸê½5ýzy›jÛ³á›Ûkÿ ÚOcn±ÛÏîW;boºz{ãžüVÆ¡a£a5½äÎÂks¸J@?1è¿{$䑐=k”øsÖ^nŒ¦)ÝåXÃíùN1ØõÚOJë–xF÷h¸ Œ"Ž?x䜚ü³ì¨c*Fœ¯i;7~ñí׫Ðó¥Ë»3Ãü púw ‰°<Á%»ñž ÿ P+Û^ ¾Ye£ŽCÄŒ„/>˜>•á¶Ìm~&&À>M[hÈÈÿ [Ž•íd…RO@3^Ç(ʽ*¶ÖQZyßþ 1Vº}Ñç?¼O4Rh6R€ª£í¡ûÙ a‚3ß·Õ ü=mRÍ/µ9¤‚0ÑC¼Iè:cŽsÛ¾™x£ÆÐ¬ªÍöˢ샒W$•€Å{¨ÀPG ÀÀàŸZìÍ1RÉ0´ðxEË9+Éÿ ^rEÕ—±Š„70l¼áË@û.' ¼¹Žz€N3úUÉ<3á×*?²¬‚ä†"Ùc=p íÛ'¡ª1ñ"økJ†HÒ'»Ÿ+ oÏN¬Ã9 dÙãÜדÏâÍ~æc+j·Jzâ7(£ðW]•晍?nê´º6åwéåç÷N•ZŠíž›¬|?Ðõ?Ñ-E…®³ÇV$~X¯/…õ x‘LˆÑÜÚÈ7¦pzãÜüë½ðÄ^õtÝYËÍ7ÉÖÕ8ÏUe# #€r=sU¾/é’E§jRC4mxNÝ´9†íuá»›V‘ ZI€­×cr1Ÿpzsøf»¨åV‹ìû`qËLÊIã?\~¼³áËC©êhªOîO»‘ÃmçÛçút×¢x“Z}?Üê#b-¤X7õ Äò gž zzbº3œm*qvs·M=íúéw}¿&Úª°^Ö×µÏ(ø‡â†Öµƒenñý†×åQáYûœ÷ÇLœôÎNk¡ð‡¼/µ¸n0æÉ0¬ƒ‚üîÉÆvŒw®Sáö”š¯‹-üÕVŠØÙ[$`(9cqƒÔ_@BëqûÙ`Ýæ­0;79È?w<ó |ÙÜkßÌ1±Ëã ¿ìÒ»ðlìï«ÓnªèèrP´NÏš&Žéö Ù¸÷æ°~-_O'‰`°!RÚÚÝ%]Ø%þbß1'¿ÿ X՝áOöÎŒ·‹¬+Åæ*ÛÛ™0¤ƒOÍÔ `u¯¦ÂaèÐÃÓ«‹¨Ô¥µœ¿¯ÉyÅÙ.oÔôŸ Úx&(STðݽ¦õ] ’ÒNóÁäÈùr3í·žÚ[™ƒ¼veÈ÷ÞIõÎGlqÎ=M|«gsªxÅI6 ]Z·Îªä,¨zŒŽÄ~#ØŠúFñiÉqc©éÐD>S딑 GñŽ1éÐ^+ Ëi;Ô„µVÕú»i¯ÈÒ-ZÍ]òܘ®ì` bÛÙ¥_/y(@÷qÐúg Ô÷W0.Ø› 6Ò© r>QƒŒ0+Èîzb¨É+I0TbNñ"$~)ÕÒ6Þ‹{0VÆ27œWWñcÄcX×íôûyKZéðªc'iQ¿¯LaWŠŸS\·Š“źʸ…ôÙÂí|öÀÇåV|!¤ÂGâÛ[[’ï 3OrÙËPY¹=Î1õ5öåTžÑè Ú64/üö?Zëžk}¬¶éào፾á}3“ü]8Éæ¿´n²Žš_6¾pœ)2?úWÓÚ¥¾¨iWúdŽq{*ª1rXŒd…m»‰äcô¯–dâ•ã‘Jº¬§¨#¨® §,df«8ÉÅßN¾hˆ;îÓ=7áùpën®É 6ûJžO2^œÐò JÖø¥²ã›Ò6Ü·‰!wbÍ‚¬O©»õ¬ÿ ƒP=Ä:â¤-&ÙŽ ` È9 r9íϧzë> XÅ7ƒ5X–krÑ¢L 7€ìw}ÑŸNHëŒüþ:2†á¼+u·á÷N/Û'Ðç~ߘô«ëh!ónRéeQ´6QÛÿ èEwëÅÒ|¸Yqó1uêyùzð8 ƒŠù¦Ò;¹ä6öi<'ü³„[íZhu½ ùÍ¡g‚>r¯׊îÌx}bñ2“­k꣧oø~›hTèóËWò4|ki"xßQ˜Ï6øÀLnß‚0 ¹Æ{±–¶Öe#¨27È@^Ìß.1N¾œyç€õ†ñeé·Õã†çQ°€=­Ì©ºB€Ø8<‚ÃSõ®ùcc>×Ú .Fr:žÝGæ=kÁâ,^!Fž ¬,àµ}%¶«îõ¹†"r²ƒGœüYÕd?aÑÍY®49PyU ÷þ!žxÅm|/‚ãNð˜¼PcûTÒ,¹/Ý=FkÏ|u¨¶«â녏{¤m¢]Û¾ïP>®XãÞ½iÓÁ¾ ‰'¬–6ß¼(„ï— í!úÙäzôë^–:œ¨å|,_¿&š×]uÓѵÛô4’j”bž§x‘Æ©ã›á,‚[Ô ÎÞ= ŒËæ ÀùYÁ?ŽïÚ¼?ÁªxºÕÛ,°1¸‘¿ÝäãØ¯v…@¤åq½ºã œàûââ·z8Xýˆþz~—û»™âµj=Ž â~ãáh@'h¼F#·Üp?ŸëQü-løvépx»cŸø…lxâÃûG·‰¶ø”L£©%y?¦úõÆü-Õ¶¥y`Òl7>q’2üA?•F}c‡jB:¸Jÿ +§¹¿¸Q÷°ív=VÑìu[Qml%R7a×IèTõéŽx¬ ?†š7 1†îã-ˆã’L¡lŽ0OÓ=ÅuˆpÇ•¼3ÛùÒ¶W/!|’wŽw^qÔ×Ïaó M8Q¨ãÑ?ëï0IEhÄa¸X•`a ?!ÐñùQ!Rä žqŽžÝO`I0ÿ J“y|ñ!Îã@99>þ8–+éáu…!ù—ä ʰ<÷6’I®z ÅS„¾)Zþ_Öýµ×ËPåOwø÷þ*üïænÖùmØÝûþ¹=>¦½öî×Jh]¼ç&@§nTŒ6IT Àõ^Fxð7Å3!Ö·aÛ$þÿ ¹ã5îIo:ȪmËY[’8ÇӾlj*òû¢¥xõ¾¼ú•åk+\ð¯ HÚoŽl•Ûk,¯ ç²²cõÅ{²Z\ ´ìQ åpzŽ3Ôð}ÿ Jð¯XO¡øÎé€hÙ¥ûLdŒ`““ù6Gá^ÃáÝ^Ë[Ñb¾YåŒÊ»dŽ4 †2§,;ÿ CQÄ´¾°¨c–±”mºV{«ßÕýÄW\ÖŸ‘çŸ,çMRÆí“l-ƒn~ë©ÉÈê Ü?#Ž•¹ðãSÒ¥ÐWNíà½;ãž)™ÎSÈ9cóLj뵿Å«iÍk¨ió­¶X‚7÷ƒ€yãnyÏŽëÞ Öt`×À×V's$È9Ú:ä{wÆEk€«†Çàc—â$éÎ.éí~Ýëk}ÅAÆpörÑ¢‡Šl¡ÑüSs‹¨‰IÝ„óÀ×wñ&eºðf™pŒÆ9gŽTø£lñëÀçŽ NkÊUK0U’p ï^¡ãÈ¥´ø{£ÙHp`’ØåbqÏ©äó^Æ: Ž' ÊóM«õz+ß×ó5Ÿ»('¹­ð¦C„$˜Å¢_ºÈI?»^äã'ñêzž+ë€ñ-½»´}¡Ë*õ?.xÇ^1ŽMyǸ&“—L–îëöâ7…' bqéÎGé]˪â1$o²¸R8Ã`.q€}sÖ¾C9­8cêÆÞíïóòvÓòùœÕfÔÚéýu­èÖ·Ú Å‚_¤³ÜۺƑߝ”àרý:׃xPþÅÕî-/üØmnQìïGΊÙRqê=>¢½õnæ·r!—h`+’;ò3È<“Û©éšóŸx*÷V¹¸×tÈiˆßwiÔÿ |cŒñÏ®3Ö½̰‰Ë Qr©ö½®¼ÛoÑÙZÅÑ«O൯ýw8;k›ÿ x†;ˆJa;‘º9÷÷R+¡ñgŽí|Iáë{ôáo2ʲ9 029ÉÏLí\‰¿¸Ÿb˜ "Bv$£&#ßiê>=ªª©f ’N ëí>¡N­XW­~5×úíø\‰»½Ï^ø(—wÖú¥¤2íŽÞXæÁ$ °eÈ888^nÝë²ñÝÔ^ ÖÚ9Q~Ëå7ï DC¶ÑµƒsËÇè9®Wáþƒ6‡£´·°2\Ý:ÈÑ?(#¨'$õèGJ¥ñW\ÿ ‰E¶—¸™g˜ÌÀ¹;Pv ú±ÎNs·ëŸ’–"Ž/:té+ûË]öJöÓM»ëø˜*‘•^Uý—êd|‰åñMæÔÝ‹23å™6æHùÛ‚ëüñ^…ñ1¢oêûÑEØ.õ7*ÅHtÎp{g<·Á«+¸c¿¿pÓ¾Æby=8É_ÄsÆk¬ñB\jÞÔì••Ë[9Píb‹Bヅ =9­3§ð§LšÛáÖšÆæXÌÞdÛP.0\ãïÛ0?™úJ¸™Ë ”•œº+=<µI£¦í¯õêt¬d‹T¬P=ËFêT>ÍØØ@Ï9<÷AQÌ×»Õ¡xùk",JÎæù±Éç$œŽŸZWH®¯"·UÌQ ’ÙÈ]ÅXg<ã ߨg3-Üqe€0¢¨*Œ$܃ ’Sû 8㎼_/e'+Ï–-èÓ¶¶Õíß[·ÙÙ½î쏗¼sk%§µxä‰â-pÒeÆCrú ôσžû=”šÅô(QW‚Õd\ƒæ. \àö¹¯F½°³½0M>‘gr÷q+œ¶NïºHO— ¤ ܥݭ”n·J|ÆP6Kµc=Isó}Ò çGš)a=—#vK›åoK§ßóٍ¤¶¿õú…ÄRÚ[Ësöټˏ•Ë ópw®qœŒ·Ø ùÇâ‹ý‡ãKèS&ÞvûD Aù‘É9 ŒîqÅ} $SnIV[]ѐ´Ó}ØÜ¾A Ü|½kÅþÓ|E Mu R¼.I¼¶däò‚ÃkÆ}ðy¹vc iUœZ…­Õõ»z¾÷¿n¦*j-É­/àœHã\y5 Û ß™ó0— äŸnzôã#Ô¯,†¥ÚeÔ÷ÜÅ´„“'c…<íÝ€<·SŠ¥k§Ã¢éÆÆÙna‚8–=«ʪ[Ÿ™°pNî02z“ÔÙ–K8.È’Þî(vƒ2®@ äÈûãçžxäÇf¯ˆu¹yUÕîýWšÙ|›ëÒ%Q^í[æ|éo5ZY•^{96ˆY‚§v*x>âº_|U¹Ö´©tûMÒÂ9PÇ#«£#€ éÉñ‘ƒÍz/‰´-į¹°dd,Б›p03ƒœ{ç9=+ Ûᧇ¬¦[‡‚ê婺¸#±ß=³ý¿•Õµjñ½HÙh›Û[§ÚýÊöô÷{˜?ô÷·Ô.u©–_%còcAÀ˜’ }0x9Î>žñÇáÍ9,ahï¦Ì2òÓ ñÛAäry$V²Nð ]=$Ž ‚#Ù‚1ƒƒødõMax‡ÂÖ^!±KkÛ‘ «“Çó²FN8+ëÎ{Ò¼oí§[«ÕMRoËeç×[_m/¦¦k.kôgŽxsSÓ´ý`êzªÜÜKo‰cPC9ÎY‰#§^üý9¹âïÞx£Ë·Ú`±‰‹¤;³–=ÏaôÕAð‚÷kêÁNBéÎælcõö®£Fð†ô2Ò¬]ßÂK$ÓÜ®•”/ÊHàã$ä ¸÷ëf¹Oµúâ“”’²ø­è´µþöjçNü÷üÌ¿ xNïFÒd»¼·h®îT9ŽAµÖ>qÁçÔœtïÒ»\ȶÎîcÞäîó3¶@#ÉIÎ ÔñW.<´’¥–ÑÑ€ÕšA‚ ;†qÓë‚2q ÒÂó$# Çí‡ !Ë}Õ9ÈÎÑÉã=;ŒÇÎuñ+ÉûÏ¥öíeÙ+$úíÜ娯'+êZH4ƒq¶FV‹gïŒ208ÆÌ)íб>M|÷âÍã¾"iì‹¥£Jd´™OÝç;sÈúr+ÜäˆË)DŒ¥šF°*3Õ”d {zÔwºQ¿·UžÉf†~>I+ŒqÔ`ð3œ“Ü×f]œTÁÔn4“ƒø’Ýßõ_«*5šzGCÊ,þ+ê1ò÷O¶¸cœºb2yÇ;cùÕ£ñh¬›áÑŠr¤ÝäNBk¥—á—†gxšX/쑘hŸ*Tçn =û㦠2|(ð¿e·ºÖ$ ýìŸ!'åΰyîî+×öœ=Y:²¦ÓÞ×iü’—ü -BK™£˜›âÆ¡&véðõ-ûÉY¹=Onj¹ø¯¯yf4·±T Pó`çœ7={×mÃ/ ¢˜ZÚòK…G½¥b„’G AãÜœ*í¯Ã¿ IoæI¦NU8‘RwÈã;·€ Û×ëÒ”1Y •£E»ÿ Oyto¢<£Áö·šï,䉧ûA¼sû»Nò}¹üE{ÜÖªò1’õÞr0â}ÎØ#>à/8ïéÎ~—áÍ#ñÎlí§³2f'h”?C÷YËdð:qëõÓ·‚ïeÄ© ÔÈØÜRL+žAÎ3¼g=åšó³Œt3 ÑQ¦ùRÙßE®¼±w_;þhš’Sirÿ ^ˆã¼iੇ|RòO„m°J/“$·l“ ÇÓ¿ÿ [ÑŠÆ“„†Õø>cFÆ6Ø1ƒ– àz7Ldòxäüwá‹ÝAXùO•Úý’é®ähm­ •NÀ±ÌTÈç ƒ‘I$pGž:‚ÄbêW¢®œ´|­¦­nÍ>¶ÖÏ¢§ÎÜ¢ºö¹•%ÄqL^öÛ KpNA<ã¡ …î==ª¸óffËF‡yÌcÉ ©ç$ð=ñÏ­YþÊ’Ú]—¥‚¬‚eDïÎH>Ÿ_ÌTP™a‰ch['çÆÜò7a‡?w°Ïn§âÎ5”’¨¹uÚÛ|´ÓÓc§{O—ü1•ªxsÃZ…ÊÏy¡Ã3¸Ë2Èé» ‘ƒÎ äžÜðA§cáOéúÛ4ý5-fŒï„ù¬ûô.Ç Üsž•Ò¾•wo<¶Ÿ"¬¡º|£ î2sÇ¡éE²ÉFѱrU°dÜ6œ¨ mc†Îxë׺Þ'0²¡Rr„{j¾í·è›µ÷)º·å–‹î2|I®Y¼ºÍË·–ÃÆà㍣'óÆxƒOÆÞ&>\lóÌxP Xc¸ì Sþ5§qà/ê>#žÞW¸if$\3 ® ûÄ“ùŽÕê¾ð<Ó‹H¶óÏ" å·( á‘€:ã†8Ï=+ꨬUA×ÃËÚT’ÑÞöù¥¢]{»ms¥F0\ÑÕ—ô}&ÛB´ƒOŽÚ+›xíÄÀ1 ,v± žIëíZ0ǧ™3 í2®0ทp9öÝÔž)ÓZËoq/Ú“‘L ²ŒmùŽÓ9§[Û#Ä‘\ÞB¬Çs [;à à«g‚2ôòªœÝV§»·¯/[uó½õÛï¾ /šÍ}öüÿ «=x»HŸÂÞ.™ ÌQùŸh´‘#a$‚'¡u<Š›Æ>2>+ƒLSiöwµFó1!eg`£åœ ÷ëÛö}Á¿ÛVÙêv $¬ƒ|,s÷z€ð΃¨x÷ÅD\ÜŒÞmåÔ„ ˆ o| :{ÇÓ¶–òÁn!´0Ål€, ƒ ( ÛŒŒ c¶rsšæ,4‹MÛOH!@¢ ÇŽ„`å²9ÝÃw;AÍt0®¤¡…¯ØÄ.Àì클ƒ‘ßñ5Í,Óëu-ÈÔc¢KÃÓ£òÖ̺U.õL¯0…%2È—"~x ‚[`có±nHàŽyàö™¥keˆìŒÛFç{(Ø©†`Jã#Žwg<“:ÚÉ;M ^\yhûX‡vB·÷zrF?§BÊÔ/s<ÐÈB)Û± ·ÍÔwç5Âã:så§e{mѤï«Òíh—]Wm4âí¿ùþW4bC3¶ª¾Ùr$ pw`àädzt!yŠI„hÂîàM)!edŒm'æ>Ç?wzºK­ìcŒ´¯Ìq6fp$)ãw¡éUl`µ»ARAˆÝÕgr:äŒgƒéé[Ôö±”iYs5Ýï«ÙG—K=þF’æMG«óÿ `ŠKɦuOQ!ÕåŒ/ÎGÞ`@ËqÕzdõâ«Ê/Ö(ƒK´%ŽbMü åÜŸö—>¤óŒŒV‘°„I¢Yž#™¥ùÏÊ@8 œgqöö5ª4vד[¬(q cò¨À!FGaÁõõ¯?§†¥ÏU½í¿WªZ$úyú½Žz×§Éþ?>Ã×È•6°{™™ŽÙ.$`­ÎUœ…çè ' ¤r$1Ø(y7 ðV<ž:È  ÁÎMw¾Â'Øb§øxb7gãО½óÉÊë²,i„Fȹ£§8ãä½k¹¥¦ê/ç{ïê驪2œ/«ü?¯Ô›ìñÜ$þeýœRIåŒg9Ác’zrrNO bÚi¢ ѺË/$,“ª¯Ýä;Œ× ´<ÛÑn³IvŸb™¥ nm–ÄŸ—nÝÀãŽ3ëÍG,.öó³˜Ù£¹u ÊÌrŠ[<±!@Æ:c9ÅZh ì’M5ÄìÌ-‚¼ëÉùqŽGì9¬á ;¨A-ž—évþÖ–^ON·Ô”ŸEý}ú×PO&e[]ÒG¸˜Ûp ƒÃà/Ë·8ûÀ€1ž@¿ÚB*²­¼ñì8@p™8Q“žÆH'8«I-%¸‚ F»“åó6°Uù|¶Ú¸ã ò^Äw¥ŠÖK–1ÜÝK,Žddlí²0PÀü“×ükG…¯U«·¶–´w¶ŽÍ¾©yÞú[Zös•¯Á[™6° ¨¼ÉVæq·,# ìãï‘×8îry®A››¨,ãc66»Ë´ã'æÉù?t}¢æH--Òá"›|ˆ¬[í  7¶ö#¸9«––‹$,+Ëqœ\Êø c€yê^ݸÄa°«™B-9%«×®‹V´w~vÜTéꢷþ¼ˆ%·¹• ’[xç•÷2gØS?6åÀÚ õ9É#š@÷bT¸º²C*3Bá¤òÎA9 =úU§Ó"2Ãlá0iÝIc‚2Î@%öç94ùô»'»HÄ¥Ô¾@à Tp£šíx:úÊ:5eºßMý×wµ›Ó_+šº3Ýyvÿ "ºÇ<ÂI>Õ 1G·Ë«È«É# àÈÇ øp Jv·šæDûE¿›†Ë’NFr2qŸ½ÇAÜšu•´éí#Ħ8£2”Ú2Ã/€[ÎTr;qŠz*ý’Îþ(≠;¡TÆâ›;ºÿ àçœk‘Þ­8¾Uª¾íé{^×IZéwÓkXÉûÑZo¯_øo×È¡¬ â–ÞR§2„‚Àœü½ùç® SVa†Âüª¼±D‘ŒísŸàä|ä2 æ[‹z”¯s{wn„ÆmáóCO+†GO8Ïeçåº`¯^¼ðG5f{Xžä,k‰<á y™¥voÆ éÛõëI=œ1‹éíÔÀÑ)R#;AÂncäŽ:tÏ#¶TkB.0Œ-ÖÞZÛgumß}fÎJÉ+#2êÔP£žùÈÅi¢%œ3P*Yƒò‚Aì“Ž2r:ƒÐúñi­RUQq‰H9!”={~¼ “JŽV¥»×²m.ÛߺiYl¾òk˜gL³·rT• ’…wHÁ6ä`–Î3ùÌ4Øe³†&òL‘•%clyîAÂäà0 žüç$[3uŘpNOÀÉ=† cï{rYK ååä~FÁ •a»"Lär1Ó¯2Äõæ<™C•.fÕ»è¥~½-¿g½Â4¡{[ør¨¶·Žõäx¥’l®qpwÇ»8ärF \cޏܯÓ-g‚yciÏÀ¾rÎwèØÈ#o°Á9ã5¢šfÔxÞæfGusÏÌJÿ µ×œ/LtãÅT7²¶w,l ɳ;”eúà·¨çîŒsÜgTÃS¦­^ '~‹®›¯+k÷ZÖd©Æ*Ó[Ü«%Œk0ŽXƒ”$k#Ȩ P2bv‘ƒŸáÇ™ÆÕb)m$É*8óLE‘8'–ÜN Úyàúô­+{uº±I'wvš4fÜr íì½=úuú sFlìV$‘ö†Hсù€$§ õ=½¸«Ž] :Ž+•¦ïmRþ½l´îÊT#nkiøÿ _ðÆT¶7Ò½ºÒ£Î¸d\ã8=yãŽÜäR{x]ZâÚé#¸r²#»ÎHÆ6õ ç® ÎFkr;sºÄ.&;só± Ç9êH÷ýSšÕ­tÐU¢-n­ Ì| vqœ„{gŒt§S.P‹’މ_[;m¥Þ­ZýRûÂX{+¥úü¼ú•-àÓ7!„G"“´‹žƒnrYXã¸îp éœ!Ó­oP̏tÑ (‰Þ¹é€sÓ#GLçÕšÑnJý¡!‘Tä#“ß?îýp}xÇ‚I¥Õn#·¸–y'qó@r[ Êô÷<ÔWÃÓ¢áN¥4ԝ’I&ݼ¬¬¼ÞºvéÆ FQV~_ÒüJÖÚt¥¦Xá3BÄP^%ÈÎW-×c¡ú©¤·Iþèk¥š?–UQåIR[’O 5x\ÉhÆI¶K4«2ùªŠŒ<¼óœçØ`u«‚Í.VHä € Ëgfx''9ÆI#±®Z8 sISºku¢ßÞ]úk»Jößl¡B.Ü»ÿ MWe °·Ž%šêɆ¼»Âù³´œ O¿cÐÓÄh©"ÛÜÏ.ÖV ’3nüÄmnq[ŒòznšÖ>J¬òˆæ…qýØP Ž:ä7^0yëWšÍ_79äoaÈ °#q0{ää×mœy”R{vÒÞ¶ÚÏe¥“ÚÆÐ¥Ì®—õýjR •íç›Ìb„+J yÜØÙ•Ç]¿Ôd þËOL²”9-Œ—õÃc'æÝלçÚ²ìejP“½ âù°¨†ðqòädЃÉäÖÜj÷PÇp“ÍšŠå«‘î <iWN­smª»¶vÓz5»ûì:Rs\Ðßôû×uÔÿÙ