<!DOCTYPE html><html><style>h1,span{border-left:10px solid #8f8;background:#bfe;padding:0.3em;margin-bottom:0px;font-size:1.4em}h2{margin:45px;}h1,h2,p,pre{margin-left:7vw;margin-right:7vw;color:#930;font-family:sans-serif}html{background:#dfd;font-family:monospace}hr{border:2px solid #930}</style><?php
$s = strtotime("16-Mar-2024 12:02pm") - time();
#allow access if time is X
if($s<1){/*include("0000.php");*/include("a/20-onions.html");echo"<pre>";include("X-flat.txt");echo"</pre>";exit;}
#if time is before, show timer
if($s<60){$z = $s.'s';}
elseif($s<3600){$z = (($s-($s%60))/60).'m '.($s%60).'s';}
elseif($s<86400){$z = (($s-($s%3600))/3600).'h '.((($s-($s%60))/60)%60).'m '.($s%60).'s';}
elseif(1==1){$z = (($s-($s%86400))/86400)."d ".((($s-($s%3600))/3600)%24).'h '.((($s-($s%60))/60)%60).'m '.($s%60).'s';}
echo '<title>'.$z.'</title><meta http-equiv="refresh" content="4 ?t='.($_GET['t'] ?: time()).'&f='.$_GET['f'].'"/><body><hr><span><b>~'.$z.' until content unlocks</b></span><hr></body></html>';
?>