<?php
ini_set('display_errors', 1);
//if( $_SERVER['REMOTE_ADDR'] == '176.226.164.90' ){ print_r($_GET); print_r($_SERVER); die('d');}

$t1 = getmicrotime();
header( 'Content-Type: text/html; charset=UTF-8' );
mb_internal_encoding('UTF-8');
//@set_time_limit(0);			// Increases the max. allowed time to run a script ( 0 - unlim )

include __DIR__ . '/.engine82/engine.php';

$t2 = getmicrotime();
echo '<!-- mgentime: ' . ($t4-$t3) . ' sec, pgentime: ' . ($t2-$t1) . ' sec, memory peak usage: ' . round( memory_get_peak_usage(true)/1024, 2 ) . ' Kb -->';

function getmicrotime(){
	list($usec, $sec) = explode(" ", microtime());
	return ((float)$usec + (float)$sec);
}
