copy/paste the data above and store into testfile.txt
Then run the script, and you should get the image back.
I will be creating a new account for a bot to record this every 15 minutes or so, and likely for other results in the state.
$myfile = fopen("testfile.txt", "r") or die("Unable to open file!");
$result = fread($myfile, filesize("testfile.txt"));
fclose($myfile);
$text=gzuncompress(base64_decode($result));
$myfile = fopen("testfile2.png", "w") or die("Unable to open file!");
fwrite($myfile, $text);
fclose($myfile);
?>
RE: