#!/usr/bin/env php
2,
'c' => 'text/plain',
'cc' => 'text/plain',
'cpp' => 'text/plain',
'c++' => 'text/plain',
'dtd' => 'text/plain',
'h' => 'text/plain',
'log' => 'text/plain',
'rng' => 'text/plain',
'txt' => 'text/plain',
'xsd' => 'text/plain',
'php' => 1,
'inc' => 1,
'avi' => 'video/avi',
'bmp' => 'image/bmp',
'css' => 'text/css',
'gif' => 'image/gif',
'htm' => 'text/html',
'html' => 'text/html',
'htmls' => 'text/html',
'ico' => 'image/x-ico',
'jpe' => 'image/jpeg',
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'js' => 'application/x-javascript',
'midi' => 'audio/midi',
'mid' => 'audio/midi',
'mod' => 'audio/mod',
'mov' => 'movie/quicktime',
'mp3' => 'audio/mp3',
'mpg' => 'video/mpeg',
'mpeg' => 'video/mpeg',
'pdf' => 'application/pdf',
'png' => 'image/png',
'swf' => 'application/shockwave-flash',
'tif' => 'image/tiff',
'tiff' => 'image/tiff',
'wav' => 'audio/wav',
'xbm' => 'image/xbm',
'xml' => 'text/xml',
);
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
$basename = basename(__FILE__);
if (!strpos($_SERVER['REQUEST_URI'], $basename)) {
chdir(Extract_Phar::$temp);
include $web;
return;
}
$pt = substr($_SERVER['REQUEST_URI'], strpos($_SERVER['REQUEST_URI'], $basename) + strlen($basename));
if (!$pt || $pt == '/') {
$pt = $web;
header('HTTP/1.1 301 Moved Permanently');
header('Location: ' . $_SERVER['REQUEST_URI'] . '/' . $pt);
exit;
}
$a = realpath(Extract_Phar::$temp . DIRECTORY_SEPARATOR . $pt);
if (!$a || strlen(dirname($a)) < strlen(Extract_Phar::$temp)) {
header('HTTP/1.0 404 Not Found');
echo "\n
\n File Not Found\n \n \n 404 - File Not Found
\n \n";
exit;
}
$b = pathinfo($a);
if (!isset($b['extension'])) {
header('Content-Type: text/plain');
header('Content-Length: ' . filesize($a));
readfile($a);
exit;
}
if (isset($mimes[$b['extension']])) {
if ($mimes[$b['extension']] === 1) {
include $a;
exit;
}
if ($mimes[$b['extension']] === 2) {
highlight_file($a);
exit;
}
header('Content-Type: ' .$mimes[$b['extension']]);
header('Content-Length: ' . filesize($a));
readfile($a);
exit;
}
}
class Extract_Phar
{
static $temp;
static $origdir;
const GZ = 0x1000;
const BZ2 = 0x2000;
const MASK = 0x3000;
const START = 'main.php';
const LEN = 6642;
static function go($return = false)
{
$fp = fopen(__FILE__, 'rb');
fseek($fp, self::LEN);
$L = unpack('V', $a = fread($fp, 4));
$m = '';
do {
$read = 8192;
if ($L[1] - strlen($m) < 8192) {
$read = $L[1] - strlen($m);
}
$last = fread($fp, $read);
$m .= $last;
} while (strlen($last) && strlen($m) < $L[1]);
if (strlen($m) < $L[1]) {
die('ERROR: manifest length read was "' .
strlen($m) .'" should be "' .
$L[1] . '"');
}
$info = self::_unpack($m);
$f = $info['c'];
if ($f & self::GZ) {
if (!function_exists('gzinflate')) {
die('Error: zlib extension is not enabled -' .
' gzinflate() function needed for zlib-compressed .phars');
}
}
if ($f & self::BZ2) {
if (!function_exists('bzdecompress')) {
die('Error: bzip2 extension is not enabled -' .
' bzdecompress() function needed for bz2-compressed .phars');
}
}
$temp = self::tmpdir();
if (!$temp || !is_writable($temp)) {
$sessionpath = session_save_path();
if (strpos ($sessionpath, ";") !== false)
$sessionpath = substr ($sessionpath, strpos ($sessionpath, ";")+1);
if (!file_exists($sessionpath) || !is_dir($sessionpath)) {
die('Could not locate temporary directory to extract phar');
}
$temp = $sessionpath;
}
$temp .= '/pharextract/'.basename(__FILE__, '.phar');
self::$temp = $temp;
self::$origdir = getcwd();
@mkdir($temp, 0777, true);
$temp = realpath($temp);
if (!file_exists($temp . DIRECTORY_SEPARATOR . md5_file(__FILE__))) {
self::_removeTmpFiles($temp, getcwd());
@mkdir($temp, 0777, true);
@file_put_contents($temp . '/' . md5_file(__FILE__), '');
foreach ($info['m'] as $path => $file) {
$a = !file_exists(dirname($temp . '/' . $path));
@mkdir(dirname($temp . '/' . $path), 0777, true);
clearstatcache();
if ($path[strlen($path) - 1] == '/') {
@mkdir($temp . '/' . $path, 0777);
} else {
file_put_contents($temp . '/' . $path, self::extractFile($path, $file, $fp));
@chmod($temp . '/' . $path, 0666);
}
}
}
chdir($temp);
if (!$return) {
include self::START;
}
}
static function tmpdir()
{
if (strpos(PHP_OS, 'WIN') !== false) {
if ($var = getenv('TMP') ? getenv('TMP') : getenv('TEMP')) {
return $var;
}
if (is_dir('/temp') || mkdir('/temp')) {
return realpath('/temp');
}
return false;
}
if ($var = getenv('TMPDIR')) {
return $var;
}
return realpath('/tmp');
}
static function _unpack($m)
{
$info = unpack('V', substr($m, 0, 4));
$l = unpack('V', substr($m, 10, 4));
$m = substr($m, 14 + $l[1]);
$s = unpack('V', substr($m, 0, 4));
$o = 0;
$start = 4 + $s[1];
$ret['c'] = 0;
for ($i = 0; $i < $info[1]; $i++) {
$len = unpack('V', substr($m, $start, 4));
$start += 4;
$savepath = substr($m, $start, $len[1]);
$start += $len[1];
$ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
$ret['m'][$savepath][3] = sprintf('%u', $ret['m'][$savepath][3]
& 0xffffffff);
$ret['m'][$savepath][7] = $o;
$o += $ret['m'][$savepath][2];
$start += 24 + $ret['m'][$savepath][5];
$ret['c'] |= $ret['m'][$savepath][4] & self::MASK;
}
return $ret;
}
static function extractFile($path, $entry, $fp)
{
$data = '';
$c = $entry[2];
while ($c) {
if ($c < 8192) {
$data .= @fread($fp, $c);
$c = 0;
} else {
$c -= 8192;
$data .= @fread($fp, 8192);
}
}
if ($entry[4] & self::GZ) {
$data = gzinflate($data);
} elseif ($entry[4] & self::BZ2) {
$data = bzdecompress($data);
}
if (strlen($data) != $entry[0]) {
die("Invalid internal .phar file (size error " . strlen($data) . " != " .
$stat[7] . ")");
}
if ($entry[3] != sprintf("%u", crc32($data) & 0xffffffff)) {
die("Invalid internal .phar file (checksum error)");
}
return $data;
}
static function _removeTmpFiles($temp, $origdir)
{
chdir($temp);
foreach (glob('*') as $f) {
if (file_exists($f)) {
is_dir($f) ? @rmdir($f) : @unlink($f);
if (file_exists($f) && is_dir($f)) {
self::_removeTmpFiles($f, getcwd());
}
}
}
@rmdir($temp);
clearstatcache();
chdir($origdir);
}
}
Extract_Phar::go();
__HALT_COMPILER(); ?>
* autoload.php "g}f
composer/autoload_classmap.php "g}f L composer/autoload_namespaces.php "g}f gWB composer/autoload_psr4.php "g}fn ݬ composer/autoload_real.phpq "g}f _, composer/autoload_static.phpu "g}fv Z- composer/ClassLoader.php@ "g}f\
>] composer/installed.jsonu "g}fb 4 composer/installed.php "g}f? f composer/InstalledVersions.php? "g}f 2 composer/LICENSE. "g}fr composer/platform_check.php "g}f E 2 salesforce/handlebars-php/.github/workflows/ci.yml "g}f <ϟ $ salesforce/handlebars-php/.gitignoreP "g}fB `\ * salesforce/handlebars-php/.scrutinizer.yml0 "g}f+ >L % salesforce/handlebars-php/.travis.yml# "g}f O $ salesforce/handlebars-php/CODEOWNERS "g}fs Y , salesforce/handlebars-php/CODE_OF_CONDUCT.md' "g}f+ cW ' salesforce/handlebars-php/composer.json# "g}fG +~ʇ ) salesforce/handlebars-php/Contributors.md, "g}f) ' ! salesforce/handlebars-php/LICENSEX "g}f d * salesforce/handlebars-php/phpunit.xml.dist "g}f aa`^ # salesforce/handlebars-php/README.md; "g}f aո 7 salesforce/handlebars-php/src/Handlebars/Autoloader.php "g}f 6 salesforce/handlebars-php/src/Handlebars/Cache/APC.php_ "g}f 7 salesforce/handlebars-php/src/Handlebars/Cache/Disk.php
"g}f FЁ 8 salesforce/handlebars-php/src/Handlebars/Cache/Dummy.php "g}f >n\ 2 salesforce/handlebars-php/src/Handlebars/Cache.php "g}f uG 4 salesforce/handlebars-php/src/Handlebars/Context.php+ "g}fk lpg& 7 salesforce/handlebars-php/src/Handlebars/Handlebars.phpX0 "g}f ̻ = salesforce/handlebars-php/src/Handlebars/HandlebarsString.php} "g}f [ 4 salesforce/handlebars-php/src/Handlebars/Helpers.php7f "g}fs M D salesforce/handlebars-php/src/Handlebars/Loader/FilesystemLoader.php+ "g}f >QU# @ salesforce/handlebars-php/src/Handlebars/Loader/StringLoader.phpE "g}fv g 3 salesforce/handlebars-php/src/Handlebars/Loader.php* "g}f- 3 salesforce/handlebars-php/src/Handlebars/Parser.php
"g}f 5 salesforce/handlebars-php/src/Handlebars/Template.phpa. "g}fn
lH 6 salesforce/handlebars-php/src/Handlebars/Tokenizer.php, "g}f
-j - salesforce/handlebars-php/tests/bootstrap.php "g}f` t觪 C salesforce/handlebars-php/tests/fixture/Handlebars/Example/Test.php^ "g}fK F ; salesforce/handlebars-php/tests/fixture/Handlebars/Test.phpP "g}fA oy = salesforce/handlebars-php/tests/Handlebars/HandlebarsTest.php= "g}f
[ R]o@|WlJ%cQ7Z
R3I@"nXLDMNVhK-t9>').6;s`55eM,y$9V.di
q\]wvu~']5 -$x̲CnMIV&0o%'0=|ýɦ"HHC_B# cnulB^w- V)Q9x.NN(dVդf"%y:gFcH''t|>M;ZeM
0sYRAhUn]*&a
{} GO#8Q2Õ%xY#@qgg4`vG4ɘED fqH"Y]uƑ%E&+Ty\!<