Merge branch 'master' of git://git.assembla.com/fpdboz

Conflicts:
	pyfpdb/fpdb.py
This commit is contained in:
steffen123 2010-06-20 13:32:39 +02:00
commit 9543413b43
23 changed files with 1713 additions and 1464 deletions

View File

@ -32,6 +32,7 @@ import string
import traceback
import shutil
import locale
import re
import xml.dom.minidom
from xml.dom.minidom import Node
@ -248,6 +249,8 @@ class Site:
self.enabled = string_to_bool(node.getAttribute("enabled"), default=True)
self.xpad = node.getAttribute("xpad")
self.ypad = node.getAttribute("ypad")
self.xshift = node.getAttribute("xshift")
self.yshift = node.getAttribute("yshift")
self.layout = {}
print "Loading site", self.site_name
@ -259,6 +262,8 @@ class Site:
# Site defaults
self.xpad = 1 if self.xpad == "" else int(self.xpad)
self.ypad = 0 if self.ypad == "" else int(self.ypad)
self.xshift = 1 if self.xshift == "" else int(self.xshift)
self.yshift = 0 if self.yshift == "" else int(self.yshift)
self.font_size = 7 if self.font_size == "" else int(self.font_size)
self.hudopacity = 1.0 if self.hudopacity == "" else float(self.hudopacity)
@ -296,12 +301,18 @@ class Game:
self.cols = int( node.getAttribute("cols") )
self.xpad = node.getAttribute("xpad")
self.ypad = node.getAttribute("ypad")
self.xshift = node.getAttribute("xshift")
self.yshift = node.getAttribute("yshift")
# Defaults
if self.xpad == "": self.xpad = 1
else: self.xpad = int(self.xpad)
if self.ypad == "": self.ypad = 0
else: self.ypad = int(self.ypad)
if self.xshift == "": self.xshift = 1
else: self.xshift = int(self.xshift)
if self.yshift == "": self.yshift = 0
else: self.yshift = int(self.yshift)
aux_text = node.getAttribute("aux")
aux_list = aux_text.split(',')
@ -334,6 +345,8 @@ class Game:
temp = temp + " cols = %d\n" % self.cols
temp = temp + " xpad = %d\n" % self.xpad
temp = temp + " ypad = %d\n" % self.ypad
temp = temp + " xshift = %d\n" % self.xshift
temp = temp + " yshift = %d\n" % self.yshift
temp = temp + " aux = %s\n" % self.aux
for stat in self.stats.keys():
@ -662,7 +675,34 @@ class Config:
pass
with open(file, 'w') as f:
self.doc.writexml(f)
#self.doc.writexml(f)
f.write( self.wrap_long_lines( self.doc.toxml() ) )
def wrap_long_lines(self, s):
lines = [ self.wrap_long_line(l) for l in s.splitlines() ]
return('\n'.join(lines) + '\n')
def wrap_long_line(self, l):
if 'config_wrap_len' in self.general:
wrap_len = int(self.general['config_wrap_len'])
else:
wrap_len = -1 # < 0 means no wrap
if wrap_len >= 0 and len(l) > wrap_len:
m = re.compile('\s+\S+\s+')
mo = m.match(l)
if mo:
indent_len = mo.end()
#print "indent = %s (%s)" % (indent_len, l[0:indent_len])
indent = '\n' + ' ' * indent_len
m = re.compile('(\S+="[^"]+"\s+)')
parts = [x for x in m.split(l[indent_len:]) if x]
if len(parts) > 1:
#print "parts =", parts
l = l[0:indent_len] + indent.join(parts)
return(l)
else:
return(l)
def edit_layout(self, site_name, max, width = None, height = None,
fav_seat = None, locations = None):
@ -951,6 +991,8 @@ class Config:
parms["enabled"] = self.supported_sites[site].enabled
parms["xpad"] = self.supported_sites[site].xpad
parms["ypad"] = self.supported_sites[site].ypad
parms["xshift"] = self.supported_sites[site].xshift
parms["yshift"] = self.supported_sites[site].yshift
return parms
def set_site_parameters(self, site_name, converter = None, decoder = None,
@ -1002,6 +1044,8 @@ class Config:
param['cols'] = self.supported_games[name].cols
param['xpad'] = self.supported_games[name].xpad
param['ypad'] = self.supported_games[name].ypad
param['xshift'] = self.supported_games[name].xshift
param['yshift'] = self.supported_games[name].yshift
param['aux'] = self.supported_games[name].aux
return param

View File

@ -1056,7 +1056,7 @@ class Database:
key = "`" + inner[j][0] + "_" + m.group() + "`"
c.execute("ALTER TABLE " + inner[j][0] + " DROP FOREIGN KEY " + key)
self.commit()
#end drop_referential_inegrity
#end drop_referential_inegrity
def recreate_tables(self):
"""(Re-)creates the tables of the current DB"""

View File

@ -88,7 +88,7 @@ class Filters(threading.Thread):
if len(result) == 1:
self.siteid[site] = result[0][0]
else:
print "Either 0 or more than one site matched - EEK"
print "Either 0 or more than one site matched (%s) - EEK" % site
# For use in date ranges.
self.start_date = gtk.Entry(max=12)

View File

@ -199,10 +199,10 @@ class GuiAutoImport (threading.Thread):
bs = 0
elif os.name == 'nt':
path = sys.path[0].replace('\\','\\\\')
command = 'python "'+path+'\\HUD_main.py" ' + self.settings['cl_options']
command = 'pythonw "'+path+'\\HUD_main.pyw" ' + self.settings['cl_options']
bs = 0
else:
command = os.path.join(sys.path[0], 'HUD_main.py')
command = os.path.join(sys.path[0], 'HUD_main.pyw')
command = [command, ] + string.split(self.settings['cl_options'])
bs = 1
@ -210,7 +210,12 @@ class GuiAutoImport (threading.Thread):
print "opening pipe to HUD"
self.pipe_to_hud = subprocess.Popen(command, bufsize=bs,
stdin=subprocess.PIPE,
universal_newlines=True)
stdout=subprocess.PIPE, # only needed for py2exe
stderr=subprocess.PIPE, # only needed for py2exe
universal_newlines=True
)
#self.pipe_to_hud.stdout.close()
#self.pipe_to_hud.stderr.close()
except:
err = traceback.extract_tb(sys.exc_info()[2])[-1]
#self.addText( "\n*** GuiAutoImport Error opening pipe: " + err[2] + "(" + str(err[1]) + "): " + str(sys.exc_info()[1]))

View File

@ -228,9 +228,9 @@ class GuiGraphViewer (threading.Thread):
self.ax.plot(blue, color='blue', label='Showdown: $%.2f' %(blue[-1]))
self.ax.plot(red, color='red', label='Non-showdown: $%.2f' %(red[-1]))
if sys.version[0:3] == '2.5':
self.ax.legend(loc='best', shadow=True, prop=FontProperties(size='smaller'))
self.ax.legend(loc='upper left', shadow=True, prop=FontProperties(size='smaller'))
else:
self.ax.legend(loc='best', fancybox=True, shadow=True, prop=FontProperties(size='smaller'))
self.ax.legend(loc='upper left', fancybox=True, shadow=True, prop=FontProperties(size='smaller'))
self.graphBox.add(self.canvas)
self.canvas.show()

View File

@ -60,7 +60,7 @@ class GuiPrefs:
configColumn.pack_start(cRender, True)
configColumn.add_attribute(cRender, 'text', 1)
configColumn = gtk.TreeViewColumn("Value")
configColumn = gtk.TreeViewColumn("Value (double-click to change)")
self.configView.append_column(configColumn)
cRender = gtk.CellRendererText()
configColumn.pack_start(cRender, True)

View File

@ -2,6 +2,13 @@
<FreePokerToolsConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FreePokerToolsConfig.xsd">
<!-- config_wrap_len is preferred max line length in this file, -1 means no max
day_start is time that logical day starts, e.g. 5 means that any play
between 00:00 and 04:59:59 counts as being on the previous day -->
<general config_wrap_len="-1"
day_start="5"
/>
<import callFpdbHud = "True" interval = "10" fastStoreHudCache="False" hhArchiveBase="~/.fpdb/HandHistories/" saveActions="True"></import>
<!-- These values determine what stats are displayed in the HUD
@ -114,6 +121,10 @@ Left-Drag to Move"
hudopacity="1.0"
font="Sans"
font_size="8"
xpad="1"
ypad="0"
xshift="0"
yshift="0"
supported_games="holdem,razz,omahahi,omahahilo,studhi,studhilo">
<layout max="8" width="792" height="546" fav_seat="0">
<location seat="1" x="684" y="61"> </location>

View File

@ -98,7 +98,11 @@ class HUD_main(object):
self.main_window = gtk.Window()
self.main_window.connect("destroy", self.destroy)
self.vb = gtk.VBox()
self.label = gtk.Label('Closing this window will exit from the HUD.')
#in .exe version, closing HUD_main window causes window lockup
#until next update cycle (i.e. cannot get focus on poker window while locked)
#temporary workaround to disable close button until fix is found
self.main_window.set_deletable(False)
self.label = gtk.Label(' To close, use "Stop Autoimport" in FPDB.')
self.vb.add(self.label)
self.main_window.add(self.vb)
self.main_window.set_title("HUD Main Window")

View File

@ -87,6 +87,7 @@ class Hud:
(font, font_size) = config.get_default_font(self.table.site)
self.colors = config.get_default_colors(self.table.site)
self.hud_ui = config.get_hud_ui_parameters()
self.site_params = config.get_site_parameters(self.table.site)
self.backgroundcolor = gtk.gdk.color_parse(self.colors['hudbgcolor'])
self.foregroundcolor = gtk.gdk.color_parse(self.colors['hudfgcolor'])
@ -457,7 +458,7 @@ class Hud:
if self.table.x != x or self.table.y != y:
self.table.x = x
self.table.y = y
self.main_window.move(x, y)
self.main_window.move(x + self.site_params['xshift'], y + self.site_params['yshift'])
adj = self.adj_seats(self.hand, self.config)
loc = self.config.get_locations(self.table.site, self.max)
# TODO: is stat_windows getting converted somewhere from a list to a dict, for no good reason?

View File

@ -145,6 +145,7 @@ class PokerStars(HandHistoryConverter):
mg = m.groupdict()
# translations from captured groups to fpdb info strings
Lim_Blinds = { '0.04': ('0.01', '0.02'), '0.10': ('0.02', '0.05'), '0.20': ('0.05', '0.10'),
'0.80': ('0.20', '0.40'),
'0.50': ('0.10', '0.25'), '1.00': ('0.25', '0.50'), '2.00': ('0.50', '1.00'),
'2': ('0.50', '1.00'), '4': ('1.00', '2.00'), '6': ('1.00', '3.00'),
'4.00': ('1.00', '2.00'), '6.00': ('1.00', '3.00'), '10.00': ('2.00', '5.00'),

View File

@ -55,11 +55,11 @@ class Sql:
# List indexes
################################
if db_server == 'mysql':
self.query['list_tables'] = """SHOW INDEXES"""
self.query['list_indexes'] = """SHOW INDEXES"""
elif db_server == 'postgresql':
self.query['list_tables'] = """SELECT tablename, indexname FROM PG_INDEXES"""
self.query['list_indexes'] = """SELECT tablename, indexname FROM PG_INDEXES"""
elif db_server == 'sqlite':
self.query['list_tables'] = """SELECT name FROM sqlite_master
self.query['list_indexes'] = """SELECT name FROM sqlite_master
WHERE type='index'
ORDER BY name;"""
@ -2632,25 +2632,6 @@ class Sql:
GROUP BY h.handStart, hp.handId, hp.sawShowdown, hp.totalProfit
ORDER BY h.handStart"""
####################################
# Session stats query
####################################
if db_server == 'mysql':
self.query['sessionStats'] = """
SELECT UNIX_TIMESTAMP(h.handStart) as time, hp.handId, hp.startCash, hp.winnings, hp.totalProfit
FROM HandsPlayers hp
INNER JOIN Players pl ON (pl.id = hp.playerId)
INNER JOIN Hands h ON (h.id = hp.handId)
INNER JOIN Gametypes gt ON (gt.id = h.gametypeId)
WHERE pl.id in <player_test>
AND pl.siteId in <site_test>
AND h.handStart > '<startdate_test>'
AND h.handStart < '<enddate_test>'
<limit_test>
AND hp.tourneysPlayersId IS NULL
GROUP BY h.handStart, hp.handId, hp.totalProfit
ORDER BY h.handStart"""
####################################
# Session stats query
####################################
@ -2664,6 +2645,7 @@ class Sql:
INNER JOIN Players p on (p.Id = hp.playerId)
WHERE hp.playerId in <player_test>
AND date_format(h.handStart, '%Y-%m-%d') <datestest>
AND hp.tourneysPlayersId IS NULL
ORDER by time"""
elif db_server == 'postgresql':
self.query['sessionStats'] = """
@ -2675,6 +2657,7 @@ class Sql:
INNER JOIN Players p on (p.Id = hp.playerId)
WHERE hp.playerId in <player_test>
AND h.handStart <datestest>
AND hp.tourneysPlayersId IS NULL
ORDER by time"""
elif db_server == 'sqlite':
self.query['sessionStats'] = """
@ -2686,6 +2669,7 @@ class Sql:
INNER JOIN Players p on (p.Id = hp.playerId)
WHERE hp.playerId in <player_test>
AND h.handStart <datestest>
AND hp.tourneysPlayersId IS NULL
ORDER by time"""

View File

@ -119,17 +119,17 @@ def vpip(stat_dict, player):
stat = 0.0
try:
stat = float(stat_dict[player]['vpip'])/float(stat_dict[player]['n'])
return (stat,
'%3.1f' % (100*stat) + '%',
'v=%3.1f' % (100*stat) + '%',
'vpip=%3.1f' % (100*stat) + '%',
return (stat,
'%3.1f' % (100*stat) + '%',
'v=%3.1f' % (100*stat) + '%',
'vpip=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['vpip'], stat_dict[player]['n']),
'Voluntarily Put In Pot Pre-Flop%'
)
except: return (stat,
'%3.1f' % (0) + '%',
'v=%3.1f' % (0) + '%',
'vpip=%3.1f' % (0) + '%',
except: return (stat,
'%3.1f' % (0) + '%',
'v=%3.1f' % (0) + '%',
'vpip=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'Voluntarily Put In Pot Pre-Flop%'
)
@ -139,18 +139,18 @@ def pfr(stat_dict, player):
stat = 0.0
try:
stat = float(stat_dict[player]['pfr'])/float(stat_dict[player]['n'])
return (stat,
'%3.1f' % (100*stat) + '%',
'p=%3.1f' % (100*stat) + '%',
'pfr=%3.1f' % (100*stat) + '%',
return (stat,
'%3.1f' % (100*stat) + '%',
'p=%3.1f' % (100*stat) + '%',
'pfr=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['pfr'], stat_dict[player]['n']),
'Pre-Flop Raise %'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'p=%3.1f' % (0) + '%',
'pfr=%3.1f' % (0) + '%',
return (stat,
'%3.1f' % (0) + '%',
'p=%3.1f' % (0) + '%',
'pfr=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'Pre-Flop Raise %'
)
@ -160,18 +160,18 @@ def wtsd(stat_dict, player):
stat = 0.0
try:
stat = float(stat_dict[player]['sd'])/float(stat_dict[player]['saw_f'])
return (stat,
'%3.1f' % (100*stat) + '%',
'w=%3.1f' % (100*stat) + '%',
'wtsd=%3.1f' % (100*stat) + '%',
return (stat,
'%3.1f' % (100*stat) + '%',
'w=%3.1f' % (100*stat) + '%',
'wtsd=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['sd'], stat_dict[player]['saw_f']),
'% went to showdown'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'w=%3.1f' % (0) + '%',
'wtsd=%3.1f' % (0) + '%',
return (stat,
'%3.1f' % (0) + '%',
'w=%3.1f' % (0) + '%',
'wtsd=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% went to showdown'
)
@ -181,18 +181,18 @@ def wmsd(stat_dict, player):
stat = 0.0
try:
stat = float(stat_dict[player]['wmsd'])/float(stat_dict[player]['sd'])
return (stat,
'%3.1f' % (100*stat) + '%',
'w=%3.1f' % (100*stat) + '%',
'wmsd=%3.1f' % (100*stat) + '%',
return (stat,
'%3.1f' % (100*stat) + '%',
'w=%3.1f' % (100*stat) + '%',
'wmsd=%3.1f' % (100*stat) + '%',
'(%5.1f/%d)' % (float(stat_dict[player]['wmsd']), stat_dict[player]['sd']),
'% won money at showdown'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'w=%3.1f' % (0) + '%',
'wmsd=%3.1f' % (0) + '%',
return (stat,
'%3.1f' % (0) + '%',
'w=%3.1f' % (0) + '%',
'wmsd=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% won money at showdown'
)
@ -202,18 +202,18 @@ def profit100(stat_dict, player):
stat = 0.0
try:
stat = float(stat_dict[player]['net'])/float(stat_dict[player]['n'])
return (stat,
'%.0f' % (100.0*stat),
'p=%.0f' % (100.0*stat),
return (stat,
'%.0f' % (100.0*stat),
'p=%.0f' % (100.0*stat),
'p/100=%.0f' % (100.0*stat),
'%d/%d' % (stat_dict[player]['net'], stat_dict[player]['n']),
'profit/100hands'
)
except:
print "exception calcing p/100: 100 * %d / %d" % (stat_dict[player]['net'], stat_dict[player]['n'])
return (stat,
'%.0f' % (0),
'p=%.0f' % (0),
return (stat,
'%.0f' % (0),
'p=%.0f' % (0),
'p/100=%.0f' % (0),
'(%d/%d)' % (0, 0),
'profit/100hands'
@ -225,10 +225,10 @@ def saw_f(stat_dict, player):
num = float(stat_dict[player]['saw_f'])
den = float(stat_dict[player]['n'])
stat = num/den
return (stat,
'%3.1f' % (100*stat) + '%',
'sf=%3.1f' % (100*stat) + '%',
'saw_f=%3.1f' % (100*stat) + '%',
return (stat,
'%3.1f' % (100*stat) + '%',
'sf=%3.1f' % (100*stat) + '%',
'saw_f=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['saw_f'], stat_dict[player]['n']),
'Flop Seen %'
)
@ -236,10 +236,10 @@ def saw_f(stat_dict, player):
stat = 0.0
num = 0
den = 0
return (stat,
'%3.1f' % (stat) + '%',
'sf=%3.1f' % (stat) + '%',
'saw_f=%3.1f' % (stat) + '%',
return (stat,
'%3.1f' % (stat) + '%',
'sf=%3.1f' % (stat) + '%',
'saw_f=%3.1f' % (stat) + '%',
'(%d/%d)' % (num, den),
'Flop Seen %'
)
@ -259,18 +259,18 @@ def n(stat_dict, player):
k += 1
d = 0
fmt = '%d.%dk' % (k, d)
return (stat_dict[player]['n'],
return (stat_dict[player]['n'],
'%s' % fmt,
'n=%d' % (stat_dict[player]['n']),
'n=%d' % (stat_dict[player]['n']),
'n=%d' % (stat_dict[player]['n']),
'n=%d' % (stat_dict[player]['n']),
'(%d)' % (stat_dict[player]['n']),
'number hands seen'
)
except:
return (0,
'%d' % (0),
'n=%d' % (0),
'n=%d' % (0),
return (0,
'%d' % (0),
'n=%d' % (0),
'n=%d' % (0),
'(%d)' % (0),
'number hands seen'
)
@ -281,17 +281,17 @@ def fold_f(stat_dict, player):
try:
stat = float(stat_dict[player]['fold_2'])/float(stat_dict[player]['saw_f'])
return (stat,
'%3.1f' % (100*stat) + '%',
'ff=%3.1f' % (100*stat) + '%',
'fold_f=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'ff=%3.1f' % (100*stat) + '%',
'fold_f=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['fold_2'], stat_dict[player]['saw_f']),
'folded flop/4th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'ff=%3.1f' % (0) + '%',
'fold_f=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'ff=%3.1f' % (0) + '%',
'fold_f=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'folded flop/4th'
)
@ -302,9 +302,9 @@ def steal(stat_dict, player):
try:
stat = float(stat_dict[player]['steal'])/float(stat_dict[player]['steal_opp'])
return (stat,
'%3.1f' % (100*stat) + '%',
'st=%3.1f' % (100*stat) + '%',
'steal=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'st=%3.1f' % (100*stat) + '%',
'steal=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['steal'], stat_dict[player]['steal_opp']),
'% steal attempted'
)
@ -317,9 +317,9 @@ def f_SB_steal(stat_dict, player):
try:
stat = float(stat_dict[player]['sbnotdef'])/float(stat_dict[player]['sbstolen'])
return (stat,
'%3.1f' % (100*stat) + '%',
'fSB=%3.1f' % (100*stat) + '%',
'fSB_s=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'fSB=%3.1f' % (100*stat) + '%',
'fSB_s=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['sbnotdef'], stat_dict[player]['sbstolen']),
'% folded SB to steal'
)
@ -337,9 +337,9 @@ def f_BB_steal(stat_dict, player):
try:
stat = float(stat_dict[player]['bbnotdef'])/float(stat_dict[player]['bbstolen'])
return (stat,
'%3.1f' % (100*stat) + '%',
'fBB=%3.1f' % (100*stat) + '%',
'fBB_s=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'fBB=%3.1f' % (100*stat) + '%',
'fBB_s=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['bbnotdef'], stat_dict[player]['bbstolen']),
'% folded BB to steal'
)
@ -357,17 +357,17 @@ def three_B(stat_dict, player):
try:
stat = float(stat_dict[player]['tb_0'])/float(stat_dict[player]['tb_opp_0'])
return (stat,
'%3.1f' % (100*stat) + '%',
'3B=%3.1f' % (100*stat) + '%',
'3B_pf=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'3B=%3.1f' % (100*stat) + '%',
'3B_pf=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['tb_0'], stat_dict[player]['tb_opp_0']),
'% 3/4 Bet preflop/3rd'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'3B=%3.1f' % (0) + '%',
'3B_pf=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'3B=%3.1f' % (0) + '%',
'3B_pf=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% 3/4 Bet preflop/3rd'
)
@ -378,17 +378,17 @@ def WMsF(stat_dict, player):
try:
stat = float(stat_dict[player]['w_w_s_1'])/float(stat_dict[player]['saw_1'])
return (stat,
'%3.1f' % (100*stat) + '%',
'wf=%3.1f' % (100*stat) + '%',
'w_w_f=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'wf=%3.1f' % (100*stat) + '%',
'w_w_f=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['w_w_s_1'], stat_dict[player]['saw_f']),
'% won$/saw flop/4th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'wf=%3.1f' % (0) + '%',
'w_w_f=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'wf=%3.1f' % (0) + '%',
'w_w_f=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% won$/saw flop/4th'
)
@ -399,17 +399,17 @@ def a_freq1(stat_dict, player):
try:
stat = float(stat_dict[player]['aggr_1'])/float(stat_dict[player]['saw_f'])
return (stat,
'%3.1f' % (100*stat) + '%',
'a1=%3.1f' % (100*stat) + '%',
'a_fq_1=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'a1=%3.1f' % (100*stat) + '%',
'a_fq_1=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['aggr_1'], stat_dict[player]['saw_f']),
'Aggression Freq flop/4th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'a1=%3.1f' % (0) + '%',
'a_fq_1=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'a1=%3.1f' % (0) + '%',
'a_fq_1=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'Aggression Freq flop/4th'
)
@ -420,17 +420,17 @@ def a_freq2(stat_dict, player):
try:
stat = float(stat_dict[player]['aggr_2'])/float(stat_dict[player]['saw_2'])
return (stat,
'%3.1f' % (100*stat) + '%',
'a2=%3.1f' % (100*stat) + '%',
'a_fq_2=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'a2=%3.1f' % (100*stat) + '%',
'a_fq_2=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['aggr_2'], stat_dict[player]['saw_2']),
'Aggression Freq turn/5th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'a2=%3.1f' % (0) + '%',
'a_fq_2=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'a2=%3.1f' % (0) + '%',
'a_fq_2=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'Aggression Freq turn/5th'
)
@ -441,17 +441,17 @@ def a_freq3(stat_dict, player):
try:
stat = float(stat_dict[player]['aggr_3'])/float(stat_dict[player]['saw_3'])
return (stat,
'%3.1f' % (100*stat) + '%',
'a3=%3.1f' % (100*stat) + '%',
'a_fq_3=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'a3=%3.1f' % (100*stat) + '%',
'a_fq_3=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['aggr_3'], stat_dict[player]['saw_3']),
'Aggression Freq river/6th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'a3=%3.1f' % (0) + '%',
'a_fq_3=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'a3=%3.1f' % (0) + '%',
'a_fq_3=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'Aggression Freq river/6th'
)
@ -462,17 +462,17 @@ def a_freq4(stat_dict, player):
try:
stat = float(stat_dict[player]['aggr_4'])/float(stat_dict[player]['saw_4'])
return (stat,
'%3.1f' % (100*stat) + '%',
'a4=%3.1f' % (100*stat) + '%',
'a_fq_4=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'a4=%3.1f' % (100*stat) + '%',
'a_fq_4=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['aggr_4'], stat_dict[player]['saw_4']),
'Aggression Freq 7th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'a4=%3.1f' % (0) + '%',
'a_fq_4=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'a4=%3.1f' % (0) + '%',
'a_fq_4=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'Aggression Freq 7th'
)
@ -484,9 +484,9 @@ def a_freq_123(stat_dict, player):
stat = float( stat_dict[player]['aggr_1'] + stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3']
) / float( stat_dict[player]['saw_1'] + stat_dict[player]['saw_2'] + stat_dict[player]['saw_3']);
return (stat,
'%3.1f' % (100*stat) + '%',
'afq=%3.1f' % (100*stat) + '%',
'postf_aggfq=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'afq=%3.1f' % (100*stat) + '%',
'postf_aggfq=%3.1f' % (100*stat) + '%',
'(%d/%d)' % ( stat_dict[player]['aggr_1']
+ stat_dict[player]['aggr_2']
+ stat_dict[player]['aggr_3']
@ -498,9 +498,9 @@ def a_freq_123(stat_dict, player):
)
except:
return (stat,
'%2.0f' % (0) + '%',
'a3=%2.0f' % (0) + '%',
'a_fq_3=%2.0f' % (0) + '%',
'%2.0f' % (0) + '%',
'a3=%2.0f' % (0) + '%',
'a_fq_3=%2.0f' % (0) + '%',
'(%d/%d)' % (0, 0),
'Post-Flop Aggression Freq'
)
@ -511,17 +511,17 @@ def cb1(stat_dict, player):
try:
stat = float(stat_dict[player]['cb_1'])/float(stat_dict[player]['cb_opp_1'])
return (stat,
'%3.1f' % (100*stat) + '%',
'cb1=%3.1f' % (100*stat) + '%',
'cb_1=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'cb1=%3.1f' % (100*stat) + '%',
'cb_1=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['cb_1'], stat_dict[player]['cb_opp_1']),
'% continuation bet flop/4th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'cb1=%3.1f' % (0) + '%',
'cb_1=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'cb1=%3.1f' % (0) + '%',
'cb_1=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% continuation bet flop/4th'
)
@ -532,17 +532,17 @@ def cb2(stat_dict, player):
try:
stat = float(stat_dict[player]['cb_2'])/float(stat_dict[player]['cb_opp_2'])
return (stat,
'%3.1f' % (100*stat) + '%',
'cb2=%3.1f' % (100*stat) + '%',
'cb_2=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'cb2=%3.1f' % (100*stat) + '%',
'cb_2=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['cb_2'], stat_dict[player]['cb_opp_2']),
'% continuation bet turn/5th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'cb2=%3.1f' % (0) + '%',
'cb_2=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'cb2=%3.1f' % (0) + '%',
'cb_2=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% continuation bet turn/5th'
)
@ -553,17 +553,17 @@ def cb3(stat_dict, player):
try:
stat = float(stat_dict[player]['cb_3'])/float(stat_dict[player]['cb_opp_3'])
return (stat,
'%3.1f' % (100*stat) + '%',
'cb3=%3.1f' % (100*stat) + '%',
'cb_3=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'cb3=%3.1f' % (100*stat) + '%',
'cb_3=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['cb_3'], stat_dict[player]['cb_opp_3']),
'% continuation bet river/6th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'cb3=%3.1f' % (0) + '%',
'cb_3=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'cb3=%3.1f' % (0) + '%',
'cb_3=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% continuation bet river/6th'
)
@ -574,17 +574,17 @@ def cb4(stat_dict, player):
try:
stat = float(stat_dict[player]['cb_4'])/float(stat_dict[player]['cb_opp_4'])
return (stat,
'%3.1f' % (100*stat) + '%',
'cb4=%3.1f' % (100*stat) + '%',
'cb_4=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'cb4=%3.1f' % (100*stat) + '%',
'cb_4=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['cb_4'], stat_dict[player]['cb_opp_4']),
'% continuation bet 7th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'cb4=%3.1f' % (0) + '%',
'cb_4=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'cb4=%3.1f' % (0) + '%',
'cb_4=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% continuation bet 7th'
)
@ -595,17 +595,17 @@ def ffreq1(stat_dict, player):
try:
stat = float(stat_dict[player]['f_freq_1'])/float(stat_dict[player]['was_raised_1'])
return (stat,
'%3.1f' % (100*stat) + '%',
'ff1=%3.1f' % (100*stat) + '%',
'ff_1=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'ff1=%3.1f' % (100*stat) + '%',
'ff_1=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['f_freq_1'], stat_dict[player]['was_raised_1']),
'% fold frequency flop/4th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'ff1=%3.1f' % (0) + '%',
'ff_1=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'ff1=%3.1f' % (0) + '%',
'ff_1=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% fold frequency flop/4th'
)
@ -616,17 +616,17 @@ def ffreq2(stat_dict, player):
try:
stat = float(stat_dict[player]['f_freq_2'])/float(stat_dict[player]['was_raised_2'])
return (stat,
'%3.1f' % (100*stat) + '%',
'ff2=%3.1f' % (100*stat) + '%',
'ff_2=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'ff2=%3.1f' % (100*stat) + '%',
'ff_2=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['f_freq_2'], stat_dict[player]['was_raised_2']),
'% fold frequency turn/5th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'ff2=%3.1f' % (0) + '%',
'ff_2=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'ff2=%3.1f' % (0) + '%',
'ff_2=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% fold frequency turn/5th'
)
@ -637,17 +637,17 @@ def ffreq3(stat_dict, player):
try:
stat = float(stat_dict[player]['f_freq_3'])/float(stat_dict[player]['was_raised_3'])
return (stat,
'%3.1f' % (100*stat) + '%',
'ff3=%3.1f' % (100*stat) + '%',
'ff_3=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'ff3=%3.1f' % (100*stat) + '%',
'ff_3=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['f_freq_3'], stat_dict[player]['was_raised_3']),
'% fold frequency river/6th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'ff3=%3.1f' % (0) + '%',
'ff_3=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'ff3=%3.1f' % (0) + '%',
'ff_3=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% fold frequency river/6th'
)
@ -658,17 +658,17 @@ def ffreq4(stat_dict, player):
try:
stat = float(stat_dict[player]['f_freq_4'])/float(stat_dict[player]['was_raised_4'])
return (stat,
'%3.1f' % (100*stat) + '%',
'ff4=%3.1f' % (100*stat) + '%',
'ff_4=%3.1f' % (100*stat) + '%',
'%3.1f' % (100*stat) + '%',
'ff4=%3.1f' % (100*stat) + '%',
'ff_4=%3.1f' % (100*stat) + '%',
'(%d/%d)' % (stat_dict[player]['f_freq_4'], stat_dict[player]['was_raised_4']),
'% fold frequency 7th'
)
except:
return (stat,
'%3.1f' % (0) + '%',
'ff4=%3.1f' % (0) + '%',
'ff_4=%3.1f' % (0) + '%',
'%3.1f' % (0) + '%',
'ff4=%3.1f' % (0) + '%',
'ff_4=%3.1f' % (0) + '%',
'(%d/%d)' % (0, 0),
'% fold frequency 7th'
)

File diff suppressed because it is too large Load Diff

1068
pyfpdb/fpdb.pyw Executable file

File diff suppressed because it is too large Load Diff

View File

@ -39,16 +39,14 @@ Py2exe script for fpdb.
# MSVCP90.dll. These are somewhere in your windows install, so you
# can just copy them to your working folder. (or just assume other
# person will have them? any copyright issues with including them?)
#- [ If it works, you'll have 3 new folders, build and dist and gfx. Build is
# working space and should be deleted. Dist and gfx contain the files to be
# distributed. ]
# If it works, you'll have a new dir fpdb-XXX-YYYYMMDD-exe which should
#- If it works, you'll have a new dir fpdb-YYYYMMDD-exe which should
# contain 2 dirs; gfx and pyfpdb and run_fpdb.bat
#- Last, you must copy the etc/, lib/ and share/ folders from your
# gtk/bin/ (just /gtk/?) folder to the pyfpdb folder. (the whole folders,
# not just the contents)
#- [ This bit is now automated:
# Last, you must copy the etc/, lib/ and share/ folders from your
# gtk/bin/ (just /gtk/?) folder to the pyfpdb folder. (the whole folders,
# not just the contents) ]
#- You can (should) then prune the etc/, lib/ and share/ folders to
# remove components we don't need.
# remove components we don't need. (see output at end of program run)
# sqlcoder notes: this worked for me with the following notes:
#- I used the following versions:
@ -116,11 +114,11 @@ test_and_remove('build')
today = date.today().strftime('%Y%m%d')
print "\n" + r"Output will be created in \pyfpdb\ and \fpdb_XXX_"+today+'\\'
print "Enter value for XXX (any length): ", # the comma means no newline
xxx = sys.stdin.readline().rstrip()
dist_dirname = r'fpdb-' + xxx + '-' + today + '-exe'
dist_dir = r'..\fpdb-' + xxx + '-' + today + '-exe'
print "\n" + r"Output will be created in \pyfpdb\ and \fpdb_"+today+'\\'
#print "Enter value for XXX (any length): ", # the comma means no newline
#xxx = sys.stdin.readline().rstrip()
dist_dirname = r'fpdb-' + today + '-exe'
dist_dir = r'..\fpdb-' + today + '-exe'
print
test_and_remove(dist_dir)
@ -130,8 +128,8 @@ setup(
description = 'Free Poker DataBase',
version = '0.12',
console = [ {'script': 'fpdb.py', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]},
{'script': 'HUD_main.py', },
windows = [ {'script': 'fpdb.pyw', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]},
{'script': 'HUD_main.pyw', },
{'script': 'Configuration.py', }
],
@ -163,10 +161,11 @@ setup(
os.rename('dist', 'pyfpdb')
print '\n' + 'If py2exe was successful add the \\etc \\lib and \\share dirs '
print 'from your gtk dir to \\%s\\pyfpdb\\\n' % dist_dirname
print 'Also copy libgobject-2.0-0.dll and libgdk-win32-2.0-0.dll from <gtk_dir>\\bin'
print 'into there'
# these instructions no longer needed:
#print '\n' + 'If py2exe was successful add the \\etc \\lib and \\share dirs '
#print 'from your gtk dir to \\%s\\pyfpdb\\\n' % dist_dirname
#print 'Also copy libgobject-2.0-0.dll and libgdk-win32-2.0-0.dll from <gtk_dir>\\bin'
#print 'into there'
dest = os.path.join(dist_dirname, 'pyfpdb')
#print "try renaming pyfpdb to", dest
@ -207,4 +206,24 @@ dest_dir = os.path.join(dest, 'share')
dest_dir = dest_dir.replace('\\', '\\\\')
shutil.copytree( src_dir, dest_dir )
print "\nIf py2exe was successful you should now have a new dir"
print dist_dirname+" in your pyfpdb dir"
print """
The following dirs can probably removed to make the final package smaller:
pyfpdb/lib/glib-2.0
pyfpdb/lib/gtk-2.0/include
pyfpdb/lib/pkgconfig
pyfpdb/share/aclocal
pyfpdb/share/doc
pyfpdb/share/glib-2.0
pyfpdb/share/gtk-2.0
pyfpdb/share/gtk-doc
pyfpdb/share/locale
pyfpdb/share/man
pyfpdb/share/themes/Default
Use 7-zip to zip up the distribution and create a self extracting archive and that's it!
"""

View File

@ -1,4 +1,4 @@
PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET]
PokerStars Game #14732633821: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET]
Table '99999999 II' 2-max Seat #1 is the button
Seat 1: Player0 ($20 in chips)
Seat 2: Player1 ($50.50 in chips)
@ -26,7 +26,7 @@ Seat 2: Player1 (big blind) folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET]
PokerStars Game #28140199921: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET]
Table '99999999 II' 2-max Seat #2 is the button
Seat 1: Player0 ($20.45 in chips)
Seat 2: Player1 ($50 in chips)
@ -46,7 +46,7 @@ Seat 2: Player1 (button) (small blind) collected ($1)
PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET]
PokerStars Game #29402240709: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET]
Table '99999999 II' 2-max Seat #1 is the button
Seat 1: Player0 ($19.95 in chips)
Seat 2: Player1 ($50.50 in chips)
@ -65,7 +65,7 @@ Seat 2: Player1 (big blind) collected ($0.50)
PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET]
PokerStars Game #31842149327: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET]
Table '99999999 II' 2-max Seat #2 is the button
Seat 1: Player0 ($19.70 in chips)
Seat 2: Player1 ($50.75 in chips)
@ -97,7 +97,7 @@ Seat 2: Player1 (button) (small blind) mucked [6c 5s]
PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET]
PokerStars Game #10697227103: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET]
Table '99999999 II' 2-max Seat #1 is the button
Seat 1: Player0 ($22.90 in chips)
Seat 2: Player1 ($50 in chips)
@ -116,7 +116,7 @@ Seat 2: Player1 (big blind) collected ($0.50)
PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET]
PokerStars Game #27159326072: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET]
Table '99999999 II' 2-max Seat #2 is the button
Seat 1: Player0 ($22.65 in chips)
Seat 2: Player1 ($50.25 in chips)

View File

@ -1,4 +1,4 @@
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET]
PokerStars Game #31900318973: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 2: Player14 ($0.97 in chips)
Seat 3: Player23 ($1.53 in chips)
@ -47,7 +47,7 @@ Seat 9: Player21 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET]
PokerStars Game #85321652824: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 2: Player14 ($0.89 in chips)
Seat 3: Player23 ($1.51 in chips)
@ -91,7 +91,7 @@ Seat 9: Player21 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET]
PokerStars Game #30102275294: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 2: Player14 ($0.89 in chips)
Seat 3: Player23 ($1.51 in chips)
@ -130,7 +130,7 @@ Seat 9: Player21 (big blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET]
PokerStars Game #20107261170: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player11 ($1.60 in chips)
Seat 2: Player14 ($0.89 in chips)
@ -175,7 +175,7 @@ Seat 9: Player21 (small blind) collected ($0.04)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET]
PokerStars Game #30246290211: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player11 ($1.58 in chips)
Seat 2: Player14 ($0.89 in chips)
@ -230,7 +230,7 @@ Seat 9: Player21 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET]
PokerStars Game #31761373829: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player11 ($1.44 in chips)
Seat 2: Player14 ($1.19 in chips)
@ -278,7 +278,7 @@ Seat 9: Player21 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET]
PokerStars Game #30758254721: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 1: Player11 ($1.81 in chips)
Seat 2: Player14 ($1.18 in chips)
@ -333,7 +333,7 @@ Seat 9: Player21 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET]
PokerStars Game #88562623320: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player11 ($1.81 in chips)
Seat 2: Player14 ($1.38 in chips)
@ -380,7 +380,7 @@ Seat 9: Player21 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET]
PokerStars Game #16687242396: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player11 ($1.81 in chips)
Seat 2: Player14 ($1.38 in chips)
@ -428,7 +428,7 @@ Seat 9: Player21 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET]
PokerStars Game #20006229758: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player11 ($1.81 in chips)
Seat 2: Player14 ($1.38 in chips)
@ -478,7 +478,7 @@ Seat 9: Player21 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET]
PokerStars Game #27303244902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player11 ($1.81 in chips)
Seat 2: Player14 ($1.38 in chips)
@ -526,7 +526,7 @@ Seat 9: Player21 showed [Ah Qh] and won ($1.14) with a flush, Ace high
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET]
PokerStars Game #13363166481: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player11 ($1.23 in chips)
Seat 2: Player14 ($1.38 in chips)
@ -581,7 +581,7 @@ Seat 9: Player21 (big blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET]
PokerStars Game #27226323531: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 2: Player14 ($1.38 in chips)
Seat 3: Player23 ($2.37 in chips)
@ -628,7 +628,7 @@ Seat 9: Player21 (small blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET]
PokerStars Game #32657659628: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 2: Player14 ($1.43 in chips)
Seat 3: Player23 ($2.37 in chips)
@ -683,7 +683,7 @@ Seat 9: Player21 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET]
PokerStars Game #22479236161: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 2: Player14 ($1.29 in chips)
Seat 3: Player23 ($2.57 in chips)
@ -722,7 +722,7 @@ Seat 8: Player3 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET]
PokerStars Game #12335306021: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 2: Player14 ($1.27 in chips)
Seat 3: Player23 ($2.55 in chips)
@ -759,7 +759,7 @@ Seat 8: Player3 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET]
PokerStars Game #10841092831: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 2: Player14 ($1.27 in chips)
Seat 3: Player23 ($2.55 in chips)
@ -814,7 +814,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET]
PokerStars Game #13957140902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 2: Player14 ($1.27 in chips)
Seat 3: Player23 ($2.55 in chips)
@ -866,7 +866,7 @@ Seat 9: Player9 showed [Ac Qc] and won ($0.90) with a flush, Ace high
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET]
PokerStars Game #91692634264: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 2: Player14 ($1.27 in chips)
Seat 3: Player23 ($2.55 in chips)
@ -921,7 +921,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET]
PokerStars Game #18556118881: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 2: Player14 ($1.27 in chips)
Seat 3: Player23 ($2.55 in chips)
@ -960,7 +960,7 @@ Seat 9: Player9 (big blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET]
PokerStars Game #31790741684: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player18 ($0.80 in chips)
Seat 2: Player14 ($1.27 in chips)
@ -1001,7 +1001,7 @@ Seat 9: Player9 (small blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET]
PokerStars Game #23618143313: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player18 ($0.78 in chips)
Seat 2: Player14 ($1.27 in chips)
@ -1069,7 +1069,7 @@ Seat 9: Player9 (button) collected ($0.18)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET]
PokerStars Game #20255202813: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.23 in chips)
@ -1128,7 +1128,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET]
PokerStars Game #14690416916: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1178,7 +1178,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET]
PokerStars Game #13559160472: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1234,7 +1234,7 @@ Seat 9: Player9 showed [Jc Js] and won ($0.78) with a pair of Jacks
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET]
PokerStars Game #16011540019: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1282,7 +1282,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET]
PokerStars Game #16588282642: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1324,7 +1324,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET]
PokerStars Game #22736406243: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1366,7 +1366,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET]
PokerStars Game #19953154592: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1418,7 +1418,7 @@ Seat 9: Player9 (big blind) folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET]
PokerStars Game #74551611118: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player18 ($0.74 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1465,7 +1465,7 @@ Seat 9: Player9 (small blind) collected ($0.08)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET]
PokerStars Game #64594322241: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player18 ($0.70 in chips)
Seat 2: Player14 ($1.61 in chips)
@ -1516,7 +1516,7 @@ Seat 9: Player9 (button) folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET]
PokerStars Game #20220303142: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.59 in chips)
@ -1567,7 +1567,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET]
PokerStars Game #15797308302: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1615,7 +1615,7 @@ Seat 9: Player9 folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET]
PokerStars Game #22202259791: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1662,7 +1662,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET]
PokerStars Game #23635931413: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1713,7 +1713,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET]
PokerStars Game #16301246877: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1771,7 +1771,7 @@ Seat 9: Player9 showed [Qc Qd] and lost with a pair of Queens
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET]
PokerStars Game #21693130641: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1823,7 +1823,7 @@ Seat 9: Player9 folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET]
PokerStars Game #80731798515: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1865,7 +1865,7 @@ Seat 9: Player9 (big blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET]
PokerStars Game #12041521491: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player18 ($0.69 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1923,7 +1923,7 @@ Seat 9: Player9 (small blind) showed [8d Qh] and lost with a pair of Fives
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET]
PokerStars Game #32267943121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player18 ($0.67 in chips)
Seat 2: Player14 ($1.58 in chips)
@ -1984,7 +1984,7 @@ Seat 9: Player9 (button) showed [Ad 8h] and won ($1.76) with two pair, Aces and
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET]
PokerStars Game #21796253433: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.52 in chips)
@ -2032,7 +2032,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET]
PokerStars Game #20106934129: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.51 in chips)
@ -2094,7 +2094,7 @@ Seat 9: Player9 showed [Ts 6s] and won ($0.34) with two pair, Sixes and Threes
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET]
PokerStars Game #69512225343: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.51 in chips)
@ -2153,7 +2153,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET]
PokerStars Game #69681723765: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.49 in chips)
@ -2211,7 +2211,7 @@ Seat 9: Player9 mucked [Ts Qs]
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET]
PokerStars Game #30142164314: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.49 in chips)
@ -2271,7 +2271,7 @@ Seat 9: Player9 showed [Ah Kh] and lost with high card Ace
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET]
PokerStars Game #10018305383: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.49 in chips)
@ -2328,7 +2328,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET]
PokerStars Game #45323247626: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.49 in chips)
@ -2373,7 +2373,7 @@ Seat 9: Player9 (big blind) collected ($0.05)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET]
PokerStars Game #56232290155: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player18 ($0.66 in chips)
Seat 2: Player14 ($1.49 in chips)
@ -2417,7 +2417,7 @@ Seat 9: Player9 (small blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET]
PokerStars Game #32171206783: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player18 ($0.64 in chips)
Seat 2: Player14 ($1.49 in chips)
@ -2462,7 +2462,7 @@ Seat 9: Player9 (button) folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET]
PokerStars Game #58591999729: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player18 ($0.63 in chips)
Seat 2: Player14 ($1.47 in chips)
@ -2512,7 +2512,7 @@ Seat 9: Player9 collected ($0.11)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET]
PokerStars Game #19663159832: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 2: Player14 ($1.46 in chips)
Seat 3: Player24 ($1.87 in chips)
@ -2554,7 +2554,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET]
PokerStars Game #32364377323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 2: Player14 ($1.62 in chips)
Seat 3: Player24 ($1.85 in chips)
@ -2593,7 +2593,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET]
PokerStars Game #23073312602: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 2: Player14 ($1.62 in chips)
Seat 3: Player24 ($1.85 in chips)
@ -2644,7 +2644,7 @@ Seat 9: Player9 folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET]
PokerStars Game #89372402099: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 2: Player14 ($1.62 in chips)
Seat 3: Player24 ($1.79 in chips)
@ -2691,7 +2691,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET]
PokerStars Game #27215384828: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 2: Player14 ($1.62 in chips)
Seat 3: Player24 ($1.61 in chips)
@ -2747,7 +2747,7 @@ Seat 9: Player9 collected ($1.49)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET]
PokerStars Game #32706209671: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 2: Player14 ($1.62 in chips)
Seat 3: Player24 ($1.61 in chips)
@ -2787,7 +2787,7 @@ Seat 9: Player9 (big blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET]
PokerStars Game #99425634223: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player20 ($5 in chips)
Seat 2: Player14 ($1.62 in chips)
@ -2844,7 +2844,7 @@ Seat 9: Player9 (small blind) mucked [Jh Qd]
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET]
PokerStars Game #23826224249: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player20 ($4.96 in chips)
Seat 3: Player24 ($1.61 in chips)
@ -2902,7 +2902,7 @@ Seat 9: Player9 (button) collected ($0.49)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET]
PokerStars Game #28582235522: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player20 ($4.95 in chips)
Seat 3: Player24 ($1.55 in chips)
@ -2949,7 +2949,7 @@ Seat 9: Player9 folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET]
PokerStars Game #11849119171: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player20 ($5.12 in chips)
Seat 2: Player2 ($1 in chips)
@ -2992,7 +2992,7 @@ Seat 9: Player9 folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET]
PokerStars Game #71932031318: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player20 ($5.12 in chips)
Seat 2: Player2 ($0.98 in chips)
@ -3047,7 +3047,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET]
PokerStars Game #24227136121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player20 ($5.08 in chips)
Seat 2: Player2 ($0.98 in chips)
@ -3102,7 +3102,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET]
PokerStars Game #31395250833: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player20 ($5.13 in chips)
Seat 2: Player2 ($0.98 in chips)
@ -3153,7 +3153,7 @@ Seat 9: Player9 (big blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET]
PokerStars Game #12179306192: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player20 ($5.13 in chips)
Seat 2: Player2 ($2.04 in chips)
@ -3199,7 +3199,7 @@ Seat 9: Player9 (small blind) folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET]
PokerStars Game #51091236980: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player20 ($5.11 in chips)
Seat 2: Player2 ($2.40 in chips)
@ -3248,7 +3248,7 @@ Seat 9: Player9 (button) mucked [8d Ah]
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET]
PokerStars Game #27086240062: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player20 ($5.10 in chips)
Seat 2: Player2 ($2.38 in chips)
@ -3301,7 +3301,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET]
PokerStars Game #25223712121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 3: Player24 ($1.50 in chips)
@ -3351,7 +3351,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET]
PokerStars Game #73402790620: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 3: Player24 ($1.48 in chips)
@ -3405,7 +3405,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET]
PokerStars Game #76511550927: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 2: Player10 ($1.29 in chips)
@ -3461,7 +3461,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET]
PokerStars Game #28012101373: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 2: Player10 ($1.21 in chips)
@ -3517,7 +3517,7 @@ Seat 9: Player9 (big blind) folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET]
PokerStars Game #41511921426: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 2: Player10 ($1.05 in chips)
@ -3565,7 +3565,7 @@ Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET]
PokerStars Game #28359136208: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player20 ($5.98 in chips)
Seat 2: Player10 ($3 in chips)
@ -3610,7 +3610,7 @@ Seat 5: Player12 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET]
PokerStars Game #70913060022: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 1: Player20 ($5.98 in chips)
Seat 2: Player10 ($3.20 in chips)
@ -3662,7 +3662,7 @@ Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET]
PokerStars Game #20264306210: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player20 ($5.96 in chips)
Seat 2: Player10 ($3.18 in chips)
@ -3705,7 +3705,7 @@ Seat 6: Player22 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET]
PokerStars Game #27816107382: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player20 ($5.96 in chips)
Seat 2: Player10 ($3.18 in chips)
@ -3753,7 +3753,7 @@ Seat 6: Player22 (big blind) folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET]
PokerStars Game #25404395119: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player20 ($5.96 in chips)
Seat 3: Player24 ($1.44 in chips)
@ -3806,7 +3806,7 @@ Seat 9: Player9 showed [6c Jd] and lost with high card Ace
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET]
PokerStars Game #19191328622: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player20 ($5.94 in chips)
Seat 3: Player24 ($1.44 in chips)
@ -3864,7 +3864,7 @@ Seat 9: Player9 (big blind) mucked [6c 2d]
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET]
PokerStars Game #35042386427: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player20 ($5.94 in chips)
Seat 3: Player24 ($1.44 in chips)
@ -3919,7 +3919,7 @@ Seat 9: Player9 (small blind) collected ($0.26)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET]
PokerStars Game #50092600346: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player20 ($5.92 in chips)
Seat 2: Player4 ($1 in chips)
@ -3985,7 +3985,7 @@ Seat 9: Player9 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET]
PokerStars Game #24708132405: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player20 ($5.54 in chips)
Seat 2: Player4 ($0.88 in chips)
@ -4044,7 +4044,7 @@ Seat 9: Player9 collected ($0.26)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET]
PokerStars Game #16013874820: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 1: Player20 ($5.54 in chips)
Seat 2: Player4 ($0.82 in chips)
@ -4103,7 +4103,7 @@ Seat 9: Player9 folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET]
PokerStars Game #81348282228: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player20 ($5.52 in chips)
Seat 2: Player4 ($0.70 in chips)
@ -4159,7 +4159,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET]
PokerStars Game #12247201631: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player20 ($5.52 in chips)
Seat 2: Player4 ($0.64 in chips)
@ -4201,7 +4201,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET]
PokerStars Game #18249303862: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player20 ($5.55 in chips)
Seat 2: Player4 ($0.64 in chips)
@ -4253,7 +4253,7 @@ Seat 9: Player9 folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET]
PokerStars Game #79095206106: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player20 ($5.55 in chips)
Seat 2: Player4 ($0.64 in chips)
@ -4311,7 +4311,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET]
PokerStars Game #23803281942: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player20 ($5.55 in chips)
Seat 2: Player4 ($0.62 in chips)
@ -4353,7 +4353,7 @@ Seat 9: Player9 (big blind) folded before Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET]
PokerStars Game #29640307323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player20 ($5.55 in chips)
Seat 2: Player4 ($0.62 in chips)
@ -4404,7 +4404,7 @@ Seat 8: Player7 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET]
PokerStars Game #22991200661: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET]
Table '99999999' 9-max Seat #1 is the button
Seat 1: Player20 ($5.53 in chips)
Seat 2: Player4 ($0.60 in chips)
@ -4462,7 +4462,7 @@ Seat 9: Player9 folded on the Turn
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET]
PokerStars Game #22198294871: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET]
Table '99999999' 9-max Seat #2 is the button
Seat 1: Player20 ($5.53 in chips)
Seat 2: Player4 ($0.58 in chips)
@ -4515,7 +4515,7 @@ Seat 9: Player9 showed [2d Qd] and won ($0.19) with two pair, Aces and Queens
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET]
PokerStars Game #97422269929: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET]
Table '99999999' 9-max Seat #3 is the button
Seat 1: Player20 ($5.45 in chips)
Seat 2: Player4 ($0.58 in chips)
@ -4563,7 +4563,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET]
PokerStars Game #18011288181: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET]
Table '99999999' 9-max Seat #4 is the button
Seat 1: Player20 ($5.45 in chips)
Seat 2: Player4 ($0.58 in chips)
@ -4612,7 +4612,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET]
PokerStars Game #45432821411: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET]
Table '99999999' 9-max Seat #5 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 2: Player4 ($0.58 in chips)
@ -4672,7 +4672,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET]
PokerStars Game #10551491588: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET]
Table '99999999' 9-max Seat #6 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 2: Player4 ($0.48 in chips)
@ -4713,7 +4713,7 @@ Seat 9: Player9 folded before Flop (didn't bet)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET]
PokerStars Game #19037115169: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET]
Table '99999999' 9-max Seat #7 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 2: Player4 ($0.48 in chips)
@ -4752,7 +4752,7 @@ Seat 9: Player9 (big blind) collected ($0.02)
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET]
PokerStars Game #26447108451: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET]
Table '99999999' 9-max Seat #8 is the button
Seat 1: Player20 ($5.39 in chips)
Seat 2: Player4 ($0.48 in chips)
@ -4800,7 +4800,7 @@ Seat 9: Player9 (small blind) folded on the Flop
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET]
PokerStars Game #16631106221: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET]
Table '99999999' 9-max Seat #9 is the button
Seat 1: Player20 ($5.37 in chips)
Seat 2: Player4 ($0.48 in chips)

View File

@ -1,4 +1,4 @@
PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET]
PokerStars Game #24782122321: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET]
Table '999999999' 9-max Seat #1 is the button
Seat 1: Player2 ($0.88 in chips)
Seat 2: Player0 ($1.61 in chips)

View File

@ -0,0 +1,158 @@
PokerStars Game #14311270221: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:13:12 WET [2010/06/07 15:13:12 ET]
Table '99999999I' 9-max Seat #3 is the button
Seat 2: Player5 ($0.58 in chips)
Seat 3: Player1 ($0.65 in chips)
Seat 6: Player4 ($1.92 in chips)
Seat 7: Player6 ($2.81 in chips)
Seat 8: Player3 ($2.50 in chips)
Seat 9: Player2 ($0.80 in chips)
Player0 will be allowed to play after the button
Player4: posts small blind $0.01
Player6: posts big blind $0.02
Player3: posts big blind $0.02
Player2: posts big blind $0.02
*** HOLE CARDS ***
Dealt to Player1 [8d As 2h Ks]
Player3: checks
Player2: checks
Player5: raises $0.02 to $0.04
Player1: raises $0.02 to $0.06
Player4: calls $0.05
Player6: folds
Player3: calls $0.04
Player2: calls $0.04
Player5: calls $0.02
*** FLOP *** [Qh 7c Qs]
Player4: checks
Player3: checks
Player2: bets $0.31
Player5: folds
Player1: folds
Player4: folds
Player3: folds
Uncalled bet ($0.31) returned to Player2
Player2 collected $0.31 from pot
*** SUMMARY ***
Total pot $0.32 | Rake $0.01
Board [Qh 7c Qs]
Seat 2: Player5 folded on the Flop
Seat 3: Player1 (button) folded on the Flop
Seat 6: Player4 (small blind) folded on the Flop
Seat 7: Player6 (big blind) folded before Flop
Seat 8: Player3 folded on the Flop
Seat 9: Player2 collected ($0.31)
PokerStars Game #22865231671: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:14:17 WET [2010/06/07 15:14:17 ET]
Table '99999999I' 9-max Seat #6 is the button
Seat 2: Player5 ($0.52 in chips)
Seat 3: Player1 ($0.59 in chips)
Seat 5: Player0 ($0.90 in chips)
Seat 6: Player4 ($1.86 in chips)
Seat 7: Player6 ($2.79 in chips)
Seat 8: Player3 ($5 in chips)
Seat 9: Player2 ($1.05 in chips)
Player6: posts small blind $0.01
Player3: posts big blind $0.02
Player0: posts big blind $0.02
*** HOLE CARDS ***
Dealt to Player1 [6d 3c 5s As]
Player2: calls $0.02
Player5: calls $0.02
Player1: calls $0.02
Player0: raises $0.06 to $0.08
Player4: calls $0.08
Player6: folds
Player3: folds
Player2: calls $0.06
Player5: calls $0.06
Player1: raises $0.06 to $0.14
Player0: raises $0.55 to $0.69
Player4: calls $0.61
Player2: raises $0.36 to $1.05 and is all-in
Player5: folds
Player1: calls $0.45 and is all-in
Player0: calls $0.21 and is all-in
Player4: calls $0.36
*** FLOP *** [6c Kc Qc]
*** TURN *** [6c Kc Qc] [Jc]
*** RIVER *** [6c Kc Qc Jc] [4c]
*** SHOW DOWN ***
Player2: shows [Js Ah 5d 9h] (a pair of Jacks)
Player4: shows [9c 9d 7d 7h] (a pair of Nines)
Player2 collected $0.29 from side pot-2
Player0: shows [Ks Ad 7s Tc] (a straight, Ten to Ace)
Player0 collected $0.88 from side pot-1
Player1: shows [6d 3c 5s As] (a pair of Sixes)
Player0 collected $2.35 from main pot
*** SUMMARY ***
Total pot $3.70 Main pot $2.35. Side pot-1 $0.88. Side pot-2 $0.29. | Rake $0.18
Board [6c Kc Qc Jc 4c]
Seat 2: Player5 folded before Flop
Seat 3: Player1 showed [6d 3c 5s As] and lost with a pair of Sixes
Seat 5: Player0 showed [Ks Ad 7s Tc] and won ($3.23) with a straight, Ten to Ace
Seat 6: Player4 (button) showed [9c 9d 7d 7h] and lost with a pair of Nines
Seat 7: Player6 (small blind) folded before Flop
Seat 8: Player3 (big blind) folded before Flop
Seat 9: Player2 showed [Js Ah 5d 9h] and won ($0.29) with a pair of Jacks
PokerStars Game #60920749213: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:15:29 WET [2010/06/07 15:15:29 ET]
Table '99999999I' 9-max Seat #7 is the button
Seat 2: Player5 ($0.44 in chips)
Seat 3: Player1 ($0.80 in chips)
Seat 5: Player0 ($3.23 in chips)
Seat 6: Player4 ($0.81 in chips)
Seat 7: Player6 ($2.78 in chips)
Seat 8: Player3 ($4.98 in chips)
Seat 9: Player2 ($0.29 in chips)
Player3: posts small blind $0.01
Player2: posts big blind $0.02
*** HOLE CARDS ***
Dealt to Player1 [2c 4c 3s 7c]
Player5: calls $0.02
Player1: calls $0.02
Player0: calls $0.02
Player4: folds
Player6: calls $0.02
Player3: folds
Player2: checks
*** FLOP *** [7h 8s 4s]
Player2: checks
Player5: bets $0.02
Player1: raises $0.02 to $0.04
Player0: raises $0.14 to $0.18
Player6: calls $0.18
Player2: raises $0.09 to $0.27 and is all-in
Player5: calls $0.25
Player1: raises $0.51 to $0.78 and is all-in
Player0: calls $0.60
Player6: folds
Player5: calls $0.15 and is all-in
*** TURN *** [7h 8s 4s] [2s]
*** RIVER *** [7h 8s 4s 2s] [2h]
*** SHOW DOWN ***
Player1: shows [2c 4c 3s 7c] (a full house, Deuces full of Sevens)
Player0: shows [6h 3h Tc 9c] (a pair of Deuces)
Player1 collected $0.69 from side pot-2
Player5: shows [3d 5c 8h 7s] (two pair, Eights and Sevens)
Player1 collected $0.42 from side pot-1
Player2: shows [5s 7d Kd 9h] (two pair, Sevens and Deuces)
Player1 collected $1.31 from main pot
*** SUMMARY ***
Total pot $2.54 Main pot $1.31. Side pot-1 $0.42. Side pot-2 $0.69. | Rake $0.12
Board [7h 8s 4s 2s 2h]
Seat 2: Player5 showed [3d 5c 8h 7s] and lost with two pair, Eights and Sevens
Seat 3: Player1 showed [2c 4c 3s 7c] and won ($2.42) with a full house, Deuces full of Sevens
Seat 5: Player0 showed [6h 3h Tc 9c] and lost with a pair of Deuces
Seat 6: Player4 folded before Flop (didn't bet)
Seat 7: Player6 (button) folded on the Flop
Seat 8: Player3 (small blind) folded before Flop
Seat 9: Player2 (big blind) showed [5s 7d Kd 9h] and lost with two pair, Sevens and Deuces

View File

@ -1,4 +1,4 @@
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET]
PokerStars Game #20107222971: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET]
Table '999999998 11' 6-max Seat #1 is the button
Seat 1: Player6 (300 in chips)
Seat 2: Player21 (300 in chips)
@ -46,7 +46,7 @@ Seat 6: Player0 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET]
PokerStars Game #26543131325: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET]
Table '999999998 11' 6-max Seat #2 is the button
Seat 1: Player6 (1245 in chips)
Seat 2: Player21 (265 in chips)
@ -95,7 +95,7 @@ Seat 6: Player0 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET]
PokerStars Game #76601810212: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET]
Table '999999998 11' 6-max Seat #3 is the button
Seat 1: Player6 (1245 in chips)
Seat 2: Player21 (255 in chips)
@ -141,7 +141,7 @@ Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET]
PokerStars Game #28346217223: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET]
Table '999999998 11' 6-max Seat #4 is the button
Seat 1: Player6 (1235 in chips)
Seat 2: Player21 (245 in chips)
@ -189,7 +189,7 @@ Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kin
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET]
PokerStars Game #53469813066: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET]
Table '999999998 11' 6-max Seat #5 is the button
Seat 1: Player6 (50 in chips)
Seat 2: Player21 (300 in chips)
@ -234,7 +234,7 @@ Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET]
PokerStars Game #17659192331: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET]
Table '999999998 11' 6-max Seat #1 is the button
Seat 1: Player6 (510 in chips)
Seat 2: Player21 (240 in chips)
@ -282,7 +282,7 @@ Seat 6: Player13 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET]
PokerStars Game #15161114072: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET]
Table '999999998 11' 6-max Seat #2 is the button
Seat 1: Player6 (600 in chips)
Seat 2: Player21 (170 in chips)
@ -330,7 +330,7 @@ Seat 6: Player13 showed [Kc As] and lost with a pair of Kings
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET]
PokerStars Game #57039811101: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET]
Table '999999998 11' 6-max Seat #3 is the button
Seat 1: Player6 (580 in chips)
Seat 2: Player21 (150 in chips)
@ -376,7 +376,7 @@ Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET]
PokerStars Game #90281799521: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET]
Table '999999998 11' 6-max Seat #4 is the button
Seat 1: Player6 (560 in chips)
Seat 2: Player21 (130 in chips)
@ -430,7 +430,7 @@ Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and T
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET]
PokerStars Game #21189900419: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET]
Table '999999998 11' 6-max Seat #5 is the button
Seat 1: Player6 (1720 in chips)
Seat 2: Player21 (670 in chips)
@ -473,7 +473,7 @@ Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET]
PokerStars Game #16652117062: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET]
Table '999999998 11' 6-max Seat #1 is the button
Seat 1: Player6 (1580 in chips)
Seat 2: Player21 (430 in chips)
@ -523,7 +523,7 @@ Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET]
PokerStars Game #18934320061: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET]
Table '999999998 11' 6-max Seat #2 is the button
Seat 1: Player6 (1540 in chips)
Seat 2: Player21 (1960 in chips)
@ -574,7 +574,7 @@ Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET]
PokerStars Game #14415194893: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET]
Table '999999998 11' 6-max Seat #4 is the button
Seat 1: Player6 (600 in chips)
Seat 2: Player21 (1920 in chips)
@ -632,7 +632,7 @@ Seat 6: Player7 (big blind) mucked [Qh 2s]
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET]
PokerStars Game #48839292212: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET]
Table '999999998 11' 6-max Seat #5 is the button
Seat 1: Player6 (560 in chips)
Seat 2: Player21 (1880 in chips)
@ -708,7 +708,7 @@ Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eigh
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET]
PokerStars Game #15911190352: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET]
Table '999999998 11' 6-max Seat #6 is the button
Seat 1: Player6 (300 in chips)
Seat 2: Player21 (600 in chips)
@ -754,7 +754,7 @@ Seat 6: Player7 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET]
PokerStars Game #31048178850: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET]
Table '999999998 11' 6-max Seat #1 is the button
Seat 1: Player6 (1060 in chips)
Seat 2: Player21 (600 in chips)
@ -810,7 +810,7 @@ Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET]
PokerStars Game #61011805711: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET]
Table '999999998 11' 6-max Seat #2 is the button
Seat 1: Player6 (980 in chips)
Seat 2: Player21 (320 in chips)
@ -855,7 +855,7 @@ Seat 6: Player7 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET]
PokerStars Game #41541235827: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET]
Table '999999998 11' 6-max Seat #3 is the button
Seat 1: Player6 (760 in chips)
Seat 2: Player21 (200 in chips)
@ -905,7 +905,7 @@ Seat 6: Player7 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET]
PokerStars Game #27976721395: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET]
Table '999999998 11' 6-max Seat #4 is the button
Seat 1: Player6 (2380 in chips)
Seat 2: Player21 (600 in chips)
@ -957,7 +957,7 @@ Seat 6: Player7 (big blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET]
PokerStars Game #25234313412: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET]
Table '999999998 11' 6-max Seat #5 is the button
Seat 2: Player21 (480 in chips)
Seat 3: Player16 (3720 in chips)
@ -999,7 +999,7 @@ Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET]
PokerStars Game #95143913174: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET]
Table '999999998 11' 6-max Seat #6 is the button
Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small blind)
Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind)
@ -1037,7 +1037,7 @@ Seat 6: Player7 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET]
PokerStars Game #50411262384: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET]
Table '999999998 11' 6-max Seat #3 is the button
Seat 1: Player5 (1940 in chips)
Seat 2: Player4 (3540 in chips)
@ -1082,7 +1082,7 @@ Seat 6: Player7 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET]
PokerStars Game #16124236191: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET]
Table '999999998 11' 6-max Seat #4 is the button
Seat 1: Player5 (1780 in chips)
Seat 2: Player4 (3380 in chips)
@ -1133,7 +1133,7 @@ Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET]
PokerStars Game #20501244423: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET]
Table '999999998 11' 6-max Seat #5 is the button
Seat 1: Player5 (1620 in chips)
Seat 2: Player4 (3220 in chips)
@ -1169,7 +1169,7 @@ Seat 6: Player7 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET]
PokerStars Game #18390596592: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET]
Table '999999998 11' 6-max Seat #6 is the button
Seat 1: Player5 (2820 in chips)
Seat 2: Player4 (3060 in chips)
@ -1215,7 +1215,7 @@ Seat 6: Player7 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET]
PokerStars Game #52768090525: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET]
Table '999999998 11' 6-max Seat #1 is the button
Seat 1: Player5 (1860 in chips)
Seat 2: Player4 (4660 in chips)
@ -1252,7 +1252,7 @@ Seat 6: Player7 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET]
PokerStars Game #23011819420: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET]
Table '999999998 11' 6-max Seat #2 is the button
Seat 1: Player5 (1700 in chips)
Seat 2: Player4 (4100 in chips)
@ -1297,7 +1297,7 @@ Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET]
PokerStars Game #24661247813: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET]
Table '999999998 48' 6-max Seat #1 is the button
Seat 1: Player17 (14798 in chips)
Seat 2: Player3 (7215 in chips)
@ -1344,7 +1344,7 @@ Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET]
PokerStars Game #28167203221: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET]
Table '999999998 48' 6-max Seat #2 is the button
Seat 1: Player17 (14558 in chips)
Seat 2: Player3 (6375 in chips)
@ -1382,7 +1382,7 @@ Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET]
PokerStars Game #30715143285: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET]
Table '999999998 48' 6-max Seat #4 is the button
Seat 1: Player17 (14318 in chips)
Seat 3: Player19 (1508 in chips)
@ -1418,7 +1418,7 @@ Seat 6: Player22 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET]
PokerStars Game #16429177523: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET]
Table '999999998 48' 6-max Seat #6 is the button
Seat 1: Player17 (4583 in chips)
Seat 3: Player19 (1268 in chips)
@ -1461,7 +1461,7 @@ Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens
PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET]
PokerStars Game #14176179211: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET]
Table '999999998 5' 6-max Seat #4 is the button
Seat 1: Player14 (5780 in chips)
Seat 2: Player17 (1943 in chips)

View File

@ -1,4 +1,4 @@
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET]
PokerStars Game #62678213223: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1500 in chips)
@ -41,7 +41,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET]
PokerStars Game #32163049071: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET]
Table '999999993 1' 10-max Seat #2 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1490 in chips)
@ -97,7 +97,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET]
PokerStars Game #32288202831: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1133 in chips)
@ -142,7 +142,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET]
PokerStars Game #42832402272: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1133 in chips)
@ -190,7 +190,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET]
PokerStars Game #23213683913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET]
Table '999999993 1' 10-max Seat #5 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1133 in chips)
@ -245,7 +245,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET]
PokerStars Game #63032690445: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET]
Table '999999993 1' 10-max Seat #6 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1133 in chips)
@ -294,7 +294,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET]
PokerStars Game #26424166162: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET]
Table '999999993 1' 10-max Seat #7 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1133 in chips)
@ -348,7 +348,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET]
PokerStars Game #17689229111: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET]
Table '999999993 1' 10-max Seat #8 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1133 in chips)
@ -399,7 +399,7 @@ Seat 10: Player8 (big blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET]
PokerStars Game #24859173248: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET]
Table '999999993 1' 10-max Seat #10 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1133 in chips)
@ -440,7 +440,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET]
PokerStars Game #23369170253: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (1485 in chips)
Seat 2: Player1 (1103 in chips)
@ -491,7 +491,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET]
PokerStars Game #10078346175: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET]
Table '999999993 1' 10-max Seat #2 is the button
Seat 1: Player7 (1485 in chips)
Seat 2: Player1 (1463 in chips)
@ -530,7 +530,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET]
PokerStars Game #14493477081: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (1485 in chips)
Seat 2: Player1 (1463 in chips)
@ -571,7 +571,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET]
PokerStars Game #17974129386: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (1485 in chips)
Seat 2: Player1 (1463 in chips)
@ -611,7 +611,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET]
PokerStars Game #21963114551: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET]
Table '999999993 1' 10-max Seat #5 is the button
Seat 1: Player7 (1485 in chips)
Seat 2: Player1 (1463 in chips)
@ -661,7 +661,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET]
PokerStars Game #67720495136: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET]
Table '999999993 1' 10-max Seat #6 is the button
Seat 1: Player7 (1480 in chips)
Seat 2: Player1 (1458 in chips)
@ -711,7 +711,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET]
PokerStars Game #82492925521: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET]
Table '999999993 1' 10-max Seat #7 is the button
Seat 1: Player7 (1475 in chips)
Seat 2: Player1 (1453 in chips)
@ -765,7 +765,7 @@ Seat 10: Player8 (big blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET]
PokerStars Game #21093287397: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET]
Table '999999993 1' 10-max Seat #8 is the button
Seat 1: Player7 (1470 in chips)
Seat 2: Player1 (1448 in chips)
@ -815,7 +815,7 @@ Seat 10: Player8 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET]
PokerStars Game #71563601774: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET]
Table '999999993 1' 10-max Seat #10 is the button
Seat 1: Player7 (1415 in chips)
Seat 2: Player1 (1443 in chips)
@ -865,7 +865,7 @@ Seat 10: Player8 (button) collected (170)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET]
PokerStars Game #28530256453: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (1385 in chips)
Seat 2: Player1 (1388 in chips)
@ -914,7 +914,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET]
PokerStars Game #30086223433: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET]
Table '999999993 1' 10-max Seat #2 is the button
Seat 1: Player7 (1380 in chips)
Seat 2: Player1 (1358 in chips)
@ -964,7 +964,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET]
PokerStars Game #24072342623: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (1375 in chips)
Seat 2: Player1 (1353 in chips)
@ -1014,7 +1014,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET]
PokerStars Game #48301138530: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (1365 in chips)
Seat 2: Player1 (1343 in chips)
@ -1072,7 +1072,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET]
PokerStars Game #24109969712: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET]
Table '999999993 1' 10-max Seat #5 is the button
Seat 1: Player7 (1355 in chips)
Seat 2: Player1 (1333 in chips)
@ -1121,7 +1121,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET]
PokerStars Game #30792250485: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET]
Table '999999993 1' 10-max Seat #6 is the button
Seat 1: Player7 (1345 in chips)
Seat 2: Player1 (1563 in chips)
@ -1170,7 +1170,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET]
PokerStars Game #13065275367: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET]
Table '999999993 1' 10-max Seat #7 is the button
Seat 1: Player7 (1335 in chips)
Seat 2: Player1 (1553 in chips)
@ -1228,7 +1228,7 @@ Seat 10: Player8 (big blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET]
PokerStars Game #21787227501: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET]
Table '999999993 1' 10-max Seat #8 is the button
Seat 1: Player7 (1325 in chips)
Seat 2: Player1 (1543 in chips)
@ -1274,7 +1274,7 @@ Seat 10: Player8 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET]
PokerStars Game #97333030912: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET]
Table '999999993 1' 10-max Seat #10 is the button
Seat 1: Player7 (1215 in chips)
Seat 2: Player1 (1763 in chips)
@ -1325,7 +1325,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET]
PokerStars Game #15498191522: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (1155 in chips)
Seat 2: Player1 (1653 in chips)
@ -1371,7 +1371,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET]
PokerStars Game #14585315141: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET]
Table '999999993 1' 10-max Seat #2 is the button
Seat 1: Player7 (1485 in chips)
Seat 2: Player1 (1563 in chips)
@ -1417,7 +1417,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET]
PokerStars Game #11948180943: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (1815 in chips)
Seat 2: Player1 (1548 in chips)
@ -1467,7 +1467,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET]
PokerStars Game #17624911842: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (1800 in chips)
Seat 2: Player1 (1533 in chips)
@ -1513,7 +1513,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET]
PokerStars Game #23032927970: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET]
Table '999999993 1' 10-max Seat #5 is the button
Seat 1: Player7 (1785 in chips)
Seat 2: Player1 (1518 in chips)
@ -1559,7 +1559,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET]
PokerStars Game #23986188992: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET]
Table '999999993 1' 10-max Seat #6 is the button
Seat 1: Player7 (1770 in chips)
Seat 2: Player1 (1503 in chips)
@ -1605,7 +1605,7 @@ Seat 10: Player8 (big blind) collected (270)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET]
PokerStars Game #56828726239: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET]
Table '999999993 1' 10-max Seat #8 is the button
Seat 1: Player7 (1755 in chips)
Seat 2: Player1 (1488 in chips)
@ -1650,7 +1650,7 @@ Seat 10: Player8 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET]
PokerStars Game #38112793216: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET]
Table '999999993 1' 10-max Seat #10 is the button
Seat 1: Player7 (1590 in chips)
Seat 2: Player1 (1473 in chips)
@ -1696,7 +1696,7 @@ Seat 10: Player8 (button) collected (495)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET]
PokerStars Game #31069130752: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (1308 in chips)
@ -1741,7 +1741,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET]
PokerStars Game #32482731311: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET]
Table '999999993 1' 10-max Seat #2 is the button
Seat 1: Player7 (1480 in chips)
Seat 2: Player1 (1188 in chips)
@ -1787,7 +1787,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET]
PokerStars Game #88351539130: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (1460 in chips)
Seat 2: Player1 (1168 in chips)
@ -1833,7 +1833,7 @@ Seat 10: Player8 collected (660)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET]
PokerStars Game #17361301211: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (1440 in chips)
Seat 2: Player1 (1148 in chips)
@ -1879,7 +1879,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET]
PokerStars Game #97221803271: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET]
Table '999999993 1' 10-max Seat #5 is the button
Seat 1: Player7 (1420 in chips)
Seat 2: Player1 (1128 in chips)
@ -1924,7 +1924,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET]
PokerStars Game #15548756265: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET]
Table '999999993 1' 10-max Seat #6 is the button
Seat 1: Player7 (1860 in chips)
Seat 2: Player1 (1108 in chips)
@ -1970,7 +1970,7 @@ Seat 10: Player8 (big blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET]
PokerStars Game #12086528146: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET]
Table '999999993 1' 10-max Seat #8 is the button
Seat 1: Player7 (1840 in chips)
Seat 2: Player1 (1088 in chips)
@ -2022,7 +2022,7 @@ Seat 10: Player8 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET]
PokerStars Game #13697312495: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET]
Table '999999993 1' 10-max Seat #10 is the button
Seat 1: Player7 (1620 in chips)
Seat 2: Player1 (2596 in chips)
@ -2068,7 +2068,7 @@ Seat 10: Player8 (button) collected (660)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET]
PokerStars Game #13761146921: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (1500 in chips)
Seat 2: Player1 (2376 in chips)
@ -2114,7 +2114,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET]
PokerStars Game #30422752324: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET]
Table '999999993 1' 10-max Seat #2 is the button
Seat 1: Player7 (1480 in chips)
Seat 2: Player1 (2256 in chips)
@ -2161,7 +2161,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET]
PokerStars Game #24883115542: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (1455 in chips)
Seat 2: Player1 (2231 in chips)
@ -2213,7 +2213,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET]
PokerStars Game #22311473630: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (1430 in chips)
Seat 2: Player1 (1284 in chips)
@ -2258,7 +2258,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET]
PokerStars Game #21725324525: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET]
Table '999999993 1' 10-max Seat #5 is the button
Seat 1: Player7 (1405 in chips)
Seat 2: Player1 (1834 in chips)
@ -2305,7 +2305,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET]
PokerStars Game #25457310702: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET]
Table '999999993 1' 10-max Seat #6 is the button
Seat 1: Player7 (1380 in chips)
Seat 2: Player1 (1809 in chips)
@ -2351,7 +2351,7 @@ Seat 10: Player8 (big blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET]
PokerStars Game #16450285998: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET]
Table '999999993 1' 10-max Seat #8 is the button
Seat 1: Player7 (1355 in chips)
Seat 2: Player1 (1784 in chips)
@ -2404,7 +2404,7 @@ Seat 10: Player8 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET]
PokerStars Game #29432277481: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET]
Table '999999993 1' 10-max Seat #10 is the button
Seat 1: Player7 (1080 in chips)
Seat 2: Player1 (3079 in chips)
@ -2446,7 +2446,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET]
PokerStars Game #14663167952: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (930 in chips)
Seat 2: Player1 (2804 in chips)
@ -2494,7 +2494,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET]
PokerStars Game #25038217401: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET]
Table '999999993 1' 10-max Seat #2 is the button
Seat 1: Player7 (2360 in chips)
Seat 2: Player1 (2654 in chips)
@ -2536,7 +2536,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET]
PokerStars Game #16107184333: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (2330 in chips)
Seat 2: Player1 (2624 in chips)
@ -2578,7 +2578,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET]
PokerStars Game #97952060720: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (2300 in chips)
Seat 2: Player1 (2594 in chips)
@ -2626,7 +2626,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET]
PokerStars Game #32542183913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET]
Table '999999993 1' 10-max Seat #6 is the button
Seat 1: Player7 (2270 in chips)
Seat 3: Player3 (2329 in chips)
@ -2664,7 +2664,7 @@ Seat 10: Player8 (big blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET]
PokerStars Game #13633150393: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET]
Table '999999993 1' 10-max Seat #8 is the button
Seat 1: Player7 (2240 in chips)
Seat 3: Player3 (2299 in chips)
@ -2702,7 +2702,7 @@ Seat 10: Player8 (small blind) folded before Flop
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET]
PokerStars Game #29869218603: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET]
Table '999999993 1' 10-max Seat #10 is the button
Seat 1: Player7 (1910 in chips)
Seat 3: Player3 (2899 in chips)
@ -2739,7 +2739,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET]
PokerStars Game #31933493206: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET]
Table '999999993 1' 10-max Seat #1 is the button
Seat 1: Player7 (1730 in chips)
Seat 3: Player3 (2569 in chips)
@ -2777,7 +2777,7 @@ Seat 10: Player8 folded before Flop (didn't bet)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET]
PokerStars Game #27455183722: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET]
Table '999999993 1' 10-max Seat #3 is the button
Seat 1: Player7 (1700 in chips)
Seat 3: Player3 (2389 in chips)
@ -2815,7 +2815,7 @@ Seat 10: Player8 collected (930)
PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET]
PokerStars Game #12858227913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET]
Table '999999993 1' 10-max Seat #4 is the button
Seat 1: Player7 (1670 in chips)
Seat 3: Player3 (2359 in chips)

View File

@ -3,5 +3,5 @@ rem .bat script to run fpdb
cd pyfpdb
fpdb.exe
start /b fpdb.exe >..\fpdb_output.txt

View File

@ -1,4 +1,5 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#Copyright 2008 Carl Gherardi
#This program is free software: you can redistribute it and/or modify
@ -21,13 +22,10 @@ import sys
# sys.path[0] holds the directory run_fpdb.py is in
sys.path[0] = sys.path[0]+os.sep+"pyfpdb"
# cd to pyfpdb subdir
os.chdir(sys.path[0])
#print "sys.path[0] =", sys.path[0], "cwd =", os.getcwd()
import fpdb
if __name__ == "__main__":
me = fpdb.fpdb()
me.main()
exit()
os.execvpe('python', ('python', 'fpdb.pyw', '-r'), os.environ)
# first arg is ignored (name of program being run)