for(1 .. 12)	{

$m = $_;

for(1 .. 1000)	{

$type = int(rand(6));
$type = 1 if($type eq "0");

$x = int(rand(11440)) * $m;

print "INSERT INTO Log_Login (Account, LogType, LogDate) VALUES ('user$_\@me.com', '$type', DATE_SUB(NOW(), INTERVAL $x MINUTE));\n";

$x = int(rand(12440)) * $m;

print "INSERT INTO Log_RecvMail (Account, LogDate) VALUES ('user$_\@me.com', DATE_SUB(NOW(), INTERVAL $x MINUTE));\n";

$x = int(rand(23440)) * $m;

print "INSERT INTO Log_SendMail (Account, LogDate) VALUES ('user$_\@me.com', DATE_SUB(NOW(), INTERVAL $x MINUTE));\n";

$x = int(rand(33440)) * $m;
$type = int(rand(4));
$type = 1 if($type eq "0");

print "INSERT INTO Log_Spam (Account, LogType, LogDate) VALUES ('user$_\@me.com', '$type', DATE_SUB(NOW(), INTERVAL $x MINUTE));\n";

$x = int(rand(35440)) * $m;

print "INSERT INTO Log_Virus (Account, LogDate) VALUES ('user$_\@me.com', DATE_SUB(NOW(), INTERVAL $x MINUTE));\n";


}

}

