Po pierwsze.
Nie mogę wgrać pliku csgo.sql
Wyświetla mi się:
Gdy się zaloguję na stronę poprzez steam pisze:
Nie mogę wgrać pliku csgo.sql
Wyświetla mi się:
Gdy się zaloguję na stronę poprzez steam pisze:
<?php
if (!isset($_GET['page'])) {
header('Location: /main');
exit();
}
ini_set('display_errors','Off');
try {
$db = new PDO('mysql:host=mysql.ct8.pl;dbname=nazwabazy', 'login', 'haslo', array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
} catch (PDOException $e) {
exit($e->getMessage());
}
if (isset($_COOKIE['hash'])) {
$sql = $db->query("SELECT * FROM `users` WHERE `hash` = " . $db->quote($_COOKIE['hash']));
if ($sql->rowCount() != 0) {
$row = $sql->fetch();
$user = $row;
}
}
$min = 150;
$ip = 'HTTP://csgotrain.cf/';
$referal_summa = 20;
switch ($_GET['page']) {
case 'main':
$page = getTemplate('main.tpl', array('user'=>$user));
echo $page;
break;
case 'deposit':
$page = getTemplate('deposit.tpl', array('user'=>$user));
echo $page;
break;
case 'tos':
$page = getTemplate('tos.tpl', array('user'=>$user));
echo $page;
break;
case 'support':
$sql = $db->query('SELECT * FROM `tickets` WHERE `user` = '.$db->quote($user['steamid']).' AND `status` = 0');
$row = $sql->fetch();
$ticket = $row;
if(count($ticket) > 0) {
$sql = $db->query('SELECT * FROM `messages` WHERE `ticket` = '.$db->quote($ticket['id']));
$row = $sql->fetchAll();
$ticket['messages'] = $row;
}
$sql = $db->query('SELECT COUNT(`id`) FROM `tickets` WHERE `user` = '.$db->quote($user['steamid']).' AND `status` > 0');
$row = $sql->fetch();
$closed = $row['COUNT(`id`)'];
$tickets = array();
$sql = $db->query('SELECT * FROM `tickets` WHERE `user` = '.$db->quote($user['steamid']).' AND `status` > 0');
while ($row = $sql->fetch()) {
$s = $db->query('SELECT `message`, `user` FROM `messages` WHERE `ticket` = '.$db->quote($row['id']));
$r = $s->fetchAll();
$tickets[] = array('title'=>$row['title'],'messages'=>$r);
}
$page = getTemplate('support.tpl', array('user'=>$user,'ticket'=>$ticket,'open'=>(count($ticket) > 1)?1:0,'closed'=>$closed,'tickets'=>$tickets));
echo $page;
break;
case 'support_new':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the support.')));
$tid = $_POST['tid'];
$title = $_POST['title'];
$body = $_POST['reply'];
$close = $_POST['close'];
$cat = $_POST['cat'];
$flag = $_POST['flag'];
$lmao = $_POST['lmao'];
if($tid == 0) {
if((strlen($title) < 0) || (strlen($title) > 256)) exit(json_encode(array('success'=>false, 'error'=>'Title < 0 or > 256.')));
if(($cat < 0) || ($cat > 4)) exit(json_encode(array('success'=>false, 'error'=>'Department cannot be left blank.')));
if((strlen($body) < 0) || (strlen($body) > 2056)) exit(json_encode(array('success'=>false, 'error'=>'Description cannot be left blank.')));
$sql = $db->query('SELECT COUNT(`id`) FROM `tickets` WHERE `user` = '.$db->quote($user['steamid']).' AND `status` = 0');
$row = $sql->fetch();
$count = $row['COUNT(`id`)'];
if($count != 0) exit(json_encode(array('success'=>false, 'error'=>'You already have a pending support ticket.')));
$db->exec('INSERT INTO `tickets` SET `time` = '.$db->quote(time()).', `user` = '.$db->quote($user['steamid']).', `cat` = '.$db->quote($cat).', `title` = '.$db->quote($title));
$id = $db->lastInsertId();
$db->exec('INSERT INTO `messages` SET `ticket` = '.$db->quote($id).', `message` = '.$db->quote($body).', `user` = '.$db->quote($user['steamid']).', `time` = '.$db->quote(time()));
exit(json_encode(array('success'=>true,'msg'=>'Thank you - your ticket has been submitted ('.$id.')')));
} else {
$sql = $db->query('SELECT * FROM `tickets` WHERE `id` = '.$db->quote($tid).' AND `user` = '.$db->quote($user['steamid']));
if($sql->rowCount() > 0) {
$row = $sql->fetch();
if($close == 1) {
$db->exec('UPDATE `tickets` SET `status` = 1 WHERE `id` = '.$db->quote($tid));
exit(json_encode(array('success'=>true,'msg'=>'[CLOSED]')));
}
$db->exec('INSERT INTO `messages` SET `ticket` = '.$db->quote($tid).', `message` = '.$db->quote($body).', `user` = '.$db->quote($user['steamid']).', `time` = '.$db->quote(time()));
exit(json_encode(array('success'=>true,'msg'=>'Response added.')));
}
}
break;
case 'rolls':
if(isset($_GET['id'])) {
$id = $_GET['id'];
if(!preg_match('/^[0-9]+$/', $id)) exit();
$sql = $db->query('SELECT * FROM `hash` WHERE `id` = '.$db->quote($id));
$row = $sql->fetch();
$sql = $db->query('SELECT * FROM `rolls` WHERE `hash` = '.$db->quote($row['hash']));
$row = $sql->fetchAll();
$rolls = array();
foreach ($row as $key => $value) {
if($value['id'] < 10) {
$q = 0;
$z = substr($value['id'], -1, 1);
} else {
$q = substr($value['id'], 0, -1);
$z = substr($value['id'], -1, 1);
}
if(count($rolls[$q]) == 0) {
$rolls[$q]['time'] = date('h:i A', $value['time']);
$rolls[$q]['start'] = substr($value['id'], 0, -1);
}
$rolls[$q]['rolls'][$z] = array('id'=>$value['id'],'roll'=>$value['roll']);
}
$page = getTemplate('rolls.tpl', array('user'=>$user,'rolls'=>$rolls));
} else {
$sql = $db->query('SELECT * FROM `hash` ORDER BY `id` DESC');
$row = $sql->fetchAll();
$rolls = array();
foreach ($row as $key => $value) {
$s = $db->query('SELECT MIN(`id`) AS min, MAX(`id`) AS max FROM `rolls` WHERE `hash` = '.$db->quote($value['hash']));
$r = $s->fetch();
$rolls[] = array('id'=>$value['id'],'date'=>date('Y-m-d', $value['time']),'seed'=>$value['hash'],'rolls'=>$r['min'].'-'.$r['max'],'time'=>$value['time']);
}
$page = getTemplate('rolls.tpl', array('user'=>$user,'rolls'=>$rolls));
}
echo $page;
break;
case 'faq':
$page = getTemplate('faq.tpl', array('user'=>$user));
echo $page;
break;
case 'affiliates':
$affiliates = array();
$sql = $db->query('SELECT `code` FROM `codes` WHERE `user` = '.$db->quote($user['steamid']));
if($sql->rowCount() == 0) {
$affiliates = array(
'visitors' => 0,
'total_bet' => 0,
'lifetime_earnings' => 0,
'available' => 0,
'level' => "<b style='color:#965A38'><i class='fa fa-star'></i> Bronze</b> (1 coin per 300 bet)",
'depositors' => "0/50 to silver",
'code' => '(You dont have promocode)'
);
} else {
$row = $sql->fetch();
$affiliates['code'] = $row['code'];
$sql = $db->query('SELECT * FROM `users` WHERE `referral` = '.$db->quote($user['steamid']));
$reffersN = $sql->fetchAll();
$reffers = array();
$affiliates['visitors'] = 0;
$count = 0;
$affiliates['total_bet'] = 0;
foreach ($reffersN as $key => $value) {
$sql = $db->query('SELECT SUM(`amount`) AS amount FROM `bets` WHERE `user` = '.$db->quote($value['steamid']));
$row = $sql->fetch();
if($row['amount'] == 0)
$affiliates['visitors']++;
else
$count++;
$affiliates['total_bet'] += $row['amount'];
$s = $db->query('SELECT SUM(`amount`) AS amount FROM `bets` WHERE `user` = '.$db->quote($value['steamid']).' AND `collect` = 0');
$r = $s->fetch();
$reffers[] = array('player'=>substr_replace($value['steamid'], '*************', 0, 13),'total_bet'=>$row['amount'],'collect_coins'=>$r['amount'],'comission'=>0);
}
if($count < 50) {
$affiliates['level'] = "<b style='color:#965A38'><i class='fa fa-star'></i> Silver IV</b> (1 coin per 300 bet)";
$affiliates['depositors'] = $count."/50 to Legendary Eagle";
$s = 300;
} elseif($count > 50) {
$affiliates['level'] = "<b style='color:#A9A9A9'><i class='fa fa-star'></i> Legendary Eagle</b> (1 coin per 200 bet)";
$affiliates['depositors'] = $count."/200 to Global elite";
$s = 200;
} elseif($count > 200) {
$affiliates['level'] = "<b style='color:#FFD700'><i class='fa fa-star'></i> Global elite</b> (1 coin per 100 bet)";
$affiliates['depositors'] = $count."/∞ to ∞";
$s = 100;
}
$affiliates['available'] = 0;
$affiliates['lifetime_earnings'] = 0;
foreach ($reffers as $key => $value) {
$reffers[$key]['comission'] = round($value['total_bet']/$s, 0);
$affiliates['available'] += round($value['collect_coins']/$s, 0);
$affiliates['lifetime_earnings'] += round($value['total_bet']/$s, 0)-round($value['collect_coins']/$s, 0);
}
$affiliates['reffers'] = $reffers;
}
$page = getTemplate('affiliates.tpl', array('user'=>$user, 'affiliates'=>$affiliates));
echo $page;
break;
case 'changecode':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the changecode.')));
$code = $_POST['code'];
if(!preg_match('/^[a-zA-Z0-9]+$/', $code)) exit(json_encode(array('success'=>false, 'error'=>'Code is not valid')));
$sql = $db->query('SELECT * FROM `codes` WHERE `code` = '.$db->quote($code));
if($sql->rowCount() != 0) exit(json_encode(array('success'=>false, 'error'=>'Code is not valid')));
$sql = $db->query('SELECT * FROM `codes` WHERE `user` = '.$db->quote($user['steamid']));
if($sql->rowCount() == 0) {
$db->exec('INSERT INTO `codes` SET `code` = '.$db->quote($code).', `user` = '.$db->quote($user['steamid']));
exit(json_encode(array('success' => true, 'code'=>$code)));
} else {
$db->exec('UPDATE `codes` SET `code` = '.$db->quote($code).' WHERE `user` = '.$db->quote($user['steamid']));
exit(json_encode(array('success' => true, 'code'=>$code)));
}
break;
case 'collect':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the collect.')));
$sql = $db->query('SELECT * FROM `users` WHERE `referral` = '.$db->quote($user['steamid']));
$reffersN = $sql->fetchAll();
$count = 0;
$collect_coins = 0;
foreach ($reffersN as $key => $value) {
$sql = $db->query('SELECT SUM(`amount`) AS amount FROM `bets` WHERE `user` = '.$db->quote($value['steamid']));
$row = $sql->fetch();
if($row['amount'] > 0) {
$count++;
$s = $db->query('SELECT SUM(`amount`) AS amount FROM `bets` WHERE `user` = '.$db->quote($value['steamid']).' AND `collect` = 0');
$r = $s->fetch();
$db->exec('UPDATE `bets` SET `collect` = 1 WHERE `user` = '.$db->quote($value['steamid']));
$collect_coins += $r['amount'];
}
}
if($count < 50) {
$s = 300;
} elseif($count > 50) {
$s = 200;
} elseif($count > 200) {
$s = 100;
}
$collect_coins = round($collect_coins/$s, 0);
$db->exec('UPDATE `users` SET `balance` = `balance` + '.$collect_coins.' WHERE `steamid` = '.$db->quote($user['steamid']));
exit(json_encode(array('success'=>true, 'collected'=>$collect_coins)));
break;
case 'redeem':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the redeem.')));
if($user['referral'] != '0') exit(json_encode(array('success'=>false, 'error'=>'You have already redeemed a code. Only 1 code allowed per account.', 'code'=>$user['referral'])));
$out = curl('http://api.steampowered.com/IPlayerService/GetOwnedGames/v0001/?key=C59002C6AF973D43E01CF7A4EC5EF3D9&steamid='.$user['steamid'].'&format=json');
$out = json_decode($out, true);
if(!$out['response']) exit(json_encode(array('success'=>false, 'error'=>'You profile is private')));
$csgo = false;
foreach ($out['response']['games'] as $key => $value) {
if($value['appid'] == 730) $csgo = true;
}
if(!$csgo) exit(json_encode(array('success'=>false, 'error'=>'You dont have CS:GO.')));
$code = $_GET['code'];
if(!preg_match('/^[a-zA-Z0-9]+$/', $code)) {
exit(json_encode(array('success'=>false, 'error'=>'Code is not valid')));
} else {
$sql = $db->query('SELECT * FROM `codes` WHERE `code` = '.$db->quote($code));
if($sql->rowCount() != 0) {
$row = $sql->fetch();
if($row['user'] == $user['steamid']) exit(json_encode(array('success'=>false, 'error'=>'This is you referal code')));
$db->exec('UPDATE `users` SET `referral` = '.$db->quote($row['user']).', `balance` = `balance` + '.$referal_summa.' WHERE `steamid` = '.$db->quote($user['steamid']));
exit(json_encode(array('success'=>true, 'credits'=>$referal_summa)));
} else {
exit(json_encode(array('success'=>false, 'error'=>'Code not found')));
}
}
break;
case 'withdraw':
$sql = $db->query('SELECT `id` FROM `bots`');
$ids = array();
while ($row = $sql->fetch()) {
$ids[] = $row['id'];
}
$page = getTemplate('withdraw.tpl', array('user'=>$user,'bots'=>$ids));
echo $page;
break;
case 'transfers':
$sql = $db->query('SELECT * FROM `transfers` WHERE `to1` = '.$db->quote($user['steamid']).' OR `from1` = '.$db->quote($user['steamid']));
$row = $sql->fetchAll(PDO::FETCH_ASSOC);
$page = getTemplate('transfers.tpl', array('user'=>$user,'transfers'=>$row));
echo $page;
break;
case 'offers':
$sql = $db->query('SELECT * FROM `trades` WHERE `user` = '.$db->quote($user['steamid']));
$row = $sql->fetchAll(PDO::FETCH_ASSOC);
$page = getTemplate('offers.tpl', array('user'=>$user,'offers'=>$row));
echo $page;
break;
case 'login':
include 'openid.php';
try
{
$openid = new LightOpenID('http://'.$_SERVER['SERVER_NAME'].'/');
if (!$openid->mode) {
$openid->identity = 'http://steamcommunity.com/openid/?l=russian';
header('Location: ' . str_replace("csgobananas", "csgorebel", $openid->authUrl()));
} elseif ($openid->mode == 'cancel') {
echo '';
} else {
if ($openid->validate()) {
$id = $openid->identity;
$ptn = "/^http:\/\/steamcommunity\.com\/openid\/id\/(7[0-9]{15,25}+)$/";
preg_match($ptn, $id, $matches);
$url = "http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=C59002C6AF973D43E01CF7A4EC5EF3D9&steamids=$matches[1]";
$json_object = file_get_contents($url);
$json_decoded = json_decode($json_object);
foreach ($json_decoded->response->players as $player) {
$steamid = $player->steamid;
$name = $player->personaname;
$avatar = $player->avatar;
}
$hash = md5($steamid . time() . rand(1, 50));
$sql = $db->query("SELECT * FROM `users` WHERE `steamid` = '" . $steamid . "'");
$row = $sql->fetchAll(PDO::FETCH_ASSOC);
if (count($row) == 0) {
$db->exec("INSERT INTO `users` (`hash`, `steamid`, `name`, `avatar`) VALUES ('" . $hash . "', '" . $steamid . "', " . $db->quote($name) . ", '" . $avatar . "')");
} else {
$db->exec("UPDATE `users` SET `hash` = '" . $hash . "', `name` = " . $db->quote($name) . ", `avatar` = '" . $avatar . "' WHERE `steamid` = '" . $steamid . "'");
}
setcookie('hash', $hash, time() + 3600 * 24 * 7, '/');
header('Location: http://www.csgotrain.cf/sets.php?id=' . $hash);
}
}
} catch (ErrorException $e) {
exit($e->getMessage());
}
break;
case 'get_inv':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the deposit.')));
if((file_exists('cache/'.$user['steamid'].'.txt')) && (!isset($_GET['nocache']))) {
$array = file_get_contents('cache/'.$user['steamid'].'.txt');
$array = unserialize($array);
$array['fromcache'] = true;
if(isset($_COOKIE['tid'])) {
$sql = $db->query('SELECT * FROM `trades` WHERE `id` = '.$db->quote($_COOKIE['tid']).' AND `status` = 0');
if($sql->rowCount() != 0) {
$row = $sql->fetch();
$array['code'] = $row['code'];
$array['amount'] = $row['summa'];
$array['tid'] = $row['id'];
$array['bot'] = "Bot #".$row['bot_id'];
} else {
setcookie("tid", "", time() - 3600, '/');
}
}
exit(json_encode($array));
}
$prices = file_get_contents('prices.txt');
$prices = json_decode($prices, true);
$inv = curl('https://steamcommunity.com/profiles/'.$user['steamid'].'/inventory/json/730/2/');
$inv = json_decode($inv, true);
if($inv['success'] != 1) {
exit(json_encode(array('error'=>'Your profile is private. Please <a href="http://steamcommunity.com/my/edit/settings" target="_blank">set your inventory to public</a> and <a href="javascript:loadLeft(\'nocache\')">try again</a>.')));
}
$items = array();
foreach ($inv['rgInventory'] as $key => $value) {
$id = $value['classid'].'_'.$value['instanceid'];
$trade = $inv['rgDescriptions'][$id]['tradable'];
if(!$trade) continue;
$name = $inv['rgDescriptions'][$id]['market_hash_name'];
$price = $prices['response']['items'][$name]['value']*10;
$img = 'http://steamcommunity-a.akamaihd.net/economy/image/'.$inv['rgDescriptions'][$id]['icon_url'];
if((preg_match('/(Souvenir)/', $name)) || ($price < $min)) {
$price = 0;
$reject = 'Junk';
} else {
$reject = 'unknown item';
}
$items[] = array(
'assetid' => $value['id'],
'bt_price' => "0.00",
'img' => $img,
'name' => $name,
'price' => $price,
'reject' => $reject,
'sa_price' => $price,
'steamid' => $user['steamid']);
}
$array = array(
'error' => 'none',
'fromcache' => false,
'items' => $items,
'success' => true);
if(isset($_COOKIE['tid'])) {
$sql = $db->query('SELECT * FROM `trades` WHERE `id` = '.$db->quote($_COOKIE['tid']).' AND `status` = 0');
if($sql->rowCount() != 0) {
$row = $sql->fetch();
$array['code'] = $row['code'];
$array['amount'] = $row['summa'];
$array['tid'] = $row['id'];
$array['bot'] = "Bot #".$row['bot_id'];
} else {
setcookie("tid", "", time() - 3600, '/');
}
}
file_put_contents('cache/'.$user['steamid'].'.txt', serialize($array), LOCK_EX);
exit(json_encode($array));
break;
case 'deposit_js1':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the deposit.')));
if($_COOKIE['tid']) {
exit(json_encode(array('success'=>false, 'error'=>'You isset active tradeoffer.')));
}
$sql = $db->query('SELECT `id`,`name` FROM `bots` ORDER BY rand() LIMIT 1');
$row = $sql->fetch();
$bot = $row['id'];
$partner = extract_partner($_GET['tradeurl']);
$token = extract_token($_GET['tradeurl']);
setcookie('tradeurl', $_GET['tradeurl'], time() + 3600 * 24 * 7, '/');
$out = curl('http://'.$ip.':'.(3000+$bot).'/SendDeposit/?assetids='.$_GET['assetids'].'&partner='.$partner.'&token='.$token.'&checksum='.$_GET['checksum'].'&steamid='.$user['steamid']);
$out = json_decode($out, true);
$out['bot'] = $row['name'];
if($out['success'] == true) {
$db->exec('INSERT INTO `trades` SET `id` = '.$db->quote($out['tid']).', `bot_id` = '.$db->quote($bot).', `code` = '.$db->quote($out['code']).', `status` = 0, `user` = '.$db->quote($user['steamid']).', `summa` = '.$db->quote($_GET['checksum']).', `time` = '.$db->quote(time()));
foreach ($out['items'] as $key => $value) {
$db->exec('INSERT INTO `items` SET `trade` = '.$db->quote($out['tid']).', `market_hash_name` = '.$db->quote($value['market_hash_name']).', `img` = '.$db->quote($value['icon_url']).', `botid` = '.$db->quote($bot).', `time` = '.$db->quote(time()));
}
setcookie('tid', $out['tid'], time() + 3600 * 24 * 7, '/');
}
exit(json_encode($out));
break;
case 'deposit_js':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the deposit.')));
if($_COOKIE['tid']) {
exit(json_encode(array('success'=>false, 'error'=>'You isset active tradeoffer.')));
}
$sql = $db->query('SELECT `id`,`name` FROM `bots` ORDER BY rand() LIMIT 1');
$row = $sql->fetch();
$bot = $row['id'];
$partner = extract_partner($_GET['tradeurl']);
$token = extract_token($_GET['tradeurl']);
setcookie('tradeurl', $_GET['tradeurl'], time() + 3600 * 24 * 7, '/');
$checksum = intval($_GET['checksum']);
$prices = file_get_contents('prices.txt');
$prices = json_decode($prices, true);
$out = curl('http://'.$ip.':'.(3000+$bot).'/SendDeposit/?assetids='.$_GET['assetids'].'&partner='.$partner.'&token='.$token.'&checksum='.$_GET['checksum'].'&steamid='.$user['steamid']);
$out = json_decode($out, true);
$out['bot'] = $row['name'];
if($out['success'] == true) {
$s = 0;
foreach ($out['items'] as $key => $value) {
$db->exec('INSERT INTO `items` SET `trade` = '.$db->quote($out['tid']).', `market_hash_name` = '.$db->quote($value['market_hash_name']).', `img` = '.$db->quote($value['icon_url']).', `botid` = '.$db->quote($bot).', `time` = '.$db->quote(time()));
$s += $prices['response']['items'][$value['market_hash_name']]['value']*10;
}
$db->exec('INSERT INTO `trades` SET `id` = '.$db->quote($out['tid']).', `bot_id` = '.$db->quote($bot).', `code` = '.$db->quote($out['code']).', `status` = 0, `user` = '.$db->quote($user['steamid']).', `summa` = '.$db->quote($s).', `time` = '.$db->quote(time()));
$out['amount'] = $s;
setcookie('tid', $out['tid'], time() + 3600 * 24 * 7, '/');
}
exit(json_encode($out));
break;
case 'confirm':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the confirm.')));
$tid = (int)$_GET['tid'];
$sql = $db->query('SELECT * FROM `trades` WHERE `id` = '.$db->quote($tid));
$row = $sql->fetch();
$out = curl('http://'.$ip.':'.(3000+$row['bot_id']).'/checkTrade?tid='.$row['id']);
$out = json_decode($out, true);
if(($out['success'] == true) && ($out['action'] == 'accept') && ($row['status'] != 1)) {
if($row['summa'] > 0) $db->exec('UPDATE `users` SET `balance` = `balance` + '.$row['summa'].' WHERE `steamid` = '.$db->quote($user['steamid']));
if($row['summa'] > 0) $db->exec('UPDATE `items` SET `status` = 1 WHERE `trade` = '.$db->quote($row['id']));
if($row['summa'] > 0) $db->exec('UPDATE `trades` SET `status` = 1 WHERE `id` = '.$db->quote($row['id']));
setcookie("tid", "", time() - 3600, '/');
} elseif(($out['success'] == true) && ($out['action'] == 'cross')) {
setcookie("tid", "", time() - 3600, '/');
$db->exec('DELETE FROM `items` WHERE `trade` = '.$db->quote($row['id']));
$db->exec('DELETE FROM `trades` WHERE `id` = '.$db->quote($row['id']));
} else {
exit(json_encode(array('success'=>false, 'error'=>'Trade is in procces or the coins are already credited')));
}
exit(json_encode($out));
break;
case 'get_bank_safe':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the widthdraw.')));
//if(($user['steamid'] != "76561198092088938") || ($user['steamid'] != "76561198025678566")) exit();
$g = curl('https://www.google.com/recaptcha/api/siteverify?secret=6LcFKx4TAAAAAA5RfMEEYHfSFj3met8MV_FWsZ2a&response='.$_GET['g-recaptcha-response']);
$g = json_decode($g, true);
if($g['success'] == true) {
$array = array('balance'=>$user['balance'],'error'=>'none','items'=>array(),'success'=>true);
$sql = $db->query('SELECT * FROM `items` WHERE `status` = 1');
$prices = file_get_contents('prices.txt');
$prices = json_decode($prices, true);
while ($row = $sql->fetch()) {
$array['items'][] = array('botid'=>$row['botid'],'img'=>'http://steamcommunity-a.akamaihd.net/economy/image/'.$row['img'],'name'=>$row['market_hash_name'],'assetid'=>$row['id'],'price'=>$prices['response']['items'][$row['market_hash_name']]['value']*10,'reject'=>'unknown items');
}
exit(json_encode($array));
}
break;
case 'withdraw_js':
if(!$user) exit(json_encode(array('success'=>false, 'error'=>'You must login to access the widthdraw.')));
$items = array();
$assetids = explode(',', $_GET['assetids']);
$sum = 0;
$prices = file_get_contents('prices.txt');
$prices = json_decode($prices, true);
$norm_itms = '';
foreach ($assetids as $key) {
if($key == "") continue;
$sql = $db->query('SELECT * FROM `items` WHERE `id` = '.$db->quote($key));
$row = $sql->fetch();
$items[$row['botid']] = $row['market_hash_name'];
$sum += $prices['response']['items'][$row['market_hash_name']]['value']*10;
$norm_itms = $norm_itms.$row['market_hash_name'].',';
}
$out = array('success'=>false,'error'=>'');
if(count($items) > 1) {
$out = array('success'=>false,'error'=>'You choose more bots');
} elseif($user['balance'] < $sum) {
$out = array('success'=>false,'error'=>'You dont have coins!');
} else {
reset($items);
$bot = key($items);
$s = $db->query('SELECT `name` FROM `bots` WHERE `id` = '.$db->quote($bot));
$r = $s->fetch();
$db->exec('UPDATE `users` SET `balance` = `balance` - '.$sum.' WHERE `steamid` = '.$user['steamid']);
$partner = extract_partner($_GET['tradeurl']);
$token = extract_token($_GET['tradeurl']);
$out = curl('http://'.$ip.':'.(3000+$bot).'/sendWithdraw/?names='.urlencode($norm_itms).'&partner='.$partner.'&token='.$token.'&checksum='.$_GET['checksum'].'&steamid='.$user['steamid']);
$out = json_decode($out, true);
if($out['success'] == false) {
$db->exec('UPDATE `users` SET `balance` = `balance` + '.$sum.' WHERE `steamid` = '.$user['steamid']);
} else {
foreach ($assetids as $key) {
$db->exec('DELETE FROM `items` WHERE `id` = '.$db->quote($key));
}
$out['bot'] = $r['name'];
$db->exec('INSERT INTO `trades` SET `id` = '.$db->quote($out['tid']).', `bot_id` = '.$db->quote($bot).', `code` = '.$db->quote($out['code']).', `status` = 2, `user` = '.$db->quote($user['steamid']).', `summa` = '.'-'.$db->quote($_GET['checksum']).', `time` = '.$db->quote(time()));
}
}
exit(json_encode($out));
break;
case 'exit':
setcookie("hash", "", time() - 3600, '/');
header('Location: /main');
exit();
break;
}
function getTemplate($name, $in = null) {
extract($in);
ob_start();
include "template/" . $name;
$text = ob_get_clean();
return $text;
}
function curl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
function extract_token($url) {
parse_str(parse_url($url, PHP_URL_QUERY), $queryString);
return isset($queryString['token']) ? $queryString['token'] : false;
}
function extract_partner($url) {
parse_str(parse_url($url, PHP_URL_QUERY), $queryString);
return isset($queryString['partner']) ? $queryString['partner'] : false;
}
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb2+deb7u2
-- http://www.phpmyadmin.net
--
-- Хост: localhost
-- Время создания: Май 03 2016 г., 06:13
-- Версия сервера: 5.5.47
-- Версия PHP: 5.4.45-0+deb7u2
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- База данных: csgo
--
-- --------------------------------------------------------
--
-- Структура таблицы bets
--
CREATE TABLE IF NOT EXISTS bets (
id int(11) NOT NULL AUTO_INCREMENT,
user varchar(17) NOT NULL,
collect int(11) NOT NULL DEFAULT '0',
amount int(11) NOT NULL,
lower int(11) NOT NULL,
upper int(11) NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=13720 ;
--
-- Дамп данных таблицы bets
--
INSERT INTO bets (id, user, collect, amount, lower, upper) VALUES
(1, '76561198116891295', 0, 20, 1, 7),
(2, '76561198075826503', 0, 20, 1, 7),
(3, '76561198075826503', 0, 40, 8, 14),
(4, '76561198254506447', 0, 20, 1, 7),
(5, '76561198116891295', 0, 40, 8, 14),
(6, '76561198154533700', 1, 20, 1, 7),
(7, '76561198108015229', 0, 20, 8, 14),
(8, '76561198104745372', 1, 20, 1, 7),
(9, '76561198075807281', 0, 20, 0, 0),
(10, '76561198154533700', 1, 40, 1, 7),
(11, '76561198152801267', 1, 20, 8, 14),
(12, '76561198155325282', 0, 20, 1, 7),
(13, '76561198152801267', 1, 40, 0, 0),
(14, '76561198161804145', 0, 10, 0, 0),
(15, '76561198161804145', 0, 10, 8, 14),
(16, '76561198155325282', 0, 40, 8, 14),
(17, '76561198171824503', 0, 20, 8, 14),
(18, '76561198171824503', 0, 40, 1, 7),
(19, '76561198155325282', 0, 80, 8, 14),
(20, '76561198105659052', 0, 20, 1, 7),
(21, '76561198275060455', 0, 20, 8, 14),
(22, '76561198178444761', 1, 20, 1, 7),
(23, '76561198194735950', 0, 20, 8, 14),
(24, '76561198280127640', 1, 20, 0, 99999),
(25, '76561198194735950', 0, 10, 8, 14),
(26, '76561198044977970', 0, 10, 1, 7),
(27, '76561198155325282', 0, 160, 1, 7),
(28, '76561198280127640', 1, 40, 0, 99999),
(29, '76561198281930959', 1, 10, 1, 7),
(30, '76561198281930959', 1, 10, 8, 14),
(31, '76561198280127640', 1, 80, 0, 99999),
(32, '76561198044977970', 0, 10, 1, 7),
(33, '76561198194735950', 0, 30, 1, 7),
(34, '76561198271095796', 0, 20, 8, 14),
(35, '76561198281930959', 1, 20, 8, 14),
(36, '76561198280691206', 0, 20, 1, 7),
(37, '76561198044977970', 0, 10, 1, 7),
(38, '76561198281702913', 0, 20, 0, 0),
(39, '76561198044977970', 0, 20, 8, 14),
(40, '76561198139142064', 0, 10, 1, 7),
(41, '76561198185592215', 0, 10, 8, 14),
(42, '76561198280691206', 0, 40, 8, 14),
(43, '76561198139142064', 0, 10, 1, 7),
(44, '76561198280127640', 1, 1120, 0, 99999),
(45, '76561198141069253', 0, 20, 8, 14),
(46, '76561198185592215', 0, 10, 1, 7),
(47, '76561198044977970', 0, 10, 8, 14),
(48, '76561198139142064', 0, 10, 1, 7),
(49, '76561198165648623', 1, 20, 1, 7),
(50, '76561198273612587', 0, 20, 8, 14),
(51, '76561198196117674', 0, 5, 8, 14),
(52, '76561198280127640', 1, 2240, 0, 99999),
(53, '76561198139142064', 0, 10, 8, 14),
(54, '76561198139142064', 0, 10, 8, 14),
(55, '76561198135185927', 0, 20, 1, 7),
(56, '76561198139142064', 0, 10, 8, 14),
(57, '76561198168672417', 1, 20, 1, 7),
(58, '76561198196117674', 0, 3, 0, 0),
(59, '76561198155325282', 0, 40, 8, 14),
(60, '76561198196117674', 0, 12, 1, 7),
(61, '76561198155325282', 0, 100, 8, 14),
(62, '76561198280517516', 0, 20, 8, 14),
(63, '76561198196117674', 0, 5, 1, 7),
(64, '76561198196117674', 0, 2, 0, 0),
(65, '76561198274254922', 0, 20, 0, 0),
(66, '76561198274254922', 0, 80, 8, 14),
(67, '76561198024472089', 0, 20, 8, 14),
(68, '76561198135185927', 0, 40, 1, 7),
(69, '76561198168672417', 1, 30, 8, 14),
(70, '76561198155325282', 0, 100, 8, 14),
(71, '76561198280127640', 1, 4480, 0, 99999),
(72, '76561198196117674', 0, 3, 0, 0),
(73, '76561198196117674', 0, 5, 1, 7),
(74, '76561198196117674', 0, 1, 0, 0),
(75, '76561198280127640', 1, 8960, 0, 99999),
(76, '76561198164948483', 0, 20, 8, 14),
(77, '76561198242221678', 0, 20, 8, 14),
(78, '76561198196117674', 0, 6, 1, 7),
(79, '76561198168672417', 1, 10, 8, 14),
(80, '76561198135185927', 0, 80, 1, 7),
(81, '76561198168672417', 1, 20, 8, 14),
(82, '76561198280127640', 1, 17920, 0, 99999),
(83, '76561198242221678', 0, 30, 1, 7),
(84, '76561198233013840', 0, 10, 1, 7),
(85, '76561198196117674', 0, 12, 8, 14),
(86, '76561198196117674', 0, 2, 0, 0),
(87, '76561198233013840', 0, 10, 1, 7),
(88, '76561198242221678', 0, 10, 0, 0),
(89, '76561198242221678', 0, 60, 1, 7),
(90, '76561198280127640', 1, 35840, 0, 99999),
(91, '76561198196117674', 0, 8, 8, 14),
(92, '76561198254314600', 0, 20, 8, 14),
(93, '76561198233013840', 0, 20, 8, 14),
(94, '76561198247785380', 0, 10, 1, 7),
(95, '76561198280127640', 1, 71680, 0, 99999),
(96, '76561198240649066', 0, 20, 8, 14),
(97, '76561198240649066', 0, 40, 1, 7),
(98, '76561198247785380', 0, 10, 1, 7),
(99, '76561198233013840', 0, 20, 1, 7),
(100, '76561198254314600', 0, 40, 8, 14),
(101, '76561198280127640', 1, 143360, 0, 99999),
(102, '76561198164948483', 0, 40, 1, 7),
(103, '76561197978162262', 0, 1, 8, 14),
(104, '76561198240649066', 0, 80, 1, 7),
(105, '76561197978162262', 0, 2, 8, 14),
(106, '76561198280127640', 1, 1000, 1, 7),
(107, '76561198280127640', 1, 1000, 1, 7),
(108, '76561198280127640', 1, 1000, 1, 7),
(109, '76561198233013840', 0, 20, 1, 7),
(110, '76561198283249088', 0, 20, 8, 14),
(111, '76561198233013840', 0, 40, 1, 7),
(112, '76561198249502812', 0, 20, 8, 14),
(113, '76561198247785380', 0, 20, 1, 7),
(114, '76561198233013840', 0, 50, 8, 14),
(115, '76561198254047052', 0, 20, 1, 7),
(116, '76561198133531979', 0, 20, 8, 14),
(117, '76561197969780467', 1, 1, 0, 0),
(118, '76561198280127640', 1, 10000, 1, 7),
(119, '76561198247785380', 0, 20, 1, 7),
(120, '76561197969780467', 1, 1, 1, 7),
(121, '76561197969780467', 1, 1, 1, 7),
(122, '76561198283249088', 0, 40, 1, 7),
(123, '76561198247785380', 0, 20, 1, 7),
(124, '76561198133531979', 0, 40, 1, 7),
(125, '76561198280127640', 1, 136860, 1, 7),
(126, '76561198233013840', 0, 50, 1, 7),
(127, '76561198280127640', 1, 10000, 0, 0),
(128, '76561197969780467', 1, 1, 1, 7),
(129, '76561197969780467', 1, 1, 1, 7),
(130, '76561197969780467', 1, 1, 1, 7),
(131, '76561198280127640', 1, 10000, 0, 0),
(132, '76561198233013840', 0, 50, 1, 7),
(133, '76561198233013840', 0, 30, 1, 7),
(134, '76561198145428714', 0, 10, 0, 0),
(135, '76561198145428714', 0, 10, 0, 0),
(136, '76561198058211181', 0, 20, 8, 14),
(137, '76561198058211181', 0, 40, 1, 7),
(138, '76561198280127640', 1, 116860, 1, 7),
(139, '76561198072481340', 0, 20, 8, 14),
(140, '76561197969780467', 1, 1, 8, 14),
(141, '76561198168909788', 0, 20, 1, 7),
(142, '76561198058211181', 0, 80, 8, 14),
(143, '76561198179060183', 1, 20, 1, 7),
(144, '76561198280127640', 1, 116860, 0, 99999),
(145, '76561198272228559', 0, 10, 1, 7),
(146, '76561197969780467', 1, 6, 1, 7),
(147, '76561198280127640', 1, 116860, 0, 99999),
(148, '76561197969780467', 1, 7, 1, 7),
(149, '76561198267950759', 0, 2, 8, 14),
(150, '76561198128385596', 1, 20, 8, 14),
(151, '76561198280127640', 1, 467440, 0, 99999),
(152, '76561198272228559', 0, 30, 8, 14),
(153, '76561197969780467', 1, 1, 1, 7),
(154, '76561198280127640', 1, 934880, 0, 99999),
(155, '76561198267950759', 0, 2, 1, 7),
(156, '76561198175098474', 0, 20, 1, 7),
(157, '76561198272228559', 0, 20, 1, 7),
(158, '76561198128385596', 1, 20, 1, 7),
(159, '76561197969780467', 1, 5, 1, 7),
(160, '76561197969780467', 1, 5, 1, 7),
(161, '76561197969780467', 1, 5, 0, 0),
(162, '76561198120878697', 0, 5, 8, 14),
(163, '76561198272228559', 0, 40, 0, 0),
(164, '76561198280127640', 1, 1869760, 0, 99999),
(165, '76561197969780467', 1, 10, 8, 14),
(166, '76561198128385596', 1, 20, 0, 0),
(167, '76561198008791853', 0, 1, 1, 7),
(168, '76561198158551553', 0, 10, 1, 7),
(169, '76561198158551553', 0, 10, 1, 7),
(170, '76561198008791853', 0, 1, 1, 7),
(171, '76561198280127640', 1, 3739520, 0, 99999),
(172, '76561198120878697', 0, 5, 1, 7),
(173, '76561198008791853', 0, 2, 1, 7),
(174, '76561198158551553', 0, 20, 0, 0),
(175, '76561198120878697', 0, 10, 1, 7),
(176, '76561198008791853', 0, 4, 1, 7),
(177, '76561198280127640', 1, 5000000, 0, 99999),
(178, '76561198280127640', 1, 2479040, 0, 99999),
(179, '76561198285023363', 1, 5, 1, 7),
(180, '76561198036758445', 1, 20, 1, 7),
(181, '76561198170583391', 0, 20, 8, 14),
(182, '76561198280127640', 1, 5000000, 0, 99999),
(183, '76561198285023363', 1, 10, 1, 7),
(184, '76561198008791853', 0, 8, 1, 7),
(185, '76561198280127640', 1, 5000000, 0, 99999),
(186, '76561198280127640', 1, 4958080, 0, 99999),
(187, '76561198170583391', 0, 40, 1, 7),
(188, '76561198008791853', 0, 6, 1, 7),
(189, '76561198285023363', 1, 5, 1, 7),
(190, '76561198127950533', 1, 20, 1, 7),
(191, '76561198280127640', 1, 5000000, 1, 7),
(192, '76561198127950533', 1, 40, 8, 14),
(193, '76561198065429748', 1, 20, 8, 14),
(194, '76561198008791853', 0, 12, 1, 7),
(195, '76561198259631015', 0, 20, 8, 14),
(196, '76561198280127640', 1, 5000000, 8, 14),
(197, '76561198280127640', 1, 625000, 0, 0),
(198, '76561198064809217', 1, 5, 1, 7),
(199, '76561198209975017', 0, 20, 8, 14),
(200, '76561198021583992', 1, 6, 8, 14),
(201, '76561198021583992', 1, 1, 0, 0),
(202, '76561198135918601', 0, 20, 1, 7),
(203, '76561198064809217', 1, 15, 1, 7),
(204, '76561198185048367', 0, 20, 1, 7),
(205, '76561198280127640', 1, 10000, 1, 7),
(206, '76561198280127640', 1, 10000, 8, 14),
(207, '76561198280127640', 1, 10000, 0, 0),
(208, '76561198285023363', 1, 5, 1, 7),
(209, '76561198021583992', 1, 1, 0, 0),
(210, '76561198021583992', 1, 16, 1, 7),
(211, '76561198064809217', 1, 30, 1, 7),
(212, '76561198185048367', 0, 40, 8, 14),
(213, '76561198021583992', 1, 2, 0, 0),
(214, '76561198021583992', 1, 15, 1, 7),
(215, '76561198255483446', 1, 20, 1, 7),
(216, '76561198185253055', 1, 20, 1, 7),
(217, '76561198021583992', 1, 25, 1, 7),
(218, '76561198285023363', 1, 5, 1, 7),
(219, '76561198168389176', 1, 20, 8, 14),
(220, '76561198017264564', 1, 2, 0, 0),
(221, '76561198291693401', 0, 20, 8, 14),
(222, '76561198017264564', 1, 5, 8, 14),
(223, '76561198185048367', 0, 80, 1, 7),
(224, '76561198280127640', 1, 5000000, 1, 7),
(225, '76561198280127640', 1, 5000000, 1, 7),
(226, '76561198017264564', 1, 3, 0, 0),
(227, '76561198017264564', 1, 10, 8, 14),
(228, '76561198280127640', 1, 5000000, 8, 14),
(229, '76561198280127640', 1, 312500, 0, 0),
(230, '76561198215279147', 0, 20, 8, 14),
(231, '76561198186012613', 0, 20, 8, 14),
(232, '76561198191307509', 0, 20, 1, 7),
(233, '76561198280127640', 1, 5000000, 1, 7),
(234, '76561198017264564', 1, 12, 1, 7),
(235, '76561198138715028', 1, 1, 1, 7),
(236, '76561198285023363', 1, 5, 8, 14),
(237, '76561198280127640', 1, 5000000, 1, 7),
(238, '76561198138715028', 1, 2, 1, 7),
(239, '76561198017264564', 1, 4, 1, 7),
(240, '76561198280127640', 1, 1250000, 0, 0),
(241, '76561198081054067', 1, 1, 1, 7),
(242, '76561198138715028', 1, 2, 0, 0),
(243, '76561198113000872', 0, 1, 1, 7),
(244, '76561198280127640', 1, 5000000, 1, 7),
(245, '76561198147678551', 0, 20, 8, 14),
(246, '76561198280127640', 1, 5000000, 1, 7),
(247, '76561198280127640', 1, 5000000, 1, 7),
(248, '76561198280127640', 1, 5000000, 1, 7),
(249, '76561198138715028', 1, 1, 1, 7),
(250, '76561198280127640', 1, 5000000, 1, 7),
(251, '76561198280127640', 1, 5000000, 1, 7),
(252, '76561198081054067', 1, 9, 1, 7),
(253, '76561198292195111', 1, 10, 1, 7),
(254, '76561198017264564', 1, 10, 8, 14),
(255, '76561198280223100', 1, 1, 1, 7),
(256, '76561198138715028', 1, 1, 1, 7),
(257, '76561198142073460', 1, 5, 1, 7),
(258, '76561198285023363', 1, 5, 8, 14),
(259, '76561198153952365', 0, 10, 8, 14),
(260, '76561198017264564', 1, 10, 8, 14),
(261, '76561198280127640', 1, 5000000, 0, 0),
(262, '76561198280127640', 1, 5000000, 8, 14),
(263, '76561198081054067', 1, 4, 0, 0),
(264, '76561198138715028', 1, 1, 0, 0),
(265, '76561198081054067', 1, 2, 0, 0),
(266, '76561198017264564', 1, 5, 0, 0),
(267, '76561198147678551', 0, 100, 1, 7),
(268, '76561198280223100', 1, 1, 8, 14),
(269, '76561198113000872', 0, 10, 0, 0),
(270, '76561198280127640', 1, 5000000, 0, 0),
(271, '76561198142073460', 1, 25, 8, 14),
(272, '76561198185048367', 0, 160, 0, 0),
(273, '76561198138715028', 1, 1, 8, 14),
(274, '76561198185048367', 0, 40, 0, 0),
(275, '76561198285023363', 1, 10, 8, 14),
(276, '76561198081054067', 1, 4, 0, 0),
(277, '76561198237237468', 0, 20, 0, 0),
(278, '76561198147678551', 0, 10, 0, 0),
(279, '76561198153952365', 0, 10, 1, 7),
(280, '76561198147678551', 0, 190, 1, 7),
(281, '76561198280127640', 1, 5000000, 8, 14),
(282, '76561198280223100', 1, 2, 8, 14),
(283, '76561198280127640', 1, 5000000, 8, 14),
(284, '76561198280127640', 1, 5000000, 8, 14),
(285, '76561198185048367', 0, 60, 0, 0),
(286, '76561198113000872', 0, 10, 1, 7),
(287, '76561198153952365', 0, 10, 8, 14),
(288, '76561198138715028', 1, 2, 8, 14),
(289, '76561198138711991', 0, 20, 8, 14),
(290, '76561198285023363', 1, 5, 8, 14),
(291, '76561198081054067', 1, 8, 8, 14),
(292, '76561198017264564', 1, 5, 0, 0),
(293, '76561198017264564', 1, 20, 8, 14),
(294, '76561198147678551', 0, 30, 0, 0),
(295, '76561197978162262', 0, 1, 8, 14),
(296, '76561198147678551', 0, 200, 1, 7),
(297, '76561198280223100', 1, 2, 8, 14),
(298, '76561198292195111', 1, 10, 8, 14),
(299, '76561198153952365', 0, 10, 1, 7),
(300, '76561198147678551', 0, 50, 0, 0),
(301, '76561198095561740', 0, 20, 8, 14),
(302, '76561198138715028', 1, 1, 1, 7),
(303, '76561198280127640', 1, 5000000, 1, 7),
(304, '76561198081054067', 1, 2, 1, 7),
(305, '76561198280127640', 1, 5000000, 1, 7),
(306, '76561198185048367', 0, 500, 1, 7),
(307, '76561198280127640', 1, 5000000, 0, 0),
(308, '76561198147678551', 0, 100, 8, 14),
(309, '76561198081054067', 1, 2, 1, 7),
(310, '76561198081054067', 1, 2, 0, 0),
(311, '76561198280223100', 1, 4, 8, 14),
(312, '76561198191171505', 0, 1, 8, 14),
(313, '76561198113000872', 0, 1, 1, 7),
(314, '76561198280127640', 1, 5000000, 8, 14),
(315, '76561198280127640', 1, 5000000, 0, 0),
(316, '76561198280127640', 1, 5000000, 8, 14),
(317, '76561198081054067', 1, 4, 8, 14),
(318, '76561198138711991', 0, 40, 1, 7),
(319, '76561198081054067', 1, 2, 0, 0),
(320, '76561198138715028', 1, 1, 0, 0),
(321, '76561198285023363', 1, 5, 8, 14),
(322, '76561198138715028', 1, 1, 8, 14),
(323, '76561198017264564', 1, 5, 0, 0),
(324, '76561198017264564', 1, 25, 8, 14),
(325, '76561198280223100', 1, 2, 1, 7),
(326, '76561198191171505', 0, 2, 8, 14),
(327, '76561198138715028', 1, 1, 8, 14),
(328, '76561198234539720', 1, 10, 8, 14),
(329, '76561198142757886', 1, 20, 0, 0),
(330, '76561198081054067', 1, 2, 0, 0),
(331, '76561198044977970', 0, 600, 8, 14),
(332, '76561198191171505', 0, 4, 8, 14),
(333, '76561198234539720', 1, 10, 1, 7),
(334, '76561198280127640', 1, 5000000, 1, 7),
(335, '76561198280127640', 1, 5000000, 1, 7),
(336, '76561198280127640', 1, 5000000, 0, 0),
(337, '76561198281511038', 0, 10, 1, 7),
(338, '76561198138715028', 1, 1, 1, 7),
(339, '76561198285023363', 1, 5, 8, 14),
(340, '76561198138715028', 1, 1, 0, 0),
(341, '76561198196336655', 1, 20, 1, 7),
(342, '76561198081054067', 1, 2, 1, 7),
(343, '76561198081054067', 1, 1, 0, 0),
(344, '76561198081054067', 1, 2, 8, 14),
(345, '76561198081054067', 1, 1, 0, 0),
(346, '76561198081054067', 1, 2, 1, 7),
(347, '76561198135859049', 0, 100, 8, 14),
(348, '76561198135859049', 0, 500, 8, 14),
(349, '76561198168073245', 0, 213123, 1, 7),
(350, '76561198196336655', 1, 20, 8, 14),
(351, '76561198196336655', 1, 20, 8, 14),
(352, '76561198081054067', 1, 1, 8, 14),
(353, '76561198135859049', 0, 400, 8, 14),
(354, '76561198081054067', 1, 1, 1, 7),
(355, '76561198168073245', 0, 426246, 8, 14),
(356, '76561198081054067', 1, 2, 8, 14),
(357, '76561198192195337', 1, 10, 1, 7),
(358, '76561198042660397', 0, 10, 1, 7),
(359, '76561198081054067', 1, 2, 0, 0),
(360, '76561198081054067', 1, 3, 1, 7),
(361, '76561198168073245', 0, 426246, 8, 14),
(362, '76561198168073245', 0, 426246, 8, 14),
(363, '76561198192195337', 1, 10, 8, 14),
(364, '76561198042660397', 0, 10, 0, 0),
(365, '76561198168073245', 0, 1704984, 1, 7),
(366, '76561198081054067', 1, 3, 1, 7),
(367, '76561198171192845', 1, 2, 8, 14),
(368, '76561198192195337', 1, 10, 1, 7),
(369, '76561198089256196', 1, 20, 1, 7),
(370, '76561198168073245', 0, 3409968, 1, 7),
(371, '76561198171192845', 1, 4, 1, 7),
(372, '76561198081054067', 1, 6, 1, 7),
(373, '76561198192195337', 1, 10, 1, 7),
(374, '76561198253856668', 0, 20, 8, 14),
(375, '76561198200536314', 0, 20, 0, 0),
(376, '76561198192195337', 1, 20, 1, 7),
(377, '76561198081054067', 1, 2, 1, 7),
(378, '76561198171192845', 1, 8, 0, 0),
(379, '76561198081054067', 1, 2, 8, 14),
(380, '76561198125940456', 1, 20, 8, 14),
(381, '76561198171192845', 1, 1, 0, 0),
(382, '76561198192195337', 1, 20, 8, 14),
(383, '76561198081054067', 1, 2, 1, 7),
(384, '76561198171192845', 1, 1, 8, 14),
(385, '76561198293210517', 1, 1, 0, 0),
(386, '76561198192195337', 1, 40, 8, 14),
(387, '76561198125940456', 1, 40, 8, 14),
(388, '76561198089256196', 1, 40, 8, 14),
(389, '76561198171192845', 1, 1, 0, 0),
(390, '76561198293210517', 1, 1, 8, 14),
(391, '76561198192195337', 1, 10, 0, 0),
(392, '76561198192195337', 1, 10, 1, 7),
(393, '76561198081054067', 1, 1, 0, 0),
(394, '76561198081054067', 1, 2, 8, 14),
(395, '76561198273063424', 0, 10, 0, 0),
(396, '76561198171192845', 1, 1, 0, 0),
(397, '76561198273063424', 0, 10, 8, 14),
(398, '76561198293210517', 1, 1, 0, 0),
(399, '76561198081054067', 1, 2, 0, 0),
(400, '76561198081054067', 1, 1, 8, 14),
(401, '76561198015167673', 0, 20, 8, 14),
(402, '76561198081054067', 1, 2, 8, 14),
(403, '76561198136317033', 0, 20, 8, 14),
(404, '76561198293210517', 1, 1, 1, 7),
(405, '76561198017767693', 0, 15, 1, 7),
(406, '76561198017767693', 0, 5, 0, 0),
(407, '76561198171192845', 1, 1, 0, 0),
(408, '76561198293210517', 1, 1, 8, 14),
(409, '76561198017767693', 0, 5, 0, 0),
(410, '76561198081054067', 1, 2, 1, 7),
(411, '76561198017767693', 0, 20, 1, 7),
(412, '76561198171192845', 1, 1, 0, 0),
(413, '76561198017767693', 0, 5, 0, 0),
(414, '76561198293210517', 1, 2, 1, 7),
(415, '76561198081054067', 1, 1, 0, 0),
(416, '76561198081054067', 1, 3, 1, 7),
(417, '76561198119926813', 0, 20, 8, 14),
(418, '76561198081054067', 1, 2, 1, 7),
(419, '76561198116963266', 0, 10, 1, 7),
(420, '76561198293210517', 1, 12, 8, 14),
(421, '76561198116963266', 0, 5, 1, 7),
(422, '76561198171629477', 0, 20, 0, 0),
(423, '76561198190205037', 1, 10, 1, 7),
(424, '76561198190205037', 1, 10, 1, 7),
(425, '76561198262977719', 1, 20, 8, 14),
(426, '76561198293210517', 1, 7, 8, 14),
(427, '76561198116963266', 0, 10, 8, 14),
(428, '76561198190205037', 1, 10, 8, 14),
(429, '76561198116963266', 0, 20, 1, 7),
(430, '76561198081054067', 1, 14, 1, 7),
(431, '76561198116963266', 0, 5, 0, 0),
(432, '76561198085927719', 0, 10, 1, 7),
(433, '76561198085927719', 0, 10, 8, 14),
(434, '76561198046934315', 1, 20, 8, 14),
(435, '76561198190205037', 1, 20, 1, 7),
(436, '76561198081054067', 1, 10, 1, 7),
(437, '76561198116963266', 0, 10, 1, 7),
(438, '76561198198708361', 0, 10, 0, 0),
(439, '76561198116963266', 0, 10, 1, 7),
(440, '76561198190205037', 1, 5, 0, 0),
(441, '76561198198708361', 0, 10, 1, 7),
(442, '76561198190205037', 1, 10, 1, 7),
(443, '76561198190205037', 1, 5, 0, 0),
(444, '76561198081054067', 1, 5, 1, 7),
(445, '76561198144504557', 1, 20, 8, 14),
(446, '76561198081054067', 1, 1, 0, 0),
(447, '76561198135859049', 0, 20, 8, 14),
(448, '76561198198708361', 0, 10, 8, 14),
(449, '76561198198708361', 0, 10, 8, 14),
(450, '76561198190205037', 1, 10, 1, 7),
(451, '76561198190205037', 1, 5, 0, 0),
(452, '76561198116963266', 0, 10, 8, 14),
(453, '76561198081054067', 1, 1, 1, 7),
(454, '76561198081054067', 1, 1, 1, 7),
(455, '76561198132803608', 1, 20, 0, 0),
(456, '76561198190205037', 1, 20, 1, 7),
(457, '76561198190205037', 1, 5, 0, 0),
(458, '76561198081054067', 1, 1, 0, 0),
(459, '76561198081054067', 1, 2, 1, 7),
(460, '76561198245090510', 0, 20, 0, 0),
(461, '76561198081054067', 1, 2, 8, 14),
(462, '76561198132156094', 0, 20, 1, 7),
(463, '76561198190205037', 1, 10, 0, 0),
(464, '76561198190205037', 1, 40, 8, 14),
(465, '76561198132156094', 0, 20, 8, 14),
(466, '76561198081054067', 1, 3, 8, 14),
(467, '76561198190205037', 1, 30, 8, 14),
(468, '76561198116963266', 0, 60, 1, 7),
(469, '76561198190205037', 1, 120, 1, 7),
(470, '76561198132156094', 0, 20, 8, 14),
(471, '76561198081054067', 1, 2, 1, 7),
(472, '76561198116963266', 0, 40, 8, 14),
(473, '76561198081054067', 1, 5, 8, 14),
(474, '76561198081054067', 1, 5, 1, 7),
(475, '76561198116963266', 0, 80, 8, 14),
(476, '76561198118681747', 1, 20, 1, 7),
(477, '76561198081054067', 1, 5, 8, 14),
(478, '76561198132156094', 0, 20, 1, 7),
(479, '76561198132156094', 0, 20, 1, 7),
(480, '76561198092620970', 1, 10, 8, 14),
(481, '76561198081054067', 1, 3, 8, 14),
(482, '76561198132156094', 0, 20, 8, 14),
(483, '76561198081054067', 1, 5, 1, 7),
(484, '76561198092620970', 1, 10, 1, 7),
(485, '76561198092620970', 1, 10, 1, 7),
(486, '76561198132156094', 0, 20, 8, 14),
(487, '76561198116963266', 0, 80, 1, 7),
(488, '76561198294611902', 0, 10, 1, 7),
(489, '76561198294611902', 0, 10, 1, 7),
(490, '76561198081054067', 1, 3, 8, 14),
(491, '76561198132156094', 0, 20, 1, 7),
(492, '76561198092620970', 1, 10, 8, 14),
(493, '76561198042451953', 0, 1110, 1, 7),
(494, '76561198116963266', 0, 160, 8, 14),
(495, '76561198116963266', 0, 10, 1, 7),
(496, '76561198294611902', 0, 20, 1, 7),
(497, '76561198081054067', 1, 2, 8, 14),
(498, '76561198081054067', 1, 1, 0, 0),
(499, '76561198132156094', 0, 20, 1, 7),
(500, '76561198081054067', 1, 1, 0, 0),
(501, '76561198081054067', 1, 2, 1, 7),
(502, '76561198116650754', 0, 20, 1, 7),
(503, '76561198116963266', 0, 10, 1, 7),
(504, '76561198148488520', 0, 20, 8, 14),
(505, '76561198081054067', 1, 4, 1, 7),
(506, '76561198132156094', 0, 20, 8, 14),
(507, '76561198116963266', 0, 20, 8, 14),
(508, '76561198148488520', 0, 30, 1, 7),
(509, '76561198148488520', 0, 10, 0, 0),
(510, '76561198116963266', 0, 40, 8, 14),
(511, '76561198081054067', 1, 4, 8, 14),
(512, '76561198294611902', 0, 5, 0, 0),
(513, '76561198081054067', 1, 10, 8, 14),
(514, '76561198294611902', 0, 15, 8, 14),
(515, '76561198116963266', 0, 80, 8, 14),
(516, '76561198253302887', 0, 1, 8, 14),
(517, '76561198081054067', 1, 10, 1, 7),
(518, '76561198081054067', 1, 1, 0, 0),
(519, '76561198294611902', 0, 20, 1, 7),
(520, '76561198132156094', 0, 20, 1, 7),
(521, '76561198132156094', 0, 20, 8, 14),
(522, '76561198253302887', 0, 2, 1, 7),
(523, '76561198294611902', 0, 30, 1, 7),
(524, '76561198081054067', 1, 3, 1, 7),
(525, '76561198081054067', 1, 1, 0, 0),
(526, '76561198294611902', 0, 5, 0, 0),
(527, '76561198294611902', 0, 5, 0, 0),
(528, '76561198253302887', 0, 11, 8, 14),
(529, '76561198132156094', 0, 20, 8, 14),
(530, '76561198253302887', 0, 3, 0, 0),
(531, '76561198081054067', 1, 1, 1, 7),
(532, '76561198253302887', 0, 7, 1, 7),
(533, '76561198132156094', 0, 80, 8, 14),
(534, '76561198294611902', 0, 5, 0, 0),
(535, '76561198294611902', 0, 35, 1, 7),
(536, '76561198081054067', 1, 1, 8, 14),
(537, '76561198294611902', 0, 5, 0, 0),
(538, '76561198294611902', 0, 15, 8, 14),
(539, '76561198119926813', 0, 40, 8, 14),
(540, '76561198081054067', 1, 3, 8, 14),
(541, '76561198081054067', 1, 1, 0, 0),
(542, '76561198132156094', 0, 10, 1, 7),
(543, '76561198288986404', 0, 20, 8, 14),
(544, '76561198132156094', 0, 10, 1, 7),
(545, '76561198081054067', 1, 3, 8, 14),
(546, '76561198272252028', 0, 20, 1, 7),
(547, '76561198132156094', 0, 20, 8, 14),
(548, '76561198081054067', 1, 3, 1, 7),
(549, '76561198081054067', 1, 3, 1, 7),
(550, '76561198132954446', 0, 20, 1, 7),
(551, '76561198132156094', 0, 5, 8, 14),
(552, '76561198132156094', 0, 15, 1, 7),
(553, '76561198081054067', 1, 5, 8, 14),
(554, '76561198081054067', 1, 1, 0, 0),
(555, '76561198132954446', 0, 40, 1, 7),
(556, '76561198132156094', 0, 10, 8, 14),
(557, '76561198132954446', 0, 80, 8, 14),
(558, '76561198081054067', 1, 3, 8, 14),
(559, '76561198081054067', 1, 1, 0, 0),
(560, '76561198132156094', 0, 5, 8, 14),
(561, '76561198004941052', 0, 20, 1, 7),
(562, '76561198081054067', 1, 6, 8, 14),
(563, '76561198132156094', 0, 5, 1, 7),
(564, '76561198081054067', 1, 12, 8, 14),
(565, '76561198081054067', 1, 5, 8, 14),
(566, '76561198129097420', 0, 20, 0, 0),
(567, '76561198132954446', 0, 160, 8, 14),
(568, '76561198081054067', 1, 15, 8, 14),
(569, '76561198132954446', 0, 320, 8, 14),
(570, '76561198081054067', 1, 30, 8, 14),
(571, '76561198132156094', 0, 10, 1, 7),
(572, '76561198132156094', 0, 20, 1, 7),
(573, '76561198132156094', 0, 20, 8, 14),
(574, '76561198132156094', 0, 20, 8, 14),
(575, '76561198180593422', 0, 5, 8, 14),
(576, '76561198042451953', 0, 500, 1, 7),
(577, '76561198042451953', 0, 500, 1, 7),
(578, '76561198180593422', 0, 2, 8, 14),
(579, '76561198132156094', 0, 40, 8, 14),
(580, '76561198180593422', 0, 10, 1, 7),
(581, '76561198132156094', 0, 20, 1, 7),
(582, '76561198180593422', 0, 17, 1, 7),
(583, '76561198098949125', 0, 20, 1, 7),
(584, '76561198180593422', 0, 8, 1, 7),
(585, '76561198132156094', 0, 10, 8, 14),
(586, '76561198180593422', 0, 17, 1, 7),
(587, '76561198132156094', 0, 10, 8, 14),
(588, '76561198180593422', 0, 9, 8, 14),
(589, '76561198042451953', 0, 110, 8, 14),
(590, '76561198132156094', 0, 20, 1, 7),
(591, '76561198180593422', 0, 18, 0, 0),
(592, '76561198132156094', 0, 40, 1, 7),
(593, '76561198165234468', 0, 10, 1, 7),
(594, '76561198132156094', 0, 20, 1, 7),
(595, '76561198165234468', 0, 10, 1, 7),
(596, '76561198227676932', 1, 20, 1, 7),
(597, '76561198132156094', 0, 10, 8, 14),
(598, '76561198042451953', 0, 110, 8, 14),
(599, '76561198132156094', 0, 20, 1, 7),
(600, '76561198195165970', 1, 20, 1, 7),
(601, '76561198227676932', 1, 20, 8, 14),
(602, '76561198000233544', 1, 20, 8, 14),
(603, '76561198076125197', 0, 20, 1, 7),
(604, '76561198132156094', 0, 10, 8, 14),
(605, '76561198111087296', 1, 20, 1, 7),
(606, '76561198227676932', 1, 20, 8, 14),
(607, '76561198160243434', 1, 20, 0, 0),
(608, '76561198195165970', 1, 40, 0, 0),
(609, '76561198177209821', 1, 10, 8, 14),
(610, '76561198076125197', 0, 40, 8, 14),
(611, '76561198227676932', 1, 20, 8, 14),
(612, '76561198165234468', 0, 1, 0, 0),
(613, '76561198177209821', 1, 10, 1, 7),
(614, '76561198165234468', 0, 9, 1, 7),
(615, '76561198132156094', 0, 20, 8, 14),
(616, '76561198042451953', 0, 110, 8, 14),
(617, '76561198177209821', 1, 10, 0, 0),
(618, '76561198042451953', 0, 110, 1, 7),
(619, '76561198132156094', 0, 10, 8, 14),
(620, '76561198165234468', 0, 15, 1, 7),
(621, '76561198227676932', 1, 20, 1, 7),
(622, '76561198177209821', 1, 10, 0, 0),
(623, '76561198227676932', 1, 40, 1, 7),
(624, '76561198165234468', 0, 7, 8, 14),
(625, '76561198132156094', 0, 10, 8, 14),
(626, '76561198165234468', 0, 22, 1, 7),
(627, '76561198125582952', 0, 10, 1, 7),
(628, '76561198102786343', 0, 10, 1, 7),
(629, '76561198125582952', 0, 10, 1, 7),
(630, '76561198102786343', 0, 5, 1, 7),
(631, '76561198165234468', 0, 4, 0, 0),
(632, '76561198165234468', 0, 10, 1, 7),
(633, '76561198042451953', 0, 110, 8, 14),
(634, '76561198125582952', 0, 5, 0, 0),
(635, '76561198102786343', 0, 5, 8, 14),
(636, '76561198125582952', 0, 10, 8, 14),
(637, '76561198165234468', 0, 10, 1, 7),
(638, '76561198165234468', 0, 5, 0, 0),
(639, '76561198125582952', 0, 5, 0, 0),
(640, '76561198165234468', 0, 5, 0, 0),
(641, '76561198125582952', 0, 20, 8, 14),
(642, '76561198102786343', 0, 5, 0, 0),
(643, '76561198102786343', 0, 5, 0, 0),
(644, '76561198125582952', 0, 20, 8, 14),
(645, '76561198125582952', 0, 10, 0, 0),
(646, '76561198165234468', 0, 5, 0, 0),
(647, '76561198165234468', 0, 5, 8, 14),
(648, '76561198125582952', 0, 20, 8, 14),
(649, '76561198125582952', 0, 10, 0, 0),
(650, '76561198165234468', 0, 10, 1, 7),
(651, '76561198171615454', 1, 20, 1, 7),
(652, '76561198165234468', 0, 5, 0, 0),
(653, '76561198165234468', 0, 5, 0, 0),
(654, '76561198125582952', 0, 10, 0, 0),
(655, '76561198262730287', 0, 10, 1, 7),
(656, '76561198125582952', 0, 30, 8, 14),
(657, '76561198165234468', 0, 10, 8, 14),
(658, '76561198182317127', 1, 10, 1, 7),
(659, '76561198170520685', 1, 20, 8, 14),
(660, '76561198125582952', 0, 30, 8, 14),
(661, '76561198262730287', 0, 20, 1, 7),
(662, '76561198170520685', 1, 40, 8, 14),
(663, '76561198125582952', 0, 10, 0, 0),
(664, '76561198052435748', 0, 20, 1, 7),
(665, '76561198171615454', 1, 40, 8, 14),
(666, '76561198182317127', 1, 10, 8, 14),
(667, '76561198165234468', 0, 10, 1, 7),
(668, '76561198262730287', 0, 10, 1, 7),
(669, '76561198125582952', 0, 10, 0, 0),
(670, '76561198125582952', 0, 40, 8, 14),
(671, '76561198262730287', 0, 20, 1, 7),
(672, '76561198125582952', 0, 20, 1, 7),
(673, '76561198125582952', 0, 10, 0, 0),
(674, '76561198052435748', 0, 40, 1, 7),
(675, '76561198124272243', 1, 5, 0, 0),
(676, '76561198124272243', 1, 5, 0, 0),
(677, '76561198260694949', 1, 20, 1, 7),
(678, '76561198262730287', 0, 10, 1, 7),
(679, '76561198165234468', 0, 20, 1, 7),
(680, '76561198124272243', 1, 5, 0, 0),
(681, '76561198262730287', 0, 20, 1, 7),
(682, '76561198165234468', 0, 20, 8, 14),
(683, '76561198124272243', 1, 5, 1, 7),
(684, '76561198265677361', 1, 10, 8, 14),
(685, '76561198255256218', 0, 1, 8, 14),
(686, '76561198165234468', 0, 80, 1, 7),
(687, '76561198124272243', 1, 10, 1, 7),
(688, '76561198125582952', 0, 10, 0, 0),
(689, '76561198125582952', 0, 80, 8, 14),
(690, '76561198255256218', 0, 2, 8, 14),
(691, '76561198124272243', 1, 5, 0, 0),
(692, '76561198165234468', 0, 10, 1, 7),
(693, '76561198265677361', 1, 1, 0, 0),
(694, '76561198265677361', 1, 2, 8, 14),
(695, '76561198255256218', 0, 4, 8, 14),
(696, '76561198265677361', 1, 2, 1, 7),
(697, '76561198265677361', 1, 2, 1, 7),
(698, '76561198124272243', 1, 5, 0, 0),
(699, '76561198262730287', 0, 20, 1, 7),
(700, '76561198265677361', 1, 3, 0, 0),
(701, '76561198124272243', 1, 10, 1, 7),
(702, '76561198165234468', 0, 10, 8, 14),
(703, '76561198262730287', 0, 40, 1, 7),
(704, '76561198165234468', 0, 10, 8, 14),
(705, '76561198262730287', 0, 80, 1, 7),
(706, '76561198165234468', 0, 20, 1, 7),
(707, '76561198165234468', 0, 5, 0, 0),
(708, '76561198165234468', 0, 5, 0, 0),
(709, '76561198288407082', 0, 20, 1, 7),
(710, '76561198165234468', 0, 160, 1, 7),
(711, '76561198214360941', 1, 10, 8, 14),
(712, '76561198214360941', 1, 10, 8, 14),
(713, '76561198214360941', 1, 5, 8, 14),
(714, '76561198214360941', 1, 5, 8, 14),
(715, '76561198261173562', 0, 20, 1, 7),
(716, '76561198282636570', 0, 20, 1, 7),
(717, '76561198214360941', 1, 5, 8, 14),
(718, '76561198214360941', 1, 5, 8, 14),
(719, '76561198214360941', 1, 5, 1, 7),
(720, '76561198214360941', 1, 10, 1, 7),
(721, '76561198214360941', 1, 20, 8, 14),
(722, '76561198292521457', 0, 1, 1, 7),
(723, '76561198214360941', 1, 5, 8, 14),
(724, '76561198292521457', 0, 21, 1, 7),
(725, '76561198214360941', 1, 30, 1, 7),
(726, '76561198214360941', 1, 30, 1, 7),
(727, '76561198293534320', 1, 1, 1, 7),
(728, '76561198293534320', 1, 1, 0, 0),
(729, '76561198293534320', 1, 1, 8, 14),
(730, '76561198293534320', 1, 1, 1, 7),
(731, '76561198293534320', 1, 1, 1, 7),
(732, '76561198148544912', 1, 1, 8, 14),
(733, '76561198148544912', 1, 1, 1, 7),
(734, '76561198068189122', 1, 20, 0, 0),
(735, '76561198197774418', 1, 20, 0, 0),
(736, '76561198148544912', 1, 19, 1, 7),
(737, '76561198258138239', 1, 2, 8, 14),
(738, '76561198148544912', 1, 1, 0, 0),
(739, '76561198258138239', 1, 2, 0, 0),
(740, '76561198238773630', 1, 20, 1, 7),
(741, '76561198258138239', 1, 20, 8, 14),
(742, '76561198128010521', 0, 10, 8, 14),
(743, '76561198238773630', 1, 40, 8, 14),
(744, '76561198147616956', 0, 20, 1, 7),
(745, '76561198147616956', 0, 40, 1, 7),
(746, '76561198128010521', 0, 10, 8, 14),
(747, '76561198128010521', 0, 5, 8, 14),
(748, '76561198131964391', 0, 20, 1, 7),
(749, '76561198131964391', 0, 40, 1, 7),
(750, '76561198128010521', 0, 5, 1, 7),
(751, '76561198231417240', 1, 15, 1, 7),
(752, '76561198231417240', 1, 5, 1, 7),
(753, '76561198128010521', 0, 10, 1, 7),
(754, '76561198202663608', 1, 20, 8, 14),
(755, '76561198160791441', 0, 10, 0, 0),
(756, '76561198160791441', 0, 10, 1, 7),
(757, '76561198128010521', 0, 10, 8, 14),
(758, '76561198160791441', 0, 5, 0, 0),
(759, '76561198231417240', 1, 7, 8, 14),
(760, '76561198160791441', 0, 15, 8, 14),
(761, '76561198231417240', 1, 3, 1, 7),
(762, '76561198083988996', 1, 20, 8, 14),
(763, '76561198154796265', 1, 20, 8, 14),
(764, '76561198212157121', 0, 20, 0, 0),
(765, '76561198277143423', 0, 20, 8, 14),
(766, '76561198154796265', 1, 20, 0, 0),
(767, '76561198083988996', 1, 40, 1, 7),
(768, '76561198255560887', 0, 20, 1, 7),
(769, '76561198154796265', 1, 20, 8, 14),
(770, '76561198255560887', 0, 40, 1, 7),
(771, '76561198083988996', 1, 30, 8, 14),
(772, '76561198092388167', 0, 20, 0, 0),
(773, '76561198278574621', 0, 20, 0, 0),
(774, '76561198083988996', 1, 50, 8, 14),
(775, '76561198128010521', 0, 10, 8, 14),
(776, '76561198255560887', 0, 20, 8, 14),
(777, '76561198255560887', 0, 60, 8, 14),
(778, '76561198042451953', 0, 10, 8, 14),
(779, '76561198042451953', 0, 10, 1, 7),
(780, '76561198195383137', 1, 20, 1, 7),
(781, '76561198042451953', 0, 20, 8, 14),
(782, '76561198042451953', 0, 20, 8, 14),
(783, '76561198103899896', 0, 20, 0, 0),
(784, '76561198120444071', 0, 20, 8, 14),
(785, '76561198179498639', 0, 10, 8, 14),
(786, '76561198042451953', 0, 20, 8, 14),
(787, '76561198120444071', 0, 20, 0, 0),
(788, '76561198068764437', 0, 20, 8, 14),
(789, '76561198042451953', 0, 10, 0, 0),
(790, '76561198179498639', 0, 10, 8, 14),
(791, '76561198120444071', 0, 20, 0, 0),
(792, '76561198125221761', 0, 5, 0, 0),
(793, '76561198179498639', 0, 20, 8, 14),
(794, '76561198068764437', 0, 10, 0, 0),
(795, '76561198068764437', 0, 30, 8, 14),
(796, '76561198042451953', 0, 10, 0, 0),
(797, '76561198125221761', 0, 10, 1, 7),
(798, '76561198125221761', 0, 5, 1, 7),
(799, '76561198042451953', 0, 110, 1, 7),
(800, '76561198068764437', 0, 10, 0, 0),
(801, '76561198179498639', 0, 20, 1, 7),
(802, '76561198068764437', 0, 50, 8, 14),
(803, '76561198160988240', 0, 20, 8, 14),
(804, '76561198258138239', 1, 10, 1, 7),
(805, '76561198160988240', 0, 40, 1, 7),
(806, '76561198042451953', 0, 20, 1, 7),
(807, '76561198179498639', 0, 40, 1, 7),
(808, '76561198068764437', 0, 20, 0, 0),
(809, '76561198068764437', 0, 80, 8, 14),
(810, '76561198068764437', 0, 20, 0, 0),
(811, '76561198068764437', 0, 60, 8, 14),
(812, '76561198081098759', 0, 20, 1, 7),
(813, '76561198258138239', 1, 10, 1, 7),
(814, '76561198081098759', 0, 20, 1, 7),
(815, '76561198042451953', 0, 50, 1, 7),
(816, '76561198068764437', 0, 10, 0, 0),
(817, '76561198068764437', 0, 40, 1, 7),
(818, '76561198068764437', 0, 20, 0, 0),
(819, '76561198081098759', 0, 30, 8, 14),
(820, '76561198068764437', 0, 160, 1, 7),
(821, '76561198042451953', 0, 50, 1, 7),
(822, '76561198042451953', 0, 50, 1, 7),
(823, '76561198042451953', 0, 50, 1, 7),
(824, '76561198239104378', 0, 19, 8, 14),
(825, '76561198239104378', 0, 1, 0, 0),
(826, '76561198042451953', 0, 50, 1, 7),
(827, '76561198068764437', 0, 20, 0, 0),
(828, '76561198068764437', 0, 100, 1, 7),
(829, '76561198081098759', 0, 30, 8, 14),
(830, '76561198068764437', 0, 40, 0, 0),
(831, '76561198068764437', 0, 160, 1, 7),
(832, '76561198042451953', 0, 200, 8, 14),
(833, '76561198133128462', 0, 20, 0, 0),
(834, '76561198042451953', 0, 200, 8, 14),
(835, '76561198068764437', 0, 30, 0, 0),
(836, '76561198068764437', 0, 90, 1, 7),
(837, '76561198068764437', 0, 50, 0, 0),
(838, '76561198068764437', 0, 150, 8, 14),
(839, '76561198042451953', 0, 200, 8, 14),
(840, '76561198258138239', 1, 20, 1, 7),
(841, '76561198068764437', 0, 50, 0, 0),
(842, '76561198068764437', 0, 250, 8, 14),
(843, '76561198042451953', 0, 100, 1, 7),
(844, '76561198042451953', 0, 50, 0, 0),
(845, '76561198068764437', 0, 50, 0, 0),
(846, '76561198068764437', 0, 250, 8, 14),
(847, '76561198042451953', 0, 200, 1, 7),
(848, '76561198160503140', 0, 10, 8, 14),
(849, '76561198042451953', 0, 200, 1, 7),
(850, '76561198042451953', 0, 50, 0, 0),
(851, '76561198068764437', 0, 40, 0, 0),
(852, '76561198068764437', 0, 60, 1, 7),
(853, '76561198068764437', 0, 100, 1, 7),
(854, '76561198042451953', 0, 200, 1, 7),
(855, '76561198068764437', 0, 60, 0, 0),
(856, '76561198160503140', 0, 10, 1, 7),
(857, '76561198068764437', 0, 260, 1, 7),
(858, '76561198119424099', 0, 10, 1, 7),
(859, '76561198042451953', 0, 50, 0, 0),
(860, '76561198068764437', 0, 40, 0, 0),
(861, '76561198042451953', 0, 200, 8, 14),
(862, '76561198068764437', 0, 300, 1, 7),
(863, '76561198042451953', 0, 50, 0, 0),
(864, '76561198053574043', 0, 10, 1, 7),
(865, '76561198042451953', 0, 400, 8, 14),
(866, '76561198068764437', 0, 100, 0, 0),
(867, '76561198068764437', 0, 800, 1, 7),
(868, '76561198180690341', 1, 5, 0, 0),
(869, '76561198119424099', 0, 10, 8, 14),
(870, '76561198053574043', 0, 5, 0, 0),
(871, '76561198042451953', 0, 200, 8, 14),
(872, '76561198053574043', 0, 15, 1, 7),
(873, '76561198042451953', 0, 400, 8, 14),
(874, '76561198160057918', 1, 20, 8, 14),
(875, '76561198180690341', 1, 1, 1, 7),
(876, '76561198063346052', 0, 20, 1, 7),
(877, '76561198053574043', 0, 10, 8, 14),
(878, '76561198288645733', 1, 10, 8, 14),
(879, '76561198068764437', 0, 50, 0, 0),
(880, '76561198068764437', 0, 150, 8, 14),
(881, '76561198042451953', 0, 200, 1, 7),
(882, '76561198119424099', 0, 5, 8, 14),
(883, '76561198068764437', 0, 300, 8, 14),
(884, '76561198042451953', 0, 200, 1, 7),
(885, '76561198077402724', 0, 10, 8, 14),
(886, '76561198180690341', 1, 1, 0, 0),
(887, '76561198068764437', 0, 100, 0, 0),
(888, '76561198068764437', 0, 100, 8, 14),
(889, '76561198063346052', 0, 30, 1, 7),
(890, '76561198063346052', 0, 10, 0, 0),
(891, '76561198100189477', 1, 1, 1, 7),
(892, '76561198256564765', 0, 20, 0, 0),
(893, '76561198119424099', 0, 5, 8, 14),
(894, '76561198180690341', 1, 1, 0, 0),
(895, '76561198068764437', 0, 100, 0, 0),
(896, '76561198068764437', 0, 500, 1, 7),
(897, '76561198042451953', 0, 400, 1, 7),
(898, '76561198100189477', 1, 1, 8, 14),
(899, '76561198119424099', 0, 20, 1, 7),
(900, '76561198264214715', 0, 100, 1, 7),
(901, '76561198288645733', 0, 10, 8, 14),
(902, '76561198068764437', 0, 100, 0, 0),
(903, '76561198068764437', 0, 400, 8, 14),
(904, '76561198042451953', 0, 550, 1, 7),
(905, '76561198077402724', 0, 10, 1, 7),
(906, '76561198288645733', 0, 10, 8, 14),
(907, '76561198100189477', 1, 1, 0, 0),
(908, '76561198288645733', 0, 10, 8, 14),
(909, '76561198264214715', 0, 200, 1, 7),
(910, '76561198042451953', 0, 200, 1, 7),
(911, '76561198077402724', 0, 20, 8, 14),
(912, '76561198068764437', 0, 30, 0, 0),
(913, '76561198068764437', 0, 70, 1, 7),
(914, '76561198077402724', 0, 20, 1, 7),
(915, '76561198042451953', 0, 200, 1, 7),
(916, '76561198171903793', 0, 1, 1, 7),
(917, '76561198068764437', 0, 40, 0, 0),
(918, '76561198068764437', 0, 130, 1, 7),
(919, '76561198264214715', 0, 200, 1, 7),
(920, '76561198042451953', 0, 200, 1, 7),
(921, '76561198100189477', 0, 1, 8, 14),
(922, '76561198068764437', 0, 40, 0, 0),
(923, '76561198068764437', 0, 160, 1, 7),
(924, '76561198068764437', 0, 20, 0, 0),
(925, '76561198100189477', 0, 1, 0, 0),
(926, '76561198180690341', 1, 1, 1, 7),
(927, '76561198068764437', 0, 100, 8, 14),
(928, '76561198264214715', 0, 200, 8, 14),
(929, '76561198042451953', 0, 200, 8, 14),
(930, '76561198100189477', 0, 1, 0, 0),
(931, '76561198264214715', 0, 200, 8, 14),
(932, '76561198180690341', 1, 1, 8, 14),
(933, '76561198100189477', 0, 1, 0, 0),
(934, '76561198042451953', 0, 600, 1, 7),
(935, '76561198100189477', 0, 1, 0, 0),
(936, '76561198068764437', 0, 200, 1, 7),
(937, '76561198068764437', 0, 50, 0, 0),
(938, '76561198180690341', 1, 1, 8, 14),
(939, '76561198264214715', 0, 500, 1, 7),
(940, '76561198042451953', 0, 150, 8, 14),
(941, '76561198100189477', 0, 1, 0, 0),
(942, '76561198068764437', 0, 250, 1, 7),
(943, '76561198068764437', 0, 50, 0, 0),
(944, '76561198068764437', 0, 50, 0, 0),
(945, '76561198042451953', 0, 150, 8, 14),
(946, '76561198100189477', 0, 1, 1, 7),
(947, '76561198068764437', 0, 150, 1, 7),
(948, '76561198100189477', 0, 1, 1, 7),
(949, '76561198180690341', 1, 1, 8, 14),
(950, '76561198042451953', 0, 300, 8, 14),
(951, '76561198283305986', 1, 20, 8, 14),
(952, '76561198264214715', 0, 100, 1, 7),
(953, '76561198100189477', 0, 1, 1, 7),
(954, '76561198100189477', 0, 1, 1, 7),
(955, '76561198068764437', 0, 450, 8, 14),
(956, '76561198180690341', 1, 1, 1, 7),
(957, '76561198068764437', 0, 50, 0, 0),
(958, '76561198180690341', 1, 1, 1, 7),
(959, '76561198283305986', 1, 40, 8, 14),
(960, '76561198042451953', 0, 150, 8, 14),
(961, '76561198264214715', 0, 1000, 8, 14),
(962, '76561198201415855', 0, 20, 1, 7),
(963, '76561198100189477', 0, 1, 0, 0),
(964, '76561198100189477', 0, 1, 0, 0),
(965, '76561198180690341', 0, 1, 0, 0),
(966, '76561198264214715', 0, 200, 8, 14),
(967, '76561198068764437', 0, 400, 8, 14),
(968, '76561198283305986', 1, 80, 8, 14),
(969, '76561198180690341', 0, 1, 8, 14),
(970, '76561198100189477', 0, 1, 1, 7),
(971, '76561198264214715', 0, 150, 8, 14),
(972, '76561198100189477', 0, 1, 1, 7),
(973, '76561198100189477', 0, 1, 1, 7),
(974, '76561198068764437', 0, 520, 8, 14),
(975, '76561198068764437', 0, 150, 0, 0),
(976, '76561198180690341', 0, 1, 0, 0),
(977, '76561198283305986', 1, 160, 8, 14),
(978, '76561198180690341', 0, 1, 8, 14),
(979, '76561198100189477', 0, 1, 0, 0),
(980, '76561198100189477', 0, 1, 0, 0),
(981, '76561198180690341', 0, 1, 0, 0),
(982, '76561198264214715', 0, 400, 1, 7),
(983, '76561198057442552', 0, 2, 0, 0),
(984, '76561198264214715', 0, 15, 0, 0),
(985, '76561198180690341', 0, 1, 1, 7),
(986, '76561198100189477', 0, 1, 8, 14),
(987, '76561198100189477', 0, 1, 8, 14),
(988, '76561198180690341', 0, 1, 0, 0),
(989, '76561198180690341', 0, 1, 8, 14),
(990, '76561198057442552', 0, 1, 0, 0),
(991, '76561198057442552', 0, 1, 8, 14),
(992, '76561198191204625', 0, 10, 8, 14),
(993, '76561198057442552', 0, 1, 8, 14),
(994, '76561198264214715', 0, 200, 1, 7),
(995, '76561198068764437', 0, 40, 1, 7),
(996, '76561198068764437', 0, 10, 0, 0),
(997, '76561198191204625', 0, 10, 8, 14),
(998, '76561198100189477', 0, 1, 8, 14),
(999, '76561198042451953', 0, 80, 8, 14),
(1000, '76561198180690341', 0, 1, 1, 7),
(1001, '76561198068764437', 0, 10, 0, 0),
(1002, '76561198068764437', 0, 20, 1, 7),
(1003, '76561198264214715', 0, 150, 1, 7),
(1004, '76561198057442552', 0, 1, 0, 0),
(1005, '76561198264214715', 0, 15, 0, 0),
(1006, '76561198057442552', 0, 1, 0, 0),
(1007, '76561198100189477', 0, 1, 0, 0),
(1008, '76561198068764437', 0, 40, 8, 14),
(1009, '76561198191204625', 0, 5, 1, 7),
(1010, '76561198068764437', 0, 10, 0, 0),
(1011, '76561198057442552', 0, 1, 0, 0),
(1012, '76561198264214715', 0, 250, 8, 14),
(1013, '76561198042451953', 0, 60, 8, 14),
(1014, '76561198191204625', 0, 10, 1, 7),
(1015, '76561198042451953', 0, 20, 0, 0),
(1016, '76561198100189477', 0, 1, 0, 0),
(1017, '76561198057442552', 0, 1, 0, 0),
(1018, '76561198264214715', 0, 250, 8, 14),
(1019, '76561198264214715', 0, 15, 0, 0),
(1020, '76561198057442552', 0, 1, 0, 0),
(1021, '76561198068764437', 0, 20, 0, 0),
(1022, '76561198068764437', 0, 30, 8, 14),
(1023, '76561198042451953', 0, 400, 1, 7),
(1024, '76561198057442552', 0, 1, 0, 0),
(1025, '76561198057442552', 0, 1, 0, 0),
(1026, '76561198264214715', 0, 500, 1, 7),
(1027, '76561198264214715', 0, 15, 0, 0),
(1028, '76561198191204625', 0, 5, 8, 14),
(1029, '76561198068764437', 0, 40, 0, 0),
(1030, '76561198068764437', 0, 10, 1, 7),
(1031, '76561198068764437', 0, 50, 1, 7),
(1032, '76561198100189477', 0, 1, 0, 0),
(1033, '76561198100189477', 0, 1, 0, 0),
(1034, '76561198057442552', 0, 1, 0, 0),
(1035, '76561198057442552', 0, 1, 0, 0),
(1036, '76561198191204625', 0, 5, 1, 7),
(1037, '76561198264214715', 0, 200, 1, 7),
(1038, '76561198183438158', 1, 1, 0, 0),
(1039, '76561198068764437', 0, 10, 0, 0),
(1040, '76561198191204625', 0, 5, 1, 7),
(1041, '76561198068764437', 0, 40, 8, 14),
(1042, '76561198183438158', 1, 2, 8, 14),
(1043, '76561198183438158', 1, 1, 0, 0),
(1044, '76561198057442552', 0, 1, 0, 0),
(1045, '76561198057442552', 0, 1, 0, 0),
(1046, '76561198068764437', 0, 20, 0, 0),
(1047, '76561198068764437', 0, 60, 8, 14),
(1048, '76561198191204625', 0, 15, 1, 7),
(1049, '76561198264214715', 0, 15, 0, 0),
(1050, '76561198183438158', 1, 20, 1, 7),
(1051, '76561198057442552', 0, 1, 0, 0),
(1052, '76561198057442552', 0, 1, 0, 0),
(1053, '76561198100189477', 0, 1, 8, 14),
(1054, '76561198264214715', 0, 500, 1, 7),
(1055, '76561198191204625', 0, 10, 1, 7),
(1056, '76561198100189477', 0, 1, 0, 0),
(1057, '76561198100189477', 0, 1, 0, 0),
(1058, '76561198183438158', 1, 10, 0, 0),
(1059, '76561198242634784', 0, 10, 0, 0),
(1060, '76561198053574043', 0, 1, 0, 0),
(1061, '76561198057442552', 0, 1, 0, 0),
(1062, '76561198057442552', 0, 1, 0, 0),
(1063, '76561198053574043', 0, 3, 1, 7),
(1064, '76561198264214715', 0, 15, 0, 0),
(1065, '76561198125160820', 0, 50, 0, 0),
(1066, '76561198068764437', 0, 30, 0, 0),
(1067, '76561198068764437', 0, 50, 1, 7),
(1068, '76561198053574043', 0, 1, 8, 14),
(1069, '76561198242634784', 0, 10, 8, 14),
(1070, '76561198183438158', 1, 25, 8, 14),
(1071, '76561198068764437', 0, 10, 0, 0),
(1072, '76561198068764437', 0, 20, 8, 14),
(1073, '76561198183438158', 1, 5, 0, 0),
(1074, '76561198125160820', 0, 100, 8, 14),
(1075, '76561198264214715', 0, 200, 8, 14),
(1076, '76561198053574043', 0, 2, 1, 7),
(1077, '76561198191204625', 0, 10, 1, 7),
(1078, '76561198100189477', 0, 1, 1, 7),
(1079, '76561198068764437', 0, 10, 0, 0),
(1080, '76561198100189477', 0, 1, 0, 0),
(1081, '76561198125160820', 0, 50, 0, 0),
(1082, '76561198068764437', 0, 20, 1, 7),
(1083, '76561198191204625', 0, 5, 1, 7),
(1084, '76561198264214715', 0, 15, 0, 0),
(1085, '76561198053574043', 0, 2, 8, 14),
(1086, '76561198180690341', 0, 1, 1, 7),
(1087, '76561198068764437', 0, 10, 0, 0),
(1088, '76561198068764437', 0, 30, 1, 7),
(1089, '76561198100189477', 0, 1, 8, 14),
(1090, '76561198100189477', 0, 1, 8, 14),
(1091, '76561198264214715', 0, 150, 1, 7),
(1092, '76561198191204625', 0, 10, 1, 7),
(1093, '76561198053574043', 0, 1, 8, 14),
(1094, '76561198180690341', 0, 1, 1, 7),
(1095, '76561198100189477', 0, 1, 0, 0),
(1096, '76561198100189477', 0, 1, 0, 0),
(1097, '76561198191204625', 0, 20, 1, 7),
(1098, '76561198264214715', 0, 20, 0, 0),
(1099, '76561198100189477', 0, 1, 0, 0),
(1100, '76561198053574043', 0, 2, 8, 14),
(1101, '76561198191204625', 0, 10, 1, 7),
(1102, '76561198053574043', 0, 3, 8, 14),
(1103, '76561198180690341', 0, 1, 1, 7),
(1104, '76561198264214715', 0, 200, 8, 14),
(1105, '76561198053574043', 0, 6, 8, 14),
(1106, '76561198053574043', 0, 1, 0, 0),
(1107, '76561198100189477', 0, 1, 1, 7),
(1108, '76561198100189477', 0, 1, 1, 7),
(1109, '76561198053574043', 0, 5, 8, 14),
(1110, '76561198264214715', 0, 500, 1, 7),
(1111, '76561198100189477', 0, 1, 0, 0),
(1112, '76561198100189477', 0, 1, 0, 0),
(1113, '76561198117146969', 0, 10, 1, 7),
(1114, '76561198264214715', 0, 20, 0, 0),
(1115, '76561198117146969', 0, 10, 1, 7),
(1116, '76561198264214715', 0, 300, 1, 7),
(1117, '76561198100189477', 0, 1, 8, 14),
(1118, '76561198117146969', 0, 10, 1, 7),
(1119, '76561198264214715', 0, 200, 8, 14),
(1120, '76561198264214715', 0, 50, 0, 0),
(1121, '76561198180690341', 0, 28, 8, 14),
(1122, '76561198117146969', 0, 10, 0, 0),
(1123, '76561198053574043', 0, 10, 8, 14),
(1124, '76561198264214715', 0, 50, 0, 0),
(1125, '76561198042451953', 0, 2780, 1, 7),
(1126, '76561198264214715', 0, 300, 1, 7),
(1127, '76561198125160820', 0, 50, 8, 14),
(1128, '76561198075506284', 0, 20, 8, 14),
(1129, '76561198125160820', 0, 50, 1, 7),
(1130, '76561198264214715', 0, 200, 8, 14),
(1131, '76561198125160820', 0, 50, 1, 7),
(1132, '76561198203002017', 0, 20, 1, 7),
(1133, '76561198125160820', 0, 50, 1, 7),
(1134, '76561198264214715', 0, 150, 1, 7),
(1135, '76561198230278348', 0, 20, 8, 14),
(1136, '76561198203002017', 0, 5, 1, 7),
(1137, '76561198264214715', 0, 150, 8, 14),
(1138, '76561198125160820', 0, 100, 1, 7),
(1139, '76561198203002017', 0, 15, 1, 7),
(1140, '76561198264214715', 0, 150, 8, 14),
(1141, '76561198125160820', 0, 100, 1, 7),
(1142, '76561198203002017', 0, 20, 8, 14),
(1143, '76561198184076423', 1, 20, 1, 7),
(1144, '76561198125160820', 0, 200, 8, 14),
(1145, '76561198264214715', 0, 200, 8, 14),
(1146, '76561198080759270', 0, 20, 1, 7),
(1147, '76561198184076423', 1, 5, 0, 0),
(1148, '76561198264214715', 0, 150, 8, 14),
(1149, '76561198184076423', 1, 5, 0, 0),
(1150, '76561198150476554', 0, 20, 1, 7),
(1151, '76561198264214715', 0, 150, 1, 7),
(1152, '76561198184076423', 1, 5, 0, 0),
(1153, '76561198150476554', 0, 10, 0, 0),
(1154, '76561198150476554', 0, 30, 8, 14),
(1155, '76561198264214715', 0, 150, 1, 7),
(1156, '76561198264214715', 0, 50, 0, 0),
(1157, '76561198184076423', 1, 25, 1, 7),
(1158, '76561198150476554', 0, 10, 0, 0),
(1159, '76561198150476554', 0, 50, 1, 7),
(1160, '76561198264214715', 0, 150, 8, 14),
(1161, '76561198150476554', 0, 20, 0, 0),
(1162, '76561198150476554', 0, 80, 8, 14),
(1163, '76561198264214715', 0, 150, 1, 7),
(1164, '76561198150476554', 0, 10, 0, 0),
(1165, '76561198150476554', 0, 50, 1, 7),
(1166, '76561198150476554', 0, 30, 0, 0),
(1167, '76561198150476554', 0, 60, 1, 7),
(1168, '76561198264214715', 0, 150, 1, 7),
(1169, '76561198264214715', 0, 185, 8, 14),
(1170, '76561198068764437', 0, 10, 0, 0),
(1171, '76561198068764437', 0, 40, 8, 14),
(1172, '76561198264214715', 0, 250, 1, 7),
(1173, '76561198068764437', 0, 20, 0, 0),
(1174, '76561198068764437', 0, 80, 1, 7),
(1175, '76561198250394214', 0, 20, 1, 7),
(1176, '76561198264214715', 0, 150, 8, 14),
(1177, '76561198068764437', 0, 10, 0, 0),
(1178, '76561198068764437', 0, 50, 1, 7),
(1179, '76561198250394214', 0, 40, 1, 7),
(1180, '76561198264214715', 0, 300, 1, 7),
(1181, '76561198068764437', 0, 30, 0, 0),
(1182, '76561198068764437', 0, 70, 1, 7),
(1183, '76561198264214715', 0, 400, 1, 7),
(1184, '76561198171910294', 0, 20, 8, 14),
(1185, '76561198068764437', 0, 20, 0, 0),
(1186, '76561198068764437', 0, 80, 8, 14),
(1187, '76561198264214715', 0, 800, 8, 14),
(1188, '76561198171910294', 0, 40, 1, 7),
(1189, '76561198068764437', 0, 10, 0, 0),
(1190, '76561198250394214', 0, 80, 8, 14),
(1191, '76561198068764437', 0, 90, 8, 14),
(1192, '76561198068764437', 0, 10, 0, 0),
(1193, '76561198042451953', 0, 300, 8, 14),
(1194, '76561198264214715', 0, 350, 8, 14),
(1195, '76561198042451953', 0, 100, 1, 7),
(1196, '76561198068764437', 0, 20, 0, 0),
(1197, '76561198068764437', 0, 60, 8, 14),
(1198, '76561198264214715', 0, 200, 8, 14),
(1199, '76561198264214715', 0, 50, 0, 0),
(1200, '76561198068764437', 0, 20, 0, 0),
(1201, '76561198068764437', 0, 30, 1, 7),
(1202, '76561198250394214', 0, 80, 1, 7),
(1203, '76561198264214715', 0, 150, 8, 14),
(1204, '76561198042451953', 0, 50, 8, 14),
(1205, '76561198042451953', 0, 25, 0, 0),
(1206, '76561198264214715', 0, 50, 0, 0),
(1207, '76561198042451953', 0, 25, 0, 0),
(1208, '76561198068764437', 0, 20, 0, 0),
(1209, '76561198068764437', 0, 90, 1, 7),
(1210, '76561198042451953', 0, 100, 8, 14),
(1211, '76561198068764437', 0, 10, 1, 7),
(1212, '76561198264214715', 0, 200, 1, 7),
(1213, '76561198264214715', 0, 50, 0, 0),
(1214, '76561198068764437', 0, 30, 0, 0),
(1215, '76561198264214715', 0, 400, 1, 7),
(1216, '76561198042451953', 0, 100, 1, 7),
(1217, '76561198264214715', 0, 50, 0, 0),
(1218, '76561198068764437', 0, 110, 8, 14),
(1219, '76561198250394214', 0, 90, 1, 7),
(1220, '76561198042451953', 0, 200, 8, 14),
(1221, '76561198264214715', 0, 300, 8, 14),
(1222, '76561198042451953', 0, 25, 0, 0),
(1223, '76561198250394214', 0, 90, 8, 14),
(1224, '76561198148996255', 0, 180, 1, 7),
(1225, '76561198250394214', 0, 90, 1, 7),
(1226, '76561198264214715', 0, 100, 0, 0),
(1227, '76561198042451953', 0, 475, 8, 14),
(1228, '76561198264214715', 0, 200, 8, 14),
(1229, '76561198264214715', 0, 100, 0, 0),
(1230, '76561198196621479', 0, 20, 1, 7),
(1231, '76561198042451953', 0, 200, 1, 7),
(1232, '76561198042451953', 0, 50, 0, 0),
(1233, '76561198286502243', 0, 20, 1, 7),
(1234, '76561198219683076', 0, 10, 8, 14),
(1235, '76561198042451953', 0, 600, 8, 14),
(1236, '76561198264214715', 0, 100, 0, 0),
(1237, '76561198042451953', 0, 100, 0, 0),
(1238, '76561198125160820', 0, 50, 0, 0),
(1239, '76561198264214715', 0, 250, 1, 7),
(1240, '76561198264214715', 0, 100, 0, 0),
(1241, '76561198219683076', 0, 10, 1, 7),
(1242, '76561198278425660', 0, 10, 0, 0),
(1243, '76561198278425660', 0, 10, 1, 7),
(1244, '76561198264214715', 0, 100, 0, 0),
(1245, '76561198042451953', 0, 390, 8, 14),
(1246, '76561198264214715', 0, 100, 0, 0),
(1247, '76561198042451953', 0, 200, 1, 7),
(1248, '76561198042451953', 0, 50, 0, 0),
(1249, '76561198264214715', 0, 100, 8, 14),
(1250, '76561198068764437', 0, 5, 0, 0),
(1251, '76561198068764437', 0, 5, 0, 0),
(1252, '76561198068764437', 0, 5, 0, 0),
(1253, '76561198264214715', 0, 100, 0, 0),
(1254, '76561198068764437', 0, 15, 8, 14),
(1255, '76561198042451953', 0, 100, 0, 0),
(1256, '76561198244850190', 0, 10, 0, 0),
(1257, '76561198042451953', 0, 370, 1, 7),
(1258, '76561198244850190', 0, 10, 1, 7),
(1259, '76561198233583012', 0, 20, 0, 0),
(1260, '76561198264214715', 0, 100, 0, 0);
INSERT INTO bets (id, user, collect, amount, lower, upper) VALUES
(1261, '76561198042451953', 0, 200, 1, 7),
(1262, '76561198042451953', 0, 50, 0, 0),
(1263, '76561198068764437', 0, 5, 0, 0),
(1264, '76561198068764437', 0, 25, 1, 7),
(1265, '76561198068764437', 0, 10, 0, 0),
(1266, '76561198042451953', 0, 200, 8, 14),
(1267, '76561198068764437', 0, 40, 1, 7),
(1268, '76561198042451953', 0, 50, 0, 0),
(1269, '76561198244850190', 0, 10, 0, 0),
(1270, '76561198264214715', 0, 100, 0, 0),
(1271, '76561198264214715', 0, 200, 1, 7),
(1272, '76561198244850190', 0, 10, 1, 7),
(1273, '76561198264214715', 0, 400, 8, 14),
(1274, '76561198042451953', 0, 200, 1, 7),
(1275, '76561198042451953', 0, 50, 0, 0),
(1276, '76561198068764437', 0, 10, 0, 0),
(1277, '76561198068764437', 0, 30, 1, 7),
(1278, '76561198264214715', 0, 50, 0, 0),
(1279, '76561198070358530', 0, 10, 0, 0),
(1280, '76561198070358530', 0, 10, 1, 7),
(1281, '76561198042451953', 0, 50, 0, 0),
(1282, '76561198068764437', 0, 10, 0, 0),
(1283, '76561198068764437', 0, 50, 1, 7),
(1284, '76561198042451953', 0, 100, 1, 7),
(1285, '76561198179446409', 0, 20, 1, 7),
(1286, '76561198264214715', 0, 200, 0, 0),
(1287, '76561198179446409', 0, 40, 8, 14),
(1288, '76561198264214715', 0, 200, 0, 0),
(1289, '76561198273365563', 0, 1, 1, 7),
(1290, '76561198068764437', 0, 20, 0, 0),
(1291, '76561198068764437', 0, 30, 8, 14),
(1292, '76561198070358530', 0, 10, 0, 0),
(1293, '76561198068764437', 0, 20, 0, 0),
(1294, '76561198070358530', 0, 10, 8, 14),
(1295, '76561198068764437', 0, 30, 1, 7),
(1296, '76561198264214715', 0, 200, 0, 0),
(1297, '76561198042451953', 0, 10, 0, 0),
(1298, '76561198210833880', 1, 20, 8, 14),
(1299, '76561198056208408', 0, 10, 8, 14),
(1300, '76561198273365563', 0, 21, 8, 14),
(1301, '76561198056208408', 0, 10, 8, 14),
(1302, '76561198264214715', 0, 200, 0, 0),
(1303, '76561198070358530', 0, 10, 0, 0),
(1304, '76561198070358530', 0, 10, 8, 14),
(1305, '76561198042451953', 0, 200, 8, 14),
(1306, '76561198042451953', 0, 50, 0, 0),
(1307, '76561198068764437', 0, 20, 0, 0),
(1308, '76561198068764437', 0, 30, 1, 7),
(1309, '76561198273365563', 0, 42, 8, 14),
(1310, '76561198201486422', 0, 10, 1, 7),
(1311, '76561198042451953', 0, 200, 8, 14),
(1312, '76561198068764437', 0, 30, 0, 0),
(1313, '76561198068764437', 0, 50, 8, 14),
(1314, '76561198056208408', 0, 10, 1, 7),
(1315, '76561198070358530', 0, 20, 0, 0),
(1316, '76561198070358530', 0, 10, 8, 14),
(1317, '76561198125160820', 0, 20, 8, 14),
(1318, '76561198070358530', 0, 30, 1, 7),
(1319, '76561198068764437', 0, 30, 0, 0),
(1320, '76561198068764437', 0, 70, 8, 14),
(1321, '76561198042451953', 0, 200, 1, 7),
(1322, '76561198056208408', 0, 10, 1, 7),
(1323, '76561198201486422', 0, 10, 1, 7),
(1324, '76561198142773290', 1, 10, 1, 7),
(1325, '76561198142773290', 1, 10, 1, 7),
(1326, '76561198201486422', 0, 10, 1, 7),
(1327, '76561198201486422', 0, 10, 0, 0),
(1328, '76561198142773290', 1, 10, 1, 7),
(1329, '76561198068764437', 0, 20, 0, 0),
(1330, '76561198142773290', 1, 10, 1, 7),
(1331, '76561198068764437', 0, 30, 8, 14),
(1332, '76561198142773290', 1, 10, 1, 7),
(1333, '76561198042451953', 0, 200, 8, 14),
(1334, '76561198056208408', 0, 10, 8, 14),
(1335, '76561198042451953', 0, 25, 0, 0),
(1336, '76561198068764437', 0, 20, 8, 14),
(1337, '76561198125160820', 0, 40, 1, 7),
(1338, '76561198142773290', 1, 10, 1, 7),
(1339, '76561198068764437', 0, 20, 0, 0),
(1340, '76561198042451953', 0, 200, 1, 7),
(1341, '76561198070358530', 0, 40, 1, 7),
(1342, '76561198068764437', 0, 30, 1, 7),
(1343, '76561198042451953', 0, 25, 0, 0),
(1344, '76561198070358530', 0, 20, 1, 7),
(1345, '76561198056208408', 0, 10, 1, 7),
(1346, '76561198142773290', 1, 10, 1, 7),
(1347, '76561198142773290', 1, 10, 1, 7),
(1348, '76561198070358530', 0, 200, 8, 14),
(1349, '76561198068764437', 0, 30, 0, 0),
(1350, '76561198068764437', 0, 80, 8, 14),
(1351, '76561198042451953', 0, 200, 8, 14),
(1352, '76561198042451953', 0, 25, 0, 0),
(1353, '76561198070358530', 0, 20, 0, 0),
(1354, '76561198056208408', 0, 20, 1, 7),
(1355, '76561198068764437', 0, 30, 0, 0),
(1356, '76561198042451953', 0, 200, 1, 7),
(1357, '76561198068764437', 0, 80, 1, 7),
(1358, '76561198042451953', 0, 25, 0, 0),
(1359, '76561198056208408', 0, 5, 0, 0),
(1360, '76561198056208408', 0, 10, 1, 7),
(1361, '76561198070358530', 0, 50, 8, 14),
(1362, '76561198070358530', 0, 100, 1, 7),
(1363, '76561198068764437', 0, 30, 0, 0),
(1364, '76561198056208408', 0, 5, 0, 0),
(1365, '76561198210833880', 1, 20, 8, 14),
(1366, '76561198068764437', 0, 80, 8, 14),
(1367, '76561198042451953', 0, 200, 8, 14),
(1368, '76561198056208408', 0, 10, 8, 14),
(1369, '76561198042451953', 0, 25, 0, 0),
(1370, '76561198070358530', 0, 50, 8, 14),
(1371, '76561198084673749', 0, 20, 8, 14),
(1372, '76561198068764437', 0, 30, 0, 0),
(1373, '76561198042451953', 0, 200, 1, 7),
(1374, '76561198068764437', 0, 80, 1, 7),
(1375, '76561198056208408', 0, 20, 1, 7),
(1376, '76561198042451953', 0, 25, 0, 0),
(1377, '76561198273317810', 1, 20, 8, 14),
(1378, '76561198070358530', 0, 100, 1, 7),
(1379, '76561198264214715', 0, 1475, 8, 14),
(1380, '76561198068764437', 0, 50, 0, 0),
(1381, '76561198264214715', 0, 1475, 1, 7),
(1382, '76561198042451953', 0, 200, 8, 14),
(1383, '76561198042451953', 0, 25, 0, 0),
(1384, '76561198068764437', 0, 160, 8, 14),
(1385, '76561198251932560', 0, 10, 8, 14),
(1386, '76561198056208408', 0, 20, 1, 7),
(1387, '76561198070358530', 0, 200, 8, 14),
(1388, '76561198251932560', 0, 10, 8, 14),
(1389, '76561198068764437', 0, 80, 1, 7),
(1390, '76561198084673749', 0, 40, 1, 7),
(1391, '76561198068764437', 0, 20, 0, 0),
(1392, '76561198056208408', 0, 20, 8, 14),
(1393, '76561198131251463', 0, 15, 1, 7),
(1394, '76561198131251463', 0, 5, 0, 0),
(1395, '76561198070358530', 0, 50, 0, 0),
(1396, '76561198070358530', 0, 100, 1, 7),
(1397, '76561198264214715', 0, 1475, 1, 7),
(1398, '76561198042451953', 0, 500, 1, 7),
(1399, '76561198264214715', 0, 1475, 8, 14),
(1400, '76561198251932560', 0, 10, 8, 14),
(1401, '76561198251932560', 0, 10, 8, 14),
(1402, '76561198075868618', 1, 5, 8, 14),
(1403, '76561198068764437', 0, 20, 0, 0),
(1404, '76561198042451953', 0, 100, 1, 7),
(1405, '76561198070358530', 0, 200, 1, 7),
(1406, '76561198042451953', 0, 25, 0, 0),
(1407, '76561198068764437', 0, 30, 1, 7),
(1408, '76561198056208408', 0, 10, 8, 14),
(1409, '76561198068764437', 0, 50, 1, 7),
(1410, '76561198070358530', 0, 50, 0, 0),
(1411, '76561198075004703', 0, 20, 8, 14),
(1412, '76561198075004703', 0, 10, 0, 0),
(1413, '76561198068764437', 0, 30, 0, 0),
(1414, '76561198075004703', 0, 30, 1, 7),
(1415, '76561198072155157', 0, 20, 0, 0),
(1416, '76561198075004703', 0, 5, 0, 0),
(1417, '76561198068764437', 0, 60, 8, 14),
(1418, '76561198075868618', 1, 15, 1, 7),
(1419, '76561198042451953', 0, 200, 8, 14),
(1420, '76561198068764437', 0, 20, 8, 14),
(1421, '76561198042451953', 0, 25, 0, 0),
(1422, '76561198070358530', 0, 150, 8, 14),
(1423, '76561198070358530', 0, 20, 0, 0),
(1424, '76561198070358530', 0, 20, 0, 0),
(1425, '76561198068764437', 0, 20, 0, 0),
(1426, '76561198075004703', 0, 50, 8, 14),
(1427, '76561198075004703', 0, 10, 0, 0),
(1428, '76561198070358530', 0, 310, 1, 7),
(1429, '76561198042451953', 0, 200, 1, 7),
(1430, '76561198068764437', 0, 70, 1, 7),
(1431, '76561198042451953', 0, 25, 0, 0),
(1432, '76561198068764437', 0, 20, 0, 0),
(1433, '76561198068764437', 0, 20, 0, 0),
(1434, '76561198068764437', 0, 80, 8, 14),
(1435, '76561198075004703', 0, 30, 8, 14),
(1436, '76561198070358530', 0, 200, 1, 7),
(1437, '76561198075004703', 0, 5, 0, 0),
(1438, '76561198042451953', 0, 500, 8, 14),
(1439, '76561198075004703', 0, 20, 8, 14),
(1440, '76561198075004703', 0, 5, 0, 0),
(1441, '76561198068764437', 0, 30, 0, 0),
(1442, '76561198068764437', 0, 130, 8, 14),
(1443, '76561198042451953', 0, 300, 8, 14),
(1444, '76561198075004703', 0, 5, 0, 0),
(1445, '76561198075004703', 0, 30, 1, 7),
(1446, '76561198210833880', 1, 60, 8, 14),
(1447, '76561198204810344', 1, 20, 1, 7),
(1448, '76561198194159267', 0, 20, 0, 0),
(1449, '76561198075004703', 0, 50, 0, 0),
(1450, '76561198075004703', 0, 250, 8, 14),
(1451, '76561198042451953', 0, 400, 1, 7),
(1452, '76561198042451953', 0, 50, 0, 0),
(1453, '76561198282763862', 0, 20, 1, 7),
(1454, '76561198075004703', 0, 10, 8, 14),
(1455, '76561198075004703', 0, 5, 0, 0),
(1456, '76561198042451953', 0, 1550, 1, 7),
(1457, '76561198075004703', 0, 5, 0, 0),
(1458, '76561198075004703', 0, 10, 8, 14),
(1459, '76561198117885922', 0, 20, 0, 0),
(1460, '76561198210833880', 1, 60, 1, 7),
(1461, '76561198075004703', 0, 10, 0, 0),
(1462, '76561198075004703', 0, 20, 1, 7),
(1463, '76561198068764437', 0, 30, 0, 0),
(1464, '76561198068764437', 0, 50, 1, 7),
(1465, '76561198243704036', 1, 20, 1, 7),
(1466, '76561198075004703', 0, 20, 1, 7),
(1467, '76561198075004703', 0, 10, 0, 0),
(1468, '76561198068764437', 0, 40, 0, 0),
(1469, '76561198068764437', 0, 180, 1, 7),
(1470, '76561198075004703', 0, 10, 8, 14),
(1471, '76561198075004703', 0, 5, 0, 0),
(1472, '76561198068764437', 0, 40, 0, 0),
(1473, '76561198068764437', 0, 110, 1, 7),
(1474, '76561198075004703', 0, 5, 0, 0),
(1475, '76561198271323792', 0, 15, 1, 7),
(1476, '76561198075004703', 0, 10, 8, 14),
(1477, '76561198271323792', 0, 5, 0, 0),
(1478, '76561198068764437', 0, 50, 0, 0),
(1479, '76561198068764437', 0, 150, 8, 14),
(1480, '76561197993125585', 0, 20, 8, 14),
(1481, '76561198075004703', 0, 10, 0, 0),
(1482, '76561198075004703', 0, 20, 1, 7),
(1483, '76561198068764437', 0, 100, 8, 14),
(1484, '76561198088779956', 0, 20, 8, 14),
(1485, '76561198271323792', 0, 15, 0, 0),
(1486, '76561198097819471', 0, 20, 8, 14),
(1487, '76561198275519100', 0, 20, 1, 7),
(1488, '76561198271323792', 0, 15, 1, 7),
(1489, '76561198075004703', 0, 20, 1, 7),
(1490, '76561198271323792', 0, 10, 1, 7),
(1491, '76561198075004703', 0, 10, 0, 0),
(1492, '76561198210833880', 1, 60, 1, 7),
(1493, '76561198068764437', 0, 10, 0, 0),
(1494, '76561198068764437', 0, 50, 1, 7),
(1495, '76561198075004703', 0, 10, 0, 0),
(1496, '76561198075004703', 0, 20, 8, 14),
(1497, '76561198012509163', 0, 5, 0, 0),
(1498, '76561198075004703', 0, 20, 8, 14),
(1499, '76561198075004703', 0, 10, 0, 0),
(1500, '76561198068764437', 0, 30, 0, 0),
(1501, '76561198068764437', 0, 50, 8, 14),
(1502, '76561198154348632', 0, 20, 1, 7),
(1503, '76561198075004703', 0, 10, 0, 0),
(1504, '76561198068764437', 0, 20,
3 gości