<? session_start();
$modes = $_GET['meta'];
//----------------------
srand((double)microtime()*1000000);
$t_rnd = mt_rand(0,100);
$s_rnd = mt_rand(0,100);
$undr=$t_rnd+$s_rnd;
$_SESSION['first']=$t_rnd;
$_SESSION['two']=$s_rnd;
$_SESSION['result']=$undr;
//---------------------- 
if($modes==""){$modes="1x3";} 
if (file_exists("database/".$modes.".db")) { } else {$modes="1x3";}
include('admin/config.php'); 
if($system_restruction=="true"){
include('theme/restruction.html'); 
exit;
}
include('theme/index.html'); 
?>
