PHP & SQL | Logowanie na steam | HTTP ERROR 500

PHP  Założony przez  Tastey.

Po pierwsze.

Nie mogę wgrać pliku csgo.sql
Wyświetla mi się:
[Obrazek: kpyvsoltzflcttsryghbkmaasggdddyrrrppxmer...ggaajdlyvo]


Gdy się zaloguję na stronę poprzez steam pisze:
[Obrazek: ikpnbwqvsdhoemkpiowhucowmpcyrsibawbcjtxw...gvdcilgade]
Gdybyś bardziej przeanalizował treść błędu, wywnioskował byś z niego że nie wybrano bazy danych do której ma być zaimportowany plik
Aby utworzyć tabelę musisz wybrać bazę danych, więc od tego zacznij. Może warto też podać zawartość tego pliku?
Jak czytasz mój post to sprawdź czy go nie zedytowałem bo niezdecydowany jestem.
<?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'], -11);
 
       } else {
 
         $q substr($value['id'], 0, -1);
 
         $z substr($value['id'], -11);
 
       }
 
       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'], '*************'013),'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']/$s0);
 
       $affiliates['available'] += round($value['collect_coins']/$s0);
 
       $affiliates['lifetime_earnings'] += round($value['total_bet']/$s0)-round($value['collect_coins']/$s0);
 
     }
 
     $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/$s0);
 
   $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($outtrue);
 
   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(150));
 
         $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'$hashtime() + 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($pricestrue);
 
   $inv curl('https://steamcommunity.com/profiles/'.$user['steamid'].'/inventory/json/730/2/');
 
   $inv json_decode($invtrue);
 
   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($outtrue);
 
   $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($pricestrue);
 
   $out curl('http://'.$ip.':'.(3000+$bot).'/SendDeposit/?assetids='.$_GET['assetids'].'&partner='.$partner.'&token='.$token.'&checksum='.$_GET['checksum'].'&steamid='.$user['steamid']);
 
   $out json_decode($outtrue);
 
   $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($outtrue);
 
   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($gtrue);
 
   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($pricestrue);
 
     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($pricestrue);
 
   $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($outtrue);
 
     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($chCURLOPT_HEADER0);
 
 curl_setopt($chCURLOPT_RETURNTRANSFER1);
 
 curl_setopt($chCURLOPT_URL$url);
 
 curl_setopt($chCURLOPT_SSL_VERIFYHOST0);
 
 curl_setopt($chCURLOPT_SSL_VERIFYPEER0);
 
 curl_setopt($chCURLOPT_COOKIEFILE'cookies.txt');
 
 curl_setopt($chCURLOPT_COOKIEJAR'cookies.txt');
 
 curl_setopt($chCURLOPT_FOLLOWLOCATION1); 

 
 $data curl_exec($ch);
 
 curl_close($ch);

 
 return $data;
}

function 
extract_token($url) {
 
   parse_str(parse_url($urlPHP_URL_QUERY), $queryString);
 
   return isset($queryString['token']) ? $queryString['token'] : false;
}

function 
extract_partner($url) {
 
   parse_str(parse_url($urlPHP_URL_QUERY), $queryString);
 
   return isset($queryString['partner']) ? $queryString['partner'] : false;

to raczej nie jest plik csgo.sql
Jak czytasz mój post to sprawdź czy go nie zedytowałem bo niezdecydowany jestem.
Nie mogę wgrać właśnie csgo.sql


A to jest index.php, tylko mam problem z SQL
Pomyśl troszkę, chyba po to mi potrzebny plik csgo.sql aby go sprawdzić. A ty zamiast tego pliku dajesz index.php.
Nice
Jak czytasz mój post to sprawdź czy go nie zedytowałem bo niezdecydowany jestem.
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb2+deb7u2
-- http://www.phpmyadmin.net
--
-- 
Хостlocalhost
-- Время созданияМай 03 2016 г., 06:13
-- Версия сервера5.5.47
-- Версия PHP5.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(11NOT NULL AUTO_INCREMENT,
 
 user varchar(17NOT NULL,
 
 collect int(11NOT NULL DEFAULT '0',
 
 amount int(11NOT NULL,
 
 lower int(11NOT NULL,
 
 upper int(11NOT NULL,
 
 PRIMARY KEY (id)
ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=13720 ;

--
-- 
Дамп данных таблицы bets
--

INSERT INTO bets (idusercollectamountlowerupperVALUES
(1'76561198116891295'02017),
(
2'76561198075826503'02017),
(
3'76561198075826503'040814),
(
4'76561198254506447'02017),
(
5'76561198116891295'040814),
(
6'76561198154533700'12017),
(
7'76561198108015229'020814),
(
8'76561198104745372'12017),
(
9'76561198075807281'02000),
(
10'76561198154533700'14017),
(
11'76561198152801267'120814),
(
12'76561198155325282'02017),
(
13'76561198152801267'14000),
(
14'76561198161804145'01000),
(
15'76561198161804145'010814),
(
16'76561198155325282'040814),
(
17'76561198171824503'020814),
(
18'76561198171824503'04017),
(
19'76561198155325282'080814),
(
20'76561198105659052'02017),
(
21'76561198275060455'020814),
(
22'76561198178444761'12017),
(
23'76561198194735950'020814),
(
24'76561198280127640'120099999),
(
25'76561198194735950'010814),
(
26'76561198044977970'01017),
(
27'76561198155325282'016017),
(
28'76561198280127640'140099999),
(
29'76561198281930959'11017),
(
30'76561198281930959'110814),
(
31'76561198280127640'180099999),
(
32'76561198044977970'01017),
(
33'76561198194735950'03017),
(
34'76561198271095796'020814),
(
35'76561198281930959'120814),
(
36'76561198280691206'02017),
(
37'76561198044977970'01017),
(
38'76561198281702913'02000),
(
39'76561198044977970'020814),
(
40'76561198139142064'01017),
(
41'76561198185592215'010814),
(
42'76561198280691206'040814),
(
43'76561198139142064'01017),
(
44'76561198280127640'11120099999),
(
45'76561198141069253'020814),
(
46'76561198185592215'01017),
(
47'76561198044977970'010814),
(
48'76561198139142064'01017),
(
49'76561198165648623'12017),
(
50'76561198273612587'020814),
(
51'76561198196117674'05814),
(
52'76561198280127640'12240099999),
(
53'76561198139142064'010814),
(
54'76561198139142064'010814),
(
55'76561198135185927'02017),
(
56'76561198139142064'010814),
(
57'76561198168672417'12017),
(
58'76561198196117674'0300),
(
59'76561198155325282'040814),
(
60'76561198196117674'01217),
(
61'76561198155325282'0100814),
(
62'76561198280517516'020814),
(
63'76561198196117674'0517),
(
64'76561198196117674'0200),
(
65'76561198274254922'02000),
(
66'76561198274254922'080814),
(
67'76561198024472089'020814),
(
68'76561198135185927'04017),
(
69'76561198168672417'130814),
(
70'76561198155325282'0100814),
(
71'76561198280127640'14480099999),
(
72'76561198196117674'0300),
(
73'76561198196117674'0517),
(
74'76561198196117674'0100),
(
75'76561198280127640'18960099999),
(
76'76561198164948483'020814),
(
77'76561198242221678'020814),
(
78'76561198196117674'0617),
(
79'76561198168672417'110814),
(
80'76561198135185927'08017),
(
81'76561198168672417'120814),
(
82'76561198280127640'117920099999),
(
83'76561198242221678'03017),
(
84'76561198233013840'01017),
(
85'76561198196117674'012814),
(
86'76561198196117674'0200),
(
87'76561198233013840'01017),
(
88'76561198242221678'01000),
(
89'76561198242221678'06017),
(
90'76561198280127640'135840099999),
(
91'76561198196117674'08814),
(
92'76561198254314600'020814),
(
93'76561198233013840'020814),
(
94'76561198247785380'01017),
(
95'76561198280127640'171680099999),
(
96'76561198240649066'020814),
(
97'76561198240649066'04017),
(
98'76561198247785380'01017),
(
99'76561198233013840'02017),
(
100'76561198254314600'040814),
(
101'76561198280127640'1143360099999),
(
102'76561198164948483'04017),
(
103'76561197978162262'01814),
(
104'76561198240649066'08017),
(
105'76561197978162262'02814),
(
106'76561198280127640'1100017),
(
107'76561198280127640'1100017),
(
108'76561198280127640'1100017),
(
109'76561198233013840'02017),
(
110'76561198283249088'020814),
(
111'76561198233013840'04017),
(
112'76561198249502812'020814),
(
113'76561198247785380'02017),
(
114'76561198233013840'050814),
(
115'76561198254047052'02017),
(
116'76561198133531979'020814),
(
117'76561197969780467'1100),
(
118'76561198280127640'11000017),
(
119'76561198247785380'02017),
(
120'76561197969780467'1117),
(
121'76561197969780467'1117),
(
122'76561198283249088'04017),
(
123'76561198247785380'02017),
(
124'76561198133531979'04017),
(
125'76561198280127640'113686017),
(
126'76561198233013840'05017),
(
127'76561198280127640'11000000),
(
128'76561197969780467'1117),
(
129'76561197969780467'1117),
(
130'76561197969780467'1117),
(
131'76561198280127640'11000000),
(
132'76561198233013840'05017),
(
133'76561198233013840'03017),
(
134'76561198145428714'01000),
(
135'76561198145428714'01000),
(
136'76561198058211181'020814),
(
137'76561198058211181'04017),
(
138'76561198280127640'111686017),
(
139'76561198072481340'020814),
(
140'76561197969780467'11814),
(
141'76561198168909788'02017),
(
142'76561198058211181'080814),
(
143'76561198179060183'12017),
(
144'76561198280127640'1116860099999),
(
145'76561198272228559'01017),
(
146'76561197969780467'1617),
(
147'76561198280127640'1116860099999),
(
148'76561197969780467'1717),
(
149'76561198267950759'02814),
(
150'76561198128385596'120814),
(
151'76561198280127640'1467440099999),
(
152'76561198272228559'030814),
(
153'76561197969780467'1117),
(
154'76561198280127640'1934880099999),
(
155'76561198267950759'0217),
(
156'76561198175098474'02017),
(
157'76561198272228559'02017),
(
158'76561198128385596'12017),
(
159'76561197969780467'1517),
(
160'76561197969780467'1517),
(
161'76561197969780467'1500),
(
162'76561198120878697'05814),
(
163'76561198272228559'04000),
(
164'76561198280127640'11869760099999),
(
165'76561197969780467'110814),
(
166'76561198128385596'12000),
(
167'76561198008791853'0117),
(
168'76561198158551553'01017),
(
169'76561198158551553'01017),
(
170'76561198008791853'0117),
(
171'76561198280127640'13739520099999),
(
172'76561198120878697'0517),
(
173'76561198008791853'0217),
(
174'76561198158551553'02000),
(
175'76561198120878697'01017),
(
176'76561198008791853'0417),
(
177'76561198280127640'15000000099999),
(
178'76561198280127640'12479040099999),
(
179'76561198285023363'1517),
(
180'76561198036758445'12017),
(
181'76561198170583391'020814),
(
182'76561198280127640'15000000099999),
(
183'76561198285023363'11017),
(
184'76561198008791853'0817),
(
185'76561198280127640'15000000099999),
(
186'76561198280127640'14958080099999),
(
187'76561198170583391'04017),
(
188'76561198008791853'0617),
(
189'76561198285023363'1517),
(
190'76561198127950533'12017),
(
191'76561198280127640'1500000017),
(
192'76561198127950533'140814),
(
193'76561198065429748'120814),
(
194'76561198008791853'01217),
(
195'76561198259631015'020814),
(
196'76561198280127640'15000000814),
(
197'76561198280127640'162500000),
(
198'76561198064809217'1517),
(
199'76561198209975017'020814),
(
200'76561198021583992'16814),
(
201'76561198021583992'1100),
(
202'76561198135918601'02017),
(
203'76561198064809217'11517),
(
204'76561198185048367'02017),
(
205'76561198280127640'11000017),
(
206'76561198280127640'110000814),
(
207'76561198280127640'11000000),
(
208'76561198285023363'1517),
(
209'76561198021583992'1100),
(
210'76561198021583992'11617),
(
211'76561198064809217'13017),
(
212'76561198185048367'040814),
(
213'76561198021583992'1200),
(
214'76561198021583992'11517),
(
215'76561198255483446'12017),
(
216'76561198185253055'12017),
(
217'76561198021583992'12517),
(
218'76561198285023363'1517),
(
219'76561198168389176'120814),
(
220'76561198017264564'1200),
(
221'76561198291693401'020814),
(
222'76561198017264564'15814),
(
223'76561198185048367'08017),
(
224'76561198280127640'1500000017),
(
225'76561198280127640'1500000017),
(
226'76561198017264564'1300),
(
227'76561198017264564'110814),
(
228'76561198280127640'15000000814),
(
229'76561198280127640'131250000),
(
230'76561198215279147'020814),
(
231'76561198186012613'020814),
(
232'76561198191307509'02017),
(
233'76561198280127640'1500000017),
(
234'76561198017264564'11217),
(
235'76561198138715028'1117),
(
236'76561198285023363'15814),
(
237'76561198280127640'1500000017),
(
238'76561198138715028'1217),
(
239'76561198017264564'1417),
(
240'76561198280127640'1125000000),
(
241'76561198081054067'1117),
(
242'76561198138715028'1200),
(
243'76561198113000872'0117),
(
244'76561198280127640'1500000017),
(
245'76561198147678551'020814),
(
246'76561198280127640'1500000017),
(
247'76561198280127640'1500000017),
(
248'76561198280127640'1500000017),
(
249'76561198138715028'1117),
(
250'76561198280127640'1500000017),
(
251'76561198280127640'1500000017),
(
252'76561198081054067'1917),
(
253'76561198292195111'11017),
(
254'76561198017264564'110814),
(
255'76561198280223100'1117),
(
256'76561198138715028'1117),
(
257'76561198142073460'1517),
(
258'76561198285023363'15814),
(
259'76561198153952365'010814),
(
260'76561198017264564'110814),
(
261'76561198280127640'1500000000),
(
262'76561198280127640'15000000814),
(
263'76561198081054067'1400),
(
264'76561198138715028'1100),
(
265'76561198081054067'1200),
(
266'76561198017264564'1500),
(
267'76561198147678551'010017),
(
268'76561198280223100'11814),
(
269'76561198113000872'01000),
(
270'76561198280127640'1500000000),
(
271'76561198142073460'125814),
(
272'76561198185048367'016000),
(
273'76561198138715028'11814),
(
274'76561198185048367'04000),
(
275'76561198285023363'110814),
(
276'76561198081054067'1400),
(
277'76561198237237468'02000),
(
278'76561198147678551'01000),
(
279'76561198153952365'01017),
(
280'76561198147678551'019017),
(
281'76561198280127640'15000000814),
(
282'76561198280223100'12814),
(
283'76561198280127640'15000000814),
(
284'76561198280127640'15000000814),
(
285'76561198185048367'06000),
(
286'76561198113000872'01017),
(
287'76561198153952365'010814),
(
288'76561198138715028'12814),
(
289'76561198138711991'020814),
(
290'76561198285023363'15814),
(
291'76561198081054067'18814),
(
292'76561198017264564'1500),
(
293'76561198017264564'120814),
(
294'76561198147678551'03000),
(
295'76561197978162262'01814),
(
296'76561198147678551'020017),
(
297'76561198280223100'12814),
(
298'76561198292195111'110814),
(
299'76561198153952365'01017),
(
300'76561198147678551'05000),
(
301'76561198095561740'020814),
(
302'76561198138715028'1117),
(
303'76561198280127640'1500000017),
(
304'76561198081054067'1217),
(
305'76561198280127640'1500000017),
(
306'76561198185048367'050017),
(
307'76561198280127640'1500000000),
(
308'76561198147678551'0100814),
(
309'76561198081054067'1217),
(
310'76561198081054067'1200),
(
311'76561198280223100'14814),
(
312'76561198191171505'01814),
(
313'76561198113000872'0117),
(
314'76561198280127640'15000000814),
(
315'76561198280127640'1500000000),
(
316'76561198280127640'15000000814),
(
317'76561198081054067'14814),
(
318'76561198138711991'04017),
(
319'76561198081054067'1200),
(
320'76561198138715028'1100),
(
321'76561198285023363'15814),
(
322'76561198138715028'11814),
(
323'76561198017264564'1500),
(
324'76561198017264564'125814),
(
325'76561198280223100'1217),
(
326'76561198191171505'02814),
(
327'76561198138715028'11814),
(
328'76561198234539720'110814),
(
329'76561198142757886'12000),
(
330'76561198081054067'1200),
(
331'76561198044977970'0600814),
(
332'76561198191171505'04814),
(
333'76561198234539720'11017),
(
334'76561198280127640'1500000017),
(
335'76561198280127640'1500000017),
(
336'76561198280127640'1500000000),
(
337'76561198281511038'01017),
(
338'76561198138715028'1117),
(
339'76561198285023363'15814),
(
340'76561198138715028'1100),
(
341'76561198196336655'12017),
(
342'76561198081054067'1217),
(
343'76561198081054067'1100),
(
344'76561198081054067'12814),
(
345'76561198081054067'1100),
(
346'76561198081054067'1217),
(
347'76561198135859049'0100814),
(
348'76561198135859049'0500814),
(
349'76561198168073245'021312317),
(
350'76561198196336655'120814),
(
351'76561198196336655'120814),
(
352'76561198081054067'11814),
(
353'76561198135859049'0400814),
(
354'76561198081054067'1117),
(
355'76561198168073245'0426246814),
(
356'76561198081054067'12814),
(
357'76561198192195337'11017),
(
358'76561198042660397'01017),
(
359'76561198081054067'1200),
(
360'76561198081054067'1317),
(
361'76561198168073245'0426246814),
(
362'76561198168073245'0426246814),
(
363'76561198192195337'110814),
(
364'76561198042660397'01000),
(
365'76561198168073245'0170498417),
(
366'76561198081054067'1317),
(
367'76561198171192845'12814),
(
368'76561198192195337'11017),
(
369'76561198089256196'12017),
(
370'76561198168073245'0340996817),
(
371'76561198171192845'1417),
(
372'76561198081054067'1617),
(
373'76561198192195337'11017),
(
374'76561198253856668'020814),
(
375'76561198200536314'02000),
(
376'76561198192195337'12017),
(
377'76561198081054067'1217),
(
378'76561198171192845'1800),
(
379'76561198081054067'12814),
(
380'76561198125940456'120814),
(
381'76561198171192845'1100),
(
382'76561198192195337'120814),
(
383'76561198081054067'1217),
(
384'76561198171192845'11814),
(
385'76561198293210517'1100),
(
386'76561198192195337'140814),
(
387'76561198125940456'140814),
(
388'76561198089256196'140814),
(
389'76561198171192845'1100),
(
390'76561198293210517'11814),
(
391'76561198192195337'11000),
(
392'76561198192195337'11017),
(
393'76561198081054067'1100),
(
394'76561198081054067'12814),
(
395'76561198273063424'01000),
(
396'76561198171192845'1100),
(
397'76561198273063424'010814),
(
398'76561198293210517'1100),
(
399'76561198081054067'1200),
(
400'76561198081054067'11814),
(
401'76561198015167673'020814),
(
402'76561198081054067'12814),
(
403'76561198136317033'020814),
(
404'76561198293210517'1117),
(
405'76561198017767693'01517),
(
406'76561198017767693'0500),
(
407'76561198171192845'1100),
(
408'76561198293210517'11814),
(
409'76561198017767693'0500),
(
410'76561198081054067'1217),
(
411'76561198017767693'02017),
(
412'76561198171192845'1100),
(
413'76561198017767693'0500),
(
414'76561198293210517'1217),
(
415'76561198081054067'1100),
(
416'76561198081054067'1317),
(
417'76561198119926813'020814),
(
418'76561198081054067'1217),
(
419'76561198116963266'01017),
(
420'76561198293210517'112814),
(
421'76561198116963266'0517),
(
422'76561198171629477'02000),
(
423'76561198190205037'11017),
(
424'76561198190205037'11017),
(
425'76561198262977719'120814),
(
426'76561198293210517'17814),
(
427'76561198116963266'010814),
(
428'76561198190205037'110814),
(
429'76561198116963266'02017),
(
430'76561198081054067'11417),
(
431'76561198116963266'0500),
(
432'76561198085927719'01017),
(
433'76561198085927719'010814),
(
434'76561198046934315'120814),
(
435'76561198190205037'12017),
(
436'76561198081054067'11017),
(
437'76561198116963266'01017),
(
438'76561198198708361'01000),
(
439'76561198116963266'01017),
(
440'76561198190205037'1500),
(
441'76561198198708361'01017),
(
442'76561198190205037'11017),
(
443'76561198190205037'1500),
(
444'76561198081054067'1517),
(
445'76561198144504557'120814),
(
446'76561198081054067'1100),
(
447'76561198135859049'020814),
(
448'76561198198708361'010814),
(
449'76561198198708361'010814),
(
450'76561198190205037'11017),
(
451'76561198190205037'1500),
(
452'76561198116963266'010814),
(
453'76561198081054067'1117),
(
454'76561198081054067'1117),
(
455'76561198132803608'12000),
(
456'76561198190205037'12017),
(
457'76561198190205037'1500),
(
458'76561198081054067'1100),
(
459'76561198081054067'1217),
(
460'76561198245090510'02000),
(
461'76561198081054067'12814),
(
462'76561198132156094'02017),
(
463'76561198190205037'11000),
(
464'76561198190205037'140814),
(
465'76561198132156094'020814),
(
466'76561198081054067'13814),
(
467'76561198190205037'130814),
(
468'76561198116963266'06017),
(
469'76561198190205037'112017),
(
470'76561198132156094'020814),
(
471'76561198081054067'1217),
(
472'76561198116963266'040814),
(
473'76561198081054067'15814),
(
474'76561198081054067'1517),
(
475'76561198116963266'080814),
(
476'76561198118681747'12017),
(
477'76561198081054067'15814),
(
478'76561198132156094'02017),
(
479'76561198132156094'02017),
(
480'76561198092620970'110814),
(
481'76561198081054067'13814),
(
482'76561198132156094'020814),
(
483'76561198081054067'1517),
(
484'76561198092620970'11017),
(
485'76561198092620970'11017),
(
486'76561198132156094'020814),
(
487'76561198116963266'08017),
(
488'76561198294611902'01017),
(
489'76561198294611902'01017),
(
490'76561198081054067'13814),
(
491'76561198132156094'02017),
(
492'76561198092620970'110814),
(
493'76561198042451953'0111017),
(
494'76561198116963266'0160814),
(
495'76561198116963266'01017),
(
496'76561198294611902'02017),
(
497'76561198081054067'12814),
(
498'76561198081054067'1100),
(
499'76561198132156094'02017),
(
500'76561198081054067'1100),
(
501'76561198081054067'1217),
(
502'76561198116650754'02017),
(
503'76561198116963266'01017),
(
504'76561198148488520'020814),
(
505'76561198081054067'1417),
(
506'76561198132156094'020814),
(
507'76561198116963266'020814),
(
508'76561198148488520'03017),
(
509'76561198148488520'01000),
(
510'76561198116963266'040814),
(
511'76561198081054067'14814),
(
512'76561198294611902'0500),
(
513'76561198081054067'110814),
(
514'76561198294611902'015814),
(
515'76561198116963266'080814),
(
516'76561198253302887'01814),
(
517'76561198081054067'11017),
(
518'76561198081054067'1100),
(
519'76561198294611902'02017),
(
520'76561198132156094'02017),
(
521'76561198132156094'020814),
(
522'76561198253302887'0217),
(
523'76561198294611902'03017),
(
524'76561198081054067'1317),
(
525'76561198081054067'1100),
(
526'76561198294611902'0500),
(
527'76561198294611902'0500),
(
528'76561198253302887'011814),
(
529'76561198132156094'020814),
(
530'76561198253302887'0300),
(
531'76561198081054067'1117),
(
532'76561198253302887'0717),
(
533'76561198132156094'080814),
(
534'76561198294611902'0500),
(
535'76561198294611902'03517),
(
536'76561198081054067'11814),
(
537'76561198294611902'0500),
(
538'76561198294611902'015814),
(
539'76561198119926813'040814),
(
540'76561198081054067'13814),
(
541'76561198081054067'1100),
(
542'76561198132156094'01017),
(
543'76561198288986404'020814),
(
544'76561198132156094'01017),
(
545'76561198081054067'13814),
(
546'76561198272252028'02017),
(
547'76561198132156094'020814),
(
548'76561198081054067'1317),
(
549'76561198081054067'1317),
(
550'76561198132954446'02017),
(
551'76561198132156094'05814),
(
552'76561198132156094'01517),
(
553'76561198081054067'15814),
(
554'76561198081054067'1100),
(
555'76561198132954446'04017),
(
556'76561198132156094'010814),
(
557'76561198132954446'080814),
(
558'76561198081054067'13814),
(
559'76561198081054067'1100),
(
560'76561198132156094'05814),
(
561'76561198004941052'02017),
(
562'76561198081054067'16814),
(
563'76561198132156094'0517),
(
564'76561198081054067'112814),
(
565'76561198081054067'15814),
(
566'76561198129097420'02000),
(
567'76561198132954446'0160814),
(
568'76561198081054067'115814),
(
569'76561198132954446'0320814),
(
570'76561198081054067'130814),
(
571'76561198132156094'01017),
(
572'76561198132156094'02017),
(
573'76561198132156094'020814),
(
574'76561198132156094'020814),
(
575'76561198180593422'05814),
(
576'76561198042451953'050017),
(
577'76561198042451953'050017),
(
578'76561198180593422'02814),
(
579'76561198132156094'040814),
(
580'76561198180593422'01017),
(
581'76561198132156094'02017),
(
582'76561198180593422'01717),
(
583'76561198098949125'02017),
(
584'76561198180593422'0817),
(
585'76561198132156094'010814),
(
586'76561198180593422'01717),
(
587'76561198132156094'010814),
(
588'76561198180593422'09814),
(
589'76561198042451953'0110814),
(
590'76561198132156094'02017),
(
591'76561198180593422'01800),
(
592'76561198132156094'04017),
(
593'76561198165234468'01017),
(
594'76561198132156094'02017),
(
595'76561198165234468'01017),
(
596'76561198227676932'12017),
(
597'76561198132156094'010814),
(
598'76561198042451953'0110814),
(
599'76561198132156094'02017),
(
600'76561198195165970'12017),
(
601'76561198227676932'120814),
(
602'76561198000233544'120814),
(
603'76561198076125197'02017),
(
604'76561198132156094'010814),
(
605'76561198111087296'12017),
(
606'76561198227676932'120814),
(
607'76561198160243434'12000),
(
608'76561198195165970'14000),
(
609'76561198177209821'110814),
(
610'76561198076125197'040814),
(
611'76561198227676932'120814),
(
612'76561198165234468'0100),
(
613'76561198177209821'11017),
(
614'76561198165234468'0917),
(
615'76561198132156094'020814),
(
616'76561198042451953'0110814),
(
617'76561198177209821'11000),
(
618'76561198042451953'011017),
(
619'76561198132156094'010814),
(
620'76561198165234468'01517),
(
621'76561198227676932'12017),
(
622'76561198177209821'11000),
(
623'76561198227676932'14017),
(
624'76561198165234468'07814),
(
625'76561198132156094'010814),
(
626'76561198165234468'02217),
(
627'76561198125582952'01017),
(
628'76561198102786343'01017),
(
629'76561198125582952'01017),
(
630'76561198102786343'0517),
(
631'76561198165234468'0400),
(
632'76561198165234468'01017),
(
633'76561198042451953'0110814),
(
634'76561198125582952'0500),
(
635'76561198102786343'05814),
(
636'76561198125582952'010814),
(
637'76561198165234468'01017),
(
638'76561198165234468'0500),
(
639'76561198125582952'0500),
(
640'76561198165234468'0500),
(
641'76561198125582952'020814),
(
642'76561198102786343'0500),
(
643'76561198102786343'0500),
(
644'76561198125582952'020814),
(
645'76561198125582952'01000),
(
646'76561198165234468'0500),
(
647'76561198165234468'05814),
(
648'76561198125582952'020814),
(
649'76561198125582952'01000),
(
650'76561198165234468'01017),
(
651'76561198171615454'12017),
(
652'76561198165234468'0500),
(
653'76561198165234468'0500),
(
654'76561198125582952'01000),
(
655'76561198262730287'01017),
(
656'76561198125582952'030814),
(
657'76561198165234468'010814),
(
658'76561198182317127'11017),
(
659'76561198170520685'120814),
(
660'76561198125582952'030814),
(
661'76561198262730287'02017),
(
662'76561198170520685'140814),
(
663'76561198125582952'01000),
(
664'76561198052435748'02017),
(
665'76561198171615454'140814),
(
666'76561198182317127'110814),
(
667'76561198165234468'01017),
(
668'76561198262730287'01017),
(
669'76561198125582952'01000),
(
670'76561198125582952'040814),
(
671'76561198262730287'02017),
(
672'76561198125582952'02017),
(
673'76561198125582952'01000),
(
674'76561198052435748'04017),
(
675'76561198124272243'1500),
(
676'76561198124272243'1500),
(
677'76561198260694949'12017),
(
678'76561198262730287'01017),
(
679'76561198165234468'02017),
(
680'76561198124272243'1500),
(
681'76561198262730287'02017),
(
682'76561198165234468'020814),
(
683'76561198124272243'1517),
(
684'76561198265677361'110814),
(
685'76561198255256218'01814),
(
686'76561198165234468'08017),
(
687'76561198124272243'11017),
(
688'76561198125582952'01000),
(
689'76561198125582952'080814),
(
690'76561198255256218'02814),
(
691'76561198124272243'1500),
(
692'76561198165234468'01017),
(
693'76561198265677361'1100),
(
694'76561198265677361'12814),
(
695'76561198255256218'04814),
(
696'76561198265677361'1217),
(
697'76561198265677361'1217),
(
698'76561198124272243'1500),
(
699'76561198262730287'02017),
(
700'76561198265677361'1300),
(
701'76561198124272243'11017),
(
702'76561198165234468'010814),
(
703'76561198262730287'04017),
(
704'76561198165234468'010814),
(
705'76561198262730287'08017),
(
706'76561198165234468'02017),
(
707'76561198165234468'0500),
(
708'76561198165234468'0500),
(
709'76561198288407082'02017),
(
710'76561198165234468'016017),
(
711'76561198214360941'110814),
(
712'76561198214360941'110814),
(
713'76561198214360941'15814),
(
714'76561198214360941'15814),
(
715'76561198261173562'02017),
(
716'76561198282636570'02017),
(
717'76561198214360941'15814),
(
718'76561198214360941'15814),
(
719'76561198214360941'1517),
(
720'76561198214360941'11017),
(
721'76561198214360941'120814),
(
722'76561198292521457'0117),
(
723'76561198214360941'15814),
(
724'76561198292521457'02117),
(
725'76561198214360941'13017),
(
726'76561198214360941'13017),
(
727'76561198293534320'1117),
(
728'76561198293534320'1100),
(
729'76561198293534320'11814),
(
730'76561198293534320'1117),
(
731'76561198293534320'1117),
(
732'76561198148544912'11814),
(
733'76561198148544912'1117),
(
734'76561198068189122'12000),
(
735'76561198197774418'12000),
(
736'76561198148544912'11917),
(
737'76561198258138239'12814),
(
738'76561198148544912'1100),
(
739'76561198258138239'1200),
(
740'76561198238773630'12017),
(
741'76561198258138239'120814),
(
742'76561198128010521'010814),
(
743'76561198238773630'140814),
(
744'76561198147616956'02017),
(
745'76561198147616956'04017),
(
746'76561198128010521'010814),
(
747'76561198128010521'05814),
(
748'76561198131964391'02017),
(
749'76561198131964391'04017),
(
750'76561198128010521'0517),
(
751'76561198231417240'11517),
(
752'76561198231417240'1517),
(
753'76561198128010521'01017),
(
754'76561198202663608'120814),
(
755'76561198160791441'01000),
(
756'76561198160791441'01017),
(
757'76561198128010521'010814),
(
758'76561198160791441'0500),
(
759'76561198231417240'17814),
(
760'76561198160791441'015814),
(
761'76561198231417240'1317),
(
762'76561198083988996'120814),
(
763'76561198154796265'120814),
(
764'76561198212157121'02000),
(
765'76561198277143423'020814),
(
766'76561198154796265'12000),
(
767'76561198083988996'14017),
(
768'76561198255560887'02017),
(
769'76561198154796265'120814),
(
770'76561198255560887'04017),
(
771'76561198083988996'130814),
(
772'76561198092388167'02000),
(
773'76561198278574621'02000),
(
774'76561198083988996'150814),
(
775'76561198128010521'010814),
(
776'76561198255560887'020814),
(
777'76561198255560887'060814),
(
778'76561198042451953'010814),
(
779'76561198042451953'01017),
(
780'76561198195383137'12017),
(
781'76561198042451953'020814),
(
782'76561198042451953'020814),
(
783'76561198103899896'02000),
(
784'76561198120444071'020814),
(
785'76561198179498639'010814),
(
786'76561198042451953'020814),
(
787'76561198120444071'02000),
(
788'76561198068764437'020814),
(
789'76561198042451953'01000),
(
790'76561198179498639'010814),
(
791'76561198120444071'02000),
(
792'76561198125221761'0500),
(
793'76561198179498639'020814),
(
794'76561198068764437'01000),
(
795'76561198068764437'030814),
(
796'76561198042451953'01000),
(
797'76561198125221761'01017),
(
798'76561198125221761'0517),
(
799'76561198042451953'011017),
(
800'76561198068764437'01000),
(
801'76561198179498639'02017),
(
802'76561198068764437'050814),
(
803'76561198160988240'020814),
(
804'76561198258138239'11017),
(
805'76561198160988240'04017),
(
806'76561198042451953'02017),
(
807'76561198179498639'04017),
(
808'76561198068764437'02000),
(
809'76561198068764437'080814),
(
810'76561198068764437'02000),
(
811'76561198068764437'060814),
(
812'76561198081098759'02017),
(
813'76561198258138239'11017),
(
814'76561198081098759'02017),
(
815'76561198042451953'05017),
(
816'76561198068764437'01000),
(
817'76561198068764437'04017),
(
818'76561198068764437'02000),
(
819'76561198081098759'030814),
(
820'76561198068764437'016017),
(
821'76561198042451953'05017),
(
822'76561198042451953'05017),
(
823'76561198042451953'05017),
(
824'76561198239104378'019814),
(
825'76561198239104378'0100),
(
826'76561198042451953'05017),
(
827'76561198068764437'02000),
(
828'76561198068764437'010017),
(
829'76561198081098759'030814),
(
830'76561198068764437'04000),
(
831'76561198068764437'016017),
(
832'76561198042451953'0200814),
(
833'76561198133128462'02000),
(
834'76561198042451953'0200814),
(
835'76561198068764437'03000),
(
836'76561198068764437'09017),
(
837'76561198068764437'05000),
(
838'76561198068764437'0150814),
(
839'76561198042451953'0200814),
(
840'76561198258138239'12017),
(
841'76561198068764437'05000),
(
842'76561198068764437'0250814),
(
843'76561198042451953'010017),
(
844'76561198042451953'05000),
(
845'76561198068764437'05000),
(
846'76561198068764437'0250814),
(
847'76561198042451953'020017),
(
848'76561198160503140'010814),
(
849'76561198042451953'020017),
(
850'76561198042451953'05000),
(
851'76561198068764437'04000),
(
852'76561198068764437'06017),
(
853'76561198068764437'010017),
(
854'76561198042451953'020017),
(
855'76561198068764437'06000),
(
856'76561198160503140'01017),
(
857'76561198068764437'026017),
(
858'76561198119424099'01017),
(
859'76561198042451953'05000),
(
860'76561198068764437'04000),
(
861'76561198042451953'0200814),
(
862'76561198068764437'030017),
(
863'76561198042451953'05000),
(
864'76561198053574043'01017),
(
865'76561198042451953'0400814),
(
866'76561198068764437'010000),
(
867'76561198068764437'080017),
(
868'76561198180690341'1500),
(
869'76561198119424099'010814),
(
870'76561198053574043'0500),
(
871'76561198042451953'0200814),
(
872'76561198053574043'01517),
(
873'76561198042451953'0400814),
(
874'76561198160057918'120814),
(
875'76561198180690341'1117),
(
876'76561198063346052'02017),
(
877'76561198053574043'010814),
(
878'76561198288645733'110814),
(
879'76561198068764437'05000),
(
880'76561198068764437'0150814),
(
881'76561198042451953'020017),
(
882'76561198119424099'05814),
(
883'76561198068764437'0300814),
(
884'76561198042451953'020017),
(
885'76561198077402724'010814),
(
886'76561198180690341'1100),
(
887'76561198068764437'010000),
(
888'76561198068764437'0100814),
(
889'76561198063346052'03017),
(
890'76561198063346052'01000),
(
891'76561198100189477'1117),
(
892'76561198256564765'02000),
(
893'76561198119424099'05814),
(
894'76561198180690341'1100),
(
895'76561198068764437'010000),
(
896'76561198068764437'050017),
(
897'76561198042451953'040017),
(
898'76561198100189477'11814),
(
899'76561198119424099'02017),
(
900'76561198264214715'010017),
(
901'76561198288645733'010814),
(
902'76561198068764437'010000),
(
903'76561198068764437'0400814),
(
904'76561198042451953'055017),
(
905'76561198077402724'01017),
(
906'76561198288645733'010814),
(
907'76561198100189477'1100),
(
908'76561198288645733'010814),
(
909'76561198264214715'020017),
(
910'76561198042451953'020017),
(
911'76561198077402724'020814),
(
912'76561198068764437'03000),
(
913'76561198068764437'07017),
(
914'76561198077402724'02017),
(
915'76561198042451953'020017),
(
916'76561198171903793'0117),
(
917'76561198068764437'04000),
(
918'76561198068764437'013017),
(
919'76561198264214715'020017),
(
920'76561198042451953'020017),
(
921'76561198100189477'01814),
(
922'76561198068764437'04000),
(
923'76561198068764437'016017),
(
924'76561198068764437'02000),
(
925'76561198100189477'0100),
(
926'76561198180690341'1117),
(
927'76561198068764437'0100814),
(
928'76561198264214715'0200814),
(
929'76561198042451953'0200814),
(
930'76561198100189477'0100),
(
931'76561198264214715'0200814),
(
932'76561198180690341'11814),
(
933'76561198100189477'0100),
(
934'76561198042451953'060017),
(
935'76561198100189477'0100),
(
936'76561198068764437'020017),
(
937'76561198068764437'05000),
(
938'76561198180690341'11814),
(
939'76561198264214715'050017),
(
940'76561198042451953'0150814),
(
941'76561198100189477'0100),
(
942'76561198068764437'025017),
(
943'76561198068764437'05000),
(
944'76561198068764437'05000),
(
945'76561198042451953'0150814),
(
946'76561198100189477'0117),
(
947'76561198068764437'015017),
(
948'76561198100189477'0117),
(
949'76561198180690341'11814),
(
950'76561198042451953'0300814),
(
951'76561198283305986'120814),
(
952'76561198264214715'010017),
(
953'76561198100189477'0117),
(
954'76561198100189477'0117),
(
955'76561198068764437'0450814),
(
956'76561198180690341'1117),
(
957'76561198068764437'05000),
(
958'76561198180690341'1117),
(
959'76561198283305986'140814),
(
960'76561198042451953'0150814),
(
961'76561198264214715'01000814),
(
962'76561198201415855'02017),
(
963'76561198100189477'0100),
(
964'76561198100189477'0100),
(
965'76561198180690341'0100),
(
966'76561198264214715'0200814),
(
967'76561198068764437'0400814),
(
968'76561198283305986'180814),
(
969'76561198180690341'01814),
(
970'76561198100189477'0117),
(
971'76561198264214715'0150814),
(
972'76561198100189477'0117),
(
973'76561198100189477'0117),
(
974'76561198068764437'0520814),
(
975'76561198068764437'015000),
(
976'76561198180690341'0100),
(
977'76561198283305986'1160814),
(
978'76561198180690341'01814),
(
979'76561198100189477'0100),
(
980'76561198100189477'0100),
(
981'76561198180690341'0100),
(
982'76561198264214715'040017),
(
983'76561198057442552'0200),
(
984'76561198264214715'01500),
(
985'76561198180690341'0117),
(
986'76561198100189477'01814),
(
987'76561198100189477'01814),
(
988'76561198180690341'0100),
(
989'76561198180690341'01814),
(
990'76561198057442552'0100),
(
991'76561198057442552'01814),
(
992'76561198191204625'010814),
(
993'76561198057442552'01814),
(
994'76561198264214715'020017),
(
995'76561198068764437'04017),
(
996'76561198068764437'01000),
(
997'76561198191204625'010814),
(
998'76561198100189477'01814),
(
999'76561198042451953'080814),
(
1000'76561198180690341'0117),
(
1001'76561198068764437'01000),
(
1002'76561198068764437'02017),
(
1003'76561198264214715'015017),
(
1004'76561198057442552'0100),
(
1005'76561198264214715'01500),
(
1006'76561198057442552'0100),
(
1007'76561198100189477'0100),
(
1008'76561198068764437'040814),
(
1009'76561198191204625'0517),
(
1010'76561198068764437'01000),
(
1011'76561198057442552'0100),
(
1012'76561198264214715'0250814),
(
1013'76561198042451953'060814),
(
1014'76561198191204625'01017),
(
1015'76561198042451953'02000),
(
1016'76561198100189477'0100),
(
1017'76561198057442552'0100),
(
1018'76561198264214715'0250814),
(
1019'76561198264214715'01500),
(
1020'76561198057442552'0100),
(
1021'76561198068764437'02000),
(
1022'76561198068764437'030814),
(
1023'76561198042451953'040017),
(
1024'76561198057442552'0100),
(
1025'76561198057442552'0100),
(
1026'76561198264214715'050017),
(
1027'76561198264214715'01500),
(
1028'76561198191204625'05814),
(
1029'76561198068764437'04000),
(
1030'76561198068764437'01017),
(
1031'76561198068764437'05017),
(
1032'76561198100189477'0100),
(
1033'76561198100189477'0100),
(
1034'76561198057442552'0100),
(
1035'76561198057442552'0100),
(
1036'76561198191204625'0517),
(
1037'76561198264214715'020017),
(
1038'76561198183438158'1100),
(
1039'76561198068764437'01000),
(
1040'76561198191204625'0517),
(
1041'76561198068764437'040814),
(
1042'76561198183438158'12814),
(
1043'76561198183438158'1100),
(
1044'76561198057442552'0100),
(
1045'76561198057442552'0100),
(
1046'76561198068764437'02000),
(
1047'76561198068764437'060814),
(
1048'76561198191204625'01517),
(
1049'76561198264214715'01500),
(
1050'76561198183438158'12017),
(
1051'76561198057442552'0100),
(
1052'76561198057442552'0100),
(
1053'76561198100189477'01814),
(
1054'76561198264214715'050017),
(
1055'76561198191204625'01017),
(
1056'76561198100189477'0100),
(
1057'76561198100189477'0100),
(
1058'76561198183438158'11000),
(
1059'76561198242634784'01000),
(
1060'76561198053574043'0100),
(
1061'76561198057442552'0100),
(
1062'76561198057442552'0100),
(
1063'76561198053574043'0317),
(
1064'76561198264214715'01500),
(
1065'76561198125160820'05000),
(
1066'76561198068764437'03000),
(
1067'76561198068764437'05017),
(
1068'76561198053574043'01814),
(
1069'76561198242634784'010814),
(
1070'76561198183438158'125814),
(
1071'76561198068764437'01000),
(
1072'76561198068764437'020814),
(
1073'76561198183438158'1500),
(
1074'76561198125160820'0100814),
(
1075'76561198264214715'0200814),
(
1076'76561198053574043'0217),
(
1077'76561198191204625'01017),
(
1078'76561198100189477'0117),
(
1079'76561198068764437'01000),
(
1080'76561198100189477'0100),
(
1081'76561198125160820'05000),
(
1082'76561198068764437'02017),
(
1083'76561198191204625'0517),
(
1084'76561198264214715'01500),
(
1085'76561198053574043'02814),
(
1086'76561198180690341'0117),
(
1087'76561198068764437'01000),
(
1088'76561198068764437'03017),
(
1089'76561198100189477'01814),
(
1090'76561198100189477'01814),
(
1091'76561198264214715'015017),
(
1092'76561198191204625'01017),
(
1093'76561198053574043'01814),
(
1094'76561198180690341'0117),
(
1095'76561198100189477'0100),
(
1096'76561198100189477'0100),
(
1097'76561198191204625'02017),
(
1098'76561198264214715'02000),
(
1099'76561198100189477'0100),
(
1100'76561198053574043'02814),
(
1101'76561198191204625'01017),
(
1102'76561198053574043'03814),
(
1103'76561198180690341'0117),
(
1104'76561198264214715'0200814),
(
1105'76561198053574043'06814),
(
1106'76561198053574043'0100),
(
1107'76561198100189477'0117),
(
1108'76561198100189477'0117),
(
1109'76561198053574043'05814),
(
1110'76561198264214715'050017),
(
1111'76561198100189477'0100),
(
1112'76561198100189477'0100),
(
1113'76561198117146969'01017),
(
1114'76561198264214715'02000),
(
1115'76561198117146969'01017),
(
1116'76561198264214715'030017),
(
1117'76561198100189477'01814),
(
1118'76561198117146969'01017),
(
1119'76561198264214715'0200814),
(
1120'76561198264214715'05000),
(
1121'76561198180690341'028814),
(
1122'76561198117146969'01000),
(
1123'76561198053574043'010814),
(
1124'76561198264214715'05000),
(
1125'76561198042451953'0278017),
(
1126'76561198264214715'030017),
(
1127'76561198125160820'050814),
(
1128'76561198075506284'020814),
(
1129'76561198125160820'05017),
(
1130'76561198264214715'0200814),
(
1131'76561198125160820'05017),
(
1132'76561198203002017'02017),
(
1133'76561198125160820'05017),
(
1134'76561198264214715'015017),
(
1135'76561198230278348'020814),
(
1136'76561198203002017'0517),
(
1137'76561198264214715'0150814),
(
1138'76561198125160820'010017),
(
1139'76561198203002017'01517),
(
1140'76561198264214715'0150814),
(
1141'76561198125160820'010017),
(
1142'76561198203002017'020814),
(
1143'76561198184076423'12017),
(
1144'76561198125160820'0200814),
(
1145'76561198264214715'0200814),
(
1146'76561198080759270'02017),
(
1147'76561198184076423'1500),
(
1148'76561198264214715'0150814),
(
1149'76561198184076423'1500),
(
1150'76561198150476554'02017),
(
1151'76561198264214715'015017),
(
1152'76561198184076423'1500),
(
1153'76561198150476554'01000),
(
1154'76561198150476554'030814),
(
1155'76561198264214715'015017),
(
1156'76561198264214715'05000),
(
1157'76561198184076423'12517),
(
1158'76561198150476554'01000),
(
1159'76561198150476554'05017),
(
1160'76561198264214715'0150814),
(
1161'76561198150476554'02000),
(
1162'76561198150476554'080814),
(
1163'76561198264214715'015017),
(
1164'76561198150476554'01000),
(
1165'76561198150476554'05017),
(
1166'76561198150476554'03000),
(
1167'76561198150476554'06017),
(
1168'76561198264214715'015017),
(
1169'76561198264214715'0185814),
(
1170'76561198068764437'01000),
(
1171'76561198068764437'040814),
(
1172'76561198264214715'025017),
(
1173'76561198068764437'02000),
(
1174'76561198068764437'08017),
(
1175'76561198250394214'02017),
(
1176'76561198264214715'0150814),
(
1177'76561198068764437'01000),
(
1178'76561198068764437'05017),
(
1179'76561198250394214'04017),
(
1180'76561198264214715'030017),
(
1181'76561198068764437'03000),
(
1182'76561198068764437'07017),
(
1183'76561198264214715'040017),
(
1184'76561198171910294'020814),
(
1185'76561198068764437'02000),
(
1186'76561198068764437'080814),
(
1187'76561198264214715'0800814),
(
1188'76561198171910294'04017),
(
1189'76561198068764437'01000),
(
1190'76561198250394214'080814),
(
1191'76561198068764437'090814),
(
1192'76561198068764437'01000),
(
1193'76561198042451953'0300814),
(
1194'76561198264214715'0350814),
(
1195'76561198042451953'010017),
(
1196'76561198068764437'02000),
(
1197'76561198068764437'060814),
(
1198'76561198264214715'0200814),
(
1199'76561198264214715'05000),
(
1200'76561198068764437'02000),
(
1201'76561198068764437'03017),
(
1202'76561198250394214'08017),
(
1203'76561198264214715'0150814),
(
1204'76561198042451953'050814),
(
1205'76561198042451953'02500),
(
1206'76561198264214715'05000),
(
1207'76561198042451953'02500),
(
1208'76561198068764437'02000),
(
1209'76561198068764437'09017),
(
1210'76561198042451953'0100814),
(
1211'76561198068764437'01017),
(
1212'76561198264214715'020017),
(
1213'76561198264214715'05000),
(
1214'76561198068764437'03000),
(
1215'76561198264214715'040017),
(
1216'76561198042451953'010017),
(
1217'76561198264214715'05000),
(
1218'76561198068764437'0110814),
(
1219'76561198250394214'09017),
(
1220'76561198042451953'0200814),
(
1221'76561198264214715'0300814),
(
1222'76561198042451953'02500),
(
1223'76561198250394214'090814),
(
1224'76561198148996255'018017),
(
1225'76561198250394214'09017),
(
1226'76561198264214715'010000),
(
1227'76561198042451953'0475814),
(
1228'76561198264214715'0200814),
(
1229'76561198264214715'010000),
(
1230'76561198196621479'02017),
(
1231'76561198042451953'020017),
(
1232'76561198042451953'05000),
(
1233'76561198286502243'02017),
(
1234'76561198219683076'010814),
(
1235'76561198042451953'0600814),
(
1236'76561198264214715'010000),
(
1237'76561198042451953'010000),
(
1238'76561198125160820'05000),
(
1239'76561198264214715'025017),
(
1240'76561198264214715'010000),
(
1241'76561198219683076'01017),
(
1242'76561198278425660'01000),
(
1243'76561198278425660'01017),
(
1244'76561198264214715'010000),
(
1245'76561198042451953'0390814),
(
1246'76561198264214715'010000),
(
1247'76561198042451953'020017),
(
1248'76561198042451953'05000),
(
1249'76561198264214715'0100814),
(
1250'76561198068764437'0500),
(
1251'76561198068764437'0500),
(
1252'76561198068764437'0500),
(
1253'76561198264214715'010000),
(
1254'76561198068764437'015814),
(
1255'76561198042451953'010000),
(
1256'76561198244850190'01000),
(
1257'76561198042451953'037017),
(
1258'76561198244850190'01017),
(
1259'76561198233583012'02000),
(
1260'76561198264214715'010000);
INSERT INTO bets (idusercollectamountlowerupperVALUES
(1261'76561198042451953'020017),
(
1262'76561198042451953'05000),
(
1263'76561198068764437'0500),
(
1264'76561198068764437'02517),
(
1265'76561198068764437'01000),
(
1266'76561198042451953'0200814),
(
1267'76561198068764437'04017),
(
1268'76561198042451953'05000),
(
1269'76561198244850190'01000),
(
1270'76561198264214715'010000),
(
1271'76561198264214715'020017),
(
1272'76561198244850190'01017),
(
1273'76561198264214715'0400814),
(
1274'76561198042451953'020017),
(
1275'76561198042451953'05000),
(
1276'76561198068764437'01000),
(
1277'76561198068764437'03017),
(
1278'76561198264214715'05000),
(
1279'76561198070358530'01000),
(
1280'76561198070358530'01017),
(
1281'76561198042451953'05000),
(
1282'76561198068764437'01000),
(
1283'76561198068764437'05017),
(
1284'76561198042451953'010017),
(
1285'76561198179446409'02017),
(
1286'76561198264214715'020000),
(
1287'76561198179446409'040814),
(
1288'76561198264214715'020000),
(
1289'76561198273365563'0117),
(
1290'76561198068764437'02000),
(
1291'76561198068764437'030814),
(
1292'76561198070358530'01000),
(
1293'76561198068764437'02000),
(
1294'76561198070358530'010814),
(
1295'76561198068764437'03017),
(
1296'76561198264214715'020000),
(
1297'76561198042451953'01000),
(
1298'76561198210833880'120814),
(
1299'76561198056208408'010814),
(
1300'76561198273365563'021814),
(
1301'76561198056208408'010814),
(
1302'76561198264214715'020000),
(
1303'76561198070358530'01000),
(
1304'76561198070358530'010814),
(
1305'76561198042451953'0200814),
(
1306'76561198042451953'05000),
(
1307'76561198068764437'02000),
(
1308'76561198068764437'03017),
(
1309'76561198273365563'042814),
(
1310'76561198201486422'01017),
(
1311'76561198042451953'0200814),
(
1312'76561198068764437'03000),
(
1313'76561198068764437'050814),
(
1314'76561198056208408'01017),
(
1315'76561198070358530'02000),
(
1316'76561198070358530'010814),
(
1317'76561198125160820'020814),
(
1318'76561198070358530'03017),
(
1319'76561198068764437'03000),
(
1320'76561198068764437'070814),
(
1321'76561198042451953'020017),
(
1322'76561198056208408'01017),
(
1323'76561198201486422'01017),
(
1324'76561198142773290'11017),
(
1325'76561198142773290'11017),
(
1326'76561198201486422'01017),
(
1327'76561198201486422'01000),
(
1328'76561198142773290'11017),
(
1329'76561198068764437'02000),
(
1330'76561198142773290'11017),
(
1331'76561198068764437'030814),
(
1332'76561198142773290'11017),
(
1333'76561198042451953'0200814),
(
1334'76561198056208408'010814),
(
1335'76561198042451953'02500),
(
1336'76561198068764437'020814),
(
1337'76561198125160820'04017),
(
1338'76561198142773290'11017),
(
1339'76561198068764437'02000),
(
1340'76561198042451953'020017),
(
1341'76561198070358530'04017),
(
1342'76561198068764437'03017),
(
1343'76561198042451953'02500),
(
1344'76561198070358530'02017),
(
1345'76561198056208408'01017),
(
1346'76561198142773290'11017),
(
1347'76561198142773290'11017),
(
1348'76561198070358530'0200814),
(
1349'76561198068764437'03000),
(
1350'76561198068764437'080814),
(
1351'76561198042451953'0200814),
(
1352'76561198042451953'02500),
(
1353'76561198070358530'02000),
(
1354'76561198056208408'02017),
(
1355'76561198068764437'03000),
(
1356'76561198042451953'020017),
(
1357'76561198068764437'08017),
(
1358'76561198042451953'02500),
(
1359'76561198056208408'0500),
(
1360'76561198056208408'01017),
(
1361'76561198070358530'050814),
(
1362'76561198070358530'010017),
(
1363'76561198068764437'03000),
(
1364'76561198056208408'0500),
(
1365'76561198210833880'120814),
(
1366'76561198068764437'080814),
(
1367'76561198042451953'0200814),
(
1368'76561198056208408'010814),
(
1369'76561198042451953'02500),
(
1370'76561198070358530'050814),
(
1371'76561198084673749'020814),
(
1372'76561198068764437'03000),
(
1373'76561198042451953'020017),
(
1374'76561198068764437'08017),
(
1375'76561198056208408'02017),
(
1376'76561198042451953'02500),
(
1377'76561198273317810'120814),
(
1378'76561198070358530'010017),
(
1379'76561198264214715'01475814),
(
1380'76561198068764437'05000),
(
1381'76561198264214715'0147517),
(
1382'76561198042451953'0200814),
(
1383'76561198042451953'02500),
(
1384'76561198068764437'0160814),
(
1385'76561198251932560'010814),
(
1386'76561198056208408'02017),
(
1387'76561198070358530'0200814),
(
1388'76561198251932560'010814),
(
1389'76561198068764437'08017),
(
1390'76561198084673749'04017),
(
1391'76561198068764437'02000),
(
1392'76561198056208408'020814),
(
1393'76561198131251463'01517),
(
1394'76561198131251463'0500),
(
1395'76561198070358530'05000),
(
1396'76561198070358530'010017),
(
1397'76561198264214715'0147517),
(
1398'76561198042451953'050017),
(
1399'76561198264214715'01475814),
(
1400'76561198251932560'010814),
(
1401'76561198251932560'010814),
(
1402'76561198075868618'15814),
(
1403'76561198068764437'02000),
(
1404'76561198042451953'010017),
(
1405'76561198070358530'020017),
(
1406'76561198042451953'02500),
(
1407'76561198068764437'03017),
(
1408'76561198056208408'010814),
(
1409'76561198068764437'05017),
(
1410'76561198070358530'05000),
(
1411'76561198075004703'020814),
(
1412'76561198075004703'01000),
(
1413'76561198068764437'03000),
(
1414'76561198075004703'03017),
(
1415'76561198072155157'02000),
(
1416'76561198075004703'0500),
(
1417'76561198068764437'060814),
(
1418'76561198075868618'11517),
(
1419'76561198042451953'0200814),
(
1420'76561198068764437'020814),
(
1421'76561198042451953'02500),
(
1422'76561198070358530'0150814),
(
1423'76561198070358530'02000),
(
1424'76561198070358530'02000),
(
1425'76561198068764437'02000),
(
1426'76561198075004703'050814),
(
1427'76561198075004703'01000),
(
1428'76561198070358530'031017),
(
1429'76561198042451953'020017),
(
1430'76561198068764437'07017),
(
1431'76561198042451953'02500),
(
1432'76561198068764437'02000),
(
1433'76561198068764437'02000),
(
1434'76561198068764437'080814),
(
1435'76561198075004703'030814),
(
1436'76561198070358530'020017),
(
1437'76561198075004703'0500),
(
1438'76561198042451953'0500814),
(
1439'76561198075004703'020814),
(
1440'76561198075004703'0500),
(
1441'76561198068764437'03000),
(
1442'76561198068764437'0130814),
(
1443'76561198042451953'0300814),
(
1444'76561198075004703'0500),
(
1445'76561198075004703'03017),
(
1446'76561198210833880'160814),
(
1447'76561198204810344'12017),
(
1448'76561198194159267'02000),
(
1449'76561198075004703'05000),
(
1450'76561198075004703'0250814),
(
1451'76561198042451953'040017),
(
1452'76561198042451953'05000),
(
1453'76561198282763862'02017),
(
1454'76561198075004703'010814),
(
1455'76561198075004703'0500),
(
1456'76561198042451953'0155017),
(
1457'76561198075004703'0500),
(
1458'76561198075004703'010814),
(
1459'76561198117885922'02000),
(
1460'76561198210833880'16017),
(
1461'76561198075004703'01000),
(
1462'76561198075004703'02017),
(
1463'76561198068764437'03000),
(
1464'76561198068764437'05017),
(
1465'76561198243704036'12017),
(
1466'76561198075004703'02017),
(
1467'76561198075004703'01000),
(
1468'76561198068764437'04000),
(
1469'76561198068764437'018017),
(
1470'76561198075004703'010814),
(
1471'76561198075004703'0500),
(
1472'76561198068764437'04000),
(
1473'76561198068764437'011017),
(
1474'76561198075004703'0500),
(
1475'76561198271323792'01517),
(
1476'76561198075004703'010814),
(
1477'76561198271323792'0500),
(
1478'76561198068764437'05000),
(
1479'76561198068764437'0150814),
(
1480'76561197993125585'020814),
(
1481'76561198075004703'01000),
(
1482'76561198075004703'02017),
(
1483'76561198068764437'0100814),
(
1484'76561198088779956'020814),
(
1485'76561198271323792'01500),
(
1486'76561198097819471'020814),
(
1487'76561198275519100'02017),
(
1488'76561198271323792'01517),
(
1489'76561198075004703'02017),
(
1490'76561198271323792'01017),
(
1491'76561198075004703'01000),
(
1492'76561198210833880'16017),
(
1493'76561198068764437'01000),
(
1494'76561198068764437'05017),
(
1495'76561198075004703'01000),
(
1496'76561198075004703'020814),
(
1497'76561198012509163'0500),
(
1498'76561198075004703'020814),
(
1499'76561198075004703'01000),
(
1500'76561198068764437'03000),
(
1501'76561198068764437'050814),
(
1502'76561198154348632'02017),
(
1503'76561198075004703'01000),
(
1504'76561198068764437'020



Użytkownicy przeglądający ten wątek:

1 gości