Skip to content
Snippets Groups Projects
Commit 8b386187 authored by Sofiane Lasri's avatar Sofiane Lasri
Browse files

2.0.2021-05-10-2

parent e9ad2405
No related branches found
No related tags found
No related merge requests found
<?php
/* __________________________________________________
| Obfuscated by YAK Pro - Php Obfuscator 2.0.12 |
| on 2021-05-07 08:37:02 |
| GitHub: https://github.com/pk-fr/yakpro-po |
|__________________________________________________|
ini_set("allow_url_fopen", 1);
session_start();
error_reporting(E_ALL); //Désactive les erreur
if (isset($_SESSION["user_id"])) {
$depedencies = 0;
}
// On récupère l'ip
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
if (isset($_GET["session"])) {
$json = file_get_contents("https://api.vbcms.net/auth/v1/checkToken/?token=".$_GET["session"]."&ip=".urlencode($ip));
$jsonData = json_decode($json);
foreach ($jsonData as $key => $value) {
$_SESSION[$key] = $value;
}
header('Location: install.php');
} elseif (isset($_GET["testBdd"]) AND !empty($_GET["testBdd"])) {
$bddInfos = json_decode($_GET["testBdd"]);
$bddHost = $bddInfos[0]; //Adresse du serveur MySQL
$bddName = $bddInfos[1]; //Nom de la base de donnée
$bddUser = $bddInfos[2]; //Utilisateur
$bddMdp = $bddInfos[3]; //Mot de passe
$bddError = false;
try {
$bddConn = new PDO("mysql:host=$bddHost;dbname=$bddName", $bddUser, $bddMdp); //Test de la connexion
} catch (PDOException $e) {
$bddError = true;
print "Erreur !: " . $e->getMessage();
die();
}
if (!$bddError) {
$savedParameters = file_get_contents("tempInstallConfig");
if ($savedParameters) {
$savedParameters = json_decode($savedParameters);
$savedParameters[0] = $bddInfos[0];
$savedParameters[1] = $bddInfos[1];
$savedParameters[2] = $bddInfos[2];
$savedParameters[3] = $bddInfos[3];
file_put_contents("tempInstallConfig", json_encode($savedParameters));
} else {
file_put_contents("tempInstallConfig", json_encode($bddInfos));
}
}
} elseif (isset($_GET["saveWebsiteConfig"]) AND !empty($_GET["saveWebsiteConfig"])){
$websiteConfig = json_decode($_GET["saveWebsiteConfig"]);
$savedParameters = file_get_contents("tempInstallConfig");
$savedParameters = json_decode($savedParameters);
$savedParameters[4] = $websiteConfig[0];
$savedParameters[5] = $websiteConfig[1];
$savedParameters[6] = $websiteConfig[2];
$savedParameters[7] = $websiteConfig[3];
file_put_contents("tempInstallConfig", json_encode($savedParameters));
} elseif (isset($_GET["createDatabase"])){
$parameters = json_decode(file_get_contents("tempInstallConfig"));
$bddHost = $parameters[0]; //Adresse du serveur MySQL
$bddName = $parameters[1]; //Nom de la base de donnée
$bddUser = $parameters[2]; //Utilisateur
$bddMdp = $parameters[3]; //Mot de passe
$bdd = new PDO("mysql:host=$bddHost;dbname=$bddName", $bddUser, $bddMdp);
$bdd->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING );
// Création des tables
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-blogCategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`shortName` varchar(64) NOT NULL,
`showName` varchar(128) NOT NULL,
`childOf` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-blogDrafts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`randId` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL,
`categoryId` int(11) NOT NULL,
`authorId` bigint(255) NOT NULL,
`slug` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`headerImage` varchar(255) CHARACTER SET utf8mb4 NOT NULL,
`writtenOn` datetime NOT NULL,
`modifiedOn` datetime NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`autosave` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-blogPosts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`categoryId` int(11) NOT NULL,
`authorId` bigint(255) NOT NULL,
`slug` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`title` text COLLATE utf8_unicode_ci NOT NULL,
`content` text COLLATE utf8_unicode_ci NOT NULL,
`headerImage` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`writtenOn` datetime NOT NULL,
`modifiedOn` datetime NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`views`int(11),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 NOT NULL,
`parentFolder` int(11) NOT NULL,
`size` bigint(20) NOT NULL,
`title` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`articles` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-folders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`fullpath` varchar(128) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-settings` (
`name` VARCHAR(128) NOT NULL,
`value` VARCHAR(3000) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-modules`(
`name` varchar(64) NOT NULL,
`path` varchar(255) NOT NULL,
`clientAccess` varchar(32) NOT NULL,
`adminAccess` varchar(32) NOT NULL,
`activated` tinyint(1) NOT NULL,
`workshopId` bigint(20) NOT NULL,
`version` VARCHAR(8) NOT NULL , PRIMARY KEY (`name`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-adminNavbar` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parentId` int(11) NOT NULL,
`position` int(11) NOT NULL,
`parentPosition` int(11) NOT NULL,
`value1` varchar(128) NOT NULL,
`value2` varchar(128) NOT NULL,
`value3` varchar(128) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-modulesDepencies` (
`moduleId` int(11) NOT NULL,
`depedencyId` int(11) NOT NULL,
`mandatory` BOOLEAN NOT NULL,
PRIMARY KEY (`moduleId`, `depedencyId`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-clientNavbar` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parentId` int(11) NOT NULL,
`parentPosition` int(11) NOT NULL,
`value1` VARCHAR(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`value2` VARCHAR(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`value3` VARCHAR(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE IF NOT EXISTS `vbcms-themes` (
`workshopId` bigint(255) NOT NULL,
`name` varchar(128) NOT NULL,
`path` varchar(255) NOT NULL,
`version` varchar(32) NOT NULL,
`activated` tinyint(1) NOT NULL,
`designedFor` int(11) NOT NULL,
PRIMARY KEY (`workshopId`)
) ENGINE=InnoDB;");
$requete = $bdd->exec("CREATE TABLE `vbcms-localAccounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` VARCHAR(128) NOT NUL,
`email` VARCHAR(256) NOT NULL,
`password` VARCHAR(255) NOT NULL,
`role` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE `vbcms-websiteStats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` DATETIME NOT NULL,
`page` VARCHAR(300) NOT NULL,
`ip` VARCHAR(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE `vbcms-loadingscreeens` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`themeId` INT(11) NOT NULL,
`name` INT(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE `vbcms-loadingscreensParameters` (
`loadingScreenId` INT(11) NOT NULL,
`name` VARCHAR(128) NOT NULL,
`value` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`loadingScreenId`, `name`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE `vbcms-permissions` (
`accountId` INT(11) NOT NULL,
`name` VARCHAR(128) NOT NULL,
`value` VARCHAR(128) NOT NULL,
PRIMARY KEY (`accountId`, `name`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE `vbcms-notifications` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`origin` VARCHAR(512) NOT NULL,
`link` VARCHAR(512) NOT NULL,
`content` TEXT NOT NULL,
`removable` BOOLEAN NOT NULL,
`date` DATETIME NOT NULL,
`userId` INT(11),
PRIMARY KEY (`id`)
) ENGINE = InnoDB;");
/*
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
*/
goto PwlxV; U3Wjq: if (PHP_VERSION_ID >= 70200) { goto sNFGo; } goto jklQG; uKNH6: goto po3Gu; goto XWl3M; ooT98: goto zEJs8; goto K1tkZ; LtJZb: $P4SA6 = file_get_contents("\164\145\155\x70\111\x6e\x73\x74\x61\x6c\154\x43\x6f\156\146\151\x67"); goto aiYAu; YuHTv: j6tH1: goto rQZrR; kUrWX: $pKjGu = $P4SA6[1]; goto B8cSp; pVHJl: $O00zq = $rehJD->prepare("\x49\x4e\x53\x45\x52\124\x20\x49\116\x54\x4f\x20\140\166\142\143\x6d\x73\x2d\x73\x65\164\x74\151\156\147\163\x60\40\50\156\x61\x6d\x65\54\x20\166\x61\154\x75\145\51\x20\x56\101\114\x55\x45\x53\x20\50\x3f\x2c\x3f\x29"); goto rX_w6; JDBYt: abW0C: goto at1sm; DKk1X: file_put_contents("\x74\x65\155\160\111\x6e\163\164\141\x6c\x6c\x43\157\x6e\x66\151\147", json_encode($P4SA6)); goto HjbMT; KSzM1: $EGqtq = $rehJD->exec("\103\122\x45\101\x54\x45\40\x54\101\102\x4c\105\x20\x49\106\x20\116\117\x54\40\x45\130\x49\x53\124\x53\x20\x60\166\x62\x63\x6d\163\55\x66\151\x6c\x65\163\x60\x20\50\xd\12\40\40\x60\151\x64\140\40\151\x6e\164\x28\x31\x31\x29\x20\116\117\x54\40\x4e\x55\x4c\x4c\x20\101\125\124\117\x5f\x49\116\103\122\105\115\x45\116\124\54\15\12\x20\40\140\x6e\141\x6d\145\x60\40\166\x61\x72\x63\x68\141\x72\x28\62\65\65\x29\x20\103\x48\101\x52\101\103\x54\x45\x52\x20\123\105\124\x20\x75\164\146\x38\x6d\x62\x34\x20\116\x4f\124\40\x4e\x55\x4c\114\54\xd\xa\x20\40\140\x70\141\x72\145\156\x74\106\x6f\x6c\x64\145\x72\x60\40\x69\156\x74\50\x31\61\x29\x20\x4e\x4f\x54\40\116\125\114\x4c\x2c\15\12\x20\x20\140\x73\x69\x7a\145\x60\x20\x62\x69\147\x69\x6e\164\x28\x32\x30\51\x20\116\117\124\40\x4e\125\x4c\114\54\15\12\40\x20\140\164\151\164\x6c\145\x60\x20\x76\x61\162\143\150\x61\162\50\66\64\51\40\x43\x4f\x4c\114\101\124\105\40\x75\164\x66\x38\x6d\x62\64\137\x75\x6e\151\143\157\144\x65\137\143\x69\40\116\117\124\40\x4e\x55\114\114\54\15\xa\40\x20\140\144\145\x73\143\162\x69\160\x74\151\157\156\x60\40\x74\x65\170\x74\40\x43\117\x4c\114\x41\124\105\40\165\x74\146\x38\155\142\x34\137\165\x6e\151\143\157\144\145\137\x63\x69\40\116\117\x54\x20\x4e\125\x4c\114\x2c\15\12\x20\x20\140\141\162\164\151\x63\154\x65\163\x60\x20\166\x61\162\143\x68\x61\x72\x28\63\62\x29\x20\x43\x4f\114\x4c\x41\x54\x45\40\165\164\146\70\155\142\x34\137\x75\x6e\151\x63\x6f\x64\x65\137\143\x69\x20\116\117\124\40\x4e\x55\x4c\x4c\x2c\15\12\x20\x20\120\x52\111\115\101\x52\x59\x20\x4b\105\131\40\x28\x60\151\144\140\51\15\12\x29\x20\x45\116\107\x49\116\105\x3d\111\x6e\x6e\157\x44\102\40\104\x45\106\101\125\114\124\40\x43\110\101\x52\x53\x45\124\75\165\164\x66\x38\155\142\x34\x20\103\x4f\114\114\x41\x54\x45\x3d\x75\x74\146\70\x6d\142\64\137\165\156\151\x63\157\144\x65\x5f\143\x69\73"); goto kMIf6; nwSki: $EsTLs = $MS7U1[2]; goto UN2T_; kzdTZ: $O00zq->execute([null, 0, $hTize, 0, "\166\x62\x63\x6d\x73", "\167\145\142\x73\x69\164\145\x50\145\162\163\x6f\x6e\141\x6c\151\x7a\x65", '']); goto z5ttU; TBI9w: $O00zq = $rehJD->prepare("\111\116\123\x45\122\x54\x20\x49\116\x54\x4f\x20\x60\x76\x62\x63\x6d\163\55\x73\x65\x74\164\151\156\147\x73\140\40\50\156\141\155\x65\x2c\x20\x76\141\x6c\165\x65\x29\x20\x56\x41\114\125\105\123\40\50\x3f\54\77\51"); goto nLj0C; jgxwQ: po3Gu: goto FD1n3; viBCR: session_start(); goto JEyeI; cDT9P: $B0u9Y++; goto KjWr7; GIEf3: $P4SA6 = json_decode($P4SA6); goto iA21U; Gs8gf: echo $_SESSION["\x75\x73\x65\162\x5f\x70\162\157\x66\151\x6c\145\x50\x69\x63"]; goto ilfn2; x4Gtu: $O00zq->execute(["\x77\x65\142\x73\151\164\145\120\145\x72\x73\157\x6e\x61\x6c\151\x7a\145"]); goto Mp6J8; X9RK3: $O00zq = $rehJD->prepare("\111\116\x53\105\x52\124\40\x49\116\x54\117\40\x60\166\x62\x63\x6d\163\x2d\x73\145\x74\164\151\156\x67\x73\x60\x20\50\156\141\155\x65\54\x20\166\141\154\x75\x65\51\40\126\x41\114\125\105\x53\40\x28\x3f\54\77\x29"); goto vL37t; NS3pg: echo "\74\154\x69\40\143\154\x61\x73\163\x3d\x22\x74\145\x78\164\55\144\x61\x6e\147\x65\x72\42\76\x3c\163\x74\x72\x6f\156\147\x3e\x70\150\x70\x2d\163\145\163\163\x69\x6f\156\x20\156\47\145\163\164\40\160\x61\x73\x20\143\x68\141\x72\147\xc3\xa9\x3c\57\x73\x74\x72\x6f\156\x67\76\x3c\x2f\x6c\x69\x3e"; goto k9WAU; ilfn2: echo "\42\40\141\x6c\x74\x3d\x22\165\x73\x65\x72\55\154\x6f\147\x6f\42\x3e\xd\xa\x9\11\11\x9\74\x68\x33\76\123\x61\154\165\164\x20"; goto Lw4QP; z5ttU: $hTize++; goto pCyRV; MBzjz: $XAmUc++; goto muNkh; qRoL3: $O00zq->execute([null, 1, $hTize, $XAmUc, "\146\141\55\163\171\x6e\x63", "\x77\163\137\x75\160\144\x61\164\x65\163\101\x64\x64\157\x6e\x73", "\57\x76\142\x63\x6d\163\55\x61\144\155\x69\x6e\x2f\x77\x6f\162\x6b\163\x68\157\x70\57\x75\160\144\x61\164\x65\x73"]); goto e0WEi; AtNC2: S3yhN: goto fOMSJ; kIbh2: if (isset($_GET["\x74\x65\163\164\102\144\144"]) and !empty($_GET["\164\x65\x73\164\102\144\x64"])) { goto aRRZB; } goto WhX_C; yRnVc: $VtHk6 = json_decode($xlBFp); goto mNd1F; v2pJx: $TcU3y = ''; goto L0ZCJ; pxX4C: D7_JF: goto YZ5QE; pNFp5: $EGqtq = $rehJD->exec("\x43\122\x45\101\x54\x45\40\x54\x41\x42\114\x45\40\x60\x76\x62\x63\155\x73\55\154\x6f\141\144\x69\156\147\163\143\162\x65\x65\x65\156\163\140\x20\x28\15\12\x9\11\140\151\x64\140\x20\x49\x4e\x54\50\61\x31\x29\40\x4e\117\124\x20\x4e\125\114\x4c\40\x41\x55\x54\117\x5f\x49\x4e\x43\x52\x45\115\105\x4e\x54\x2c\15\xa\x9\x9\x60\x74\x68\x65\155\x65\111\x64\x60\40\111\116\x54\x28\x31\x31\51\x20\116\x4f\124\40\116\x55\x4c\x4c\54\xd\12\x9\11\140\156\141\155\145\x60\x20\111\116\124\x28\62\x35\65\51\40\116\x4f\x54\40\116\x55\114\x4c\54\xd\xa\11\11\120\122\x49\115\101\x52\x59\40\x4b\x45\131\40\50\140\x69\144\x60\51\xd\xa\x9\51\x20\x45\x4e\107\x49\116\105\x20\x3d\40\111\x6e\156\157\104\x42\x3b"); goto bfgW8; yJvQm: UhGdI: goto djvEV; V8Ib5: $TcU3y = $P4SA6[3]; goto YuHTv; NraOr: $rehJD->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); goto VJy9w; UN2T_: $TcU3y = $MS7U1[3]; goto UBsQK; tATsb: $EGqtq = $rehJD->exec("\103\122\x45\x41\124\x45\40\x54\x41\102\x4c\x45\x20\x49\x46\40\x4e\x4f\x54\x20\x45\130\x49\x53\124\123\40\x60\x76\x62\x63\x6d\x73\55\x6d\157\x64\x75\x6c\x65\x73\x60\x28\15\12\x9\x9\x60\156\141\155\x65\x60\x20\x76\x61\x72\143\x68\141\x72\50\x36\64\x29\40\116\117\124\x20\x4e\x55\x4c\x4c\54\15\xa\x9\11\140\x70\x61\164\x68\x60\40\166\141\162\x63\x68\141\x72\50\x32\x35\x35\x29\40\116\x4f\124\x20\x4e\125\114\114\x2c\15\12\11\x9\x60\143\x6c\x69\145\156\x74\x41\x63\x63\145\163\163\140\x20\166\x61\x72\x63\x68\141\162\x28\x33\x32\51\x20\116\117\x54\40\116\x55\x4c\114\x2c\xd\xa\11\x9\x60\x61\144\x6d\151\x6e\101\x63\x63\x65\x73\x73\x60\x20\x76\x61\162\x63\x68\x61\x72\50\x33\62\x29\x20\116\x4f\124\x20\x4e\125\114\x4c\x2c\xd\xa\11\11\140\141\143\x74\151\x76\x61\164\145\x64\x60\x20\x74\x69\156\171\x69\156\x74\50\x31\51\x20\x4e\117\124\40\x4e\x55\114\114\54\xd\xa\x9\11\140\167\x6f\162\x6b\x73\x68\157\x70\x49\144\140\x20\x62\151\147\x69\156\164\x28\62\x30\x29\x20\x4e\x4f\x54\40\116\125\x4c\114\x2c\15\12\11\x9\140\166\x65\x72\x73\151\x6f\x6e\x60\40\x56\x41\122\103\110\101\122\50\70\x29\40\x4e\117\124\x20\x4e\125\114\114\40\54\40\x50\122\111\x4d\101\122\x59\x20\x4b\105\131\x20\50\x60\156\x61\x6d\x65\x60\x29\xd\xa\x9\x29\40\x45\116\x47\x49\116\105\x20\75\x20\x49\x6e\x6e\157\104\102\x3b"); goto AeZE1; OnOVH: sEIIT: goto GfWa1; MlgaM: $P4SA6 = json_decode($P4SA6); goto JI5Zh; lnDUm: $P4SA6[7] = $bZ3R5[3]; goto DKk1X; Ui4Ei: $EsTLs = ''; goto v2pJx; RPIAf: $O00zq = $rehJD->prepare("\x49\x4e\x53\105\x52\x54\40\111\116\124\x4f\40\x60\x76\x62\x63\155\163\x2d\141\144\x6d\151\156\x4e\x61\x76\142\x61\x72\140\x20\x28\x69\144\x2c\x20\x70\x61\x72\x65\156\x74\x49\144\54\40\x70\x6f\163\x69\164\x69\157\156\x2c\x20\160\141\162\x65\x6e\164\120\x6f\163\x69\x74\151\157\x6e\x2c\x20\166\141\x6c\x75\145\x31\54\x20\x76\141\x6c\x75\x65\x32\x2c\x20\166\141\154\x75\145\63\51\40\126\x41\x4c\125\105\x53\40\x28\x3f\x2c\x3f\54\x3f\x2c\77\x2c\x3f\x2c\77\54\x3f\x29"); goto X13Sv; sY0sm: $nobIg = "\x68\164\x74\160\x73"; goto JDBYt; Rfbx3: echo "\11\11\x3c\144\151\166\40\x69\x64\x3d\x22\151\x6e\x73\x74\x61\154\x6c\55\163\x74\145\x70\x2d\60\42\40\x74\x69\x74\154\x65\x3d\42\x22\x20\143\154\x61\163\x73\75\42\143\x6f\x6e\x74\x65\156\164\42\40\x73\x74\171\x6c\145\x3d\x22\x64\151\163\160\154\141\171\72\40\156\x6f\x6e\x65\73\x22\x3e\15\xa\11\x9\x9\x3c\144\x69\166\40\x63\154\141\163\x73\x3d\42\143\145\156\164\145\162\x49\164\x65\x6d\163\42\x3e\xd\xa\x9\x9\11\11\74\151\155\x67\40\x73\x72\x63\x3d\42\150\x74\x74\x70\163\72\x2f\57\x76\142\143\x6d\x73\x2e\156\x65\164\57\x76\142\143\x6d\163\x2d\141\x64\155\x69\x6e\x2f\x69\155\141\147\x65\x73\x2f\x76\x62\x63\x6d\163\x2d\154\157\x67\157\57\x72\x61\x63\143\157\x6f\156\x2d\151\x6e\55\x62\x6f\x78\x2d\61\x32\x38\x78\56\160\x6e\x67\x22\40\141\x6c\x74\75\x22\166\142\143\x6d\x73\x2d\154\x6f\147\x6f\42\76\xd\12\11\x9\x9\x9\x3c\150\x33\76\102\151\145\x6e\166\x65\x6e\165\x20\x73\165\162\x20\x56\x42\x63\155\x73\x21\x3c\x2f\x68\63\76\15\12\x9\x9\x9\x9\74\160\x3e\115\x65\162\143\x69\x20\144\x65\x20\160\x61\162\x74\151\143\151\160\x65\162\40\x61\165\x78\x20\164\x65\x73\164\x73\x20\144\145\x20\x70\162\xc3\251\x2d\162\x65\x6c\145\141\x73\x65\41\x20\x3c\142\162\x3e\114\x65\x20\x70\x61\156\145\x6c\40\141\x63\x74\165\x65\154\40\x6e\x65\x20\162\145\146\x6c\303\250\164\145\40\161\x75\47\141\163\x73\x65\x7a\x20\160\x65\165\40\154\x65\40\x74\162\141\166\x61\x69\x6c\x20\x66\x69\156\141\x6c\54\x20\x64\x65\x20\x6e\157\155\142\x72\x65\165\x73\x65\x73\x20\x66\157\156\143\x74\151\x6f\156\156\x61\154\x69\x74\303\xa9\x73\40\x76\157\156\x74\x20\303\xaa\x74\162\x65\40\x61\152\x6f\165\x74\303\xa9\x20\x64\141\156\x73\x20\154\x65\163\40\163\145\x6d\x61\151\156\145\163\x20\xc3\xa0\40\163\165\x69\x76\x72\x65\x2e\xd\12\x9\11\11\x9\x3c\142\x72\x3e\74\142\162\x3e"; goto E65nj; fOMSJ: if (extension_loaded("\x73\x65\163\163\x69\157\x6e")) { goto HJnZ3; } goto NS3pg; CYCIa: if (!($B0u9Y == 3)) { goto tc9xi; } goto aKUjl; ROZJp: echo "\xd\12\11\x9\74\144\151\166\x20\x69\x64\75\x22\x69\x6e\x73\x74\141\x6c\154\55\x73\164\x65\x70\55\60\42\40\x74\151\164\x6c\x65\x3d\x22\103\157\156\156\x65\170\151\157\156\x20\x72\xc3\xa9\165\163\x73\151\145\x21\42\x20\x63\154\x61\x73\163\75\42\x63\x6f\x6e\164\x65\156\164\42\40\x73\x74\x79\154\145\75\42\x64\x69\x73\x70\x6c\141\x79\72\40\x6e\x6f\156\145\x3b\x22\x3e\15\12\11\11\x9\x3c\x64\x69\166\x20\143\x6c\x61\163\163\x3d\x22\143\x65\x6e\x74\x65\x72\x49\164\x65\x6d\163\x22\76\xd\12\11\11\x9\11\x3c\151\x6d\147\x20\x63\x6c\x61\163\x73\75\42\x72\x6f\x75\x6e\144\x65\x64\55\143\x69\162\x63\154\145\x20\155\142\x2d\63\x22\40\163\162\143\75\42"; goto Gs8gf; Q1_qi: $XAmUc++; goto VggWl; qWhC8: goto zEJs8; goto zkzyE; QHxBp: $O00zq->execute([null, 1, $hTize, $XAmUc, "\x66\141\x2d\x70\154\x75\163", "\167\163\x5f\143\x72\145\x61\164\145\x41\x64\x64\157\x6e", "\150\164\164\160\163\x3a\57\57\x77\x6f\162\x6b\163\x68\x6f\x70\56\166\142\143\155\x73\56\156\145\164\57\x63\x72\x65\x61\x74\x65"]); goto GLEBF; saNCx: $B0u9Y++; goto Umx9L; Iygsb: $xlBFp = file_get_contents("\x68\x74\x74\x70\x73\72\x2f\x2f\141\x70\151\x2e\x76\x62\143\x6d\x73\x2e\156\x65\164\57\x61\165\164\x68\x2f\166\x31\x2f\143\x68\x65\143\x6b\x54\x6f\x6b\x65\x6e\57\x3f\164\x6f\153\x65\156\75" . $_GET["\x73\145\163\163\x69\157\x6e"] . "\x26\151\160\x3d" . urlencode($gRPbA)); goto yRnVc; uPFk6: $bZ3R5 = json_decode($_GET["\x73\141\166\x65\x57\x65\142\163\151\164\x65\x43\157\x6e\x66\x69\x67"]); goto JIdHk; JI5Zh: $P4SA6[4] = $bZ3R5[0]; goto CfBw5; JEyeI: error_reporting(E_ALL); goto Xd5Ve; e1_Kl: $XAmUc = 1; goto xesvy; SSddl: HLbwp: goto dKJ_J; o335v: $XAmUc = 1; goto XzQc0; dmZnv: $O00zq = $rehJD->prepare("\111\116\123\x45\x52\124\40\111\x4e\124\117\40\x60\166\142\143\155\x73\55\163\x65\164\x74\x69\156\147\163\140\40\x28\x6e\141\x6d\145\x2c\40\x76\141\x6c\165\x65\x29\x20\x56\x41\114\125\105\x53\x20\50\x3f\x2c\77\x29"); goto cRqcv; JIdHk: $P4SA6 = file_get_contents("\164\145\x6d\160\111\156\x73\x74\x61\x6c\154\x43\x6f\156\x66\151\147"); goto MlgaM; UBsQK: $rehJD = new PDO("\155\171\x73\161\154\72\x68\x6f\163\x74\75{$mvcSt}\73\x64\142\x6e\141\155\x65\75{$pKjGu}", $EsTLs, $TcU3y); goto NraOr; OV9NH: $O00zq = $rehJD->prepare("\x49\x4e\x53\x45\122\124\40\111\116\x54\x4f\x20\140\166\142\x63\x6d\163\55\x73\145\164\x74\x69\156\147\x73\x60\40\50\x6e\x61\155\145\54\40\x76\141\154\x75\x65\51\x20\126\101\114\x55\105\x53\x20\50\77\x2c\77\x29"); goto x9SHk; x9SHk: $O00zq->execute(["\163\164\x65\141\155\101\x70\151\x4b\x65\x79", $MS7U1[7]]); goto jvNLf; oG3Ba: $EGqtq = $rehJD->exec("\103\x52\105\x41\x54\x45\40\124\x41\x42\x4c\105\x20\111\106\40\116\x4f\x54\x20\x45\130\111\123\124\123\x20\140\166\142\143\155\163\x2d\164\x68\145\x6d\x65\163\140\x20\50\15\xa\x9\x9\140\x77\x6f\x72\153\163\x68\x6f\160\x49\144\140\40\x62\151\147\151\x6e\x74\50\62\x35\65\x29\x20\x4e\117\x54\x20\116\x55\x4c\114\54\15\xa\x9\x9\140\x6e\x61\x6d\145\x60\40\x76\141\x72\143\x68\x61\x72\50\x31\x32\x38\51\40\x4e\x4f\x54\x20\116\x55\x4c\x4c\54\15\xa\x9\11\x60\160\x61\164\x68\x60\x20\x76\x61\162\x63\150\x61\162\50\x32\65\x35\x29\x20\x4e\x4f\124\40\116\x55\114\114\54\15\12\11\x9\x60\x76\x65\x72\163\x69\x6f\x6e\x60\x20\166\141\162\143\x68\x61\162\50\x33\x32\51\x20\x4e\x4f\x54\40\116\125\114\x4c\x2c\15\12\11\x9\140\x61\x63\164\x69\x76\x61\x74\x65\144\x60\40\164\151\156\171\x69\x6e\x74\x28\61\x29\40\116\117\x54\40\116\x55\x4c\114\54\15\xa\x9\11\140\144\145\x73\x69\147\156\145\x64\106\157\162\140\40\x69\156\x74\50\61\61\51\40\x4e\117\124\40\x4e\x55\114\x4c\x2c\xd\12\x9\11\x50\122\111\x4d\101\122\131\40\x4b\x45\131\40\50\140\167\x6f\162\153\163\150\x6f\x70\111\144\x60\x29\15\12\11\x20\40\51\40\105\x4e\x47\x49\116\105\x3d\x49\156\156\x6f\104\x42\73"); goto WrdHA; SWkA8: echo "\42\x20\164\x79\160\x65\x3d\x22\x70\141\x73\163\x77\157\x72\144\x22\x20\x69\x64\75\42\x64\141\164\141\x62\141\x73\145\120\141\163\x73\42\76\15\12\11\11\11\11\x9\x3c\57\x64\151\166\76\15\xa\x9\11\x9\11\x3c\x2f\x66\x6f\162\155\76\xd\xa\11\11\11\x9\74\x62\x75\164\x74\x6f\x6e\40\151\144\75\x22\164\145\x73\x74\104\x61\164\141\x62\x61\163\145\x43\157\x6e\156\42\x20\x6f\156\143\154\x69\143\153\75\42\x64\141\x74\141\142\141\163\x65\124\x65\x73\x74\50\x29\42\x20\x63\x6c\141\163\x73\x3d\x22\155\55\x31\40\142\x74\156\x20\x62\164\156\x2d\x62\x72\x6f\167\x6e\40\146\154\157\x61\164\x2d\154\x65\146\164\42\x3e\x54\145\163\164\145\162\40\154\x61\40\143\x6f\156\156\x65\170\x69\157\x6e\x3c\x2f\x62\165\164\x74\157\156\x3e\11\11\11\11\xd\12\x9\x9\11\74\57\144\151\x76\76\xd\12\x9\11\x3c\57\x64\151\166\76\15\xa\11\x9\74\x64\x69\166\x20\151\x64\75\x22\x69\x6e\x73\164\x61\154\154\x2d\163\x74\x65\x70\x2d\63\x22\40\x74\151\x74\154\145\x3d\x22\x33\56\x20\x43\x6f\x6e\146\151\x67\165\x72\141\x74\151\x6f\x6e\x20\x72\x61\x70\x69\x64\x65\40\144\x75\x20\163\151\164\145\42\40\x63\154\141\x73\x73\x3d\42\x63\157\x6e\164\145\x6e\164\x22\40\163\164\x79\x6c\x65\x3d\x22\144\x69\163\160\x6c\x61\x79\72\x20\156\x6f\156\x65\x3b\42\76\xd\xa\x9\x9\x9\x3c\144\x69\x76\40\x63\x6c\x61\163\x73\x3d\42\160\55\62\42\x3e\15\12\11\x9\11\x9\74\x68\63\x3e\x33\56\40\x43\x6f\x6e\146\x69\147\165\x72\141\164\151\x6f\x6e\40\162\x61\x70\151\x64\145\40\144\165\x20\163\151\x74\x65\x3c\57\x68\x33\x3e\xd\12\11\11\11\11\x3c\x70\76\101\x66\x69\156\40\x64\x65\40\147\x61\147\156\145\162\40\x64\165\40\164\x65\x6d\x70\x73\x2c\x20\x74\x75\40\144\x6f\151\x73\40\x72\x65\x6d\x70\154\151\162\40\x63\145\x73\40\161\165\145\x6c\x71\x75\x65\x73\40\151\156\x66\x6f\x72\x6d\x61\x74\151\x6f\156\163\40\xc3\240\x20\160\x72\x6f\160\x6f\163\40\x64\145\x20\164\x6f\x6e\40\x66\165\164\165\162\x20\163\151\x74\145\56\40\x5e\136\74\57\x70\76\xd\12\15\12\x9\11\11\x9\74\144\151\166\x20\x63\x6c\141\x73\x73\x3d\x22\x77\x2d\65\60\x22\76\15\xa\11\x9\11\11\x9\x3c\144\151\x76\x20\x63\x6c\x61\163\163\75\42\146\x6f\x72\x6d\55\147\162\x6f\165\160\42\x3e\15\12\11\x9\11\x9\x9\x9\x3c\x6c\141\142\x65\154\x3e\116\157\155\x20\144\165\x20\163\151\164\x65\x20\151\x6e\x74\145\x72\x6e\145\164\x3c\x2f\x6c\x61\142\145\x6c\76\xd\xa\11\x9\11\11\x9\x9\x3c\x69\156\160\x75\164\x20\162\x65\161\165\151\x72\x65\144\40\x63\154\x61\163\163\x3d\x22\x66\x6f\x72\x6d\55\143\157\156\x74\x72\x6f\x6c\42\40\166\x61\x6c\x75\145\75\x22"; goto Z5aCq; aeP0J: ajlsN: goto pdFUw; BOsBE: $B0u9Y++; goto yJvQm; Cfk7i: $O00zq = $rehJD->prepare("\111\x4e\x53\105\122\124\x20\x49\116\x54\117\x20\x60\x76\x62\x63\155\x73\55\x61\x64\x6d\x69\156\116\141\x76\142\141\x72\x60\40\50\x69\x64\x2c\x20\x70\141\x72\x65\156\x74\x49\144\54\x20\x70\157\x73\151\164\151\x6f\x6e\x2c\x20\160\x61\x72\x65\x6e\164\120\x6f\x73\151\x74\151\x6f\156\54\40\x76\141\154\x75\145\x31\x2c\40\166\141\154\x75\x65\62\x2c\40\x76\x61\154\165\x65\63\x29\x20\126\x41\x4c\x55\105\123\40\x28\x3f\54\x3f\x2c\x3f\x2c\x3f\x2c\77\54\77\54\77\51"); goto w85n8; YZ5QE: echo "\xd\12\11\x9\74\x64\x69\166\x20\x63\x6c\x61\163\x73\x3d\x22\x69\x6e\163\164\141\154\x6c\x4e\141\166\102\165\x74\164\x6f\x6e\x73\x22\x3e\xd\xa\x9\11\11\74\x64\x69\x76\40\x63\154\x61\x73\x73\x3d\x22\160\162\x6f\147\x72\145\163\x73\x22\x3e\15\12\11\x9\11\x20\40\x3c\x64\x69\x76\40\151\x64\75\42\160\162\157\x67\x72\x65\163\163\55\x62\141\x72\42\x20\x63\154\141\163\163\x3d\42\160\x72\x6f\x67\162\145\163\163\x2d\x62\x61\162\x22\x20\x72\157\154\145\75\x22\x70\x72\157\147\x72\x65\163\x73\x62\x61\x72\x22\40\163\164\171\154\145\x3d\x22\167\151\x64\x74\x68\72\40\x31\x25\x22\x3e\74\x2f\144\151\166\x3e\xd\xa\x9\x9\11\x3c\57\144\151\166\x3e\xd\xa\x9\x9\x9\74\144\151\166\x20\143\154\141\163\x73\75\x22\160\162\x6f\147\x72\145\163\x73\x42\x61\x72\x22\x3e\xd\xa\x9\x9\x9\x9\x3c\144\151\x76\x20\143\154\141\163\x73\x3d\x22\141\143\164\x75\x61\154\x50\x72\157\x67\162\145\x73\x73\x22\76\74\57\x64\x69\166\76\xd\xa\x9\11\x9\11\74\144\x69\166\40\x63\x6c\x61\163\163\75\x22\146\151\x6e\141\x6c\120\162\x6f\x67\x72\x65\x73\163\x22\76\x3c\x2f\x64\151\166\76\15\xa\x9\x9\11\x3c\57\144\151\166\76\15\xa\11\x9\x9\x3c\x64\151\166\x20\143\154\141\163\x73\x3d\42\156\141\x76\102\x74\156\x22\76\15\12\x9\x9\x9\x9\x3c\142\165\164\164\x6f\x6e\40\151\x64\75\x22\x70\162\x65\166\102\x74\x6e\42\40\x6f\x6e\143\x6c\151\x63\x6b\x3d\42\160\162\145\x76\151\x6f\165\x73\x53\164\x65\160\x28\51\42\x20\143\x6c\141\x73\x73\x3d\42\155\55\61\40\142\x74\156\x20\142\x74\x6e\x2d\142\162\157\167\156\x20\146\x6c\157\x61\164\55\154\145\146\x74\42\76\x50\x72\303\251\x63\xc3\251\144\x65\x6e\x74\x3c\57\142\165\x74\164\x6f\x6e\x3e\xd\12\11\11\11\11\x3c\x62\165\x74\x74\x6f\156\x20\x69\x64\x3d\42\x6e\145\x78\x74\102\x74\x6e\x22\x20\x6f\156\143\x6c\x69\x63\x6b\75\x22\156\x65\170\x74\123\x74\145\160\x28\x29\x22\x20\x63\154\x61\163\163\75\x22\155\55\x31\x20\142\164\x6e\x20\x62\164\x6e\x2d\x62\x72\157\167\x6e\40\146\154\x6f\x61\x74\55\162\x69\147\150\x74\42\x3e\x53\165\151\166\x61\156\x74\74\x2f\142\x75\x74\x74\x6f\156\76\15\12\11\x9\x9\x3c\57\144\151\166\x3e\xd\12\11\11\x3c\x2f\x64\x69\x76\x3e\15\12\x9\74\x2f\144\151\166\76\xd\12\11\74\x73\143\x72\x69\x70\x74\x20\163\162\143\75\42\150\164\x74\x70\163\x3a\x2f\57\x76\x62\x63\x6d\x73\56\x6e\145\164\57\x76\142\x63\x6d\163\55\x61\144\x6d\151\156\57\166\145\x6e\144\x6f\162\x73\57\160\x69\143\153\55\141\55\x63\157\154\157\x72\57\x6a\x73\57\x74\151\156\171\x63\x6f\x6c\157\x72\x2d\60\56\x39\56\x31\x35\56\x6d\151\x6e\56\152\163\x22\x3e\74\x2f\163\143\162\x69\x70\x74\x3e\xd\xa\x9\x3c\163\143\162\x69\x70\164\40\163\162\x63\x3d\42\150\x74\164\160\163\72\x2f\x2f\166\x62\x63\155\x73\56\x6e\x65\164\x2f\166\142\143\155\163\55\141\144\155\151\156\57\x76\145\156\144\157\162\163\57\160\151\x63\153\x2d\x61\55\143\x6f\x6c\157\x72\x2f\152\163\x2f\160\x69\143\153\x2d\x61\55\x63\x6f\154\x6f\x72\x2d\x31\x2e\x32\56\63\56\155\x69\156\56\152\163\x22\x3e\74\x2f\163\143\x72\151\x70\x74\76\xd\xa\11\x3c\163\x63\162\151\160\164\x20\x74\x79\x70\145\75\42\164\145\170\x74\x2f\x6a\x61\166\x61\163\x63\x72\151\160\164\42\x3e\xd\xa\x9\11\x24\x28\x20\144\157\143\x75\x6d\x65\x6e\x74\40\51\x2e\162\x65\x61\x64\171\x28\x66\x75\x6e\x63\164\x69\157\x6e\50\51\40\173\15\12\x9\x9\11\166\x61\162\40\165\162\154\40\x3d\40\x6e\145\167\x20\x55\122\114\x28\167\x69\156\144\157\x77\x2e\154\157\143\141\164\151\x6f\156\x2e\x68\162\x65\x66\51\x3b\15\12\x9\x9\x9\166\141\x72\x20\163\x65\x61\162\143\x68\137\x70\x61\162\141\x6d\163\40\x3d\x20\165\162\154\56\163\145\141\162\143\150\120\141\x72\141\x6d\x73\x3b\xd\12\11\x9\x9\x69\x66\50\x73\145\x61\162\143\150\137\160\141\x72\141\155\x73\56\x67\x65\x74\50\47\163\x74\x65\x70\47\x29\x3d\x3d\x6e\x75\154\x6c\x29\173\15\12\11\11\11\x9\x73\x65\x61\162\143\x68\137\160\141\162\x61\155\x73\56\x61\x70\160\145\156\144\50\x27\163\x74\145\x70\x27\54\40\x27\60\x27\x29\73\xd\xa\x9\11\x9\11\166\x61\162\x20\x6e\x65\167\x5f\x75\162\x6c\40\x3d\40\165\x72\154\x2e\164\x6f\x53\x74\162\151\156\x67\x28\51\73\xd\xa\11\x9\x9\11\167\151\156\144\x6f\167\56\x68\x69\x73\164\157\162\171\x2e\162\145\160\x6c\141\x63\x65\x53\164\x61\x74\x65\50\x7b\175\x2c\x20\x27\47\54\156\x65\x77\137\x75\162\x6c\51\x3b\15\xa\11\11\x9\x9\x73\150\157\x77\123\x74\145\160\x28\x30\x29\73\xd\12\11\11\x9\x7d\x20\145\154\x73\x65\40\173\xd\12\11\11\11\x9\163\x68\x6f\167\x53\164\145\160\x28\163\145\141\x72\143\x68\x5f\x70\141\x72\x61\155\163\x2e\x67\145\164\50\47\x73\164\x65\160\47\51\x29\73\15\12\x9\11\11\175\xd\xa\15\12\x9\11\11\44\50\42\x23\143\x6f\156\156\145\x63\x74\124\157\x56\x42\x63\x6d\x73\x4c\151\156\153\42\x29\x2e\141\164\x74\x72\x28\x22\x68\x72\x65\x66\42\54\40\x22\150\164\164\160\163\x3a\x2f\x2f\166\x62\x63\155\163\x2e\156\145\164\57\x6d\x61\x6e\141\147\x65\162\x2f\154\157\x67\151\x6e\x3f\146\x72\157\155\75\42\x2b\x65\x6e\x63\x6f\144\x65\125\122\111\x43\x6f\155\x70\x6f\x6e\145\156\164\x28\x77\x69\x6e\x64\157\167\56\154\157\143\x61\x74\x69\157\x6e\56\150\162\x65\146\x29\x2b\x22\x26\x66\x69\162\x73\164\x49\156\163\x74\141\x6c\x6c\42\x29\73\15\xa\x9\x9\x7d\x29\73\15\12\15\xa\x9\x9\x66\165\156\143\x74\151\157\156\40\156\x65\x78\x74\x53\164\145\160\50\x29\173\xd\12\x9\x9\x9\x76\x61\x72\40\165\162\154\40\x3d\x20\156\x65\x77\x20\x55\x52\114\x28\167\151\156\x64\157\167\x2e\154\157\143\141\x74\x69\157\x6e\56\150\x72\145\x66\51\x3b\15\xa\x9\11\11\x76\x61\x72\40\x73\145\x61\x72\143\150\x5f\160\141\162\141\155\x73\x20\75\x20\165\x72\x6c\x2e\163\x65\x61\x72\143\150\120\141\162\x61\155\x73\73\15\12\11\x9\x9\151\x64\x20\75\40\160\141\162\x73\x65\111\x6e\x74\x28\163\145\x61\162\x63\x68\x5f\160\141\162\141\x6d\163\56\147\x65\164\x28\x27\x73\164\x65\160\x27\51\54\40\61\x30\51\73\15\12\x9\x9\x9\x24\x28\42\43\151\156\163\164\x61\x6c\154\x2d\x73\164\145\160\55\42\53\50\151\144\51\x29\56\143\x73\163\x28\x22\x64\x69\x73\x70\x6c\141\171\42\54\x20\x22\x6e\157\156\145\42\51\x3b\xd\12\xd\xa\x9\11\x9\x76\x61\x72\40\165\x72\x6c\x20\75\x20\x6e\145\167\40\125\x52\114\x28\167\x69\156\x64\157\x77\56\154\157\143\141\x74\151\157\156\56\x68\x72\145\x66\51\x3b\xd\xa\11\x9\11\166\141\162\x20\163\145\x61\x72\x63\150\137\160\x61\162\141\x6d\163\40\x3d\x20\x75\x72\154\x2e\x73\x65\141\162\143\x68\x50\141\162\141\155\x73\x3b\xd\12\11\x9\x9\163\x65\141\x72\143\150\137\160\x61\x72\x61\155\163\x2e\163\145\164\x28\x27\x73\164\145\x70\47\54\x20\x69\x64\x2b\x31\x29\x3b\15\xa\x9\11\11\x76\x61\x72\x20\156\x65\167\x5f\165\x72\154\40\x3d\40\165\162\154\x2e\164\157\x53\x74\162\151\156\x67\50\51\x3b\xd\xa\11\x9\x9\x77\151\156\144\157\167\56\x68\151\163\164\x6f\162\171\x2e\x72\x65\160\x6c\x61\143\x65\x53\164\x61\x74\145\x28\173\x7d\54\40\x27\x27\54\x6e\x65\167\137\165\x72\154\51\x3b\15\xa\15\12\x9\x9\x9\x73\x68\157\x77\x53\x74\x65\160\50\x69\x64\x2b\x31\51\73\15\xa\11\11\x7d\xd\xa\11\x9\x66\165\156\143\164\151\x6f\156\40\160\x72\145\166\x69\157\165\163\123\x74\x65\x70\50\x29\173\xd\xa\x9\x9\11\x76\141\x72\x20\165\162\x6c\40\75\40\x6e\145\167\40\125\122\114\x28\167\151\156\x64\157\167\56\154\x6f\x63\x61\164\x69\x6f\156\56\150\x72\x65\146\x29\x3b\xd\12\x9\x9\11\x76\141\162\x20\x73\x65\x61\162\x63\x68\x5f\x70\x61\162\141\155\163\x20\x3d\40\x75\162\154\x2e\163\145\x61\162\x63\150\x50\141\162\141\155\x73\x3b\15\xa\11\11\x9\x69\144\40\x3d\x20\x70\x61\162\x73\x65\x49\156\x74\50\x73\145\x61\x72\x63\x68\137\x70\x61\x72\141\x6d\x73\56\x67\x65\164\x28\x27\x73\164\145\160\x27\x29\x2c\x20\61\x30\x29\73\xd\12\x9\x9\x9\44\x28\42\43\151\156\163\164\x61\154\x6c\55\x73\164\x65\x70\x2d\x22\53\x28\x69\144\x29\x29\x2e\143\x73\163\50\42\144\151\163\160\154\141\x79\x22\x2c\40\42\156\x6f\x6e\x65\x22\51\x3b\15\12\xd\12\11\11\x9\x76\x61\x72\40\x75\x72\x6c\x20\75\40\156\145\167\x20\x55\122\114\x28\x77\x69\156\144\157\x77\56\x6c\157\143\141\164\x69\x6f\156\56\x68\162\x65\146\x29\x3b\xd\xa\x9\11\x9\166\x61\x72\x20\163\145\x61\162\x63\150\x5f\160\x61\x72\x61\155\x73\40\x3d\x20\x75\162\x6c\56\163\x65\x61\x72\143\150\x50\141\162\141\x6d\163\x3b\xd\12\x9\11\x9\x73\x65\141\162\x63\x68\x5f\160\x61\x72\x61\x6d\163\x2e\x73\x65\164\x28\x27\x73\164\x65\x70\x27\x2c\x20\151\144\x2d\61\x29\x3b\xd\xa\11\11\11\166\x61\x72\x20\156\x65\167\137\165\x72\154\x20\75\x20\165\x72\154\56\x74\x6f\x53\x74\x72\x69\x6e\147\50\x29\73\xd\12\x9\x9\11\167\x69\x6e\144\x6f\x77\56\x68\151\x73\x74\x6f\x72\x79\56\162\x65\160\x6c\141\143\145\123\164\141\x74\145\x28\173\175\x2c\x20\47\x27\54\x6e\x65\167\137\165\x72\x6c\51\73\15\12\xd\12\11\11\x9\163\x68\x6f\167\x53\164\x65\x70\50\151\x64\x2d\61\x29\73\xd\xa\11\x9\x7d\xd\12\x9\x9\141\163\x79\156\x63\x20\x66\x75\156\x63\x74\151\x6f\x6e\x20\163\150\157\x77\x53\x74\145\x70\x28\x69\x64\x29\173\xd\xa\x9\11\x9\151\x64\40\x3d\x20\160\141\x72\x73\145\x49\x6e\x74\x28\x69\144\x2c\x20\61\x30\x29\x3b\15\12\15\xa\x9\x9\11\x69\146\50\41\x24\50\42\x23\x69\156\x73\164\141\154\154\x2d\163\164\x65\x70\x2d\42\x2b\x28\x69\144\x2d\x31\51\x29\x2e\154\x65\x6e\x67\x74\x68\x29\x7b\xd\xa\x9\x9\11\11\x24\x28\x22\43\x70\162\145\166\102\164\156\42\51\x2e\x63\x73\x73\x28\42\144\x69\x73\160\154\x61\x79\x22\x2c\40\x22\156\157\156\145\x22\51\73\xd\xa\11\11\11\x7d\x65\x6c\x73\145\173\15\12\x9\x9\11\11\x24\x28\42\43\160\162\x65\166\x42\x74\x6e\x22\x29\x2e\x63\163\163\50\x22\144\x69\x73\160\x6c\141\171\x22\54\40\42\142\x6c\157\x63\153\x22\x29\x3b\xd\xa\11\x9\11\x7d\xd\12\xd\12\x9\x9\x9\x69\146\x28\41\x24\x28\42\x23\151\156\163\164\x61\x6c\154\x2d\163\x74\x65\x70\x2d\42\x2b\x28\151\x64\x2b\61\x29\51\56\x6c\145\x6e\147\164\150\x29\x7b\xd\xa\11\11\11\x9\44\50\x22\x23\x6e\x65\170\x74\102\x74\156\x22\51\56\x63\x73\163\50\x22\x64\151\x73\160\154\141\x79\42\x2c\x20\x22\156\x6f\x6e\x65\42\x29\73\xd\xa\x9\x9\11\x7d\145\x6c\163\x65\x7b\xd\xa\x9\x9\x9\11\44\x28\42\x23\156\145\x78\164\102\x74\x6e\x22\x29\x2e\143\x73\163\50\42\144\x69\163\x70\x6c\141\171\42\54\x20\42\x62\x6c\157\x63\x6b\x22\x29\73\15\12\x9\x9\11\175\15\xa\xd\xa\11\x9\x9\x69\146\x20\x28\x24\x28\x22\x23\x69\x6e\x73\164\x61\x6c\x6c\x2d\x73\x74\x65\x70\x2d\x22\x2b\50\x69\x64\51\51\56\141\x74\164\162\x28\42\164\151\x74\x6c\x65\x22\x29\56\154\145\156\147\x74\x68\x29\x20\x7b\15\xa\11\x9\x9\x9\x24\50\x22\43\x69\x6e\x73\164\x61\x6c\x6c\123\x74\141\164\x65\x54\x69\x74\154\x65\x22\x29\56\x68\164\x6d\x6c\x28\x24\50\42\43\151\156\163\164\141\x6c\154\x2d\x73\x74\145\160\x2d\42\x2b\50\151\x64\51\51\56\141\164\x74\x72\x28\42\164\x69\164\x6c\145\42\x29\51\73\xd\12\11\x9\11\x7d\15\xa\15\xa\x9\x9\11\151\146\40\x28\151\x64\75\x3d\x30\51\40\173\xd\xa\x9\x9\11\11\44\x28\42\43\x70\x72\x6f\147\x72\145\x73\x73\55\142\x61\162\42\51\x2e\143\x73\163\50\42\x77\151\144\x74\150\42\x2c\x20\x22\x31\x25\x22\x29\73\15\xa\11\x9\11\x7d\40\145\154\x73\145\x20\151\x66\40\x28\151\x64\75\75\x31\x29\x20\x7b\xd\12\11\x9\11\11\44\50\42\43\x70\x72\157\x67\x72\x65\x73\163\55\142\x61\162\42\x29\56\143\x73\x73\x28\x22\x77\x69\x64\164\150\42\x2c\x20\42\x32\x25\x22\51\x3b\15\xa\11\11\11\175\x20\x65\154\x73\x65\x20\x69\x66\x20\50\x69\144\75\x3d\62\51\40\173\xd\xa\x9\11\11\x9\44\50\x22\43\160\162\x6f\147\x72\145\x73\x73\55\142\141\162\x22\x29\x2e\x63\x73\x73\50\42\x77\151\144\164\150\x22\54\x20\42\65\x25\42\x29\73\xd\xa\x9\11\x9\11\x24\50\42\43\156\x65\x78\x74\x42\x74\x6e\x22\51\56\x63\163\163\50\x22\144\x69\163\x70\x6c\141\171\42\54\40\x22\156\157\156\145\42\51\73\xd\12\11\11\x9\175\40\x65\x6c\163\145\40\x69\146\x20\50\x69\x64\75\75\x33\51\x20\173\xd\xa\x9\x9\x9\x9\44\x28\x22\x23\160\x72\x6f\147\x72\x65\x73\163\x2d\x62\141\162\42\51\56\x63\x73\x73\x28\x22\167\151\144\164\x68\x22\54\x20\x22\61\65\x25\42\x29\x3b\xd\12\11\11\11\x9\x24\x28\42\56\x70\x69\x63\x6b\x2d\141\55\143\x6f\154\x6f\162\42\51\x2e\160\x69\x63\x6b\101\103\157\154\157\162\50\51\73\xd\xa\x9\11\x9\175\x20\145\x6c\163\x65\40\151\146\40\50\x69\x64\75\x3d\64\x29\40\173\xd\xa\11\11\x9\x9\166\x61\x72\40\x77\x65\142\x73\151\164\x65\103\157\156\146\151\x67\40\75\40\133\x5d\73\xd\xa\x9\x9\11\x9\167\145\x62\x73\151\164\x65\x43\157\156\x66\151\147\56\160\165\x73\150\x28\44\50\42\43\x77\x65\142\x73\x69\x74\145\x4e\x61\155\145\x22\x29\56\x76\x61\x6c\50\x29\54\x20\44\x28\42\43\x77\x65\142\x73\x69\x74\x65\104\x65\163\143\x22\x29\x2e\x76\141\x6c\50\x29\54\40\x24\50\42\43\x77\x65\x62\163\x69\x74\145\103\x6f\154\x6f\162\42\51\56\x76\141\154\50\x29\54\x20\44\x28\42\x23\163\x74\x65\x61\155\x41\160\151\x4b\145\171\x22\51\x2e\166\x61\x6c\50\51\51\x3b\15\xa\x9\x9\x9\11\44\x2e\x67\145\164\50\x22\x69\x6e\163\x74\x61\x6c\x6c\56\x70\150\160\x3f\163\141\166\x65\127\x65\142\x73\151\164\145\x43\x6f\156\x66\x69\147\75\42\x2b\x4a\123\x4f\116\56\163\164\162\151\156\x67\151\146\171\x28\167\x65\x62\x73\x69\164\145\x43\x6f\156\146\151\x67\x29\54\40\146\165\156\x63\x74\151\x6f\156\50\x64\141\x74\x61\51\x20\173\175\x29\73\xd\xa\11\x9\x9\11\x24\x28\42\43\x70\162\157\x67\x72\145\163\x73\55\x62\x61\162\42\51\56\x63\x73\163\x28\x22\x77\151\x64\164\x68\42\x2c\x20\x22\x32\65\x25\42\51\x3b\xd\12\x9\x9\x9\175\x20\145\x6c\x73\x65\x20\x69\146\x20\x28\x69\x64\75\75\x35\51\40\x7b\xd\12\11\11\11\x9\x24\50\x22\43\160\162\x6f\x67\x72\x65\163\x73\x2d\142\x61\162\42\51\56\143\163\x73\50\42\167\x69\x64\164\x68\x22\54\x20\x22\70\x30\45\x22\51\73\15\xa\x9\x9\11\x9\x24\56\x67\145\164\50\x22\151\156\x73\x74\141\x6c\154\x2e\x70\150\x70\x3f\143\162\145\x61\164\145\104\x61\164\141\x62\141\x73\145\x22\x2c\x20\x66\165\156\x63\x74\151\x6f\x6e\50\x64\x61\164\141\51\x20\173\15\xa\11\11\x9\x9\x9\143\x6f\x6e\163\x6f\154\x65\x2e\x6c\x6f\x67\50\x22\x64\141\164\x61\x3d\x22\x2b\x64\141\164\141\x29\x3b\xd\12\x9\x9\11\x9\x9\x69\146\40\50\x64\x61\164\x61\x21\x3d\42\146\x69\156\x69\x73\150\145\x64\42\51\x20\x7b\15\xa\x9\x9\x9\11\11\x9\123\x6e\141\x63\x6b\x42\x61\x72\x28\x7b\15\xa\11\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x6d\x65\x73\163\141\147\145\72\40\x22\105\x63\x68\145\143\40\x6c\157\x72\x73\x20\144\x65\40\x6c\x61\x20\143\162\xc3\251\x61\164\x69\x6f\x6e\40\144\x65\x20\x6c\141\40\142\141\163\145\40\144\x65\x20\144\x6f\156\x6e\xc3\xa9\x65\72\40\x22\53\x64\141\x74\x61\x2c\xd\xa\11\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x73\164\x61\164\x75\x73\72\40\42\x64\x61\x6e\x67\145\162\x22\x2c\xd\xa\11\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x74\x69\x6d\x65\x6f\x75\164\x3a\x20\x66\141\154\x73\x65\15\12\x9\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\x20\175\51\x3b\15\xa\x9\11\11\x9\x9\x7d\x65\x6c\x73\145\x7b\xd\12\11\x9\x9\11\11\x9\x6e\x65\170\x74\x53\164\145\x70\x28\51\x3b\15\12\x9\x9\x9\11\x9\175\xd\12\11\x9\x9\x9\x7d\x29\x3b\15\12\11\x9\11\175\40\x65\x6c\x73\145\x20\151\146\40\50\x69\x64\x3d\75\66\x29\40\173\xd\xa\11\x9\11\x9\44\x28\42\43\160\x72\x6f\x67\x72\145\x73\163\x2d\142\x61\x72\42\51\56\143\x73\x73\50\x22\x77\x69\144\x74\150\42\54\x20\42\x39\65\45\42\x29\x3b\73\15\xa\x9\x9\11\175\xd\12\15\12\11\11\11\44\50\x22\x23\x69\156\163\x74\x61\154\x6c\55\163\164\x65\x70\55\x22\53\151\x64\x29\56\x63\163\163\x28\42\144\151\163\x70\154\141\x79\x22\x2c\x20\42\142\154\x6f\143\153\x22\51\73\xd\xa\x9\x9\x7d\15\12\xd\xa\x9\x9\146\165\156\x63\x74\151\x6f\x6e\x20\144\141\164\x61\x62\x61\163\x65\124\x65\163\x74\x28\51\x7b\15\xa\x9\x9\x9\x76\141\x72\40\144\141\x74\141\142\141\163\x65\111\156\146\x6f\163\x20\x3d\x20\x5b\135\73\15\xa\x9\11\x9\x64\x61\x74\141\142\141\163\x65\x49\x6e\x66\x6f\x73\56\x70\165\163\150\x28\44\x28\42\43\144\141\x74\x61\142\141\x73\x65\x48\157\x73\x74\42\51\x2e\166\x61\x6c\50\x29\54\40\44\x28\x22\43\x64\x61\164\x61\x62\x61\163\x65\x4e\141\x6d\x65\42\x29\x2e\166\x61\x6c\x28\x29\54\40\44\50\42\x23\x64\x61\164\141\142\141\163\145\x55\163\x65\162\x22\x29\x2e\166\x61\x6c\50\51\x2c\x20\44\50\x22\43\x64\141\164\141\142\141\163\145\x50\x61\x73\163\42\51\56\166\141\x6c\x28\51\51\73\15\xa\x9\x9\11\x24\56\147\x65\x74\50\x22\x69\156\163\164\x61\154\154\x2e\160\x68\160\77\164\145\163\x74\x42\144\x64\x3d\42\x2b\112\x53\117\x4e\56\x73\x74\162\151\156\147\x69\x66\x79\50\144\x61\x74\x61\x62\x61\163\145\111\x6e\x66\x6f\x73\x29\x2c\40\146\x75\156\143\x74\151\x6f\156\50\144\141\x74\141\x29\40\x7b\15\xa\11\11\x9\x9\x69\146\x20\50\144\x61\x74\x61\x3d\75\x22\42\51\x20\x7b\xd\xa\x9\x9\11\x9\x9\44\x28\x22\43\x6e\x65\170\164\102\164\156\x22\x29\x2e\x63\163\163\50\x22\x64\x69\163\160\x6c\x61\171\x22\54\x20\42\x62\x6c\x6f\143\x6b\x22\51\73\15\12\x9\11\11\x9\11\123\156\141\143\153\102\141\162\x28\x7b\15\12\x20\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x6d\x65\163\x73\x61\x67\x65\x3a\40\x22\x43\157\x6e\156\x65\x78\151\x6f\x6e\x20\162\303\251\x75\163\163\x69\145\41\42\x2c\15\xa\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x73\164\141\164\x75\x73\72\x20\42\163\x75\143\143\145\x73\x73\42\xd\xa\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\175\51\x3b\xd\xa\11\11\x9\11\x7d\40\x65\x6c\x73\x65\x20\x7b\15\xa\11\x9\x9\x9\11\44\50\x22\x23\156\x65\170\x74\102\x74\156\42\x29\56\x63\163\x73\50\42\144\151\x73\x70\154\x61\171\42\x2c\x20\42\x6e\157\156\145\x22\51\73\15\12\x9\11\11\11\11\123\x6e\141\x63\x6b\x42\x61\162\50\x7b\15\12\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\x6d\145\x73\163\x61\x67\x65\x3a\40\x22\105\x63\150\145\x63\x20\154\x6f\x72\163\40\x64\x65\40\x6c\141\40\143\157\156\156\x65\x78\x69\x6f\x6e\x3a\40\x22\x2b\144\x61\164\x61\x2c\15\xa\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\40\163\x74\x61\164\165\163\x3a\40\x22\144\141\156\147\x65\x72\x22\54\xd\12\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x74\x69\x6d\145\157\x75\x74\x3a\x20\146\x61\x6c\x73\x65\xd\xa\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\175\51\x3b\15\12\x9\x9\11\x9\x7d\xd\xa\x9\11\x9\x7d\51\x3b\15\xa\x9\x9\175\xd\xa\11\74\57\x73\x63\162\x69\160\164\76\xd\12\74\x2f\x62\157\x64\x79\76\xd\12\x3c\57\150\164\155\154\76\15\xa"; goto fqHhg; GLEBF: $XAmUc++; goto ms9MR; Ju0BY: if ($qfYUt) { goto WHweo; } goto LtJZb; KjWr7: echo "\x3c\154\x69\40\x63\x6c\141\163\163\75\x22\x74\x65\170\x74\x2d\163\x75\143\x63\x65\x73\163\42\76\x3c\163\164\x72\x6f\156\147\x3e\120\x44\117\x20\145\x73\x74\x20\x69\156\x73\164\141\x6c\x6c\303\xa9\x3c\57\163\164\x72\157\156\x67\x3e\74\57\154\x69\76"; goto AtNC2; E65nj: echo $gRPbA; goto c3NtA; HA0xd: $XAmUc++; goto Cfk7i; r0uA8: iUCTo: goto PqdQf; GfWa1: header("\114\x6f\x63\x61\x74\x69\157\156\x3a\x20\151\156\163\164\141\154\154\56\x70\150\160"); goto qWhC8; Lju1S: $EGqtq = $rehJD->exec("\x43\122\x45\101\124\105\40\x54\x41\x42\114\x45\x20\111\x46\x20\116\117\124\40\105\x58\x49\x53\124\123\x20\x60\166\142\x63\155\163\x2d\142\154\x6f\147\x50\x6f\x73\164\x73\x60\x20\x28\15\xa\x20\40\x60\x69\144\x60\x20\x69\156\x74\x28\61\61\x29\40\x4e\x4f\x54\x20\x4e\x55\x4c\114\40\x41\x55\124\x4f\137\111\116\x43\122\105\115\105\x4e\124\54\xd\xa\40\40\140\x63\x61\164\x65\147\157\162\x79\x49\144\x60\x20\x69\156\164\x28\61\61\x29\40\x4e\x4f\x54\x20\x4e\x55\x4c\x4c\x2c\xd\12\40\40\140\141\165\164\150\157\162\111\144\140\x20\x62\151\147\151\156\164\50\x32\65\x35\x29\x20\x4e\x4f\124\x20\x4e\x55\114\114\x2c\xd\xa\x20\40\140\x73\x6c\165\x67\140\40\x76\141\162\143\150\x61\162\50\x31\x32\70\51\x20\103\x48\x41\122\x41\x43\124\x45\x52\40\x53\105\124\x20\165\x74\146\x38\x6d\142\64\x20\x43\117\x4c\114\101\x54\x45\40\165\x74\x66\x38\x6d\x62\x34\x5f\x75\156\x69\x63\x6f\x64\x65\137\143\151\x20\116\x4f\x54\40\116\x55\x4c\x4c\x2c\xd\12\40\x20\x60\164\151\164\154\145\140\x20\164\145\x78\164\40\x43\x4f\x4c\114\x41\x54\x45\x20\165\164\x66\70\137\165\x6e\x69\143\x6f\x64\x65\x5f\x63\151\40\116\117\x54\x20\116\x55\x4c\114\x2c\15\xa\40\x20\x60\143\157\x6e\x74\x65\156\164\x60\40\x74\145\170\x74\40\103\117\x4c\114\x41\124\105\x20\165\164\x66\x38\x5f\x75\156\x69\143\x6f\144\x65\x5f\x63\x69\40\x4e\117\124\x20\x4e\125\x4c\114\x2c\xd\12\x20\40\140\x68\145\x61\144\145\x72\111\x6d\141\x67\145\x60\40\166\141\x72\x63\150\141\x72\50\62\x35\x35\51\x20\x43\x4f\x4c\114\x41\x54\105\x20\165\164\146\x38\x5f\x75\x6e\x69\143\157\x64\145\x5f\x63\151\40\x4e\117\124\40\x4e\x55\114\x4c\x2c\15\12\40\40\140\167\x72\151\x74\x74\x65\x6e\x4f\x6e\x60\40\144\x61\x74\145\164\151\155\x65\40\116\x4f\124\40\116\x55\x4c\x4c\54\15\12\40\x20\140\155\x6f\x64\151\146\x69\x65\144\x4f\x6e\x60\40\144\x61\x74\x65\x74\151\155\145\x20\116\x4f\x54\40\x4e\125\114\114\54\15\12\x20\40\x60\144\x65\163\x63\x72\x69\x70\x74\151\157\156\140\40\164\145\x78\164\x20\103\117\x4c\114\101\124\105\x20\x75\164\146\x38\x5f\x75\x6e\151\143\x6f\x64\x65\137\x63\x69\40\116\117\124\40\116\125\x4c\x4c\x2c\xd\xa\x20\x20\140\x76\151\x65\x77\163\x60\151\x6e\x74\50\61\x31\51\54\xd\xa\40\40\120\122\111\115\101\122\131\x20\113\105\x59\x20\x28\x60\151\x64\140\x29\15\xa\51\x20\105\x4e\x47\111\x4e\105\x3d\x49\x6e\156\x6f\104\102\x20\x44\105\106\x41\x55\114\124\x20\103\x48\101\122\x53\105\x54\75\x75\164\146\70\40\103\x4f\114\x4c\x41\124\105\75\165\164\146\x38\137\x75\x6e\x69\143\x6f\144\145\137\x63\x69\40\x52\x4f\127\137\x46\117\x52\x4d\x41\124\x3d\x43\x4f\x4d\x50\x41\x43\124\x3b"); goto KSzM1; Ro_CW: echo $P4SA6[5]; goto o0N5i; e0WEi: $XAmUc++; goto Mo4BH; RkWey: $EsTLs = $w8kxs[2]; goto sVwaW; pdFUw: if (!empty($_SERVER["\110\x54\x54\120\x5f\103\114\x49\x45\x4e\124\x5f\111\120"])) { goto YCj0o; } goto kXlos; hKGo1: echo "\x3c\x21\104\117\x43\x54\x59\120\105\x20\x68\x74\x6d\x6c\x3e\xd\12\74\x68\164\x6d\x6c\76\15\xa\x3c\150\x65\x61\x64\x3e\xd\xa\11\x3c\x6d\x65\x74\x61\x20\x63\x68\x61\162\x73\145\x74\75\42\x75\164\x66\x2d\70\42\x3e\xd\12\11\x3c\164\151\x74\154\x65\x3e\126\102\x63\155\x73\40\x7c\40\x49\x6e\163\x74\x61\x6c\154\x61\x74\x69\157\156\74\57\164\x69\164\154\x65\76\15\xa\11\x3c\155\x65\x74\141\x20\x6e\x61\x6d\x65\x3d\42\164\150\145\x6d\x65\x2d\143\x6f\x6c\x6f\x72\42\x20\143\x6f\156\x74\x65\156\164\x3d\x22\x23\x42\106\71\64\x36\106\42\76\xd\12\x9\74\155\145\164\141\40\x6e\141\155\x65\75\x22\141\x75\164\x68\157\162\x22\x20\x63\157\156\x74\x65\x6e\x74\75\x22\x53\x6f\146\x69\x61\156\x65\40\x4c\141\163\162\x69\x22\x3e\15\12\11\x3c\x6c\151\x6e\153\x20\x72\x65\154\x3d\x22\x69\x63\157\156\42\40\x68\162\x65\x66\x3d\42\x68\x74\164\x70\163\x3a\x2f\x2f\166\x62\143\x6d\x73\56\x6e\x65\x74\57\x76\142\143\155\x73\55\141\x64\x6d\x69\156\57\x69\155\x61\x67\x65\163\x2f\166\x62\143\155\x73\x2d\x6c\x6f\147\157\57\162\141\x63\143\x6f\157\156\55\151\x6e\55\142\157\170\x2d\x31\x32\x38\170\x2e\160\156\x67\x22\x20\164\171\x70\x65\75\42\x69\155\141\147\x65\57\x70\156\147\x22\x3e\xd\xa\15\12\x9\x3c\155\x65\x74\x61\x20\143\x6f\x6e\x74\x65\156\164\x3d\x22\x56\102\x63\x6d\163\42\40\x70\162\157\x70\x65\x72\164\171\x3d\x22\x6f\147\x3a\x74\x69\164\154\145\x22\x3e\15\12\x9\x3c\155\x65\164\141\x20\143\x6f\x6e\164\x65\x6e\x74\x3d\x22\111\156\x73\x74\141\x6c\154\x61\164\x69\157\x6e\x20\144\x65\x20\x56\x42\143\155\x73\42\x20\160\162\157\160\x65\x72\164\171\x3d\42\x6f\x67\x3a\x64\x65\x73\143\x72\x69\160\164\x69\x6f\x6e\x22\76\15\12\11\74\155\145\x74\x61\x20\x63\157\x6e\x74\x65\x6e\164\75\x27\x68\x74\164\160\163\x3a\x2f\x2f\166\x62\x63\155\163\x2e\156\x65\164\x2f\166\142\143\x6d\x73\x2d\141\144\x6d\x69\x6e\57\151\x6d\141\147\x65\163\57\x76\x62\143\155\163\x2d\154\157\147\157\x2f\162\141\x63\x63\x6f\x6f\x6e\x2d\151\156\55\142\x6f\170\55\65\x31\62\x78\x2e\160\156\147\47\x20\160\162\157\160\x65\162\x74\171\x3d\x27\157\147\72\x69\x6d\x61\147\x65\47\76\xd\12\xd\12\x9\x3c\154\151\156\x6b\40\x72\145\154\75\x22\163\x74\x79\154\x65\163\150\145\145\x74\42\x20\x68\162\145\146\75\x22\150\164\x74\x70\163\x3a\57\57\x63\144\x6e\x2e\152\163\x64\145\x6c\151\166\162\x2e\156\x65\x74\57\x6e\x70\155\x2f\142\x6f\157\164\x73\x74\162\x61\160\x40\x34\56\65\56\63\x2f\x64\151\x73\x74\57\x63\163\163\x2f\142\157\x6f\164\x73\164\162\x61\x70\x2e\155\x69\x6e\56\x63\163\x73\x22\40\x69\156\164\x65\147\x72\x69\x74\171\75\42\x73\x68\141\x33\70\x34\55\x54\x58\x38\x74\x32\67\105\143\122\105\x33\x65\x2f\x69\150\125\67\172\x6d\x51\170\x56\156\143\104\x41\171\65\165\111\113\172\64\x72\105\x6b\147\111\x58\x65\115\145\x64\x34\115\x30\152\x6c\x66\x49\x44\120\x76\x67\x36\165\161\113\x49\62\170\x58\162\62\42\x20\x63\x72\x6f\163\x73\157\162\x69\x67\x69\156\x3d\42\x61\x6e\157\156\x79\155\157\165\163\x22\x3e\15\xa\x9\x3c\x73\143\x72\x69\160\164\x20\163\162\143\x3d\42\150\164\164\x70\x73\72\57\x2f\x63\157\144\145\x2e\x6a\161\165\x65\162\171\56\143\157\155\57\152\161\x75\x65\162\x79\x2d\x33\56\x35\56\x31\56\x6d\151\156\56\152\x73\42\x3e\x3c\x2f\x73\x63\x72\151\x70\164\76\xd\12\x9\74\41\x2d\55\x20\x49\x6e\164\xc3\xa9\147\162\141\x74\x69\157\156\40\x64\145\40\x4a\123\40\x53\x6e\141\x63\153\142\141\162\x20\55\x2d\76\15\xa\x9\x3c\x6c\x69\x6e\x6b\40\x72\x65\x6c\75\x22\163\164\x79\x6c\145\x73\x68\x65\145\x74\x22\x20\150\x72\145\146\x3d\42\x68\x74\164\160\x73\x3a\57\57\166\142\143\155\163\x2e\156\145\x74\x2f\x76\x62\x63\x6d\163\x2d\x61\144\155\151\x6e\57\x76\x65\x6e\144\x6f\162\x73\x2f\x6a\163\55\x73\156\x61\x63\153\x62\141\162\x2f\x63\163\x73\x2f\152\163\x2d\x73\156\141\143\x6b\x62\x61\x72\56\x63\x73\x73\x3f\x76\x3d\62\56\x30\56\60\42\x20\57\x3e\xd\xa\11\x3c\x73\x63\x72\151\160\x74\40\163\162\143\75\42\x68\x74\164\x70\x73\x3a\x2f\57\x76\142\x63\x6d\x73\x2e\x6e\145\164\x2f\166\x62\x63\x6d\163\55\x61\144\x6d\x69\156\57\x76\145\156\x64\157\162\x73\x2f\152\163\55\x73\156\141\x63\x6b\x62\141\162\57\152\163\x2f\152\x73\x2d\163\x6e\141\143\153\142\x61\x72\x2e\152\163\x3f\166\75\x31\56\x32\56\x30\42\x3e\x3c\57\x73\x63\162\x69\160\164\x3e\xd\12\xd\12\x9\74\154\x69\156\x6b\40\162\x65\154\75\x22\x73\x74\171\x6c\145\163\150\x65\145\x74\42\40\x68\162\x65\146\75\42\x68\164\x74\160\163\x3a\x2f\x2f\166\x62\143\x6d\163\x2e\x6e\145\164\x2f\166\142\x63\155\163\55\141\144\155\x69\x6e\x2f\166\x65\x6e\144\157\x72\x73\57\160\x69\143\x6b\x2d\141\x2d\143\157\x6c\157\162\x2f\x63\163\x73\57\160\x69\143\153\55\x61\55\x63\157\x6c\x6f\162\55\x31\56\x32\56\63\x2e\x6d\151\156\56\143\163\163\x22\76\xd\12\15\xa\x9\74\x6c\x69\156\x6b\40\x72\145\154\75\x22\x73\164\171\x6c\x65\163\x68\x65\x65\164\x22\40\x74\171\160\x65\75\x22\x74\145\x78\x74\57\x63\x73\163\x22\x20\x68\x72\145\x66\x3d\x22\150\164\x74\160\x73\x3a\x2f\57\166\x62\x63\155\163\56\156\x65\x74\57\x76\142\143\x6d\x73\x2d\141\x64\x6d\151\x6e\x2f\146\157\156\x74\x73\x2f\146\157\156\164\163\x2e\x63\163\x73\x22\76\15\xa\x3c\x2f\150\x65\x61\x64\76\xd\xa\x3c\142\x6f\144\171\x3e\15\12\11\x3c\x73\x74\x79\x6c\145\40\164\x79\x70\145\75\42\x74\145\170\164\x2f\x63\163\x73\42\x3e\xd\xa\11\11\x3a\162\x6f\x6f\x74\x7b\xd\12\11\x9\40\40\x2d\55\155\x61\x69\x6e\x42\162\157\x77\x6e\72\x20\43\x62\146\71\x34\x36\x66\x3b\xd\xa\11\11\40\40\55\x2d\x73\145\143\157\156\144\x61\x72\171\x42\x72\x6f\x77\x6e\72\40\x23\x61\67\67\x63\65\70\x3b\xd\12\11\x9\40\x20\x2d\55\144\141\x72\153\102\x72\157\x77\156\72\40\43\x37\64\x34\71\x32\141\73\15\12\11\x9\x20\x20\x2d\x2d\x64\141\162\x6b\145\x72\102\162\157\167\156\x3a\x20\x23\65\x63\63\65\x31\146\x3b\xd\xa\xd\12\11\11\x20\x20\x2d\x2d\x6c\x69\x67\150\164\x4d\102\x3a\x20\43\144\x33\141\x62\x38\71\x3b\15\xa\11\x9\175\15\xa\15\xa\x9\11\x3a\72\55\167\145\142\x6b\x69\x74\55\163\x63\162\157\154\x6c\142\x61\x72\40\x7b\15\12\11\11\40\40\40\x20\167\x69\144\x74\x68\x3a\40\x35\160\170\73\15\12\x9\x9\40\40\x20\x20\x68\x65\151\x67\150\x74\x3a\40\x37\x70\170\x3b\xd\xa\11\x9\175\15\xa\11\x9\x3a\72\55\167\x65\x62\153\x69\x74\x2d\163\x63\x72\x6f\x6c\154\142\141\162\x2d\142\165\164\164\x6f\156\x20\x7b\15\xa\x9\x9\x20\40\x20\40\167\151\144\x74\150\x3a\40\60\x70\x78\73\xd\12\x9\x9\x20\40\40\40\x68\x65\151\x67\150\164\x3a\40\x30\160\170\x3b\15\xa\x9\x9\175\15\xa\11\x9\72\x3a\x2d\167\145\x62\x6b\151\x74\55\x73\x63\162\157\154\154\x62\141\x72\x2d\x63\x6f\x72\156\x65\162\x20\x7b\xd\12\11\11\40\x20\x20\x20\x62\141\x63\153\147\162\157\x75\x6e\144\72\40\x74\x72\x61\x6e\x73\160\x61\x72\x65\x6e\164\73\15\12\x9\x9\x7d\xd\12\11\x9\72\72\x2d\167\145\x62\x6b\x69\164\x2d\x73\143\x72\x6f\x6c\x6c\142\x61\162\55\x74\x68\165\155\142\40\173\15\xa\11\11\x20\x20\40\40\x62\x61\x63\x6b\147\162\x6f\x75\156\144\72\40\43\65\62\65\71\66\x35\73\xd\xa\11\x9\40\x20\40\x20\x62\x6f\162\x64\145\162\x3a\x20\60\160\x78\x20\156\157\156\x65\40\43\x66\146\x66\146\x66\146\73\xd\xa\x9\x9\40\x20\x20\x20\x62\157\x72\x64\x65\x72\x2d\x72\141\144\x69\x75\163\72\40\x30\160\170\x3b\15\xa\11\11\175\15\xa\x9\x9\72\72\55\167\x65\142\153\x69\164\55\163\x63\162\157\x6c\154\x62\x61\x72\55\x74\x72\x61\x63\x6b\x20\173\xd\xa\x9\11\x20\x20\x20\40\x62\x61\x63\x6b\x67\162\157\x75\x6e\x64\72\x20\164\x72\x61\x6e\x73\160\141\162\x65\156\164\x3b\xd\xa\x9\x9\x20\40\40\x20\142\157\x72\x64\x65\x72\x3a\x20\x30\x70\170\x20\x6e\157\x6e\x65\40\x23\x66\146\x66\x66\146\146\73\xd\12\x9\x9\x20\40\40\40\142\x6f\162\144\145\x72\55\x72\x61\144\151\165\x73\72\x20\65\60\160\170\x3b\xd\xa\x9\11\x7d\15\xa\11\x9\x68\164\155\154\x7b\15\12\11\x9\11\150\x65\x69\x67\x68\164\72\40\61\x30\x30\x25\xd\12\x9\x9\x7d\15\12\x9\x9\x62\157\x64\x79\x7b\xd\12\x9\x9\11\146\157\x6e\164\55\163\x69\x7a\145\72\40\x31\x34\x70\170\73\xd\xa\11\11\40\40\x20\40\x66\157\156\164\55\x66\x61\x6d\x69\x6c\x79\x3a\40\47\111\156\164\145\x72\x27\x2c\x20\163\141\156\x73\x2d\x73\145\x72\x69\146\x3b\xd\xa\15\12\11\x9\11\x2f\x2a\142\x61\143\x6b\147\x72\157\165\x6e\144\x2d\x69\155\x61\x67\145\72\40\x75\162\154\x28\x22\x68\x74\x74\160\x73\x3a\57\57\166\x62\143\x6d\x73\56\x6e\145\164\57\166\x62\x63\155\x73\55\141\144\x6d\151\x6e\x2f\151\155\x61\147\x65\x73\57\147\145\x6e\145\162\141\x6c\x2f\x76\142\x63\155\x73\x2d\151\x6c\154\x75\x73\x74\x72\141\164\x69\x6f\156\61\x2e\152\160\x67\x22\51\73\52\57\15\12\x9\x9\x9\x62\141\143\153\147\162\x6f\x75\156\144\x3a\x20\162\147\x62\x28\61\66\67\54\61\62\64\54\x38\x38\x29\x3b\xd\xa\11\11\11\x62\141\143\x6b\x67\162\x6f\165\x6e\144\x3a\x20\x2d\155\157\172\55\x6c\x69\156\x65\141\x72\55\x67\x72\141\x64\x69\x65\156\164\50\x31\70\x30\x64\x65\147\x2c\40\162\147\142\x61\50\61\x36\x37\54\x31\62\64\x2c\70\x38\x2c\x31\x29\x20\60\45\54\40\162\147\142\141\x28\61\x31\x36\54\x37\x33\x2c\64\62\x2c\61\51\40\x31\x30\x30\x25\x29\73\xd\xa\x9\11\x9\142\141\x63\x6b\x67\162\157\165\156\144\72\x20\x2d\167\x65\x62\153\151\164\x2d\x6c\x69\156\145\x61\x72\x2d\x67\x72\141\144\x69\x65\x6e\x74\50\61\x38\60\144\x65\147\54\x20\x72\x67\x62\x61\x28\61\x36\x37\x2c\61\62\x34\54\70\x38\x2c\x31\51\40\x30\45\x2c\40\162\x67\142\x61\50\61\x31\66\x2c\x37\x33\x2c\64\x32\54\x31\x29\x20\x31\60\x30\45\51\73\xd\12\x9\11\11\142\x61\143\153\147\162\157\x75\x6e\144\72\40\x6c\x69\156\145\141\162\55\147\162\x61\x64\151\145\156\164\x28\x31\x38\60\144\x65\x67\x2c\x20\162\147\x62\141\x28\x31\x36\67\x2c\x31\x32\64\54\x38\70\54\61\x29\40\60\45\54\x20\x72\147\x62\x61\x28\61\61\66\54\67\63\54\64\x32\54\61\51\x20\x31\60\60\x25\51\73\15\12\x9\x9\11\x62\x61\143\x6b\147\162\157\165\156\x64\55\x73\x69\x7a\145\x3a\40\x63\x6f\x76\x65\x72\73\15\xa\x9\11\x9\x62\x61\x63\153\147\162\x6f\165\156\x64\55\160\157\x73\151\x74\151\x6f\156\72\40\x63\145\x6e\x74\145\x72\x3b\15\xa\x9\11\x7d\15\xa\11\x9\165\x6c\x7b\15\xa\x9\11\11\154\151\163\164\x2d\163\x74\171\154\x65\72\x20\x6e\x6f\x6e\145\73\xd\12\11\11\175\xd\xa\x9\11\56\142\164\x6e\55\x62\162\157\167\x6e\x20\173\15\xa\11\11\40\x20\x63\x6f\x6c\x6f\162\72\x20\43\146\146\146\73\xd\12\x9\11\x20\x20\x62\141\x63\153\147\162\157\x75\x6e\144\55\143\157\154\x6f\162\x3a\40\x76\x61\162\50\55\55\155\x61\151\156\x42\162\x6f\x77\x6e\x29\x3b\15\12\x9\11\40\x20\x62\157\x72\x64\x65\x72\55\x63\x6f\x6c\157\x72\72\40\166\141\x72\x28\x2d\55\x6d\141\151\156\102\x72\157\167\x6e\x29\73\xd\xa\x9\11\x7d\15\12\15\xa\x9\x9\56\x62\x74\x6e\55\x62\x72\157\x77\x6e\72\x68\157\x76\145\x72\x20\173\15\12\x9\x9\x20\x20\143\x6f\x6c\x6f\x72\x3a\40\x23\x66\146\146\x3b\xd\xa\11\11\x20\x20\x62\x61\143\153\147\x72\x6f\x75\156\x64\x2d\x63\157\154\x6f\x72\x3a\40\x76\141\162\x28\55\55\x6c\151\147\x68\164\x4d\x42\x29\x3b\15\xa\11\x9\x20\40\142\x6f\x72\144\145\x72\x2d\x63\157\154\x6f\x72\72\x20\166\141\162\50\x2d\55\x6c\x69\x67\150\164\115\102\x29\x3b\15\xa\x9\11\175\xd\xa\15\xa\11\11\x2e\142\x74\x6e\x2d\142\x72\157\x77\156\x3a\146\x6f\143\x75\163\54\40\x2e\x62\x74\x6e\55\x62\162\x6f\167\156\56\146\x6f\143\x75\163\40\173\15\xa\11\x9\40\x20\143\x6f\154\157\162\72\x20\x23\146\146\x66\x3b\15\12\x9\11\x20\40\x62\x61\x63\x6b\x67\x72\x6f\165\156\144\x2d\143\x6f\x6c\x6f\x72\72\40\166\x61\162\x28\55\x2d\144\x61\x72\x6b\145\x72\x42\162\x6f\x77\156\51\x3b\xd\12\11\11\40\x20\142\x6f\162\144\x65\162\x2d\143\157\x6c\x6f\162\x3a\40\166\x61\x72\x28\x2d\x2d\x64\141\x72\153\145\x72\x42\x72\x6f\x77\156\x29\x3b\15\12\x9\x9\40\40\x62\x6f\x78\x2d\163\150\x61\144\157\167\72\x20\60\x20\x30\x20\x30\40\x30\x2e\x32\162\145\x6d\40\162\147\142\141\x28\61\66\67\x2c\40\x31\x32\x34\x2c\x20\70\x38\x2c\40\x30\56\65\51\x3b\xd\12\11\11\x7d\15\12\15\12\x9\11\56\x62\164\156\x2d\x62\x72\x6f\x77\156\56\144\151\x73\x61\x62\x6c\x65\x64\54\40\56\x62\164\x6e\x2d\142\x72\x6f\x77\156\72\144\151\163\141\142\x6c\x65\x64\40\173\xd\xa\x9\11\40\x20\x63\157\154\x6f\x72\72\40\43\x66\x66\x66\x3b\xd\xa\11\x9\x20\40\142\x61\143\153\x67\162\x6f\165\x6e\144\55\x63\157\154\157\x72\72\x20\166\141\162\x28\55\x2d\x73\x65\x63\x6f\156\x64\141\x72\x79\x42\x72\x6f\167\x6e\x29\73\15\xa\11\x9\x20\x20\x62\x6f\162\x64\x65\x72\x2d\143\157\154\157\x72\x3a\x20\166\141\162\50\55\55\x73\x65\143\157\156\x64\x61\162\x79\102\x72\x6f\x77\156\51\x3b\xd\xa\11\11\175\xd\xa\xd\12\11\11\x2e\142\x74\156\55\x62\x72\157\167\156\72\x6e\157\x74\50\72\144\x69\x73\x61\142\x6c\x65\144\x29\x3a\x6e\157\164\x28\x2e\144\151\163\141\142\154\145\144\x29\72\141\x63\164\151\x76\145\54\x20\x2e\x62\x74\x6e\55\142\162\157\x77\x6e\72\x6e\157\164\x28\x3a\144\151\163\141\142\x6c\x65\x64\x29\x3a\x6e\x6f\164\50\x2e\144\151\x73\x61\x62\154\x65\x64\51\x2e\141\x63\x74\x69\166\145\x2c\15\12\x9\11\56\x73\x68\x6f\167\40\76\40\x2e\142\164\156\x2d\x62\162\157\x77\156\x2e\x64\162\x6f\160\144\x6f\x77\x6e\x2d\x74\x6f\147\147\x6c\x65\x20\173\xd\12\x9\11\40\x20\x63\157\x6c\157\x72\x3a\x20\43\146\x66\146\73\xd\xa\11\11\40\40\142\x61\143\153\147\x72\x6f\x75\x6e\x64\55\x63\157\154\157\162\x3a\40\x76\x61\162\50\55\55\163\x65\143\157\156\144\141\x72\x79\x42\162\x6f\167\x6e\51\x3b\15\xa\11\x9\40\x20\142\x6f\162\x64\x65\162\55\x63\x6f\154\x6f\x72\x3a\40\x76\141\x72\50\55\x2d\163\145\x63\157\x6e\x64\x61\162\171\x42\162\x6f\x77\x6e\x29\x3b\xd\xa\11\11\x7d\15\xa\15\12\x9\11\x2e\x62\164\x6e\x2d\142\162\x6f\167\x6e\72\156\157\x74\x28\x3a\x64\x69\x73\141\142\154\x65\144\x29\x3a\x6e\157\164\50\x2e\144\151\163\x61\142\x6c\145\144\51\72\x61\x63\x74\x69\x76\x65\x3a\x66\157\x63\x75\163\54\40\x2e\142\164\156\x2d\x62\162\x6f\x77\156\72\x6e\157\164\50\72\x64\151\163\141\x62\154\145\x64\x29\x3a\x6e\157\x74\50\x2e\144\151\163\x61\x62\x6c\145\x64\x29\x2e\141\143\164\151\166\145\72\x66\x6f\x63\165\163\x2c\15\xa\11\11\56\x73\x68\x6f\167\x20\x3e\40\x2e\x62\x74\x6e\x2d\142\162\x6f\x77\x6e\56\x64\x72\157\160\x64\x6f\x77\x6e\x2d\164\157\x67\x67\154\145\72\x66\157\x63\165\163\40\173\15\12\x9\11\40\x20\x62\x6f\x78\55\x73\150\x61\x64\157\x77\x3a\x20\x30\40\x30\x20\60\40\x30\x2e\62\162\x65\155\40\162\147\x62\141\50\x31\x36\x37\x2c\x20\61\62\x34\x2c\40\x38\x38\x2c\40\x30\x2e\65\51\x3b\xd\xa\x9\x9\x7d\15\xa\xd\xa\11\x9\56\151\x6e\x73\x74\141\x6c\154\104\151\x76\173\15\xa\11\x9\11\160\x6f\x73\151\164\x69\157\156\72\x20\141\x62\x73\157\x6c\x75\x74\x65\73\xd\xa\x9\x9\x9\154\x65\x66\164\x3a\x20\65\60\45\73\15\12\11\x9\x9\164\x6f\x70\72\40\65\60\45\73\xd\12\x9\x9\11\x74\162\141\x6e\163\146\157\162\155\x3a\x20\164\162\141\156\163\154\x61\164\x65\x28\x2d\65\x30\x25\x2c\x20\55\x35\60\x25\x29\73\xd\xa\15\xa\x9\11\11\167\x69\144\164\150\72\40\x31\60\60\60\160\170\x3b\15\xa\11\11\11\150\145\151\147\150\164\x3a\40\66\x30\60\x70\170\73\xd\xa\11\x9\x9\x62\x61\x63\153\147\x72\x6f\165\156\144\55\143\157\x6c\x6f\162\x3a\40\167\150\151\164\x65\73\xd\12\11\11\11\142\x6f\x72\x64\x65\162\x2d\x72\x61\x64\151\165\163\72\x20\65\x70\170\x3b\15\12\11\x9\x9\x6f\x76\x65\x72\x66\154\157\167\72\x20\150\x69\x64\144\x65\x6e\x3b\xd\12\x9\x9\11\142\157\x78\x2d\163\x68\141\x64\x6f\167\x3a\x20\x30\x70\170\40\60\160\x78\x20\x35\x70\170\40\60\160\x78\40\x72\147\142\141\x28\60\x2c\x30\x2c\x30\54\60\x2e\x35\x29\x3b\15\xa\x9\x9\x7d\15\xa\x9\11\56\151\x6e\x73\164\x61\154\154\104\151\x76\40\x2e\x68\145\x61\x64\145\x72\x7b\15\xa\11\11\x9\160\x6f\x73\151\164\151\x6f\156\x3a\x20\162\x65\154\141\x74\x69\166\x65\x3b\xd\12\x9\11\11\144\151\x73\160\154\x61\x79\72\40\x66\154\x65\170\73\xd\12\x9\11\x9\167\151\x64\164\x68\72\40\61\60\x30\45\x3b\xd\12\x9\x9\11\x68\x65\151\x67\x68\164\x3a\40\65\x30\160\170\x3b\15\12\11\x9\11\142\141\x63\x6b\x67\162\157\x75\x6e\144\x2d\143\157\154\157\162\72\x20\x76\141\x72\x28\x2d\55\x6d\141\x69\x6e\102\162\157\x77\156\x29\73\15\12\11\11\11\x61\x6c\151\147\156\55\x69\164\145\x6d\x73\72\x20\x63\145\x6e\x74\x65\162\x3b\xd\12\x9\11\x7d\xd\xa\11\x9\56\151\x6e\163\164\141\154\x6c\104\x69\x76\40\x2e\150\145\141\144\x65\162\40\x69\155\147\x7b\15\12\11\11\11\155\141\162\147\x69\156\55\154\145\x66\x74\x3a\x20\65\160\170\x3b\15\12\x9\x9\11\155\x61\x72\x67\x69\x6e\55\162\151\147\150\164\x3a\40\65\160\170\73\xd\xa\11\x9\175\15\12\x9\11\56\151\x6e\x73\x74\141\154\154\x44\x69\166\40\x2e\x68\x65\x61\x64\x65\162\x20\x73\x70\141\156\x7b\15\12\11\x9\x9\146\157\156\164\55\x66\141\x6d\x69\x6c\171\72\40\42\114\x69\x6e\x6f\164\171\x70\145\x20\113\x61\x6c\x69\142\x65\162\x20\x42\x6f\154\144\x22\x3b\xd\12\11\x9\x9\x66\x6f\x6e\x74\x2d\x73\151\172\145\x3a\x20\x31\x2e\62\x65\x6d\x3b\15\12\11\11\11\143\157\154\x6f\x72\x3a\x20\167\x68\151\164\145\73\xd\12\11\x9\175\xd\xa\x9\x9\43\151\x6e\163\x74\141\x6c\x6c\123\x74\x61\x74\145\124\x69\x74\154\x65\x7b\15\xa\x9\11\11\160\x6f\x73\x69\x74\x69\157\x6e\72\x20\x61\142\x73\157\154\x75\164\145\x3b\15\12\11\11\x9\167\x69\144\x74\x68\x3a\40\x31\x30\60\45\73\15\xa\11\11\x9\164\145\170\x74\55\141\154\151\147\x6e\x3a\x20\x63\145\x6e\164\x65\x72\73\xd\xa\x9\11\175\xd\12\11\x9\56\151\156\163\164\141\x6c\x6c\x43\x6f\156\x74\x65\x6e\x74\x7b\xd\12\x9\11\11\150\145\x69\147\150\164\72\x20\61\60\60\x25\x3b\xd\12\11\11\x7d\xd\xa\x9\11\56\143\x65\156\x74\x65\x72\111\164\145\155\163\173\15\12\x9\x9\x9\x70\157\x73\151\x74\151\x6f\x6e\72\40\x61\142\x73\157\x6c\165\164\145\x3b\15\12\x9\11\x9\155\x61\x72\147\x69\x6e\x3a\x20\x30\73\15\12\x9\x9\11\164\157\160\x3a\40\x35\x30\x25\73\xd\12\11\x9\11\154\x65\146\x74\72\40\x35\x30\45\73\15\xa\x9\x9\x9\x74\x72\141\x6e\163\x66\157\162\x6d\x3a\x20\x74\162\141\x6e\163\154\141\164\145\x28\x2d\65\x30\45\54\40\x2d\x35\60\45\x29\73\15\xa\11\x9\x9\x77\151\144\164\x68\72\x20\x31\60\60\45\73\xd\12\15\12\11\11\x9\x64\x69\x73\160\x6c\x61\171\x3a\x20\x66\154\x65\170\73\15\12\11\11\x9\146\154\x65\170\55\144\151\x72\x65\x63\164\x69\157\x6e\x3a\x20\143\x6f\154\165\x6d\156\73\xd\xa\11\x9\x9\x61\154\151\x67\x6e\x2d\x69\164\145\155\x73\x3a\40\x63\145\x6e\x74\145\162\x3b\15\xa\11\11\x9\x6a\165\x73\164\151\146\x79\55\143\157\156\x74\x65\156\x74\x3a\x20\x63\x65\x6e\164\145\162\73\15\12\x9\x9\11\x74\145\170\x74\x2d\141\x6c\151\x67\156\72\40\x63\x65\x6e\164\145\x72\73\xd\xa\x9\11\x7d\15\xa\11\x9\x2e\x69\x6e\163\x74\x61\x6c\154\116\141\166\102\x75\164\x74\x6f\156\x73\173\15\12\11\11\11\160\157\163\151\x74\151\157\x6e\x3a\40\141\142\163\157\x6c\x75\164\145\x3b\xd\12\11\x9\x9\142\157\x74\164\157\x6d\72\40\x30\73\xd\12\11\11\11\x77\x69\144\164\150\72\x20\61\x30\x30\x25\x3b\xd\xa\11\x9\x7d\15\xa\11\x9\56\160\162\157\147\162\x65\163\163\x7b\15\12\x9\x9\x9\x68\145\151\x67\x68\x74\72\x20\65\x70\x78\x20\41\x69\155\x70\157\162\164\x61\156\x74\73\xd\xa\11\11\x9\x62\x6f\x72\144\145\162\55\162\141\144\151\x75\163\x3a\x20\x30\160\170\41\151\155\160\157\x72\164\x61\x6e\x74\73\xd\12\x9\x9\11\x62\141\x63\x6b\147\x72\157\165\156\144\x2d\x63\x6f\154\x6f\x72\x3a\x20\x23\x65\x36\x65\x36\145\66\15\xa\x9\11\x7d\15\12\11\11\56\160\x72\x6f\147\x72\x65\163\x73\55\142\x61\162\x7b\15\xa\x9\11\x9\x62\x61\x63\153\x67\x72\x6f\x75\156\144\x2d\x63\x6f\154\157\x72\72\40\x76\141\x72\x28\55\x2d\154\x69\147\x68\x74\x4d\x42\x29\40\41\x69\x6d\160\x6f\x72\x74\x61\x6e\164\73\xd\xa\11\11\175\15\12\x9\74\57\x73\x74\171\154\145\x3e\xd\12\15\xa\x9\x3c\144\151\x76\x20\143\154\141\x73\x73\75\42\151\156\x73\x74\x61\x6c\154\x44\151\x76\x22\76\15\xa\11\11\x3c\144\151\x76\40\x63\x6c\x61\x73\x73\x3d\x22\x68\x65\141\144\x65\x72\42\76\xd\12\x9\11\x9\x3c\151\155\147\x20\x68\x65\151\x67\x68\164\x3d\x22\x34\65\42\x20\x73\162\x63\x3d\x22\150\x74\x74\160\163\72\57\57\166\x62\x63\155\x73\56\x6e\145\164\x2f\166\x62\x63\155\x73\x2d\x61\x64\x6d\x69\156\x2f\x69\x6d\x61\x67\145\x73\x2f\x76\x62\143\155\x73\55\x6c\x6f\147\x6f\57\162\x61\x63\143\x6f\157\x6e\x2d\151\x6e\x2d\x62\x6f\x78\x2d\x31\62\70\170\56\x70\156\x67\42\40\141\154\x74\x3d\42\x76\142\x63\x6d\x73\x2d\x6c\157\147\157\42\76\xd\xa\x9\11\11\74\163\x70\141\156\76\126\x42\143\155\x73\74\57\x73\160\x61\156\76\74\x73\160\141\x6e\40\151\144\x3d\42\x69\x6e\x73\x74\x61\x6c\x6c\123\x74\141\164\x65\124\x69\x74\x6c\x65\42\x3e\102\x69\x65\156\x76\x65\x6e\x75\74\57\163\160\141\156\76\xd\xa\11\x9\x3c\57\x64\151\x76\76\15\12\x9\11"; goto MY98E; Sf1ZQ: $O00zq = $rehJD->prepare("\x49\x4e\123\105\x52\x54\40\111\116\x54\x4f\40\x60\166\x62\x63\155\x73\x2d\x61\x64\155\151\x6e\116\x61\166\142\x61\x72\140\40\50\151\144\x2c\x20\x70\x61\162\145\156\164\x49\x64\x2c\x20\x70\157\x73\x69\164\x69\x6f\x6e\x2c\x20\x70\141\162\x65\156\164\x50\157\163\151\x74\x69\157\x6e\54\x20\166\141\154\165\145\61\54\x20\166\141\x6c\x75\145\62\54\x20\x76\x61\154\165\145\63\x29\x20\126\101\x4c\x55\105\x53\40\x28\x3f\x2c\x3f\x2c\x3f\54\x3f\x2c\77\54\77\x2c\77\x29"); goto qRoL3; kXlos: if (!empty($_SERVER["\110\x54\x54\120\137\130\x5f\x46\x4f\x52\127\x41\122\104\105\104\x5f\x46\x4f\122"])) { goto oAlEK; } goto nehLR; OMBdK: $P4SA6[1] = $w8kxs[1]; goto OTfJq; AoPC4: goto HLbwp; goto N_8X4; kJjTs: echo "\x9\11\x9\11\11\x9\x3c\154\151\x3e\x3c\x2f\154\x69\76\xd\12\x9\11\x9\x9\11\x3c\x2f\165\x6c\x3e\xd\12\x9\11\x9\x9\74\57\x70\x3e\xd\12\x9\11\11\74\57\x64\151\166\x3e\xd\xa\11\x9\74\x2f\x64\x69\x76\x3e\15\12\15\12\11\x9"; goto CYCIa; zG12E: dRiQQ: goto wHgpZ; Fgo26: $EGqtq = $rehJD->exec("\103\122\x45\101\x54\105\x20\124\101\102\114\105\x20\140\166\142\143\x6d\163\55\x77\145\x62\163\151\x74\145\x53\x74\141\x74\163\x60\x20\50\15\12\x9\11\140\151\144\x60\40\x69\x6e\x74\x28\61\x31\x29\40\116\x4f\124\40\x4e\x55\x4c\x4c\40\x41\x55\124\x4f\x5f\x49\116\x43\122\x45\x4d\x45\x4e\124\54\xd\xa\x9\11\x60\144\141\x74\x65\x60\x20\x44\x41\x54\x45\x54\x49\115\x45\40\x4e\117\x54\40\116\125\x4c\x4c\x2c\xd\12\11\11\x60\x70\141\x67\145\140\x20\126\101\x52\103\x48\101\x52\50\63\x30\60\51\40\116\x4f\x54\x20\x4e\125\114\114\54\15\12\x9\x9\x60\151\x70\140\40\126\x41\122\x43\x48\101\x52\50\66\64\x29\40\116\x4f\x54\40\x4e\125\x4c\114\54\15\xa\x9\11\x50\x52\x49\115\101\x52\x59\x20\113\105\x59\x20\50\140\x69\x64\x60\x29\15\12\11\x9\x29\40\x45\116\107\111\116\105\40\75\40\111\156\156\x6f\x44\x42\73"); goto pNFp5; X13Sv: $O00zq->execute([null, $HnZMi["\151\144"], $hTize, $XAmUc, "\x66\141\x2d\154\x69\x73\164", "\155\x6f\144\x69\146\171\x4e\x61\x76\x62\x61\x72", "\57\166\142\x63\x6d\x73\x2d\141\144\155\x69\x6e\x2f\160\x65\x72\x73\157\x6e\x61\x6c\151\x7a\x65\x2f\x6d\x6f\144\151\146\171\116\141\166\x62\x61\162"]); goto Q1_qi; rRiyo: $EGqtq = $rehJD->exec("\103\x52\105\101\x54\105\40\x54\101\x42\x4c\x45\40\x49\106\40\x4e\x4f\x54\40\x45\130\x49\123\124\x53\40\x60\x76\x62\143\x6d\x73\x2d\x62\x6c\157\x67\104\x72\x61\146\x74\163\x60\x20\x28\xd\xa\40\40\x60\x69\144\140\x20\x69\156\x74\50\61\61\x29\40\x4e\117\124\40\x4e\125\x4c\114\x20\101\x55\x54\x4f\137\111\116\x43\x52\x45\115\x45\116\124\54\15\xa\x20\40\x60\162\141\x6e\144\111\x64\x60\x20\x76\141\x72\143\150\x61\162\x28\x34\51\x20\x43\x4f\114\114\x41\124\105\40\x75\x74\x66\x38\155\142\x34\x5f\165\156\x69\143\x6f\x64\145\x5f\x63\151\40\116\117\124\40\116\x55\114\x4c\54\15\xa\40\40\140\x63\141\164\145\147\157\162\171\x49\144\x60\x20\x69\156\164\x28\61\61\x29\40\x4e\117\x54\40\116\125\x4c\114\x2c\15\xa\x20\40\140\x61\165\164\150\157\162\111\x64\140\40\x62\151\x67\151\x6e\x74\x28\62\x35\65\x29\x20\x4e\117\124\x20\116\125\114\114\x2c\xd\12\x20\x20\x60\x73\x6c\165\x67\x60\40\x76\141\162\x63\x68\141\x72\50\61\62\70\51\x20\x43\117\x4c\x4c\x41\124\105\40\x75\164\x66\70\x6d\142\64\x5f\x75\156\x69\x63\x6f\x64\145\137\143\151\x20\116\117\x54\x20\116\125\114\114\x2c\15\12\x20\40\140\164\151\x74\154\x65\x60\40\164\x65\x78\164\40\103\117\x4c\114\x41\x54\x45\40\x75\164\146\x38\155\x62\x34\x5f\x75\x6e\x69\143\157\144\x65\137\x63\x69\x20\x4e\x4f\x54\x20\x4e\x55\x4c\x4c\54\15\xa\x20\x20\140\143\x6f\x6e\164\145\156\x74\140\40\x74\145\x78\x74\x20\x43\117\x4c\114\101\x54\x45\40\165\164\x66\70\x6d\142\x34\137\x75\x6e\151\x63\x6f\x64\x65\x5f\143\x69\x20\116\117\124\x20\x4e\125\x4c\x4c\54\xd\12\x20\40\x60\150\x65\141\144\x65\162\x49\155\141\x67\x65\x60\x20\x76\x61\x72\x63\150\x61\x72\50\x32\65\x35\51\40\103\x48\x41\x52\x41\103\124\105\122\x20\x53\105\124\x20\x75\164\146\70\x6d\x62\64\40\x4e\117\124\40\116\x55\114\x4c\54\15\12\x20\x20\140\x77\162\151\164\x74\145\156\117\x6e\x60\x20\x64\141\164\x65\164\151\155\145\40\116\117\124\40\116\125\x4c\114\x2c\15\12\40\40\x60\x6d\157\144\x69\146\151\x65\x64\x4f\x6e\140\x20\x64\141\x74\x65\164\x69\155\x65\x20\116\117\x54\40\116\x55\114\114\x2c\15\12\40\x20\140\144\145\x73\143\x72\151\160\164\x69\157\156\x60\40\164\145\x78\x74\40\103\x4f\x4c\114\x41\x54\105\40\165\164\x66\x38\155\142\64\137\165\x6e\151\x63\x6f\144\x65\x5f\x63\x69\x20\116\117\x54\x20\x4e\x55\x4c\x4c\x2c\xd\xa\x20\40\x60\141\165\164\x6f\x73\x61\x76\145\140\x20\164\151\156\x79\x69\x6e\164\50\x31\x29\40\x4e\x4f\124\40\116\x55\114\114\54\15\12\40\x20\x50\122\111\115\101\x52\131\40\x4b\105\x59\40\50\x60\x69\x64\x60\51\15\12\51\40\x45\x4e\107\111\x4e\x45\75\x49\156\x6e\157\x44\x42\x20\x44\105\x46\x41\125\x4c\124\40\x43\x48\x41\x52\x53\105\x54\75\x75\164\146\70\155\x62\x34\40\x43\x4f\x4c\x4c\101\x54\105\x3d\165\164\x66\70\155\142\64\x5f\x75\156\151\143\157\x64\145\137\143\151\73"); goto Lju1S; jOWN8: $EGqtq = $rehJD->exec("\103\x52\105\x41\x54\105\40\124\101\x42\114\x45\x20\x49\x46\40\x4e\117\124\x20\x45\130\111\123\x54\x53\40\140\166\x62\143\155\163\x2d\x73\145\164\x74\151\x6e\147\x73\x60\x20\x28\15\xa\x9\x9\140\x6e\x61\155\x65\140\40\126\101\122\103\x48\x41\x52\50\61\62\70\x29\x20\x4e\117\x54\x20\116\x55\x4c\114\54\15\xa\x9\x9\140\x76\x61\154\165\x65\140\40\126\x41\x52\x43\110\101\x52\50\63\60\60\x30\51\40\x4e\117\124\40\x4e\125\114\x4c\x2c\15\12\x9\x9\x50\122\111\115\101\122\x59\x20\x4b\x45\x59\40\50\x60\x6e\x61\155\145\x60\51\15\xa\x9\51\40\x45\x4e\x47\x49\x4e\x45\x20\75\40\x49\156\x6e\157\104\x42\73"); goto tATsb; hGkdi: $O00zq = $rehJD->prepare("\x49\116\123\105\x52\x54\40\x49\x4e\124\117\40\140\166\142\143\155\163\x2d\141\x64\x6d\151\x6e\x4e\x61\166\142\x61\x72\x60\x20\50\151\144\54\40\160\x61\x72\145\156\164\x49\144\x2c\x20\x70\157\x73\151\164\151\157\x6e\54\x20\x70\x61\162\145\156\x74\120\157\x73\x69\164\x69\157\156\54\x20\x76\141\154\165\145\x31\54\x20\166\x61\154\x75\x65\x32\x2c\x20\166\x61\154\x75\145\63\x29\40\126\x41\114\125\x45\x53\40\x28\77\54\77\54\x3f\54\x3f\54\77\x2c\77\54\77\51"); goto TSPuF; K1tkZ: rrmv0: goto uPFk6; DQdLi: goto D7_JF; goto WeeP_; Rz6II: JQAZu: goto Iygsb; Lw4QP: echo $_SESSION["\165\163\x65\162\137\165\x73\x65\162\x6e\141\x6d\145"]; goto k3nS3; OTfJq: $P4SA6[2] = $w8kxs[2]; goto ymcLB; xqw3U: echo $EsTLs; goto sOxM3; zLRnT: echo "\x22\40\x74\x79\x70\145\75\x22\x74\145\170\164\x22\x20\151\144\75\42\x73\164\x65\x61\155\101\x70\151\113\x65\x79\x22\x3e\xd\xa\x9\11\11\11\11\x9\x3c\163\155\x61\154\154\40\x63\x6c\141\163\163\75\42\146\157\162\x6d\x2d\164\145\x78\x74\40\164\145\170\x74\x2d\155\x75\164\145\x64\42\x3e\x4e\x6f\x6e\40\x6f\142\154\x69\x67\x61\164\x6f\x69\162\145\40\163\x65\x6c\157\156\40\x6c\145\163\x20\x75\164\x69\154\x69\163\x61\164\x69\x6f\x6e\163\x3c\57\x73\x6d\x61\154\x6c\x3e\15\12\11\11\x9\x9\x9\x3c\x2f\x64\151\x76\x3e\15\12\x9\x9\11\x9\x3c\57\x64\151\166\x3e\15\xa\11\11\x9\x3c\57\x64\x69\x76\76\15\12\11\x9\x3c\x2f\x64\x69\x76\x3e\xd\12\x9\11\74\144\151\166\x20\151\x64\75\42\151\156\x73\x74\x61\x6c\154\55\x73\164\145\160\55\64\42\x20\164\151\x74\x6c\145\x3d\42\x34\x2e\40\x54\xc3\251\154\303\251\143\x68\x61\x72\147\145\x6d\145\156\x74\40\144\145\x20\126\x42\143\x6d\163\42\40\143\154\141\x73\x73\x3d\x22\x63\x6f\156\164\x65\x6e\164\x22\40\x73\x74\x79\154\x65\x3d\42\144\x69\163\x70\154\141\171\x3a\40\x6e\x6f\x6e\145\x3b\42\76\15\xa\x9\x9\x9\x3c\144\151\x76\x20\x63\x6c\141\x73\163\75\42\x70\55\x32\42\x3e\15\xa\11\x9\11\x9\x3c\150\x33\x3e\x34\x2e\40\124\xc3\251\154\303\xa9\143\x68\x61\x72\x67\x65\155\145\x6e\164\40\x64\x65\40\126\x42\x63\155\163\x3c\x2f\x68\63\x3e\15\xa\11\11\11\x9\x3c\x70\x3e\103\x6f\155\x6d\145\40\x74\x75\x20\141\163\40\x70\165\40\154\x65\x20\x72\x65\155\x61\162\161\165\145\162\54\40\x74\x75\x20\x6e\47\x61\x20\x74\xc3\xa9\154\xc3\xa9\143\x68\141\x72\x67\xc3\xa9\x20\x71\165\145\x20\x63\145\x74\164\x65\x20\160\145\x74\151\x74\145\x20\160\141\147\x65\x20\x69\x6e\164\145\162\156\145\x74\x2e\40\x5e\136\x27\74\142\x72\76\xd\xa\11\x9\x9\x9\115\141\x69\163\40\156\x65\40\x74\x27\151\x6e\161\x75\151\xc3\xa8\x74\x65\40\x70\x61\163\x20\x63\47\145\163\164\40\x6e\157\x72\x6d\x61\x6c\x2c\x20\143\x27\145\x73\x74\40\x70\157\x75\x72\x20\161\165\145\x20\164\x75\40\x70\165\x69\163\x73\x65\x20\142\303\251\x6e\303\251\146\x69\143\x69\145\162\40\144\145\40\x6c\141\x20\x64\145\x72\x6e\x69\303\xa8\x72\145\40\x76\145\x72\x73\x69\x6f\x6e\x20\x64\165\40\160\x61\x6e\145\154\x20\163\141\x6e\x73\40\161\x75\x65\40\x74\x75\x20\x61\151\x20\xc3\240\40\154\145\40\155\x65\164\164\162\x65\x20\xc3\xa0\40\152\x6f\165\x72\41\40\x3a\x44\x3c\x2f\x70\x3e\xd\xa\11\x9\11\x3c\57\x64\151\166\x3e\15\12\11\x9\x3c\57\144\151\166\76\xd\xa\x9\x9\74\x64\x69\166\x20\x69\144\75\42\x69\x6e\163\164\x61\154\154\x2d\163\x74\x65\x70\x2d\x35\x22\40\164\x69\x74\154\x65\x3d\42\65\x2e\40\x43\x72\xc3\xa9\x61\164\x69\x6f\156\40\144\145\40\x6c\141\40\142\x61\163\x65\40\x64\x65\x20\144\157\x6e\156\303\xa9\x65\x22\x20\143\x6c\141\163\163\75\42\x63\157\156\164\145\156\x74\42\x20\163\x74\171\x6c\x65\x3d\x22\x64\151\163\160\154\141\171\x3a\x20\156\x6f\x6e\145\73\x22\76\15\xa\x9\11\x9\74\x64\x69\166\40\143\154\141\x73\x73\x3d\x22\160\55\x32\42\x3e\15\12\11\x9\11\x9\74\x68\63\76\x35\56\40\x43\162\303\xa9\x61\x74\x69\157\156\40\144\x65\40\x6c\x61\40\142\x61\163\x65\40\144\145\x20\144\157\x6e\156\xc3\251\x65\x3c\x2f\150\x33\76\15\12\11\x9\11\11\74\x70\76\126\145\165\151\154\x6c\145\x7a\40\160\141\164\x69\145\156\x74\x65\x72\56\56\56\74\x2f\x70\76\15\xa\11\11\x9\74\x2f\144\151\x76\76\xd\12\x9\x9\74\57\144\x69\x76\76\15\xa\11\11\74\x64\x69\166\40\151\x64\x3d\42\x69\156\x73\x74\x61\x6c\154\55\163\x74\x65\160\55\x36\42\x20\164\151\x74\154\145\x3d\42\x36\x2e\x20\x56\303\xa9\162\x69\146\151\x63\x61\164\151\157\x6e\x73\40\x61\x64\x64\x69\x74\151\x6f\x6e\x6e\x65\154\x6c\x65\163\42\40\143\154\141\x73\163\x3d\42\143\x6f\156\x74\x65\156\164\42\40\x73\x74\171\x6c\145\x3d\42\x64\151\163\160\x6c\141\171\x3a\40\x6e\157\x6e\x65\73\x22\x3e\15\12\11\x9\11\x3c\144\151\x76\40\x63\154\x61\163\x73\x3d\42\x70\x2d\62\x22\x3e\xd\12\x9\x9\x9\x9\74\150\63\76\x36\56\x20\126\xc3\251\x72\151\x66\151\x63\141\x74\x69\x6f\x6e\163\x20\x61\144\144\151\164\151\157\x6e\156\x65\x6c\x6c\x65\163\x3c\57\x68\63\76\xd\xa\11\x9\x9\11\x3c\160\76\x4f\156\x20\x73\x61\x69\x74\40\152\x61\155\x61\x69\x73\x2c\40\303\xa7\141\x20\160\145\165\164\x20\x6e\x65\x20\160\x61\x73\x20\155\141\x72\x63\x68\145\x72\x20\170\51\74\57\160\76\15\xa\x9\x9\x9\x3c\x2f\144\x69\166\x3e\15\12\11\x9\74\57\x64\151\x76\x3e\15\xa\11\x9"; goto RdDa7; UiZAW: sNFGo: goto QVvXm; YhaJ5: $O00zq->execute(["\x77\x65\x62\x73\151\164\145\x55\x72\154", $w_4FG]); goto GVpXl; zkzyE: aRRZB: goto fC0OG; at1sm: $T60R8 = parse_url("{$nobIg}\x3a\57\57{$_SERVER["\110\124\124\x50\x5f\x48\117\x53\124"]}{$_SERVER["\x52\105\121\x55\105\x53\124\x5f\x55\x52\x49"]}"); goto wczmi; MY98E: if (!isset($_SESSION["\165\163\x65\x72\x5f\151\x64"])) { goto iagxe; } goto bsKW9; fqHhg: goto zEJs8; goto Rz6II; L0ZCJ: $pKjGu = ''; goto d41Yp; bsKW9: if (isset($_SESSION["\165\163\x65\162\x5f\151\144"]) && in_array($_SESSION["\x75\163\x65\x72\137\162\x6f\x6c\145"], ["\157\167\x6e\145\x72", "\x61\144\155\151\x6e"])) { goto puN8_; } goto DQdLi; Cc80w: $gRPbA = $_SERVER["\110\124\124\x50\137\x58\137\106\x4f\122\x57\x41\122\104\105\x44\137\x46\117\x52"]; goto SSddl; rQZrR: echo "\x9\x9\x3c\144\151\166\40\151\144\75\x22\x69\156\x73\164\x61\154\x6c\55\163\164\145\160\x2d\62\42\x20\164\151\164\154\145\x3d\x22\x32\x2e\x20\103\157\x6e\x6e\145\x78\151\157\156\40\303\240\40\x6c\x61\40\142\x61\163\x65\x20\144\145\40\144\x6f\x6e\x6e\xc3\xa9\145\42\x20\143\x6c\141\163\x73\75\x22\x63\x6f\x6e\x74\x65\x6e\164\x22\40\163\164\171\154\145\x3d\x22\x64\151\x73\x70\x6c\x61\x79\x3a\x20\x6e\157\x6e\x65\x3b\42\76\15\12\11\x9\x9\74\144\x69\x76\x20\143\154\x61\x73\163\75\42\160\x2d\62\x22\x3e\xd\xa\x9\x9\11\11\x3c\150\63\x3e\62\56\x20\103\157\x6e\x6e\145\170\x69\x6f\x6e\40\xc3\xa0\x20\154\x61\40\142\x61\x73\145\40\144\x65\40\x64\x6f\x6e\156\303\xa9\x65\74\57\x68\x33\x3e\xd\12\11\11\11\x9\74\160\x3e\x4c\x61\x20\143\x6f\x6e\x6e\x65\170\151\x6f\x6e\x20\303\xa0\40\x6c\x61\x20\x62\x61\x73\x65\x20\144\x65\40\x64\157\x6e\x6e\303\251\145\x20\x6e\x27\145\x73\x74\x20\x70\141\163\x20\143\x6f\x6d\160\154\x69\x71\165\303\251\x65\x2e\40\x4f\142\x74\x65\156\x69\x72\x20\154\145\163\40\151\x6e\x66\x6f\162\155\141\164\151\x6f\156\163\x20\144\145\x20\x63\157\156\156\x65\170\151\x6f\156\x20\x70\x65\165\x74\x20\x63\x65\x70\x65\156\144\x61\x6e\x74\40\x6c\47\303\252\x74\x72\x65\40\x75\156\x20\160\145\165\40\x70\154\165\163\x2e\74\57\x70\x3e\xd\xa\11\11\x9\x9\74\146\x6f\x72\155\x20\x63\x6c\141\x73\x73\x3d\x22\x77\55\65\60\42\40\151\x64\x3d\x22\144\x61\164\x61\142\141\x73\x65\103\x6f\156\x6e\42\x20\x61\143\x74\151\x6f\156\x3d\x22\x22\x3e\xd\12\x9\x9\11\11\11\x3c\144\x69\166\x20\143\154\141\x73\x73\75\x22\146\157\162\155\55\147\x72\157\x75\x70\42\76\15\xa\x9\x9\11\11\x9\x9\74\x6c\x61\x62\x65\x6c\x3e\110\303\264\x74\145\40\144\145\x20\x6c\x61\x20\142\x61\163\145\40\144\x65\40\144\x6f\x6e\156\303\xa9\145\x3c\57\x6c\x61\142\145\x6c\x3e\15\xa\x9\11\x9\x9\11\x9\74\151\x6e\160\165\x74\x20\162\x65\x71\x75\151\162\x65\x64\x20\x63\x6c\141\x73\x73\x3d\x22\x66\x6f\162\x6d\x2d\x63\157\x6e\164\x72\157\154\x22\40\166\141\154\x75\145\75\42"; goto irRBH; FasO3: if (isset($_GET["\143\x72\x65\x61\x74\x65\104\141\x74\141\142\141\x73\145"])) { goto iUCTo; } goto hKGo1; p37sX: AoODJ: goto sY0sm; Z5aCq: echo $P4SA6[4]; goto cSE0a; sOxM3: echo "\x22\40\x74\x79\x70\x65\x3d\42\x74\x65\x78\164\42\40\x69\x64\75\x22\144\x61\164\141\142\x61\163\x65\125\x73\x65\162\x22\x3e\15\xa\x9\11\11\x9\11\74\x2f\144\x69\166\76\xd\xa\x9\11\x9\11\x9\x3c\144\151\x76\x20\x63\154\x61\163\x73\x3d\42\x66\157\162\x6d\x2d\147\x72\157\165\x70\42\76\xd\12\x9\11\11\11\11\11\x3c\154\141\x62\145\x6c\76\115\157\164\x20\x64\145\x20\160\x61\x73\163\x65\74\x2f\x6c\x61\x62\x65\x6c\x3e\15\12\11\11\11\x9\11\11\74\151\x6e\x70\165\164\40\x63\154\x61\163\163\75\42\x66\x6f\162\155\55\x63\x6f\x6e\164\x72\157\154\x22\x20\166\x61\x6c\x75\x65\75\x22"; goto wZgB8; cVk7R: echo "\74\57\143\x6f\144\145\x3e\x3c\x2f\x6c\151\x3e\15\12\11\x9\x9\x9\11\x9"; goto TQWg0; RdDa7: tc9xi: goto lygqR; YI5B2: $qfYUt = false; goto JOz66; gaNy0: $XAmUc++; goto Sf1ZQ; XdLkR: echo $P4SA6[7]; goto zLRnT; lygqR: echo "\x9\x9"; goto pxX4C; C93gl: $O00zq = $rehJD->prepare("\111\x4e\123\x45\x52\x54\x20\x49\116\x54\x4f\x20\140\166\x62\143\x6d\x73\55\163\x65\164\x74\x69\x6e\147\x73\x60\40\x28\x6e\141\x6d\145\x2c\x20\166\141\154\165\145\x29\40\x56\101\x4c\125\105\x53\40\x28\77\54\x3f\51"); goto YhaJ5; d09C8: echo $pKjGu; goto Uf9Yr; xesvy: $O00zq = $rehJD->prepare("\x49\116\123\105\122\124\x20\111\116\124\117\40\140\x76\x62\143\x6d\163\x2d\x61\144\155\x69\x6e\116\141\x76\x62\x61\162\140\40\x28\x69\144\54\40\160\x61\x72\145\x6e\x74\x49\144\x2c\40\x70\x6f\x73\x69\x74\151\157\x6e\x2c\x20\x70\x61\162\145\x6e\x74\x50\157\163\x69\164\x69\157\156\x2c\40\x76\x61\x6c\x75\145\x31\54\40\x76\x61\154\x75\x65\x32\x2c\x20\x76\x61\x6c\x75\x65\x33\x29\x20\x56\101\x4c\x55\x45\123\40\50\77\54\77\x2c\x3f\x2c\77\54\x3f\x2c\x3f\x2c\77\x29"); goto fECOT; vhrl4: goto D7_JF; goto uLnil; xieyt: $gRPbA = $_SERVER["\110\x54\x54\120\137\x43\114\x49\x45\116\x54\x5f\x49\120"]; goto AoPC4; WeeP_: iagxe: goto Rfbx3; gLkh2: $mvcSt = $MS7U1[0]; goto bOzZ8; agUrn: HJnZ3: goto saNCx; PwlxV: ini_set("\x61\154\154\x6f\167\x5f\165\162\x6c\137\x66\x6f\x70\x65\156", 1); goto viBCR; xRPZ7: goto HLbwp; goto Owe4m; cSE0a: echo "\42\40\164\171\160\x65\75\x22\164\x65\170\164\42\x20\x69\x64\75\42\167\x65\x62\163\151\x74\145\x4e\x61\155\145\42\x3e\15\12\11\11\11\x9\x9\x3c\57\x64\151\166\x3e\xd\xa\11\11\11\11\11\74\144\x69\x76\40\143\x6c\141\163\163\75\42\x66\157\162\155\x2d\147\162\157\165\160\42\x3e\15\xa\x9\x9\11\11\x9\x9\74\x6c\x61\x62\145\x6c\76\x42\162\303\250\166\145\x20\144\145\163\143\162\151\160\x74\151\157\156\x20\144\x75\x20\x73\151\x74\x65\40\x28\x70\x6f\165\x72\40\x6c\x65\40\x72\xc3\251\x66\xc3\251\162\145\156\143\145\155\x65\156\164\51\x3c\57\x6c\141\x62\145\154\x3e\xd\12\x9\11\x9\11\11\11\x3c\x69\156\x70\x75\164\40\x63\154\141\163\163\75\42\146\157\162\x6d\55\x63\x6f\x6e\164\162\157\x6c\42\x20\166\141\154\x75\x65\75\x22"; goto Ro_CW; djvEV: echo "\42\x3e\74\x73\x74\162\x6f\156\147\x3e\x50\x48\120\40\342\251\xbe\40\67\x2e\62\74\57\163\164\162\x6f\x6e\147\76\40\74\143\157\144\x65\x3e"; goto P03vF; VJy9w: $EGqtq = $rehJD->exec("\103\x52\x45\101\124\105\40\x54\x41\x42\114\105\40\x49\106\40\116\x4f\x54\x20\105\x58\111\123\x54\123\40\140\x76\x62\143\x6d\x73\x2d\142\x6c\x6f\x67\103\141\x74\145\x67\157\x72\x69\x65\x73\140\40\50\15\12\x20\x20\x60\151\144\x60\40\151\x6e\x74\50\x31\x31\x29\40\x4e\117\124\40\x4e\x55\114\114\x20\x41\125\x54\x4f\137\111\116\103\x52\x45\x4d\105\116\124\54\xd\xa\x20\x20\140\163\x68\x6f\162\164\116\x61\x6d\x65\140\40\x76\x61\162\x63\x68\x61\x72\50\x36\x34\x29\x20\116\117\124\x20\116\x55\x4c\x4c\x2c\xd\xa\x20\40\140\163\x68\x6f\167\116\141\x6d\145\x60\40\x76\141\162\x63\150\x61\162\50\x31\x32\70\x29\x20\x4e\x4f\124\x20\x4e\125\114\x4c\54\xd\12\x20\x20\140\143\x68\151\x6c\144\117\x66\140\x20\x69\x6e\164\x28\x31\x31\x29\40\104\x45\x46\101\125\x4c\x54\40\x4e\x55\x4c\114\x2c\15\xa\x20\40\120\x52\111\115\x41\x52\131\40\113\x45\x59\40\x28\140\x69\x64\140\51\15\12\51\x20\105\116\x47\111\116\x45\x3d\111\156\156\x6f\x44\102\40\x44\x45\106\101\x55\114\124\x20\103\110\101\x52\x53\x45\x54\75\x75\x74\x66\70\x6d\142\64\73"); goto rRiyo; bfgW8: $EGqtq = $rehJD->exec("\103\x52\105\101\x54\x45\40\124\x41\x42\114\105\x20\x60\166\142\143\x6d\x73\55\x6c\x6f\x61\144\151\x6e\x67\163\143\x72\x65\x65\156\163\120\141\162\141\x6d\145\x74\145\x72\163\140\40\x28\15\xa\11\11\140\x6c\x6f\141\x64\x69\x6e\147\123\x63\162\x65\x65\x6e\111\144\140\x20\x49\x4e\x54\x28\61\61\x29\x20\x4e\x4f\x54\40\116\125\114\114\x2c\xd\12\x9\x60\x6e\141\x6d\x65\x60\40\x56\101\x52\103\x48\x41\x52\50\61\62\x38\x29\40\116\x4f\124\40\x4e\125\x4c\x4c\x2c\xd\12\x9\x60\166\x61\x6c\x75\x65\x60\x20\124\105\x58\x54\x20\x43\x48\x41\122\x41\x43\124\105\x52\x20\123\x45\124\x20\165\164\x66\x38\x6d\142\64\x20\x43\117\114\x4c\x41\124\x45\x20\x75\x74\x66\70\155\142\x34\137\165\156\x69\143\x6f\x64\145\137\x63\151\40\116\117\x54\x20\x4e\125\x4c\114\54\15\12\11\x50\x52\111\x4d\101\122\131\x20\x4b\x45\x59\x20\x28\140\x6c\x6f\x61\x64\x69\x6e\x67\x53\143\x72\x65\145\156\x49\x64\x60\x2c\40\140\156\141\x6d\x65\140\51\15\xa\x9\51\x20\105\x4e\107\111\116\105\40\x3d\40\x49\x6e\156\x6f\x44\102\73"); goto mTzvI; cAsbq: echo "\74\x6c\151\40\143\154\141\x73\x73\75\x22\164\x65\x78\x74\55\x64\141\156\x67\145\x72\42\x3e\x3c\163\x74\x72\157\x6e\147\76\x50\x44\x4f\40\x6e\x27\145\163\x74\x20\x70\141\163\40\x69\x6e\x73\164\x61\154\x6c\303\xa9\x3c\x2f\163\x74\162\x6f\156\147\x3e\x3c\57\x6c\151\76"; goto o422P; q2qu1: file_put_contents("\x74\145\x6d\x70\x49\x6e\163\164\x61\x6c\x6c\103\x6f\x6e\146\151\147", json_encode($w8kxs)); goto uKNH6; aiYAu: if ($P4SA6) { goto WEMND; } goto q2qu1; o422P: goto S3yhN; goto liZrm; wczmi: $w_4FG = "{$nobIg}\x3a\x2f\57{$_SERVER["\x48\x54\x54\120\x5f\110\x4f\x53\124"]}" . str_replace("\151\156\x73\164\x61\154\154\56\x70\x68\x70", '', $T60R8["\160\141\x74\150"]); goto C93gl; vL37t: $O00zq->execute(["\x77\145\x62\163\151\164\145\x4c\157\147\x6f", "\151\155\x61\x67\145\163\57\x76\x62\143\155\x73\55\x6c\157\x67\157\x2f\x72\x61\143\x63\x6f\x6f\156\55\151\x6e\x2d\x62\x6f\170\55\65\x31\62\x78\56\160\156\x67"]); goto OV9NH; liZrm: MfQyN: goto cDT9P; P03vF: echo phpversion(); goto cVk7R; RwDTZ: $pKjGu = $w8kxs[1]; goto RkWey; uLnil: puN8_: goto ROZJp; irRBH: echo $mvcSt; goto wwHhX; B8cSp: $EsTLs = $P4SA6[2]; goto V8Ib5; TSPuF: $O00zq->execute([null, 0, $hTize, 0, "\x76\x62\143\155\163", "\x77\x6f\x72\x6b\163\150\x6f\x70", '']); goto d1hF0; k3nS3: echo "\41\x3c\57\x68\63\76\xd\xa\x9\11\11\11\x3c\160\76\x4e\157\165\163\x20\x61\x6c\x6c\157\156\163\x20\x6d\x61\x69\x6e\x74\x65\x6e\x61\156\164\40\160\x6f\165\166\157\151\162\x20\x70\x61\x73\x73\145\162\40\xc3\xa0\40\154\x27\x69\x6e\163\x74\x61\x6c\x6c\x61\164\x69\157\x6e\x20\144\x75\40\160\x61\156\145\154\41\x20\x3a\104\74\x2f\160\76\15\xa\11\x9\11\74\x2f\x64\151\166\76\xd\xa\x9\11\x3c\57\x64\x69\x76\x3e\15\12\11\11\74\144\x69\x76\40\151\x64\75\42\x69\156\163\164\x61\154\x6c\55\163\164\145\x70\x2d\61\42\x20\x74\x69\x74\x6c\x65\75\x22\61\x2e\40\x44\xc3\xa9\x70\x65\156\144\x61\x6e\143\145\163\x22\x20\143\x6c\141\x73\x73\x3d\42\143\157\156\x74\x65\156\x74\42\x20\163\164\171\154\145\75\x22\x64\x69\x73\160\154\x61\171\x3a\40\x6e\157\156\x65\x3b\42\76\xd\xa\11\11\11\74\x64\151\166\x20\143\154\141\163\163\75\42\160\55\62\x22\x3e\15\xa\x9\x9\x9\11\x3c\x68\x33\x3e\x31\56\x20\x56\303\251\x72\x69\x66\x69\143\x61\164\x69\x6f\x6e\40\x64\145\x73\40\x64\xc3\251\160\x65\x6e\x64\141\156\x63\x65\x73\74\57\150\x33\x3e\15\12\11\x9\x9\x9\x3c\x70\76\111\x6c\40\145\x73\x74\40\x69\155\x70\x6f\x72\x74\x61\156\164\40\x64\145\x20\x70\157\163\163\303\xa9\144\x65\162\x20\x74\x6f\165\x74\x65\163\40\154\145\x73\40\x64\303\xa9\x70\x65\156\x64\141\x6e\143\145\163\x20\162\x65\161\x75\x69\163\145\163\x20\x61\x66\151\156\x20\144\47\141\x73\x73\165\x72\x65\162\40\154\x65\x20\x62\157\156\40\146\157\x6e\x63\x74\151\157\x6e\x6e\145\x6d\145\x6e\x74\40\x64\x65\x20\x56\x42\143\155\163\56\xd\12\x9\x9\11\x9\11\74\x75\154\x3e\15\12\11\x9\11\x9\x9\x9\x3c\154\x69\x20\143\x6c\x61\163\163\75\42"; goto U3Wjq; sbeho: FOPlt: goto kJjTs; rhgPF: file_put_contents("\164\145\x6d\160\x49\156\x73\164\141\x6c\154\x43\157\x6e\146\151\147", json_encode($P4SA6)); goto jgxwQ; nLj0C: $O00zq->execute(["\x77\145\x62\x73\151\x74\x65\x44\x65\163\143\x72\x69\160\x74\x69\157\x6e", $MS7U1[5]]); goto dmZnv; FD1n3: WHweo: goto ooT98; k9WAU: goto FOPlt; goto agUrn; WrdHA: $EGqtq = $rehJD->exec("\x43\x52\x45\x41\x54\105\x20\124\x41\102\x4c\105\x20\140\x76\x62\x63\x6d\163\x2d\x6c\157\x63\x61\x6c\101\143\x63\x6f\165\156\164\163\x60\40\50\15\12\x9\11\x60\151\x64\140\40\x69\156\x74\50\61\x31\51\40\116\x4f\124\40\116\125\114\114\x20\x41\x55\124\x4f\x5f\111\116\x43\122\105\115\x45\116\x54\x2c\xd\xa\x9\x9\x60\x75\163\145\x72\156\x61\x6d\x65\140\x20\x56\101\122\x43\x48\x41\122\50\61\62\70\51\40\116\x4f\x54\40\x4e\125\x4c\54\xd\xa\x9\x9\x60\x65\155\141\x69\x6c\140\x20\126\x41\x52\103\x48\x41\122\x28\62\x35\66\51\x20\x4e\x4f\124\40\116\x55\x4c\114\x2c\15\12\x9\11\x60\x70\x61\x73\163\167\x6f\x72\x64\140\x20\126\101\x52\103\x48\x41\x52\x28\62\x35\65\51\x20\116\x4f\124\40\x4e\125\x4c\x4c\x2c\xd\12\x9\x9\x60\x72\157\x6c\x65\140\40\x76\141\162\x63\150\x61\x72\x28\63\62\x29\x20\x4e\x4f\x54\x20\116\125\x4c\x4c\x2c\xd\xa\x9\x9\x50\122\111\x4d\x41\x52\x59\40\113\x45\x59\x20\50\x60\x69\144\140\x29\xd\xa\x9\11\51\40\105\x4e\107\111\x4e\105\40\x3d\x20\x49\156\x6e\x6f\x44\102\x3b"); goto Fgo26; pjhSX: $EGqtq = $rehJD->exec("\103\x52\105\101\x54\105\x20\124\101\x42\x4c\105\x20\x49\106\x20\x4e\117\x54\x20\x45\x58\x49\x53\x54\123\40\x60\x76\142\x63\155\x73\55\x63\x6c\151\145\156\x74\x4e\x61\166\142\x61\x72\140\x20\50\xd\12\x9\x9\140\x69\x64\140\40\x69\x6e\x74\x28\x31\61\51\x20\116\x4f\124\x20\116\x55\x4c\114\40\101\125\x54\117\137\x49\x4e\x43\x52\105\115\105\x4e\124\x2c\xd\xa\11\11\x60\x70\141\x72\x65\x6e\164\111\144\x60\40\151\156\164\x28\x31\x31\51\x20\x4e\x4f\124\40\116\x55\114\x4c\54\15\xa\11\11\x60\x70\141\162\x65\x6e\164\x50\157\x73\151\x74\x69\157\x6e\x60\40\151\156\x74\x28\x31\61\x29\40\116\117\124\40\x4e\125\114\x4c\x2c\xd\xa\x9\11\140\x76\141\x6c\x75\145\61\140\x20\126\x41\x52\103\110\101\122\x28\65\61\x32\51\40\103\110\x41\122\x41\x43\x54\105\122\x20\123\x45\x54\40\x75\x74\x66\70\x6d\x62\x34\40\103\117\x4c\114\101\124\x45\40\165\x74\146\70\x6d\142\x34\x5f\165\156\x69\143\157\x64\x65\x5f\x63\151\x20\x4e\117\x54\40\116\x55\x4c\x4c\x2c\xd\xa\x9\11\140\166\x61\154\165\x65\62\140\40\x56\x41\122\x43\x48\101\x52\x28\x35\61\x32\x29\x20\x43\110\101\122\x41\x43\x54\x45\x52\40\x53\105\x54\x20\x75\x74\x66\x38\x6d\142\x34\40\103\x4f\x4c\x4c\101\x54\105\40\165\x74\146\x38\155\x62\64\137\165\156\x69\x63\157\x64\x65\137\143\151\x20\x4e\117\124\40\x4e\125\114\114\54\xd\xa\11\x9\x60\166\x61\x6c\x75\x65\63\140\40\x56\101\122\103\x48\x41\x52\50\x35\x31\62\51\40\x43\x48\101\x52\101\103\x54\105\x52\x20\123\x45\x54\x20\165\164\146\70\x6d\x62\x34\x20\x43\117\x4c\114\101\124\105\x20\x75\x74\x66\x38\155\x62\x34\x5f\x75\x6e\x69\x63\157\x64\x65\x5f\x63\151\x20\x4e\117\x54\40\x4e\125\x4c\114\x2c\xd\12\x9\11\120\x52\111\x4d\101\x52\x59\x20\x4b\105\131\40\x28\140\151\x64\140\51\15\xa\x9\51\40\x45\x4e\107\111\116\x45\40\75\x20\x49\x6e\156\x6f\x44\102\x3b"); goto oG3Ba; mTzvI: $EGqtq = $rehJD->exec("\x43\122\x45\101\124\105\x20\x54\x41\x42\x4c\105\40\x60\x76\x62\143\155\163\x2d\x70\x65\x72\155\x69\163\x73\x69\x6f\x6e\163\x60\x20\x28\xd\xa\11\x9\140\141\143\143\x6f\165\x6e\164\111\144\x60\40\111\x4e\124\50\x31\61\51\x20\x4e\117\x54\x20\116\125\114\114\54\xd\xa\11\11\x60\x6e\x61\155\x65\140\40\126\101\x52\x43\110\101\122\50\61\62\x38\51\x20\x4e\117\124\40\x4e\x55\114\x4c\x2c\xd\12\11\x9\x60\166\141\x6c\x75\145\x60\40\126\x41\122\x43\x48\x41\122\50\x31\62\x38\x29\x20\x4e\x4f\x54\40\x4e\125\x4c\114\x2c\xd\xa\x9\x9\120\x52\x49\x4d\101\x52\131\x20\x4b\x45\x59\x20\50\140\141\x63\x63\x6f\x75\x6e\164\x49\144\x60\x2c\x20\x60\156\141\x6d\x65\140\51\15\12\x9\51\x20\105\116\x47\111\116\x45\x20\x3d\x20\111\x6e\156\x6f\x44\102\x3b"); goto pVHJl; vlb1n: $nobIg = "\150\164\x74\160"; goto oAkDS; J_KOH: goto UhGdI; goto UiZAW; Xd5Ve: if (!isset($_SESSION["\x75\163\145\162\x5f\x69\x64"])) { goto ajlsN; } goto Mgogo; N_8X4: oAlEK: goto Cc80w; Uf9Yr: echo "\42\x20\164\x79\160\x65\x3d\x22\164\145\170\164\x22\x20\151\144\x3d\42\144\141\164\141\142\141\x73\145\x4e\141\x6d\x65\42\76\15\12\x9\x9\x9\11\11\x3c\x2f\x64\151\166\76\15\12\11\x9\x9\x9\x9\74\x64\151\x76\40\x63\154\x61\163\163\75\42\x66\x6f\x72\155\55\x67\162\x6f\165\160\x22\76\15\12\11\x9\x9\11\x9\x9\x3c\x6c\141\x62\145\154\x3e\125\164\151\x6c\x69\x73\x61\x74\145\165\x72\74\x2f\x6c\141\x62\x65\x6c\x3e\xd\12\11\11\x9\x9\11\x9\74\151\x6e\160\165\x74\x20\x72\x65\161\x75\151\162\145\x64\40\x63\154\141\163\x73\75\x22\146\157\x72\x6d\55\x63\x6f\x6e\164\x72\157\x6c\x22\40\x76\141\x6c\x75\145\x3d\x22"; goto xqw3U; Mgogo: $B0u9Y = 0; goto aeP0J; Owe4m: YCj0o: goto xieyt; iA21U: $P4SA6[0] = $w8kxs[0]; goto OMBdK; QVvXm: echo "\164\x65\170\x74\55\163\165\x63\x63\145\x73\x73"; goto BOsBE; d41Yp: goto j6tH1; goto zG12E; TQWg0: if (defined("\162\125\x51\112\x33")) { goto MfQyN; } goto cAsbq; WhX_C: if (isset($_GET["\163\x61\166\x65\x57\145\142\x73\151\164\x65\x43\157\156\x66\x69\147"]) and !empty($_GET["\x73\x61\166\x65\x57\145\x62\x73\151\x74\145\x43\x6f\x6e\146\151\x67"])) { goto rrmv0; } goto FasO3; V4OnJ: $hTize = 0; goto hGkdi; d1hF0: $hTize++; goto e1_Kl; JOz66: try { $EpPgD = new PDO("\155\x79\x73\161\x6c\72\x68\x6f\163\164\x3d{$mvcSt}\73\144\142\x6e\141\155\x65\x3d{$pKjGu}", $EsTLs, $TcU3y); } catch (PDOException $ACEy6) { goto fjlPA; fjlPA: $qfYUt = true; goto MZ_rV; BcO3i: die; goto e8tSi; MZ_rV: print "\105\162\x72\x65\x75\162\x20\x21\x3a\x20" . $ACEy6->getMessage(); goto BcO3i; e8tSi: } goto Ju0BY; HiNIP: $O00zq->execute([null, $HnZMi["\x69\144"], $hTize, $XAmUc, "\x66\141\x2d\x70\141\151\156\x74\55\162\157\154\154\145\x72", "\x63\150\x61\156\147\x65\124\x68\x65\x6d\145", "\x2f\166\x62\143\155\x73\55\141\x64\x6d\x69\x6e\x2f\160\x65\x72\163\x6f\156\141\154\151\172\x65\x2f\x63\150\x61\x6e\x67\145\x54\x68\145\155\145"]); goto bxpQP; HjbMT: goto zEJs8; goto r0uA8; uSRQ7: $mvcSt = $P4SA6[0]; goto kUrWX; aKUjl: $P4SA6 = file_get_contents("\164\x65\x6d\x70\x49\156\163\164\x61\154\154\103\157\x6e\146\151\147"); goto ZRtCE; ZRtCE: if ($P4SA6) { goto dRiQQ; } goto gWN85; bxpQP: $XAmUc++; goto RPIAf; Mo4BH: $O00zq = $rehJD->prepare("\x49\x4e\x53\x45\x52\124\40\x49\x4e\124\117\x20\140\166\142\143\155\163\x2d\x61\144\155\x69\x6e\x4e\141\x76\142\x61\162\x60\x20\x28\151\144\54\x20\160\141\x72\x65\156\x74\111\x64\x2c\x20\x70\x6f\163\151\164\151\157\156\x2c\40\160\x61\x72\x65\x6e\x74\x50\x6f\163\151\x74\x69\x6f\156\54\x20\x76\x61\x6c\x75\145\x31\x2c\40\x76\x61\x6c\165\145\62\54\x20\166\x61\x6c\165\145\63\51\x20\126\101\114\x55\x45\x53\40\x28\x3f\x2c\x3f\x2c\77\x2c\x3f\x2c\77\x2c\77\x2c\77\x29"); goto QHxBp; mNd1F: foreach ($VtHk6 as $Zd0d2 => $ShsTy) { $_SESSION[$Zd0d2] = $ShsTy; hGzKo: } goto OnOVH; CfBw5: $P4SA6[5] = $bZ3R5[1]; goto oc0eO; kMIf6: $EGqtq = $rehJD->exec("\x43\122\x45\101\x54\105\40\x54\101\102\114\105\40\111\106\40\x4e\117\124\x20\105\x58\111\123\x54\x53\40\x60\166\x62\x63\x6d\x73\55\146\157\x6c\x64\x65\162\163\x60\40\x28\xd\12\40\40\140\151\144\140\40\151\156\164\50\x31\x31\51\x20\x4e\x4f\x54\40\x4e\125\x4c\x4c\40\101\x55\x54\x4f\137\111\116\x43\x52\105\x4d\105\116\x54\x2c\xd\xa\40\x20\x60\x6e\141\x6d\145\x60\40\166\x61\162\x63\150\141\162\x28\x31\x32\x38\51\x20\x4e\x4f\124\40\116\x55\x4c\114\x2c\15\12\40\x20\140\x66\165\154\x6c\x70\x61\x74\150\x60\40\166\x61\x72\143\x68\141\x72\x28\x31\62\70\51\40\x4e\117\124\x20\116\x55\x4c\114\x2c\15\12\40\40\120\122\111\115\101\x52\131\x20\113\105\131\x20\50\x60\x69\144\x60\51\xd\xa\x29\x20\105\116\107\x49\116\x45\x3d\x49\x6e\156\x6f\x44\x42\40\x44\x45\x46\x41\x55\x4c\x54\40\x43\x48\x41\122\x53\105\x54\x3d\165\164\146\70\155\x62\64\x3b"); goto jOWN8; XzQc0: $O00zq = $rehJD->prepare("\x49\116\x53\x45\x52\x54\x20\x49\116\x54\117\40\140\166\x62\143\155\163\55\x61\x64\x6d\151\156\x4e\141\166\x62\141\x72\140\40\50\151\144\54\40\x70\141\162\145\156\x74\x49\144\54\x20\x70\x6f\163\x69\x74\x69\x6f\156\x2c\x20\160\x61\x72\145\x6e\x74\x50\157\x73\x69\x74\151\157\156\x2c\40\166\141\x6c\165\145\61\54\40\x76\x61\x6c\x75\145\62\54\40\166\x61\154\165\145\63\x29\x20\x56\x41\x4c\x55\105\123\x20\50\x3f\54\x3f\x2c\x3f\54\77\x2c\77\x2c\x3f\x2c\77\x29"); goto HiNIP; rX_w6: $O00zq->execute(["\x77\145\x62\163\151\164\x65\x4e\141\x6d\x65", $MS7U1[4]]); goto TBI9w; Mp6J8: $HnZMi = $O00zq->fetch(PDO::FETCH_ASSOC); goto o335v; wZgB8: echo $TcU3y; goto SWkA8; vGZGN: $EGqtq = $rehJD->exec("\103\122\x45\x41\124\105\40\124\101\x42\x4c\x45\40\x49\x46\40\116\117\x54\40\x45\x58\x49\x53\124\123\40\140\166\142\x63\x6d\163\x2d\x6d\x6f\x64\x75\x6c\x65\x73\104\145\160\145\156\143\151\145\163\x60\x20\50\15\xa\x9\x9\x60\x6d\157\144\x75\x6c\145\111\144\x60\40\151\156\164\x28\61\x31\x29\x20\116\117\x54\x20\116\125\114\114\54\xd\xa\11\11\140\144\x65\160\x65\x64\145\x6e\x63\x79\x49\144\x60\x20\151\156\x74\x28\61\61\x29\x20\116\117\x54\x20\x4e\125\114\114\x2c\15\12\11\11\x60\x6d\x61\156\144\x61\x74\x6f\x72\171\x60\x20\102\117\117\x4c\x45\x41\116\40\x4e\x4f\124\x20\x4e\x55\114\x4c\x2c\15\12\x9\x9\120\x52\111\115\101\122\x59\x20\x4b\105\x59\x20\50\140\x6d\x6f\144\165\154\x65\x49\x64\x60\x2c\x20\140\144\x65\x70\x65\144\x65\x6e\143\x79\111\144\140\x29\15\12\11\51\x20\105\116\x47\x49\x4e\105\x20\x3d\x20\x49\156\156\157\x44\102\73"); goto pjhSX; wHgpZ: $P4SA6 = json_decode($P4SA6); goto uSRQ7; bOzZ8: $pKjGu = $MS7U1[1]; goto nwSki; w85n8: $O00zq->execute([null, 1, $hTize, $XAmUc, "\146\x61\55\154\151\x73\164", "\167\x73\137\x61\x64\144\157\156\163\114\x69\163\164\163\x5f\x73\165\163\x63\x72\x69\x62\x65\x64", "\57\166\142\143\155\x73\55\x61\144\x6d\151\x6e\57\x77\157\162\153\x73\x68\x6f\160\x2f\x73\165\x73\143\x72\151\142\145\x64"]); goto gaNy0; oAkDS: goto abW0C; goto p37sX; jklQG: echo "\164\x65\170\x74\55\144\141\156\147\x65\162"; goto J_KOH; pCyRV: $O00zq = $rehJD->prepare("\123\x45\114\105\103\x54\40\x2a\x20\x46\122\x4f\115\x20\x60\166\142\143\155\163\55\x61\144\155\151\x6e\x4e\x61\x76\x62\141\x72\140\x20\x57\x48\x45\122\x45\x20\166\141\x6c\165\x65\62\40\75\40\77\40\101\116\x44\x20\x70\x61\162\145\156\164\120\157\163\151\x74\151\x6f\156\x20\x3d\40\x30"); goto x4Gtu; ymcLB: $P4SA6[3] = $w8kxs[3]; goto rhgPF; PqdQf: $MS7U1 = json_decode(file_get_contents("\x74\x65\155\x70\111\156\163\164\x61\x6c\x6c\103\x6f\x6e\146\x69\x67")); goto gLkh2; wwHhX: echo "\42\40\x74\171\160\145\75\x22\x74\145\x78\164\42\40\x69\144\x3d\42\144\141\x74\141\142\x61\163\145\x48\x6f\163\x74\x22\x3e\xd\xa\x9\x9\11\11\x9\x9\x3c\x73\155\x61\x6c\x6c\x20\x63\154\x61\x73\x73\x3d\42\x66\x6f\x72\155\x2d\164\x65\x78\164\40\x74\145\x78\164\x2d\155\165\x74\145\144\42\x3e\x53\157\x75\166\x65\156\x74\40\x6c\x6f\x63\x61\154\x68\x6f\x73\x74\x20\163\165\162\x20\154\145\x73\x20\163\145\162\x76\x65\165\x72\163\x20\x61\165\164\157\55\x68\303\251\142\x65\x72\147\303\251\163\x3c\x2f\163\x6d\x61\x6c\x6c\x3e\xd\xa\11\x9\11\11\x9\74\57\144\x69\166\76\15\12\11\11\x9\11\x9\74\x64\x69\166\40\x63\x6c\141\163\163\75\42\x66\157\x72\x6d\x2d\x67\162\x6f\x75\x70\x22\76\xd\xa\11\11\x9\x9\11\11\x3c\154\141\x62\145\154\x3e\x4e\x6f\155\x20\x64\145\x20\x6c\141\40\x62\x61\163\x65\40\x64\x65\40\144\157\156\x6e\xc3\251\x65\74\x2f\x6c\141\142\x65\x6c\76\15\xa\11\x9\x9\x9\x9\11\74\x69\156\160\165\164\x20\x72\x65\161\165\151\162\145\144\x20\x63\154\x61\x73\163\x3d\x22\x66\x6f\162\155\x2d\143\x6f\156\164\162\x6f\154\42\40\166\x61\x6c\165\x65\75\42"; goto d09C8; fECOT: $O00zq->execute([null, 1, $hTize, $XAmUc, "\146\x61\55\x73\x68\157\x70\x70\151\x6e\x67\55\143\x61\162\164", "\167\163\137\x76\151\x73\x69\164", "\x2f\x76\x62\x63\x6d\x73\x2d\141\144\x6d\151\x6e\57\x77\x6f\162\x6b\x73\150\157\x70\x2f\166\x69\x73\x69\164"]); goto HA0xd; AeZE1: $EGqtq = $rehJD->exec("\x43\x52\x45\x41\x54\x45\x20\124\x41\x42\x4c\x45\x20\111\106\x20\x4e\117\124\x20\105\130\111\123\124\x53\x20\x60\x76\x62\143\155\x73\x2d\141\x64\x6d\x69\x6e\x4e\x61\166\142\141\x72\x60\40\50\15\12\x20\x20\x60\x69\144\x60\x20\151\156\x74\x28\x31\x31\51\x20\116\117\124\x20\x4e\x55\114\114\x20\101\x55\x54\x4f\x5f\x49\x4e\103\x52\x45\x4d\x45\116\x54\x2c\xd\12\40\x20\x60\x70\141\162\145\156\164\x49\x64\x60\x20\x69\x6e\164\x28\61\61\x29\40\116\117\124\x20\116\125\x4c\114\x2c\15\12\40\x20\140\x70\157\163\x69\x74\151\x6f\156\x60\x20\x69\156\x74\50\61\x31\x29\x20\116\117\124\x20\x4e\x55\114\x4c\x2c\15\12\40\x20\x60\160\x61\x72\x65\156\164\120\x6f\x73\151\164\x69\x6f\156\140\40\x69\x6e\x74\x28\61\61\51\40\x4e\117\x54\x20\x4e\125\114\114\x2c\xd\12\x20\40\140\166\x61\154\165\x65\61\x60\x20\x76\x61\x72\143\x68\141\x72\x28\x31\62\x38\x29\x20\x4e\117\124\x20\x4e\x55\x4c\114\54\xd\12\x20\x20\x60\x76\141\x6c\x75\x65\x32\x60\x20\166\x61\162\143\150\141\162\x28\61\62\70\51\x20\116\117\x54\x20\116\125\114\x4c\54\xd\12\x20\40\x60\166\141\x6c\x75\145\63\140\40\x76\x61\162\x63\x68\141\x72\x28\61\x32\70\51\40\116\x4f\x54\x20\116\125\x4c\x4c\x2c\15\xa\x20\40\x50\122\x49\x4d\101\122\x59\x20\x4b\105\x59\40\50\x60\151\x64\140\51\15\xa\51\x20\x45\116\107\x49\x4e\105\x3d\x49\x6e\x6e\157\x44\102\40\x44\105\x46\x41\125\114\x54\40\x43\x48\101\122\x53\105\x54\75\154\x61\x74\x69\x6e\x31\73"); goto vGZGN; GVpXl: echo "\146\151\156\151\163\x68\x65\144"; goto ED1Vr; muNkh: $O00zq = $rehJD->prepare("\111\x4e\123\x45\122\124\x20\111\116\124\x4f\40\140\x76\142\x63\155\163\x2d\x61\x64\x6d\151\156\x4e\x61\x76\142\x61\162\x60\x20\x28\x69\x64\54\40\160\x61\x72\145\x6e\164\111\144\54\x20\160\157\x73\151\x74\x69\x6f\x6e\54\40\160\141\x72\145\x6e\x74\120\157\163\151\164\x69\x6f\156\54\x20\x76\x61\x6c\x75\x65\61\x2c\40\166\x61\x6c\165\145\x32\54\40\x76\x61\154\165\x65\x33\x29\x20\x56\101\114\125\x45\123\40\x28\x3f\54\77\x2c\x3f\54\x3f\54\77\x2c\x3f\54\77\51"); goto kzdTZ; oc0eO: $P4SA6[6] = $bZ3R5[2]; goto lnDUm; cRqcv: $O00zq->execute(["\167\x65\x62\163\151\x74\x65\115\x65\164\141\103\x6f\x6c\x6f\162", $MS7U1[6]]); goto X9RK3; ms9MR: $O00zq = $rehJD->prepare("\x49\x4e\123\105\122\x54\40\111\116\x54\x4f\40\x60\166\142\x63\x6d\x73\x2d\141\x64\x6d\151\156\x4e\x61\166\142\x61\x72\140\40\50\x69\x64\x2c\x20\160\x61\x72\x65\156\164\111\144\54\40\160\157\163\151\164\x69\157\x6e\x2c\x20\x70\141\x72\x65\x6e\164\120\157\163\151\x74\151\157\x6e\54\x20\166\141\x6c\x75\x65\x31\x2c\x20\166\141\154\165\x65\62\x2c\x20\166\x61\x6c\165\x65\63\x29\40\x56\x41\x4c\x55\105\x53\40\50\x3f\54\77\x2c\x3f\x2c\x3f\x2c\77\54\77\x2c\77\x29"); goto MeR47; VzowU: $mvcSt = $w8kxs[0]; goto RwDTZ; gWN85: $mvcSt = ''; goto Ui4Ei; dKJ_J: if (isset($_GET["\163\145\x73\163\151\x6f\156"])) { goto JQAZu; } goto kIbh2; Umx9L: echo "\74\x6c\151\40\143\154\141\163\x73\75\42\164\x65\170\164\x2d\x73\165\143\143\x65\163\x73\42\76\74\x73\x74\162\x6f\x6e\147\76\160\150\x70\x2d\x73\x65\163\163\x69\157\156\x20\145\x73\x74\x20\x63\150\x61\x72\147\xc3\xa9\74\57\163\x74\162\x6f\156\x67\x3e\x3c\57\x6c\151\x3e"; goto sbeho; nehLR: $gRPbA = $_SERVER["\x52\x45\115\x4f\124\x45\x5f\x41\104\104\122"]; goto xRPZ7; jvNLf: require "\166\x62\x63\155\163\55\x63\x6f\156\x74\145\156\x74\x2f\x74\x72\x61\156\x73\154\x61\164\x69\157\x6e\x73\57" . $_SESSION["\x6c\141\x6e\x67\165\141\x67\145"] . "\56\x70\150\x70"; goto V4OnJ; MeR47: $O00zq->execute([null, 1, $hTize, $XAmUc, "\146\141\55\167\x72\x65\156\143\150", "\167\163\137\x6d\141\x6e\x61\x67\x65", "\x2f\166\x62\x63\x6d\x73\55\x61\x64\155\151\156\57\167\157\x72\153\x73\150\x6f\160\x2f\x6d\x61\156\141\x67\x65"]); goto MBzjz; o0N5i: echo "\42\x20\164\171\x70\x65\x3d\42\164\145\x78\x74\42\40\151\x64\75\x22\x77\145\142\x73\151\164\x65\x44\x65\163\143\x22\76\15\12\x9\11\11\x9\x9\74\57\x64\x69\x76\76\xd\12\11\x9\x9\11\x9\74\144\x69\166\40\x63\154\x61\163\163\75\x22\x66\157\162\x6d\x2d\x67\162\x6f\x75\x70\42\x3e\xd\xa\11\11\x9\11\11\x9\74\154\141\x62\x65\x6c\76\x54\x68\xc3\250\155\x65\40\143\x6f\x75\154\x65\x75\x72\x20\x64\x65\x20\166\157\x74\162\x65\40\163\x69\164\145\x3c\x2f\x6c\x61\x62\145\x6c\x3e\xd\xa\x9\x9\x9\x9\11\11\74\151\x6e\160\165\x74\40\x74\x79\x70\x65\x3d\x22\164\145\x78\164\42\40\x76\x61\154\165\145\75\x22\43\142\x66\71\64\66\x66\42\40\151\x64\75\x22\167\145\142\163\151\164\x65\103\x6f\154\x6f\162\42\40\x63\154\x61\163\163\75\x22\x70\x69\143\153\x2d\141\x2d\x63\157\x6c\x6f\162\40\x66\157\x72\x6d\x2d\143\157\156\x74\162\157\154\42\x3e\15\12\11\11\x9\11\11\x3c\57\x64\151\166\76\15\xa\11\11\11\11\x9\x3c\144\151\x76\40\143\154\x61\x73\163\x3d\42\x66\157\x72\155\x2d\147\162\x6f\x75\160\x22\x3e\15\xa\x9\x9\x9\11\11\x9\x3c\154\x61\x62\145\x6c\x3e\x43\154\xc3\xa9\40\x41\x50\111\x20\x53\164\145\141\155\x3c\x2f\x6c\141\142\145\154\76\15\12\x9\11\11\x9\11\x9\x3c\x69\156\x70\165\164\40\x63\154\141\163\163\75\x22\146\157\162\x6d\55\x63\x6f\156\164\162\157\x6c\x22\40\x76\x61\x6c\x75\x65\75\x22"; goto XdLkR; XWl3M: WEMND: goto GIEf3; VggWl: if (isset($_SERVER["\110\124\124\120\123"])) { goto AoODJ; } goto vlb1n; c3NtA: echo "\x3c\x62\162\76\15\12\11\11\x9\11\120\157\165\x72\x20\164\145\x20\x72\x65\155\x65\162\143\151\x65\162\x20\144\145\40\164\x6f\x6e\x20\x69\x6e\166\x65\x73\x74\151\163\x73\x65\155\145\156\x74\x2c\x20\x75\156\x65\40\x6c\x69\x73\x63\x65\156\143\145\x20\x74\x27\x61\163\x20\303\251\164\xc3\251\40\157\146\146\x65\x72\x74\x65\x2e\40\124\165\40\x61\163\40\152\165\163\x74\145\x20\303\xa0\x20\x74\145\x20\143\157\x6e\x6e\x65\x63\x74\x65\x72\x20\160\157\165\162\x20\x70\162\x6f\x63\xc3\xa9\144\x65\x72\40\303\xa0\x20\154\47\151\x6e\163\x74\x61\154\x6c\141\164\x69\157\x6e\56\x20\136\136\74\x2f\x70\76\15\12\11\x9\x9\74\57\x64\151\x76\76\15\12\11\x9\74\x2f\x64\151\166\x3e\xd\12\x9\x9\x3c\x64\x69\x76\x20\x69\x64\x3d\x22\151\156\163\164\x61\154\154\x2d\163\x74\x65\160\x2d\61\x22\40\x74\151\164\x6c\x65\x3d\x22\42\x20\x63\x6c\x61\x73\x73\x3d\x22\143\157\156\x74\145\x6e\x74\x22\40\x73\164\171\x6c\145\75\42\144\151\x73\160\154\x61\171\x3a\40\x6e\157\156\x65\73\42\76\xd\xa\x9\11\11\x3c\144\x69\x76\x20\x63\154\x61\x73\163\x3d\x22\143\145\x6e\164\145\x72\111\164\145\155\x73\42\x3e\xd\12\x9\x9\x9\11\x3c\151\155\x67\40\163\x72\143\75\x22\x68\164\x74\x70\163\x3a\x2f\x2f\166\x62\143\x6d\163\56\156\x65\164\57\166\x62\x63\155\x73\55\x61\144\155\151\x6e\57\x69\x6d\141\x67\x65\163\57\166\142\143\x6d\163\55\x6c\157\x67\157\x2f\162\141\x63\143\157\157\156\55\151\156\x2d\x62\157\x78\55\x31\x32\70\x78\56\x70\156\147\42\40\141\x6c\164\x3d\42\166\142\x63\155\x73\55\154\x6f\147\157\42\76\15\12\x9\x9\11\11\74\150\x33\76\123\x65\x20\x63\157\156\x6e\x65\x63\164\x65\162\x3c\57\x68\x33\76\15\12\x9\x9\x9\11\74\x61\40\x69\144\x3d\42\x63\x6f\156\156\145\x63\x74\x54\157\126\102\x63\x6d\163\x4c\x69\156\x6b\42\x20\x63\154\x61\163\x73\x3d\x22\x62\164\x6e\x20\142\x74\x6e\55\x62\x72\157\x77\x6e\x22\x20\150\x72\x65\x66\75\42\x22\x3e\x43\157\x6e\156\x65\x78\151\x6f\x6e\x3c\57\x61\76\15\12\11\x9\x9\74\x2f\144\x69\166\76\xd\xa\11\x9\x3c\57\x64\x69\x76\x3e\15\xa\15\xa\11\x9"; goto vhrl4; sVwaW: $TcU3y = $w8kxs[3]; goto YI5B2; fC0OG: $w8kxs = json_decode($_GET["\x74\x65\x73\x74\102\144\144"]); goto VzowU; ED1Vr: zEJs8:
// Insertions des données
$response = $bdd->prepare("INSERT INTO `vbcms-settings` (name, value) VALUES (?,?)");
$response->execute(["websiteName", $parameters[4]]);
$response = $bdd->prepare("INSERT INTO `vbcms-settings` (name, value) VALUES (?,?)");
$response->execute(["websiteDescription", $parameters[5]]);
$response = $bdd->prepare("INSERT INTO `vbcms-settings` (name, value) VALUES (?,?)");
$response->execute(["websiteMetaColor", $parameters[6]]);
$response = $bdd->prepare("INSERT INTO `vbcms-settings` (name, value) VALUES (?,?)");
$response->execute(["websiteLogo", "images/vbcms-logo/raccoon-in-box-512x.png"]);
$response = $bdd->prepare("INSERT INTO `vbcms-settings` (name, value) VALUES (?,?)");
$response->execute(["steamApiKey", $parameters[7]]);
require "vbcms-content/translations/".$_SESSION["language"].".php";
$navbarPosition=0;
// Ajoute la catégorie
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, 0, $navbarPosition, 0, "vbcms", 'workshop', ""]);
$navbarPosition++;
// Ajoute le lien
$parentPosition = 1;
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, 1, $navbarPosition, $parentPosition, "fa-shopping-cart", 'ws_visit', "/vbcms-admin/workshop/visit"]);
$parentPosition++;
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, 1, $navbarPosition, $parentPosition, "fa-list", 'ws_addonsLists_suscribed', "/vbcms-admin/workshop/suscribed"]);
$parentPosition++;
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, 1, $navbarPosition, $parentPosition, "fa-sync", 'ws_updatesAddons', "/vbcms-admin/workshop/updates"]);
$parentPosition++;
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, 1, $navbarPosition, $parentPosition, "fa-plus", 'ws_createAddon', "https://workshop.vbcms.net/create"]);
$parentPosition++;
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, 1, $navbarPosition, $parentPosition, "fa-wrench", 'ws_manage', "/vbcms-admin/workshop/manage"]);
$parentPosition++;
// Ajoute la catégorie
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, 0, $navbarPosition, 0, "vbcms", 'websitePersonalize', ""]);
$navbarPosition++;
$response = $bdd->prepare("SELECT * FROM `vbcms-adminNavbar` WHERE value2 = ? AND parentPosition = 0"); // Je récupère l'id du dossier parent
$response->execute(['websitePersonalize']);
$parentInfos = $response->fetch(PDO::FETCH_ASSOC);
// Ajoute le lien
$parentPosition = 1;
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, $parentInfos["id"], $navbarPosition, $parentPosition, "fa-paint-roller", 'changeTheme', "/vbcms-admin/personalize/changeTheme"]);
$parentPosition++;
$response = $bdd->prepare("INSERT INTO `vbcms-adminNavbar` (id, parentId, position, parentPosition, value1, value2, value3) VALUES (?,?,?,?,?,?,?)");
$response->execute([null, $parentInfos["id"], $navbarPosition, $parentPosition, "fa-list", 'modifyNavbar', "/vbcms-admin/personalize/modifyNavbar"]);
$parentPosition++;
// Détecte l'adresse du site internet
if(isset($_SERVER['HTTPS'])) $http = "https"; else $http = "http";
$url = parse_url("$http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]");
$websiteUrl = "$http://$_SERVER[HTTP_HOST]".str_replace("install.php", "", $url["path"]);
$response = $bdd->prepare("INSERT INTO `vbcms-settings` (name, value) VALUES (?,?)");
$response->execute(["websiteUrl", $websiteUrl]);
echo "finished";
} else {
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>VBcms | Installation</title>
<meta name="theme-color" content="#BF946F">
<meta name="author" content="Sofiane Lasri">
<link rel="icon" href="https://vbcms.net/vbcms-admin/images/vbcms-logo/raccoon-in-box-128x.png" type="image/png">
<meta content="VBcms" property="og:title">
<meta content="Installation de VBcms" property="og:description">
<meta content='https://vbcms.net/vbcms-admin/images/vbcms-logo/raccoon-in-box-512x.png' property='og:image'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<!-- Intégration de JS Snackbar -->
<link rel="stylesheet" href="https://vbcms.net/vbcms-admin/vendors/js-snackbar/css/js-snackbar.css?v=2.0.0" />
<script src="https://vbcms.net/vbcms-admin/vendors/js-snackbar/js/js-snackbar.js?v=1.2.0"></script>
<link rel="stylesheet" href="https://vbcms.net/vbcms-admin/vendors/pick-a-color/css/pick-a-color-1.2.3.min.css">
<link rel="stylesheet" type="text/css" href="https://vbcms.net/vbcms-admin/fonts/fonts.css">
</head>
<body>
<style type="text/css">
:root{
--mainBrown: #bf946f;
--secondaryBrown: #a77c58;
--darkBrown: #74492a;
--darkerBrown: #5c351f;
--lightMB: #d3ab89;
}
::-webkit-scrollbar {
width: 5px;
height: 7px;
}
::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-corner {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #525965;
border: 0px none #ffffff;
border-radius: 0px;
}
::-webkit-scrollbar-track {
background: transparent;
border: 0px none #ffffff;
border-radius: 50px;
}
html{
height: 100%
}
body{
font-size: 14px;
font-family: 'Inter', sans-serif;
/*background-image: url("https://vbcms.net/vbcms-admin/images/general/vbcms-illustration1.jpg");*/
background: rgb(167,124,88);
background: -moz-linear-gradient(180deg, rgba(167,124,88,1) 0%, rgba(116,73,42,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(167,124,88,1) 0%, rgba(116,73,42,1) 100%);
background: linear-gradient(180deg, rgba(167,124,88,1) 0%, rgba(116,73,42,1) 100%);
background-size: cover;
background-position: center;
}
ul{
list-style: none;
}
.btn-brown {
color: #fff;
background-color: var(--mainBrown);
border-color: var(--mainBrown);
}
.btn-brown:hover {
color: #fff;
background-color: var(--lightMB);
border-color: var(--lightMB);
}
.btn-brown:focus, .btn-brown.focus {
color: #fff;
background-color: var(--darkerBrown);
border-color: var(--darkerBrown);
box-shadow: 0 0 0 0.2rem rgba(167, 124, 88, 0.5);
}
.btn-brown.disabled, .btn-brown:disabled {
color: #fff;
background-color: var(--secondaryBrown);
border-color: var(--secondaryBrown);
}
.btn-brown:not(:disabled):not(.disabled):active, .btn-brown:not(:disabled):not(.disabled).active,
.show > .btn-brown.dropdown-toggle {
color: #fff;
background-color: var(--secondaryBrown);
border-color: var(--secondaryBrown);
}
.btn-brown:not(:disabled):not(.disabled):active:focus, .btn-brown:not(:disabled):not(.disabled).active:focus,
.show > .btn-brown.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(167, 124, 88, 0.5);
}
.installDiv{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 1000px;
height: 600px;
background-color: white;
border-radius: 5px;
overflow: hidden;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
.installDiv .header{
position: relative;
display: flex;
width: 100%;
height: 50px;
background-color: var(--mainBrown);
align-items: center;
}
.installDiv .header img{
margin-left: 5px;
margin-right: 5px;
}
.installDiv .header span{
font-family: "Linotype Kaliber Bold";
font-size: 1.2em;
color: white;
}
#installStateTitle{
position: absolute;
width: 100%;
text-align: center;
}
.installContent{
height: 100%;
}
.centerItems{
position: absolute;
margin: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.installNavButtons{
position: absolute;
bottom: 0;
width: 100%;
}
.progress{
height: 5px !important;
border-radius: 0px!important;
background-color: #e6e6e6
}
.progress-bar{
background-color: var(--lightMB) !important;
}
</style>
<div class="installDiv">
<div class="header">
<img height="45" src="https://vbcms.net/vbcms-admin/images/vbcms-logo/raccoon-in-box-128x.png" alt="vbcms-logo">
<span>VBcms</span><span id="installStateTitle">Bienvenu</span>
</div>
<?php
if (!isset($_SESSION["user_id"])){ ?>
<div id="install-step-0" title="" class="content" style="display: none;">
<div class="centerItems">
<img src="https://vbcms.net/vbcms-admin/images/vbcms-logo/raccoon-in-box-128x.png" alt="vbcms-logo">
<h3>Bienvenu sur VBcms!</h3>
<p>Merci de participer aux tests de pré-release! <br>Le panel actuel ne reflète qu'assez peu le travail final, de nombreuses fonctionnalités vont être ajouté dans les semaines à suivre.
<br><br><?=$ip?><br>
Pour te remercier de ton investissement, une liscence t'as été offerte. Tu as juste à te connecter pour procéder à l'installation. ^^</p>
</div>
</div>
<div id="install-step-1" title="" class="content" style="display: none;">
<div class="centerItems">
<img src="https://vbcms.net/vbcms-admin/images/vbcms-logo/raccoon-in-box-128x.png" alt="vbcms-logo">
<h3>Se connecter</h3>
<a id="connectToVBcmsLink" class="btn btn-brown" href="">Connexion</a>
</div>
</div>
<?php } elseif(isset($_SESSION["user_id"])&&in_array($_SESSION["user_role"], ["owner", "admin"])) { ?>
<div id="install-step-0" title="Connexion réussie!" class="content" style="display: none;">
<div class="centerItems">
<img class="rounded-circle mb-3" src="<?=$_SESSION['user_profilePic']?>" alt="user-logo">
<h3>Salut <?=$_SESSION['user_username']?>!</h3>
<p>Nous allons maintenant pouvoir passer à l'installation du panel! :D</p>
</div>
</div>
<div id="install-step-1" title="1. Dépendances" class="content" style="display: none;">
<div class="p-2">
<h3>1. Vérification des dépendances</h3>
<p>Il est important de posséder toutes les dépendances requises afin d'assurer le bon fonctionnement de VBcms.
<ul>
<li class="<?php if(PHP_VERSION_ID>=70200) {echo "text-success"; $depedencies++; }else echo "text-danger"; ?>"><strong>PHP ⩾ 7.2</strong> <code><?=phpversion()?></code></li>
<?php
if (defined('PDO::ATTR_DRIVER_NAME')) {
$depedencies++;
echo '<li class="text-success"><strong>PDO est installé</strong></li>';
} else{
echo '<li class="text-danger"><strong>PDO n\'est pas installé</strong></li>';
}
if (extension_loaded('session')) {
$depedencies++;
echo '<li class="text-success"><strong>php-session est chargé</strong></li>';
} else{
echo '<li class="text-danger"><strong>php-session n\'est pas chargé</strong></li>';
}
?>
<li></li>
</ul>
</p>
</div>
</div>
<?php if ($depedencies==3){
$savedParameters = file_get_contents("tempInstallConfig");
if ($savedParameters) {
$savedParameters = json_decode($savedParameters);
$bddHost = $savedParameters[0]; //Adresse du serveur MySQL
$bddName = $savedParameters[1]; //Nom de la base de donnée
$bddUser = $savedParameters[2]; //Utilisateur
$bddMdp = $savedParameters[3]; //Mot de passe
} else {
$bddHost = "";
$bddUser = "";
$bddMdp = "";
$bddName = "";
}
?>
<div id="install-step-2" title="2. Connexion à la base de donnée" class="content" style="display: none;">
<div class="p-2">
<h3>2. Connexion à la base de donnée</h3>
<p>La connexion à la base de donnée n'est pas compliquée. Obtenir les informations de connexion peut cependant l'être un peu plus.</p>
<form class="w-50" id="databaseConn" action="">
<div class="form-group">
<label>Hôte de la base de donnée</label>
<input required class="form-control" value="<?=$bddHost?>" type="text" id="databaseHost">
<small class="form-text text-muted">Souvent localhost sur les serveurs auto-hébergés</small>
</div>
<div class="form-group">
<label>Nom de la base de donnée</label>
<input required class="form-control" value="<?=$bddName?>" type="text" id="databaseName">
</div>
<div class="form-group">
<label>Utilisateur</label>
<input required class="form-control" value="<?=$bddUser?>" type="text" id="databaseUser">
</div>
<div class="form-group">
<label>Mot de passe</label>
<input class="form-control" value="<?=$bddMdp?>" type="password" id="databasePass">
</div>
</form>
<button id="testDatabaseConn" onclick="databaseTest()" class="m-1 btn btn-brown float-left">Tester la connexion</button>
</div>
</div>
<div id="install-step-3" title="3. Configuration rapide du site" class="content" style="display: none;">
<div class="p-2">
<h3>3. Configuration rapide du site</h3>
<p>Afin de gagner du temps, tu dois remplir ces quelques informations à propos de ton futur site. ^^</p>
<div class="w-50">
<div class="form-group">
<label>Nom du site internet</label>
<input required class="form-control" value="<?=$savedParameters[4]?>" type="text" id="websiteName">
</div>
<div class="form-group">
<label>Brève description du site (pour le référencement)</label>
<input class="form-control" value="<?=$savedParameters[5]?>" type="text" id="websiteDesc">
</div>
<div class="form-group">
<label>Thème couleur de votre site</label>
<input type="text" value="#bf946f" id="websiteColor" class="pick-a-color form-control">
</div>
<div class="form-group">
<label>Clé API Steam</label>
<input class="form-control" value="<?=$savedParameters[7]?>" type="text" id="steamApiKey">
<small class="form-text text-muted">Non obligatoire selon les utilisations</small>
</div>
</div>
</div>
</div>
<div id="install-step-4" title="4. Téléchargement de VBcms" class="content" style="display: none;">
<div class="p-2">
<h3>4. Téléchargement de VBcms</h3>
<p>Comme tu as pu le remarquer, tu n'a téléchargé que cette petite page internet. ^^'<br>
Mais ne t'inquiète pas c'est normal, c'est pour que tu puisse bénéficier de la dernière version du panel sans que tu ai à le mettre à jour! :D</p>
</div>
</div>
<div id="install-step-5" title="5. Création de la base de donnée" class="content" style="display: none;">
<div class="p-2">
<h3>5. Création de la base de donnée</h3>
<p>Veuillez patienter...</p>
</div>
</div>
<div id="install-step-6" title="6. Vérifications additionnelles" class="content" style="display: none;">
<div class="p-2">
<h3>6. Vérifications additionnelles</h3>
<p>On sait jamais, ça peut ne pas marcher x)</p>
</div>
</div>
<?php } ?>
<?php } ?>
<div class="installNavButtons">
<div class="progress">
<div id="progress-bar" class="progress-bar" role="progressbar" style="width: 1%"></div>
</div>
<div class="progressBar">
<div class="actualProgress"></div>
<div class="finalProgress"></div>
</div>
<div class="navBtn">
<button id="prevBtn" onclick="previousStep()" class="m-1 btn btn-brown float-left">Précédent</button>
<button id="nextBtn" onclick="nextStep()" class="m-1 btn btn-brown float-right">Suivant</button>
</div>
</div>
</div>
<script src="https://vbcms.net/vbcms-admin/vendors/pick-a-color/js/tinycolor-0.9.15.min.js"></script>
<script src="https://vbcms.net/vbcms-admin/vendors/pick-a-color/js/pick-a-color-1.2.3.min.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
var url = new URL(window.location.href);
var search_params = url.searchParams;
if(search_params.get('step')==null){
search_params.append('step', '0');
var new_url = url.toString();
window.history.replaceState({}, '',new_url);
showStep(0);
} else {
showStep(search_params.get('step'));
}
$("#connectToVBcmsLink").attr("href", "https://vbcms.net/manager/login?from="+encodeURIComponent(window.location.href)+"&firstInstall");
});
function nextStep(){
var url = new URL(window.location.href);
var search_params = url.searchParams;
id = parseInt(search_params.get('step'), 10);
$("#install-step-"+(id)).css("display", "none");
var url = new URL(window.location.href);
var search_params = url.searchParams;
search_params.set('step', id+1);
var new_url = url.toString();
window.history.replaceState({}, '',new_url);
showStep(id+1);
}
function previousStep(){
var url = new URL(window.location.href);
var search_params = url.searchParams;
id = parseInt(search_params.get('step'), 10);
$("#install-step-"+(id)).css("display", "none");
var url = new URL(window.location.href);
var search_params = url.searchParams;
search_params.set('step', id-1);
var new_url = url.toString();
window.history.replaceState({}, '',new_url);
showStep(id-1);
}
async function showStep(id){
id = parseInt(id, 10);
if(!$("#install-step-"+(id-1)).length){
$("#prevBtn").css("display", "none");
}else{
$("#prevBtn").css("display", "block");
}
if(!$("#install-step-"+(id+1)).length){
$("#nextBtn").css("display", "none");
}else{
$("#nextBtn").css("display", "block");
}
if ($("#install-step-"+(id)).attr("title").length) {
$("#installStateTitle").html($("#install-step-"+(id)).attr("title"));
}
if (id==0) {
$("#progress-bar").css("width", "1%");
} else if (id==1) {
$("#progress-bar").css("width", "2%");
} else if (id==2) {
$("#progress-bar").css("width", "5%");
$("#nextBtn").css("display", "none");
} else if (id==3) {
$("#progress-bar").css("width", "15%");
$(".pick-a-color").pickAColor();
} else if (id==4) {
var websiteConfig = [];
websiteConfig.push($("#websiteName").val(), $("#websiteDesc").val(), $("#websiteColor").val(), $("#steamApiKey").val());
$.get("install.php?saveWebsiteConfig="+JSON.stringify(websiteConfig), function(data) {});
$("#progress-bar").css("width", "25%");
} else if (id==5) {
$("#progress-bar").css("width", "80%");
$.get("install.php?createDatabase", function(data) {
console.log("data="+data);
if (data!="finished") {
SnackBar({
message: "Echec lors de la création de la base de donnée: "+data,
status: "danger",
timeout: false
});
}else{
nextStep();
}
});
} else if (id==6) {
$("#progress-bar").css("width", "95%");;
}
$("#install-step-"+id).css("display", "block");
}
function databaseTest(){
var databaseInfos = [];
databaseInfos.push($("#databaseHost").val(), $("#databaseName").val(), $("#databaseUser").val(), $("#databasePass").val());
$.get("install.php?testBdd="+JSON.stringify(databaseInfos), function(data) {
if (data=="") {
$("#nextBtn").css("display", "block");
SnackBar({
message: "Connexion réussie!",
status: "success"
});
} else {
$("#nextBtn").css("display", "none");
SnackBar({
message: "Echec lors de la connexion: "+data,
status: "danger",
timeout: false
});
}
});
}
</script>
</body>
</html>
<?php } ?>
\ No newline at end of file
......@@ -197,8 +197,6 @@ header .menu-item{
padding: 30px 50px;
background-color: var(--mainBrown);
color: white;
}
.dashboardTopCard .userLogo{
width: 128px;
......@@ -207,6 +205,13 @@ header .menu-item{
background-position: center;
background-size: cover;
}
.dashboardTopCard .vbcms-logo{
position: relative;
}
.dashboardTopCard .vbcms-logo img{
width: 128px;
height: 128px;
}
.indexCard{
position: relative;
display: flex;
......
......@@ -2,6 +2,7 @@
$adminPagesAssoc = array();
$adminPagesAssoc[""] = ""; //index.php -> je met rien car sinon on a une boucle infinie
$adminPagesAssoc["settings"] = "settings.php";
$adminPagesAssoc["updater"] = "updater.php";
$adminPagesAssoc["test"] = "test.php";
$adminPagesAssoc["404"] = "404.php";
......
......@@ -89,8 +89,9 @@ if ($folders[1]=="vbcms-admin") {// Ne s'éxecute que si l'on n'est sur le panne
$serverId = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='serverId'")->fetchColumn();
$key = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='encryptionKey'")->fetchColumn();
$vbcmsVer = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='vbcmsVersion'")->fetchColumn();
$curentUpdateCanal = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='updateCanal'")->fetchColumn();
$json = file_get_contents("https://api.vbcms.net/updater/lastest?serverId=".$serverId."&key=".$key."&version=".$vbcmsVer);
$json = file_get_contents("https://api.vbcms.net/updater/lastest?serverId=".$serverId."&key=".$key."&version=".$vbcmsVer."&canal=".$curentUpdateCanal);
$jsonData = json_decode($json, true);
if (!$jsonData["upToDate"]) {
......
......@@ -66,6 +66,12 @@ $vbcmsVer = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='vbcmsVer
<span class="menu-text"><?=$translation["settings"]?></span>
</a>
</div>
<div class="menu-item">
<a href="/vbcms-admin/updater" class="menu-link">
<span class="menu-icon"><i class="fas fa-cloud-download-alt"></i></span>
<span class="menu-text"><?=$translation["update"]?></span>
</a>
</div>
<!-- Insérer les liens ici -->
......
<?php
$curentUpdateCanal = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='updateCanal'")->fetchColumn();
$steamApiKey = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='steamApiKey'")->fetchColumn();
if (isset($_POST["submit"])) {
......@@ -17,6 +18,9 @@ if (isset($_POST["submit"])) {
$response = $bdd->prepare("UPDATE `vbcms-settings` SET value=? WHERE name='steamApiKey'");
$response->execute([$_POST["steamApiKey"]]);
$response = $bdd->prepare("UPDATE `vbcms-settings` SET value=? WHERE name='updateCanal'");
$response->execute([$_POST["updateCanal"]]);
header("Refresh:0");
}
......@@ -27,7 +31,7 @@ if (isset($_POST["submit"])) {
<html>
<head>
<meta charset="utf-8">
<title><?=$websiteName?></title>
<title><?=$websiteName?> | <?=$translation["settings"]?></title>
<?php include 'includes/depedencies.php';?>
<link rel="stylesheet" href="https://cdn.vbcms.net/vendors/pick-a-color/css/pick-a-color-1.2.3.min.css">
</head>
......@@ -40,8 +44,24 @@ if (isset($_POST["submit"])) {
<div class="page-content" leftSidebar="240" rightSidebar="0">
<h3><?=$translation["settings"]?></h3>
<h5 class="mt-4"><?=$translation["website"]?></h5>
<form class="width-50em" action="settings" method="POST">
<h5 class="mt-4">VBcms</h5>
<div class="form-group">
<label>Canal de mise à jour</label>
<select class="form-control" name="updateCanal">
<?php
$updateCanals = ["release", "nightly", "dev"];
foreach($updateCanals as $updateCanal){
if($updateCanal == $curentUpdateCanal) $selected = 'selected';
else $selected = '';
echo '<option value="'.$updateCanal.'" '.$selected.'>'.$updateCanal.'</option>';
}
?>
</select>
</div>
<h5 class="mt-4"><?=$translation["website"]?></h5>
<div class="form-group">
<label>Nom du site internet</label>
<input required type="text" value="<?=$websiteName?>" class="form-control" name="websiteName">
......
<?php
$curentUpdateCanal = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='updateCanal'")->fetchColumn();
$serverId = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='serverId'")->fetchColumn();
$key = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='encryptionKey'")->fetchColumn();
$vbcmsVer = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='vbcmsVersion'")->fetchColumn();
$curentUpdateCanal = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name='updateCanal'")->fetchColumn();
$updateInfos = file_get_contents("https://api.vbcms.net/updater/lastest?serverId=".$serverId."&key=".$key."&version=".$vbcmsVer."&canal=".$curentUpdateCanal);
$updateInfosData = json_decode($updateInfos, true);
if (!$updateInfosData["upToDate"]) {
$response = $bdd->query("UPDATE `vbcms-settings` SET `value` = 0 WHERE `vbcms-settings`.`name` = 'upToDate'");
$response = $bdd->query("SELECT COUNT(*) FROM `vbcms-notifications` WHERE origin = '[\"vbcms-updater\", \"notifyUpdate\"]'")->fetchColumn();
if ($response!=1) {
$response = $bdd->prepare("INSERT INTO `vbcms-notifications` (`id`, `origin`, `link`, `content`, `removable`, `date`, `userId`) VALUES (NULL, '[\"vbcms-updater\", \"notifyUpdate\"]', '/vbcms-admin/updater\"', ?, '0', ?, 0)");
$response->execute([$translation["isNotUpToDate"], date("Y-m-d H:i:s")]);
}
} else{
$response = $bdd->query("UPDATE `vbcms-settings` SET `value` = 1 WHERE `vbcms-settings`.`name` = 'upToDate'");
$bdd->query("DELETE FROM `vbcms-notifications` WHERE origin = '[\"vbcms-updater\", \"notifyUpdate\"]'");
}
$response = $bdd->prepare("UPDATE `vbcms-settings` SET `value` = ? WHERE `vbcms-settings`.`name` = 'lastUpdateCheck'");
$response->execute([date("Y-m-d H:i:s")]);
$isUpToDate = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name = 'upToDate'")->fetchColumn();
$lastUpdateCheck = $bdd->query("SELECT value FROM `vbcms-settings` WHERE name = 'lastUpdateCheck'")->fetchColumn();
if ($isUpToDate == 1) {
$updateMessage = $translation["isUpToDate"];
} else {
$updateMessage = $translation["isNotUpToDate"];
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><?=$websiteName?> | <?=$translation["update"]?></title>
<?php include 'includes/depedencies.php';?>
</head>
<body>
<?php
include ('includes/navbar.php');
?>
<!-- Contenu -->
<div class="dashboardTopCard" leftSidebar="240" rightSidebar="0">
<h3><?=$translation["updateVBcms"]?></h3>
<div class="d-flex mt-5">
<div class="vbcms-logo">
<img src="<?=$websiteUrl?>vbcms-admin/images/vbcms-logo/raccoon-in-box-512x.png">
</div>
<div class="ml-5">
<h4>VBcms <small><?=$vbcmsVer?></small></h4>
<p><strong><?=$updateMessage?></strong><br>
<?=$translation["lastChecked"]?>: <?=$lastUpdateCheck?></p>
<?php
if ($isUpToDate == 1) {
#
} else {
echo '<p>Test</p>';
echo '<button type="button" class="btn btn-light">'.$translation["downloadAndInstall"].'</button>';
}
?>
</div>
</div>
</div>
<div class="page-content notTop" leftSidebar="240" rightSidebar="0">
<h3><?=$translation["update"]?></h3>
</div>
</body>
</html>
\ No newline at end of file
......@@ -30,7 +30,7 @@ $translation["error-saving"] = "Erreur lors de la sauvegarde";
$translation["success-saving"] = "Sauvegarde réussie";
$translation["onlineAccountRequired"] = "Connexion aux services de VBcms requise";
$translation["close"] = "Fermer";
$translation["sample"] = "sample";
$translation["update"] = "Mise à jour";
$translation["sample"] = "sample";
$translation["sample"] = "sample";
$translation["sample"] = "sample";
......@@ -44,6 +44,10 @@ $translation["onlineAccountRequiredPhrase"] = "Une connexion via les services de
$translation["tip_createAddon"] = '<b>Créer un addon pour VBcms est un jeu d\'enfant!</b><br><a href="#" class="text-brown">Check la documentation</a> pour en savoir plus, les créateurs sont régulièrement mis en avant sur le Workshop!';
$translation["isUpToDate"] = "VBcms est à jour";
$translation["isNotUpToDate"] = "Une mise à jour est disponible !";
$translation["updateVBcms"] = "Mettre à jour VBcms";
$translation["searchUpdate"] = "Rechercher des mises à jour";
$translation["downloadAndInstall"] = "Télécharger et Installer";
$translation["lastChecked"] = "Dernière vérification";
$translation["sample"] = "sample";
$translation["sample"] = "sample";
$translation["sample"] = "sample";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment