diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 20d4d639..26dc4efe 100755 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1449,6 +1449,14 @@ class Database: pdata[p]['street2Aggr'], pdata[p]['street3Aggr'], pdata[p]['street4Aggr'], + pdata[p]['street1CBChance'], + pdata[p]['street2CBChance'], + pdata[p]['street3CBChance'], + pdata[p]['street4CBChance'], + pdata[p]['street1CBDone'], + pdata[p]['street2CBDone'], + pdata[p]['street3CBDone'], + pdata[p]['street4CBDone'], pdata[p]['wonWhenSeenStreet1'], pdata[p]['street0Calls'], pdata[p]['street1Calls'], @@ -1489,6 +1497,14 @@ class Database: street2Aggr, street3Aggr, street4Aggr, + street1CBChance, + street2CBChance, + street3CBChance, + street4CBChance, + street1CBDone, + street2CBDone, + street3CBDone, + street4CBDone, wonWhenSeenStreet1, street0Calls, street1Calls, @@ -1502,7 +1518,8 @@ class Database: street4Bets ) VALUES ( - %s, %s, + %s, %s, %s, %s, %s, + %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, @@ -1531,14 +1548,6 @@ class Database: # foldedBbToSteal, # foldSbToStealChance, # foldedSbToSteal, -# street1CBChance, -# street1CBDone, -# street2CBChance, -# street2CBDone, -# street3CBChance, -# street3CBDone, -# street4CBChance, -# street4CBDone, # foldToStreet1CBChance, # foldToStreet1CBDone, # foldToStreet2CBChance, @@ -1703,6 +1712,15 @@ class Database: # street4CheckCallRaiseChance, # street4CheckCallRaiseDone) + def isDuplicate(self, gametypeID, siteHandNo): + dup = False + c = self.get_cursor() + c.execute(self.sql.query['isAlreadyInDB'], (gametypeID, siteHandNo)) + result = c.fetchall() + if len(result) > 0: + dup = True + return dup + def getGameTypeId(self, siteid, game): c = self.get_cursor() #FIXME: Fixed for NL at the moment @@ -1742,6 +1760,13 @@ class Database: q = "SELECT name, id FROM Players WHERE siteid=%s and name=%s" q = q.replace('%s', self.sql.query['placeholder']) + #NOTE/FIXME?: MySQL has ON DUPLICATE KEY UPDATE + #Usage: + # INSERT INTO `tags` (`tag`, `count`) + # VALUES ($tag, 1) + # ON DUPLICATE KEY UPDATE `count`=`count`+1; + + #print "DEBUG: name: %s site: %s" %(name, site_id) c.execute (q, (site_id, name)) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 3da670cc..c5575ddc 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -49,10 +49,14 @@ class DerivedStats(): for i in range(5): self.handsplayers[player[1]]['street%dCalls' % i] = 0 self.handsplayers[player[1]]['street%dBets' % i] = 0 + for i in range(1,5): + self.handsplayers[player[1]]['street%dCBChance' %i] = False + self.handsplayers[player[1]]['street%dCBDone' %i] = False self.assembleHands(self.hand) self.assembleHandsPlayers(self.hand) + if DEBUG: print "Hands:" pp.pprint(self.hands) @@ -137,6 +141,8 @@ class DerivedStats(): for player in hand.pot.committed: self.handsplayers[player]['totalProfit'] = int(self.handsplayers[player]['winnings'] - (100*hand.pot.committed[player])) + self.calcCBets(hand) + #default_holecards = ["Xx", "Xx", "Xx", "Xx"] #if hand.gametype['base'] == "hold": # pass @@ -221,6 +227,20 @@ class DerivedStats(): for (i, street) in enumerate(hand.actionStreets[1:]): self.hands['street%dRaises' % i] = len(filter( lambda action: action[1] in ('raises','bets'), hand.actions[street])) + def calcCBets(self, hand): + # Continuation Bet chance, action: + # Had the last bet (initiative) on previous street, got called, close street action + # Then no bets before the player with initiatives first action on current street + # ie. if player on street-1 had initiative + # and no donkbets occurred + for i, street in enumerate(hand.actionStreets[2:], start=1): + name = self.lastBetOrRaiser(hand.actionStreets[i]) + if name: + chance = self.noBetsBefore(hand.actionStreets[i+1], name) + self.handsplayers[name]['street%dCBChance' %i] = True + if chance == True: + self.handsplayers[name]['street%dCBDone' %i] = self.betStreet(hand.actionStreets[i+1], name) + def seen(self, hand, i): pas = set() for act in hand.actions[hand.actionStreets[i+1]]: @@ -273,3 +293,35 @@ class DerivedStats(): if f is not None and action[1] in f: continue players.add(action[0]) return players + + def noBetsBefore(self, street, player): + """Returns true if there were no bets before the specified players turn, false otherwise""" + betOrRaise = False + for act in self.hand.actions[street]: + #Must test for player first in case UTG + if act[0] == player: + betOrRaise = True + break + if act[1] in ('bets', 'raises'): + break + return betOrRaise + + def betStreet(self, street, player): + """Returns true if player bet/raised the street as their first action""" + betOrRaise = False + for act in self.hand.actions[street]: + if act[0] == player and act[1] in ('bets', 'raises'): + betOrRaise = True + else: + break + return betOrRaise + + + def lastBetOrRaiser(self, street): + """Returns player name that placed the last bet or raise for that street. + None if there were no bets or raises on that street""" + lastbet = None + for act in self.hand.actions[street]: + if act[1] in ('bets', 'raises'): + lastbet = act[0] + return lastbet diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index a61fe7d2..5beef90f 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -312,9 +312,11 @@ class Filters(threading.Thread): self.cbAllLimits.set_active(False) if not self.limits[limit]: if limit.isdigit(): - self.cbFL.set_active(False) + if self.cbFl is not None: + self.cbFl.set_active(False) else: - self.cbNL.set_active(False) + if self.cbNL is not None: + self.cbNL.set_active(False) elif limit == "all": if self.limits[limit]: #for cb in self.cbLimits.values(): diff --git a/pyfpdb/GuiPrefs.py b/pyfpdb/GuiPrefs.py index 18ffaeef..ada9cb51 100755 --- a/pyfpdb/GuiPrefs.py +++ b/pyfpdb/GuiPrefs.py @@ -90,7 +90,7 @@ class GuiPrefs: #iter = self.configStore.append( parent, [node.nodeValue, None] ) iter = None - if node.nodeType != node.TEXT_NODE: + if node.nodeType != node.TEXT_NODE and node.nodeType != node.COMMENT_NODE: iter = self.configStore.append( parent, [node, setting, value] ) if node.hasAttributes(): for i in xrange(node.attributes.length): diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml new file mode 100644 index 00000000..52905a70 --- /dev/null +++ b/pyfpdb/HUD_config.test.xml @@ -0,0 +1,581 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pyfpdb/HUD_main.py b/pyfpdb/HUD_main.py index becaaa76..dfe1c5fa 100755 --- a/pyfpdb/HUD_main.py +++ b/pyfpdb/HUD_main.py @@ -122,9 +122,9 @@ class HUD_main(object): m.update_gui(new_hand_id) self.hud_dict[table_name].update(new_hand_id, self.config) self.hud_dict[table_name].reposition_windows() - return False finally: gtk.gdk.threads_leave() + return False self.hud_dict[table_name] = Hud.Hud(self, table, max, poker_game, self.config, self.db_connection) self.hud_dict[table_name].table_name = table_name @@ -159,11 +159,15 @@ class HUD_main(object): # function idle_func() to be run by the gui thread, at its leisure. def idle_func(): gtk.gdk.threads_enter() -# try: self.hud_dict[table_name].update(new_hand_id, config) - [aw.update_gui(new_hand_id) for aw in self.hud_dict[table_name].aux_windows] -# finally: - gtk.gdk.threads_leave() + # The HUD could get destroyed in the above call ^^, which leaves us with a KeyError here vv + # if we ever get an error we need to expect ^^ then we need to handle it vv - Eric + try: + [aw.update_gui(new_hand_id) for aw in self.hud_dict[table_name].aux_windows] + except KeyError: + pass + finally: + gtk.gdk.threads_leave() return False gobject.idle_add(idle_func) @@ -198,7 +202,7 @@ class HUD_main(object): try: (table_name, max, poker_game, type, site_id, site_name, num_seats, tour_number, tab_number) = \ self.db_connection.get_table_info(new_hand_id) - except Exception, err: + except Exception, err: # TODO: we need to make this a much less generic Exception lulz print "db error: skipping %s" % new_hand_id sys.stderr.write("Database error: could not find hand %s.\n" % new_hand_id) continue @@ -215,7 +219,14 @@ class HUD_main(object): , self.hud_dict[temp_key].hud_params['h_hud_days']) stat_dict = self.db_connection.get_stats_from_hand(new_hand_id, type, self.hud_dict[temp_key].hud_params ,self.hero_ids[site_id], num_seats) - self.hud_dict[temp_key].stat_dict = stat_dict + try: + self.hud_dict[temp_key].stat_dict = stat_dict + except KeyError: # HUD instance has been killed off, key is stale + sys.stderr.write('hud_dict[%s] was not found\n' % temp_key) + sys.stderr.write('will not send hand\n') + # Unlocks table, copied from end of function + self.db_connection.connection.rollback() + return cards = self.db_connection.get_cards(new_hand_id) comm_cards = self.db_connection.get_common_cards(new_hand_id) if comm_cards != {}: # stud! @@ -247,7 +258,12 @@ class HUD_main(object): else: tablewindow.max = max tablewindow.site = site_name - self.create_HUD(new_hand_id, tablewindow, temp_key, max, poker_game, type, stat_dict, cards) + # Test that the table window still exists + if hasattr(tablewindow, 'number'): + self.create_HUD(new_hand_id, tablewindow, temp_key, max, poker_game, type, stat_dict, cards) + else: + sys.stderr.write('Table "%s" no longer exists\n', table_name) + self.db_connection.connection.rollback() if __name__== "__main__": diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index a5ea87ec..f6fa478e 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -210,24 +210,24 @@ db: a connected fpdb_db object""" ##### # End prep functions ##### - - # HandsActions - all actions for all players for all streets - self.actions - # HudCache data can be generated from HandsActions (HandsPlayers?) - - # Hands - Summary information of hand indexed by handId - gameinfo hh = self.stats.getHands() - hh['gameTypeId'] = gtid - # seats TINYINT NOT NULL, - hh['seats'] = len(sqlids) - #print hh - handid = db.storeHand(hh) - # HandsPlayers - ? ... Do we fix winnings? - db.storeHandsPlayers(handid, sqlids, self.stats.getHandsPlayers()) - # Tourneys ? - # TourneysPlayers + if not db.isDuplicate(gtid, hh['siteHandNo']): + # Hands - Summary information of hand indexed by handId - gameinfo + hh['gameTypeId'] = gtid + # seats TINYINT NOT NULL, + hh['seats'] = len(sqlids) - pass + handid = db.storeHand(hh) + db.storeHandsPlayers(handid, sqlids, self.stats.getHandsPlayers()) + # HandsActions - all actions for all players for all streets - self.actions + # HudCache data can be generated from HandsActions (HandsPlayers?) + # Tourneys ? + # TourneysPlayers + else: + log.info("Hand.insert(): hid #: %s is a duplicate" % hh['siteHandNo']) + #Raise Duplicate exception? + pass def select(self, handId): """ Function to create Hand object from database """ diff --git a/pyfpdb/Hud.py b/pyfpdb/Hud.py index 3c05b244..8306c364 100644 --- a/pyfpdb/Hud.py +++ b/pyfpdb/Hud.py @@ -6,17 +6,17 @@ Create and manage the hud overlays. """ # Copyright 2008, 2009 Ray E. Barker -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -57,7 +57,7 @@ def importName(module_name, name): return(getattr(module, name)) class Hud: - + def __init__(self, parent, table, max, poker_game, config, db_connection): # __init__ is (now) intended to be called from the stdin thread, so it # cannot touch the gui @@ -74,16 +74,16 @@ class Hud: self.site = table.site self.mw_created = False self.hud_params = parent.hud_params - + self.stat_windows = {} self.popup_windows = {} self.aux_windows = [] - + (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.backgroundcolor = gtk.gdk.color_parse(self.colors['hudbgcolor']) self.foregroundcolor = gtk.gdk.color_parse(self.colors['hudfgcolor']) @@ -98,7 +98,7 @@ class Hud: if my_import == None: continue self.aux_windows.append(my_import(self, config, aux_params)) - + self.creation_attrs = None def create_mw(self): @@ -110,16 +110,16 @@ class Hud: win.set_skip_taskbar_hint(True) win.set_decorated(False) win.set_opacity(self.colors["hudopacity"]) - + eventbox = gtk.EventBox() label = gtk.Label(self.hud_ui['label']) - + win.add(eventbox) eventbox.add(label) - + label.modify_bg(gtk.STATE_NORMAL, self.backgroundcolor) label.modify_fg(gtk.STATE_NORMAL, self.foregroundcolor) - + eventbox.modify_bg(gtk.STATE_NORMAL, self.backgroundcolor) eventbox.modify_fg(gtk.STATE_NORMAL, self.foregroundcolor) @@ -128,20 +128,20 @@ class Hud: # A popup menu for the main window menu = gtk.Menu() - + killitem = gtk.MenuItem('Kill This HUD') menu.append(killitem) if self.parent is not None: killitem.connect("activate", self.parent.kill_hud, self.table_name) - + saveitem = gtk.MenuItem('Save HUD Layout') menu.append(saveitem) saveitem.connect("activate", self.save_layout) - + repositem = gtk.MenuItem('Reposition StatWindows') menu.append(repositem) repositem.connect("activate", self.reposition_windows) - + aggitem = gtk.MenuItem('Show Player Stats') menu.append(aggitem) self.aggMenu = gtk.Menu() @@ -150,26 +150,26 @@ class Hud: item = gtk.CheckMenuItem('For This Blind Level Only') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('P',1)) - setattr(self, 'h_aggBBmultItem1', item) - # + setattr(self, 'h_aggBBmultItem1', item) + # item = gtk.MenuItem('For Multiple Blind Levels:') self.aggMenu.append(item) - # + # item = gtk.CheckMenuItem(' 0.5 to 2.0 x Current Blinds') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('P',2)) - setattr(self, 'h_aggBBmultItem2', item) - # + setattr(self, 'h_aggBBmultItem2', item) + # item = gtk.CheckMenuItem(' 0.33 to 3.0 x Current Blinds') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('P',3)) - setattr(self, 'h_aggBBmultItem3', item) - # + setattr(self, 'h_aggBBmultItem3', item) + # item = gtk.CheckMenuItem(' 0.1 to 10 x Current Blinds') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('P',10)) - setattr(self, 'h_aggBBmultItem10', item) - # + setattr(self, 'h_aggBBmultItem10', item) + # item = gtk.CheckMenuItem(' All Levels') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('P',10000)) @@ -195,22 +195,22 @@ class Hud: # item = gtk.MenuItem('Since:') self.aggMenu.append(item) - # + # item = gtk.CheckMenuItem(' All Time') self.aggMenu.append(item) item.connect("activate", self.set_hud_style, ('P','A')) setattr(self, 'h_hudStyleOptionA', item) - # + # item = gtk.CheckMenuItem(' Session') self.aggMenu.append(item) item.connect("activate", self.set_hud_style, ('P','S')) - setattr(self, 'h_hudStyleOptionS', item) - # + setattr(self, 'h_hudStyleOptionS', item) + # item = gtk.CheckMenuItem(' %s Days' % (self.hud_params['h_hud_days'])) self.aggMenu.append(item) item.connect("activate", self.set_hud_style, ('P','T')) - setattr(self, 'h_hudStyleOptionT', item) - + setattr(self, 'h_hudStyleOptionT', item) + aggitem = gtk.MenuItem('Show Opponent Stats') menu.append(aggitem) self.aggMenu = gtk.Menu() @@ -219,26 +219,26 @@ class Hud: item = gtk.CheckMenuItem('For This Blind Level Only') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('O',1)) - setattr(self, 'aggBBmultItem1', item) - # + setattr(self, 'aggBBmultItem1', item) + # item = gtk.MenuItem('For Multiple Blind Levels:') self.aggMenu.append(item) - # + # item = gtk.CheckMenuItem(' 0.5 to 2.0 x Current Blinds') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('O',2)) - setattr(self, 'aggBBmultItem2', item) - # + setattr(self, 'aggBBmultItem2', item) + # item = gtk.CheckMenuItem(' 0.33 to 3.0 x Current Blinds') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('O',3)) - setattr(self, 'aggBBmultItem3', item) - # + setattr(self, 'aggBBmultItem3', item) + # item = gtk.CheckMenuItem(' 0.1 to 10 x Current Blinds') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('O',10)) - setattr(self, 'aggBBmultItem10', item) - # + setattr(self, 'aggBBmultItem10', item) + # item = gtk.CheckMenuItem(' All Levels') self.aggMenu.append(item) item.connect("activate", self.set_aggregation, ('O',10000)) @@ -264,21 +264,21 @@ class Hud: # item = gtk.MenuItem('Since:') self.aggMenu.append(item) - # + # item = gtk.CheckMenuItem(' All Time') self.aggMenu.append(item) item.connect("activate", self.set_hud_style, ('O','A')) setattr(self, 'hudStyleOptionA', item) - # + # item = gtk.CheckMenuItem(' Session') self.aggMenu.append(item) item.connect("activate", self.set_hud_style, ('O','S')) - setattr(self, 'hudStyleOptionS', item) - # + setattr(self, 'hudStyleOptionS', item) + # item = gtk.CheckMenuItem(' %s Days' % (self.hud_params['h_hud_days'])) self.aggMenu.append(item) item.connect("activate", self.set_hud_style, ('O','T')) - setattr(self, 'hudStyleOptionT', item) + setattr(self, 'hudStyleOptionT', item) # set active on current options: if self.hud_params['h_agg_bb_mult'] == 1: @@ -330,13 +330,13 @@ class Hud: getattr(self, 'hudStyleOptionS').set_active(True) elif self.hud_params['hud_style'] == 'T': getattr(self, 'hudStyleOptionT').set_active(True) - + eventbox.connect_object("button-press-event", self.on_button_press, menu) - + debugitem = gtk.MenuItem('Debug StatWindows') menu.append(debugitem) debugitem.connect("activate", self.debug_stat_windows) - + item5 = gtk.MenuItem('Set max seats') menu.append(item5) maxSeatsMenu = gtk.Menu() @@ -346,8 +346,8 @@ class Hud: item.ms = i maxSeatsMenu.append(item) item.connect("activate", self.change_max_seats) - setattr(self, 'maxSeatsMenuItem%d' % (i-1), item) - + setattr(self, 'maxSeatsMenuItem%d' % (i-1), item) + eventbox.connect_object("button-press-event", self.on_button_press, menu) self.mw_created = True @@ -355,7 +355,7 @@ class Hud: menu.show_all() self.main_window.show_all() self.topify_window(self.main_window) - + def change_max_seats(self, widget): if self.max != widget.ms: print 'change_max_seats', widget.ms @@ -425,7 +425,7 @@ class Hud: else: param = 'hud_style' prefix = '' - + if style == 'A' and getattr(self, prefix+'hudStyleOptionA').get_active(): self.hud_params[param] = 'A' getattr(self, prefix+'hudStyleOptionS').set_active(False) @@ -504,7 +504,7 @@ class Hud: # print self.table, "\n", self.main_window.window.get_transient_for() for w in self.stat_windows: print self.stat_windows[w].window.window.get_transient_for() - + def save_layout(self, *args): new_layout = [(0, 0)] * self.max for sw in self.stat_windows: @@ -520,7 +520,7 @@ class Hud: def adj_seats(self, hand, config): -# Need range here, not xrange -> need the actual list +# Need range here, not xrange -> need the actual list adj = range(0, self.max + 1) # default seat adjustments = no adjustment # does the user have a fav_seat? if self.max not in config.supported_sites[self.table.site].layout: @@ -554,12 +554,12 @@ class Hud: # # this method also manages the creating and destruction of stat # windows via calls to the Stat_Window class - self.creation_attrs = hand, config, stat_dict, cards + self.creation_attrs = hand, config, stat_dict, cards - self.hand = hand + self.hand = hand if not self.mw_created: self.create_mw() - + self.stat_dict = stat_dict self.cards = cards sys.stderr.write("------------------------------------------------------------\nCreating hud from hand %s\n" % hand) @@ -571,24 +571,24 @@ class Hud: loc = self.config.get_locations(self.table.site, 9) # create the stat windows - for i in xrange(1, self.max + 1): + for i in xrange(1, self.max + 1): (x, y) = loc[adj[i]] if i in self.stat_windows: self.stat_windows[i].relocate(x, y) else: self.stat_windows[i] = Stat_Window(game = config.supported_games[self.poker_game], parent = self, - table = self.table, + table = self.table, x = x, y = y, seat = i, - adj = adj[i], + adj = adj[i], player_id = 'fake', font = self.font) self.stats = [] game = config.supported_games[self.poker_game] - + for i in xrange(0, game.rows + 1): row_list = [''] * game.cols self.stats.append(row_list) @@ -596,14 +596,15 @@ class Hud: self.stats[config.supported_games[self.poker_game].stats[stat].row] \ [config.supported_games[self.poker_game].stats[stat].col] = \ config.supported_games[self.poker_game].stats[stat].stat_name - + if os.name == "nt": gobject.timeout_add(500, self.update_table_position) - + def update(self, hand, config): self.hand = hand # this is the last hand, so it is available later if os.name == 'nt': - self.update_table_position() + if self.update_table_position() == False: # we got killed by finding our table was gone + return for s in self.stat_dict: try: @@ -619,18 +620,18 @@ class Hud: self.max = 10 self.create(hand, config, self.stat_dict, self.cards) self.stat_windows[statd['seat']].player_id = statd['player_id'] - + for r in xrange(0, config.supported_games[self.poker_game].rows): for c in xrange(0, config.supported_games[self.poker_game].cols): this_stat = config.supported_games[self.poker_game].stats[self.stats[r][c]] number = Stats.do_stat(self.stat_dict, player = statd['player_id'], stat = self.stats[r][c]) statstring = "%s%s%s" % (this_stat.hudprefix, str(number[1]), this_stat.hudsuffix) window = self.stat_windows[statd['seat']] - + if this_stat.hudcolor != "": self.label.modify_fg(gtk.STATE_NORMAL, gtk.gdk.color_parse(self.colors['hudfgcolor'])) window.label[r][c].modify_fg(gtk.STATE_NORMAL, gtk.gdk.color_parse(this_stat.hudcolor)) - + window.label[r][c].set_text(statstring) if statstring != "xxx": # is there a way to tell if this particular stat window is visible already, or no? window.window.show_all() @@ -640,7 +641,7 @@ class Hud: def topify_window(self, window): window.set_focus_on_map(False) window.set_accept_focus(False) - + if not self.table.gdkhandle: self.table.gdkhandle = gtk.gdk.window_foreign_new(int(self.table.number)) # gtk handle to poker window window.window.set_transient_for(self.table.gdkhandle) @@ -648,7 +649,7 @@ class Hud: class Stat_Window: def button_press_cb(self, widget, event, *args): -# This handles all callbacks from button presses on the event boxes in +# This handles all callbacks from button presses on the event boxes in # the stat windows. There is a bit of an ugly kludge to separate single- # and double-clicks. self.window.show_all() @@ -672,15 +673,15 @@ class Stat_Window: self.window.begin_move_drag(event.button, int(event.x_root), int(event.y_root), event.time) return True return False - + def noop(self, arga=None, argb=None): # i'm going to try to connect the focus-in and focus-out events here, to see if that fixes any of the focus problems. return True - + def kill_popup(self, popup): print "remove popup", popup - self.popups.remove(popup) + self.popups.remove(popup) popup.window.destroy() - + def kill_popups(self): map(lambda x: x.window.destroy(), self.popups) self.popups = { } @@ -712,10 +713,10 @@ class Stat_Window: self.window.set_focus_on_map(False) grid = gtk.Table(rows = game.rows, columns = game.cols, homogeneous = False) - self.grid = grid + self.grid = grid self.window.add(grid) self.window.modify_bg(gtk.STATE_NORMAL, parent.backgroundcolor) - + self.e_box = [] self.frame = [] self.label = [] @@ -731,10 +732,10 @@ class Stat_Window: if usegtkframes: self.frame[r].append( gtk.Frame() ) e_box[r].append( gtk.EventBox() ) - + e_box[r][c].modify_bg(gtk.STATE_NORMAL, parent.backgroundcolor) e_box[r][c].modify_fg(gtk.STATE_NORMAL, parent.foregroundcolor) - + Stats.do_tip(e_box[r][c], 'stuff') if usegtkframes: grid.attach(self.frame[r][c], c, c+1, r, r+1, xpadding = game.xpad, ypadding = game.ypad) @@ -742,7 +743,7 @@ class Stat_Window: else: grid.attach(e_box[r][c], c, c+1, r, r+1, xpadding = game.xpad, ypadding = game.ypad) label[r].append( gtk.Label('xxx') ) - + if usegtkframes: self.frame[r][c].modify_bg(gtk.STATE_NORMAL, parent.backgroundcolor) label[r][c].modify_bg(gtk.STATE_NORMAL, parent.backgroundcolor) @@ -763,17 +764,17 @@ class Stat_Window: self.window.set_focus_on_map(False) self.window.set_accept_focus(False) - + self.window.move(self.x, self.y) self.window.realize() # window must be realized before it has a gdkwindow so we can attach it to the table window.. self.topify_window(self.window) - + self.window.hide() - + def topify_window(self, window): window.set_focus_on_map(False) window.set_accept_focus(False) - + if not self.table.gdkhandle: self.table.gdkhandle = gtk.gdk.window_foreign_new(int(self.table.number)) # gtk handle to poker window # window.window.reparent(self.table.gdkhandle, 0, 0) @@ -796,11 +797,11 @@ class Popup_window: self.window.set_title("popup") self.window.set_property("skip-taskbar-hint", True) self.window.set_focus_on_map(False) - self.window.set_accept_focus(False) + self.window.set_accept_focus(False) self.window.set_transient_for(parent.get_toplevel()) - + self.window.set_position(gtk.WIN_POS_CENTER_ON_PARENT) - + self.ebox = gtk.EventBox() self.ebox.connect("button_press_event", self.button_press_cb) self.lab = gtk.Label("stuff\nstuff\nstuff") @@ -808,14 +809,14 @@ class Popup_window: # need an event box so we can respond to clicks self.window.add(self.ebox) self.ebox.add(self.lab) - + self.ebox.modify_bg(gtk.STATE_NORMAL, stat_window.parent.backgroundcolor) self.ebox.modify_fg(gtk.STATE_NORMAL, stat_window.parent.foregroundcolor) self.window.modify_bg(gtk.STATE_NORMAL, stat_window.parent.backgroundcolor) self.window.modify_fg(gtk.STATE_NORMAL, stat_window.parent.foregroundcolor) self.lab.modify_bg(gtk.STATE_NORMAL, stat_window.parent.backgroundcolor) self.lab.modify_fg(gtk.STATE_NORMAL, stat_window.parent.foregroundcolor) - + # figure out the row, col address of the click that activated the popup row = 0 col = 0 @@ -842,7 +843,7 @@ class Popup_window: # get a database connection # db_connection = Database.Database(stat_window.parent.config, stat_window.parent.db_name, 'temp') - + # calculate the stat_dict and then create the text for the pu # stat_dict = db_connection.get_stats_from_hand(stat_window.parent.hand, stat_window.player_id) # stat_dict = self.db_connection.get_stats_from_hand(stat_window.parent.hand) @@ -854,16 +855,16 @@ class Popup_window: number = Stats.do_stat(stat_dict, player = int(stat_window.player_id), stat = s) mo_text += number[5] + " " + number[4] + "\n" pu_text += number[3] + "\n" - + self.lab.set_text(pu_text) Stats.do_tip(self.lab, mo_text) self.window.show_all() - + self.window.set_transient_for(stat_window.window) def button_press_cb(self, widget, event, *args): -# This handles all callbacks from button presses on the event boxes in +# This handles all callbacks from button presses on the event boxes in # the popup windows. There is a bit of an ugly kludge to separate single- # and double-clicks. This is the same code as in the Stat_window class if event.button == 1: # left button event @@ -881,7 +882,7 @@ class Popup_window: def toggle_decorated(self, widget): top = widget.get_toplevel() (x, y) = top.get_position() - + if top.get_decorated(): top.set_decorated(0) top.move(x, y) @@ -892,7 +893,7 @@ class Popup_window: def topify_window(self, window): window.set_focus_on_map(False) window.set_accept_focus(False) - + if not self.table.gdkhandle: self.table.gdkhandle = gtk.gdk.window_foreign_new(int(self.table.number)) # gtk handle to poker window # window.window.reparent(self.table.gdkhandle, 0, 0) @@ -906,14 +907,14 @@ if __name__== "__main__": label = gtk.Label('Fake main window, blah blah, blah\nblah, blah') main_window.add(label) main_window.show_all() - + c = Configuration.Config() #tables = Tables.discover(c) t = Tables.discover_table_by_name(c, "Corona") if t is None: print "Table not found." db = Database.Database(c, 'fpdb', 'holdem') - + stat_dict = db.get_stats_from_hand(1) # for t in tables: diff --git a/pyfpdb/WinTables.py b/pyfpdb/WinTables.py index d8f138eb..f834eac9 100644 --- a/pyfpdb/WinTables.py +++ b/pyfpdb/WinTables.py @@ -9,12 +9,12 @@ Routines for detecting and handling poker client windows for MS Windows. # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -56,9 +56,13 @@ class Table(Table_Window): if 'Chat:' in titles[hwnd]: continue # Some sites (FTP? PS? Others?) have seperable or seperately constructed chat windows self.window = hwnd break - - if self.window == None: - print "Window %s not found. Skipping." % search_string + + try: + if self.window == None: + print "Window %s not found. Skipping." % search_string + return None + except AttributeError: + print "self.window doesn't exist? why?" return None (x, y, width, height) = win32gui.GetWindowRect(hwnd) @@ -70,7 +74,7 @@ class Table(Table_Window): print "x = %s y = %s width = %s height = %s" % (self.x, self.y, self.width, self.height) #self.height = int(height) - b_width - tb_height #self.width = int(width) - 2*b_width - + self.exe = self.get_nt_exe(hwnd) self.title = titles[hwnd] self.site = "" @@ -99,37 +103,37 @@ class Table(Table_Window): def get_nt_exe(self, hwnd): """Finds the name of the executable that the given window handle belongs to.""" - + # Request privileges to enable "debug process", so we can later use PROCESS_VM_READ, retardedly required to GetModuleFileNameEx() priv_flags = win32security.TOKEN_ADJUST_PRIVILEGES | win32security.TOKEN_QUERY hToken = win32security.OpenProcessToken (win32api.GetCurrentProcess(), priv_flags) # enable "debug process" privilege_id = win32security.LookupPrivilegeValue (None, win32security.SE_DEBUG_NAME) old_privs = win32security.AdjustTokenPrivileges (hToken, 0, [(privilege_id, win32security.SE_PRIVILEGE_ENABLED)]) - + # Open the process, and query it's filename processid = win32process.GetWindowThreadProcessId(hwnd) pshandle = win32api.OpenProcess(win32con.PROCESS_QUERY_INFORMATION | win32con.PROCESS_VM_READ, False, processid[1]) exename = win32process.GetModuleFileNameEx(pshandle, 0) - + # clean up win32api.CloseHandle(pshandle) win32api.CloseHandle(hToken) - + return exename def topify(self, hud): """Set the specified gtk window to stayontop in MS Windows.""" - + # def windowEnumerationHandler(hwnd, resultList): # '''Callback for win32gui.EnumWindows() to generate list of window handles.''' # resultList.append((hwnd, win32gui.GetWindowText(hwnd))) -# +# # unique_name = 'unique name for finding this window' # real_name = hud.main_window.get_title() # hud.main_window.set_title(unique_name) # tl_windows = [] # win32gui.EnumWindows(windowEnumerationHandler, tl_windows) -# +# # for w in tl_windows: # if w[1] == unique_name: # hud.main_window.gdkhandle = gtk.gdk.window_foreign_new(w[0]) @@ -139,14 +143,13 @@ class Table(Table_Window): (innerx, innery) = self.gdkhandle.get_origin() b_width = rect.x - innerx tb_height = rect.y - innery -# +# # style = win32gui.GetWindowLong(self.number, win32con.GWL_EXSTYLE) # style |= win32con.WS_CLIPCHILDREN # win32gui.SetWindowLong(self.number, win32con.GWL_EXSTYLE, style) # break - + # hud.main_window.set_title(real_name) def win_enum_handler(hwnd, titles): titles[hwnd] = win32gui.GetWindowText(hwnd) - diff --git a/pyfpdb/fpdb_db.py b/pyfpdb/fpdb_db.py index 7a2ea4fe..a58606be 100644 --- a/pyfpdb/fpdb_db.py +++ b/pyfpdb/fpdb_db.py @@ -149,11 +149,11 @@ class fpdb_db: else: logging.warning("SQLite won't work well without 'sqlalchemy' installed.") - if not os.path.isdir(Configuration.DIR_DATABASES): + if not os.path.isdir(Configuration.DIR_DATABASES) and not database == ":memory:": print "Creating directory: '%s'" % (Configuration.DIR_DATABASES) os.mkdir(Configuration.DIR_DATABASES) - self.db = sqlite3.connect( os.path.join(Configuration.DIR_DATABASES, database) - , detect_types=sqlite3.PARSE_DECLTYPES ) + database = os.path.join(Configuration.DIR_DATABASE, database) + self.db = sqlite3.connect(database, detect_types=sqlite3.PARSE_DECLTYPES ) sqlite3.register_converter("bool", lambda x: bool(int(x))) sqlite3.register_adapter(bool, lambda x: "1" if x else "0") self.db.create_function("floor", 1, math.floor) diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 850f34b6..fb80d968 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -51,7 +51,7 @@ except ImportError: log.debug("Import database module: MySQLdb not found") else: mysqlLibFound = True - + try: import psycopg2 except ImportError: @@ -81,7 +81,7 @@ class Importer: self.pos_in_file = {} # dict to remember how far we have read in the file #Set defaults self.callHud = self.config.get_import_parameters().get("callFpdbHud") - + # CONFIGURATION OPTIONS self.settings.setdefault("minPrint", 30) self.settings.setdefault("handCount", 0) @@ -243,9 +243,9 @@ class Importer: #self.writeq.join() #using empty() might be more reliable: while not self.writeq.empty() and len(threading.enumerate()) > 1: - # TODO: Do we need to actually tell the progress indicator to move, or is it already moving, and we just need to process events... + # TODO: Do we need to actually tell the progress indicator to move, or is it already moving, and we just need to process events... while gtk.events_pending(): # see http://faq.pygtk.org/index.py?req=index for more hints (3.7) - gtk.main_iteration(False) + gtk.main_iteration(False) sleep(0.5) print " ... writers finished" @@ -267,7 +267,7 @@ class Importer: """"Read filenames in self.filelist and pass to import_file_dict(). Uses a separate database connection if created as a thread (caller passes None or no param as db).""" - + totstored = 0 totdups = 0 totpartial = 0 @@ -300,7 +300,7 @@ class Importer: except: pass # if this fails we're probably doomed anyway if self.settings['handsInDB'] < 5000: return "drop" - if len(self.filelist) < 50: return "don't drop" + if len(self.filelist) < 50: return "don't drop" if self.settings['handsInDB'] > 50000: return "don't drop" return "drop" @@ -313,7 +313,7 @@ class Importer: size_per_hand = 1300.0 # wag based on a PS 6-up FLHE file. Actual value not hugely important # as values of scale and increment compensate for it anyway. # decimal used to force float arithmetic - + # get number of hands in db if 'handsInDB' not in self.settings: try: @@ -322,7 +322,7 @@ class Importer: self.settings['handsInDB'] = tmpcursor.fetchone()[0] except: pass # if this fails we're probably doomed anyway - + # add up size of import files total_size = 0.0 for file in self.filelist: @@ -344,12 +344,12 @@ class Importer: #Check for new files in monitored directories #todo: make efficient - always checks for new file, should be able to use mtime of directory # ^^ May not work on windows - + #rulog = open('runUpdated.txt', 'a') #rulog.writelines("runUpdated ... ") for site in self.dirlist: self.addImportDirectory(self.dirlist[site][0], False, site, self.dirlist[site][1]) - + for file in self.filelist: if os.path.exists(file): stat_info = os.stat(file) @@ -369,13 +369,13 @@ class Importer: self.updatedtime[file] = time() else: self.removeFromFileList[file] = True - + self.addToDirList = filter(lambda x: self.addImportDirectory(x, True, self.addToDirList[x][0], self.addToDirList[x][1]), self.addToDirList) for file in self.removeFromFileList: if file in self.filelist: del self.filelist[file] - + self.addToDirList = {} self.removeFromFileList = {} self.database.rollback() @@ -385,7 +385,7 @@ class Importer: # This is now an internal function that should not be called directly. def import_file_dict(self, db, file, site, filter, q=None): #print "import_file_dict" - + if os.path.isdir(file): self.addToDirList[file] = [site] + [filter] return @@ -393,7 +393,7 @@ class Importer: conv = None (stored, duplicates, partial, errors, ttime) = (0, 0, 0, 0, 0) - file = file.decode(fpdb_simple.LOCALE_ENCODING) + file = file.decode(fpdb_simple.LOCALE_ENCODING) # Load filter, process file, pass returned filename to import_fpdb_file if self.settings['threads'] > 0 and self.writeq is not None: @@ -473,7 +473,7 @@ class Importer: ttime = time() - starttime if q is None: log.info("Total stored: %(stored)d\tduplicates:%(duplicates)d\terrors:%(errors)d\ttime:%(ttime)s" % locals()) - + if not stored: if duplicates: for line_no in xrange(len(self.lines)): @@ -488,7 +488,7 @@ class Importer: return (stored, duplicates, partial, errors, ttime) # end def import_fpdb_file - + def import_fpdb_lines(self, db, lines, starttime, file, site, q = None): """Import an fpdb hand history held in the list lines, could be one hand or many""" @@ -496,7 +496,7 @@ class Importer: #db.lock_for_insert() # should be ok when using one thread, but doesn't help?? while gtk.events_pending(): gtk.main_iteration(False) - + try: # sometimes we seem to be getting an empty self.lines, in which case, we just want to return. firstline = lines[0] except: @@ -524,7 +524,7 @@ class Importer: if len(lines[i]) < 2: #Wierd way to detect for '\r\n' or '\n' endpos = i hand = lines[startpos:endpos] - + if len(hand[0]) < 2: hand=hand[1:] @@ -548,7 +548,7 @@ class Importer: if self.callHud: #print "call to HUD here. handsId:",handsId #pipe the Hands.id out to the HUD - print "fpdb_import: sending hand to hud", handsId, "pipe =", self.caller.pipe_to_hud + # print "fpdb_import: sending hand to hud", handsId, "pipe =", self.caller.pipe_to_hud self.caller.pipe_to_hud.stdin.write("%s" % (handsId) + os.linesep) except Exceptions.DuplicateError: duplicates += 1 @@ -574,7 +574,7 @@ class Importer: if self.settings['minPrint']: if not ((stored+duplicates+errors) % self.settings['minPrint']): print "stored:", stored, " duplicates:", duplicates, "errors:", errors - + if self.settings['handCount']: if ((stored+duplicates+errors) >= self.settings['handCount']): if not self.settings['quiet']: diff --git a/pyfpdb/regression-test-files/cash/Stars/Draw/3-Draw-Limit-USD-0.10-0.20-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/3-Draw-Limit-USD-0.10-0.20-200911.txt new file mode 100644 index 00000000..ad6490e3 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/3-Draw-Limit-USD-0.10-0.20-200911.txt @@ -0,0 +1,971 @@ +PokerStars Game #35839001292: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:12:58 ET +Table 'Theodora VI' 6-max Seat #5 is the button +Seat 1: s0rrow ($4 in chips) +Seat 2: rumble1111 ($4.58 in chips) +Seat 3: Eisenherz73 ($7.54 in chips) +Seat 4: cypis28 ($1.40 in chips) +Seat 5: bakter9 ($0.78 in chips) +Seat 6: TheLabman ($6.31 in chips) +TheLabman: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8s Ts 8h 2s 3s] +rumble1111: calls $0.10 +Eisenherz73: folds +cypis28: raises $0.10 to $0.20 +bakter9: raises $0.10 to $0.30 +TheLabman: folds +s0rrow: folds +rumble1111: calls $0.20 +cypis28: raises $0.10 to $0.40 +Betting is capped +bakter9: calls $0.10 +rumble1111: calls $0.10 +*** FIRST DRAW *** +rumble1111: discards 2 cards +cypis28: discards 2 cards +bakter9: discards 1 card +rumble1111: checks +cypis28: bets $0.10 +bakter9: raises $0.10 to $0.20 +rumble1111: folds +cypis28: calls $0.10 +*** SECOND DRAW *** +cypis28: discards 1 card +bakter9: stands pat +cypis28: bets $0.20 +bakter9: calls $0.18 and is all-in +Uncalled bet ($0.02) returned to cypis28 +*** THIRD DRAW *** +cypis28: stands pat +bakter9: stands pat +*** SHOW DOWN *** +cypis28: shows [7c 6d 9c 4s 2c] (Lo: 9,7,6,4,2) +bakter9: shows [7s 5s 8d 4h 3c] (Lo: 8,7,5,4,3) +bakter9 collected $2.01 from pot +*** SUMMARY *** +Total pot $2.11 | Rake $0.10 +Seat 1: s0rrow (big blind) folded before the Draw +Seat 2: rumble1111 folded after the 1st Draw +Seat 3: Eisenherz73 folded before the Draw (didn't bet) +Seat 4: cypis28 showed [7c 6d 9c 4s 2c] and lost with Lo: 9,7,6,4,2 +Seat 5: bakter9 (button) showed [7s 5s 8d 4h 3c] and won ($2.01) with Lo: 8,7,5,4,3 +Seat 6: TheLabman (small blind) folded before the Draw + + + +PokerStars Game #35839050562: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:14:02 ET +Table 'Theodora VI' 6-max Seat #6 is the button +Seat 1: s0rrow ($3.90 in chips) +Seat 2: rumble1111 ($4.18 in chips) +Seat 3: Eisenherz73 ($7.54 in chips) +Seat 4: cypis28 ($0.62 in chips) +Seat 5: bakter9 ($2.01 in chips) +Seat 6: TheLabman ($6.26 in chips) +s0rrow: posts small blind $0.05 +rumble1111: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Kh Th 3d Tc 7c] +Eisenherz73: folds +cypis28: folds +bakter9: calls $0.10 +TheLabman: folds +s0rrow: calls $0.05 +rumble1111: checks +*** FIRST DRAW *** +s0rrow: discards 2 cards [Kh Th] +Dealt to s0rrow [3d Tc 7c] [5c Qs] +rumble1111: discards 2 cards +bakter9: discards 2 cards +s0rrow: checks +rumble1111: bets $0.10 +bakter9: folds +s0rrow: calls $0.10 +*** SECOND DRAW *** +s0rrow: discards 2 cards [Qs Tc] +Dealt to s0rrow [3d 7c 5c] [4c 2s] +rumble1111: stands pat +s0rrow: bets $0.20 +rumble1111: calls $0.20 +*** THIRD DRAW *** +s0rrow: stands pat on [3d 7c 5c 4c 2s] +rumble1111: discards 1 card +s0rrow: bets $0.20 +rumble1111: calls $0.20 +*** SHOW DOWN *** +s0rrow: shows [5c 4c 3d 2s 7c] (Lo: 7,5,4,3,2) +rumble1111: mucks hand +s0rrow collected $1.24 from pot +*** SUMMARY *** +Total pot $1.30 | Rake $0.06 +Seat 1: s0rrow (small blind) showed [5c 4c 3d 2s 7c] and won ($1.24) with Lo: 7,5,4,3,2 +Seat 2: rumble1111 (big blind) mucked [8s 7d 3c 6d 2h] +Seat 3: Eisenherz73 folded before the Draw (didn't bet) +Seat 4: cypis28 folded before the Draw (didn't bet) +Seat 5: bakter9 folded after the 1st Draw +Seat 6: TheLabman (button) folded before the Draw (didn't bet) + + + +PokerStars Game #35839109592: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:15:18 ET +Table 'Theodora VI' 6-max Seat #1 is the button +Seat 1: s0rrow ($4.54 in chips) +Seat 2: rumble1111 ($3.58 in chips) +Seat 3: Eisenherz73 ($7.54 in chips) +Seat 4: cypis28 ($0.62 in chips) +Seat 5: bakter9 ($1.91 in chips) +Seat 6: TheLabman ($6.26 in chips) +rumble1111: posts small blind $0.05 +Eisenherz73: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Tc 9s Qc 8h 3d] +cypis28: folds +bakter9: folds +TheLabman: folds +s0rrow: folds +rumble1111: folds +Uncalled bet ($0.05) returned to Eisenherz73 +Eisenherz73 collected $0.10 from pot +Eisenherz73: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: s0rrow (button) folded before the Draw (didn't bet) +Seat 2: rumble1111 (small blind) folded before the Draw +Seat 3: Eisenherz73 (big blind) collected ($0.10) +Seat 4: cypis28 folded before the Draw (didn't bet) +Seat 5: bakter9 folded before the Draw (didn't bet) +Seat 6: TheLabman folded before the Draw (didn't bet) + + + +PokerStars Game #35839118248: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:15:29 ET +Table 'Theodora VI' 6-max Seat #2 is the button +Seat 1: s0rrow ($4.54 in chips) +Seat 2: rumble1111 ($3.53 in chips) +Seat 3: Eisenherz73 ($7.59 in chips) +Seat 4: cypis28 ($0.62 in chips) +Seat 5: bakter9 ($1.91 in chips) +Seat 6: TheLabman ($6.26 in chips) +Eisenherz73: posts small blind $0.05 +cypis28: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Js 3d Qc 9s 5h] +bakter9: raises $0.10 to $0.20 +TheLabman: folds +s0rrow: folds +rumble1111: folds +Eisenherz73: folds +cypis28: raises $0.10 to $0.30 +bakter9: raises $0.10 to $0.40 +Betting is capped +cypis28: calls $0.10 +*** FIRST DRAW *** +cypis28: discards 2 cards +bakter9: discards 1 card +cypis28: bets $0.10 +bakter9: raises $0.10 to $0.20 +cypis28: raises $0.02 to $0.22 and is all-in +bakter9: calls $0.02 +*** SECOND DRAW *** +cypis28: discards 1 card +bakter9: stands pat +*** THIRD DRAW *** +cypis28: stands pat +bakter9: stands pat +*** SHOW DOWN *** +cypis28: shows [7h 3s 2h 8h 6h] (Lo: 8,7,6,3,2) +bakter9: shows [4d 7c 2c 5s 6d] (Lo: 7,6,5,4,2) +bakter9 collected $1.23 from pot +*** SUMMARY *** +Total pot $1.29 | Rake $0.06 +Seat 1: s0rrow folded before the Draw (didn't bet) +Seat 2: rumble1111 (button) folded before the Draw (didn't bet) +Seat 3: Eisenherz73 (small blind) folded before the Draw +Seat 4: cypis28 (big blind) showed [7h 3s 2h 8h 6h] and lost with Lo: 8,7,6,3,2 +Seat 5: bakter9 showed [4d 7c 2c 5s 6d] and won ($1.23) with Lo: 7,6,5,4,2 +Seat 6: TheLabman folded before the Draw (didn't bet) + + + +PokerStars Game #35839149377: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:16:10 ET +Table 'Theodora VI' 6-max Seat #3 is the button +Seat 1: s0rrow ($4.54 in chips) +Seat 2: rumble1111 ($3.53 in chips) +Seat 3: Eisenherz73 ($7.54 in chips) +Seat 5: bakter9 ($2.52 in chips) +Seat 6: TheLabman ($6.26 in chips) +bakter9: posts small blind $0.05 +TheLabman: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [2c 3c Ts Jc Kc] +cypis28 leaves the table +s0rrow: folds +rumble1111: folds +Eisenherz73: folds +bakter9: calls $0.05 +TheLabman: checks +*** FIRST DRAW *** +bakter9: discards 2 cards +tom1206 joins the table at seat #4 +TheLabman: discards 4 cards +bakter9: checks +TheLabman: checks +*** SECOND DRAW *** +bakter9: discards 1 card +TheLabman: discards 3 cards +bakter9: checks +TheLabman: checks +*** THIRD DRAW *** +bakter9: discards 1 card +TheLabman: discards 1 card +bakter9: bets $0.20 +TheLabman: calls $0.20 +*** SHOW DOWN *** +bakter9: shows [5d 4h 8h 7d 6h] (Lo: a straight, Four to Eight) +TheLabman: shows [3h 6d 7h 5h 8d] (Lo: 8,7,6,5,3) +TheLabman collected $0.58 from pot +*** SUMMARY *** +Total pot $0.60 | Rake $0.02 +Seat 1: s0rrow folded before the Draw (didn't bet) +Seat 2: rumble1111 folded before the Draw (didn't bet) +Seat 3: Eisenherz73 (button) folded before the Draw (didn't bet) +Seat 5: bakter9 (small blind) showed [5d 4h 8h 7d 6h] and lost with Lo: a straight, Four to Eight +Seat 6: TheLabman (big blind) showed [3h 6d 7h 5h 8d] and won ($0.58) with Lo: 8,7,6,5,3 + + + +PokerStars Game #35839176665: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:16:46 ET +Table 'Theodora VI' 6-max Seat #5 is the button +Seat 1: s0rrow ($4.54 in chips) +Seat 2: rumble1111 ($3.53 in chips) +Seat 3: Eisenherz73 ($7.54 in chips) +Seat 4: tom1206 ($4 in chips) +Seat 5: bakter9 ($2.22 in chips) +Seat 6: TheLabman ($6.54 in chips) +TheLabman: posts small blind $0.05 +s0rrow: posts big blind $0.10 +tom1206: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [5d Js 7d Jd 4d] +rumble1111: calls $0.10 +Eisenherz73: calls $0.10 +tom1206: checks +bakter9: folds +TheLabman: calls $0.05 +s0rrow: checks +*** FIRST DRAW *** +TheLabman: discards 3 cards +s0rrow: discards 2 cards [Js Jd] +Dealt to s0rrow [5d 7d 4d] [6d 2s] +rumble1111: discards 2 cards +Eisenherz73: discards 2 cards +tom1206: discards 2 cards +TheLabman: checks +s0rrow: checks +rumble1111: checks +Eisenherz73: checks +tom1206: checks +*** SECOND DRAW *** +TheLabman: discards 3 cards +s0rrow: stands pat on [5d 7d 4d 6d 2s] +rumble1111: discards 2 cards +Eisenherz73: discards 1 card +tom1206: discards 2 cards +TheLabman: checks +s0rrow: checks +rumble1111: checks +Eisenherz73: checks +tom1206: checks +*** THIRD DRAW *** +TheLabman: discards 2 cards +s0rrow: stands pat on [5d 7d 4d 6d 2s] +rumble1111: discards 1 card +The deck is reshuffled +Eisenherz73: discards 1 card +tom1206: discards 2 cards +TheLabman: checks +s0rrow: bets $0.20 +rumble1111: folds +Eisenherz73: folds +Eisenherz73 is sitting out +Eisenherz73 leaves the table +tom1206: folds +TheLabman: folds +Uncalled bet ($0.20) returned to s0rrow +X USN-USMC joins the table at seat #3 +s0rrow collected $0.48 from pot +*** SUMMARY *** +Total pot $0.50 | Rake $0.02 +Seat 1: s0rrow (big blind) collected ($0.48) +Seat 2: rumble1111 folded after the 3rd Draw +Seat 3: Eisenherz73 folded after the 3rd Draw +Seat 4: tom1206 folded after the 3rd Draw +Seat 5: bakter9 (button) folded before the Draw (didn't bet) +Seat 6: TheLabman (small blind) folded after the 3rd Draw + + + +PokerStars Game #35839272371: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:18:50 ET +Table 'Theodora VI' 6-max Seat #6 is the button +Seat 1: s0rrow ($4.92 in chips) +Seat 2: rumble1111 ($3.43 in chips) +Seat 3: X USN-USMC ($4 in chips) +Seat 4: tom1206 ($3.90 in chips) +Seat 5: bakter9 ($2.22 in chips) +Seat 6: TheLabman ($6.44 in chips) +s0rrow: posts small blind $0.05 +rumble1111: posts big blind $0.10 +X USN-USMC: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Th Js Kd 2h Qc] +X USN-USMC: checks +tom1206 has timed out +tom1206: folds +tom1206 is sitting out +bakter9: folds +TheLabman: calls $0.10 +s0rrow: folds +tom1206 has returned +rumble1111: checks +*** FIRST DRAW *** +rumble1111: discards 3 cards +X USN-USMC: discards 1 card +TheLabman: discards 2 cards +rumble1111: checks +X USN-USMC: bets $0.10 +TheLabman: calls $0.10 +rumble1111: calls $0.10 +*** SECOND DRAW *** +rumble1111 said, "other fckers" +rumble1111: discards 1 card +X USN-USMC: discards 1 card +TheLabman: discards 1 card +rumble1111: checks +X USN-USMC: bets $0.20 +TheLabman: calls $0.20 +rumble1111: calls $0.20 +*** THIRD DRAW *** +rumble1111: discards 1 card +X USN-USMC: discards 1 card +TheLabman: discards 1 card +rumble1111: checks +X USN-USMC: bets $0.20 +TheLabman: folds +rumble1111: folds +Uncalled bet ($0.20) returned to X USN-USMC +X USN-USMC collected $1.19 from pot +X USN-USMC: doesn't show hand +*** SUMMARY *** +Total pot $1.25 | Rake $0.06 +Seat 1: s0rrow (small blind) folded before the Draw +Seat 2: rumble1111 (big blind) folded after the 3rd Draw +Seat 3: X USN-USMC collected ($1.19) +Seat 4: tom1206 folded before the Draw (didn't bet) +Seat 5: bakter9 folded before the Draw (didn't bet) +Seat 6: TheLabman (button) folded after the 3rd Draw + + + +PokerStars Game #35839360555: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:20:53 ET +Table 'Theodora VI' 6-max Seat #1 is the button +Seat 1: s0rrow ($4.87 in chips) +Seat 2: rumble1111 ($3.03 in chips) +Seat 3: X USN-USMC ($4.79 in chips) +Seat 4: tom1206 ($3.90 in chips) +Seat 5: bakter9 ($2.22 in chips) +Seat 6: TheLabman ($6.04 in chips) +rumble1111: posts small blind $0.05 +X USN-USMC: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [9s Kh 2d Ks 4c] +tom1206: raises $0.10 to $0.20 +bakter9: folds +TheLabman: folds +s0rrow: folds +rumble1111: calls $0.15 +X USN-USMC: calls $0.10 +*** FIRST DRAW *** +rumble1111: discards 3 cards +X USN-USMC: discards 2 cards +tom1206: discards 2 cards +rumble1111: checks +X USN-USMC: bets $0.10 +tom1206: calls $0.10 +rumble1111: calls $0.10 +*** SECOND DRAW *** +rumble1111: discards 3 cards +X USN-USMC: stands pat +tom1206: discards 1 card +rumble1111: checks +X USN-USMC: bets $0.20 +tom1206: raises $0.20 to $0.40 +rumble1111: calls $0.40 +X USN-USMC: calls $0.20 +*** THIRD DRAW *** +rumble1111: discards 2 cards +X USN-USMC: stands pat +tom1206: stands pat +rumble1111: bets $0.20 +X USN-USMC: folds +tom1206: calls $0.20 +*** SHOW DOWN *** +rumble1111: shows [7d 4s 2s 3s 6c] (Lo: 7,6,4,3,2) +tom1206: mucks hand +rumble1111 collected $2.38 from pot +*** SUMMARY *** +Total pot $2.50 | Rake $0.12 +Seat 1: s0rrow (button) folded before the Draw (didn't bet) +Seat 2: rumble1111 (small blind) showed [7d 4s 2s 3s 6c] and won ($2.38) with Lo: 7,6,4,3,2 +Seat 3: X USN-USMC (big blind) folded after the 3rd Draw +Seat 4: tom1206 mucked [4h 6d 8d 5c 3d] +Seat 5: bakter9 folded before the Draw (didn't bet) +Seat 6: TheLabman folded before the Draw (didn't bet) + + + +PokerStars Game #35839412131: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:21:58 ET +Table 'Theodora VI' 6-max Seat #2 is the button +Seat 1: s0rrow ($4.87 in chips) +Seat 2: rumble1111 ($4.51 in chips) +Seat 3: X USN-USMC ($4.09 in chips) +Seat 4: tom1206 ($3 in chips) +Seat 5: bakter9 ($2.22 in chips) +Seat 6: TheLabman ($6.04 in chips) +X USN-USMC: posts small blind $0.05 +tom1206: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8c 3s Tc Ac Qd] +bakter9: calls $0.10 +TheLabman: calls $0.10 +s0rrow: folds +rumble1111: calls $0.10 +X USN-USMC: calls $0.05 +tom1206: checks +*** FIRST DRAW *** +X USN-USMC: discards 4 cards +tom1206: discards 3 cards +bakter9: discards 2 cards +TheLabman: discards 3 cards +rumble1111: discards 3 cards +X USN-USMC: checks +tom1206: checks +bakter9: checks +TheLabman: checks +rumble1111: checks +*** SECOND DRAW *** +X USN-USMC: discards 2 cards +tom1206: discards 2 cards +bakter9: discards 1 card +TheLabman: discards 2 cards +The deck is reshuffled +rumble1111: discards 1 card +X USN-USMC: bets $0.20 +tom1206: calls $0.20 +bakter9: calls $0.20 +TheLabman: folds +rumble1111: calls $0.20 +*** THIRD DRAW *** +X USN-USMC: discards 1 card +tom1206: discards 1 card +bakter9: discards 1 card +rumble1111: stands pat +X USN-USMC: checks +tom1206: bets $0.20 +bakter9: calls $0.20 +rumble1111: folds +X USN-USMC: folds +*** SHOW DOWN *** +tom1206: shows [4s 3h 7d 8s 2c] (Lo: 8,7,4,3,2) +bakter9: shows [8d 5c 7c 2d 6h] (Lo: 8,7,6,5,2) +tom1206 collected $1.62 from pot +*** SUMMARY *** +Total pot $1.70 | Rake $0.08 +Seat 1: s0rrow folded before the Draw (didn't bet) +Seat 2: rumble1111 (button) folded after the 3rd Draw +Seat 3: X USN-USMC (small blind) folded after the 3rd Draw +Seat 4: tom1206 (big blind) showed [4s 3h 7d 8s 2c] and won ($1.62) with Lo: 8,7,4,3,2 +Seat 5: bakter9 showed [8d 5c 7c 2d 6h] and lost with Lo: 8,7,6,5,2 +Seat 6: TheLabman folded after the 2nd Draw + + + +PokerStars Game #35839484932: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:23:30 ET +Table 'Theodora VI' 6-max Seat #3 is the button +Seat 1: s0rrow ($4.87 in chips) +Seat 2: rumble1111 ($4.21 in chips) +Seat 3: X USN-USMC ($3.79 in chips) +Seat 4: tom1206 ($4.12 in chips) +Seat 5: bakter9 ($1.72 in chips) +Seat 6: TheLabman ($5.94 in chips) +tom1206: posts small blind $0.05 +bakter9: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [3d 7h 7c Jh 5s] +TheLabman: folds +s0rrow: calls $0.10 +rumble1111: folds +rumble1111 leaves the table +X USN-USMC: folds +tom1206: calls $0.05 +bakter9: raises $0.10 to $0.20 +s0rrow: calls $0.10 +tom1206: calls $0.10 +*** FIRST DRAW *** +tom1206: discards 3 cards +bakter9: discards 2 cards +s0rrow: discards 2 cards [7c Jh] +Dealt to s0rrow [3d 7h 5s] [9h Ad] +tom1206: checks +bakter9: bets $0.10 +s0rrow: calls $0.10 +tom1206: calls $0.10 +*** SECOND DRAW *** +tom1206: discards 2 cards +bakter9: discards 1 card +s0rrow: discards 1 card [9h] +Dealt to s0rrow [3d 7h 5s Ad] [4c] +tom1206: bets $0.20 +bakter9: raises $0.20 to $0.40 +bakter9 said, "zzzzzzzzzzzzzzzzzzz" +s0rrow: calls $0.40 +tom1206: calls $0.20 +*** THIRD DRAW *** +tom1206: discards 1 card +bakter9: stands pat +s0rrow: stands pat on [3d 7h 5s Ad 4c] +tom1206: checks +bakter9: bets $0.20 +s0rrow: calls $0.20 +tom1206: raises $0.20 to $0.40 +bakter9: calls $0.20 +s0rrow: calls $0.20 +*** SHOW DOWN *** +tom1206: shows [4h 3c Qc 2c 6c] (Lo: Q,6,4,3,2) +bakter9: shows [3h 5d 2s 8c 6s] (Lo: 8,6,5,3,2) +s0rrow: mucks hand +bakter9 collected $3.14 from pot +*** SUMMARY *** +Total pot $3.30 | Rake $0.16 +Seat 1: s0rrow mucked [3d 7h 4c Ad 5s] +Seat 2: rumble1111 folded before the Draw (didn't bet) +Seat 3: X USN-USMC (button) folded before the Draw (didn't bet) +Seat 4: tom1206 (small blind) showed [4h 3c Qc 2c 6c] and lost with Lo: Q,6,4,3,2 +Seat 5: bakter9 (big blind) showed [3h 5d 2s 8c 6s] and won ($3.14) with Lo: 8,6,5,3,2 +Seat 6: TheLabman folded before the Draw (didn't bet) + + + +PokerStars Game #35839619404: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:26:21 ET +Table 'Theodora VI' 6-max Seat #4 is the button +Seat 1: s0rrow ($3.77 in chips) +Seat 3: X USN-USMC ($3.79 in chips) +Seat 4: tom1206 ($3.02 in chips) +Seat 5: bakter9 ($3.76 in chips) +Seat 6: TheLabman ($5.94 in chips) +bakter9: posts small blind $0.05 +TheLabman: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Ah 7s Ad 5d As] +bakter9 said, "ty" +s0rrow: raises $0.10 to $0.20 +X USN-USMC: folds +tom1206: folds +bakter9: folds +TheLabman: calls $0.10 +*** FIRST DRAW *** +TheLabman: discards 2 cards +s0rrow: discards 2 cards [7s Ad] +Dealt to s0rrow [Ah 5d As] [5h 8s] +TheLabman: checks +Mamega joins the table at seat #2 +s0rrow: bets $0.10 +TheLabman: calls $0.10 +*** SECOND DRAW *** +TheLabman: discards 1 card +s0rrow: stands pat on [Ah 5d As 5h 8s] +TheLabman: checks +s0rrow: bets $0.20 +TheLabman: calls $0.20 +*** THIRD DRAW *** +TheLabman: discards 1 card +s0rrow: stands pat on [Ah 5d As 5h 8s] +TheLabman: checks +s0rrow: bets $0.20 +TheLabman: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $1 from pot +*** SUMMARY *** +Total pot $1.05 | Rake $0.05 +Seat 1: s0rrow collected ($1) +Seat 3: X USN-USMC folded before the Draw (didn't bet) +Seat 4: tom1206 (button) folded before the Draw (didn't bet) +Seat 5: bakter9 (small blind) folded before the Draw +Seat 6: TheLabman (big blind) folded after the 3rd Draw + + + +PokerStars Game #35839669792: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:27:24 ET +Table 'Theodora VI' 6-max Seat #5 is the button +Seat 1: s0rrow ($4.27 in chips) +Seat 3: X USN-USMC ($3.79 in chips) +Seat 4: tom1206 ($3.02 in chips) +Seat 5: bakter9 ($3.71 in chips) +Seat 6: TheLabman ($5.44 in chips) +TheLabman: posts small blind $0.05 +s0rrow: posts big blind $0.10 +Mamega: sits out +*** DEALING HANDS *** +Dealt to s0rrow [3h 6d 9s 5s Kc] +X USN-USMC: calls $0.10 +tom1206: calls $0.10 +bakter9: folds +TheLabman: calls $0.05 +s0rrow: checks +*** FIRST DRAW *** +TheLabman: discards 1 card +s0rrow: discards 1 card [Kc] +Dealt to s0rrow [3h 6d 9s 5s] [Jh] +X USN-USMC: discards 2 cards +tom1206: discards 2 cards +TheLabman: checks +s0rrow: checks +X USN-USMC: bets $0.10 +tom1206: raises $0.10 to $0.20 +TheLabman: calls $0.20 +s0rrow: folds +X USN-USMC: calls $0.10 +*** SECOND DRAW *** +TheLabman: discards 1 card +X USN-USMC: discards 1 card +tom1206: stands pat +TheLabman: checks +X USN-USMC: bets $0.20 +tom1206: raises $0.20 to $0.40 +TheLabman: calls $0.40 +X USN-USMC: raises $0.20 to $0.60 +tom1206: calls $0.20 +TheLabman: calls $0.20 +*** THIRD DRAW *** +TheLabman: stands pat +X USN-USMC: stands pat +tom1206: stands pat +TheLabman: checks +X USN-USMC: bets $0.20 +tom1206: calls $0.20 +TheLabman: calls $0.20 +bakter9 leaves the table +*** SHOW DOWN *** +X USN-USMC: shows [3s 4s 7s 2d 6c] (Lo: 7,6,4,3,2) +tom1206: mucks hand +TheLabman: mucks hand +X USN-USMC collected $3.24 from pot +LumBita joins the table at seat #5 +*** SUMMARY *** +Total pot $3.40 | Rake $0.16 +Seat 1: s0rrow (big blind) folded after the 1st Draw +Seat 3: X USN-USMC showed [3s 4s 7s 2d 6c] and won ($3.24) with Lo: 7,6,4,3,2 +Seat 4: tom1206 mucked [8d 7c 4h 5h 3d] +Seat 5: bakter9 (button) folded before the Draw (didn't bet) +Seat 6: TheLabman (small blind) mucked [4d 6h 7h 2s 5c] + + + +PokerStars Game #35839735773: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:28:48 ET +Table 'Theodora VI' 6-max Seat #6 is the button +Seat 1: s0rrow ($4.17 in chips) +Seat 2: Mamega ($4 in chips) +Seat 3: X USN-USMC ($5.93 in chips) +Seat 4: tom1206 ($1.92 in chips) +Seat 5: LumBita ($1 in chips) +Seat 6: TheLabman ($4.34 in chips) +s0rrow: posts small blind $0.05 +Mamega: posts big blind $0.10 +LumBita: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [5c Kc Js Ts Jc] +X USN-USMC: calls $0.10 +tom1206: calls $0.10 +LumBita: checks +TheLabman: folds +s0rrow: folds +Mamega: checks +*** FIRST DRAW *** +Mamega: stands pat +X USN-USMC: discards 2 cards +tom1206: discards 3 cards +LumBita: discards 1 card +Mamega: checks +X USN-USMC: bets $0.10 +tom1206: calls $0.10 +LumBita: calls $0.10 +Mamega: folds +*** SECOND DRAW *** +X USN-USMC: discards 1 card +tom1206: discards 1 card +LumBita: stands pat +X USN-USMC: checks +tom1206: checks +LumBita: bets $0.20 +X USN-USMC: calls $0.20 +tom1206: calls $0.20 +*** THIRD DRAW *** +X USN-USMC: discards 1 card +tom1206: discards 1 card +LumBita: stands pat +X USN-USMC: checks +tom1206: checks +LumBita: checks +*** SHOW DOWN *** +X USN-USMC: shows [2h 4h 7d 5s 6c] (Lo: 7,6,5,4,2) +tom1206: mucks hand +LumBita: mucks hand +X USN-USMC collected $1.29 from pot +*** SUMMARY *** +Total pot $1.35 | Rake $0.06 +Seat 1: s0rrow (small blind) folded before the Draw +Seat 2: Mamega (big blind) folded after the 1st Draw +Seat 3: X USN-USMC showed [2h 4h 7d 5s 6c] and won ($1.29) with Lo: 7,6,5,4,2 +Seat 4: tom1206 mucked [7h 8c 3s 4d 5h] +Seat 5: LumBita mucked [4s 8s 3h 6h 2d] +Seat 6: TheLabman (button) folded before the Draw (didn't bet) + + + +PokerStars Game #35839797257: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:30:09 ET +Table 'Theodora VI' 6-max Seat #1 is the button +Seat 1: s0rrow ($4.12 in chips) +Seat 2: Mamega ($3.90 in chips) +Seat 3: X USN-USMC ($6.82 in chips) +Seat 4: tom1206 ($1.52 in chips) +Seat 5: LumBita ($0.60 in chips) +Seat 6: TheLabman ($4.34 in chips) +Mamega: posts small blind $0.05 +X USN-USMC: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [2c Ah 3h 8h 5s] +tom1206: calls $0.10 +LumBita: calls $0.10 +TheLabman: folds +s0rrow: raises $0.10 to $0.20 +Mamega: folds +X USN-USMC: folds +tom1206: calls $0.10 +LumBita: calls $0.10 +*** FIRST DRAW *** +tom1206: discards 2 cards +LumBita: discards 2 cards +s0rrow: discards 1 card [8h] +Dealt to s0rrow [2c Ah 3h 5s] [8d] +tom1206: checks +LumBita: checks +s0rrow: bets $0.10 +tom1206: calls $0.10 +LumBita: calls $0.10 +*** SECOND DRAW *** +tom1206: discards 2 cards +LumBita: stands pat +s0rrow: discards 1 card [8d] +Dealt to s0rrow [2c Ah 3h 5s] [2s] +tom1206: checks +LumBita: bets $0.20 +s0rrow: calls $0.20 +tom1206: calls $0.20 +*** THIRD DRAW *** +tom1206: discards 1 card +LumBita: stands pat +s0rrow: discards 1 card [2s] +Dealt to s0rrow [2c Ah 3h 5s] [Qd] +tom1206: checks +LumBita: bets $0.10 and is all-in +s0rrow: folds +tom1206: folds +Uncalled bet ($0.10) returned to LumBita +LumBita collected $1.57 from pot +LumBita: doesn't show hand +*** SUMMARY *** +Total pot $1.65 | Rake $0.08 +Seat 1: s0rrow (button) folded after the 3rd Draw +Seat 2: Mamega (small blind) folded before the Draw +Seat 3: X USN-USMC (big blind) folded before the Draw +Seat 4: tom1206 folded after the 3rd Draw +Seat 5: LumBita collected ($1.57) +Seat 6: TheLabman folded before the Draw (didn't bet) + + + +PokerStars Game #35839866916: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:31:36 ET +Table 'Theodora VI' 6-max Seat #2 is the button +Seat 1: s0rrow ($3.62 in chips) +Seat 2: Mamega ($3.85 in chips) +Seat 3: X USN-USMC ($6.72 in chips) +Seat 4: tom1206 ($1.02 in chips) +Seat 5: LumBita ($1.67 in chips) +Seat 6: TheLabman ($4.34 in chips) +X USN-USMC: posts small blind $0.05 +tom1206: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Jd 5c 2s 5h Qs] +LumBita: calls $0.10 +TheLabman: folds +s0rrow: folds +Mamega: folds +X USN-USMC: calls $0.05 +tom1206: checks +*** FIRST DRAW *** +X USN-USMC: discards 3 cards +tom1206: discards 4 cards +LumBita: discards 2 cards +X USN-USMC: checks +tom1206: checks +LumBita: checks +*** SECOND DRAW *** +X USN-USMC: discards 2 cards +tom1206: discards 3 cards +LumBita: discards 2 cards +X USN-USMC: checks +tom1206: checks +LumBita: checks +*** THIRD DRAW *** +X USN-USMC: discards 2 cards +tom1206: discards 2 cards +LumBita: discards 1 card +X USN-USMC: bets $0.20 +tom1206: calls $0.20 +LumBita: folds +*** SHOW DOWN *** +X USN-USMC: shows [4h 3h 2d 7h 6d] (Lo: 7,6,4,3,2) +tom1206: mucks hand +X USN-USMC collected $0.67 from pot +*** SUMMARY *** +Total pot $0.70 | Rake $0.03 +Seat 1: s0rrow folded before the Draw (didn't bet) +Seat 2: Mamega (button) folded before the Draw (didn't bet) +Seat 3: X USN-USMC (small blind) showed [4h 3h 2d 7h 6d] and won ($0.67) with Lo: 7,6,4,3,2 +Seat 4: tom1206 (big blind) mucked [7c 5d 9s Th 8d] +Seat 5: LumBita folded after the 3rd Draw +Seat 6: TheLabman folded before the Draw (didn't bet) + + + +PokerStars Game #35839926911: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:32:52 ET +Table 'Theodora VI' 6-max Seat #3 is the button +Seat 1: s0rrow ($3.62 in chips) +Seat 2: Mamega ($3.85 in chips) +Seat 3: X USN-USMC ($7.09 in chips) +Seat 4: tom1206 ($0.72 in chips) +Seat 5: LumBita ($1.57 in chips) +Seat 6: TheLabman ($4.34 in chips) +tom1206: posts small blind $0.05 +LumBita: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Qd 2d 5s Ah 8d] +TheLabman: folds +s0rrow: calls $0.10 +Mamega: folds +X USN-USMC: folds +tom1206: folds +LumBita: checks +*** FIRST DRAW *** +LumBita: discards 3 cards +s0rrow: discards 2 cards [Qd 8d] +Dealt to s0rrow [2d 5s Ah] [Jc 8h] +LumBita: checks +s0rrow: checks +*** SECOND DRAW *** +LumBita: discards 2 cards +s0rrow: discards 1 card [Jc] +Dealt to s0rrow [2d 5s Ah 8h] [9s] +LumBita: bets $0.20 +s0rrow: calls $0.20 +*** THIRD DRAW *** +LumBita: stands pat +s0rrow: stands pat on [2d 5s Ah 8h 9s] +LumBita: checks +s0rrow: checks +*** SHOW DOWN *** +LumBita: shows [7h 2s 5c 8c 6c] (Lo: 8,7,6,5,2) +s0rrow: mucks hand +LumBita collected $0.62 from pot +*** SUMMARY *** +Total pot $0.65 | Rake $0.03 +Seat 1: s0rrow mucked [9s 2d 5s Ah 8h] +Seat 2: Mamega folded before the Draw (didn't bet) +Seat 3: X USN-USMC (button) folded before the Draw (didn't bet) +Seat 4: tom1206 (small blind) folded before the Draw +Seat 5: LumBita (big blind) showed [7h 2s 5c 8c 6c] and won ($0.62) with Lo: 8,7,6,5,2 +Seat 6: TheLabman folded before the Draw (didn't bet) + + + +PokerStars Game #35839959625: Triple Draw 2-7 Lowball Limit ($0.10/$0.20 USD) - 2009/11/25 14:33:33 ET +Table 'Theodora VI' 6-max Seat #4 is the button +Seat 1: s0rrow ($3.32 in chips) +Seat 2: Mamega ($3.85 in chips) +Seat 3: X USN-USMC ($7.09 in chips) +Seat 4: tom1206 ($0.67 in chips) +Seat 5: LumBita ($1.89 in chips) +Seat 6: TheLabman ($4.34 in chips) +LumBita: posts small blind $0.05 +TheLabman: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Jd As 8h 3s 7c] +s0rrow: calls $0.10 +Mamega: folds +X USN-USMC: folds +tom1206: calls $0.10 +LumBita: calls $0.05 +TheLabman: checks +*** FIRST DRAW *** +LumBita: discards 2 cards +TheLabman: discards 1 card +s0rrow: discards 1 card [Jd] +Dealt to s0rrow [As 8h 3s 7c] [4h] +tom1206: discards 2 cards +LumBita: checks +TheLabman: bets $0.10 +s0rrow: calls $0.10 +tom1206: raises $0.10 to $0.20 +LumBita: calls $0.20 +TheLabman: calls $0.10 +s0rrow: calls $0.10 +*** SECOND DRAW *** +LumBita: discards 1 card +TheLabman: discards 1 card +s0rrow: discards 1 card [8h] +Dealt to s0rrow [As 3s 7c 4h] [8d] +tom1206: stands pat +LumBita: checks +TheLabman: checks +s0rrow: checks +tom1206: bets $0.20 +LumBita: calls $0.20 +TheLabman: calls $0.20 +s0rrow: calls $0.20 +*** THIRD DRAW *** +LumBita: discards 1 card +TheLabman: discards 1 card +s0rrow: stands pat on [As 3s 7c 4h 8d] +tom1206: stands pat +LumBita: checks +TheLabman: checks +s0rrow: checks +tom1206: bets $0.17 and is all-in +LumBita: calls $0.17 +TheLabman: folds +s0rrow: calls $0.17 +*** SHOW DOWN *** +tom1206: shows [5c 6c 4d 2h 8c] (Lo: 8,6,5,4,2) +LumBita: mucks hand +s0rrow: mucks hand +tom1206 collected $2.39 from pot +*** SUMMARY *** +Total pot $2.51 | Rake $0.12 +Seat 1: s0rrow mucked [4h As 8d 3s 7c] +Seat 2: Mamega folded before the Draw (didn't bet) +Seat 3: X USN-USMC folded before the Draw (didn't bet) +Seat 4: tom1206 (button) showed [5c 6c 4d 2h 8c] and won ($2.39) with Lo: 8,6,5,4,2 +Seat 5: LumBita (small blind) mucked [4c 3d 9c 7h 6h] +Seat 6: TheLabman (big blind) folded after the 3rd Draw + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-USD-0.10-0.20-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-USD-0.10-0.20-200911.txt new file mode 100644 index 00000000..2c6a26b1 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/5-Carddraw-USD-0.10-0.20-200911.txt @@ -0,0 +1,1096 @@ +PokerStars Game #35838989654: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:12:43 ET +Table 'Laodica IV' 6-max Seat #2 is the button +Seat 1: francois 712 ($1.53 in chips) +Seat 2: vatt110 ($2.41 in chips) +Seat 3: dantho ($1.76 in chips) +Seat 4: s0rrow ($4 in chips) +Seat 6: Postman15 ($1 in chips) +dantho: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Td Th 6h 4h 2s] +Postman15: folds +francois 712: folds +vatt110: raises $0.10 to $0.20 +dantho: folds +s0rrow: calls $0.10 +s0rrow: discards 1 card [2s] +Dealt to s0rrow [Td Th 6h 4h] [Ks] +vatt110: discards 3 cards +s0rrow: checks +vatt110: checks +*** SHOW DOWN *** +s0rrow: shows [Td Th 6h 4h Ks] (a pair of Tens) +vatt110: shows [Qd 5c Qs Ac 4d] (a pair of Queens) +vatt110 collected $0.43 from pot +*** SUMMARY *** +Total pot $0.45 | Rake $0.02 +Seat 1: francois 712 folded before the Draw (didn't bet) +Seat 2: vatt110 (button) showed [Qd 5c Qs Ac 4d] and won ($0.43) with a pair of Queens +Seat 3: dantho (small blind) folded before the Draw +Seat 4: s0rrow (big blind) showed [Td Th 6h 4h Ks] and lost with a pair of Tens +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839017616: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:13:19 ET +Table 'Laodica IV' 6-max Seat #3 is the button +Seat 1: francois 712 ($1.53 in chips) +Seat 2: vatt110 ($2.64 in chips) +Seat 3: dantho ($1.71 in chips) +Seat 4: s0rrow ($3.80 in chips) +Seat 6: Postman15 ($1 in chips) +s0rrow: posts small blind $0.05 +Postman15: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [4s 2d 8s 7c 5h] +francois 712: folds +vatt110: folds +dantho: raises $0.10 to $0.20 +s0rrow: folds +Postman15: folds +Uncalled bet ($0.10) returned to dantho +dantho collected $0.25 from pot +dantho: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: francois 712 folded before the Draw (didn't bet) +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho (button) collected ($0.25) +Seat 4: s0rrow (small blind) folded before the Draw +Seat 6: Postman15 (big blind) folded before the Draw + + + +PokerStars Game #35839033367: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:13:39 ET +Table 'Laodica IV' 6-max Seat #4 is the button +Seat 1: francois 712 ($1.53 in chips) +Seat 2: vatt110 ($2.64 in chips) +Seat 3: dantho ($1.86 in chips) +Seat 4: s0rrow ($3.75 in chips) +Seat 6: Postman15 ($0.90 in chips) +Postman15: posts small blind $0.05 +francois 712: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8h 7h Tc 4h Qd] +vatt110: folds +dantho: raises $0.10 to $0.20 +s0rrow: calls $0.20 +Postman15: folds +francois 712: folds +dantho: discards 1 card +s0rrow: discards 2 cards [Tc Qd] +Dealt to s0rrow [8h 7h 4h] [Kd 5s] +dantho: checks +s0rrow: bets $0.20 +dantho: calls $0.20 +*** SHOW DOWN *** +s0rrow: shows [8h 7h Kd 4h 5s] (high card King) +dantho: shows [Th Jc 8c Ts 8d] (two pair, Tens and Eights) +dantho collected $0.91 from pot +*** SUMMARY *** +Total pot $0.95 | Rake $0.04 +Seat 1: francois 712 (big blind) folded before the Draw +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho showed [Th Jc 8c Ts 8d] and won ($0.91) with two pair, Tens and Eights +Seat 4: s0rrow (button) showed [8h 7h Kd 4h 5s] and lost with high card King +Seat 6: Postman15 (small blind) folded before the Draw + + + +PokerStars Game #35839052257: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:14:04 ET +Table 'Laodica IV' 6-max Seat #6 is the button +Seat 1: francois 712 ($1.43 in chips) +Seat 2: vatt110 ($2.64 in chips) +Seat 3: dantho ($2.37 in chips) +Seat 4: s0rrow ($3.35 in chips) +Seat 6: Postman15 ($0.85 in chips) +francois 712: posts small blind $0.05 +vatt110: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [6d 8s 2c Td 5c] +dantho: folds +s0rrow: folds +Postman15: folds +francois 712: calls $0.05 +vatt110: checks +francois 712: discards 3 cards +vatt110: discards 3 cards +francois 712: checks +vatt110: checks +*** SHOW DOWN *** +francois 712: shows [Th Qc 7c 5h Ah] (high card Ace) +vatt110: mucks hand +francois 712 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0.01 +Seat 1: francois 712 (small blind) showed [Th Qc 7c 5h Ah] and won ($0.19) with high card Ace +Seat 2: vatt110 (big blind) mucked [4h Ks 3s Jc 7h] +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow folded before the Draw (didn't bet) +Seat 6: Postman15 (button) folded before the Draw (didn't bet) + + + +PokerStars Game #35839069182: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:14:25 ET +Table 'Laodica IV' 6-max Seat #1 is the button +Seat 1: francois 712 ($1.52 in chips) +Seat 2: vatt110 ($2.54 in chips) +Seat 3: dantho ($2.37 in chips) +Seat 4: s0rrow ($3.35 in chips) +Seat 6: Postman15 ($0.85 in chips) +vatt110: posts small blind $0.05 +dantho: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8d 8h 7h 2d 3h] +s0rrow: folds +Postman15: folds +francois 712: folds +vatt110: folds +Uncalled bet ($0.05) returned to dantho +dantho collected $0.10 from pot +dantho: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: francois 712 (button) folded before the Draw (didn't bet) +Seat 2: vatt110 (small blind) folded before the Draw +Seat 3: dantho (big blind) collected ($0.10) +Seat 4: s0rrow folded before the Draw (didn't bet) +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839082075: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:14:42 ET +Table 'Laodica IV' 6-max Seat #2 is the button +Seat 1: francois 712 ($1.52 in chips) +Seat 2: vatt110 ($2.49 in chips) +Seat 3: dantho ($2.42 in chips) +Seat 4: s0rrow ($3.35 in chips) +Seat 6: Postman15 ($0.85 in chips) +dantho: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Jc 9h Ks 7h 3h] +Postman15: calls $0.10 +francois 712: raises $0.10 to $0.20 +vatt110: calls $0.20 +dantho: folds +s0rrow: folds +Postman15: calls $0.10 +Postman15: discards 3 cards +francois 712: discards 1 card +vatt110: discards 1 card +Postman15: bets $0.20 +francois 712: calls $0.20 +vatt110: folds +*** SHOW DOWN *** +Postman15: shows [Ad Ac As 6c 9c] (three of a kind, Aces) +francois 712: mucks hand +Postman15 collected $1.10 from pot +*** SUMMARY *** +Total pot $1.15 | Rake $0.05 +Seat 1: francois 712 mucked [Qh Qc Js Kc Kh] +Seat 2: vatt110 (button) folded after the Draw +Seat 3: dantho (small blind) folded before the Draw +Seat 4: s0rrow (big blind) folded before the Draw +Seat 6: Postman15 showed [Ad Ac As 6c 9c] and won ($1.10) with three of a kind, Aces + + + +PokerStars Game #35839114737: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:15:24 ET +Table 'Laodica IV' 6-max Seat #3 is the button +Seat 1: francois 712 ($1.12 in chips) +Seat 2: vatt110 ($2.29 in chips) +Seat 3: dantho ($2.37 in chips) +Seat 4: s0rrow ($3.25 in chips) +Seat 6: Postman15 ($1.55 in chips) +s0rrow: posts small blind $0.05 +Postman15: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [4c Qh 4d 2h Kd] +francois 712: raises $0.10 to $0.20 +vatt110: folds +dantho: folds +s0rrow: folds +Postman15: calls $0.10 +Postman15: discards 1 card +francois 712: discards 3 cards +Postman15: checks +francois 712: bets $0.20 +Postman15: calls $0.20 +*** SHOW DOWN *** +francois 712: shows [7h Js Ks Kc 7c] (two pair, Kings and Sevens) +Postman15: shows [6c Ah 2d As 6s] (two pair, Aces and Sixes) +Postman15 collected $0.81 from pot +*** SUMMARY *** +Total pot $0.85 | Rake $0.04 +Seat 1: francois 712 showed [7h Js Ks Kc 7c] and lost with two pair, Kings and Sevens +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho (button) folded before the Draw (didn't bet) +Seat 4: s0rrow (small blind) folded before the Draw +Seat 6: Postman15 (big blind) showed [6c Ah 2d As 6s] and won ($0.81) with two pair, Aces and Sixes + + + +PokerStars Game #35839131252: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:15:46 ET +Table 'Laodica IV' 6-max Seat #4 is the button +Seat 1: francois 712 ($0.72 in chips) +Seat 2: vatt110 ($2.29 in chips) +Seat 3: dantho ($2.37 in chips) +Seat 4: s0rrow ($3.20 in chips) +Seat 6: Postman15 ($1.96 in chips) +Gemma702 was removed from the table for failing to post +Postman15: posts small blind $0.05 +francois 712: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8c 4h Ks Kd 7c] +vatt110: folds +dantho: folds +s0rrow: calls $0.10 +Postman15: calls $0.05 +francois 712: checks +Jana50 joins the table at seat #5 +Postman15: discards 3 cards +francois 712: discards 3 cards +s0rrow: discards 3 cards [8c 4h 7c] +Dealt to s0rrow [Ks Kd] [Qd 5d 2h] +Postman15: checks +francois 712: checks +s0rrow: bets $0.20 +Postman15: folds +francois 712: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.29 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0.01 +Seat 1: francois 712 (big blind) folded after the Draw +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow (button) collected ($0.29) +Seat 6: Postman15 (small blind) folded after the Draw + + + +PokerStars Game #35839155320: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:16:17 ET +Table 'Laodica IV' 6-max Seat #6 is the button +Seat 1: francois 712 ($0.62 in chips) +Seat 2: vatt110 ($2.29 in chips) +Seat 3: dantho ($2.37 in chips) +Seat 4: s0rrow ($3.39 in chips) +Seat 6: Postman15 ($1.86 in chips) +francois 712: posts small blind $0.05 +vatt110: posts big blind $0.10 +Jana50: sits out +*** DEALING HANDS *** +Dealt to s0rrow [9c 9d 4s 3d Jh] +dantho: folds +s0rrow: raises $0.10 to $0.20 +Postman15: folds +francois 712: folds +vatt110: folds +Uncalled bet ($0.10) returned to s0rrow +s0rrow collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: francois 712 (small blind) folded before the Draw +Seat 2: vatt110 (big blind) folded before the Draw +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow collected ($0.25) +Seat 6: Postman15 (button) folded before the Draw (didn't bet) + + + +PokerStars Game #35839165896: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:16:32 ET +Table 'Laodica IV' 6-max Seat #1 is the button +Seat 1: francois 712 ($0.57 in chips) +Seat 2: vatt110 ($2.19 in chips) +Seat 3: dantho ($2.37 in chips) +Seat 4: s0rrow ($3.54 in chips) +Seat 6: Postman15 ($1.86 in chips) +vatt110: posts small blind $0.05 +dantho: posts big blind $0.10 +Jana50: sits out +*** DEALING HANDS *** +Dealt to s0rrow [7s 6c Qh 6d 7h] +s0rrow: raises $0.10 to $0.20 +Postman15: folds +francois 712: folds +vatt110: folds +dantho: raises $0.10 to $0.30 +s0rrow: calls $0.10 +dantho: stands pat +s0rrow: discards 1 card [Qh] +Dealt to s0rrow [7s 6c 6d 7h] [8c] +dantho: bets $0.20 +s0rrow: calls $0.20 +*** SHOW DOWN *** +dantho: shows [3s Js 5s 6s 2s] (a flush, Jack high) +s0rrow: mucks hand +dantho collected $1 from pot +*** SUMMARY *** +Total pot $1.05 | Rake $0.05 +Seat 1: francois 712 (button) folded before the Draw (didn't bet) +Seat 2: vatt110 (small blind) folded before the Draw +Seat 3: dantho (big blind) showed [3s Js 5s 6s 2s] and won ($1) with a flush, Jack high +Seat 4: s0rrow mucked [7s 6c 8c 6d 7h] +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839203571: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:17:22 ET +Table 'Laodica IV' 6-max Seat #2 is the button +Seat 1: francois 712 ($0.57 in chips) +Seat 2: vatt110 ($2.14 in chips) +Seat 3: dantho ($2.87 in chips) +Seat 4: s0rrow ($3.04 in chips) +Seat 6: Postman15 ($1.86 in chips) +dantho: posts small blind $0.05 +s0rrow: posts big blind $0.10 +Jana50: sits out +*** DEALING HANDS *** +Dealt to s0rrow [3h 4s 7h 8c 6d] +Postman15: folds +francois 712: calls $0.10 +vatt110: calls $0.10 +dantho: folds +s0rrow: checks +s0rrow: discards 1 card [3h] +Dealt to s0rrow [4s 7h 8c 6d] [6s] +francois 712: discards 1 card +vatt110: discards 3 cards +s0rrow: checks +francois 712: checks +vatt110: checks +*** SHOW DOWN *** +s0rrow: shows [6s 4s 7h 8c 6d] (a pair of Sixes) +francois 712: mucks hand +vatt110: shows [3d Jh 8h Jc 2c] (a pair of Jacks) +vatt110 collected $0.34 from pot +*** SUMMARY *** +Total pot $0.35 | Rake $0.01 +Seat 1: francois 712 mucked [5s Js Ks Qc Ts] +Seat 2: vatt110 (button) showed [3d Jh 8h Jc 2c] and won ($0.34) with a pair of Jacks +Seat 3: dantho (small blind) folded before the Draw +Seat 4: s0rrow (big blind) showed [6s 4s 7h 8c 6d] and lost with a pair of Sixes +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839231732: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:17:57 ET +Table 'Laodica IV' 6-max Seat #3 is the button +Seat 1: francois 712 ($0.47 in chips) +Seat 2: vatt110 ($2.38 in chips) +Seat 3: dantho ($2.82 in chips) +Seat 4: s0rrow ($2.94 in chips) +Seat 5: Jana50 ($4 in chips) +Seat 6: Postman15 ($1.86 in chips) +s0rrow: posts small blind $0.05 +Jana50: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Ad 2c Ts 4s Tc] +Postman15: folds +francois 712: folds +vatt110: folds +dantho: folds +s0rrow: calls $0.05 +Jana50: checks +s0rrow: discards 2 cards [2c 4s] +Dealt to s0rrow [Ad Ts Tc] [Ac Jc] +Jana50: discards 1 card +s0rrow: bets $0.20 +Jana50: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.19 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0.01 +Seat 1: francois 712 folded before the Draw (didn't bet) +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho (button) folded before the Draw (didn't bet) +Seat 4: s0rrow (small blind) collected ($0.19) +Seat 5: Jana50 (big blind) folded after the Draw +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839248508: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:18:19 ET +Table 'Laodica IV' 6-max Seat #4 is the button +Seat 1: francois 712 ($0.47 in chips) +Seat 2: vatt110 ($2.38 in chips) +Seat 3: dantho ($2.82 in chips) +Seat 4: s0rrow ($3.03 in chips) +Seat 5: Jana50 ($3.90 in chips) +Seat 6: Postman15 ($1.86 in chips) +Jana50: posts small blind $0.05 +Postman15: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [6s Kc Qh Kh 5h] +francois 712: calls $0.10 +vatt110: folds +dantho: folds +s0rrow: calls $0.10 +Jana50: folds +Postman15: checks +Postman15: discards 3 cards +francois 712: discards 1 card +s0rrow: discards 3 cards [6s Qh 5h] +Dealt to s0rrow [Kc Kh] [Tc 7c 8h] +Postman15: checks +francois 712: checks +s0rrow: bets $0.20 +Postman15: calls $0.20 +francois 712: folds +*** SHOW DOWN *** +s0rrow: shows [Tc Kc 7c Kh 8h] (a pair of Kings) +Postman15: shows [Ad 8c Qs Kd Ac] (a pair of Aces) +Postman15 collected $0.72 from pot +*** SUMMARY *** +Total pot $0.75 | Rake $0.03 +Seat 1: francois 712 folded after the Draw +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow (button) showed [Tc Kc 7c Kh 8h] and lost with a pair of Kings +Seat 5: Jana50 (small blind) folded before the Draw +Seat 6: Postman15 (big blind) showed [Ad 8c Qs Kd Ac] and won ($0.72) with a pair of Aces + + + +PokerStars Game #35839278018: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:18:59 ET +Table 'Laodica IV' 6-max Seat #5 is the button +Seat 1: francois 712 ($0.37 in chips) +Seat 2: vatt110 ($2.38 in chips) +Seat 3: dantho ($2.82 in chips) +Seat 4: s0rrow ($2.73 in chips) +Seat 5: Jana50 ($3.85 in chips) +Seat 6: Postman15 ($2.28 in chips) +Postman15: posts small blind $0.05 +francois 712: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [2c 4h 9c Qs 3d] +vatt110: raises $0.10 to $0.20 +dantho: folds +s0rrow: folds +Jana50: folds +Postman15: folds +francois 712: calls $0.10 +francois 712: discards 1 card +vatt110: discards 3 cards +francois 712: bets $0.17 and is all-in +vatt110: calls $0.17 +*** SHOW DOWN *** +francois 712: shows [Qh Jh 9d 6c Tc] (high card Queen) +vatt110: shows [Ks 7h Ad Kd 8h] (a pair of Kings) +vatt110 collected $0.76 from pot +*** SUMMARY *** +Total pot $0.79 | Rake $0.03 +Seat 1: francois 712 (big blind) showed [Qh Jh 9d 6c Tc] and lost with high card Queen +Seat 2: vatt110 showed [Ks 7h Ad Kd 8h] and won ($0.76) with a pair of Kings +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow folded before the Draw (didn't bet) +Seat 5: Jana50 (button) folded before the Draw (didn't bet) +Seat 6: Postman15 (small blind) folded before the Draw + + + +PokerStars Game #35839303429: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:19:34 ET +Table 'Laodica IV' 6-max Seat #6 is the button +Seat 2: vatt110 ($2.77 in chips) +Seat 3: dantho ($2.82 in chips) +Seat 4: s0rrow ($2.73 in chips) +Seat 5: Jana50 ($3.85 in chips) +Seat 6: Postman15 ($2.23 in chips) +vatt110: posts small blind $0.05 +dantho: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Qd Ah Js 3s 5c] +s0rrow: folds +Jana50: calls $0.10 +francois 712 leaves the table +Postman15: calls $0.10 +vatt110: folds +dantho: checks +dantho: discards 1 card +Jana50: discards 1 card +Postman15: discards 3 cards +dantho: bets $0.20 +Jana50: calls $0.20 +Postman15: folds +*** SHOW DOWN *** +dantho: shows [Kh Jc Qs Td 9d] (a straight, Nine to King) +Jana50: mucks hand +dantho collected $0.72 from pot +*** SUMMARY *** +Total pot $0.75 | Rake $0.03 +Seat 2: vatt110 (small blind) folded before the Draw +Seat 3: dantho (big blind) showed [Kh Jc Qs Td 9d] and won ($0.72) with a straight, Nine to King +Seat 4: s0rrow folded before the Draw (didn't bet) +Seat 5: Jana50 mucked [3d 2h As 4h 2s] +Seat 6: Postman15 (button) folded after the Draw + + + +PokerStars Game #35839326969: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:20:10 ET +Table 'Laodica IV' 6-max Seat #2 is the button +Seat 2: vatt110 ($2.72 in chips) +Seat 3: dantho ($3.24 in chips) +Seat 4: s0rrow ($2.73 in chips) +Seat 5: Jana50 ($3.55 in chips) +Seat 6: Postman15 ($2.13 in chips) +dantho: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8s Td 5h 5d Jd] +Jana50: folds +Postman15: folds +vatt110: calls $0.10 +dantho: folds +s0rrow: checks +s0rrow: discards 3 cards [8s Td Jd] +Dealt to s0rrow [5h 5d] [3c 5c 9c] +vatt110: discards 3 cards +s0rrow: bets $0.20 +vatt110: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.24 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0.01 +Seat 2: vatt110 (button) folded after the Draw +Seat 3: dantho (small blind) folded before the Draw +Seat 4: s0rrow (big blind) collected ($0.24) +Seat 5: Jana50 folded before the Draw (didn't bet) +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839348926: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:20:38 ET +Table 'Laodica IV' 6-max Seat #3 is the button +Seat 2: vatt110 ($2.62 in chips) +Seat 3: dantho ($3.19 in chips) +Seat 4: s0rrow ($2.87 in chips) +Seat 5: Jana50 ($3.55 in chips) +Seat 6: Postman15 ($2.13 in chips) +s0rrow: posts small blind $0.05 +Jana50: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [4s 6c 2d 7c 8h] +Postman15: folds +vatt110: folds +dantho: raises $0.10 to $0.20 +s0rrow: folds +Jana50: folds +Uncalled bet ($0.10) returned to dantho +dantho collected $0.25 from pot +dantho: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho (button) collected ($0.25) +Seat 4: s0rrow (small blind) folded before the Draw +Seat 5: Jana50 (big blind) folded before the Draw +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839361919: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:20:55 ET +Table 'Laodica IV' 6-max Seat #4 is the button +Seat 2: vatt110 ($2.62 in chips) +Seat 3: dantho ($3.34 in chips) +Seat 4: s0rrow ($2.82 in chips) +Seat 5: Jana50 ($3.45 in chips) +Seat 6: Postman15 ($2.13 in chips) +Jana50: posts small blind $0.05 +Postman15: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Kh 4d Th 9d 2c] +vatt110: folds +dantho: folds +s0rrow: raises $0.10 to $0.20 +Jana50: folds +triggerbks joins the table at seat #1 +Postman15: folds +Uncalled bet ($0.10) returned to s0rrow +s0rrow collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow (button) collected ($0.25) +Seat 5: Jana50 (small blind) folded before the Draw +Seat 6: Postman15 (big blind) folded before the Draw + + + +PokerStars Game #35839378137: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:21:17 ET +Table 'Laodica IV' 6-max Seat #5 is the button +Seat 1: triggerbks ($4 in chips) +Seat 2: vatt110 ($2.62 in chips) +Seat 3: dantho ($3.34 in chips) +Seat 4: s0rrow ($2.97 in chips) +Seat 5: Jana50 ($3.40 in chips) +Seat 6: Postman15 ($2.03 in chips) +Postman15: posts small blind $0.05 +triggerbks: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Qh 7s 4c Jh Tc] +vatt110: folds +dantho: calls $0.10 +s0rrow: folds +Jana50: folds +Postman15: calls $0.05 +vatt110 leaves the table +triggerbks: raises $0.10 to $0.20 +dantho: calls $0.10 +Postman15: calls $0.10 +Postman15: discards 1 card +triggerbks: discards 1 card +dantho: discards 3 cards +Postman15: checks +triggerbks: bets $0.20 +dantho: folds +Postman15: calls $0.20 +*** SHOW DOWN *** +triggerbks: shows [9c 5c 5s 3d 9s] (two pair, Nines and Fives) +Postman15: shows [Th 2c Qs Qd Ts] (two pair, Queens and Tens) +Postman15 collected $0.96 from pot +*** SUMMARY *** +Total pot $1 | Rake $0.04 +Seat 1: triggerbks (big blind) showed [9c 5c 5s 3d 9s] and lost with two pair, Nines and Fives +Seat 2: vatt110 folded before the Draw (didn't bet) +Seat 3: dantho folded after the Draw +Seat 4: s0rrow folded before the Draw (didn't bet) +Seat 5: Jana50 (button) folded before the Draw (didn't bet) +Seat 6: Postman15 (small blind) showed [Th 2c Qs Qd Ts] and won ($0.96) with two pair, Queens and Tens + + + +PokerStars Game #35839401421: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:21:45 ET +Table 'Laodica IV' 6-max Seat #6 is the button +Seat 1: triggerbks ($3.60 in chips) +Seat 3: dantho ($3.14 in chips) +Seat 4: s0rrow ($2.97 in chips) +Seat 5: Jana50 ($3.40 in chips) +Seat 6: Postman15 ($2.59 in chips) +triggerbks: posts small blind $0.05 +dantho: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8h Tc 9d 9s Td] +s0rrow: raises $0.10 to $0.20 +Jana50: folds +Postman15: folds +triggerbks: folds +dantho: calls $0.10 +dantho: discards 1 card +s0rrow: discards 1 card [8h] +Dealt to s0rrow [Tc 9d 9s Td] [8c] +dantho: checks +s0rrow: bets $0.20 +dantho: raises $0.20 to $0.40 +s0rrow: calls $0.20 +*** SHOW DOWN *** +dantho: shows [5s 9h 7c 6c 8s] (a straight, Five to Nine) +s0rrow: mucks hand +dantho collected $1.19 from pot +*** SUMMARY *** +Total pot $1.25 | Rake $0.06 +Seat 1: triggerbks (small blind) folded before the Draw +Seat 3: dantho (big blind) showed [5s 9h 7c 6c 8s] and won ($1.19) with a straight, Five to Nine +Seat 4: s0rrow mucked [8c Tc 9d 9s Td] +Seat 5: Jana50 folded before the Draw (didn't bet) +Seat 6: Postman15 (button) folded before the Draw (didn't bet) + + + +PokerStars Game #35839419390: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:22:08 ET +Table 'Laodica IV' 6-max Seat #1 is the button +Seat 1: triggerbks ($3.55 in chips) +Seat 3: dantho ($3.73 in chips) +Seat 4: s0rrow ($2.37 in chips) +Seat 5: Jana50 ($3.40 in chips) +Seat 6: Postman15 ($2.59 in chips) +dantho: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [9c Tc 2c 7h Qs] +Jana50: folds +Jana50 leaves the table +Postman15: folds +triggerbks: folds +dantho: calls $0.05 +s0rrow: checks +dantho: discards 3 cards +trixr4dough joins the table at seat #2 +s0rrow: discards 2 cards [2c 7h] +Dealt to s0rrow [9c Tc Qs] [Jd 3c] +dantho: checks +s0rrow: checks +*** SHOW DOWN *** +dantho: shows [8s 4s 2d Ah 8d] (a pair of Eights) +s0rrow: mucks hand +dantho collected $0.19 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0.01 +Seat 1: triggerbks (button) folded before the Draw (didn't bet) +Seat 3: dantho (small blind) showed [8s 4s 2d Ah 8d] and won ($0.19) with a pair of Eights +Seat 4: s0rrow (big blind) mucked [9c Tc Jd 3c Qs] +Seat 5: Jana50 folded before the Draw (didn't bet) +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839446861: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:22:42 ET +Table 'Laodica IV' 6-max Seat #3 is the button +Seat 1: triggerbks ($3.55 in chips) +Seat 3: dantho ($3.82 in chips) +Seat 4: s0rrow ($2.27 in chips) +Seat 6: Postman15 ($2.59 in chips) +s0rrow: posts small blind $0.05 +Postman15: posts big blind $0.10 +trixr4dough: sits out +*** DEALING HANDS *** +Dealt to s0rrow [Td 7c 3s Tc 4d] +triggerbks: folds +dantho: folds +gigoulu joins the table at seat #5 +s0rrow: calls $0.05 +Postman15: checks +s0rrow: discards 3 cards [7c 3s 4d] +Dealt to s0rrow [Td Tc] [Js Qc 6c] +Postman15: discards 3 cards +s0rrow: checks +Postman15: checks +*** SHOW DOWN *** +s0rrow: shows [Td Js Qc Tc 6c] (a pair of Tens) +Postman15: shows [7s 9s Kc Qs Qh] (a pair of Queens) +Postman15 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0.01 +Seat 1: triggerbks folded before the Draw (didn't bet) +Seat 3: dantho (button) folded before the Draw (didn't bet) +Seat 4: s0rrow (small blind) showed [Td Js Qc Tc 6c] and lost with a pair of Tens +Seat 6: Postman15 (big blind) showed [7s 9s Kc Qs Qh] and won ($0.19) with a pair of Queens + + + +PokerStars Game #35839465638: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:23:06 ET +Table 'Laodica IV' 6-max Seat #4 is the button +Seat 1: triggerbks ($3.55 in chips) +Seat 3: dantho ($3.82 in chips) +Seat 4: s0rrow ($2.17 in chips) +Seat 6: Postman15 ($2.68 in chips) +gigoulu will be allowed to play after the button +Postman15: posts small blind $0.05 +triggerbks: posts big blind $0.10 +trixr4dough: sits out +*** DEALING HANDS *** +Dealt to s0rrow [Qh Js Tc Qd 9d] +dantho: calls $0.10 +s0rrow: calls $0.10 +Postman15: folds +triggerbks: checks +triggerbks: discards 4 cards +dantho: discards 3 cards +s0rrow: discards 3 cards [Js Tc 9d] +Dealt to s0rrow [Qh Qd] [Qc 5c 7d] +triggerbks: checks +dantho: checks +s0rrow: bets $0.20 +triggerbks: folds +dantho: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.34 from pot +*** SUMMARY *** +Total pot $0.35 | Rake $0.01 +Seat 1: triggerbks (big blind) folded after the Draw +Seat 3: dantho folded after the Draw +Seat 4: s0rrow (button) collected ($0.34) +Seat 6: Postman15 (small blind) folded before the Draw + + + +PokerStars Game #35839492817: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:23:39 ET +Table 'Laodica IV' 6-max Seat #6 is the button +Seat 1: triggerbks ($3.45 in chips) +Seat 2: trixr4dough ($3 in chips) +Seat 3: dantho ($3.72 in chips) +Seat 4: s0rrow ($2.41 in chips) +Seat 5: gigoulu ($5.50 in chips) +Seat 6: Postman15 ($2.63 in chips) +triggerbks: posts small blind $0.05 +trixr4dough: posts big blind $0.10 +gigoulu: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Kc 3d 2c Ks 4d] +dantho: folds +s0rrow: calls $0.10 +gigoulu: checks +Postman15 has timed out +Postman15: folds +Postman15 is sitting out +triggerbks: calls $0.05 +trixr4dough: raises $0.10 to $0.20 +Postman15 has returned +s0rrow: calls $0.10 +gigoulu: calls $0.10 +triggerbks: calls $0.10 +triggerbks: discards 2 cards +trixr4dough: stands pat +s0rrow: discards 3 cards [3d 2c 4d] +Dealt to s0rrow [Kc Ks] [7c 4c 3c] +gigoulu: discards 4 cards +triggerbks: checks +trixr4dough: bets $0.20 +s0rrow: folds +gigoulu: folds +triggerbks: folds +Uncalled bet ($0.20) returned to trixr4dough +trixr4dough collected $0.76 from pot +trixr4dough: doesn't show hand +*** SUMMARY *** +Total pot $0.80 | Rake $0.04 +Seat 1: triggerbks (small blind) folded after the Draw +Seat 2: trixr4dough (big blind) collected ($0.76) +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow folded after the Draw +Seat 5: gigoulu folded after the Draw +Seat 6: Postman15 (button) folded before the Draw (didn't bet) + + + +PokerStars Game #35839543544: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:24:43 ET +Table 'Laodica IV' 6-max Seat #1 is the button +Seat 1: triggerbks ($3.25 in chips) +Seat 2: trixr4dough ($3.56 in chips) +Seat 3: dantho ($3.72 in chips) +Seat 4: s0rrow ($2.21 in chips) +Seat 5: gigoulu ($5.30 in chips) +Seat 6: Postman15 ($2.63 in chips) +trixr4dough: posts small blind $0.05 +dantho: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [7h Js 9c Qc Ah] +s0rrow: folds +gigoulu: calls $0.10 +Postman15: folds +triggerbks: folds +trixr4dough: calls $0.05 +dantho: checks +trixr4dough: discards 2 cards +dantho: discards 3 cards +gigoulu: discards 1 card +trixr4dough: checks +dantho: checks +gigoulu: bets $0.20 +trixr4dough: folds +dantho: folds +Uncalled bet ($0.20) returned to gigoulu +gigoulu collected $0.29 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0.01 +Seat 1: triggerbks (button) folded before the Draw (didn't bet) +Seat 2: trixr4dough (small blind) folded after the Draw +Seat 3: dantho (big blind) folded after the Draw +Seat 4: s0rrow folded before the Draw (didn't bet) +Seat 5: gigoulu collected ($0.29) +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839570537: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:25:19 ET +Table 'Laodica IV' 6-max Seat #2 is the button +Seat 1: triggerbks ($3.25 in chips) +Seat 2: trixr4dough ($3.46 in chips) +Seat 3: dantho ($3.62 in chips) +Seat 4: s0rrow ($2.21 in chips) +Seat 5: gigoulu ($5.49 in chips) +Seat 6: Postman15 ($2.63 in chips) +dantho: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Th Ah Kd Td Js] +gigoulu: calls $0.10 +Postman15: folds +triggerbks: calls $0.10 +trixr4dough: calls $0.10 +dantho: calls $0.05 +s0rrow: checks +dantho: discards 1 card +s0rrow: discards 2 cards [Kd Js] +Dealt to s0rrow [Th Ah Td] [2c 6c] +gigoulu: discards 3 cards +triggerbks: discards 3 cards +trixr4dough: discards 3 cards +dantho: checks +s0rrow: checks +gigoulu: bets $0.20 +triggerbks: folds +trixr4dough: folds +dantho: folds +s0rrow: folds +Uncalled bet ($0.20) returned to gigoulu +gigoulu collected $0.48 from pot +*** SUMMARY *** +Total pot $0.50 | Rake $0.02 +Seat 1: triggerbks folded after the Draw +Seat 2: trixr4dough (button) folded after the Draw +Seat 3: dantho (small blind) folded after the Draw +Seat 4: s0rrow (big blind) folded after the Draw +Seat 5: gigoulu collected ($0.48) +Seat 6: Postman15 folded before the Draw (didn't bet) + + + +PokerStars Game #35839605634: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:26:03 ET +Table 'Laodica IV' 6-max Seat #3 is the button +Seat 1: triggerbks ($3.15 in chips) +Seat 2: trixr4dough ($3.36 in chips) +Seat 3: dantho ($3.52 in chips) +Seat 4: s0rrow ($2.11 in chips) +Seat 5: gigoulu ($5.87 in chips) +Seat 6: Postman15 ($2.63 in chips) +s0rrow: posts small blind $0.05 +gigoulu: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8c 4h Td 9s 8s] +Postman15: calls $0.10 +triggerbks: folds +trixr4dough: calls $0.10 +triggerbks leaves the table +dantho: calls $0.10 +s0rrow: folds +gigoulu: checks +gigoulu: discards 1 card +Postman15: discards 3 cards +trixr4dough: discards 3 cards +dantho: discards 1 card +gigoulu: bets $0.20 +Postman15: calls $0.20 +trixr4dough: folds +dantho: folds +*** SHOW DOWN *** +gigoulu: shows [Th Kd 7c Tc 7s] (two pair, Tens and Sevens) +Postman15: shows [Qh 6d 4d 6s Qd] (two pair, Queens and Sixes) +Postman15 collected $0.81 from pot +*** SUMMARY *** +Total pot $0.85 | Rake $0.04 +Seat 1: triggerbks folded before the Draw (didn't bet) +Seat 2: trixr4dough folded after the Draw +Seat 3: dantho (button) folded after the Draw +Seat 4: s0rrow (small blind) folded before the Draw +Seat 5: gigoulu (big blind) showed [Th Kd 7c Tc 7s] and lost with two pair, Tens and Sevens +Seat 6: Postman15 showed [Qh 6d 4d 6s Qd] and won ($0.81) with two pair, Queens and Sixes + + + +PokerStars Game #35839634910: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:26:40 ET +Table 'Laodica IV' 6-max Seat #4 is the button +Seat 2: trixr4dough ($3.26 in chips) +Seat 3: dantho ($3.42 in chips) +Seat 4: s0rrow ($2.06 in chips) +Seat 5: gigoulu ($5.57 in chips) +Seat 6: Postman15 ($3.14 in chips) +gigoulu: posts small blind $0.05 +Postman15: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8d 3d Kd 2h Js] +trixr4dough: raises $0.10 to $0.20 +dantho: folds +s0rrow: folds +gigoulu: calls $0.15 +Postman15: folds +gigoulu: discards 3 cards +trixr4dough: discards 3 cards +gigoulu: checks +trixr4dough: bets $0.20 +gigoulu: calls $0.20 +*** SHOW DOWN *** +trixr4dough: shows [Jd Ks Jc Kc Kh] (a full house, Kings full of Jacks) +gigoulu: mucks hand +trixr4dough collected $0.86 from pot +*** SUMMARY *** +Total pot $0.90 | Rake $0.04 +Seat 2: trixr4dough showed [Jd Ks Jc Kc Kh] and won ($0.86) with a full house, Kings full of Jacks +Seat 3: dantho folded before the Draw (didn't bet) +Seat 4: s0rrow (button) folded before the Draw (didn't bet) +Seat 5: gigoulu (small blind) mucked [Qc 5d Qs 8c Th] +Seat 6: Postman15 (big blind) folded before the Draw + + + +PokerStars Game #35839661301: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:27:13 ET +Table 'Laodica IV' 6-max Seat #5 is the button +Seat 2: trixr4dough ($3.72 in chips) +Seat 3: dantho ($3.42 in chips) +Seat 4: s0rrow ($2.06 in chips) +Seat 5: gigoulu ($5.17 in chips) +Seat 6: Postman15 ($3.04 in chips) +Postman15: posts small blind $0.05 +trixr4dough: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [Th 5d Js Jd Kd] +dantho: calls $0.10 +s0rrow: raises $0.10 to $0.20 +gigoulu: folds +Postman15: calls $0.15 +trixr4dough: calls $0.10 +dantho: calls $0.10 +Postman15: discards 1 card +trixr4dough: discards 1 card +dantho: discards 3 cards +s0rrow: discards 2 cards [Th 5d] +Dealt to s0rrow [Js Jd Kd] [Ac 3h] +Postman15: checks +trixr4dough: checks +dantho: checks +s0rrow: checks +*** SHOW DOWN *** +Postman15: shows [8d 8s 7c 8h Ah] (three of a kind, Eights) +trixr4dough: mucks hand +dantho: mucks hand +s0rrow: mucks hand +Postman15 collected $0.76 from pot +*** SUMMARY *** +Total pot $0.80 | Rake $0.04 +Seat 2: trixr4dough (big blind) mucked [6s 7h 4d 3c 9c] +Seat 3: dantho mucked [Qh Qd 4s 6h Tc] +Seat 4: s0rrow mucked [Ac 3h Js Jd Kd] +Seat 5: gigoulu (button) folded before the Draw (didn't bet) +Seat 6: Postman15 (small blind) showed [8d 8s 7c 8h Ah] and won ($0.76) with three of a kind, Eights + + + +PokerStars Game #35839693667: 5 Card Draw Limit ($0.10/$0.20 USD) - 2009/11/25 14:27:55 ET +Table 'Laodica IV' 6-max Seat #6 is the button +Seat 2: trixr4dough ($3.52 in chips) +Seat 4: s0rrow ($1.86 in chips) +Seat 5: gigoulu ($5.17 in chips) +Seat 6: Postman15 ($3.60 in chips) +trixr4dough: posts small blind $0.05 +dantho: is sitting out +s0rrow: posts big blind $0.10 +*** DEALING HANDS *** +Dealt to s0rrow [8s 2h Jh 4d Ac] +dantho leaves the table +gigoulu: calls $0.10 +Postman15: folds +trixr4dough: calls $0.05 +s0rrow: checks +trixr4dough: discards 4 cards +s0rrow: discards 4 cards [8s 2h Jh 4d] +Dealt to s0rrow [Ac] [6c Qh 8h 9d] +gigoulu: discards 1 card +trixr4dough: checks +s0rrow: checks +gigoulu: bets $0.20 +KAAGEE joins the table at seat #1 +trixr4dough: folds +s0rrow: folds +Uncalled bet ($0.20) returned to gigoulu +gigoulu collected $0.29 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0.01 +Seat 2: trixr4dough (small blind) folded after the Draw +Seat 4: s0rrow (big blind) folded after the Draw +Seat 5: gigoulu collected ($0.29) +Seat 6: Postman15 (button) folded before the Draw (didn't bet) + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-EUR-0.05-0.10-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-EUR-0.05-0.10-200911.txt new file mode 100644 index 00000000..736370bb --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-EUR-0.05-0.10-200911.txt @@ -0,0 +1,2530 @@ +PokerStars Game #35602019775: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:12:10 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 1: rico4429 (€2.37 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€4.60 in chips) +Seat 4: s0rrow (€2 in chips) +Seat 5: Poptart74 (€2.34 in chips) +Seat 6: PokerMill100 (€7.60 in chips) +joycer01: posts small blind €0.05 +s0rrow: posts big blind €0.10 +rico4429: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Js 3d] +Poptart74: folds +PokerMill100: calls €0.10 +rico4429: checks +HomerrrJay: folds +joycer01: calls €0.05 +s0rrow: checks +*** FLOP *** [8h Jh Kh] +joycer01: checks +s0rrow: checks +PokerMill100: checks +rico4429: checks +*** TURN *** [8h Jh Kh] [Ah] +joycer01: checks +s0rrow: checks +PokerMill100: checks +rico4429: bets €0.50 +joycer01: folds +s0rrow: folds +PokerMill100: folds +Uncalled bet (€0.50) returned to rico4429 +rico4429 collected €0.38 from pot +rico4429: doesn't show hand +*** SUMMARY *** +Total pot €0.40 | Rake €0.02 +Board [8h Jh Kh Ah] +Seat 1: rico4429 collected (€0.38) +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: joycer01 (small blind) folded on the Turn +Seat 4: s0rrow (big blind) folded on the Turn +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 folded on the Turn + + + +PokerStars Game #35602035916: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:12:55 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 1: rico4429 (€2.65 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€4.50 in chips) +Seat 4: s0rrow (€1.90 in chips) +Seat 5: Poptart74 (€2.34 in chips) +Seat 6: PokerMill100 (€7.50 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Th Td] +PokerMill100: raises €0.20 to €0.30 +rico4429: folds +HomerrrJay: folds +joycer01: calls €0.30 +s0rrow: raises €1.60 to €1.90 and is all-in +Poptart74: folds +PokerMill100: folds +joycer01: folds +Uncalled bet (€1.60) returned to s0rrow +s0rrow collected €1 from pot +*** SUMMARY *** +Total pot €1 | Rake €0 +Seat 1: rico4429 folded before Flop (didn't bet) +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: joycer01 (button) folded before Flop +Seat 4: s0rrow (small blind) collected (€1) +Seat 5: Poptart74 (big blind) folded before Flop +Seat 6: PokerMill100 folded before Flop + + + +PokerStars Game #35602045689: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:13:22 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 1: rico4429 (€2.65 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€4.20 in chips) +Seat 4: s0rrow (€2.60 in chips) +Seat 5: Poptart74 (€2.24 in chips) +Seat 6: PokerMill100 (€7.20 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qh Js] +rico4429: calls €0.10 +HomerrrJay: folds +joycer01: folds +s0rrow: calls €0.10 +Poptart74: calls €0.05 +PokerMill100: checks +*** FLOP *** [7s 3c 7h] +Poptart74: checks +PokerMill100: checks +rico4429: checks +s0rrow: checks +*** TURN *** [7s 3c 7h] [2c] +Poptart74: checks +PokerMill100: checks +rico4429: bets €0.40 +s0rrow: folds +Poptart74: folds +PokerMill100: folds +Uncalled bet (€0.40) returned to rico4429 +rico4429 collected €0.38 from pot +rico4429: doesn't show hand +*** SUMMARY *** +Total pot €0.40 | Rake €0.02 +Board [7s 3c 7h 2c] +Seat 1: rico4429 collected (€0.38) +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: joycer01 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded on the Turn +Seat 5: Poptart74 (small blind) folded on the Turn +Seat 6: PokerMill100 (big blind) folded on the Turn + + + +PokerStars Game #35602058746: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:13:58 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 1: rico4429 (€2.93 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€4.20 in chips) +Seat 4: s0rrow (€2.50 in chips) +Seat 5: Poptart74 (€2.14 in chips) +Seat 6: PokerMill100 (€7.10 in chips) +PokerMill100: posts small blind €0.05 +rico4429: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kh 8h] +HomerrrJay: folds +joycer01: calls €0.10 +s0rrow: raises €0.30 to €0.40 +Poptart74: calls €0.40 +PokerMill100: folds +rico4429: calls €0.30 +joycer01: calls €0.30 +*** FLOP *** [2d Ad 6d] +rico4429: checks +joycer01: bets €0.60 +s0rrow: folds +Poptart74: calls €0.60 +rico4429: calls €0.60 +*** TURN *** [2d Ad 6d] [9s] +rico4429: checks +joycer01: bets €3.20 and is all-in +Poptart74: calls €1.14 and is all-in +rico4429: folds +Uncalled bet (€2.06) returned to joycer01 +*** RIVER *** [2d Ad 6d 9s] [Th] +*** SHOW DOWN *** +joycer01: shows [Qd 8c] (high card Ace) +Poptart74: shows [6s As] (two pair, Aces and Sixes) +Poptart74 collected €5.46 from pot +*** SUMMARY *** +Total pot €5.73 | Rake €0.27 +Board [2d Ad 6d 9s Th] +Seat 1: rico4429 (big blind) folded on the Turn +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: joycer01 showed [Qd 8c] and lost with high card Ace +Seat 4: s0rrow folded on the Flop +Seat 5: Poptart74 (button) showed [6s As] and won (€5.46) with two pair, Aces and Sixes +Seat 6: PokerMill100 (small blind) folded before Flop + + + +PokerStars Game #35602079546: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:14:56 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 1: rico4429 (€1.93 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.06 in chips) +Seat 4: s0rrow (€2.10 in chips) +Seat 5: Poptart74 (€5.46 in chips) +Seat 6: PokerMill100 (€7.05 in chips) +rico4429: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5s 2h] +joycer01: folds +s0rrow: folds +Poptart74: calls €0.10 +PokerMill100: calls €0.10 +rico4429: calls €0.05 +HomerrrJay: checks +*** FLOP *** [Jc 9s Qd] +rico4429: checks +HomerrrJay: checks +Poptart74: bets €0.20 +PokerMill100: raises €0.30 to €0.50 +rico4429: folds +HomerrrJay: folds +Poptart74: calls €0.30 +*** TURN *** [Jc 9s Qd] [6c] +Poptart74: checks +PokerMill100: bets €0.70 +Poptart74: calls €0.70 +*** RIVER *** [Jc 9s Qd 6c] [4h] +Poptart74: checks +PokerMill100: bets €1.20 +Poptart74: calls €1.20 +*** SHOW DOWN *** +PokerMill100: shows [Td 8s] (a straight, Eight to Queen) +Poptart74: mucks hand +PokerMill100 collected €4.95 from pot +*** SUMMARY *** +Total pot €5.20 | Rake €0.25 +Board [Jc 9s Qd 6c 4h] +Seat 1: rico4429 (small blind) folded on the Flop +Seat 2: HomerrrJay (big blind) folded on the Flop +Seat 3: joycer01 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 mucked [9c Qh] +Seat 6: PokerMill100 (button) showed [Td 8s] and won (€4.95) with a straight, Eight to Queen + + + +PokerStars Game #35602095789: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:15:42 ET +Table 'Lampland' 6-max Seat #1 is the button +Seat 1: rico4429 (€1.83 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.06 in chips) +Seat 4: s0rrow (€2.10 in chips) +Seat 5: Poptart74 (€2.96 in chips) +Seat 6: PokerMill100 (€9.50 in chips) +HomerrrJay: posts small blind €0.05 +joycer01: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [2c Jc] +s0rrow: folds +Poptart74: calls €0.10 +PokerMill100: raises €0.30 to €0.40 +rico4429: folds +HomerrrJay: folds +joycer01: folds +Poptart74: calls €0.30 +*** FLOP *** [Kc 9s Qs] +Poptart74: checks +PokerMill100: checks +*** TURN *** [Kc 9s Qs] [Ts] +Poptart74: checks +PokerMill100: bets €0.50 +Poptart74: folds +Uncalled bet (€0.50) returned to PokerMill100 +PokerMill100 collected €0.91 from pot +*** SUMMARY *** +Total pot €0.95 | Rake €0.04 +Board [Kc 9s Qs Ts] +Seat 1: rico4429 (button) folded before Flop (didn't bet) +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: joycer01 (big blind) folded before Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 folded on the Turn +Seat 6: PokerMill100 collected (€0.91) + + + +PokerStars Game #35602107646: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:16:15 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 1: rico4429 (€1.83 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€1.96 in chips) +Seat 4: s0rrow (€2.10 in chips) +Seat 5: Poptart74 (€2.56 in chips) +Seat 6: PokerMill100 (€10.01 in chips) +joycer01: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3c 6s] +Poptart74: folds +PokerMill100: calls €0.10 +rico4429: calls €0.10 +HomerrrJay: folds +joycer01: calls €0.05 +s0rrow: checks +*** FLOP *** [Kd Qh 6c] +joycer01: checks +s0rrow: checks +PokerMill100: checks +rico4429: bets €0.60 +joycer01: folds +s0rrow: folds +PokerMill100: folds +Uncalled bet (€0.60) returned to rico4429 +rico4429 collected €0.38 from pot +*** SUMMARY *** +Total pot €0.40 | Rake €0.02 +Board [Kd Qh 6c] +Seat 1: rico4429 collected (€0.38) +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: joycer01 (small blind) folded on the Flop +Seat 4: s0rrow (big blind) folded on the Flop +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 folded on the Flop + + + +PokerStars Game #35602118812: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:16:47 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 1: rico4429 (€2.11 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€1.86 in chips) +Seat 4: s0rrow (€2 in chips) +Seat 5: Poptart74 (€2.56 in chips) +Seat 6: PokerMill100 (€9.91 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [2d Ts] +PokerMill100: folds +rico4429: calls €0.10 +HomerrrJay: folds +joycer01: raises €0.30 to €0.40 +s0rrow: folds +Poptart74: folds +rico4429: calls €0.30 +*** FLOP *** [Jc 8d Ah] +rico4429: checks +joycer01: bets €0.60 +rico4429: folds +Uncalled bet (€0.60) returned to joycer01 +joycer01 collected €0.91 from pot +*** SUMMARY *** +Total pot €0.95 | Rake €0.04 +Board [Jc 8d Ah] +Seat 1: rico4429 folded on the Flop +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: joycer01 (button) collected (€0.91) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: Poptart74 (big blind) folded before Flop +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602127914: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:17:12 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 1: rico4429 (€1.71 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.37 in chips) +Seat 4: s0rrow (€1.95 in chips) +Seat 5: Poptart74 (€2.46 in chips) +Seat 6: PokerMill100 (€9.91 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [2c 8h] +rico4429: raises €0.10 to €0.20 +HomerrrJay: folds +joycer01: folds +s0rrow: folds +Poptart74: calls €0.15 +PokerMill100: calls €0.10 +*** FLOP *** [7c 3c 2d] +Poptart74: bets €0.20 +PokerMill100: folds +rico4429: raises €1.31 to €1.51 and is all-in +Poptart74: calls €1.31 +*** TURN *** [7c 3c 2d] [7s] +*** RIVER *** [7c 3c 2d 7s] [5h] +*** SHOW DOWN *** +Poptart74: shows [Th Td] (two pair, Tens and Sevens) +rico4429: shows [Ad Js] (a pair of Sevens) +Poptart74 collected €3.45 from pot +*** SUMMARY *** +Total pot €3.62 | Rake €0.17 +Board [7c 3c 2d 7s 5h] +Seat 1: rico4429 showed [Ad Js] and lost with a pair of Sevens +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: joycer01 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Poptart74 (small blind) showed [Th Td] and won (€3.45) with two pair, Tens and Sevens +Seat 6: PokerMill100 (big blind) folded on the Flop + + + +PokerStars Game #35602140774: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:17:48 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.37 in chips) +Seat 4: s0rrow (€1.95 in chips) +Seat 5: Poptart74 (€4.20 in chips) +Seat 6: PokerMill100 (€9.71 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7h Jh] +joycer01: raises €0.30 to €0.40 +s0rrow: folds +rico4429 leaves the table +Poptart74: folds +PokerMill100: folds +HomerrrJay: folds +Uncalled bet (€0.30) returned to joycer01 +joycer01 collected €0.25 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0 +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: joycer01 collected (€0.25) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) folded before Flop + + + +PokerStars Game #35602147145: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:18:07 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.52 in chips) +Seat 4: s0rrow (€1.95 in chips) +Seat 5: Poptart74 (€4.20 in chips) +Seat 6: PokerMill100 (€9.66 in chips) +HomerrrJay: posts small blind €0.05 +joycer01: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9h 2d] +Oswood joins the table at seat #1 +s0rrow: folds +Poptart74: calls €0.10 +PokerMill100: folds +HomerrrJay: folds +joycer01: checks +*** FLOP *** [6h 5c 4s] +joycer01: bets €0.30 +Poptart74: folds +Uncalled bet (€0.30) returned to joycer01 +joycer01 collected €0.24 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0.01 +Board [6h 5c 4s] +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: joycer01 (big blind) collected (€0.24) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 folded on the Flop +Seat 6: PokerMill100 (button) folded before Flop (didn't bet) + + + +PokerStars Game #35602157098: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:18:35 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 1: Oswood (€10 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.66 in chips) +Seat 4: s0rrow (€1.95 in chips) +Seat 5: Poptart74 (€4.10 in chips) +Seat 6: PokerMill100 (€9.66 in chips) +joycer01: posts small blind €0.05 +s0rrow: posts big blind €0.10 +Oswood: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [2h 8d] +Poptart74: calls €0.10 +PokerMill100: raises €0.20 to €0.30 +Oswood: calls €0.20 +HomerrrJay: folds +joycer01: folds +s0rrow: folds +Poptart74: calls €0.20 +*** FLOP *** [4h Ac 7h] +Poptart74: checks +PokerMill100: bets €0.50 +Oswood: folds +Poptart74: folds +Uncalled bet (€0.50) returned to PokerMill100 +PokerMill100 collected €1 from pot +*** SUMMARY *** +Total pot €1.05 | Rake €0.05 +Board [4h Ac 7h] +Seat 1: Oswood folded on the Flop +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: joycer01 (small blind) folded before Flop +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: Poptart74 folded on the Flop +Seat 6: PokerMill100 collected (€1) + + + +PokerStars Game #35602167705: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:19:05 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 1: Oswood (€9.70 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.61 in chips) +Seat 4: s0rrow (€1.85 in chips) +Seat 5: Poptart74 (€3.80 in chips) +Seat 6: PokerMill100 (€10.36 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 9d] +PokerMill100: folds +Oswood: folds +HomerrrJay: folds +joycer01: folds +s0rrow: raises €0.20 to €0.30 +Poptart74: calls €0.20 +*** FLOP *** [6c Ks Td] +s0rrow: checks +Poptart74: checks +*** TURN *** [6c Ks Td] [Qs] +s0rrow: bets €0.50 +Poptart74: folds +Uncalled bet (€0.50) returned to s0rrow +s0rrow collected €0.57 from pot +*** SUMMARY *** +Total pot €0.60 | Rake €0.03 +Board [6c Ks Td Qs] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: joycer01 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) collected (€0.57) +Seat 5: Poptart74 (big blind) folded on the Turn +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602182667: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:19:47 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 1: Oswood (€9.70 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: joycer01 (€2.61 in chips) +Seat 4: s0rrow (€2.12 in chips) +Seat 5: Poptart74 (€3.50 in chips) +Seat 6: PokerMill100 (€10.36 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ad 4c] +Oswood: folds +HomerrrJay: raises €0.20 to €0.30 +joycer01: calls €0.30 +s0rrow: folds +Poptart74: folds +PokerMill100: folds +*** FLOP *** [Tc 6d 4d] +HomerrrJay: bets €0.40 +joycer01: folds +Uncalled bet (€0.40) returned to HomerrrJay +HomerrrJay collected €0.72 from pot +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €0.75 | Rake €0.03 +Board [Tc 6d 4d] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay collected (€0.72) +Seat 3: joycer01 folded on the Flop +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Poptart74 (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) folded before Flop + + + +PokerStars Game #35602198225: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:20:27 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 1: Oswood (€9.70 in chips) +Seat 2: HomerrrJay (€10.42 in chips) +Seat 3: joycer01 (€2.31 in chips) +Seat 4: s0rrow (€2.12 in chips) +Seat 5: Poptart74 (€3.45 in chips) +Seat 6: PokerMill100 (€10.26 in chips) +PokerMill100: posts small blind €0.05 +Oswood: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Td 7d] +HomerrrJay: folds +joycer01: raises €0.20 to €0.30 +s0rrow: folds +Poptart74: folds +PokerMill100: folds +Oswood: folds +Uncalled bet (€0.20) returned to joycer01 +joycer01 collected €0.25 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0 +Seat 1: Oswood (big blind) folded before Flop +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: joycer01 collected (€0.25) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) folded before Flop + + + +PokerStars Game #35602204974: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:20:46 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 1: Oswood (€9.60 in chips) +Seat 2: HomerrrJay (€10.42 in chips) +Seat 3: joycer01 (€2.46 in chips) +Seat 4: s0rrow (€2.12 in chips) +Seat 5: Poptart74 (€3.45 in chips) +Seat 6: PokerMill100 (€10.21 in chips) +Oswood: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6c 4s] +joycer01: raises €0.30 to €0.40 +s0rrow: folds +Poptart74: folds +PokerMill100: calls €0.40 +Oswood: calls €0.35 +HomerrrJay: folds +*** FLOP *** [3s 6h Qs] +Oswood: checks +joycer01: bets €0.60 +PokerMill100: calls €0.60 +Oswood: raises €0.80 to €1.40 +joycer01: raises €0.66 to €2.06 and is all-in +PokerMill100: folds +Oswood: calls €0.66 +*** TURN *** [3s 6h Qs] [2h] +*** RIVER *** [3s 6h Qs 2h] [5h] +*** SHOW DOWN *** +Oswood: shows [Qh Ah] (a flush, Ace high) +joycer01: shows [Ks Qd] (a pair of Queens) +Oswood collected €5.73 from pot +*** SUMMARY *** +Total pot €6.02 | Rake €0.29 +Board [3s 6h Qs 2h 5h] +Seat 1: Oswood (small blind) showed [Qh Ah] and won (€5.73) with a flush, Ace high +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: joycer01 showed [Ks Qd] and lost with a pair of Queens +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 (button) folded on the Flop + + + +PokerStars Game #35602222776: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:21:34 ET +Table 'Lampland' 6-max Seat #1 is the button +Seat 1: Oswood (€12.87 in chips) +Seat 2: HomerrrJay (€10.32 in chips) +Seat 4: s0rrow (€2.12 in chips) +Seat 5: Poptart74 (€3.45 in chips) +Seat 6: PokerMill100 (€9.21 in chips) +HomerrrJay: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ad 4h] +Poptart74: folds +joycer01 has returned +PokerMill100: folds +Oswood: folds +HomerrrJay: raises €0.20 to €0.30 +s0rrow: folds +Uncalled bet (€0.20) returned to HomerrrJay +HomerrrJay collected €0.20 from pot +joycer01 leaves the table +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €0.20 | Rake €0 +Seat 1: Oswood (button) folded before Flop (didn't bet) +Seat 2: HomerrrJay (small blind) collected (€0.20) +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602228303: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:21:49 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 1: Oswood (€12.87 in chips) +Seat 2: HomerrrJay (€10.42 in chips) +Seat 4: s0rrow (€2.02 in chips) +Seat 5: Poptart74 (€3.45 in chips) +Seat 6: PokerMill100 (€9.21 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5s Ad] +PokerMill100: folds +Oswood: folds +HomerrrJay: folds +s0rrow: raises €0.20 to €0.30 +Poptart74: calls €0.20 +*** FLOP *** [6c 3d 5h] +s0rrow: bets €0.40 +Poptart74: calls €0.40 +*** TURN *** [6c 3d 5h] [Qc] +s0rrow: checks +Poptart74: bets €0.60 +s0rrow: calls €0.60 +*** RIVER *** [6c 3d 5h Qc] [6h] +andi661 joins the table at seat #3 +s0rrow: bets €0.72 and is all-in +Poptart74: folds +Uncalled bet (€0.72) returned to s0rrow +s0rrow collected €2.48 from pot +*** SUMMARY *** +Total pot €2.60 | Rake €0.12 +Board [6c 3d 5h Qc 6h] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) collected (€2.48) +Seat 5: Poptart74 (big blind) folded on the River +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602249531: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:22:44 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 1: Oswood (€12.87 in chips) +Seat 2: HomerrrJay (€10.42 in chips) +Seat 3: andi661 (€2.83 in chips) +Seat 4: s0rrow (€3.20 in chips) +Seat 5: Poptart74 (€2.15 in chips) +Seat 6: PokerMill100 (€9.21 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Tc Td] +Oswood: folds +HomerrrJay: raises €0.40 to €0.50 +andi661: calls €0.40 +s0rrow: raises €2.70 to €3.20 and is all-in +Poptart74: folds +PokerMill100: folds +HomerrrJay: raises €2.70 to €5.90 +andi661: folds +Uncalled bet (€2.70) returned to HomerrrJay +*** FLOP *** [7s Th 6h] +*** TURN *** [7s Th 6h] [6d] +*** RIVER *** [7s Th 6h 6d] [Jd] +*** SHOW DOWN *** +HomerrrJay: shows [Kd Ks] (two pair, Kings and Sixes) +s0rrow: shows [Tc Td] (a full house, Tens full of Sixes) +s0rrow collected €6.70 from pot +*** SUMMARY *** +Total pot €7.05 | Rake €0.35 +Board [7s Th 6h 6d Jd] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay showed [Kd Ks] and lost with two pair, Kings and Sixes +Seat 3: andi661 folded before Flop +Seat 4: s0rrow (button) showed [Tc Td] and won (€6.70) with a full house, Tens full of Sixes +Seat 5: Poptart74 (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) folded before Flop + + + +PokerStars Game #35602268793: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:23:36 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 1: Oswood (€12.87 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.33 in chips) +Seat 4: s0rrow (€6.70 in chips) +Seat 5: Poptart74 (€2.10 in chips) +Seat 6: PokerMill100 (€9.11 in chips) +PokerMill100: posts small blind €0.05 +Oswood: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [2d Kh] +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: folds +Poptart74: folds +PokerMill100: calls €0.05 +Oswood: checks +*** FLOP *** [Kc 8s Ah] +PokerMill100: bets €0.20 +Oswood: calls €0.20 +andi661: folds +*** TURN *** [Kc 8s Ah] [8d] +PokerMill100: bets €0.40 +Oswood: calls €0.40 +*** RIVER *** [Kc 8s Ah 8d] [Jc] +PokerMill100: checks +Oswood: bets €0.40 +PokerMill100: calls €0.40 +*** SHOW DOWN *** +Oswood: shows [Tc Ac] (two pair, Aces and Eights) +PokerMill100: shows [As 7d] (two pair, Aces and Eights) +PokerMill100 collected €1.10 from pot +Oswood collected €1.09 from pot +*** SUMMARY *** +Total pot €2.30 | Rake €0.11 +Board [Kc 8s Ah 8d Jc] +Seat 1: Oswood (big blind) showed [Tc Ac] and won (€1.09) with two pair, Aces and Eights +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 folded on the Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) showed [As 7d] and won (€1.10) with two pair, Aces and Eights + + + +PokerStars Game #35602280589: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:24:07 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 1: Oswood (€12.86 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.23 in chips) +Seat 4: s0rrow (€6.70 in chips) +Seat 5: Poptart74 (€2.10 in chips) +Seat 6: PokerMill100 (€9.11 in chips) +Oswood: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ac 9c] +andi661: folds +s0rrow: raises €0.20 to €0.30 +Poptart74 is disconnected +Poptart74 is connected +Poptart74: folds +PokerMill100: folds +Oswood: calls €0.25 +HomerrrJay: folds +*** FLOP *** [Ah Qd 9s] +Oswood: checks +s0rrow: bets €0.50 +Oswood: folds +Uncalled bet (€0.50) returned to s0rrow +s0rrow collected €0.67 from pot +*** SUMMARY *** +Total pot €0.70 | Rake €0.03 +Board [Ah Qd 9s] +Seat 1: Oswood (small blind) folded on the Flop +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: andi661 folded before Flop (didn't bet) +Seat 4: s0rrow collected (€0.67) +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 (button) folded before Flop (didn't bet) + + + +PokerStars Game #35602295396: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:24:47 ET +Table 'Lampland' 6-max Seat #1 is the button +Seat 1: Oswood (€12.56 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.23 in chips) +Seat 4: s0rrow (€7.07 in chips) +Seat 5: Poptart74 (€2.10 in chips) +Seat 6: PokerMill100 (€9.11 in chips) +HomerrrJay: posts small blind €0.05 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4s 3d] +s0rrow: folds +Poptart74: folds +PokerMill100: raises €0.20 to €0.30 +Oswood: folds +HomerrrJay: folds +andi661: folds +Uncalled bet (€0.20) returned to PokerMill100 +PokerMill100 collected €0.25 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0 +Seat 1: Oswood (button) folded before Flop (didn't bet) +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: andi661 (big blind) folded before Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 collected (€0.25) + + + +PokerStars Game #35602302569: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:25:05 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 1: Oswood (€12.56 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.13 in chips) +Seat 4: s0rrow (€7.07 in chips) +Seat 5: Poptart74 (€2.10 in chips) +Seat 6: PokerMill100 (€9.26 in chips) +andi661: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [As 8h] +Poptart74: folds +PokerMill100: folds +Oswood: folds +HomerrrJay: folds +andi661: calls €0.05 +s0rrow: checks +*** FLOP *** [5s Jd 2c] +andi661: checks +s0rrow: checks +*** TURN *** [5s Jd 2c] [8s] +andi661: bets €0.30 +s0rrow: calls €0.30 +*** RIVER *** [5s Jd 2c 8s] [7s] +andi661: bets €0.50 +s0rrow: calls €0.50 +*** SHOW DOWN *** +andi661: shows [6s 9d] (a straight, Five to Nine) +s0rrow: mucks hand +andi661 collected €1.72 from pot +*** SUMMARY *** +Total pot €1.80 | Rake €0.08 +Board [5s Jd 2c 8s 7s] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: andi661 (small blind) showed [6s 9d] and won (€1.72) with a straight, Five to Nine +Seat 4: s0rrow (big blind) mucked [As 8h] +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602321212: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:25:54 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 1: Oswood (€12.56 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.95 in chips) +Seat 4: s0rrow (€6.17 in chips) +Seat 5: Poptart74 (€2.10 in chips) +Seat 6: PokerMill100 (€9.26 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7s 6d] +PokerMill100: folds +Oswood: folds +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: calls €0.05 +Poptart74: checks +*** FLOP *** [3h Ad Js] +s0rrow: checks +Poptart74: checks +andi661: checks +*** TURN *** [3h Ad Js] [Jc] +s0rrow: checks +Poptart74: checks +andi661: bets €0.30 +s0rrow: folds +Poptart74: folds +Uncalled bet (€0.30) returned to andi661 +andi661 collected €0.29 from pot +*** SUMMARY *** +Total pot €0.30 | Rake €0.01 +Board [3h Ad Js Jc] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 (button) collected (€0.29) +Seat 4: s0rrow (small blind) folded on the Turn +Seat 5: Poptart74 (big blind) folded on the Turn +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602339387: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:26:41 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 1: Oswood (€12.56 in chips) +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€3.14 in chips) +Seat 4: s0rrow (€6.07 in chips) +Seat 5: Poptart74 (€2 in chips) +Seat 6: PokerMill100 (€9.26 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 7h] +Oswood: folds +HomerrrJay: raises €0.20 to €0.30 +andi661: folds +s0rrow: folds +Poptart74: folds +PokerMill100: calls €0.20 +*** FLOP *** [7c Qc 6c] +PokerMill100: checks +HomerrrJay: bets €0.20 +PokerMill100: calls €0.20 +*** TURN *** [7c Qc 6c] [Kh] +PokerMill100: checks +HomerrrJay: bets €0.50 +PokerMill100: calls €0.50 +*** RIVER *** [7c Qc 6c Kh] [2d] +PokerMill100: checks +HomerrrJay: bets €1.40 +PokerMill100: folds +Uncalled bet (€1.40) returned to HomerrrJay +HomerrrJay collected €1.95 from pot +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €2.05 | Rake €0.10 +Board [7c Qc 6c Kh 2d] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay collected (€1.95) +Seat 3: andi661 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Poptart74 (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) folded on the River + + + +PokerStars Game #35602354207: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:27:22 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 1: Oswood (€12.56 in chips) +Seat 2: HomerrrJay (€10.95 in chips) +Seat 3: andi661 (€3.14 in chips) +Seat 4: s0rrow (€6.07 in chips) +Seat 5: Poptart74 (€1.95 in chips) +Seat 6: PokerMill100 (€8.26 in chips) +PokerMill100: posts small blind €0.05 +Oswood: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6d Ac] +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: folds +Poptart74: folds +PokerMill100: calls €0.05 +Oswood: checks +*** FLOP *** [6c 4h Kh] +PokerMill100: checks +Oswood: checks +andi661: bets €0.10 +PokerMill100: raises €0.20 to €0.30 +Oswood: folds +andi661: folds +Uncalled bet (€0.20) returned to PokerMill100 +PokerMill100 collected €0.48 from pot +PokerMill100: doesn't show hand +*** SUMMARY *** +Total pot €0.50 | Rake €0.02 +Board [6c 4h Kh] +Seat 1: Oswood (big blind) folded on the Flop +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 folded on the Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) collected (€0.48) + + + +PokerStars Game #35602372046: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:28:07 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 1: Oswood (€12.46 in chips) +Seat 2: HomerrrJay (€10.95 in chips) +Seat 3: andi661 (€2.94 in chips) +Seat 4: s0rrow (€6.07 in chips) +Seat 5: Poptart74 (€1.95 in chips) +Seat 6: PokerMill100 (€8.54 in chips) +Oswood: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qs Qc] +andi661: folds +s0rrow: raises €0.20 to €0.30 +Poptart74: folds +PokerMill100: raises €0.50 to €0.80 +Oswood: folds +HomerrrJay: folds +s0rrow: raises €1.60 to €2.40 +PokerMill100: calls €1.60 +*** FLOP *** [5c 8c 7c] +s0rrow: bets €3.67 and is all-in +PokerMill100: calls €3.67 +*** TURN *** [5c 8c 7c] [9h] +*** RIVER *** [5c 8c 7c 9h] [2h] +*** SHOW DOWN *** +s0rrow: shows [Qs Qc] (a pair of Queens) +PokerMill100: shows [Qd Ac] (high card Ace) +s0rrow collected €11.69 from pot +*** SUMMARY *** +Total pot €12.29 | Rake €0.60 +Board [5c 8c 7c 9h 2h] +Seat 1: Oswood (small blind) folded before Flop +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: andi661 folded before Flop (didn't bet) +Seat 4: s0rrow showed [Qs Qc] and won (€11.69) with a pair of Queens +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 (button) showed [Qd Ac] and lost with high card Ace + + + +PokerStars Game #35602388985: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:28:52 ET +Table 'Lampland' 6-max Seat #1 is the button +Seat 1: Oswood (€12.41 in chips) +Seat 2: HomerrrJay (€10.85 in chips) +Seat 3: andi661 (€2.94 in chips) +Seat 4: s0rrow (€11.69 in chips) +Seat 5: Poptart74 (€1.95 in chips) +Seat 6: PokerMill100 (€2.47 in chips) +HomerrrJay: posts small blind €0.05 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [As 8s] +s0rrow: raises €0.20 to €0.30 +Poptart74: folds +PokerMill100: raises €0.30 to €0.60 +Oswood: folds +HomerrrJay: folds +andi661: folds +s0rrow: calls €0.30 +*** FLOP *** [2h 7h Qc] +s0rrow: checks +PokerMill100: bets €0.50 +s0rrow: folds +Uncalled bet (€0.50) returned to PokerMill100 +PokerMill100 collected €1.29 from pot +PokerMill100: doesn't show hand +*** SUMMARY *** +Total pot €1.35 | Rake €0.06 +Board [2h 7h Qc] +Seat 1: Oswood (button) folded before Flop (didn't bet) +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: andi661 (big blind) folded before Flop +Seat 4: s0rrow folded on the Flop +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 collected (€1.29) + + + +PokerStars Game #35602399936: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:29:21 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 1: Oswood (€12.41 in chips) +Seat 2: HomerrrJay (€10.80 in chips) +Seat 3: andi661 (€2.84 in chips) +Seat 4: s0rrow (€11.09 in chips) +Seat 5: Poptart74 (€1.95 in chips) +Seat 6: PokerMill100 (€3.16 in chips) +andi661: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9h 9d] +Poptart74: folds +PokerMill100: folds +Oswood has timed out +Oswood: folds +Oswood is sitting out +Oswood has returned +HomerrrJay: raises €0.20 to €0.30 +andi661: folds +s0rrow: calls €0.20 +*** FLOP *** [4h 9s Qc] +s0rrow: checks +HomerrrJay: bets €0.40 +s0rrow: raises €1 to €1.40 +HomerrrJay: folds +Uncalled bet (€1) returned to s0rrow +s0rrow collected €1.38 from pot +*** SUMMARY *** +Total pot €1.45 | Rake €0.07 +Board [4h 9s Qc] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay (button) folded on the Flop +Seat 3: andi661 (small blind) folded before Flop +Seat 4: s0rrow (big blind) collected (€1.38) +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602418215: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:30:09 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 1: Oswood (€12.41 in chips) +Seat 2: HomerrrJay (€10.10 in chips) +Seat 3: andi661 (€2.79 in chips) +Seat 4: s0rrow (€11.77 in chips) +Seat 5: Poptart74 (€1.95 in chips) +Seat 6: PokerMill100 (€3.16 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 3s] +PokerMill100: folds +Oswood has timed out +Oswood: folds +Oswood is sitting out +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: folds +Poptart74: checks +*** FLOP *** [7d Kd 6h] +Poptart74: checks +andi661: bets €0.20 +Poptart74: folds +Uncalled bet (€0.20) returned to andi661 +andi661 collected €0.24 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0.01 +Board [7d Kd 6h] +Seat 1: Oswood folded before Flop (didn't bet) +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 (button) collected (€0.24) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: Poptart74 (big blind) folded on the Flop +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602435059: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:30:53 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€10.10 in chips) +Seat 3: andi661 (€2.93 in chips) +Seat 4: s0rrow (€11.72 in chips) +Seat 5: Poptart74 (€1.85 in chips) +Seat 6: PokerMill100 (€3.16 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9h Tc] +HomerrrJay: raises €0.30 to €0.40 +andi661: calls €0.40 +s0rrow: folds +Poptart74: folds +PokerMill100: folds +*** FLOP *** [Kc Kh As] +HomerrrJay: checks +andi661: checks +*** TURN *** [Kc Kh As] [9c] +HomerrrJay: bets €0.30 +andi661: folds +Uncalled bet (€0.30) returned to HomerrrJay +HomerrrJay collected €0.91 from pot +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €0.95 | Rake €0.04 +Board [Kc Kh As 9c] +Seat 2: HomerrrJay collected (€0.91) +Seat 3: andi661 folded on the Turn +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Poptart74 (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) folded before Flop + + + +PokerStars Game #35602449190: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:31:29 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 2: HomerrrJay (€10.61 in chips) +Seat 3: andi661 (€2.53 in chips) +Seat 4: s0rrow (€11.72 in chips) +Seat 5: Poptart74 (€1.80 in chips) +Seat 6: PokerMill100 (€3.06 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4d Ac] +andi661: raises €0.10 to €0.20 +s0rrow: folds +Poptart74: folds +PokerMill100: folds +HomerrrJay: folds +Uncalled bet (€0.10) returned to andi661 +andi661 collected €0.25 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0 +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: andi661 collected (€0.25) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) folded before Flop + + + +PokerStars Game #35602454945: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:31:45 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 2: HomerrrJay (€10.51 in chips) +Seat 3: andi661 (€2.68 in chips) +Seat 4: s0rrow (€11.72 in chips) +Seat 5: Poptart74 (€1.80 in chips) +Seat 6: PokerMill100 (€3.01 in chips) +HomerrrJay: posts small blind €0.05 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 3c] +s0rrow: folds +Poptart74: calls €0.10 +PokerMill100: calls €0.10 +HomerrrJay: calls €0.05 +andi661: checks +*** FLOP *** [9s 8h 8d] +HomerrrJay: bets €0.20 +andi661: calls €0.20 +Poptart74: folds +PokerMill100: folds +*** TURN *** [9s 8h 8d] [Qc] +HomerrrJay: bets €0.20 +andi661: raises €0.30 to €0.50 +HomerrrJay: calls €0.30 +*** RIVER *** [9s 8h 8d Qc] [Td] +HomerrrJay: checks +andi661: bets €1 +HomerrrJay: folds +Uncalled bet (€1) returned to andi661 +andi661 collected €1.72 from pot +*** SUMMARY *** +Total pot €1.80 | Rake €0.08 +Board [9s 8h 8d Qc Td] +Seat 2: HomerrrJay (small blind) folded on the River +Seat 3: andi661 (big blind) collected (€1.72) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 folded on the Flop +Seat 6: PokerMill100 (button) folded on the Flop + + + +PokerStars Game #35602472519: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:32:30 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€3.60 in chips) +Seat 4: s0rrow (€11.72 in chips) +Seat 5: Poptart74 (€1.70 in chips) +Seat 6: PokerMill100 (€2.91 in chips) +andi661: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ah Th] +Poptart74: calls €0.10 +PokerMill100: folds +HomerrrJay: folds +andi661: calls €0.05 +s0rrow: checks +*** FLOP *** [As Js 8s] +andi661: checks +s0rrow: checks +Poptart74: checks +*** TURN *** [As Js 8s] [8c] +andi661: bets €0.20 +s0rrow: calls €0.20 +Poptart74: folds +*** RIVER *** [As Js 8s 8c] [3c] +andi661: bets €0.50 +s0rrow: calls €0.50 +*** SHOW DOWN *** +andi661: shows [Jd 9h] (two pair, Jacks and Eights) +s0rrow: shows [Ah Th] (two pair, Aces and Eights) +s0rrow collected €1.62 from pot +*** SUMMARY *** +Total pot €1.70 | Rake €0.08 +Board [As Js 8s 8c 3c] +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: andi661 (small blind) showed [Jd 9h] and lost with two pair, Jacks and Eights +Seat 4: s0rrow (big blind) showed [Ah Th] and won (€1.62) with two pair, Aces and Eights +Seat 5: Poptart74 folded on the Turn +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602487338: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:33:09 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.80 in chips) +Seat 4: s0rrow (€12.54 in chips) +Seat 5: Poptart74 (€1.60 in chips) +Seat 6: PokerMill100 (€2.91 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Td] +PokerMill100: folds +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: calls €0.05 +Poptart74: checks +*** FLOP *** [4s 8d 6h] +s0rrow: checks +Poptart74: checks +andi661: bets €0.20 +s0rrow: folds +Poptart74: calls €0.20 +*** TURN *** [4s 8d 6h] [Kc] +Poptart74: checks +andi661: bets €0.30 +Poptart74: calls €0.30 +*** RIVER *** [4s 8d 6h Kc] [Qc] +Poptart74: checks +andi661: bets €0.50 +Poptart74: calls €0.50 +*** SHOW DOWN *** +andi661: shows [3h 3c] (a pair of Threes) +Poptart74: shows [5h 6c] (a pair of Sixes) +Poptart74 collected €2.19 from pot +*** SUMMARY *** +Total pot €2.30 | Rake €0.11 +Board [4s 8d 6h Kc Qc] +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 (button) showed [3h 3c] and lost with a pair of Threes +Seat 4: s0rrow (small blind) folded on the Flop +Seat 5: Poptart74 (big blind) showed [5h 6c] and won (€2.19) with a pair of Sixes +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602509002: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:34:05 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€1.70 in chips) +Seat 4: s0rrow (€12.44 in chips) +Seat 5: Poptart74 (€2.69 in chips) +Seat 6: PokerMill100 (€2.91 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 5d] +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: folds +Poptart74: calls €0.05 +PokerMill100: checks +*** FLOP *** [Ts 8c Qc] +Poptart74: checks +PokerMill100: checks +andi661: bets €0.30 +Poptart74: calls €0.30 +PokerMill100: folds +*** TURN *** [Ts 8c Qc] [7s] +Poptart74: checks +andi661: bets €1.30 and is all-in +Poptart74: calls €1.30 +*** RIVER *** [Ts 8c Qc 7s] [Qh] +*** SHOW DOWN *** +Poptart74: shows [8s 9s] (two pair, Queens and Eights) +andi661: shows [Jd Th] (two pair, Queens and Tens) +andi661 collected €3.33 from pot +*** SUMMARY *** +Total pot €3.50 | Rake €0.17 +Board [Ts 8c Qc 7s Qh] +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 showed [Jd Th] and won (€3.33) with two pair, Queens and Tens +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Poptart74 (small blind) showed [8s 9s] and lost with two pair, Queens and Eights +Seat 6: PokerMill100 (big blind) folded on the Flop + + + +PokerStars Game #35602528089: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:34:54 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€3.33 in chips) +Seat 4: s0rrow (€12.44 in chips) +Seat 5: Poptart74 (€0.99 in chips) +Seat 6: PokerMill100 (€2.81 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7d Th] +andi661: folds +s0rrow: folds +Poptart74: folds +PokerMill100: folds +Uncalled bet (€0.05) returned to HomerrrJay +HomerrrJay collected €0.10 from pot +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €0.10 | Rake €0 +Seat 2: HomerrrJay (big blind) collected (€0.10) +Seat 3: andi661 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) folded before Flop + + + +PokerStars Game #35602532574: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:35:06 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 2: HomerrrJay (€10.05 in chips) +Seat 3: andi661 (€3.33 in chips) +Seat 4: s0rrow (€12.44 in chips) +Seat 5: Poptart74 (€0.99 in chips) +Seat 6: PokerMill100 (€2.76 in chips) +HomerrrJay: posts small blind €0.05 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6d Qh] +s0rrow: folds +Poptart74: folds +PokerMill100: folds +HomerrrJay: folds +Uncalled bet (€0.05) returned to andi661 +andi661 collected €0.10 from pot +*** SUMMARY *** +Total pot €0.10 | Rake €0 +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: andi661 (big blind) collected (€0.10) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 (button) folded before Flop (didn't bet) + + + +PokerStars Game #35602538264: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:35:21 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€3.38 in chips) +Seat 4: s0rrow (€12.44 in chips) +Seat 5: Poptart74 (€0.99 in chips) +Seat 6: PokerMill100 (€2.76 in chips) +andi661: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4h Jh] +Poptart74: folds +PokerMill100: raises €0.20 to €0.30 +HomerrrJay: folds +andi661: folds +s0rrow: folds +Uncalled bet (€0.20) returned to PokerMill100 +PokerMill100 collected €0.25 from pot +PokerMill100: doesn't show hand +*** SUMMARY *** +Total pot €0.25 | Rake €0 +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: andi661 (small blind) folded before Flop +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: Poptart74 folded before Flop (didn't bet) +Seat 6: PokerMill100 collected (€0.25) + + + +PokerStars Game #35602543794: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:35:36 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€3.33 in chips) +Seat 4: s0rrow (€12.34 in chips) +Seat 5: Poptart74 (€0.99 in chips) +Seat 6: PokerMill100 (€2.91 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 4c] +PokerMill100: raises €0.30 to €0.40 +HomerrrJay: folds +andi661: folds +s0rrow: folds +Poptart74: folds +Uncalled bet (€0.30) returned to PokerMill100 +PokerMill100 collected €0.25 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0 +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: Poptart74 (big blind) folded before Flop +Seat 6: PokerMill100 collected (€0.25) + + + +PokerStars Game #35602548453: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:35:48 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€3.33 in chips) +Seat 4: s0rrow (€12.29 in chips) +Seat 5: Poptart74 (€0.89 in chips) +Seat 6: PokerMill100 (€3.06 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 6c] +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: folds +Poptart74: calls €0.05 +PokerMill100: checks +*** FLOP *** [Td 9s Kc] +Poptart74: checks +PokerMill100: checks +andi661: checks +*** TURN *** [Td 9s Kc] [9h] +Poptart74: checks +PokerMill100: checks +andi661: checks +*** RIVER *** [Td 9s Kc 9h] [8h] +Poptart74: checks +PokerMill100: checks +andi661: bets €0.30 +Poptart74: calls €0.30 +PokerMill100: folds +*** SHOW DOWN *** +andi661: shows [3h 4h] (a pair of Nines) +Poptart74: shows [Qh Ts] (two pair, Tens and Nines) +Poptart74 collected €0.86 from pot +*** SUMMARY *** +Total pot €0.90 | Rake €0.04 +Board [Td 9s Kc 9h 8h] +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 showed [3h 4h] and lost with a pair of Nines +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Poptart74 (small blind) showed [Qh Ts] and won (€0.86) with two pair, Tens and Nines +Seat 6: PokerMill100 (big blind) folded on the River + + + +PokerStars Game #35602569251: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:36:43 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.93 in chips) +Seat 4: s0rrow (€12.29 in chips) +Seat 5: Poptart74 (€1.35 in chips) +Seat 6: PokerMill100 (€2.96 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 5s] +andi661: folds +s0rrow: folds +Poptart74: calls €0.10 +PokerMill100: raises €0.30 to €0.40 +HomerrrJay: folds +Poptart74: folds +Uncalled bet (€0.30) returned to PokerMill100 +PokerMill100 collected €0.30 from pot +*** SUMMARY *** +Total pot €0.30 | Rake €0 +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: andi661 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) folded before Flop +Seat 6: PokerMill100 (small blind) collected (€0.30) + + + +PokerStars Game #35602575727: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:36:59 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.93 in chips) +Seat 4: s0rrow (€12.29 in chips) +Seat 5: Poptart74 (€1.25 in chips) +Seat 6: PokerMill100 (€3.16 in chips) +HomerrrJay: posts small blind €0.05 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4d 2c] +s0rrow: folds +Poptart74: raises €0.20 to €0.30 +PokerMill100: calls €0.30 +HomerrrJay: folds +andi661: calls €0.20 +*** FLOP *** [7c 8h 9h] +andi661: checks +Poptart74: checks +PokerMill100: checks +*** TURN *** [7c 8h 9h] [3d] +andi661: checks +Poptart74: bets €0.30 +PokerMill100: calls €0.30 +andi661: folds +*** RIVER *** [7c 8h 9h 3d] [7d] +Poptart74: checks +PokerMill100: bets €0.70 +Poptart74: folds +Uncalled bet (€0.70) returned to PokerMill100 +PokerMill100 collected €1.48 from pot +PokerMill100: doesn't show hand +*** SUMMARY *** +Total pot €1.55 | Rake €0.07 +Board [7c 8h 9h 3d 7d] +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: andi661 (big blind) folded on the Turn +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 folded on the River +Seat 6: PokerMill100 (button) collected (€1.48) + + + +PokerStars Game #35602599492: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:38:01 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.63 in chips) +Seat 4: s0rrow (€12.29 in chips) +Seat 5: Poptart74 (€0.65 in chips) +Seat 6: PokerMill100 (€4.04 in chips) +andi661: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5d 6d] +Poptart74: raises €0.55 to €0.65 and is all-in +PokerMill100: folds +HomerrrJay: folds +andi661: folds +s0rrow: calls €0.55 +*** FLOP *** [9c 2c 7d] +*** TURN *** [9c 2c 7d] [Jc] +*** RIVER *** [9c 2c 7d Jc] [Jd] +*** SHOW DOWN *** +s0rrow: shows [5d 6d] (a pair of Jacks) +Poptart74: shows [7h Kh] (two pair, Jacks and Sevens) +Poptart74 collected €1.29 from pot +*** SUMMARY *** +Total pot €1.35 | Rake €0.06 +Board [9c 2c 7d Jc Jd] +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: andi661 (small blind) folded before Flop +Seat 4: s0rrow (big blind) showed [5d 6d] and lost with a pair of Jacks +Seat 5: Poptart74 showed [7h Kh] and won (€1.29) with two pair, Jacks and Sevens +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602610521: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:38:30 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.58 in chips) +Seat 4: s0rrow (€11.64 in chips) +Seat 5: Poptart74 (€1.29 in chips) +Seat 6: PokerMill100 (€4.04 in chips) +s0rrow: posts small blind €0.05 +Poptart74: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5h Jc] +PokerMill100: folds +HomerrrJay: folds +andi661: folds +s0rrow: folds +Uncalled bet (€0.05) returned to Poptart74 +Poptart74 collected €0.10 from pot +Poptart74: doesn't show hand +*** SUMMARY *** +Total pot €0.10 | Rake €0 +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: Poptart74 (big blind) collected (€0.10) +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602613846: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:38:39 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.58 in chips) +Seat 4: s0rrow (€11.59 in chips) +Seat 5: Poptart74 (€1.34 in chips) +Seat 6: PokerMill100 (€4.04 in chips) +Poptart74: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Td 5c] +HomerrrJay: folds +andi661: folds +s0rrow: folds +Poptart74: calls €0.05 +PokerMill100: raises €0.20 to €0.30 +Poptart74: folds +Uncalled bet (€0.20) returned to PokerMill100 +PokerMill100 collected €0.20 from pot +*** SUMMARY *** +Total pot €0.20 | Rake €0 +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Poptart74 (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) collected (€0.20) + + + +PokerStars Game #35602622054: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:39:00 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 2: HomerrrJay (€10 in chips) +Seat 3: andi661 (€2.58 in chips) +Seat 4: s0rrow (€11.59 in chips) +Seat 5: Poptart74 (€1.24 in chips) +Seat 6: PokerMill100 (€4.14 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3s Qd] +andi661: raises €0.20 to €0.30 +s0rrow: folds +Poptart74: calls €0.30 +PokerMill100: calls €0.25 +HomerrrJay: calls €0.20 +*** FLOP *** [Kh 8h 9d] +PokerMill100: checks +HomerrrJay: bets €0.70 +andi661: calls €0.70 +Poptart74: raises €0.24 to €0.94 and is all-in +PokerMill100: folds +HomerrrJay: calls €0.24 +andi661: calls €0.24 +*** TURN *** [Kh 8h 9d] [4d] +HomerrrJay: checks +andi661: checks +*** RIVER *** [Kh 8h 9d 4d] [9h] +HomerrrJay: checks +andi661: checks +*** SHOW DOWN *** +HomerrrJay: shows [9s Js] (three of a kind, Nines) +andi661: shows [Jc Qc] (a pair of Nines) +Poptart74: mucks hand +HomerrrJay collected €3.83 from pot +*** SUMMARY *** +Total pot €4.02 | Rake €0.19 +Board [Kh 8h 9d 4d 9h] +Seat 2: HomerrrJay (big blind) showed [9s Js] and won (€3.83) with three of a kind, Nines +Seat 3: andi661 showed [Jc Qc] and lost with a pair of Nines +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Poptart74 (button) mucked [Tc Kd] +Seat 6: PokerMill100 (small blind) folded on the Flop + + + +PokerStars Game #35602639577: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:39:46 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 2: HomerrrJay (€12.59 in chips) +Seat 3: andi661 (€1.34 in chips) +Seat 4: s0rrow (€11.59 in chips) +Seat 6: PokerMill100 (€3.84 in chips) +Oswood was removed from the table for failing to post +HomerrrJay: posts small blind €0.05 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3d 7d] +s0rrow: folds +PokerMill100: folds +Poptart74 leaves the table +HomerrrJay: raises €0.20 to €0.30 +andi661: calls €0.20 +*** FLOP *** [9c 2c 9h] +HomerrrJay: checks +andi661: checks +*** TURN *** [9c 2c 9h] [Qc] +HomerrrJay: bets €0.40 +andi661: folds +Uncalled bet (€0.40) returned to HomerrrJay +HomerrrJay collected €0.57 from pot +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €0.60 | Rake €0.03 +Board [9c 2c 9h Qc] +Seat 2: HomerrrJay (small blind) collected (€0.57) +Seat 3: andi661 (big blind) folded on the Turn +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 6: PokerMill100 (button) folded before Flop (didn't bet) + + + +PokerStars Game #35602648744: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:40:10 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€12.86 in chips) +Seat 3: andi661 (€1.04 in chips) +Seat 4: s0rrow (€11.59 in chips) +Seat 6: PokerMill100 (€3.84 in chips) +andi661: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6c Qc] +PokerMill100: folds +HomerrrJay: folds +andi661: calls €0.05 +s0rrow: checks +*** FLOP *** [5d Ac 3d] +andi661: checks +s0rrow: checks +*** TURN *** [5d Ac 3d] [Td] +andi661: bets €0.20 +s0rrow: folds +Uncalled bet (€0.20) returned to andi661 +andi661 collected €0.19 from pot +*** SUMMARY *** +Total pot €0.20 | Rake €0.01 +Board [5d Ac 3d Td] +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: andi661 (small blind) collected (€0.19) +Seat 4: s0rrow (big blind) folded on the Turn +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602658421: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:40:35 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 2: HomerrrJay (€12.86 in chips) +Seat 3: andi661 (€1.13 in chips) +Seat 4: s0rrow (€11.49 in chips) +Seat 6: PokerMill100 (€3.84 in chips) +s0rrow: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9s 2s] +HomerrrJay: folds +andi661: calls €0.10 +s0rrow: folds +PokerMill100: checks +*** FLOP *** [Jh Qs Js] +PokerMill100: checks +andi661: bets €0.30 +PokerMill100: folds +Uncalled bet (€0.30) returned to andi661 +andi661 collected €0.24 from pot +*** SUMMARY *** +Total pot €0.25 | Rake €0.01 +Board [Jh Qs Js] +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: andi661 (button) collected (€0.24) +Seat 4: s0rrow (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) folded on the Flop + + + +PokerStars Game #35602664558: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:40:51 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€12.86 in chips) +Seat 3: andi661 (€1.27 in chips) +Seat 4: s0rrow (€11.44 in chips) +Seat 6: PokerMill100 (€3.74 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9h 4h] +andi661: folds +s0rrow: folds +PokerMill100: calls €0.05 +HomerrrJay: checks +*** FLOP *** [6h Qd 9s] +PokerMill100: checks +HomerrrJay: checks +*** TURN *** [6h Qd 9s] [6c] +PokerMill100: checks +HomerrrJay: bets €0.20 +PokerMill100: calls €0.20 +*** RIVER *** [6h Qd 9s 6c] [2d] +PokerMill100: checks +HomerrrJay: checks +*** SHOW DOWN *** +PokerMill100: shows [6d 5h] (three of a kind, Sixes) +HomerrrJay: mucks hand +PokerMill100 collected €0.58 from pot +*** SUMMARY *** +Total pot €0.60 | Rake €0.02 +Board [6h Qd 9s 6c 2d] +Seat 2: HomerrrJay (big blind) mucked [2s 3d] +Seat 3: andi661 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) showed [6d 5h] and won (€0.58) with three of a kind, Sixes + + + +PokerStars Game #35602675399: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:41:19 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 2: HomerrrJay (€12.56 in chips) +Seat 3: andi661 (€1.27 in chips) +Seat 4: s0rrow (€11.44 in chips) +Seat 6: PokerMill100 (€4.02 in chips) +HomerrrJay: posts small blind €0.05 +andi661: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ts Th] +s0rrow: raises €0.20 to €0.30 +PokerMill100: folds +HomerrrJay: raises €0.80 to €1.10 +andi661: raises €0.17 to €1.27 and is all-in +Frenchmeistr joins the table at seat #5 +s0rrow: calls €0.97 +HomerrrJay: calls €0.17 +*** FLOP *** [2h 8c Qd] +HomerrrJay: checks +s0rrow: checks +*** TURN *** [2h 8c Qd] [8h] +HomerrrJay: checks +s0rrow: checks +*** RIVER *** [2h 8c Qd 8h] [Ah] +HomerrrJay: bets €2 +s0rrow: folds +Uncalled bet (€2) returned to HomerrrJay +*** SHOW DOWN *** +HomerrrJay: shows [Kd As] (two pair, Aces and Eights) +andi661: shows [4s 4c] (two pair, Eights and Fours) +terpoox joins the table at seat #1 +HomerrrJay collected €3.62 from pot +*** SUMMARY *** +Total pot €3.81 | Rake €0.19 +Board [2h 8c Qd 8h Ah] +Seat 2: HomerrrJay (small blind) showed [Kd As] and won (€3.62) with two pair, Aces and Eights +Seat 3: andi661 (big blind) showed [4s 4c] and lost with two pair, Eights and Fours +Seat 4: s0rrow folded on the River +Seat 6: PokerMill100 (button) folded before Flop (didn't bet) + + + +PokerStars Game #35602689357: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:41:56 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€14.91 in chips) +Seat 4: s0rrow (€10.17 in chips) +Seat 5: Frenchmeistr (€2 in chips) +Seat 6: PokerMill100 (€4.02 in chips) +s0rrow: posts small blind €0.05 +Frenchmeistr: posts big blind €0.10 +terpoox: sits out +*** HOLE CARDS *** +Dealt to s0rrow [8h Qs] +PokerMill100: folds +andi661 leaves the table +HomerrrJay: folds +s0rrow: folds +Uncalled bet (€0.05) returned to Frenchmeistr +Frenchmeistr collected €0.10 from pot +Frenchmeistr: doesn't show hand +*** SUMMARY *** +Total pot €0.10 | Rake €0 +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: Frenchmeistr (big blind) collected (€0.10) +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602693895: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:42:07 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€14.91 in chips) +Seat 4: s0rrow (€10.12 in chips) +Seat 5: Frenchmeistr (€2.05 in chips) +Seat 6: PokerMill100 (€4.02 in chips) +Frenchmeistr: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +terpoox: sits out +*** HOLE CARDS *** +Dealt to s0rrow [8s 4h] +HomerrrJay: folds +s0rrow: folds +Frenchmeistr: calls €0.05 +PokerMill100: raises €0.30 to €0.40 +Frenchmeistr: calls €0.30 +*** FLOP *** [Js 7d Qs] +Oswood joins the table at seat #3 +Frenchmeistr: checks +PokerMill100: bets €0.40 +Frenchmeistr: folds +Uncalled bet (€0.40) returned to PokerMill100 +PokerMill100 collected €0.76 from pot +PokerMill100: doesn't show hand +*** SUMMARY *** +Total pot €0.80 | Rake €0.04 +Board [Js 7d Qs] +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Frenchmeistr (small blind) folded on the Flop +Seat 6: PokerMill100 (big blind) collected (€0.76) + + + +PokerStars Game #35602703765: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:42:33 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 1: terpoox (€2 in chips) +Seat 2: HomerrrJay (€14.91 in chips) +Seat 4: s0rrow (€10.12 in chips) +Seat 5: Frenchmeistr (€1.65 in chips) +Seat 6: PokerMill100 (€4.38 in chips) +PokerMill100: posts small blind €0.05 +terpoox: posts big blind €0.10 +Oswood: sits out +*** HOLE CARDS *** +Dealt to s0rrow [8s Jc] +HomerrrJay: folds +s0rrow: raises €0.20 to €0.30 +Frenchmeistr: raises €1.35 to €1.65 and is all-in +PokerMill100: folds +terpoox: folds +s0rrow: folds +Uncalled bet (€1.35) returned to Frenchmeistr +Frenchmeistr collected €0.75 from pot +Frenchmeistr: doesn't show hand +*** SUMMARY *** +Total pot €0.75 | Rake €0 +Seat 1: terpoox (big blind) folded before Flop +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop +Seat 5: Frenchmeistr (button) collected (€0.75) +Seat 6: PokerMill100 (small blind) folded before Flop + + + +PokerStars Game #35602710852: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:42:51 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 1: terpoox (€1.90 in chips) +Seat 2: HomerrrJay (€14.91 in chips) +Seat 4: s0rrow (€9.82 in chips) +Seat 5: Frenchmeistr (€2.10 in chips) +Seat 6: PokerMill100 (€4.33 in chips) +terpoox: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +Oswood: sits out +*** HOLE CARDS *** +Dealt to s0rrow [As Kd] +s0rrow: raises €0.20 to €0.30 +Frenchmeistr: calls €0.30 +PokerMill100: folds +terpoox: calls €0.25 +HomerrrJay: folds +*** FLOP *** [Tc Ts Jd] +terpoox: bets €1.60 and is all-in +s0rrow: folds +Frenchmeistr: folds +Uncalled bet (€1.60) returned to terpoox +terpoox collected €0.95 from pot +terpoox: doesn't show hand +*** SUMMARY *** +Total pot €1 | Rake €0.05 +Board [Tc Ts Jd] +Seat 1: terpoox (small blind) collected (€0.95) +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 4: s0rrow folded on the Flop +Seat 5: Frenchmeistr folded on the Flop +Seat 6: PokerMill100 (button) folded before Flop (didn't bet) + + + +PokerStars Game #35602723811: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:43:25 ET +Table 'Lampland' 6-max Seat #1 is the button +Seat 1: terpoox (€2.55 in chips) +Seat 2: HomerrrJay (€14.81 in chips) +Seat 3: Oswood (€12.41 in chips) +Seat 4: s0rrow (€9.52 in chips) +Seat 5: Frenchmeistr (€1.80 in chips) +Seat 6: PokerMill100 (€4.33 in chips) +HomerrrJay: posts small blind €0.05 +Oswood: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [8c 7h] +s0rrow: folds +Frenchmeistr: calls €0.10 +PokerMill100: calls €0.10 +terpoox: folds +HomerrrJay: folds +Oswood: checks +*** FLOP *** [6h 5s As] +Oswood: checks +Frenchmeistr: checks +PokerMill100: checks +*** TURN *** [6h 5s As] [9c] +Oswood: checks +Frenchmeistr: checks +PokerMill100: bets €0.20 +Oswood: calls €0.20 +Frenchmeistr: calls €0.20 +*** RIVER *** [6h 5s As 9c] [Ad] +Oswood: checks +Frenchmeistr: checks +PokerMill100: checks +*** SHOW DOWN *** +Oswood: shows [7s 5h] (two pair, Aces and Fives) +Frenchmeistr: mucks hand +PokerMill100: shows [9d Kd] (two pair, Aces and Nines) +PokerMill100 collected €0.91 from pot +*** SUMMARY *** +Total pot €0.95 | Rake €0.04 +Board [6h 5s As 9c Ad] +Seat 1: terpoox (button) folded before Flop (didn't bet) +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: Oswood (big blind) showed [7s 5h] and lost with two pair, Aces and Fives +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Frenchmeistr mucked [2h 3d] +Seat 6: PokerMill100 showed [9d Kd] and won (€0.91) with two pair, Aces and Nines + + + +PokerStars Game #35602741546: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:44:11 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 1: terpoox (€2.55 in chips) +Seat 2: HomerrrJay (€14.76 in chips) +Seat 3: Oswood (€12.11 in chips) +Seat 4: s0rrow (€9.52 in chips) +Seat 5: Frenchmeistr (€1.50 in chips) +Seat 6: PokerMill100 (€4.94 in chips) +Oswood: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 3d] +Frenchmeistr: calls €0.10 +PokerMill100: raises €0.30 to €0.40 +terpoox: folds +HomerrrJay: calls €0.40 +Oswood: calls €0.35 +s0rrow: folds +Frenchmeistr: calls €0.30 +*** FLOP *** [6d 3c 4d] +Oswood: checks +Frenchmeistr: bets €1.10 and is all-in +PokerMill100: folds +HomerrrJay: raises €1.30 to €2.40 +Oswood: folds +Uncalled bet (€1.30) returned to HomerrrJay +*** TURN *** [6d 3c 4d] [7h] +*** RIVER *** [6d 3c 4d 7h] [Th] +*** SHOW DOWN *** +Frenchmeistr: shows [5h Qc] (a straight, Three to Seven) +HomerrrJay: shows [9c 9s] (a pair of Nines) +Frenchmeistr collected €3.71 from pot +*** SUMMARY *** +Total pot €3.90 | Rake €0.19 +Board [6d 3c 4d 7h Th] +Seat 1: terpoox folded before Flop (didn't bet) +Seat 2: HomerrrJay (button) showed [9c 9s] and lost with a pair of Nines +Seat 3: Oswood (small blind) folded on the Flop +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: Frenchmeistr showed [5h Qc] and won (€3.71) with a straight, Three to Seven +Seat 6: PokerMill100 folded on the Flop + + + +PokerStars Game #35602758193: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:44:54 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 1: terpoox (€2.55 in chips) +Seat 2: HomerrrJay (€13.26 in chips) +Seat 3: Oswood (€11.71 in chips) +Seat 4: s0rrow (€9.42 in chips) +Seat 5: Frenchmeistr (€3.71 in chips) +Seat 6: PokerMill100 (€4.54 in chips) +s0rrow: posts small blind €0.05 +Frenchmeistr: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4d Jh] +PokerMill100: folds +terpoox: raises €0.20 to €0.30 +HomerrrJay: raises €0.80 to €1.10 +Oswood: folds +s0rrow: folds +Frenchmeistr: folds +terpoox: folds +Uncalled bet (€0.80) returned to HomerrrJay +HomerrrJay collected €0.75 from pot +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €0.75 | Rake €0 +Seat 1: terpoox folded before Flop +Seat 2: HomerrrJay collected (€0.75) +Seat 3: Oswood (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: Frenchmeistr (big blind) folded before Flop +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602766776: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:45:17 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 1: terpoox (€2.25 in chips) +Seat 2: HomerrrJay (€13.71 in chips) +Seat 3: Oswood (€11.71 in chips) +Seat 4: s0rrow (€9.37 in chips) +Seat 5: Frenchmeistr (€3.61 in chips) +Seat 6: PokerMill100 (€4.54 in chips) +Frenchmeistr: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5d 9h] +terpoox: calls €0.10 +HomerrrJay: raises €0.40 to €0.50 +Oswood: calls €0.50 +s0rrow: folds +Frenchmeistr: folds +PokerMill100: calls €0.40 +terpoox: calls €0.40 +*** FLOP *** [Qh As 9d] +PokerMill100: checks +terpoox: checks +HomerrrJay: checks +Oswood: checks +*** TURN *** [Qh As 9d] [8d] +PokerMill100: checks +terpoox: bets €1.75 and is all-in +HomerrrJay: folds +Oswood: calls €1.75 +PokerMill100: folds +*** RIVER *** [Qh As 9d 8d] [3h] +*** SHOW DOWN *** +terpoox: shows [Ac 4c] (a pair of Aces) +Oswood: shows [Js Ts] (a straight, Eight to Queen) +Oswood collected €5.28 from pot +*** SUMMARY *** +Total pot €5.55 | Rake €0.27 +Board [Qh As 9d 8d 3h] +Seat 1: terpoox showed [Ac 4c] and lost with a pair of Aces +Seat 2: HomerrrJay folded on the Turn +Seat 3: Oswood showed [Js Ts] and won (€5.28) with a straight, Eight to Queen +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: Frenchmeistr (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) folded on the Turn + + + +PokerStars Game #35602783606: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:46:00 ET +Table 'Lampland' 6-max Seat #5 is the button +Seat 2: HomerrrJay (€13.21 in chips) +Seat 3: Oswood (€14.74 in chips) +Seat 4: s0rrow (€9.37 in chips) +Seat 5: Frenchmeistr (€3.56 in chips) +Seat 6: PokerMill100 (€4.04 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7s Kh] +Oswood: raises €0.20 to €0.30 +s0rrow: folds +Frenchmeistr: calls €0.30 +PokerMill100: calls €0.25 +HomerrrJay: folds +*** FLOP *** [5h 3c 6s] +PokerMill100: checks +Oswood: checks +Frenchmeistr: bets €3.26 and is all-in +PokerMill100: raises €0.48 to €3.74 and is all-in +terpoox leaves the table +Oswood: folds +Uncalled bet (€0.48) returned to PokerMill100 +*** TURN *** [5h 3c 6s] [Qs] +*** RIVER *** [5h 3c 6s Qs] [2s] +*** SHOW DOWN *** +PokerMill100: shows [6d 3d] (two pair, Sixes and Threes) +Frenchmeistr: shows [9d 6h] (a pair of Sixes) +PokerMill100 collected €7.15 from pot +*** SUMMARY *** +Total pot €7.52 | Rake €0.37 +Board [5h 3c 6s Qs 2s] +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: Oswood folded on the Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: Frenchmeistr (button) showed [9d 6h] and lost with a pair of Sixes +Seat 6: PokerMill100 (small blind) showed [6d 3d] and won (€7.15) with two pair, Sixes and Threes + + + +PokerStars Game #35602802439: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:46:48 ET +Table 'Lampland' 6-max Seat #6 is the button +Seat 2: HomerrrJay (€13.11 in chips) +Seat 3: Oswood (€14.44 in chips) +Seat 4: s0rrow (€9.37 in chips) +Seat 6: PokerMill100 (€7.63 in chips) +HomerrrJay: posts small blind €0.05 +Oswood: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9s Qc] +s0rrow: folds +PokerMill100: folds +HomerrrJay: folds +Uncalled bet (€0.05) returned to Oswood +Frenchmeistr leaves the table +Oswood collected €0.10 from pot +*** SUMMARY *** +Total pot €0.10 | Rake €0 +Seat 2: HomerrrJay (small blind) folded before Flop +Seat 3: Oswood (big blind) collected (€0.10) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 6: PokerMill100 (button) folded before Flop (didn't bet) + + + +PokerStars Game #35602807096: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:47:00 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€13.06 in chips) +Seat 3: Oswood (€14.49 in chips) +Seat 4: s0rrow (€9.37 in chips) +Seat 6: PokerMill100 (€7.63 in chips) +Oswood: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7d 9h] +PokerMill100: folds +smokin_hot08 joins the table at seat #1 +HomerrrJay: folds +Oswood: calls €0.05 +s0rrow: checks +*** FLOP *** [2h Ts Th] +Oswood: checks +s0rrow: checks +*** TURN *** [2h Ts Th] [2d] +Oswood: checks +s0rrow: checks +*** RIVER *** [2h Ts Th 2d] [As] +Oswood: checks +s0rrow: checks +*** SHOW DOWN *** +Oswood: shows [5s Qs] (two pair, Tens and Deuces) +s0rrow: shows [7d 9h] (two pair, Tens and Deuces) +Oswood collected €0.10 from pot +s0rrow collected €0.09 from pot +*** SUMMARY *** +Total pot €0.20 | Rake €0.01 +Board [2h Ts Th 2d As] +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: Oswood (small blind) showed [5s Qs] and won (€0.10) with two pair, Tens and Deuces +Seat 4: s0rrow (big blind) showed [7d 9h] and won (€0.09) with two pair, Tens and Deuces +Seat 6: PokerMill100 folded before Flop (didn't bet) + + + +PokerStars Game #35602819421: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:47:32 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 1: smokin_hot08 (€2 in chips) +Seat 2: HomerrrJay (€13.06 in chips) +Seat 3: Oswood (€14.49 in chips) +Seat 4: s0rrow (€9.36 in chips) +Seat 6: PokerMill100 (€7.63 in chips) +s0rrow: posts small blind €0.05 +PokerMill100: posts big blind €0.10 +smokin_hot08: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5c 8d] +smokin_hot08: raises €0.50 to €0.60 +HomerrrJay: folds +Oswood: folds +s0rrow: folds +PokerMill100: calls €0.50 +*** FLOP *** [Th Qh 2h] +PokerMill100: checks +smokin_hot08: bets €1.40 and is all-in +PokerMill100: calls €1.40 +*** TURN *** [Th Qh 2h] [3h] +*** RIVER *** [Th Qh 2h 3h] [Td] +*** SHOW DOWN *** +PokerMill100: shows [Ah Jc] (a flush, Ace high) +smokin_hot08: shows [9c 9d] (two pair, Tens and Nines) +PokerMill100 collected €3.86 from pot +*** SUMMARY *** +Total pot €4.05 | Rake €0.19 +Board [Th Qh 2h 3h Td] +Seat 1: smokin_hot08 showed [9c 9d] and lost with two pair, Tens and Nines +Seat 2: HomerrrJay folded before Flop (didn't bet) +Seat 3: Oswood (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 6: PokerMill100 (big blind) showed [Ah Jc] and won (€3.86) with a flush, Ace high + + + +PokerStars Game #35602834956: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:48:12 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€13.06 in chips) +Seat 3: Oswood (€14.49 in chips) +Seat 4: s0rrow (€9.31 in chips) +Seat 6: PokerMill100 (€9.49 in chips) +PokerMill100: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4s 5d] +smokin_hot08 leaves the table +Oswood: folds +s0rrow: folds +PokerMill100: calls €0.05 +HomerrrJay: checks +*** FLOP *** [Kh 7d Jc] +PokerMill100: checks +HomerrrJay: checks +*** TURN *** [Kh 7d Jc] [9h] +PokerMill100: checks +HomerrrJay: checks +*** RIVER *** [Kh 7d Jc 9h] [Kd] +PokerMill100: checks +HomerrrJay: checks +*** SHOW DOWN *** +PokerMill100: shows [5s 6d] (a pair of Kings) +HomerrrJay: shows [2h As] (a pair of Kings - Ace kicker) +PokerMill100 is sitting out +HomerrrJay collected €0.19 from pot +*** SUMMARY *** +Total pot €0.20 | Rake €0.01 +Board [Kh 7d Jc 9h Kd] +Seat 2: HomerrrJay (big blind) showed [2h As] and won (€0.19) with a pair of Kings +Seat 3: Oswood folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 6: PokerMill100 (small blind) showed [5s 6d] and lost with a pair of Kings + + + +PokerStars Game #35602844425: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:48:37 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€13.15 in chips) +Seat 3: Oswood (€14.49 in chips) +Seat 4: s0rrow (€9.31 in chips) +PokerMill100 leaves the table +Oswood: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9s Jd] +HomerrrJay: folds +Oswood: folds +Uncalled bet (€0.05) returned to s0rrow +s0rrow collected €0.10 from pot +*** SUMMARY *** +Total pot €0.10 | Rake €0 +Seat 2: HomerrrJay (button) folded before Flop (didn't bet) +Seat 3: Oswood (small blind) folded before Flop +Seat 4: s0rrow (big blind) collected (€0.10) + + + +PokerStars Game #35602847618: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:48:46 ET +Table 'Lampland' 6-max Seat #3 is the button +Seat 2: HomerrrJay (€13.15 in chips) +Seat 3: Oswood (€14.44 in chips) +Seat 4: s0rrow (€9.36 in chips) +s0rrow: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ad Th] +Oswood: folds +Oswood leaves the table +s0rrow: raises €0.20 to €0.30 +HomerrrJay: folds +Uncalled bet (€0.20) returned to s0rrow +s0rrow collected €0.20 from pot +*** SUMMARY *** +Total pot €0.20 | Rake €0 +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 3: Oswood (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) collected (€0.20) + + + +PokerStars Game #35602851942: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:48:57 ET +Table 'Lampland' 6-max Seat #2 is the button +Seat 2: HomerrrJay (€13.05 in chips) +Seat 4: s0rrow (€9.46 in chips) +HomerrrJay: posts small blind €0.05 +s0rrow: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4s Qd] +HomerrrJay: raises €0.20 to €0.30 +s0rrow: folds +Uncalled bet (€0.20) returned to HomerrrJay +HomerrrJay collected €0.20 from pot +HomerrrJay: doesn't show hand +*** SUMMARY *** +Total pot €0.20 | Rake €0 +Seat 2: HomerrrJay (button) (small blind) collected (€0.20) +Seat 4: s0rrow (big blind) folded before Flop + + + +PokerStars Game #35602855141: Hold'em No Limit (€0.05/€0.10 EUR) - 2009/11/20 7:49:05 ET +Table 'Lampland' 6-max Seat #4 is the button +Seat 2: HomerrrJay (€13.15 in chips) +Seat 4: s0rrow (€9.36 in chips) +s0rrow: posts small blind €0.05 +HomerrrJay: posts big blind €0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ad 8d] +s0rrow: raises €0.20 to €0.30 +HomerrrJay: folds +Uncalled bet (€0.20) returned to s0rrow +HomerrrJay leaves the table +s0rrow collected €0.20 from pot +*** SUMMARY *** +Total pot €0.20 | Rake €0 +Seat 2: HomerrrJay (big blind) folded before Flop +Seat 4: s0rrow (button) (small blind) collected (€0.20) + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200911.txt new file mode 100644 index 00000000..28f9d2ed --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200911.txt @@ -0,0 +1,2843 @@ +PokerStars Game #35824118297: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:21:05 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($9.60 in chips) +Seat 3: Pho3nix.two ($6.60 in chips) +Seat 4: k1tt9nM1nd ($10 in chips) +Seat 6: s0rrow ($10 in chips) +k1tt9nM1nd: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4c 8h] +shaunsaville joins the table at seat #2 +Gles65: folds +Pho3nix.two: folds +k1tt9nM1nd: raises $0.20 to $0.30 +s0rrow: folds +Uncalled bet ($0.20) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 3: Pho3nix.two (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) collected ($0.20) +Seat 6: s0rrow (big blind) folded before Flop + + + +PokerStars Game #35824123646: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:21:20 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($9.60 in chips) +Seat 2: shaunsaville ($2.65 in chips) +Seat 3: Pho3nix.two ($6.60 in chips) +Seat 4: k1tt9nM1nd ($10.10 in chips) +Seat 6: s0rrow ($9.90 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +shaunsaville: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9s 6h] +shaunsaville: checks +Pho3nix.two: calls $0.10 +k1tt9nM1nd: folds +s0rrow: folds +Gles65: checks +*** FLOP *** [Jh 2c Qc] +Gles65: checks +shaunsaville: checks +Pho3nix.two: bets $0.30 +Gles65: folds +shaunsaville: folds +Uncalled bet ($0.30) returned to Pho3nix.two +Pho3nix.two collected $0.35 from pot +Pho3nix.two: doesn't show hand +*** SUMMARY *** +Total pot $0.35 | Rake $0 +Board [Jh 2c Qc] +Seat 1: Gles65 (big blind) folded on the Flop +Seat 2: shaunsaville folded on the Flop +Seat 3: Pho3nix.two collected ($0.35) +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824134431: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:21:51 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($9.50 in chips) +Seat 2: shaunsaville ($2.55 in chips) +Seat 3: Pho3nix.two ($6.85 in chips) +Seat 4: k1tt9nM1nd ($10.10 in chips) +Seat 6: s0rrow ($9.85 in chips) +Gles65: posts small blind $0.05 +shaunsaville: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7h 3s] +Pho3nix.two: calls $0.10 +DSOR65 joins the table at seat #5 +k1tt9nM1nd: folds +s0rrow: folds +Gles65: folds +shaunsaville: checks +*** FLOP *** [3h 9s Th] +shaunsaville: checks +Pho3nix.two: checks +*** TURN *** [3h 9s Th] [8c] +shaunsaville: checks +Pho3nix.two: checks +*** RIVER *** [3h 9s Th 8c] [7d] +shaunsaville: checks +Pho3nix.two: bets $0.40 +shaunsaville: folds +Uncalled bet ($0.40) returned to Pho3nix.two +Pho3nix.two collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [3h 9s Th 8c 7d] +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: shaunsaville (big blind) folded on the River +Seat 3: Pho3nix.two collected ($0.25) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35824150484: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:22:38 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($9.45 in chips) +Seat 2: shaunsaville ($2.45 in chips) +Seat 3: Pho3nix.two ($7 in chips) +Seat 4: k1tt9nM1nd ($10.10 in chips) +Seat 5: DSOR65 ($6 in chips) +Seat 6: s0rrow ($9.85 in chips) +shaunsaville: posts small blind $0.05 +Pho3nix.two: posts big blind $0.10 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9d 3c] +k1tt9nM1nd: raises $0.30 to $0.40 +DSOR65: calls $0.30 +s0rrow: folds +Gles65: folds +shaunsaville: raises $2.05 to $2.45 and is all-in +Pho3nix.two: folds +k1tt9nM1nd: folds +DSOR65: calls $2.05 +*** FLOP *** [2h Ac Qd] +*** TURN *** [2h Ac Qd] [4c] +*** RIVER *** [2h Ac Qd 4c] [Js] +*** SHOW DOWN *** +shaunsaville: shows [5d 5s] (a pair of Fives) +DSOR65: shows [Jd Qs] (two pair, Queens and Jacks) +DSOR65 collected $5.15 from pot +*** SUMMARY *** +Total pot $5.40 | Rake $0.25 +Board [2h Ac Qd 4c Js] +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: shaunsaville (small blind) showed [5d 5s] and lost with a pair of Fives +Seat 3: Pho3nix.two (big blind) folded before Flop +Seat 4: k1tt9nM1nd folded before Flop +Seat 5: DSOR65 showed [Jd Qs] and won ($5.15) with two pair, Queens and Jacks +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824166461: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:23:24 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($9.45 in chips) +Seat 3: Pho3nix.two ($6.90 in chips) +Seat 4: k1tt9nM1nd ($10 in chips) +Seat 5: DSOR65 ($8.70 in chips) +Seat 6: s0rrow ($9.85 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5h Ts] +s0rrow: folds +shaunsaville leaves the table +Gles65: folds +Pho3nix.two: folds +k1tt9nM1nd: raises $0.20 to $0.30 +DSOR65: calls $0.20 +*** FLOP *** [2c Ac Th] +k1tt9nM1nd: bets $0.45 +DSOR65: folds +Uncalled bet ($0.45) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.60 from pot +*** SUMMARY *** +Total pot $0.60 | Rake $0 +Board [2c Ac Th] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 3: Pho3nix.two (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) collected ($0.60) +Seat 5: DSOR65 (big blind) folded on the Flop +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824176267: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:23:53 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($9.45 in chips) +Seat 3: Pho3nix.two ($6.90 in chips) +Seat 4: k1tt9nM1nd ($10.30 in chips) +Seat 5: DSOR65 ($8.40 in chips) +Seat 6: s0rrow ($9.85 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3d 3h] +Gles65: folds +Pho3nix.two: raises $0.20 to $0.30 +k1tt9nM1nd: folds +DSOR65: calls $0.25 +s0rrow: calls $0.20 +*** FLOP *** [9d 9h 2d] +DSOR65: checks +s0rrow: checks +Pho3nix.two: bets $0.40 +DSOR65: folds +s0rrow: calls $0.40 +*** TURN *** [9d 9h 2d] [8d] +s0rrow: checks +Dragsta03 joins the table at seat #2 +Pho3nix.two: bets $0.80 +s0rrow: calls $0.80 +*** RIVER *** [9d 9h 2d 8d] [Js] +s0rrow: checks +Pho3nix.two: bets $1 +s0rrow: calls $1 +*** SHOW DOWN *** +Pho3nix.two: shows [Ac As] (two pair, Aces and Nines) +s0rrow: mucks hand +Pho3nix.two collected $5.05 from pot +*** SUMMARY *** +Total pot $5.30 | Rake $0.25 +Board [9d 9h 2d 8d Js] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 3: Pho3nix.two showed [Ac As] and won ($5.05) with two pair, Aces and Nines +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 5: DSOR65 (small blind) folded on the Flop +Seat 6: s0rrow (big blind) mucked [3d 3h] + + + +PokerStars Game #35824195938: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:24:51 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($9.45 in chips) +Seat 2: Dragsta03 ($4 in chips) +Seat 3: Pho3nix.two ($9.45 in chips) +Seat 4: k1tt9nM1nd ($10.30 in chips) +Seat 5: DSOR65 ($8.10 in chips) +Seat 6: s0rrow ($7.35 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +Dragsta03: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Jd Qs] +Dragsta03: checks +Pho3nix.two: calls $0.10 +k1tt9nM1nd: raises $0.50 to $0.60 +DSOR65: folds +s0rrow: folds +Gles65: folds +Dragsta03: folds +Pho3nix.two: folds +Uncalled bet ($0.50) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.45 from pot +*** SUMMARY *** +Total pot $0.45 | Rake $0 +Seat 1: Gles65 (big blind) folded before Flop +Seat 2: Dragsta03 folded before Flop +Seat 3: Pho3nix.two folded before Flop +Seat 4: k1tt9nM1nd collected ($0.45) +Seat 5: DSOR65 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824204799: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:25:17 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($9.35 in chips) +Seat 2: Dragsta03 ($3.90 in chips) +Seat 3: Pho3nix.two ($9.35 in chips) +Seat 4: k1tt9nM1nd ($10.65 in chips) +Seat 5: DSOR65 ($8.10 in chips) +Seat 6: s0rrow ($7.30 in chips) +Gles65: posts small blind $0.05 +Dragsta03: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9c 8h] +Pho3nix.two: folds +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: folds +Gles65: folds +Dragsta03: checks +*** FLOP *** [Ac Qd 7s] +Dragsta03: checks +DSOR65: checks +*** TURN *** [Ac Qd 7s] [4d] +Dragsta03: checks +DSOR65: bets $0.10 +Dragsta03: folds +Uncalled bet ($0.10) returned to DSOR65 +DSOR65 collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [Ac Qd 7s 4d] +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Dragsta03 (big blind) folded on the Turn +Seat 3: Pho3nix.two folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 collected ($0.25) +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35824214441: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:25:46 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($9.30 in chips) +Seat 2: Dragsta03 ($3.80 in chips) +Seat 3: Pho3nix.two ($9.35 in chips) +Seat 4: k1tt9nM1nd ($10.65 in chips) +Seat 5: DSOR65 ($8.25 in chips) +Seat 6: s0rrow ($7.30 in chips) +Dragsta03: posts small blind $0.05 +Pho3nix.two: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3d 6h] +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: folds +Gles65: folds +Dragsta03: calls $0.05 +Pho3nix.two: checks +*** FLOP *** [Tc 2c 5h] +Dragsta03: checks +Pho3nix.two: checks +*** TURN *** [Tc 2c 5h] [Qh] +Dragsta03: checks +Pho3nix.two: checks +*** RIVER *** [Tc 2c 5h Qh] [8d] +Dragsta03: checks +Pho3nix.two: checks +*** SHOW DOWN *** +Dragsta03: shows [7s Ah] (high card Ace) +Pho3nix.two: mucks hand +Dragsta03 collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [Tc 2c 5h Qh 8d] +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Dragsta03 (small blind) showed [7s Ah] and won ($0.20) with high card Ace +Seat 3: Pho3nix.two (big blind) mucked [7c 3h] +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824225047: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:26:17 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($9.30 in chips) +Seat 2: Dragsta03 ($3.90 in chips) +Seat 3: Pho3nix.two ($9.25 in chips) +Seat 4: k1tt9nM1nd ($10.65 in chips) +Seat 5: DSOR65 ($8.25 in chips) +Seat 6: s0rrow ($7.30 in chips) +Pho3nix.two: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 4h] +DSOR65: folds +s0rrow: raises $0.20 to $0.30 +Gles65: folds +Dragsta03: folds +Pho3nix.two: folds +k1tt9nM1nd: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Dragsta03 (button) folded before Flop (didn't bet) +Seat 3: Pho3nix.two (small blind) folded before Flop +Seat 4: k1tt9nM1nd (big blind) folded before Flop +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow collected ($0.25) + + + +PokerStars Game #35824234443: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:26:44 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($9.30 in chips) +Seat 2: Dragsta03 ($3.90 in chips) +Seat 3: Pho3nix.two ($9.20 in chips) +Seat 4: k1tt9nM1nd ($10.55 in chips) +Seat 5: DSOR65 ($8.25 in chips) +Seat 6: s0rrow ($7.45 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9s Ac] +s0rrow: folds +Gles65: folds +Dragsta03: folds +Pho3nix.two: raises $0.20 to $0.30 +k1tt9nM1nd: raises $0.90 to $1.20 +DSOR65: folds +Pho3nix.two: folds +Uncalled bet ($0.90) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.70 from pot +*** SUMMARY *** +Total pot $0.70 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Dragsta03 folded before Flop (didn't bet) +Seat 3: Pho3nix.two (button) folded before Flop +Seat 4: k1tt9nM1nd (small blind) collected ($0.70) +Seat 5: DSOR65 (big blind) folded before Flop +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824248670: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:27:26 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($9.30 in chips) +Seat 2: Dragsta03 ($3.90 in chips) +Seat 3: Pho3nix.two ($8.90 in chips) +Seat 4: k1tt9nM1nd ($10.95 in chips) +Seat 5: DSOR65 ($8.15 in chips) +Seat 6: s0rrow ($7.45 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6s 2c] +Gles65: folds +Dragsta03: folds +Pho3nix.two: folds +Pho3nix.two is sitting out +k1tt9nM1nd: folds +DSOR65: calls $0.05 +s0rrow: checks +*** FLOP *** [Kc 2h 7s] +DSOR65: checks +s0rrow: bets $0.20 +DSOR65: calls $0.20 +*** TURN *** [Kc 2h 7s] [5h] +DSOR65: checks +s0rrow: checks +*** RIVER *** [Kc 2h 7s 5h] [8c] +DSOR65: bets $0.70 +s0rrow: calls $0.70 +*** SHOW DOWN *** +DSOR65: shows [6c Kd] (a pair of Kings) +s0rrow: mucks hand +DSOR65 collected $1.90 from pot +*** SUMMARY *** +Total pot $2 | Rake $0.10 +Board [Kc 2h 7s 5h 8c] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Dragsta03 folded before Flop (didn't bet) +Seat 3: Pho3nix.two folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 5: DSOR65 (small blind) showed [6c Kd] and won ($1.90) with a pair of Kings +Seat 6: s0rrow (big blind) mucked [6s 2c] + + + +PokerStars Game #35824262964: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:28:08 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($9.30 in chips) +Seat 2: Dragsta03 ($3.90 in chips) +Seat 4: k1tt9nM1nd ($10.95 in chips) +Seat 5: DSOR65 ($9.05 in chips) +Seat 6: s0rrow ($6.45 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 9c] +Dragsta03: folds +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: raises $0.20 to $0.30 +Pho3nix.two has returned +Gles65: folds +DSOR65: calls $0.20 +*** FLOP *** [Td 7c Jc] +s0rrow: bets $0.50 +DSOR65: calls $0.50 +*** TURN *** [Td 7c Jc] [9s] +s0rrow: checks +DSOR65: bets $1 +s0rrow: calls $1 +*** RIVER *** [Td 7c Jc 9s] [Qs] +s0rrow: checks +DSOR65: checks +*** SHOW DOWN *** +s0rrow: shows [Kc 9c] (a straight, Nine to King) +DSOR65: mucks hand +s0rrow collected $3.55 from pot +*** SUMMARY *** +Total pot $3.70 | Rake $0.15 +Board [Td 7c Jc 9s Qs] +Seat 1: Gles65 (big blind) folded before Flop +Seat 2: Dragsta03 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 (button) mucked [8h Jh] +Seat 6: s0rrow (small blind) showed [Kc 9c] and won ($3.55) with a straight, Nine to King + + + +PokerStars Game #35824281084: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:29:01 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($9.20 in chips) +Seat 2: Dragsta03 ($3.90 in chips) +Seat 3: Pho3nix.two ($8.90 in chips) +Seat 4: k1tt9nM1nd ($10.95 in chips) +Seat 5: DSOR65 ($7.25 in chips) +Seat 6: s0rrow ($8.20 in chips) +Gles65: posts small blind $0.05 +Dragsta03: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [8s 9s] +Pho3nix.two: calls $0.10 +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: raises $0.30 to $0.40 +Gles65: calls $0.35 +Dragsta03: folds +Pho3nix.two: calls $0.30 +DSOR65: calls $0.30 +*** FLOP *** [Ah Tc 2d] +Gles65: checks +Pho3nix.two: checks +DSOR65: bets $0.40 +s0rrow: folds +Gles65: folds +Pho3nix.two: calls $0.40 +*** TURN *** [Ah Tc 2d] [Ks] +Pho3nix.two: checks +DSOR65: bets $0.60 +Pho3nix.two: folds +Uncalled bet ($0.60) returned to DSOR65 +DSOR65 collected $2.40 from pot +*** SUMMARY *** +Total pot $2.50 | Rake $0.10 +Board [Ah Tc 2d Ks] +Seat 1: Gles65 (small blind) folded on the Flop +Seat 2: Dragsta03 (big blind) folded before Flop +Seat 3: Pho3nix.two folded on the Turn +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 collected ($2.40) +Seat 6: s0rrow (button) folded on the Flop + + + +PokerStars Game #35824302250: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:30:03 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Dragsta03 ($3.80 in chips) +Seat 3: Pho3nix.two ($8.10 in chips) +Seat 4: k1tt9nM1nd ($10.95 in chips) +Seat 5: DSOR65 ($8.85 in chips) +Seat 6: s0rrow ($7.80 in chips) +Dragsta03: posts small blind $0.05 +Pho3nix.two: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7h Kh] +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: folds +Gles65: folds +Dragsta03: calls $0.05 +Pho3nix.two: checks +*** FLOP *** [9d Ts 4c] +Dragsta03: checks +Pho3nix.two: checks +DSOR65: checks +*** TURN *** [9d Ts 4c] [Kd] +Dragsta03: checks +Pho3nix.two: folds +Pho3nix.two is sitting out +DSOR65: bets $0.10 +Dragsta03: folds +Uncalled bet ($0.10) returned to DSOR65 +DSOR65 collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [9d Ts 4c Kd] +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Dragsta03 (small blind) folded on the Turn +Seat 3: Pho3nix.two (big blind) folded on the Turn +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 collected ($0.30) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824317532: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:30:48 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Dragsta03 ($3.70 in chips) +Seat 4: k1tt9nM1nd ($10.95 in chips) +Seat 5: DSOR65 ($9.05 in chips) +Seat 6: s0rrow ($7.80 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5d 6h] +s0rrow: folds +Gles65: folds +Dragsta03: calls $0.10 +k1tt9nM1nd: folds +DSOR65: checks +*** FLOP *** [6s 3c 3s] +DSOR65: checks +Dragsta03: checks +*** TURN *** [6s 3c 3s] [As] +DSOR65: bets $0.10 +Dragsta03: folds +Uncalled bet ($0.10) returned to DSOR65 +DSOR65 collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [6s 3c 3s As] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Dragsta03 (button) folded on the Turn +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: DSOR65 (big blind) collected ($0.25) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824327130: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:31:15 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Dragsta03 ($3.60 in chips) +Seat 4: k1tt9nM1nd ($10.90 in chips) +Seat 5: DSOR65 ($9.20 in chips) +Seat 6: s0rrow ($7.80 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7d Qd] +Gles65: folds +Dragsta03: folds +k1tt9nM1nd: folds +DSOR65: calls $0.05 +s0rrow: checks +*** FLOP *** [Jh 7s Qh] +DSOR65: checks +s0rrow: bets $0.20 +DSOR65: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [Jh 7s Qh] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Dragsta03 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 5: DSOR65 (small blind) folded on the Flop +Seat 6: s0rrow (big blind) collected ($0.20) + + + +PokerStars Game #35824337081: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:31:44 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Dragsta03 ($3.60 in chips) +Seat 4: k1tt9nM1nd ($10.90 in chips) +Seat 5: DSOR65 ($9.10 in chips) +Seat 6: s0rrow ($7.90 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9h Ah] +Dragsta03: folds +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: calls $0.05 +Gles65: checks +*** FLOP *** [6c 6h 2c] +s0rrow: checks +Pho3nix.two has returned +Gles65: bets $0.30 +DSOR65: folds +s0rrow: folds +Uncalled bet ($0.30) returned to Gles65 +Gles65 collected $0.30 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [6c 6h 2c] +Seat 1: Gles65 (big blind) collected ($0.30) +Seat 2: Dragsta03 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 (button) folded on the Flop +Seat 6: s0rrow (small blind) folded on the Flop + + + +PokerStars Game #35824354870: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:32:36 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($10.20 in chips) +Seat 2: Dragsta03 ($3.60 in chips) +Seat 4: k1tt9nM1nd ($10.90 in chips) +Seat 5: DSOR65 ($9 in chips) +Seat 6: s0rrow ($7.80 in chips) +Gles65: posts small blind $0.05 +Dragsta03: posts big blind $0.10 +Pho3nix.two: sits out +*** HOLE CARDS *** +Dealt to s0rrow [7h 7s] +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: raises $0.20 to $0.30 +Gles65: folds +Dragsta03: calls $0.20 +*** FLOP *** [8d 9h Jh] +Dragsta03: checks +s0rrow: bets $0.50 +Dragsta03: folds +Uncalled bet ($0.50) returned to s0rrow +s0rrow collected $0.65 from pot +*** SUMMARY *** +Total pot $0.65 | Rake $0 +Board [8d 9h Jh] +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Dragsta03 (big blind) folded on the Flop +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow (button) collected ($0.65) + + + +PokerStars Game #35824372562: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:33:29 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($10.15 in chips) +Seat 4: k1tt9nM1nd ($10.90 in chips) +Seat 5: DSOR65 ($9 in chips) +Seat 6: s0rrow ($8.15 in chips) +Dragsta03: is sitting out +Pho3nix.two will be allowed to play after the button +Dragsta03 leaves the table +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 2c] +s0rrow: folds +Gles65: folds +Swiss777 joins the table at seat #2 +k1tt9nM1nd: folds +Uncalled bet ($0.05) returned to DSOR65 +DSOR65 collected $0.10 from pot +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: DSOR65 (big blind) collected ($0.10) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824379534: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:33:49 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($10.15 in chips) +Seat 4: k1tt9nM1nd ($10.85 in chips) +Seat 5: DSOR65 ($9.05 in chips) +Seat 6: s0rrow ($8.15 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +Swiss777: sits out +Pho3nix.two: sits out +*** HOLE CARDS *** +Dealt to s0rrow [4d Js] +Gles65: folds +k1tt9nM1nd: folds +DSOR65: calls $0.05 +s0rrow: checks +*** FLOP *** [Qd 2c 5d] +DSOR65: checks +s0rrow: checks +*** TURN *** [Qd 2c 5d] [6s] +DSOR65: checks +s0rrow: checks +*** RIVER *** [Qd 2c 5d 6s] [3s] +DSOR65: checks +s0rrow: bets $0.30 +DSOR65: folds +Uncalled bet ($0.30) returned to s0rrow +s0rrow collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [Qd 2c 5d 6s 3s] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 5: DSOR65 (small blind) folded on the River +Seat 6: s0rrow (big blind) collected ($0.20) + + + +PokerStars Game #35824392581: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:34:27 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($10.15 in chips) +Seat 4: k1tt9nM1nd ($10.85 in chips) +Seat 5: DSOR65 ($8.95 in chips) +Seat 6: s0rrow ($8.25 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +Swiss777: sits out +Pho3nix.two: sits out +*** HOLE CARDS *** +Dealt to s0rrow [7h 2h] +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: folds +Uncalled bet ($0.05) returned to Gles65 +Gles65 collected $0.10 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (big blind) collected ($0.10) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824396158: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:34:37 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($10.20 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 4: k1tt9nM1nd ($10.85 in chips) +Seat 5: DSOR65 ($8.95 in chips) +Seat 6: s0rrow ($8.20 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +Pho3nix.two: sits out +*** HOLE CARDS *** +Dealt to s0rrow [Qd Qs] +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: raises $0.20 to $0.30 +Gles65: raises $0.60 to $0.90 +Swiss777: folds +s0rrow: calls $0.60 +*** FLOP *** [8d Ks 3s] +Gles65: bets $1.30 +s0rrow: calls $1.30 +*** TURN *** [8d Ks 3s] [4s] +Gles65: checks +s0rrow: bets $6 and is all-in +Gles65: folds +Uncalled bet ($6) returned to s0rrow +s0rrow collected $4.30 from pot +*** SUMMARY *** +Total pot $4.50 | Rake $0.20 +Board [8d Ks 3s 4s] +Seat 1: Gles65 (small blind) folded on the Turn +Seat 2: Swiss777 (big blind) folded before Flop +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow (button) collected ($4.30) + + + +PokerStars Game #35824426363: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:36:06 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Pho3nix.two ($8 in chips) +Seat 4: k1tt9nM1nd ($10.85 in chips) +Seat 5: DSOR65 ($8.95 in chips) +Seat 6: s0rrow ($10.30 in chips) +Swiss777: posts small blind $0.05 +Pho3nix.two: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qc Ad] +k1tt9nM1nd: raises $0.30 to $0.40 +DSOR65: calls $0.40 +s0rrow: calls $0.40 +Gles65 has timed out +Gles65: folds +Gles65 is sitting out +Gles65 has returned +Swiss777: folds +Pho3nix.two: folds +*** FLOP *** [Td 8c Ac] +k1tt9nM1nd: bets $1 +DSOR65: calls $1 +s0rrow: calls $1 +*** TURN *** [Td 8c Ac] [6h] +k1tt9nM1nd: checks +DSOR65: checks +s0rrow: checks +*** RIVER *** [Td 8c Ac 6h] [Tc] +k1tt9nM1nd: checks +DSOR65: checks +s0rrow: checks +*** SHOW DOWN *** +k1tt9nM1nd: shows [Jh As] (two pair, Aces and Tens) +DSOR65: mucks hand +s0rrow: shows [Qc Ad] (two pair, Aces and Tens - Queen kicker) +s0rrow collected $4.15 from pot +*** SUMMARY *** +Total pot $4.35 | Rake $0.20 +Board [Td 8c Ac 6h Tc] +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: Pho3nix.two (big blind) folded before Flop +Seat 4: k1tt9nM1nd showed [Jh As] and lost with two pair, Aces and Tens +Seat 5: DSOR65 mucked [Ks Js] +Seat 6: s0rrow showed [Qc Ad] and won ($4.15) with two pair, Aces and Tens + + + +PokerStars Game #35824453955: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:37:27 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Pho3nix.two ($7.90 in chips) +Seat 4: k1tt9nM1nd ($10 in chips) +Seat 5: DSOR65 ($7.55 in chips) +Seat 6: s0rrow ($13.05 in chips) +Pho3nix.two: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 9h] +DSOR65: calls $0.10 +s0rrow: calls $0.10 +Gles65 has timed out +Gles65: folds +Gles65 is sitting out +Gles65 has returned +Swiss777: folds +Pho3nix.two: calls $0.05 +k1tt9nM1nd: checks +*** FLOP *** [3c 4s 7h] +Pho3nix.two: checks +k1tt9nM1nd: checks +DSOR65: checks +s0rrow: checks +*** TURN *** [3c 4s 7h] [Kc] +Pho3nix.two: checks +k1tt9nM1nd: bets $0.40 +DSOR65: folds +s0rrow: folds +Pho3nix.two: folds +Uncalled bet ($0.40) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.40 from pot +*** SUMMARY *** +Total pot $0.40 | Rake $0 +Board [3c 4s 7h Kc] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 (button) folded before Flop (didn't bet) +Seat 3: Pho3nix.two (small blind) folded on the Turn +Seat 4: k1tt9nM1nd (big blind) collected ($0.40) +Seat 5: DSOR65 folded on the Turn +Seat 6: s0rrow folded on the Turn + + + +PokerStars Game #35824474603: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:38:28 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Pho3nix.two ($7.80 in chips) +Seat 4: k1tt9nM1nd ($10.30 in chips) +Seat 5: DSOR65 ($7.45 in chips) +Seat 6: s0rrow ($12.95 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7d Ac] +s0rrow: folds +Gles65: folds +Swiss777: folds +Pho3nix.two: raises $0.20 to $0.30 +k1tt9nM1nd: folds +DSOR65: calls $0.20 +*** FLOP *** [7c 4s 3h] +DSOR65: bets $0.40 +Pho3nix.two: raises $0.80 to $1.20 +DSOR65: calls $0.80 +*** TURN *** [7c 4s 3h] [2c] +DSOR65: checks +Pho3nix.two: bets $1.90 +DSOR65: calls $1.90 +*** RIVER *** [7c 4s 3h 2c] [Tc] +DSOR65: checks +Pho3nix.two: checks +*** SHOW DOWN *** +DSOR65: shows [5h 5d] (a pair of Fives) +Pho3nix.two: mucks hand +DSOR65 collected $6.55 from pot +*** SUMMARY *** +Total pot $6.85 | Rake $0.30 +Board [7c 4s 3h 2c Tc] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Pho3nix.two (button) mucked [Js 8c] +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: DSOR65 (big blind) showed [5h 5d] and won ($6.55) with a pair of Fives +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824510640: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:40:13 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Pho3nix.two ($4.40 in chips) +Seat 4: k1tt9nM1nd ($10.25 in chips) +Seat 5: DSOR65 ($10.60 in chips) +Seat 6: s0rrow ($12.95 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4c 5c] +Gles65: folds +Swiss777: folds +Pho3nix.two: folds +k1tt9nM1nd: folds +DSOR65: calls $0.05 +s0rrow: checks +*** FLOP *** [5s 5d 5h] +DSOR65: checks +s0rrow: checks +*** TURN *** [5s 5d 5h] [6c] +DSOR65: bets $0.10 +s0rrow: calls $0.10 +*** RIVER *** [5s 5d 5h 6c] [2h] +DSOR65: bets $0.10 +s0rrow: raises $0.30 to $0.40 +DSOR65: folds +Uncalled bet ($0.30) returned to s0rrow +s0rrow collected $0.60 from pot +*** SUMMARY *** +Total pot $0.60 | Rake $0 +Board [5s 5d 5h 6c 2h] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Pho3nix.two folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 5: DSOR65 (small blind) folded on the River +Seat 6: s0rrow (big blind) collected ($0.60) + + + +PokerStars Game #35824527128: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:41:01 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Pho3nix.two ($4.40 in chips) +Seat 4: k1tt9nM1nd ($10.25 in chips) +Seat 5: DSOR65 ($10.30 in chips) +Seat 6: s0rrow ($13.25 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4h Qh] +Swiss777: folds +Pho3nix.two: calls $0.10 +k1tt9nM1nd: raises $0.40 to $0.50 +DSOR65: folds +s0rrow: folds +Gles65: folds +Pho3nix.two: calls $0.40 +*** FLOP *** [9h 8s 3c] +Pho3nix.two: checks +k1tt9nM1nd: bets $0.70 +Pho3nix.two: raises $1.10 to $1.80 +k1tt9nM1nd: raises $7.50 to $9.30 +Pho3nix.two: calls $2.10 and is all-in +Uncalled bet ($5.40) returned to k1tt9nM1nd +*** TURN *** [9h 8s 3c] [8d] +*** RIVER *** [9h 8s 3c 8d] [4c] +*** SHOW DOWN *** +Pho3nix.two: shows [Jd 9s] (two pair, Nines and Eights) +k1tt9nM1nd: shows [Ac 9d] (two pair, Nines and Eights - Ace kicker) +k1tt9nM1nd collected $8.55 from pot +*** SUMMARY *** +Total pot $8.95 | Rake $0.40 +Board [9h 8s 3c 8d 4c] +Seat 1: Gles65 (big blind) folded before Flop +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Pho3nix.two showed [Jd 9s] and lost with two pair, Nines and Eights +Seat 4: k1tt9nM1nd showed [Ac 9d] and won ($8.55) with two pair, Nines and Eights +Seat 5: DSOR65 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824546507: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:41:58 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($9.90 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 4: k1tt9nM1nd ($14.40 in chips) +Seat 5: DSOR65 ($10.30 in chips) +Seat 6: s0rrow ($13.20 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3c Qc] +k1tt9nM1nd: folds +Pho3nix.two leaves the table +DSOR65: calls $0.10 +s0rrow: folds +Gles65: calls $0.05 +Dashornman joins the table at seat #3 +Swiss777: checks +*** FLOP *** [Td Jc 5c] +Gles65: bets $0.20 +Swiss777: folds +DSOR65: calls $0.20 +*** TURN *** [Td Jc 5c] [6c] +Gles65: checks +DSOR65: bets $0.60 +Gles65: calls $0.60 +*** RIVER *** [Td Jc 5c 6c] [8d] +Gles65: checks +DSOR65: bets $1.30 +Gles65: calls $1.30 +*** SHOW DOWN *** +DSOR65: shows [Kc Kh] (a pair of Kings) +Gles65: shows [9d Qh] (a straight, Eight to Queen) +Gles65 collected $4.30 from pot +*** SUMMARY *** +Total pot $4.50 | Rake $0.20 +Board [Td Jc 5c 6c 8d] +Seat 1: Gles65 (small blind) showed [9d Qh] and won ($4.30) with a straight, Eight to Queen +Seat 2: Swiss777 (big blind) folded on the Flop +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 showed [Kc Kh] and lost with a pair of Kings +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35824571658: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:43:09 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($12 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Dashornman ($10 in chips) +Seat 4: k1tt9nM1nd ($14.40 in chips) +Seat 5: DSOR65 ($8.10 in chips) +Seat 6: s0rrow ($13.20 in chips) +Swiss777: posts small blind $0.05 +Dashornman: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4c Qh] +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.05) returned to Dashornman +Dashornman collected $0.10 from pot +Dashornman: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: Dashornman (big blind) collected ($0.10) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824579763: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:43:33 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($12 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Dashornman ($10.05 in chips) +Seat 4: k1tt9nM1nd ($14.40 in chips) +Seat 5: DSOR65 ($8.10 in chips) +Seat 6: s0rrow ($13.20 in chips) +Dashornman: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Qh] +DSOR65: folds +s0rrow: raises $0.20 to $0.30 +Gles65: calls $0.30 +Swiss777: calls $0.30 +Dashornman: folds +k1tt9nM1nd: folds +*** FLOP *** [4h Td Qs] +s0rrow: checks +Gles65: bets $1 +Swiss777: folds +s0rrow: calls $1 +*** TURN *** [4h Td Qs] [7h] +s0rrow: checks +Gles65: bets $3 +s0rrow: calls $3 +*** RIVER *** [4h Td Qs 7h] [6c] +s0rrow: bets $8.90 and is all-in +Gles65: calls $7.70 and is all-in +Uncalled bet ($1.20) returned to s0rrow +*** SHOW DOWN *** +s0rrow: shows [Qd Qh] (three of a kind, Queens) +Gles65: shows [Ad Ac] (a pair of Aces) +s0rrow collected $23.25 from pot +*** SUMMARY *** +Total pot $24.45 | Rake $1.20 +Board [4h Td Qs 7h 6c] +Seat 1: Gles65 showed [Ad Ac] and lost with a pair of Aces +Seat 2: Swiss777 (button) folded on the Flop +Seat 3: Dashornman (small blind) folded before Flop +Seat 4: k1tt9nM1nd (big blind) folded before Flop +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow showed [Qd Qh] and won ($23.25) with three of a kind, Queens + + + +PokerStars Game #35824607306: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:44:52 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 3: Dashornman ($10 in chips) +Seat 4: k1tt9nM1nd ($14.30 in chips) +Seat 5: DSOR65 ($8.10 in chips) +Seat 6: s0rrow ($24.45 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4s 9c] +s0rrow: folds +Gles65: folds +Swiss777: folds +Dashornman: folds +Dashornman is sitting out +k1tt9nM1nd: folds +Uncalled bet ($0.05) returned to DSOR65 +DSOR65 collected $0.10 from pot +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Dashornman (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: DSOR65 (big blind) collected ($0.10) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824615928: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:45:15 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($10 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 4: k1tt9nM1nd ($14.25 in chips) +Seat 5: DSOR65 ($8.15 in chips) +Seat 6: s0rrow ($24.45 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6d 5h] +Gles65: calls $0.10 +Swiss777: folds +k1tt9nM1nd: raises $0.40 to $0.50 +DSOR65: calls $0.45 +s0rrow: folds +Gles65: calls $0.40 +*** FLOP *** [3s 6h 8s] +DSOR65: checks +Gles65: checks +k1tt9nM1nd: bets $1.20 +DSOR65: folds +Gles65: folds +Uncalled bet ($1.20) returned to k1tt9nM1nd +k1tt9nM1nd collected $1.55 from pot +*** SUMMARY *** +Total pot $1.60 | Rake $0.05 +Board [3s 6h 8s] +Seat 1: Gles65 folded on the Flop +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) collected ($1.55) +Seat 5: DSOR65 (small blind) folded on the Flop +Seat 6: s0rrow (big blind) folded before Flop + + + +PokerStars Game #35824637340: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:46:15 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($9.50 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 4: k1tt9nM1nd ($15.30 in chips) +Seat 5: DSOR65 ($7.65 in chips) +Seat 6: s0rrow ($24.35 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Td 5h] +Swiss777: folds +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: folds +Uncalled bet ($0.05) returned to Gles65 +Gles65 collected $0.10 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (big blind) collected ($0.10) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824641385: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:46:26 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($9.55 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 4: k1tt9nM1nd ($15.30 in chips) +Seat 5: DSOR65 ($7.65 in chips) +Seat 6: s0rrow ($24.30 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 5s] +k1tt9nM1nd: folds +DSOR65 has timed out +DSOR65: folds +DSOR65 is sitting out +s0rrow: folds +Gles65: folds +Uncalled bet ($0.05) returned to Swiss777 +Swiss777 collected $0.10 from pot +Swiss777: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Swiss777 (big blind) collected ($0.10) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35824651611: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:46:54 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($9.50 in chips) +Seat 2: Swiss777 ($10.05 in chips) +Seat 4: k1tt9nM1nd ($15.30 in chips) +Seat 6: s0rrow ($24.30 in chips) +Swiss777: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 8s] +s0rrow: folds +DSOR65 has returned +Gles65: folds +Swiss777: folds +Uncalled bet ($0.05) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.10 from pot +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 4: k1tt9nM1nd (big blind) collected ($0.10) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824656751: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:47:08 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($9.50 in chips) +Seat 2: Swiss777 ($10 in chips) +Seat 4: k1tt9nM1nd ($15.35 in chips) +Seat 5: DSOR65 ($7.65 in chips) +Seat 6: s0rrow ($24.30 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6d Qc] +s0rrow: folds +Gles65: folds +Swiss777: raises $0.30 to $0.40 +k1tt9nM1nd: folds +DSOR65: calls $0.30 +*** FLOP *** [4h 4c 8s] +DSOR65: checks +Swiss777: bets $0.70 +DSOR65: calls $0.70 +*** TURN *** [4h 4c 8s] [Ts] +Dashornman leaves the table +DSOR65: checks +Swiss777: checks +*** RIVER *** [4h 4c 8s Ts] [3s] +StifflerPL joins the table at seat #3 +DSOR65: bets $1.30 +Swiss777: calls $1.30 +*** SHOW DOWN *** +DSOR65: shows [8d Jc] (two pair, Eights and Fours) +Swiss777: shows [9d 9s] (two pair, Nines and Fours) +Swiss777 collected $4.65 from pot +*** SUMMARY *** +Total pot $4.85 | Rake $0.20 +Board [4h 4c 8s Ts 3s] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 (button) showed [9d 9s] and won ($4.65) with two pair, Nines and Fours +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: DSOR65 (big blind) showed [8d Jc] and lost with two pair, Eights and Fours +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824669713: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:47:44 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($9.50 in chips) +Seat 2: Swiss777 ($12.25 in chips) +Seat 4: k1tt9nM1nd ($15.30 in chips) +Seat 5: DSOR65 ($5.25 in chips) +Seat 6: s0rrow ($24.30 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +StifflerPL: sits out +*** HOLE CARDS *** +Dealt to s0rrow [Js 9c] +Gles65 has timed out +Gles65: folds +Gles65 is sitting out +Gles65 has returned +Swiss777: folds +k1tt9nM1nd: raises $0.20 to $0.30 +DSOR65: calls $0.25 +s0rrow: folds +*** FLOP *** [4s Jc 4c] +DSOR65: checks +k1tt9nM1nd: checks +*** TURN *** [4s Jc 4c] [8s] +DSOR65: bets $0.50 +k1tt9nM1nd: folds +Uncalled bet ($0.50) returned to DSOR65 +DSOR65 collected $0.70 from pot +*** SUMMARY *** +Total pot $0.70 | Rake $0 +Board [4s Jc 4c 8s] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) folded on the Turn +Seat 5: DSOR65 (small blind) collected ($0.70) +Seat 6: s0rrow (big blind) folded before Flop + + + +PokerStars Game #35824693077: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:48:48 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($9.50 in chips) +Seat 2: Swiss777 ($12.25 in chips) +Seat 3: StifflerPL ($10 in chips) +Seat 4: k1tt9nM1nd ($15 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($24.20 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +StifflerPL: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 7d] +Swiss777: folds +StifflerPL: checks +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: calls $0.05 +Gles65: checks +*** FLOP *** [5d Td Ac] +s0rrow: checks +Gles65: checks +StifflerPL: checks +*** TURN *** [5d Td Ac] [4s] +s0rrow: bets $0.20 +Gles65: folds +StifflerPL: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [5d Td Ac 4s] +Seat 1: Gles65 (big blind) folded on the Turn +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: StifflerPL folded on the Turn +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) collected ($0.30) + + + +PokerStars Game #35824715133: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:49:49 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($9.40 in chips) +Seat 2: Swiss777 ($12.25 in chips) +Seat 3: StifflerPL ($9.90 in chips) +Seat 4: k1tt9nM1nd ($15 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($24.40 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9s 7s] +StifflerPL: folds +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: raises $0.20 to $0.30 +Gles65: calls $0.25 +Swiss777: folds +DSOR65: calls $0.20 +*** FLOP *** [3c Qc Js] +Gles65: checks +DSOR65: checks +s0rrow: bets $0.60 +Gles65: calls $0.60 +DSOR65: folds +*** TURN *** [3c Qc Js] [Kd] +Gles65: checks +s0rrow: bets $1.50 +Gles65: calls $1.50 +*** RIVER *** [3c Qc Js Kd] [3s] +Gles65: bets $7 and is all-in +s0rrow: folds +Uncalled bet ($7) returned to Gles65 +Gles65 collected $4.95 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $5.20 | Rake $0.25 +Board [3c Qc Js Kd 3s] +Seat 1: Gles65 (small blind) collected ($4.95) +Seat 2: Swiss777 (big blind) folded before Flop +Seat 3: StifflerPL folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded on the Flop +Seat 6: s0rrow (button) folded on the River + + + +PokerStars Game #35824742563: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:51:06 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($12.15 in chips) +Seat 3: StifflerPL ($9.90 in chips) +Seat 4: k1tt9nM1nd ($15 in chips) +Seat 5: DSOR65 ($5.35 in chips) +Seat 6: s0rrow ($22 in chips) +Swiss777: posts small blind $0.05 +StifflerPL: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 4h] +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: folds +Gles65: folds +Swiss777: folds +StifflerPL: checks +*** FLOP *** [3d 5d 3s] +StifflerPL: checks +DSOR65: checks +*** TURN *** [3d 5d 3s] [5c] +StifflerPL: bets $0.20 +DSOR65: calls $0.20 +*** RIVER *** [3d 5d 3s 5c] [Ac] +StifflerPL: bets $0.70 +DSOR65: folds +Uncalled bet ($0.70) returned to StifflerPL +StifflerPL collected $0.65 from pot +StifflerPL: doesn't show hand +*** SUMMARY *** +Total pot $0.65 | Rake $0 +Board [3d 5d 3s 5c Ac] +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: StifflerPL (big blind) collected ($0.65) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded on the River +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824756274: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:51:44 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($12.10 in chips) +Seat 3: StifflerPL ($10.25 in chips) +Seat 4: k1tt9nM1nd ($15 in chips) +Seat 5: DSOR65 ($5.05 in chips) +Seat 6: s0rrow ($22 in chips) +StifflerPL: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 5d] +DSOR65: calls $0.10 +s0rrow: folds +Gles65: folds +Swiss777: raises $0.40 to $0.50 +StifflerPL: folds +k1tt9nM1nd: folds +DSOR65: raises $0.50 to $1 +Swiss777: folds +Uncalled bet ($0.50) returned to DSOR65 +DSOR65 collected $1.15 from pot +*** SUMMARY *** +Total pot $1.15 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 (button) folded before Flop +Seat 3: StifflerPL (small blind) folded before Flop +Seat 4: k1tt9nM1nd (big blind) folded before Flop +Seat 5: DSOR65 collected ($1.15) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824768358: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:52:18 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($11.60 in chips) +Seat 3: StifflerPL ($10.20 in chips) +Seat 4: k1tt9nM1nd ($14.90 in chips) +Seat 5: DSOR65 ($5.70 in chips) +Seat 6: s0rrow ($22 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 5c] +s0rrow: folds +Gles65: folds +Swiss777: folds +StifflerPL: folds +k1tt9nM1nd: folds +Uncalled bet ($0.05) returned to DSOR65 +DSOR65 collected $0.10 from pot +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: StifflerPL (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: DSOR65 (big blind) collected ($0.10) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824777248: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:52:43 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($11.60 in chips) +Seat 3: StifflerPL ($10.20 in chips) +Seat 4: k1tt9nM1nd ($14.85 in chips) +Seat 5: DSOR65 ($5.75 in chips) +Seat 6: s0rrow ($22 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3c Jc] +Gles65: folds +Swiss777: folds +StifflerPL: calls $0.10 +k1tt9nM1nd: folds +DSOR65: calls $0.05 +s0rrow: checks +*** FLOP *** [Ah Ts 2d] +DSOR65: checks +s0rrow: checks +StifflerPL: bets $0.20 +DSOR65: folds +s0rrow: folds +Uncalled bet ($0.20) returned to StifflerPL +StifflerPL collected $0.30 from pot +StifflerPL: doesn't show hand +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [Ah Ts 2d] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: StifflerPL collected ($0.30) +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 5: DSOR65 (small blind) folded on the Flop +Seat 6: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #35824788702: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:53:15 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($11.60 in chips) +Seat 3: StifflerPL ($10.40 in chips) +Seat 4: k1tt9nM1nd ($14.85 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($21.90 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kh 4d] +Swiss777: folds +StifflerPL: folds +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: folds +Uncalled bet ($0.05) returned to Gles65 +Gles65 collected $0.10 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (big blind) collected ($0.10) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: StifflerPL folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824794475: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:53:31 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($12 in chips) +Seat 2: Swiss777 ($11.60 in chips) +Seat 3: StifflerPL ($10.40 in chips) +Seat 4: k1tt9nM1nd ($14.85 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($21.85 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ac 5h] +StifflerPL: folds +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: raises $0.20 to $0.30 +Gles65: folds +Swiss777: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Swiss777 (big blind) folded before Flop +Seat 3: StifflerPL folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow (button) collected ($0.25) + + + +PokerStars Game #35824800852: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:53:49 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($11.50 in chips) +Seat 3: StifflerPL ($10.40 in chips) +Seat 4: k1tt9nM1nd ($14.85 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($22 in chips) +Swiss777: posts small blind $0.05 +StifflerPL: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [3s Js] +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.05) returned to StifflerPL +StifflerPL collected $0.10 from pot +StifflerPL: doesn't show hand +StifflerPL leaves the table +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: StifflerPL (big blind) collected ($0.10) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824808528: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:54:10 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($11.45 in chips) +Seat 4: k1tt9nM1nd ($14.85 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($22 in chips) +k1tt9nM1nd: posts small blind $0.05 +DSOR65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6h 9h] +s0rrow: folds +Gles65: folds +Swiss777: folds +k1tt9nM1nd: folds +Uncalled bet ($0.05) returned to DSOR65 +DSOR65 collected $0.10 from pot +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: DSOR65 (big blind) collected ($0.10) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824814084: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:54:26 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($11.45 in chips) +Seat 4: k1tt9nM1nd ($14.80 in chips) +Seat 5: DSOR65 ($5.70 in chips) +Seat 6: s0rrow ($22 in chips) +DSOR65: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 9s] +Gles65: folds +Swiss777: folds +k1tt9nM1nd: raises $0.20 to $0.30 +DSOR65: calls $0.25 +s0rrow: calls $0.20 +*** FLOP *** [6h Ad 5h] +ChrVo joins the table at seat #3 +DSOR65: checks +s0rrow: checks +k1tt9nM1nd: bets $0.70 +DSOR65: folds +s0rrow: folds +Uncalled bet ($0.70) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.90 from pot +*** SUMMARY *** +Total pot $0.90 | Rake $0 +Board [6h Ad 5h] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) collected ($0.90) +Seat 5: DSOR65 (small blind) folded on the Flop +Seat 6: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #35824834814: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:55:28 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($11.95 in chips) +Seat 2: Swiss777 ($11.45 in chips) +Seat 3: ChrVo ($10 in chips) +Seat 4: k1tt9nM1nd ($15.40 in chips) +Seat 5: DSOR65 ($5.40 in chips) +Seat 6: s0rrow ($21.70 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +ChrVo: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9c Ts] +Swiss777: folds +ChrVo: checks +k1tt9nM1nd: folds +DSOR65: calls $0.10 +s0rrow: folds +Gles65: checks +*** FLOP *** [8s Ks 4c] +Gles65: checks +ChrVo: checks +DSOR65: checks +*** TURN *** [8s Ks 4c] [3c] +Gles65: checks +ChrVo: checks +DSOR65: bets $0.20 +Gles65: folds +ChrVo: folds +Uncalled bet ($0.20) returned to DSOR65 +DSOR65 collected $0.35 from pot +*** SUMMARY *** +Total pot $0.35 | Rake $0 +Board [8s Ks 4c 3c] +Seat 1: Gles65 (big blind) folded on the Turn +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: ChrVo folded on the Turn +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 (button) collected ($0.35) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824849196: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:56:22 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($11.85 in chips) +Seat 2: Swiss777 ($11.45 in chips) +Seat 3: ChrVo ($9.90 in chips) +Seat 4: k1tt9nM1nd ($15.40 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($21.65 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 9h] +ChrVo: calls $0.10 +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: raises $0.20 to $0.30 +Gles65: folds +Swiss777: folds +ChrVo: calls $0.20 +*** FLOP *** [8h Ad Kh] +ChrVo: bets $0.60 +s0rrow: folds +Uncalled bet ($0.60) returned to ChrVo +ChrVo collected $0.75 from pot +ChrVo: doesn't show hand +*** SUMMARY *** +Total pot $0.75 | Rake $0 +Board [8h Ad Kh] +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Swiss777 (big blind) folded before Flop +Seat 3: ChrVo collected ($0.75) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded on the Flop + + + +PokerStars Game #35824863053: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:57:13 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($11.80 in chips) +Seat 2: Swiss777 ($11.35 in chips) +Seat 3: ChrVo ($10.35 in chips) +Seat 4: k1tt9nM1nd ($15.40 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($21.35 in chips) +Swiss777: posts small blind $0.05 +ChrVo: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ks Jc] +k1tt9nM1nd: folds +DSOR65: folds +s0rrow: folds +Gles65 has timed out +Gles65: folds +Gles65 is sitting out +Swiss777: folds +Uncalled bet ($0.05) returned to ChrVo +Gles65 has returned +ChrVo collected $0.10 from pot +ChrVo: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: ChrVo (big blind) collected ($0.10) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824871750: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:57:44 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($11.80 in chips) +Seat 2: Swiss777 ($11.30 in chips) +Seat 3: ChrVo ($10.40 in chips) +Seat 4: k1tt9nM1nd ($15.40 in chips) +Seat 5: DSOR65 ($5.65 in chips) +Seat 6: s0rrow ($21.35 in chips) +ChrVo: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qs Js] +DSOR65: folds +s0rrow: raises $0.20 to $0.30 +DSOR65 leaves the table +Gles65: calls $0.30 +Swiss777: folds +ChrVo: calls $0.25 +k1tt9nM1nd: folds +*** FLOP *** [Ad Qd 3h] +ChrVo: bets $0.50 +s0rrow: calls $0.50 +Gles65: folds +*** TURN *** [Ad Qd 3h] [Ts] +ChrVo: bets $1.30 +s0rrow: calls $1.30 +*** RIVER *** [Ad Qd 3h Ts] [3s] +ChrVo: bets $3.30 +s0rrow: calls $3.30 +*** SHOW DOWN *** +ChrVo: shows [8d Kd] (a pair of Threes) +s0rrow: shows [Qs Js] (two pair, Queens and Threes) +s0rrow collected $10.65 from pot +*** SUMMARY *** +Total pot $11.20 | Rake $0.55 +Board [Ad Qd 3h Ts 3s] +Seat 1: Gles65 folded on the Flop +Seat 2: Swiss777 (button) folded before Flop (didn't bet) +Seat 3: ChrVo (small blind) showed [8d Kd] and lost with a pair of Threes +Seat 4: k1tt9nM1nd (big blind) folded before Flop +Seat 5: DSOR65 folded before Flop (didn't bet) +Seat 6: s0rrow showed [Qs Js] and won ($10.65) with two pair, Queens and Threes + + + +PokerStars Game #35824884993: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:58:32 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($11.30 in chips) +Seat 3: ChrVo ($5 in chips) +Seat 4: k1tt9nM1nd ($15.30 in chips) +Seat 6: s0rrow ($26.60 in chips) +k1tt9nM1nd: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ac 5h] +Gles65: folds +Swiss777: raises $0.30 to $0.40 +ChrVo: folds +k1tt9nM1nd: folds +s0rrow: folds +Uncalled bet ($0.30) returned to Swiss777 +Swiss777 collected $0.25 from pot +Swiss777: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 collected ($0.25) +Seat 3: ChrVo (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 6: s0rrow (big blind) folded before Flop + + + +PokerStars Game #35824892605: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:58:59 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($11.45 in chips) +Seat 3: ChrVo ($5 in chips) +Seat 4: k1tt9nM1nd ($15.25 in chips) +Seat 6: s0rrow ($26.50 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [As Kc] +Swiss777: folds +ChrVo: raises $0.20 to $0.30 +k1tt9nM1nd: folds +s0rrow: raises $0.70 to $1 +Gles65: folds +ChrVo: calls $0.70 +*** FLOP *** [4s 2c 2s] +s0rrow: checks +ChrVo: bets $1.70 +s0rrow: raises $2.40 to $4.10 +ChrVo: calls $2.30 and is all-in +Uncalled bet ($0.10) returned to s0rrow +*** TURN *** [4s 2c 2s] [Js] +*** RIVER *** [4s 2c 2s Js] [4c] +*** SHOW DOWN *** +s0rrow: shows [As Kc] (two pair, Fours and Deuces) +ChrVo: shows [Ah 3h] (two pair, Fours and Deuces) +s0rrow collected $4.80 from pot +ChrVo collected $4.80 from pot +ChrVo leaves the table +*** SUMMARY *** +Total pot $10.10 | Rake $0.50 +Board [4s 2c 2s Js 4c] +Seat 1: Gles65 (big blind) folded before Flop +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: ChrVo showed [Ah 3h] and won ($4.80) with two pair, Fours and Deuces +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) showed [As Kc] and won ($4.80) with two pair, Fours and Deuces + + + +PokerStars Game #35824905650: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 6:59:46 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($11.40 in chips) +Seat 2: Swiss777 ($11.45 in chips) +Seat 4: k1tt9nM1nd ($15.25 in chips) +Seat 6: s0rrow ($26.30 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Js] +k1tt9nM1nd: folds +s0rrow: raises $0.20 to $0.30 +Gles65: folds +Swiss777: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.25 from pot +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Swiss777 (big blind) folded before Flop +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 6: s0rrow (button) collected ($0.25) + + + +PokerStars Game #35824914646: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:00:18 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($11.35 in chips) +Seat 2: Swiss777 ($11.35 in chips) +Seat 4: k1tt9nM1nd ($15.25 in chips) +Seat 6: s0rrow ($26.45 in chips) +Swiss777: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [6d 3d] +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.05) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.10 from pot +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 4: k1tt9nM1nd (big blind) collected ($0.10) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824920369: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:00:38 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($11.35 in chips) +Seat 2: Swiss777 ($11.30 in chips) +Seat 4: k1tt9nM1nd ($15.30 in chips) +Seat 6: s0rrow ($26.45 in chips) +k1tt9nM1nd: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [2c 5s] +Gles65: calls $0.10 +Swiss777: folds +k1tt9nM1nd: folds +s0rrow: checks +*** FLOP *** [Js Ac 4c] +Patman01 joins the table at seat #5 +s0rrow: checks +Gles65: bets $0.20 +s0rrow: folds +Uncalled bet ($0.20) returned to Gles65 +Sr Radío joins the table at seat #3 +Gles65 collected $0.25 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [Js Ac 4c] +Seat 1: Gles65 collected ($0.25) +Seat 2: Swiss777 (button) folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 6: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #35824931475: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:01:14 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($11.30 in chips) +Seat 4: k1tt9nM1nd ($15.25 in chips) +Seat 6: s0rrow ($26.35 in chips) +Patman01 will be allowed to play after the button +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +Sr Radío: sits out +*** HOLE CARDS *** +Dealt to s0rrow [7c As] +Swiss777: raises $0.30 to $0.40 +k1tt9nM1nd: raises $0.90 to $1.30 +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.90) returned to k1tt9nM1nd +k1tt9nM1nd collected $0.95 from pot +*** SUMMARY *** +Total pot $0.95 | Rake $0 +Seat 1: Gles65 (big blind) folded before Flop +Seat 2: Swiss777 folded before Flop +Seat 4: k1tt9nM1nd (button) collected ($0.95) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35824941074: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:01:44 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($11.40 in chips) +Seat 2: Swiss777 ($10.90 in chips) +Seat 4: k1tt9nM1nd ($15.80 in chips) +Seat 6: s0rrow ($26.30 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +Sr Radío: sits out +Patman01: sits out +*** HOLE CARDS *** +Dealt to s0rrow [3h 5d] +k1tt9nM1nd: folds +s0rrow: folds +Gles65: calls $0.05 +Swiss777: checks +*** FLOP *** [8s 6c Qh] +Gles65: checks +Swiss777: checks +*** TURN *** [8s 6c Qh] [Th] +Gles65: bets $0.20 +Swiss777: folds +Uncalled bet ($0.20) returned to Gles65 +Gles65 collected $0.20 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [8s 6c Qh Th] +Seat 1: Gles65 (small blind) collected ($0.20) +Seat 2: Swiss777 (big blind) folded on the Turn +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35824955156: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:02:26 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($10.80 in chips) +Seat 3: Sr Radío ($2 in chips) +Seat 4: k1tt9nM1nd ($15.80 in chips) +Seat 6: s0rrow ($26.30 in chips) +Swiss777: posts small blind $0.05 +Sr Radío: posts big blind $0.10 +Patman01: sits out +*** HOLE CARDS *** +Dealt to s0rrow [Jh 6d] +k1tt9nM1nd: folds +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.05) returned to Sr Radío +Sr Radío collected $0.10 from pot +Sr Radío: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: Sr Radío (big blind) collected ($0.10) +Seat 4: k1tt9nM1nd folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824960551: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:02:42 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2.05 in chips) +Seat 4: k1tt9nM1nd ($15.80 in chips) +Seat 6: s0rrow ($26.30 in chips) +Sr Radío: posts small blind $0.05 +k1tt9nM1nd: posts big blind $0.10 +Patman01: sits out +*** HOLE CARDS *** +Dealt to s0rrow [7c Qh] +s0rrow: folds +Gles65: folds +Swiss777: folds +Sr Radío: calls $0.05 +k1tt9nM1nd: checks +*** FLOP *** [Qs Td Ad] +Sr Radío: checks +k1tt9nM1nd: bets $0.20 +Sr Radío: calls $0.20 +*** TURN *** [Qs Td Ad] [3d] +Sr Radío: checks +k1tt9nM1nd: checks +*** RIVER *** [Qs Td Ad 3d] [3s] +Sr Radío: checks +k1tt9nM1nd: checks +*** SHOW DOWN *** +Sr Radío: shows [Js 8s] (a pair of Threes) +k1tt9nM1nd: shows [2c 2s] (two pair, Threes and Deuces) +k1tt9nM1nd collected $0.60 from pot +*** SUMMARY *** +Total pot $0.60 | Rake $0 +Board [Qs Td Ad 3d 3s] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 (button) folded before Flop (didn't bet) +Seat 3: Sr Radío (small blind) showed [Js 8s] and lost with a pair of Threes +Seat 4: k1tt9nM1nd (big blind) showed [2c 2s] and won ($0.60) with two pair, Threes and Deuces +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824978334: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:03:33 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2 in chips) +Seat 4: k1tt9nM1nd ($16.10 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.30 in chips) +k1tt9nM1nd: posts small blind $0.05 +Patman01: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 7c] +s0rrow: folds +Gles65: folds +Swiss777: folds +Sr Radío: raises $0.15 to $0.25 +k1tt9nM1nd: folds +Patman01: folds +Uncalled bet ($0.15) returned to Sr Radío +Sr Radío collected $0.25 from pot +Sr Radío: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Sr Radío (button) collected ($0.25) +Seat 4: k1tt9nM1nd (small blind) folded before Flop +Seat 5: Patman01 (big blind) folded before Flop +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35824985031: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:03:51 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2.15 in chips) +Seat 4: k1tt9nM1nd ($16.05 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.30 in chips) +Patman01: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 8h] +Gles65: folds +Swiss777: folds +Sr Radío: folds +k1tt9nM1nd: folds +Patman01: calls $0.05 +s0rrow: checks +*** FLOP *** [9d Qs 3h] +k1tt9nM1nd leaves the table +Patman01: checks +s0rrow: checks +*** TURN *** [9d Qs 3h] [Kc] +Patman01: checks +s0rrow: bets $0.20 +Patman01: folds +Uncalled bet ($0.20) returned to s0rrow +s0rrow collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [9d Qs 3h Kc] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Sr Radío folded before Flop (didn't bet) +Seat 4: k1tt9nM1nd (button) folded before Flop (didn't bet) +Seat 5: Patman01 (small blind) folded on the Turn +Seat 6: s0rrow (big blind) collected ($0.20) + + + +PokerStars Game #35825014830: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:05:13 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($11.50 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2.15 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.40 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7h 8d] +Swiss777: raises $0.30 to $0.40 +Sr Radío: folds +Patman01: folds +s0rrow: folds +Gles65: folds +Uncalled bet ($0.30) returned to Swiss777 +Swiss777 collected $0.25 from pot +Swiss777: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 (big blind) folded before Flop +Seat 2: Swiss777 collected ($0.25) +Seat 3: Sr Radío folded before Flop (didn't bet) +Seat 5: Patman01 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop + + + +PokerStars Game #35825024629: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:05:39 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($11.40 in chips) +Seat 2: Swiss777 ($10.90 in chips) +Seat 3: Sr Radío ($2.15 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.35 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4d 6h] +Sr Radío: raises $0.15 to $0.25 +Patman01: folds +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.15) returned to Sr Radío +Sr Radío collected $0.25 from pot +Sr Radío: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Swiss777 (big blind) folded before Flop +Seat 3: Sr Radío collected ($0.25) +Seat 5: Patman01 folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35825030435: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:05:55 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($11.35 in chips) +Seat 2: Swiss777 ($10.80 in chips) +Seat 3: Sr Radío ($2.30 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.35 in chips) +Swiss777: posts small blind $0.05 +Sr Radío: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Ts 5c] +Patman01: folds +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.05) returned to Sr Radío +Sr Radío collected $0.10 from pot +Sr Radío: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: Sr Radío (big blind) collected ($0.10) +Seat 5: Patman01 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35825035088: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:06:08 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($11.35 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2.35 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.35 in chips) +Sr Radío: posts small blind $0.05 +Patman01: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9h Ts] +s0rrow: folds +Gles65: folds +Swiss777: folds +Sr Radío: folds +Uncalled bet ($0.05) returned to Patman01 +Patman01 collected $0.10 from pot +Patman01: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 (button) folded before Flop (didn't bet) +Seat 3: Sr Radío (small blind) folded before Flop +Seat 5: Patman01 (big blind) collected ($0.10) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35825044906: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:06:35 ET +Table 'May IV' 6-max Seat #3 is the button +Seat 1: Gles65 ($11.35 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2.30 in chips) +Seat 5: Patman01 ($10.05 in chips) +Seat 6: s0rrow ($26.35 in chips) +Patman01: posts small blind $0.05 +s0rrow: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4s Qd] +espanol63 joins the table at seat #4 +Gles65 has timed out +Gles65: folds +Gles65 is sitting out +Swiss777: folds +Gles65 has returned +Sr Radío: raises $0.15 to $0.25 +Patman01: folds +s0rrow: folds +Uncalled bet ($0.15) returned to Sr Radío +Sr Radío collected $0.25 from pot +Sr Radío: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Sr Radío (button) collected ($0.25) +Seat 5: Patman01 (small blind) folded before Flop +Seat 6: s0rrow (big blind) folded before Flop + + + +PokerStars Game #35825057094: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:07:09 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($11.35 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2.45 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.25 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +espanol63: sits out +*** HOLE CARDS *** +Dealt to s0rrow [9d Qc] +Swiss777: folds +Sr Radío: folds +Patman01: folds +s0rrow: calls $0.05 +Gles65: checks +*** FLOP *** [9h 5c Jd] +s0rrow: checks +Gles65: checks +*** TURN *** [9h 5c Jd] [5d] +s0rrow: bets $0.30 +Gles65: folds +Uncalled bet ($0.30) returned to s0rrow +s0rrow collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [9h 5c Jd 5d] +Seat 1: Gles65 (big blind) folded on the Turn +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Sr Radío folded before Flop (didn't bet) +Seat 5: Patman01 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) collected ($0.20) + + + +PokerStars Game #35825075553: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:08:00 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($11.25 in chips) +Seat 2: Swiss777 ($10.75 in chips) +Seat 3: Sr Radío ($2.45 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.35 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +espanol63: sits out +*** HOLE CARDS *** +Dealt to s0rrow [3s 2d] +Sr Radío: folds +Patman01: folds +s0rrow: folds +Gles65: calls $0.05 +Swiss777: checks +*** FLOP *** [Ad 7h Jh] +Gles65: checks +Swiss777: checks +*** TURN *** [Ad 7h Jh] [7d] +Gles65: checks +Swiss777: checks +*** RIVER *** [Ad 7h Jh 7d] [Qs] +Gles65: checks +Swiss777: checks +*** SHOW DOWN *** +Gles65: shows [9c Kc] (a pair of Sevens) +Swiss777: mucks hand +Gles65 collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [Ad 7h Jh 7d Qs] +Seat 1: Gles65 (small blind) showed [9c Kc] and won ($0.20) with a pair of Sevens +Seat 2: Swiss777 (big blind) mucked [8d 6s] +Seat 3: Sr Radío folded before Flop (didn't bet) +Seat 5: Patman01 folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35825091438: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:08:44 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($11.35 in chips) +Seat 2: Swiss777 ($10.65 in chips) +Seat 4: espanol63 ($10 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.35 in chips) +Swiss777: posts small blind $0.05 +Sr Radío: is sitting out +espanol63: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [8c Qd] +Patman01: folds +s0rrow: folds +Sr Radío has returned +Sr Radío leaves the table +Gles65: raises $0.30 to $0.40 +Swiss777: folds +espanol63: calls $0.30 +*** FLOP *** [Jd 6d 7s] +espanol63: bets $0.50 +Andrey_UKRNA joins the table at seat #3 +Gles65: raises $1 to $1.50 +espanol63: calls $1 +*** TURN *** [Jd 6d 7s] [3d] +espanol63: checks +Gles65: checks +*** RIVER *** [Jd 6d 7s 3d] [Ah] +espanol63: checks +Gles65: bets $3.70 +espanol63: folds +Uncalled bet ($3.70) returned to Gles65 +Gles65 collected $3.70 from pot +Gles65: doesn't show hand +*** SUMMARY *** +Total pot $3.85 | Rake $0.15 +Board [Jd 6d 7s 3d Ah] +Seat 1: Gles65 (button) collected ($3.70) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 4: espanol63 (big blind) folded on the River +Seat 5: Patman01 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35825126395: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:10:21 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($13.15 in chips) +Seat 2: Swiss777 ($10.60 in chips) +Seat 4: espanol63 ($8.10 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($26.35 in chips) +Andrey_UKRNA will be allowed to play after the button +espanol63: posts small blind $0.05 +Patman01: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [5s 5d] +s0rrow: raises $0.20 to $0.30 +Gles65: raises $0.60 to $0.90 +Swiss777: folds +espanol63: folds +Patman01: folds +s0rrow: calls $0.60 +*** FLOP *** [Tc Td Ad] +s0rrow: checks +Gles65: checks +*** TURN *** [Tc Td Ad] [7h] +s0rrow: checks +Gles65: bets $1.20 +s0rrow: calls $1.20 +*** RIVER *** [Tc Td Ad 7h] [6s] +s0rrow: checks +Gles65: checks +*** SHOW DOWN *** +s0rrow: shows [5s 5d] (two pair, Tens and Fives) +Gles65: shows [Jh Js] (two pair, Jacks and Tens) +Gles65 collected $4.15 from pot +*** SUMMARY *** +Total pot $4.35 | Rake $0.20 +Board [Tc Td Ad 7h 6s] +Seat 1: Gles65 showed [Jh Js] and won ($4.15) with two pair, Jacks and Tens +Seat 2: Swiss777 (button) folded before Flop (didn't bet) +Seat 4: espanol63 (small blind) folded before Flop +Seat 5: Patman01 (big blind) folded before Flop +Seat 6: s0rrow showed [5s 5d] and lost with two pair, Tens and Fives + + + +PokerStars Game #35825152132: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:11:31 ET +Table 'May IV' 6-max Seat #4 is the button +Seat 1: Gles65 ($15.20 in chips) +Seat 2: Swiss777 ($10.60 in chips) +Seat 3: Andrey_UKRNA ($6 in chips) +Seat 4: espanol63 ($8.05 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($24.25 in chips) +Patman01: posts small blind $0.05 +s0rrow: posts big blind $0.10 +Andrey_UKRNA: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 4h] +Gles65: folds +Swiss777: folds +Andrey_UKRNA: checks +espanol63: folds +Patman01: folds +s0rrow: checks +*** FLOP *** [3h 6d 5c] +s0rrow: bets $0.20 +Andrey_UKRNA: raises $0.20 to $0.40 +s0rrow: calls $0.20 +*** TURN *** [3h 6d 5c] [Ts] +s0rrow: checks +Andrey_UKRNA: bets $0.40 +s0rrow: calls $0.40 +*** RIVER *** [3h 6d 5c Ts] [Ks] +s0rrow: checks +Andrey_UKRNA: bets $0.40 +s0rrow: calls $0.40 +*** SHOW DOWN *** +Andrey_UKRNA: shows [2s 4d] (a straight, Deuce to Six) +s0rrow: mucks hand +Andrey_UKRNA collected $2.55 from pot +*** SUMMARY *** +Total pot $2.65 | Rake $0.10 +Board [3h 6d 5c Ts Ks] +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Andrey_UKRNA showed [2s 4d] and won ($2.55) with a straight, Deuce to Six +Seat 4: espanol63 (button) folded before Flop (didn't bet) +Seat 5: Patman01 (small blind) folded before Flop +Seat 6: s0rrow (big blind) mucked [Kc 4h] + + + +PokerStars Game #35825174865: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:12:34 ET +Table 'May IV' 6-max Seat #5 is the button +Seat 1: Gles65 ($15.20 in chips) +Seat 2: Swiss777 ($10.60 in chips) +Seat 3: Andrey_UKRNA ($7.25 in chips) +Seat 4: espanol63 ($8.05 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($22.95 in chips) +s0rrow: posts small blind $0.05 +Gles65: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [7d 7h] +Swiss777: folds +Andrey_UKRNA: folds +espanol63: folds +Patman01: folds +s0rrow: raises $0.20 to $0.30 +Gles65: raises $0.60 to $0.90 +s0rrow: calls $0.60 +*** FLOP *** [4d 5s Qc] +s0rrow: checks +Gles65: checks +*** TURN *** [4d 5s Qc] [3c] +s0rrow: bets $1.60 +Gles65: folds +Uncalled bet ($1.60) returned to s0rrow +s0rrow collected $1.75 from pot +*** SUMMARY *** +Total pot $1.80 | Rake $0.05 +Board [4d 5s Qc 3c] +Seat 1: Gles65 (big blind) folded on the Turn +Seat 2: Swiss777 folded before Flop (didn't bet) +Seat 3: Andrey_UKRNA folded before Flop (didn't bet) +Seat 4: espanol63 folded before Flop (didn't bet) +Seat 5: Patman01 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) collected ($1.75) + + + +PokerStars Game #35825191279: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:13:19 ET +Table 'May IV' 6-max Seat #6 is the button +Seat 1: Gles65 ($14.30 in chips) +Seat 2: Swiss777 ($10.60 in chips) +Seat 3: Andrey_UKRNA ($7.25 in chips) +Seat 4: espanol63 ($8.05 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($23.80 in chips) +Gles65: posts small blind $0.05 +Swiss777: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [4h 2c] +Andrey_UKRNA: folds +espanol63: raises $0.30 to $0.40 +Patman01: folds +s0rrow: folds +Gles65: folds +Swiss777: folds +Uncalled bet ($0.30) returned to espanol63 +espanol63 collected $0.25 from pot +espanol63: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 (small blind) folded before Flop +Seat 2: Swiss777 (big blind) folded before Flop +Seat 3: Andrey_UKRNA folded before Flop (didn't bet) +Seat 4: espanol63 collected ($0.25) +Seat 5: Patman01 folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #35825200467: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:13:44 ET +Table 'May IV' 6-max Seat #1 is the button +Seat 1: Gles65 ($14.25 in chips) +Seat 2: Swiss777 ($10.50 in chips) +Seat 3: Andrey_UKRNA ($7.25 in chips) +Seat 4: espanol63 ($8.20 in chips) +Seat 5: Patman01 ($10 in chips) +Seat 6: s0rrow ($23.80 in chips) +Swiss777: posts small blind $0.05 +Andrey_UKRNA: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [8h Tc] +espanol63: calls $0.10 +Patman01: raises $0.20 to $0.30 +s0rrow: folds +Gles65: folds +Swiss777: folds +Andrey_UKRNA: folds +espanol63: calls $0.20 +*** FLOP *** [4s 6h 5d] +espanol63: checks +Patman01: bets $0.40 +espanol63: calls $0.40 +*** TURN *** [4s 6h 5d] [Ts] +espanol63: checks +Patman01: bets $0.70 +espanol63: calls $0.70 +*** RIVER *** [4s 6h 5d Ts] [Ac] +espanol63: checks +Patman01: checks +*** SHOW DOWN *** +espanol63: shows [3d 3c] (a pair of Threes) +Patman01: shows [8s 8d] (a pair of Eights) +Patman01 collected $2.85 from pot +*** SUMMARY *** +Total pot $2.95 | Rake $0.10 +Board [4s 6h 5d Ts Ac] +Seat 1: Gles65 (button) folded before Flop (didn't bet) +Seat 2: Swiss777 (small blind) folded before Flop +Seat 3: Andrey_UKRNA (big blind) folded before Flop +Seat 4: espanol63 showed [3d 3c] and lost with a pair of Threes +Seat 5: Patman01 showed [8s 8d] and won ($2.85) with a pair of Eights +Seat 6: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #35825214163: Hold'em No Limit ($0.05/$0.10 USD) - 2009/11/25 7:14:22 ET +Table 'May IV' 6-max Seat #2 is the button +Seat 1: Gles65 ($14.25 in chips) +Seat 2: Swiss777 ($10.45 in chips) +Seat 3: Andrey_UKRNA ($7.15 in chips) +Seat 4: espanol63 ($6.80 in chips) +Seat 5: Patman01 ($11.45 in chips) +Seat 6: s0rrow ($23.80 in chips) +Andrey_UKRNA: posts small blind $0.05 +espanol63: posts big blind $0.10 +*** HOLE CARDS *** +Dealt to s0rrow [9h 2d] +Patman01: folds +s0rrow: folds +Gles65: folds +Swiss777: raises $0.30 to $0.40 +Andrey_UKRNA: folds +espanol63: folds +Uncalled bet ($0.30) returned to Swiss777 +espanol63 leaves the table +Swiss777 collected $0.25 from pot +Swiss777: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Seat 1: Gles65 folded before Flop (didn't bet) +Seat 2: Swiss777 (button) collected ($0.25) +Seat 3: Andrey_UKRNA (small blind) folded before Flop +Seat 4: espanol63 (big blind) folded before Flop +Seat 5: Patman01 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200911.txt new file mode 100644 index 00000000..16dc318e --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200911.txt @@ -0,0 +1,835 @@ +PokerStars Game #35874004239: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:08:43 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($1.60 in chips) +Seat 3: Nikolay Zem ($1.84 in chips) +Seat 4: totof51 ($1.34 in chips) +Seat 5: trs2758 ($1.76 in chips) +Seat 8: MasterTrini1 ($2.49 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +totof51: posts the ante $0.01 +trs2758: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [3d Th As] +Dealt to Nikolay Zem [9s] +Dealt to totof51 [Td] +Dealt to trs2758 [7d] +Dealt to MasterTrini1 [2c] +MasterTrini1: brings in for $0.02 +s0rrow: calls $0.02 +Nikolay Zem: calls $0.02 +totof51: calls $0.02 +trs2758: calls $0.02 +*** 4th STREET *** +Dealt to s0rrow [3d Th As] [Qc] +Dealt to Nikolay Zem [9s] [6h] +Dealt to totof51 [Td] [4s] +Dealt to trs2758 [7d] [8d] +Dealt to MasterTrini1 [2c] [8c] +s0rrow: checks +Nikolay Zem: checks +totof51: checks +trs2758: checks +MasterTrini1: bets $0.04 +s0rrow: folds +Nikolay Zem: calls $0.04 +totof51: folds +trs2758: calls $0.04 +*** 5th STREET *** +Dealt to Nikolay Zem [9s 6h] [7s] +Dealt to trs2758 [7d 8d] [8h] +Dealt to MasterTrini1 [2c 8c] [7h] +RoadDevil joins the table at seat #6 +trs2758: bets $0.08 +MasterTrini1: calls $0.08 +Nikolay Zem: calls $0.08 +*** 6th STREET *** +Dealt to Nikolay Zem [9s 6h 7s] [Qh] +Dealt to trs2758 [7d 8d 8h] [Ts] +Dealt to MasterTrini1 [2c 8c 7h] [5d] +trs2758: bets $0.08 +MasterTrini1: calls $0.08 +Nikolay Zem: folds +*** RIVER *** +trs2758: bets $0.08 +MasterTrini1: folds +Uncalled bet ($0.08) returned to trs2758 +trs2758 collected $0.64 from pot +*** SUMMARY *** +Total pot $0.67 | Rake $0.03 +Seat 1: s0rrow folded on the 4th Street +Seat 3: Nikolay Zem folded on the 6th Street +Seat 4: totof51 folded on the 4th Street +Seat 5: trs2758 collected ($0.64) +Seat 8: MasterTrini1 folded on the River + + + +PokerStars Game #35874039554: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:09:44 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($1.57 in chips) +Seat 3: Nikolay Zem ($1.69 in chips) +Seat 4: totof51 ($1.31 in chips) +Seat 5: trs2758 ($2.17 in chips) +Seat 6: RoadDevil ($1.60 in chips) +Seat 8: MasterTrini1 ($2.26 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +totof51: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [3s Qd 9h] +Dealt to Nikolay Zem [7d] +Dealt to totof51 [7c] +Dealt to trs2758 [5h] +Dealt to RoadDevil [5d] +Dealt to MasterTrini1 [Ts] +RoadDevil: brings in for $0.02 +MasterTrini1: calls $0.02 +s0rrow: folds +Nikolay Zem: calls $0.02 +totof51: calls $0.02 +trs2758: calls $0.02 +*** 4th STREET *** +Dealt to Nikolay Zem [7d] [Td] +Dealt to totof51 [7c] [Th] +Dealt to trs2758 [5h] [8s] +Dealt to RoadDevil [5d] [Js] +Dealt to MasterTrini1 [Ts] [5c] +RoadDevil: checks +MasterTrini1: checks +Nikolay Zem: checks +totof51: bets $0.04 +trs2758: calls $0.04 +RoadDevil: folds +MasterTrini1: calls $0.04 +Nikolay Zem: calls $0.04 +*** 5th STREET *** +Dealt to Nikolay Zem [7d Td] [3d] +Dealt to totof51 [7c Th] [9s] +Dealt to trs2758 [5h 8s] [4s] +Dealt to MasterTrini1 [Ts 5c] [6h] +totof51: bets $0.08 +trs2758: folds +MasterTrini1: calls $0.08 +Nikolay Zem: calls $0.08 +*** 6th STREET *** +Dealt to Nikolay Zem [7d Td 3d] [Tc] +Dealt to totof51 [7c Th 9s] [Ah] +Dealt to MasterTrini1 [Ts 5c 6h] [Jh] +Nikolay Zem: checks +totof51: bets $0.08 +MasterTrini1: calls $0.08 +Nikolay Zem: calls $0.08 +*** RIVER *** +Nikolay Zem: checks +totof51: checks +MasterTrini1: checks +*** SHOW DOWN *** +Nikolay Zem: shows [Ac 4d 7d Td 3d Tc 2h] (a pair of Tens) +totof51: mucks hand +totof51 is sitting out +MasterTrini1: shows [4c 6d Ts 5c 6h Jh 9c] (a pair of Sixes) +totof51 leaves the table +Nikolay Zem collected $0.77 from pot +*** SUMMARY *** +Total pot $0.80 | Rake $0.03 +Seat 1: s0rrow folded on the 3rd Street (didn't bet) +Seat 3: Nikolay Zem showed [Ac 4d 7d Td 3d Tc 2h] and won ($0.77) with a pair of Tens +Seat 4: totof51 mucked [3c 7s 7c Th 9s Ah Qc] +Seat 5: trs2758 folded on the 5th Street +Seat 6: RoadDevil folded on the 4th Street +Seat 8: MasterTrini1 showed [4c 6d Ts 5c 6h Jh 9c] and lost with a pair of Sixes + + + +PokerStars Game #35874081088: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:10:56 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($1.56 in chips) +Seat 3: Nikolay Zem ($2.23 in chips) +Seat 5: trs2758 ($2.10 in chips) +Seat 6: RoadDevil ($1.57 in chips) +Seat 8: MasterTrini1 ($2.03 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [5h 5c 2s] +Dealt to Nikolay Zem [Ad] +Dealt to trs2758 [6h] +Dealt to RoadDevil [4h] +Dealt to MasterTrini1 [8h] +s0rrow: bets $0.04 +Nikolay Zem: calls $0.04 +trs2758: folds +RoadDevil: calls $0.04 +MasterTrini1: raises $0.04 to $0.08 +s0rrow: calls $0.04 +Nikolay Zem: calls $0.04 +RoadDevil: calls $0.04 +*** 4th STREET *** +Dealt to s0rrow [5h 5c 2s] [As] +Dealt to Nikolay Zem [Ad] [4s] +Dealt to RoadDevil [4h] [Tc] +Dealt to MasterTrini1 [8h] [6d] +Nikolay Zem: checks +RoadDevil: checks +MasterTrini1: bets $0.04 +s0rrow: calls $0.04 +Nikolay Zem: folds +RoadDevil: folds +*** 5th STREET *** +Dealt to s0rrow [5h 5c 2s As] [5d] +Dealt to MasterTrini1 [8h 6d] [Ac] +MasterTrini1: bets $0.08 +s0rrow: raises $0.08 to $0.16 +MasterTrini1: calls $0.08 +*** 6th STREET *** +Dealt to s0rrow [5h 5c 2s As 5d] [Ah] +Dealt to MasterTrini1 [8h 6d Ac] [Js] +s0rrow: bets $0.08 +MasterTrini1: calls $0.08 +*** RIVER *** +Dealt to s0rrow [5h 5c 2s As 5d Ah] [4d] +s0rrow: bets $0.08 +MasterTrini1: calls $0.08 +*** SHOW DOWN *** +s0rrow: shows [5h 5c 2s As 5d Ah 4d] (a full house, Fives full of Aces) +MasterTrini1: mucks hand +s0rrow collected $1.04 from pot +*** SUMMARY *** +Total pot $1.09 | Rake $0.05 +Seat 1: s0rrow showed [5h 5c 2s As 5d Ah 4d] and won ($1.04) with a full house, Fives full of Aces +Seat 3: Nikolay Zem folded on the 4th Street +Seat 5: trs2758 folded on the 3rd Street (didn't bet) +Seat 6: RoadDevil folded on the 4th Street +Seat 8: MasterTrini1 mucked [Qs Qd 8h 6d Ac Js Jc] + + + +PokerStars Game #35874124553: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:12:11 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($2.15 in chips) +Seat 3: Nikolay Zem ($2.14 in chips) +Seat 5: trs2758 ($2.09 in chips) +Seat 6: RoadDevil ($1.48 in chips) +Seat 8: MasterTrini1 ($1.58 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [Js Kc 3d] +Dealt to Nikolay Zem [6c] +Dealt to trs2758 [4d] +Dealt to RoadDevil [6d] +Dealt to MasterTrini1 [9h] +s0rrow: brings in for $0.02 +Nikolay Zem: folds +trs2758: folds +RoadDevil: calls $0.02 +MasterTrini1: calls $0.02 +*** 4th STREET *** +Dealt to s0rrow [Js Kc 3d] [2h] +Dealt to RoadDevil [6d] [Ah] +Dealt to MasterTrini1 [9h] [8c] +RoadDevil: checks +MasterTrini1: bets $0.04 +rv2020 joins the table at seat #4 +s0rrow: folds +RoadDevil: calls $0.04 +*** 5th STREET *** +Dealt to RoadDevil [6d Ah] [Td] +Dealt to MasterTrini1 [9h 8c] [5s] +RoadDevil: checks +MasterTrini1: bets $0.08 +RoadDevil: calls $0.08 +*** 6th STREET *** +Dealt to RoadDevil [6d Ah Td] [4c] +Dealt to MasterTrini1 [9h 8c 5s] [5h] +MasterTrini1: bets $0.08 +RoadDevil: calls $0.08 +*** RIVER *** +MasterTrini1: bets $0.08 +RoadDevil: calls $0.08 +*** SHOW DOWN *** +MasterTrini1: shows [6s 7d 9h 8c 5s 5h 9d] (a straight, Five to Nine) +RoadDevil: mucks hand +MasterTrini1 collected $0.64 from pot +*** SUMMARY *** +Total pot $0.67 | Rake $0.03 +Seat 1: s0rrow folded on the 4th Street +Seat 3: Nikolay Zem folded on the 3rd Street (didn't bet) +Seat 5: trs2758 folded on the 3rd Street (didn't bet) +Seat 6: RoadDevil mucked [4s 8d 6d Ah Td 4c 8h] +Seat 8: MasterTrini1 showed [6s 7d 9h 8c 5s 5h 9d] and won ($0.64) with a straight, Five to Nine + + + +PokerStars Game #35874153086: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:13:01 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($2.12 in chips) +Seat 3: Nikolay Zem ($2.13 in chips) +Seat 4: rv2020 ($1 in chips) +Seat 5: trs2758 ($2.08 in chips) +Seat 6: RoadDevil ($1.17 in chips) +Seat 8: MasterTrini1 ($1.91 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +rv2020: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [As 8s 6h] +Dealt to Nikolay Zem [4c] +Dealt to rv2020 [2s] +Dealt to trs2758 [7s] +Dealt to RoadDevil [7c] +Dealt to MasterTrini1 [Qd] +rv2020: brings in for $0.02 +trs2758: calls $0.02 +RoadDevil: calls $0.02 +MasterTrini1: calls $0.02 +s0rrow: calls $0.02 +Nikolay Zem: folds +*** 4th STREET *** +Dealt to s0rrow [As 8s 6h] [3s] +Dealt to rv2020 [2s] [6d] +Dealt to trs2758 [7s] [Ah] +Dealt to RoadDevil [7c] [4h] +Dealt to MasterTrini1 [Qd] [Ad] +MasterTrini1: checks +s0rrow: checks +rv2020: checks +trs2758: checks +RoadDevil: checks +*** 5th STREET *** +Dealt to s0rrow [As 8s 6h 3s] [Jh] +Dealt to rv2020 [2s 6d] [Qh] +Dealt to trs2758 [7s Ah] [4d] +Dealt to RoadDevil [7c 4h] [7h] +Dealt to MasterTrini1 [Qd Ad] [5h] +RoadDevil: checks +MasterTrini1: checks +s0rrow: checks +rv2020: checks +trs2758: checks +*** 6th STREET *** +Dealt to s0rrow [As 8s 6h 3s Jh] [Tc] +Dealt to rv2020 [2s 6d Qh] [9h] +Dealt to trs2758 [7s Ah 4d] [3d] +Dealt to RoadDevil [7c 4h 7h] [5c] +Dealt to MasterTrini1 [Qd Ad 5h] [Td] +RoadDevil: checks +MasterTrini1: checks +s0rrow: checks +rv2020: checks +trs2758: checks +*** RIVER *** +Dealt to s0rrow [As 8s 6h 3s Jh Tc] [Qs] +RoadDevil: checks +MasterTrini1: checks +s0rrow: checks +rv2020: checks +trs2758: checks +*** SHOW DOWN *** +s0rrow: shows [As 8s 6h 3s Jh Tc Qs] (high card Ace) +rv2020: shows [8c Ac 2s 6d Qh 9h 2d] (a pair of Deuces) +trs2758: mucks hand +RoadDevil: shows [Jd Qc 7c 4h 7h 5c Kc] (a pair of Sevens) +MasterTrini1: shows [Jc 2h Qd Ad 5h Td Ks] (a straight, Ten to Ace) +MasterTrini1 collected $0.16 from pot +*** SUMMARY *** +Total pot $0.16 | Rake $0 +Seat 1: s0rrow showed [As 8s 6h 3s Jh Tc Qs] and lost with high card Ace +Seat 3: Nikolay Zem folded on the 3rd Street (didn't bet) +Seat 4: rv2020 showed [8c Ac 2s 6d Qh 9h 2d] and lost with a pair of Deuces +Seat 5: trs2758 mucked [2c 9s 7s Ah 4d 3d 8d] +Seat 6: RoadDevil showed [Jd Qc 7c 4h 7h 5c Kc] and lost with a pair of Sevens +Seat 8: MasterTrini1 showed [Jc 2h Qd Ad 5h Td Ks] and won ($0.16) with a straight, Ten to Ace + + + +PokerStars Game #35874195699: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:14:15 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($2.09 in chips) +Seat 3: Nikolay Zem ($2.12 in chips) +Seat 4: rv2020 ($0.97 in chips) +Seat 5: trs2758 ($2.05 in chips) +Seat 6: RoadDevil ($1.14 in chips) +Seat 8: MasterTrini1 ($2.04 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +rv2020: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [6c 4c Th] +Dealt to Nikolay Zem [9d] +Dealt to rv2020 [4s] +Dealt to trs2758 [3h] +Dealt to RoadDevil [Ac] +Dealt to MasterTrini1 [5d] +trs2758: brings in for $0.02 +RoadDevil: folds +MasterTrini1: calls $0.02 +s0rrow: folds +Nikolay Zem: calls $0.02 +rv2020: folds +*** 4th STREET *** +Dealt to Nikolay Zem [9d] [3s] +Dealt to trs2758 [3h] [Jd] +Dealt to MasterTrini1 [5d] [2d] +trs2758: checks +MasterTrini1: checks +Nikolay Zem: checks +*** 5th STREET *** +Dealt to Nikolay Zem [9d 3s] [9c] +Dealt to trs2758 [3h Jd] [2h] +Dealt to MasterTrini1 [5d 2d] [7d] +Nikolay Zem: bets $0.08 +trs2758: folds +MasterTrini1: raises $0.08 to $0.16 +Nikolay Zem: calls $0.08 +*** 6th STREET *** +Dealt to Nikolay Zem [9d 3s 9c] [Td] +Dealt to MasterTrini1 [5d 2d 7d] [5h] +Nikolay Zem: checks +MasterTrini1: checks +*** RIVER *** +Nikolay Zem: bets $0.08 +MasterTrini1: folds +Uncalled bet ($0.08) returned to Nikolay Zem +Nikolay Zem collected $0.42 from pot +Nikolay Zem: doesn't show hand +*** SUMMARY *** +Total pot $0.44 | Rake $0.02 +Seat 1: s0rrow folded on the 3rd Street (didn't bet) +Seat 3: Nikolay Zem collected ($0.42) +Seat 4: rv2020 folded on the 3rd Street (didn't bet) +Seat 5: trs2758 folded on the 5th Street +Seat 6: RoadDevil folded on the 3rd Street (didn't bet) +Seat 8: MasterTrini1 folded on the River + + + +PokerStars Game #35874220204: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:14:58 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($2.08 in chips) +Seat 3: Nikolay Zem ($2.35 in chips) +Seat 4: rv2020 ($0.96 in chips) +Seat 5: trs2758 ($2.02 in chips) +Seat 6: RoadDevil ($1.13 in chips) +Seat 8: MasterTrini1 ($1.85 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +rv2020: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [Jd 9d 2h] +Dealt to Nikolay Zem [Ad] +Dealt to rv2020 [2c] +Dealt to trs2758 [8c] +Dealt to RoadDevil [3s] +Dealt to MasterTrini1 [3h] +rv2020: brings in for $0.02 +trs2758: calls $0.02 +RoadDevil: folds +MasterTrini1: calls $0.02 +s0rrow: folds +Nikolay Zem: calls $0.02 +*** 4th STREET *** +Dealt to Nikolay Zem [Ad] [9h] +Dealt to rv2020 [2c] [4d] +Dealt to trs2758 [8c] [Qd] +Dealt to MasterTrini1 [3h] [Qs] +Nikolay Zem: checks +rv2020: bets $0.04 +trs2758: calls $0.04 +MasterTrini1: calls $0.04 +Nikolay Zem: folds +*** 5th STREET *** +Dealt to rv2020 [2c 4d] [Jh] +Dealt to trs2758 [8c Qd] [Js] +Dealt to MasterTrini1 [3h Qs] [4h] +trs2758: checks +MasterTrini1: bets $0.08 +rv2020: raises $0.08 to $0.16 +trs2758: calls $0.16 +MasterTrini1: calls $0.08 +*** 6th STREET *** +Dealt to rv2020 [2c 4d Jh] [7c] +Dealt to trs2758 [8c Qd Js] [5c] +Dealt to MasterTrini1 [3h Qs 4h] [7h] +trs2758: checks +MasterTrini1: checks +rv2020: bets $0.08 +trs2758: folds +MasterTrini1: calls $0.08 +*** RIVER *** +MasterTrini1: checks +rv2020: checks +*** SHOW DOWN *** +rv2020: shows [As Ac 2c 4d Jh 7c 3c] (a pair of Aces) +MasterTrini1: mucks hand +rv2020 collected $0.86 from pot +*** SUMMARY *** +Total pot $0.90 | Rake $0.04 +Seat 1: s0rrow folded on the 3rd Street (didn't bet) +Seat 3: Nikolay Zem folded on the 4th Street +Seat 4: rv2020 showed [As Ac 2c 4d Jh 7c 3c] and won ($0.86) with a pair of Aces +Seat 5: trs2758 folded on the 6th Street +Seat 6: RoadDevil folded on the 3rd Street (didn't bet) +Seat 8: MasterTrini1 mucked [6s 8s 3h Qs 4h 7h 6d] + + + +PokerStars Game #35874259784: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:16:07 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($2.07 in chips) +Seat 3: Nikolay Zem ($2.32 in chips) +Seat 4: rv2020 ($1.51 in chips) +Seat 5: trs2758 ($1.79 in chips) +Seat 6: RoadDevil ($1.12 in chips) +Seat 8: MasterTrini1 ($1.54 in chips) +s0rrow: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +rv2020: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [7d 6h 9s] +Dealt to Nikolay Zem [Js] +Dealt to rv2020 [3d] +Dealt to trs2758 [7s] +Dealt to RoadDevil [Qh] +Dealt to MasterTrini1 [5d] +rv2020: brings in for $0.02 +trs2758: folds +RoadDevil: calls $0.02 +MasterTrini1: calls $0.02 +s0rrow: calls $0.02 +Nikolay Zem: calls $0.02 +*** 4th STREET *** +Dealt to s0rrow [7d 6h 9s] [Kc] +Dealt to Nikolay Zem [Js] [6s] +Dealt to rv2020 [3d] [Jd] +Dealt to RoadDevil [Qh] [Th] +Dealt to MasterTrini1 [5d] [8c] +Katica65 was removed from the table for failing to post +s0rrow: checks +Nikolay Zem: checks +danjr655 joins the table at seat #2 +rv2020: checks +RoadDevil: checks +MasterTrini1: checks +*** 5th STREET *** +Dealt to s0rrow [7d 6h 9s Kc] [Ah] +Dealt to Nikolay Zem [Js 6s] [Ad] +Dealt to rv2020 [3d Jd] [Tc] +Dealt to RoadDevil [Qh Th] [Qc] +Dealt to MasterTrini1 [5d 8c] [3h] +RoadDevil: bets $0.08 +MasterTrini1: folds +s0rrow: raises $0.08 to $0.16 +Nikolay Zem: calls $0.16 +rv2020: folds +RoadDevil: calls $0.08 +*** 6th STREET *** +Dealt to s0rrow [7d 6h 9s Kc Ah] [4d] +Dealt to Nikolay Zem [Js 6s Ad] [4s] +Dealt to RoadDevil [Qh Th Qc] [7h] +RoadDevil: checks +s0rrow: checks +Nikolay Zem: bets $0.08 +RoadDevil: calls $0.08 +s0rrow: folds +*** RIVER *** +RoadDevil: checks +Nikolay Zem: bets $0.08 +RoadDevil: calls $0.08 +*** SHOW DOWN *** +Nikolay Zem: shows [Qs 3s Js 6s Ad 4s 2s] (a flush, Queen high) +RoadDevil: mucks hand +Nikolay Zem collected $0.92 from pot +*** SUMMARY *** +Total pot $0.96 | Rake $0.04 +Seat 1: s0rrow folded on the 6th Street +Seat 3: Nikolay Zem showed [Qs 3s Js 6s Ad 4s 2s] and won ($0.92) with a flush, Queen high +Seat 4: rv2020 folded on the 5th Street +Seat 5: trs2758 folded on the 3rd Street (didn't bet) +Seat 6: RoadDevil mucked [2h Ts Qh Th Qc 7h Kd] +Seat 8: MasterTrini1 folded on the 5th Street + + + +PokerStars Game #35874289931: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:16:59 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($1.88 in chips) +Seat 2: danjr655 ($0.45 in chips) +Seat 3: Nikolay Zem ($2.89 in chips) +Seat 4: rv2020 ($1.48 in chips) +Seat 5: trs2758 ($1.78 in chips) +Seat 6: RoadDevil ($0.77 in chips) +Seat 8: MasterTrini1 ($1.51 in chips) +s0rrow: posts the ante $0.01 +danjr655: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +rv2020: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [2d Qs 8c] +Dealt to danjr655 [5d] +Dealt to Nikolay Zem [Jc] +Dealt to rv2020 [8d] +Dealt to trs2758 [Kd] +Dealt to RoadDevil [4s] +Dealt to MasterTrini1 [6h] +RoadDevil: brings in for $0.02 +Trackr21 joins the table at seat #7 +MasterTrini1: calls $0.02 +s0rrow: folds +danjr655: folds +Nikolay Zem: calls $0.02 +rv2020: calls $0.02 +trs2758: calls $0.02 +*** 4th STREET *** +Dealt to Nikolay Zem [Jc] [2h] +Dealt to rv2020 [8d] [Jd] +Dealt to trs2758 [Kd] [Ks] +Dealt to RoadDevil [4s] [6c] +Dealt to MasterTrini1 [6h] [4c] +Pair on board - a double bet is allowed +trs2758: bets $0.04 +RoadDevil: calls $0.04 +MasterTrini1: calls $0.04 +Nikolay Zem: folds +rv2020: folds +*** 5th STREET *** +Dealt to trs2758 [Kd Ks] [7c] +Dealt to RoadDevil [4s 6c] [9d] +Dealt to MasterTrini1 [6h 4c] [3h] +trs2758: bets $0.08 +RoadDevil: folds +MasterTrini1: raises $0.08 to $0.16 +trs2758: raises $0.08 to $0.24 +MasterTrini1: raises $0.08 to $0.32 +Betting is capped +trs2758: calls $0.08 +*** 6th STREET *** +Dealt to trs2758 [Kd Ks 7c] [9h] +Dealt to MasterTrini1 [6h 4c 3h] [3c] +trs2758: checks +MasterTrini1: bets $0.08 +trs2758: calls $0.08 +*** RIVER *** +trs2758: checks +MasterTrini1: checks +*** SHOW DOWN *** +trs2758: shows [Ac 2c Kd Ks 7c 9h 9c] (two pair, Kings and Nines) +MasterTrini1: shows [5h 8h 6h 4c 3h 3c As] (a pair of Threes) +trs2758 collected $1.04 from pot +*** SUMMARY *** +Total pot $1.09 | Rake $0.05 +Seat 1: s0rrow folded on the 3rd Street (didn't bet) +Seat 2: danjr655 folded on the 3rd Street (didn't bet) +Seat 3: Nikolay Zem folded on the 4th Street +Seat 4: rv2020 folded on the 4th Street +Seat 5: trs2758 showed [Ac 2c Kd Ks 7c 9h 9c] and won ($1.04) with two pair, Kings and Nines +Seat 6: RoadDevil folded on the 5th Street +Seat 8: MasterTrini1 showed [5h 8h 6h 4c 3h 3c As] and lost with a pair of Threes + + + +PokerStars Game #35874334277: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:18:16 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($1.87 in chips) +Seat 2: danjr655 ($0.44 in chips) +Seat 3: Nikolay Zem ($2.86 in chips) +Seat 4: rv2020 ($1.45 in chips) +Seat 5: trs2758 ($2.35 in chips) +Seat 6: RoadDevil ($0.70 in chips) +Seat 7: Trackr21 ($1.60 in chips) +Seat 8: MasterTrini1 ($1.04 in chips) +s0rrow: posts the ante $0.01 +danjr655: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +rv2020: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +Trackr21: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [7d Qs 8s] +Dealt to danjr655 [8d] +Dealt to Nikolay Zem [6d] +Dealt to rv2020 [4d] +Dealt to trs2758 [Ad] +Dealt to RoadDevil [Td] +Dealt to Trackr21 [Jh] +Dealt to MasterTrini1 [5s] +rv2020: brings in for $0.02 +trs2758: calls $0.02 +RoadDevil: folds +Trackr21: folds +MasterTrini1: calls $0.02 +s0rrow: calls $0.02 +danjr655: folds +Nikolay Zem: calls $0.02 +*** 4th STREET *** +Dealt to s0rrow [7d Qs 8s] [2s] +Dealt to Nikolay Zem [6d] [2h] +Dealt to rv2020 [4d] [Kd] +Dealt to trs2758 [Ad] [Kh] +Dealt to MasterTrini1 [5s] [5c] +Pair on board - a double bet is allowed +MasterTrini1: bets $0.08 +s0rrow: calls $0.08 +Nikolay Zem: folds +rv2020: calls $0.08 +trs2758: calls $0.08 +*** 5th STREET *** +Dealt to s0rrow [7d Qs 8s 2s] [As] +Dealt to rv2020 [4d Kd] [Qd] +Dealt to trs2758 [Ad Kh] [3h] +Dealt to MasterTrini1 [5s 5c] [Js] +MasterTrini1: checks +s0rrow: bets $0.08 +rv2020: folds +trs2758: folds +MasterTrini1: calls $0.08 +*** 6th STREET *** +Dealt to s0rrow [7d Qs 8s 2s As] [5d] +Dealt to MasterTrini1 [5s 5c Js] [2c] +MasterTrini1: checks +s0rrow: bets $0.08 +MasterTrini1: calls $0.08 +*** RIVER *** +Dealt to s0rrow [7d Qs 8s 2s As 5d] [7h] +MasterTrini1: checks +s0rrow: bets $0.08 +MasterTrini1: calls $0.08 +*** SHOW DOWN *** +s0rrow: shows [7d Qs 8s 2s As 5d 7h] (a pair of Sevens) +MasterTrini1: mucks hand +s0rrow collected $0.94 from pot +*** SUMMARY *** +Total pot $0.98 | Rake $0.04 +Seat 1: s0rrow showed [7d Qs 8s 2s As 5d 7h] and won ($0.94) with a pair of Sevens +Seat 2: danjr655 folded on the 3rd Street (didn't bet) +Seat 3: Nikolay Zem folded on the 4th Street +Seat 4: rv2020 folded on the 5th Street +Seat 5: trs2758 folded on the 5th Street +Seat 6: RoadDevil folded on the 3rd Street (didn't bet) +Seat 7: Trackr21 folded on the 3rd Street (didn't bet) +Seat 8: MasterTrini1 mucked [Ac 9d 5s 5c Js 2c Kc] + + + +PokerStars Game #35874382643: 7 Card Stud Limit ($0.04/$0.08 USD) - 2009/11/26 10:19:39 ET +Table 'Atalante II' 8-max +Seat 1: s0rrow ($2.46 in chips) +Seat 2: danjr655 ($0.43 in chips) +Seat 3: Nikolay Zem ($2.83 in chips) +Seat 4: rv2020 ($1.34 in chips) +Seat 5: trs2758 ($2.24 in chips) +Seat 6: RoadDevil ($0.69 in chips) +Seat 7: Trackr21 ($1.59 in chips) +Seat 8: MasterTrini1 ($0.69 in chips) +s0rrow: posts the ante $0.01 +danjr655: posts the ante $0.01 +Nikolay Zem: posts the ante $0.01 +rv2020: posts the ante $0.01 +trs2758: posts the ante $0.01 +RoadDevil: posts the ante $0.01 +Trackr21: posts the ante $0.01 +MasterTrini1: posts the ante $0.01 +*** 3rd STREET *** +Dealt to s0rrow [8d 3d 8c] +Dealt to danjr655 [Kd] +Dealt to Nikolay Zem [9c] +Dealt to rv2020 [4h] +Dealt to trs2758 [6c] +Dealt to RoadDevil [6d] +Dealt to Trackr21 [5d] +Dealt to MasterTrini1 [8h] +rv2020: brings in for $0.02 +trs2758: folds +RoadDevil: calls $0.02 +Trackr21: calls $0.02 +MasterTrini1: calls $0.02 +s0rrow: calls $0.02 +danjr655: calls $0.02 +Nikolay Zem: calls $0.02 +*** 4th STREET *** +Dealt to s0rrow [8d 3d 8c] [Qc] +Dealt to danjr655 [Kd] [Kc] +Dealt to Nikolay Zem [9c] [Jd] +Dealt to rv2020 [4h] [8s] +Dealt to RoadDevil [6d] [4s] +Dealt to Trackr21 [5d] [4d] +Dealt to MasterTrini1 [8h] [As] +Pair on board - a double bet is allowed +danjr655: bets $0.04 +Nikolay Zem: calls $0.04 +rv2020: folds +RoadDevil: folds +Trackr21: calls $0.04 +MasterTrini1: calls $0.04 +s0rrow: folds +*** 5th STREET *** +Dealt to danjr655 [Kd Kc] [2h] +Dealt to Nikolay Zem [9c Jd] [Qs] +Dealt to Trackr21 [5d 4d] [3h] +Dealt to MasterTrini1 [8h As] [Th] +danjr655: bets $0.08 +Nikolay Zem: calls $0.08 +Trackr21: calls $0.08 +s0rrow is sitting out +MasterTrini1: calls $0.08 +*** 6th STREET *** +Dealt to danjr655 [Kd Kc 2h] [7s] +Dealt to Nikolay Zem [9c Jd Qs] [9d] +Dealt to Trackr21 [5d 4d 3h] [5s] +Dealt to MasterTrini1 [8h As Th] [9h] +danjr655: checks +Nikolay Zem: checks +Trackr21: checks +MasterTrini1: checks +*** RIVER *** +danjr655: checks +Nikolay Zem: checks +Trackr21: bets $0.08 +MasterTrini1: folds +danjr655: folds +Nikolay Zem: calls $0.08 +*** SHOW DOWN *** +Trackr21: shows [6h Ah 5d 4d 3h 5s 5c] (three of a kind, Fives) +Nikolay Zem: mucks hand +Trackr21 collected $0.82 from pot +*** SUMMARY *** +Total pot $0.86 | Rake $0.04 +Seat 1: s0rrow folded on the 4th Street +Seat 2: danjr655 folded on the River +Seat 3: Nikolay Zem mucked [7c 7d 9c Jd Qs 9d Ad] +Seat 4: rv2020 folded on the 4th Street +Seat 5: trs2758 folded on the 3rd Street (didn't bet) +Seat 6: RoadDevil folded on the 4th Street +Seat 7: Trackr21 showed [6h Ah 5d 4d 3h 5s 5c] and won ($0.82) with three of a kind, Fives +Seat 8: MasterTrini1 folded on the River + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.txt new file mode 100644 index 00000000..421a8ef2 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.txt @@ -0,0 +1,611 @@ +PokerStars Game #35874487284: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/11/26 10:22:32 ET +Table 'Dawn II' 8-max +Seat 3: gashpor ($1.46 in chips) +Seat 4: denny501 ($0.93 in chips) +Seat 5: s0rrow ($1.60 in chips) +Seat 8: rdiezchang ($1.16 in chips) +gashpor: posts the ante $0.01 +denny501: posts the ante $0.01 +s0rrow: posts the ante $0.01 +rdiezchang: posts the ante $0.01 +*** 3rd STREET *** +Dealt to gashpor [Kc] +Dealt to denny501 [7c] +Dealt to s0rrow [5d Ks 2h] +Dealt to rdiezchang [3d] +s0rrow: brings in for $0.02 +rdiezchang: calls $0.02 +gashpor: calls $0.02 +denny501: calls $0.02 +*** 4th STREET *** +Dealt to gashpor [Kc] [4d] +Dealt to denny501 [7c] [Qh] +Dealt to s0rrow [5d Ks 2h] [9h] +Dealt to rdiezchang [3d] [7s] +Soroka69 joins the table at seat #7 +gashpor: checks +poconoman is connected +denny501: checks +s0rrow: checks +rdiezchang: checks +*** 5th STREET *** +Dealt to gashpor [Kc 4d] [Qd] +Dealt to denny501 [7c Qh] [9s] +Dealt to s0rrow [5d Ks 2h 9h] [Js] +Dealt to rdiezchang [3d 7s] [Jh] +gashpor: checks +denny501: checks +s0rrow: checks +rdiezchang: checks +*** 6th STREET *** +Dealt to gashpor [Kc 4d Qd] [5s] +Dealt to denny501 [7c Qh 9s] [6s] +Dealt to s0rrow [5d Ks 2h 9h Js] [4c] +Dealt to rdiezchang [3d 7s Jh] [5c] +123smoothie joins the table at seat #2 +gashpor: checks +denny501: checks +s0rrow: checks +rdiezchang: bets $0.08 +gashpor: folds +denny501: folds +s0rrow: folds +Uncalled bet ($0.08) returned to rdiezchang +rdiezchang collected $0.12 from pot +rdiezchang: doesn't show hand +*** SUMMARY *** +Total pot $0.12 | Rake $0 +Seat 3: gashpor folded on the 6th Street +Seat 4: denny501 folded on the 6th Street +Seat 5: s0rrow folded on the 6th Street +Seat 8: rdiezchang collected ($0.12) + + + +PokerStars Game #35874523510: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/11/26 10:23:32 ET +Table 'Dawn II' 8-max +Seat 2: 123smoothie ($1.60 in chips) +Seat 3: gashpor ($1.43 in chips) +Seat 4: denny501 ($0.90 in chips) +Seat 5: s0rrow ($1.57 in chips) +Seat 7: Soroka69 ($1 in chips) +Seat 8: rdiezchang ($1.25 in chips) +123smoothie: posts the ante $0.01 +gashpor: posts the ante $0.01 +denny501: posts the ante $0.01 +s0rrow: posts the ante $0.01 +Soroka69: posts the ante $0.01 +rdiezchang: posts the ante $0.01 +*** 3rd STREET *** +Dealt to 123smoothie [9h] +Dealt to gashpor [4s] +Dealt to denny501 [Qs] +Dealt to s0rrow [Qd Js Kc] +Dealt to Soroka69 [6s] +Dealt to rdiezchang [8d] +poconoman was removed from the table for failing to post +gashpor: brings in for $0.02 +TomSludge joins the table at seat #6 +denny501: calls $0.02 +s0rrow: folds +Soroka69: calls $0.02 +rdiezchang: calls $0.02 +u.pressure joins the table at seat #1 +123smoothie: calls $0.02 +*** 4th STREET *** +Dealt to 123smoothie [9h] [Ah] +Dealt to gashpor [4s] [6h] +Dealt to denny501 [Qs] [4d] +Dealt to Soroka69 [6s] [3c] +Dealt to rdiezchang [8d] [Ac] +123smoothie: checks +gashpor: checks +denny501: checks +Soroka69: checks +rdiezchang: checks +*** 5th STREET *** +Dealt to 123smoothie [9h Ah] [5d] +Dealt to gashpor [4s 6h] [8h] +Dealt to denny501 [Qs 4d] [Tc] +Dealt to Soroka69 [6s 3c] [6c] +Dealt to rdiezchang [8d Ac] [8c] +rdiezchang: bets $0.08 +123smoothie: calls $0.08 +gashpor: calls $0.08 +denny501: folds +Soroka69: folds +*** 6th STREET *** +Dealt to 123smoothie [9h Ah 5d] [4c] +Dealt to gashpor [4s 6h 8h] [Qh] +Dealt to rdiezchang [8d Ac 8c] [Jd] +rdiezchang: bets $0.08 +123smoothie: calls $0.08 +gashpor: calls $0.08 +*** RIVER *** +rdiezchang: bets $0.08 +123smoothie: calls $0.08 +gashpor: folds +*** SHOW DOWN *** +rdiezchang: shows [Ad 5s 8d Ac 8c Jd Th] (HI: two pair, Aces and Eights) +123smoothie: mucks hand +rdiezchang collected $0.77 from pot +No low hand qualified +*** SUMMARY *** +Total pot $0.80 | Rake $0.03 +Seat 2: 123smoothie mucked [9c Jc 9h Ah 5d 4c Qc] +Seat 3: gashpor folded on the River +Seat 4: denny501 folded on the 5th Street +Seat 5: s0rrow folded on the 3rd Street (didn't bet) +Seat 7: Soroka69 folded on the 5th Street +Seat 8: rdiezchang showed [Ad 5s 8d Ac 8c Jd Th] and won ($0.77) with HI: two pair, Aces and Eights + + + +PokerStars Game #35874576282: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/11/26 10:24:59 ET +Table 'Dawn II' 8-max +Seat 1: u.pressure ($11 in chips) +Seat 2: 123smoothie ($1.33 in chips) +Seat 3: gashpor ($1.24 in chips) +Seat 4: denny501 ($0.87 in chips) +Seat 5: s0rrow ($1.56 in chips) +Seat 6: TomSludge ($1.60 in chips) +Seat 7: Soroka69 ($0.97 in chips) +Seat 8: rdiezchang ($1.75 in chips) +u.pressure: posts the ante $0.01 +123smoothie: posts the ante $0.01 +gashpor: posts the ante $0.01 +denny501: posts the ante $0.01 +s0rrow: posts the ante $0.01 +TomSludge: posts the ante $0.01 +Soroka69: posts the ante $0.01 +rdiezchang: posts the ante $0.01 +*** 3rd STREET *** +Dealt to u.pressure [Qs] +Dealt to 123smoothie [4h] +Dealt to gashpor [4c] +Dealt to denny501 [8s] +Dealt to s0rrow [Ah Kd 8d] +Dealt to TomSludge [Ks] +Dealt to Soroka69 [3h] +Dealt to rdiezchang [5s] +Soroka69: brings in for $0.02 +rdiezchang: calls $0.02 +u.pressure: calls $0.02 +123smoothie: calls $0.02 +gashpor: calls $0.02 +denny501: folds +s0rrow: calls $0.02 +TomSludge: folds +*** 4th STREET *** +Dealt to u.pressure [Qs] [Td] +Dealt to 123smoothie [4h] [9d] +Dealt to gashpor [4c] [Jc] +Dealt to s0rrow [Ah Kd 8d] [Kc] +Dealt to Soroka69 [3h] [Ad] +Dealt to rdiezchang [5s] [7c] +Soroka69: checks +rdiezchang: checks +u.pressure: checks +123smoothie: checks +gashpor: checks +s0rrow: checks +*** 5th STREET *** +Dealt to u.pressure [Qs Td] [Jh] +Dealt to 123smoothie [4h 9d] [2c] +Dealt to gashpor [4c Jc] [5h] +Dealt to s0rrow [Ah Kd 8d Kc] [2d] +Dealt to Soroka69 [3h Ad] [Qd] +Dealt to rdiezchang [5s 7c] [4d] +Soroka69: checks +rdiezchang: checks +u.pressure: checks +123smoothie: checks +gashpor: bets $0.08 +s0rrow: folds +Soroka69: calls $0.08 +rdiezchang: calls $0.08 +u.pressure: calls $0.08 +123smoothie: folds +*** 6th STREET *** +Dealt to u.pressure [Qs Td Jh] [6d] +Dealt to gashpor [4c Jc 5h] [7s] +Dealt to Soroka69 [3h Ad Qd] [9s] +Dealt to rdiezchang [5s 7c 4d] [Th] +Soroka69: checks +rdiezchang: checks +u.pressure: checks +gashpor: checks +*** RIVER *** +Soroka69: checks +rdiezchang: checks +u.pressure: checks +gashpor: bets $0.08 +Soroka69: folds +rdiezchang: calls $0.08 +u.pressure: calls $0.08 +*** SHOW DOWN *** +gashpor: shows [7h 2h 4c Jc 5h 7s 8c] (HI: a pair of Sevens; LO: 8,7,5,4,2) +rdiezchang: shows [As Qh 5s 7c 4d Th Ac] (HI: a pair of Aces) +u.pressure: shows [Qc Kh Qs Td Jh 6d 6s] (HI: two pair, Queens and Sixes) +u.pressure collected $0.37 from pot +gashpor collected $0.36 from pot +*** SUMMARY *** +Total pot $0.76 | Rake $0.03 +Seat 1: u.pressure showed [Qc Kh Qs Td Jh 6d 6s] and won ($0.37) with HI: two pair, Queens and Sixes +Seat 2: 123smoothie folded on the 5th Street +Seat 3: gashpor showed [7h 2h 4c Jc 5h 7s 8c] and won ($0.36) with HI: a pair of Sevens; LO: 8,7,5,4,2 +Seat 4: denny501 folded on the 3rd Street (didn't bet) +Seat 5: s0rrow folded on the 5th Street +Seat 6: TomSludge folded on the 3rd Street (didn't bet) +Seat 7: Soroka69 folded on the River +Seat 8: rdiezchang showed [As Qh 5s 7c 4d Th Ac] and lost with HI: a pair of Aces + + + +PokerStars Game #35874635170: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/11/26 10:26:37 ET +Table 'Dawn II' 8-max +Seat 1: u.pressure ($11.18 in chips) +Seat 2: 123smoothie ($1.30 in chips) +Seat 3: gashpor ($1.41 in chips) +Seat 4: denny501 ($0.86 in chips) +Seat 5: s0rrow ($1.53 in chips) +Seat 6: TomSludge ($1.59 in chips) +Seat 7: Soroka69 ($0.86 in chips) +Seat 8: rdiezchang ($1.56 in chips) +u.pressure: posts the ante $0.01 +123smoothie: posts the ante $0.01 +gashpor: posts the ante $0.01 +denny501: posts the ante $0.01 +s0rrow: posts the ante $0.01 +TomSludge: posts the ante $0.01 +Soroka69: posts the ante $0.01 +rdiezchang: posts the ante $0.01 +*** 3rd STREET *** +Dealt to u.pressure [8c] +Dealt to 123smoothie [2c] +Dealt to gashpor [Qd] +Dealt to denny501 [9d] +Dealt to s0rrow [Ts 5c Js] +Dealt to TomSludge [3h] +Dealt to Soroka69 [7s] +Dealt to rdiezchang [6c] +123smoothie: brings in for $0.02 +gashpor: folds +denny501: calls $0.02 +s0rrow: folds +TomSludge: folds +Soroka69: calls $0.02 +rdiezchang: calls $0.02 +u.pressure: folds +*** 4th STREET *** +Dealt to 123smoothie [2c] [8d] +Dealt to denny501 [9d] [3d] +Dealt to Soroka69 [7s] [Th] +Dealt to rdiezchang [6c] [Ac] +rdiezchang: bets $0.04 +123smoothie: calls $0.04 +denny501: calls $0.04 +Soroka69: folds +*** 5th STREET *** +Dealt to 123smoothie [2c 8d] [3c] +Dealt to denny501 [9d 3d] [As] +Dealt to rdiezchang [6c Ac] [6s] +rdiezchang: bets $0.08 +123smoothie: calls $0.08 +denny501: calls $0.08 +*** 6th STREET *** +Dealt to 123smoothie [2c 8d 3c] [3s] +Dealt to denny501 [9d 3d As] [Kc] +Dealt to rdiezchang [6c Ac 6s] [Qc] +rdiezchang: bets $0.08 +123smoothie: calls $0.08 +denny501: folds +*** RIVER *** +rdiezchang: bets $0.08 +123smoothie: calls $0.08 +*** SHOW DOWN *** +rdiezchang: shows [8s 7c 6c Ac 6s Qc Qs] (HI: two pair, Queens and Sixes) +123smoothie: mucks hand +rdiezchang collected $0.80 from pot +No low hand qualified +*** SUMMARY *** +Total pot $0.84 | Rake $0.04 +Seat 1: u.pressure folded on the 3rd Street (didn't bet) +Seat 2: 123smoothie mucked [2d 7d 2c 8d 3c 3s Tc] +Seat 3: gashpor folded on the 3rd Street (didn't bet) +Seat 4: denny501 folded on the 6th Street +Seat 5: s0rrow folded on the 3rd Street (didn't bet) +Seat 6: TomSludge folded on the 3rd Street (didn't bet) +Seat 7: Soroka69 folded on the 4th Street +Seat 8: rdiezchang showed [8s 7c 6c Ac 6s Qc Qs] and won ($0.80) with HI: two pair, Queens and Sixes + + + +PokerStars Game #35874676388: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/11/26 10:27:46 ET +Table 'Dawn II' 8-max +Seat 1: u.pressure ($11.17 in chips) +Seat 2: 123smoothie ($0.99 in chips) +Seat 3: gashpor ($1.40 in chips) +Seat 4: denny501 ($0.71 in chips) +Seat 5: s0rrow ($1.52 in chips) +Seat 6: TomSludge ($1.58 in chips) +Seat 7: Soroka69 ($0.83 in chips) +Seat 8: rdiezchang ($2.05 in chips) +u.pressure: posts the ante $0.01 +123smoothie: posts the ante $0.01 +gashpor: posts the ante $0.01 +denny501: posts the ante $0.01 +s0rrow: posts the ante $0.01 +TomSludge: posts the ante $0.01 +Soroka69: posts the ante $0.01 +rdiezchang: posts the ante $0.01 +*** 3rd STREET *** +Dealt to u.pressure [Td] +Dealt to 123smoothie [4c] +Dealt to gashpor [5d] +Dealt to denny501 [2c] +Dealt to s0rrow [7c 3s 5h] +Dealt to TomSludge [8s] +Dealt to Soroka69 [7d] +Dealt to rdiezchang [Ad] +denny501: brings in for $0.02 +s0rrow: calls $0.02 +TomSludge: folds +Soroka69: calls $0.02 +rdiezchang: calls $0.02 +u.pressure: folds +123smoothie: calls $0.02 +gashpor: calls $0.02 +*** 4th STREET *** +Dealt to 123smoothie [4c] [3c] +Dealt to gashpor [5d] [Qd] +Dealt to denny501 [2c] [7s] +Dealt to s0rrow [7c 3s 5h] [Qc] +Dealt to Soroka69 [7d] [5s] +Dealt to rdiezchang [Ad] [Js] +rdiezchang: checks +123smoothie: checks +gashpor: checks +denny501: folds +denny501 leaves the table +s0rrow: checks +Soroka69: checks +*** 5th STREET *** +Dealt to 123smoothie [4c 3c] [9s] +Dealt to gashpor [5d Qd] [Jd] +Dealt to s0rrow [7c 3s 5h Qc] [Kc] +Dealt to Soroka69 [7d 5s] [5c] +Dealt to rdiezchang [Ad Js] [Ts] +LainaRahat joins the table at seat #4 +Soroka69: checks +rdiezchang: checks +123smoothie: checks +gashpor: bets $0.08 +s0rrow: calls $0.08 +Soroka69: calls $0.08 +rdiezchang: folds +123smoothie: folds +*** 6th STREET *** +Dealt to gashpor [5d Qd Jd] [9d] +Dealt to s0rrow [7c 3s 5h Qc Kc] [6d] +Dealt to Soroka69 [7d 5s 5c] [2s] +Soroka69: checks +gashpor: bets $0.08 +s0rrow: calls $0.08 +Soroka69: calls $0.08 +*** RIVER *** +Dealt to s0rrow [7c 3s 5h Qc Kc 6d] [4d] +Soroka69: checks +gashpor: bets $0.08 +s0rrow: calls $0.08 +Soroka69: folds +*** SHOW DOWN *** +gashpor: shows [4h 3d 5d Qd Jd 9d 6h] (HI: a flush, Queen high) +s0rrow: shows [7c 3s 5h Qc Kc 6d 4d] (HI: a straight, Three to Seven; LO: 7,6,5,4,3) +gashpor collected $0.40 from pot +s0rrow collected $0.40 from pot +*** SUMMARY *** +Total pot $0.84 | Rake $0.04 +Seat 1: u.pressure folded on the 3rd Street (didn't bet) +Seat 2: 123smoothie folded on the 5th Street +Seat 3: gashpor showed [4h 3d 5d Qd Jd 9d 6h] and won ($0.40) with HI: a flush, Queen high +Seat 4: denny501 folded on the 4th Street +Seat 5: s0rrow showed [7c 3s 5h Qc Kc 6d 4d] and won ($0.40) with HI: a straight, Three to Seven; LO: 7,6,5,4,3 +Seat 6: TomSludge folded on the 3rd Street (didn't bet) +Seat 7: Soroka69 folded on the River +Seat 8: rdiezchang folded on the 5th Street + + + +PokerStars Game #35874733203: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/11/26 10:29:22 ET +Table 'Dawn II' 8-max +Seat 1: u.pressure ($11.16 in chips) +Seat 2: 123smoothie ($0.96 in chips) +Seat 3: gashpor ($1.53 in chips) +Seat 4: LainaRahat ($2 in chips) +Seat 5: s0rrow ($1.65 in chips) +Seat 6: TomSludge ($1.57 in chips) +Seat 7: Soroka69 ($0.64 in chips) +Seat 8: rdiezchang ($2.02 in chips) +u.pressure: posts the ante $0.01 +123smoothie: posts the ante $0.01 +gashpor: posts the ante $0.01 +LainaRahat: posts the ante $0.01 +s0rrow: posts the ante $0.01 +TomSludge: posts the ante $0.01 +Soroka69: posts the ante $0.01 +rdiezchang: posts the ante $0.01 +*** 3rd STREET *** +Dealt to u.pressure [Js] +Dealt to 123smoothie [Kc] +Dealt to gashpor [Kd] +Dealt to LainaRahat [Ts] +Dealt to s0rrow [Qd Ad 2s] +Dealt to TomSludge [4h] +Dealt to Soroka69 [3c] +Dealt to rdiezchang [3h] +s0rrow: brings in for $0.02 +TomSludge: folds +Soroka69: calls $0.02 +rdiezchang: folds +u.pressure: folds +123smoothie: calls $0.02 +gashpor: folds +LainaRahat: calls $0.02 +*** 4th STREET *** +Dealt to 123smoothie [Kc] [7d] +Dealt to LainaRahat [Ts] [4c] +Dealt to s0rrow [Qd Ad 2s] [As] +Dealt to Soroka69 [3c] [Qc] +rdiezchang leaves the table +s0rrow: bets $0.04 +Soroka69: raises $0.04 to $0.08 +geo_441 joins the table at seat #8 +123smoothie: folds +LainaRahat: calls $0.08 +s0rrow: calls $0.04 +*** 5th STREET *** +Dealt to LainaRahat [Ts 4c] [Ks] +Dealt to s0rrow [Qd Ad 2s As] [2h] +Dealt to Soroka69 [3c Qc] [6h] +s0rrow: checks +Soroka69: bets $0.08 +LainaRahat: calls $0.08 +s0rrow: calls $0.08 +*** 6th STREET *** +Dealt to LainaRahat [Ts 4c Ks] [Tc] +Dealt to s0rrow [Qd Ad 2s As 2h] [8d] +Dealt to Soroka69 [3c Qc 6h] [7h] +LainaRahat: checks +s0rrow: checks +Soroka69: checks +*** RIVER *** +Dealt to s0rrow [Qd Ad 2s As 2h 8d] [6c] +LainaRahat: checks +s0rrow: checks +Soroka69: checks +*** SHOW DOWN *** +LainaRahat: shows [Ac 3s Ts 4c Ks Tc Kh] (HI: two pair, Kings and Tens) +s0rrow: shows [Qd Ad 2s As 2h 8d 6c] (HI: two pair, Aces and Deuces) +Soroka69: mucks hand +s0rrow collected $0.61 from pot +No low hand qualified +*** SUMMARY *** +Total pot $0.64 | Rake $0.03 +Seat 1: u.pressure folded on the 3rd Street (didn't bet) +Seat 2: 123smoothie folded on the 4th Street +Seat 3: gashpor folded on the 3rd Street (didn't bet) +Seat 4: LainaRahat showed [Ac 3s Ts 4c Ks Tc Kh] and lost with HI: two pair, Kings and Tens +Seat 5: s0rrow showed [Qd Ad 2s As 2h 8d 6c] and won ($0.61) with HI: two pair, Aces and Deuces +Seat 6: TomSludge folded on the 3rd Street (didn't bet) +Seat 7: Soroka69 mucked [2d Qh 3c Qc 6h 7h Jd] +Seat 8: rdiezchang folded on the 3rd Street (didn't bet) + + + +PokerStars Game #35874789183: 7 Card Stud Hi/Lo Limit ($0.04/$0.08 USD) - 2009/11/26 10:30:56 ET +Table 'Dawn II' 8-max +Seat 1: u.pressure ($11.15 in chips) +Seat 2: 123smoothie ($0.93 in chips) +Seat 3: gashpor ($1.52 in chips) +Seat 4: LainaRahat ($1.81 in chips) +Seat 5: s0rrow ($2.07 in chips) +Seat 6: TomSludge ($1.56 in chips) +Seat 7: Soroka69 ($0.45 in chips) +Seat 8: geo_441 ($1.60 in chips) +u.pressure: posts the ante $0.01 +123smoothie: posts the ante $0.01 +gashpor: posts the ante $0.01 +LainaRahat: posts the ante $0.01 +s0rrow: posts the ante $0.01 +TomSludge: posts the ante $0.01 +Soroka69: posts the ante $0.01 +geo_441: posts the ante $0.01 +*** 3rd STREET *** +Dealt to u.pressure [5c] +Dealt to 123smoothie [8c] +Dealt to gashpor [5s] +Dealt to LainaRahat [2c] +Dealt to s0rrow [8d Qs Kc] +Dealt to TomSludge [As] +Dealt to Soroka69 [Tc] +Dealt to geo_441 [4d] +LainaRahat: brings in for $0.02 +s0rrow: folds +TomSludge: calls $0.02 +Soroka69: calls $0.02 +geo_441: calls $0.02 +u.pressure: folds +123smoothie: calls $0.02 +gashpor: calls $0.02 +*** 4th STREET *** +Dealt to 123smoothie [8c] [9d] +Dealt to gashpor [5s] [5d] +Dealt to LainaRahat [2c] [2d] +Dealt to TomSludge [As] [8h] +Dealt to Soroka69 [Tc] [2h] +Dealt to geo_441 [4d] [3s] +gashpor: checks +LainaRahat: checks +TomSludge: bets $0.04 +Soroka69: calls $0.04 +geo_441: calls $0.04 +123smoothie: calls $0.04 +gashpor: calls $0.04 +LainaRahat: folds +*** 5th STREET *** +Dealt to 123smoothie [8c 9d] [Jd] +Dealt to gashpor [5s 5d] [Td] +Dealt to TomSludge [As 8h] [Js] +Dealt to Soroka69 [Tc 2h] [Qc] +Dealt to geo_441 [4d 3s] [7c] +gashpor: checks +TomSludge: checks +Soroka69: bets $0.08 +geo_441: calls $0.08 +123smoothie: calls $0.08 +gashpor: calls $0.08 +TomSludge: calls $0.08 +*** 6th STREET *** +Dealt to 123smoothie [8c 9d Jd] [3c] +Dealt to gashpor [5s 5d Td] [9h] +Dealt to TomSludge [As 8h Js] [6c] +Dealt to Soroka69 [Tc 2h Qc] [5h] +Dealt to geo_441 [4d 3s 7c] [Jh] +gashpor: checks +TomSludge: checks +Soroka69: bets $0.08 +geo_441: calls $0.08 +123smoothie: calls $0.08 +gashpor: calls $0.08 +TomSludge: calls $0.08 +*** RIVER *** +gashpor: checks +TomSludge: checks +Soroka69: checks +geo_441: checks +123smoothie: bets $0.08 +gashpor: calls $0.08 +TomSludge: calls $0.08 +Soroka69: calls $0.08 +geo_441: folds +*** SHOW DOWN *** +123smoothie: shows [Qd Ks 8c 9d Jd 3c 9c] (HI: a pair of Nines) +gashpor: shows [4c Th 5s 5d Td 9h Ad] (HI: two pair, Tens and Fives) +TomSludge: shows [7s Ah As 8h Js 6c Jc] (HI: two pair, Aces and Jacks) +Soroka69: mucks hand +TomSludge collected $1.45 from pot +No low hand qualified +*** SUMMARY *** +Total pot $1.52 | Rake $0.07 +Seat 1: u.pressure folded on the 3rd Street (didn't bet) +Seat 2: 123smoothie showed [Qd Ks 8c 9d Jd 3c 9c] and lost with HI: a pair of Nines +Seat 3: gashpor showed [4c Th 5s 5d Td 9h Ad] and lost with HI: two pair, Tens and Fives +Seat 4: LainaRahat folded on the 4th Street +Seat 5: s0rrow folded on the 3rd Street (didn't bet) +Seat 6: TomSludge showed [7s Ah As 8h Js 6c Jc] and won ($1.45) with HI: two pair, Aces and Jacks +Seat 7: Soroka69 mucked [Qh Ts Tc 2h Qc 5h 6s] +Seat 8: geo_441 folded on the River + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Stud/Razz-USD-0.04-0.08-200911.txt b/pyfpdb/regression-test-files/cash/Stars/Stud/Razz-USD-0.04-0.08-200911.txt new file mode 100644 index 00000000..71eb1271 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Stud/Razz-USD-0.04-0.08-200911.txt @@ -0,0 +1,574 @@ +PokerStars Game #35874566077: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:24:42 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.33 in chips) +Seat 3: willy32948 ($2.17 in chips) +Seat 5: meg100 ($1.71 in chips) +Seat 7: s0rrow ($1.60 in chips) +Seat 8: SilkZone ($1.65 in chips) +kobreli: posts the ante $0.01 +willy32948: posts the ante $0.01 +meg100: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [Qc] +Dealt to willy32948 [6h] +Dealt to meg100 [3s] +Dealt to s0rrow [Td 2s 9s] +Dealt to SilkZone [3h] +kobreli: brings in for $0.02 +willy32948: calls $0.02 +meg100: calls $0.02 +s0rrow: folds +SilkZone: calls $0.02 +*** 4th STREET *** +Dealt to kobreli [Qc] [8s] +Dealt to willy32948 [6h] [7h] +Dealt to meg100 [3s] [Js] +Dealt to SilkZone [3h] [3d] +kurczakkr2 is disconnected +willy32948: bets $0.04 +meg100: calls $0.04 +SilkZone: calls $0.04 +kobreli: folds +*** 5th STREET *** +Dealt to willy32948 [6h 7h] [7s] +Dealt to meg100 [3s Js] [Kh] +Dealt to SilkZone [3h 3d] [4h] +meg100: checks +SilkZone: bets $0.08 +willy32948: calls $0.08 +meg100: folds +*** 6th STREET *** +Dealt to willy32948 [6h 7h 7s] [Jh] +Dealt to SilkZone [3h 3d 4h] [9c] +SilkZone: bets $0.08 +willy32948: folds +Uncalled bet ($0.08) returned to SilkZone +willy32948 leaves the table +SilkZone collected $0.39 from pot +*** SUMMARY *** +Total pot $0.41 | Rake $0.02 +Seat 1: kobreli folded on the 4th Street +Seat 3: willy32948 folded on the 6th Street +Seat 5: meg100 folded on the 5th Street +Seat 7: s0rrow folded on the 3rd Street (didn't bet) +Seat 8: SilkZone collected ($0.39) + + + +PokerStars Game #35874590575: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:25:23 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.30 in chips) +Seat 5: meg100 ($1.64 in chips) +Seat 7: s0rrow ($1.59 in chips) +Seat 8: SilkZone ($1.89 in chips) +kobreli: posts the ante $0.01 +meg100: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [3h] +Dealt to meg100 [6s] +Dealt to s0rrow [4c 2h 8h] +Dealt to SilkZone [Jc] +SilkZone: brings in for $0.02 +kobreli: calls $0.02 +meg100: calls $0.02 +s0rrow: calls $0.02 +*** 4th STREET *** +Dealt to kobreli [3h] [Ks] +Dealt to meg100 [6s] [2d] +Dealt to s0rrow [4c 2h 8h] [7c] +Dealt to SilkZone [Jc] [3c] +meg100: checks +s0rrow: bets $0.04 +SilkZone: calls $0.04 +kobreli: folds +meg100: calls $0.04 +*** 5th STREET *** +Dealt to meg100 [6s 2d] [5d] +Dealt to s0rrow [4c 2h 8h 7c] [Ah] +Dealt to SilkZone [Jc 3c] [8c] +meg100: checks +s0rrow: bets $0.08 +SilkZone: calls $0.08 +meg100: calls $0.08 +*** 6th STREET *** +Dealt to meg100 [6s 2d 5d] [Qs] +Dealt to s0rrow [4c 2h 8h 7c Ah] [2s] +Dealt to SilkZone [Jc 3c 8c] [Kh] +s0rrow: checks +SilkZone: checks +meg100: checks +*** RIVER *** +Dealt to s0rrow [4c 2h 8h 7c Ah 2s] [5h] +s0rrow: bets $0.08 +HIWAII2 joins the table at seat #6 +SilkZone: folds +meg100: folds +Uncalled bet ($0.08) returned to s0rrow +s0rrow collected $0.46 from pot +*** SUMMARY *** +Total pot $0.48 | Rake $0.02 +Seat 1: kobreli folded on the 4th Street +Seat 5: meg100 folded on the River +Seat 7: s0rrow collected ($0.46) +Seat 8: SilkZone folded on the River + + + +PokerStars Game #35874623967: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:26:19 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.27 in chips) +Seat 5: meg100 ($1.49 in chips) +Seat 6: HIWAII2 ($1.13 in chips) +Seat 7: s0rrow ($1.90 in chips) +Seat 8: SilkZone ($1.74 in chips) +kobreli: posts the ante $0.01 +meg100: posts the ante $0.01 +HIWAII2: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [8c] +Dealt to meg100 [7h] +Dealt to HIWAII2 [Kh] +Dealt to s0rrow [9h 2s 7c] +Dealt to SilkZone [6s] +HIWAII2: brings in for $0.02 +manga130 joins the table at seat #3 +s0rrow: calls $0.02 +SilkZone: calls $0.02 +kobreli: calls $0.02 +meg100: calls $0.02 +*** 4th STREET *** +Dealt to kobreli [8c] [8s] +Dealt to meg100 [7h] [As] +Dealt to HIWAII2 [Kh] [6h] +Dealt to s0rrow [9h 2s 7c] [6c] +Dealt to SilkZone [6s] [9c] +meg100: checks +HIWAII2: checks +s0rrow: checks +SilkZone: checks +kobreli: checks +*** 5th STREET *** +Dealt to kobreli [8c 8s] [3c] +Dealt to meg100 [7h As] [5d] +Dealt to HIWAII2 [Kh 6h] [3d] +Dealt to s0rrow [9h 2s 7c 6c] [Qh] +Dealt to SilkZone [6s 9c] [Qs] +meg100: checks +HIWAII2: bets $0.08 +s0rrow: calls $0.08 +SilkZone: folds +kobreli: folds +meg100: calls $0.08 +*** 6th STREET *** +Dealt to meg100 [7h As 5d] [5c] +Dealt to HIWAII2 [Kh 6h 3d] [6d] +Dealt to s0rrow [9h 2s 7c 6c Qh] [Ad] +s0rrow: checks +meg100: checks +HIWAII2: checks +*** RIVER *** +Dealt to s0rrow [9h 2s 7c 6c Qh Ad] [Ac] +s0rrow: bets $0.08 +meg100: folds +HIWAII2: raises $0.08 to $0.16 +s0rrow: calls $0.08 +*** SHOW DOWN *** +HIWAII2: shows [2h 8d Kh 6h 3d 6d 4h] (Lo: 8,6,4,3,2) +s0rrow: mucks hand +HIWAII2 collected $0.68 from pot +*** SUMMARY *** +Total pot $0.71 | Rake $0.03 +Seat 1: kobreli folded on the 5th Street +Seat 5: meg100 folded on the River +Seat 6: HIWAII2 showed [2h 8d Kh 6h 3d 6d 4h] and won ($0.68) with Lo: 8,6,4,3,2 +Seat 7: s0rrow mucked [9h 2s 7c 6c Qh Ad Ac] +Seat 8: SilkZone folded on the 5th Street + + + +PokerStars Game #35874664176: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:27:26 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.24 in chips) +Seat 3: manga130 ($0.68 in chips) +Seat 5: meg100 ($1.38 in chips) +Seat 6: HIWAII2 ($1.54 in chips) +Seat 7: s0rrow ($1.63 in chips) +Seat 8: SilkZone ($1.71 in chips) +kobreli: posts the ante $0.01 +manga130: posts the ante $0.01 +meg100: posts the ante $0.01 +HIWAII2: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [Kd] +Dealt to manga130 [Td] +Dealt to meg100 [Qh] +Dealt to HIWAII2 [5h] +Dealt to s0rrow [9s Qd 2s] +Dealt to SilkZone [As] +kobreli: brings in for $0.02 +manga130: folds +meg100: folds +HIWAII2: calls $0.02 +s0rrow: folds +SilkZone: calls $0.02 +*** 4th STREET *** +Dealt to kobreli [Kd] [4s] +Dealt to HIWAII2 [5h] [4h] +Dealt to SilkZone [As] [Ah] +HIWAII2: bets $0.04 +SilkZone: folds +kobreli: folds +Uncalled bet ($0.04) returned to HIWAII2 +HIWAII2 collected $0.12 from pot +HIWAII2: shows [3d 3s 5h 4h] (Lo: 3,3,5,4) +*** SUMMARY *** +Total pot $0.12 | Rake $0 +Seat 1: kobreli folded on the 4th Street +Seat 3: manga130 folded on the 3rd Street (didn't bet) +Seat 5: meg100 folded on the 3rd Street (didn't bet) +Seat 6: HIWAII2 collected ($0.12) +Seat 7: s0rrow folded on the 3rd Street (didn't bet) +Seat 8: SilkZone folded on the 4th Street + + + +PokerStars Game #35874682808: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:27:57 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.21 in chips) +Seat 3: manga130 ($0.67 in chips) +Seat 5: meg100 ($1.37 in chips) +Seat 6: HIWAII2 ($1.63 in chips) +Seat 7: s0rrow ($1.62 in chips) +Seat 8: SilkZone ($1.68 in chips) +kobreli: posts the ante $0.01 +manga130: posts the ante $0.01 +meg100: posts the ante $0.01 +HIWAII2: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [Tc] +Dealt to manga130 [Qd] +Dealt to meg100 [9h] +Dealt to HIWAII2 [5s] +Dealt to s0rrow [7h 9c Th] +Dealt to SilkZone [Kh] +SilkZone: brings in for $0.02 +kobreli: folds +manga130: calls $0.02 +meg100: calls $0.02 +HIWAII2: calls $0.02 +s0rrow: folds +*** 4th STREET *** +Dealt to manga130 [Qd] [8s] +Dealt to meg100 [9h] [Kd] +Dealt to HIWAII2 [5s] [6s] +Dealt to SilkZone [Kh] [2d] +HIWAII2: bets $0.04 +SilkZone: raises $0.04 to $0.08 +manga130: calls $0.08 +meg100: folds +HIWAII2: calls $0.04 +*** 5th STREET *** +Dealt to manga130 [Qd 8s] [3h] +Dealt to HIWAII2 [5s 6s] [4s] +Dealt to SilkZone [Kh 2d] [Js] +HIWAII2: bets $0.08 +SilkZone: calls $0.08 +manga130: calls $0.08 +*** 6th STREET *** +Dealt to manga130 [Qd 8s 3h] [Ks] +Dealt to HIWAII2 [5s 6s 4s] [Qs] +Dealt to SilkZone [Kh 2d Js] [6c] +HIWAII2: bets $0.08 +SilkZone: calls $0.08 +manga130: calls $0.08 +*** RIVER *** +HIWAII2: bets $0.08 +SilkZone: raises $0.08 to $0.16 +manga130: folds +HIWAII2: folds +Uncalled bet ($0.08) returned to SilkZone +SilkZone collected $0.98 from pot +*** SUMMARY *** +Total pot $1.02 | Rake $0.04 +Seat 1: kobreli folded on the 3rd Street (didn't bet) +Seat 3: manga130 folded on the River +Seat 5: meg100 folded on the 4th Street +Seat 6: HIWAII2 folded on the River +Seat 7: s0rrow folded on the 3rd Street (didn't bet) +Seat 8: SilkZone collected ($0.98) + + + +PokerStars Game #35874721245: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:29:02 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.20 in chips) +Seat 3: manga130 ($0.40 in chips) +Seat 5: meg100 ($1.34 in chips) +Seat 6: HIWAII2 ($1.28 in chips) +Seat 7: s0rrow ($1.61 in chips) +Seat 8: SilkZone ($2.31 in chips) +kobreli: posts the ante $0.01 +manga130: posts the ante $0.01 +meg100: posts the ante $0.01 +HIWAII2: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [3d] +Dealt to manga130 [Qc] +Dealt to meg100 [Qd] +Dealt to HIWAII2 [Js] +Dealt to s0rrow [Th Ah Qh] +Dealt to SilkZone [9d] +s0rrow: brings in for $0.02 +SilkZone: calls $0.02 +kobreli: calls $0.02 +manga130: calls $0.02 +meg100: folds +HIWAII2: folds +*** 4th STREET *** +Dealt to kobreli [3d] [Ad] +Dealt to manga130 [Qc] [6d] +Dealt to s0rrow [Th Ah Qh] [8s] +Dealt to SilkZone [9d] [7c] +kobreli: bets $0.04 +manga130: folds +s0rrow: folds +SilkZone: raises $0.04 to $0.08 +kobreli: raises $0.04 to $0.12 +SilkZone: calls $0.04 +*** 5th STREET *** +Dealt to kobreli [3d Ad] [Ac] +Dealt to SilkZone [9d 7c] [Ts] +SilkZone: checks +kobreli: bets $0.08 +SilkZone: calls $0.08 +*** 6th STREET *** +Dealt to kobreli [3d Ad Ac] [Kh] +Dealt to SilkZone [9d 7c Ts] [5s] +SilkZone: bets $0.08 +kobreli: calls $0.08 +*** RIVER *** +SilkZone: checks +kobreli: checks +*** SHOW DOWN *** +kobreli: shows [6h 8h 3d Ad Ac Kh 8c] (Lo: K,8,6,3,A) +SilkZone: shows [2d 4s 9d 7c Ts 5s Tc] (Lo: 9,7,5,4,2) +SilkZone collected $0.67 from pot +*** SUMMARY *** +Total pot $0.70 | Rake $0.03 +Seat 1: kobreli showed [6h 8h 3d Ad Ac Kh 8c] and lost with Lo: K,8,6,3,A +Seat 3: manga130 folded on the 4th Street +Seat 5: meg100 folded on the 3rd Street (didn't bet) +Seat 6: HIWAII2 folded on the 3rd Street (didn't bet) +Seat 7: s0rrow folded on the 4th Street +Seat 8: SilkZone showed [2d 4s 9d 7c Ts 5s Tc] and won ($0.67) with Lo: 9,7,5,4,2 + + + +PokerStars Game #35874756552: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:30:02 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($0.89 in chips) +Seat 3: manga130 ($0.37 in chips) +Seat 5: meg100 ($1.33 in chips) +Seat 6: HIWAII2 ($1.27 in chips) +Seat 7: s0rrow ($1.58 in chips) +Seat 8: SilkZone ($2.67 in chips) +kobreli: posts the ante $0.01 +manga130: posts the ante $0.01 +meg100: posts the ante $0.01 +HIWAII2: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [4s] +Dealt to manga130 [5h] +Dealt to meg100 [3h] +Dealt to HIWAII2 [Qh] +Dealt to s0rrow [Kd Ad 7d] +Dealt to SilkZone [9d] +kobreli said, "this.is.lucky" +HIWAII2: brings in for $0.02 +s0rrow: folds +SilkZone: folds +kobreli: calls $0.02 +manga130: folds +meg100: calls $0.02 +*** 4th STREET *** +Dealt to kobreli [4s] [Tc] +Dealt to meg100 [3h] [2s] +Dealt to HIWAII2 [Qh] [7s] +meg100: bets $0.04 +HIWAII2: folds +kobreli: calls $0.04 +*** 5th STREET *** +Dealt to kobreli [4s Tc] [8d] +Dealt to meg100 [3h 2s] [Jh] +kobreli: bets $0.08 +meg100: folds +Uncalled bet ($0.08) returned to kobreli +kobreli collected $0.19 from pot +kobreli: doesn't show hand +*** SUMMARY *** +Total pot $0.20 | Rake $0.01 +Seat 1: kobreli collected ($0.19) +Seat 3: manga130 folded on the 3rd Street (didn't bet) +Seat 5: meg100 folded on the 5th Street +Seat 6: HIWAII2 folded on the 4th Street +Seat 7: s0rrow folded on the 3rd Street (didn't bet) +Seat 8: SilkZone folded on the 3rd Street (didn't bet) + + + +PokerStars Game #35874780027: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:30:41 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.01 in chips) +Seat 3: manga130 ($0.36 in chips) +Seat 5: meg100 ($1.26 in chips) +Seat 6: HIWAII2 ($1.24 in chips) +Seat 7: s0rrow ($1.57 in chips) +Seat 8: SilkZone ($2.66 in chips) +kobreli: posts the ante $0.01 +manga130: posts the ante $0.01 +meg100: posts the ante $0.01 +HIWAII2: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [6s] +Dealt to manga130 [9d] +Dealt to meg100 [5c] +Dealt to HIWAII2 [Qs] +Dealt to s0rrow [6d 9c 3d] +Dealt to SilkZone [Qc] +HIWAII2: brings in for $0.02 +s0rrow: raises $0.02 to $0.04 +SilkZone: calls $0.04 +kobreli: calls $0.04 +manga130: folds +meg100: calls $0.04 +HIWAII2: folds +*** 4th STREET *** +Dealt to kobreli [6s] [7h] +Dealt to meg100 [5c] [5h] +Dealt to s0rrow [6d 9c 3d] [8s] +Dealt to SilkZone [Qc] [2c] +kobreli: bets $0.04 +meg100: folds +s0rrow: raises $0.04 to $0.08 +SilkZone: raises $0.04 to $0.12 +kobreli: calls $0.08 +s0rrow: calls $0.04 +*** 5th STREET *** +Dealt to kobreli [6s 7h] [2h] +Dealt to s0rrow [6d 9c 3d 8s] [Jh] +Dealt to SilkZone [Qc 2c] [7c] +kobreli: bets $0.08 +s0rrow: folds +SilkZone: calls $0.08 +*** 6th STREET *** +Dealt to kobreli [6s 7h 2h] [3h] +Dealt to SilkZone [Qc 2c 7c] [Kd] +kobreli: bets $0.08 +SilkZone: calls $0.08 +*** RIVER *** +kobreli: bets $0.08 +SilkZone: raises $0.08 to $0.16 +kobreli: raises $0.08 to $0.24 +SilkZone: raises $0.08 to $0.32 +Betting is capped +kobreli: calls $0.08 +*** SHOW DOWN *** +SilkZone: shows [3s 5d Qc 2c 7c Kd As] (Lo: 7,5,3,2,A) +kobreli: shows [Ac Qd 6s 7h 2h 3h 4c] (Lo: 6,4,3,2,A) +kobreli collected $1.49 from pot +*** SUMMARY *** +Total pot $1.56 | Rake $0.07 +Seat 1: kobreli showed [Ac Qd 6s 7h 2h 3h 4c] and won ($1.49) with Lo: 6,4,3,2,A +Seat 3: manga130 folded on the 3rd Street (didn't bet) +Seat 5: meg100 folded on the 4th Street +Seat 6: HIWAII2 folded on the 3rd Street +Seat 7: s0rrow folded on the 5th Street +Seat 8: SilkZone showed [3s 5d Qc 2c 7c Kd As] and lost with Lo: 7,5,3,2,A + + + +PokerStars Game #35874817957: Razz Limit ($0.04/$0.08 USD) - 2009/11/26 10:31:45 ET +Table 'Gotha II' 8-max +Seat 1: kobreli ($1.85 in chips) +Seat 3: manga130 ($0.35 in chips) +Seat 5: meg100 ($1.21 in chips) +Seat 6: HIWAII2 ($1.21 in chips) +Seat 7: s0rrow ($1.40 in chips) +Seat 8: SilkZone ($2.01 in chips) +kobreli: posts the ante $0.01 +manga130: posts the ante $0.01 +meg100: posts the ante $0.01 +HIWAII2: posts the ante $0.01 +s0rrow: posts the ante $0.01 +SilkZone: posts the ante $0.01 +*** 3rd STREET *** +Dealt to kobreli [As] +Dealt to manga130 [Ac] +Dealt to meg100 [Ah] +Dealt to HIWAII2 [Jd] +Dealt to s0rrow [6d 4h 3h] +Dealt to SilkZone [2c] +HIWAII2: brings in for $0.02 +s0rrow: calls $0.02 +SilkZone: calls $0.02 +kobreli: calls $0.02 +manga130: calls $0.02 +meg100: folds +*** 4th STREET *** +Dealt to kobreli [As] [6s] +Dealt to manga130 [Ac] [6h] +Dealt to HIWAII2 [Jd] [Qc] +Dealt to s0rrow [6d 4h 3h] [3c] +Dealt to SilkZone [2c] [Th] +kobreli: bets $0.04 +manga130: calls $0.04 +HIWAII2: folds +s0rrow: calls $0.04 +SilkZone: folds +*** 5th STREET *** +Dealt to kobreli [As 6s] [5c] +Dealt to manga130 [Ac 6h] [5s] +Dealt to s0rrow [6d 4h 3h 3c] [9s] +kobreli: bets $0.08 +manga130: calls $0.08 +s0rrow: folds +*** 6th STREET *** +Dealt to kobreli [As 6s 5c] [5d] +Dealt to manga130 [Ac 6h 5s] [9h] +manga130: bets $0.08 +kobreli: raises $0.08 to $0.16 +manga130: calls $0.08 +*** RIVER *** +manga130: bets $0.04 and is all-in +kobreli: calls $0.04 +*** SHOW DOWN *** +manga130: shows [Ad 8h Ac 6h 5s 9h Kh] (Lo: 9,8,6,5,A) +kobreli: shows [3d 2s As 6s 5c 5d 2d] (Lo: 6,5,3,2,A) +kobreli collected $0.80 from pot +*** SUMMARY *** +Total pot $0.84 | Rake $0.04 +Seat 1: kobreli showed [3d 2s As 6s 5c 5d 2d] and won ($0.80) with Lo: 6,5,3,2,A +Seat 3: manga130 showed [Ad 8h Ac 6h 5s 9h Kh] and lost with Lo: 9,8,6,5,A +Seat 5: meg100 folded on the 3rd Street (didn't bet) +Seat 6: HIWAII2 folded on the 4th Street +Seat 7: s0rrow folded on the 5th Street +Seat 8: SilkZone folded on the 4th Street + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-5r-200710.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-5r-200710.txt new file mode 100644 index 00000000..c608843a --- /dev/null +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-5r-200710.txt @@ -0,0 +1,17390 @@ +PokerStars Game #12637565869: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:34:03 (ET) +Table '63858762 18' 9-max Seat #5 is the button +Seat 1: whitehot (3485 in chips) +Seat 2: J.R.66350 (1380 in chips) +Seat 3: HoddePodde (8530 in chips) +Seat 4: rrk775 (8765 in chips) +Seat 5: s0rrow (1375 in chips) is sitting out +Seat 6: Lochdale (2300 in chips) +Seat 7: linkeloehtje (3290 in chips) +Seat 8: hookstar22 (1480 in chips) +Seat 9: maikel76 (5445 in chips) +Lochdale: posts small blind 15 +linkeloehtje: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [5c 5d] +hookstar22: calls 30 +maikel76: folds +s0rrow is connected +s0rrow has returned +whitehot: calls 30 +J.R.66350: calls 30 +HoddePodde: folds +rrk775: calls 30 +s0rrow: calls 30 +Lochdale: calls 15 +linkeloehtje: checks +*** FLOP *** [9s 7c 6d] +Lochdale: checks +linkeloehtje: bets 90 +hookstar22: folds +whitehot: calls 90 +J.R.66350: calls 90 +rrk775: folds +s0rrow: calls 90 +Lochdale: calls 90 +*** TURN *** [9s 7c 6d] [2h] +Lochdale: checks +linkeloehtje: bets 90 +whitehot: calls 90 +J.R.66350: calls 90 +s0rrow: calls 90 +Lochdale: calls 90 +*** RIVER *** [9s 7c 6d 2h] [2s] +Lochdale: checks +linkeloehtje: bets 90 +whitehot: folds +J.R.66350: calls 90 +s0rrow: calls 90 +Lochdale: folds +*** SHOW DOWN *** +linkeloehtje: shows [Qd 7d] (two pair, Sevens and Deuces) +J.R.66350: shows [9c Th] (two pair, Nines and Deuces) +s0rrow: mucks hand +J.R.66350 collected 1380 from pot +*** SUMMARY *** +Total pot 1380 | Rake 0 +Board [9s 7c 6d 2h 2s] +Seat 1: whitehot folded on the River +Seat 2: J.R.66350 showed [9c Th] and won (1380) with two pair, Nines and Deuces +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded on the Flop +Seat 5: s0rrow (button) mucked [5c 5d] +Seat 6: Lochdale (small blind) folded on the River +Seat 7: linkeloehtje (big blind) showed [Qd 7d] and lost with two pair, Sevens and Deuces +Seat 8: hookstar22 folded on the Flop +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637574307: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:35:27 (ET) +Table '63858762 18' 9-max Seat #6 is the button +Seat 1: whitehot (3275 in chips) +Seat 2: J.R.66350 (2460 in chips) +Seat 3: HoddePodde (8530 in chips) +Seat 4: rrk775 (8735 in chips) +Seat 5: s0rrow (1075 in chips) +Seat 6: Lochdale (2090 in chips) +Seat 7: linkeloehtje (2990 in chips) +Seat 8: hookstar22 (1450 in chips) +Seat 9: maikel76 (5445 in chips) +linkeloehtje: posts small blind 15 +hookstar22: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [3c Qs] +maikel76: folds +whitehot: folds +J.R.66350: raises 2430 to 2460 and is all-in +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: calls 2090 and is all-in +linkeloehtje: folds +hookstar22: folds +*** FLOP *** [Ah Ac 7h] +*** TURN *** [Ah Ac 7h] [Qc] +*** RIVER *** [Ah Ac 7h Qc] [5c] +*** SHOW DOWN *** +J.R.66350: shows [Th Td] (two pair, Aces and Tens) +Lochdale: shows [7s Qh] (two pair, Aces and Queens) +Lochdale collected 4225 from pot +*** SUMMARY *** +Total pot 4225 | Rake 0 +Board [Ah Ac 7h Qc 5c] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 showed [Th Td] and lost with two pair, Aces and Tens +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale (button) showed [7s Qh] and won (4225) with two pair, Aces and Queens +Seat 7: linkeloehtje (small blind) folded before Flop +Seat 8: hookstar22 (big blind) folded before Flop +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637579506: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:36:19 (ET) +Table '63858762 18' 9-max Seat #7 is the button +Seat 1: whitehot (3275 in chips) +Seat 2: J.R.66350 (370 in chips) +Seat 3: HoddePodde (8530 in chips) +Seat 4: rrk775 (8735 in chips) +Seat 5: s0rrow (1075 in chips) +Seat 6: Lochdale (4225 in chips) +Seat 7: linkeloehtje (2975 in chips) +Seat 8: hookstar22 (1420 in chips) +Seat 9: maikel76 (5445 in chips) +hookstar22: posts small blind 15 +maikel76: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [8c 2s] +whitehot: folds +J.R.66350: folds +HoddePodde: raises 150 to 180 +rrk775: calls 180 +s0rrow: folds +Lochdale: folds +linkeloehtje: calls 180 +hookstar22: folds +maikel76: calls 150 +*** FLOP *** [6h 7d 2c] +maikel76: checks +HoddePodde: bets 390 +rrk775: folds +linkeloehtje: calls 390 +maikel76: folds +*** TURN *** [6h 7d 2c] [Ac] +HoddePodde: bets 800 +linkeloehtje: calls 800 +*** RIVER *** [6h 7d 2c Ac] [9s] +HoddePodde: bets 2160 +linkeloehtje: folds +HoddePodde collected 3115 from pot +HoddePodde: doesn't show hand +*** SUMMARY *** +Total pot 3115 | Rake 0 +Board [6h 7d 2c Ac 9s] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde collected (3115) +Seat 4: rrk775 folded on the Flop +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje (button) folded on the River +Seat 8: hookstar22 (small blind) folded before Flop +Seat 9: maikel76 (big blind) folded on the Flop + + + +PokerStars Game #12637587856: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:37:40 (ET) +Table '63858762 18' 9-max Seat #8 is the button +Seat 1: whitehot (3275 in chips) +Seat 2: J.R.66350 (370 in chips) +Seat 3: HoddePodde (10275 in chips) +Seat 4: rrk775 (8555 in chips) +Seat 5: s0rrow (1075 in chips) +Seat 6: Lochdale (4225 in chips) +Seat 7: linkeloehtje (1605 in chips) +Seat 8: hookstar22 (1405 in chips) +Seat 9: maikel76 (5265 in chips) +maikel76: posts small blind 15 +whitehot: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [4c 4s] +J.R.66350: raises 340 to 370 and is all-in +HoddePodde: folds +rrk775: raises 8185 to 8555 and is all-in +s0rrow: calls 1075 and is all-in +Lochdale: folds +linkeloehtje: folds +hookstar22: folds +maikel76: folds +whitehot: folds +*** FLOP *** [7d 7s Ks] +*** TURN *** [7d 7s Ks] [5h] +*** RIVER *** [7d 7s Ks 5h] [3h] +*** SHOW DOWN *** +rrk775: shows [Ah Kc] (two pair, Kings and Sevens) +s0rrow: shows [4c 4s] (two pair, Sevens and Fours) +rrk775 collected 1410 from side pot +J.R.66350: shows [As Ac] (two pair, Aces and Sevens) +J.R.66350 collected 1155 from main pot +s0rrow re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 2565 Main pot 1155. Side pot 1410. | Rake 0 +Board [7d 7s Ks 5h 3h] +Seat 1: whitehot (big blind) folded before Flop +Seat 2: J.R.66350 showed [As Ac] and won (1155) with two pair, Aces and Sevens +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [Ah Kc] and won (1410) with two pair, Kings and Sevens +Seat 5: s0rrow showed [4c 4s] and lost with two pair, Sevens and Fours +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 (button) folded before Flop (didn't bet) +Seat 9: maikel76 (small blind) folded before Flop + + + +PokerStars Game #12637593243: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:38:33 (ET) +Table '63858762 18' 9-max Seat #9 is the button +Seat 1: whitehot (3245 in chips) +Seat 2: J.R.66350 (1155 in chips) +Seat 3: HoddePodde (10275 in chips) +Seat 4: rrk775 (8890 in chips) +Seat 5: s0rrow (3000 in chips) +Seat 6: Lochdale (4225 in chips) +Seat 7: linkeloehtje (1605 in chips) +Seat 8: hookstar22 (1405 in chips) +Seat 9: maikel76 (5250 in chips) +whitehot: posts small blind 15 +J.R.66350: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 6d] +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: folds +linkeloehtje: folds +hookstar22: folds +maikel76: folds +whitehot: calls 15 +J.R.66350: raises 90 to 120 +whitehot: calls 90 +*** FLOP *** [9h 3c Jh] +whitehot: checks +J.R.66350: checks +*** TURN *** [9h 3c Jh] [Ts] +whitehot: checks +J.R.66350: bets 30 +whitehot: folds +J.R.66350 collected 240 from pot +*** SUMMARY *** +Total pot 240 | Rake 0 +Board [9h 3c Jh Ts] +Seat 1: whitehot (small blind) folded on the Turn +Seat 2: J.R.66350 (big blind) collected (240) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12637598298: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:39:23 (ET) +Table '63858762 18' 9-max Seat #1 is the button +Seat 1: whitehot (3125 in chips) +Seat 2: J.R.66350 (1275 in chips) +Seat 3: HoddePodde (10275 in chips) +Seat 4: rrk775 (8890 in chips) +Seat 5: s0rrow (3000 in chips) +Seat 6: Lochdale (4225 in chips) +Seat 7: linkeloehtje (1605 in chips) +Seat 8: hookstar22 (1405 in chips) +Seat 9: maikel76 (5250 in chips) +J.R.66350: posts small blind 15 +HoddePodde: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [5h Ad] +rrk775: calls 30 +s0rrow: folds +Lochdale: folds +linkeloehtje: folds +hookstar22: raises 60 to 90 +maikel76: calls 90 +whitehot: calls 90 +J.R.66350: folds +HoddePodde: calls 60 +rrk775: raises 8800 to 8890 and is all-in +hookstar22: folds +maikel76: folds +whitehot: folds +HoddePodde: folds +rrk775 collected 465 from pot +rrk775: doesn't show hand +*** SUMMARY *** +Total pot 465 | Rake 0 +Seat 1: whitehot (button) folded before Flop +Seat 2: J.R.66350 (small blind) folded before Flop +Seat 3: HoddePodde (big blind) folded before Flop +Seat 4: rrk775 collected (465) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop +Seat 9: maikel76 folded before Flop + + + +PokerStars Game #12637602813: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:40:07 (ET) +Table '63858762 18' 9-max Seat #2 is the button +Seat 1: whitehot (3035 in chips) +Seat 2: J.R.66350 (1260 in chips) +Seat 3: HoddePodde (10185 in chips) +Seat 4: rrk775 (9265 in chips) +Seat 5: s0rrow (3000 in chips) +Seat 6: Lochdale (4225 in chips) +Seat 7: linkeloehtje (1605 in chips) +Seat 8: hookstar22 (1315 in chips) +Seat 9: maikel76 (5160 in chips) +HoddePodde: posts small blind 15 +rrk775: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [2c 5d] +s0rrow: folds +Lochdale: calls 30 +linkeloehtje: folds +hookstar22: calls 30 +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: checks +*** FLOP *** [Qs Th 9h] +rrk775: bets 90 +Lochdale: folds +hookstar22: calls 90 +*** TURN *** [Qs Th 9h] [7h] +rrk775: checks +hookstar22: bets 60 +rrk775: calls 60 +*** RIVER *** [Qs Th 9h 7h] [Kc] +rrk775: bets 210 +hookstar22: raises 420 to 630 +rrk775: calls 420 +*** SHOW DOWN *** +hookstar22: shows [Kh 4h] (a flush, King high) +rrk775: mucks hand +hookstar22 collected 1665 from pot +*** SUMMARY *** +Total pot 1665 | Rake 0 +Board [Qs Th 9h 7h Kc] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 (button) folded before Flop (didn't bet) +Seat 3: HoddePodde (small blind) folded before Flop +Seat 4: rrk775 (big blind) mucked [Jh Tc] +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded on the Flop +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 showed [Kh 4h] and won (1665) with a flush, King high +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637608533: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:41:04 (ET) +Table '63858762 18' 9-max Seat #3 is the button +Seat 1: whitehot (3035 in chips) +Seat 2: J.R.66350 (1260 in chips) +Seat 3: HoddePodde (10170 in chips) +Seat 4: rrk775 (8455 in chips) +Seat 5: s0rrow (3000 in chips) +Seat 6: Lochdale (4195 in chips) +Seat 7: linkeloehtje (1605 in chips) +Seat 8: hookstar22 (2170 in chips) +Seat 9: maikel76 (5160 in chips) +rrk775: posts small blind 15 +s0rrow: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [9c 2s] +Lochdale: calls 30 +linkeloehtje: folds +hookstar22: calls 30 +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: calls 15 +s0rrow: checks +*** FLOP *** [7s Kh 2d] +rrk775: checks +s0rrow: checks +Lochdale: checks +hookstar22: checks +*** TURN *** [7s Kh 2d] [6h] +rrk775: checks +s0rrow: checks +Lochdale: checks +hookstar22: checks +*** RIVER *** [7s Kh 2d 6h] [Ts] +rrk775: checks +s0rrow: checks +Lochdale: checks +hookstar22: checks +*** SHOW DOWN *** +rrk775: shows [Jc 8h] (high card King) +s0rrow: shows [9c 2s] (a pair of Deuces) +Lochdale: shows [5c 5d] (a pair of Fives) +hookstar22: mucks hand +Lochdale collected 120 from pot +*** SUMMARY *** +Total pot 120 | Rake 0 +Board [7s Kh 2d 6h Ts] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde (button) folded before Flop (didn't bet) +Seat 4: rrk775 (small blind) showed [Jc 8h] and lost with high card King +Seat 5: s0rrow (big blind) showed [9c 2s] and lost with a pair of Deuces +Seat 6: Lochdale showed [5c 5d] and won (120) with a pair of Fives +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 mucked [5s 3s] +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637613941: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:41:57 (ET) +Table '63858762 18' 9-max Seat #4 is the button +Seat 1: whitehot (3035 in chips) +Seat 2: J.R.66350 (1260 in chips) +Seat 3: HoddePodde (10170 in chips) +Seat 4: rrk775 (8425 in chips) +Seat 5: s0rrow (2970 in chips) +Seat 6: Lochdale (4285 in chips) +Seat 7: linkeloehtje (1605 in chips) +Seat 8: hookstar22 (2140 in chips) +Seat 9: maikel76 (5160 in chips) +s0rrow: posts small blind 15 +Lochdale: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [Qs Td] +linkeloehtje: folds +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: calls 30 +HoddePodde: folds +rrk775: folds +s0rrow: calls 15 +Lochdale: checks +*** FLOP *** [Qd As Ah] +s0rrow: checks +Lochdale: checks +J.R.66350: checks +*** TURN *** [Qd As Ah] [Th] +s0rrow: bets 120 +Lochdale: folds +J.R.66350: folds +s0rrow collected 90 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 90 | Rake 0 +Board [Qd As Ah Th] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded on the Turn +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 (button) folded before Flop (didn't bet) +Seat 5: s0rrow (small blind) collected (90) +Seat 6: Lochdale (big blind) folded on the Turn +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637618553: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:42:44 (ET) +Table '63858762 18' 9-max Seat #5 is the button +Seat 1: whitehot (3035 in chips) +Seat 2: J.R.66350 (1230 in chips) +Seat 3: HoddePodde (10170 in chips) +Seat 4: rrk775 (8425 in chips) +Seat 5: s0rrow (3030 in chips) +Seat 6: Lochdale (4255 in chips) +Seat 7: linkeloehtje (1605 in chips) +Seat 8: hookstar22 (2140 in chips) +Seat 9: maikel76 (5160 in chips) +Lochdale: posts small blind 15 +linkeloehtje: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [Jc Ac] +hookstar22: folds +maikel76: folds +whitehot: calls 30 +J.R.66350: folds +HoddePodde: folds +rrk775: raises 120 to 150 +s0rrow: calls 150 +Lochdale: calls 135 +linkeloehtje: folds +whitehot: folds +*** FLOP *** [Ad Qh Td] +Lochdale: checks +rrk775: bets 210 +s0rrow: calls 210 +Lochdale: folds +*** TURN *** [Ad Qh Td] [2d] +rrk775: checks +s0rrow: checks +*** RIVER *** [Ad Qh Td 2d] [8s] +rrk775: checks +s0rrow: bets 300 +rrk775: calls 300 +*** SHOW DOWN *** +s0rrow: shows [Jc Ac] (a pair of Aces) +rrk775: mucks hand +s0rrow collected 1530 from pot +rrk775 said, "nh" +*** SUMMARY *** +Total pot 1530 | Rake 0 +Board [Ad Qh Td 2d 8s] +Seat 1: whitehot folded before Flop +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 mucked [9s As] +Seat 5: s0rrow (button) showed [Jc Ac] and won (1530) with a pair of Aces +Seat 6: Lochdale (small blind) folded on the Flop +Seat 7: linkeloehtje (big blind) folded before Flop +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637625841: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level II (15/30) - 2007/10/15 - 05:43:56 (ET) +Table '63858762 18' 9-max Seat #6 is the button +Seat 1: whitehot (3005 in chips) +Seat 2: J.R.66350 (1230 in chips) +Seat 3: HoddePodde (10170 in chips) +Seat 4: rrk775 (7765 in chips) +Seat 5: s0rrow (3900 in chips) +Seat 6: Lochdale (4105 in chips) +Seat 7: linkeloehtje (1575 in chips) +Seat 8: hookstar22 (2140 in chips) +Seat 9: maikel76 (5160 in chips) +linkeloehtje: posts small blind 15 +hookstar22: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [6h 6d] +maikel76: folds +whitehot: folds +J.R.66350: calls 30 +HoddePodde: raises 90 to 120 +rrk775: folds +s0rrow: calls 120 +Lochdale: folds +linkeloehtje: folds +hookstar22: folds +J.R.66350: calls 90 +*** FLOP *** [9h 2h Jc] +J.R.66350: checks +HoddePodde: bets 230 +s0rrow: folds +J.R.66350: calls 230 +*** TURN *** [9h 2h Jc] [2c] +J.R.66350: checks +HoddePodde: bets 2040 +J.R.66350: calls 880 and is all-in +*** RIVER *** [9h 2h Jc 2c] [4d] +*** SHOW DOWN *** +J.R.66350: shows [3d 3c] (two pair, Threes and Deuces) +HoddePodde: shows [As Jh] (two pair, Jacks and Deuces) +HoddePodde collected 2625 from pot +J.R.66350 re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 2625 | Rake 0 +Board [9h 2h Jc 2c 4d] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 showed [3d 3c] and lost with two pair, Threes and Deuces +Seat 3: HoddePodde showed [As Jh] and won (2625) with two pair, Jacks and Deuces +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded on the Flop +Seat 6: Lochdale (button) folded before Flop (didn't bet) +Seat 7: linkeloehtje (small blind) folded before Flop +Seat 8: hookstar22 (big blind) folded before Flop +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637633416: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:45:11 (ET) +Table '63858762 18' 9-max Seat #7 is the button +Seat 1: whitehot (3005 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11565 in chips) +Seat 4: rrk775 (7765 in chips) +Seat 5: s0rrow (3780 in chips) +Seat 6: Lochdale (4105 in chips) +Seat 7: linkeloehtje (1560 in chips) +Seat 8: hookstar22 (2110 in chips) +Seat 9: maikel76 (5160 in chips) +hookstar22: posts small blind 25 +maikel76: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [8d Kh] +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: raises 50 to 100 +linkeloehtje: folds +hookstar22: folds +maikel76: calls 50 +*** FLOP *** [6d 7h 5h] +maikel76: checks +Lochdale: bets 150 +maikel76: calls 150 +*** TURN *** [6d 7h 5h] [5c] +maikel76: checks +Lochdale: checks +*** RIVER *** [6d 7h 5h 5c] [Qc] +maikel76: bets 200 +Lochdale: folds +maikel76 collected 525 from pot +maikel76: doesn't show hand +*** SUMMARY *** +Total pot 525 | Rake 0 +Board [6d 7h 5h 5c Qc] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded on the River +Seat 7: linkeloehtje (button) folded before Flop (didn't bet) +Seat 8: hookstar22 (small blind) folded before Flop +Seat 9: maikel76 (big blind) collected (525) + + + +PokerStars Game #12637638318: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:45:59 (ET) +Table '63858762 18' 9-max Seat #8 is the button +Seat 1: whitehot (3005 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11565 in chips) +Seat 4: rrk775 (7765 in chips) +Seat 5: s0rrow (3780 in chips) +Seat 6: Lochdale (3855 in chips) +Seat 7: linkeloehtje (1560 in chips) +Seat 8: hookstar22 (2085 in chips) +Seat 9: maikel76 (5435 in chips) +maikel76: posts small blind 25 +whitehot: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [8s Jc] +J.R.66350: calls 50 +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: calls 50 +linkeloehtje: folds +hookstar22: calls 50 +maikel76: calls 25 +whitehot: checks +*** FLOP *** [5h 2s 5c] +maikel76: checks +whitehot: checks +J.R.66350: checks +Lochdale: checks +hookstar22: checks +*** TURN *** [5h 2s 5c] [Jd] +maikel76: checks +whitehot: checks +J.R.66350: checks +Lochdale: bets 100 +hookstar22: calls 100 +maikel76: folds +whitehot: folds +J.R.66350: folds +*** RIVER *** [5h 2s 5c Jd] [Js] +Lochdale: bets 150 +hookstar22: raises 300 to 450 +Lochdale: calls 300 +*** SHOW DOWN *** +hookstar22: shows [Jh Ks] (a full house, Jacks full of Fives) +Lochdale: mucks hand +hookstar22 collected 1350 from pot +*** SUMMARY *** +Total pot 1350 | Rake 0 +Board [5h 2s 5c Jd Js] +Seat 1: whitehot (big blind) folded on the Turn +Seat 2: J.R.66350 folded on the Turn +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale mucked [5s 4d] +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 (button) showed [Jh Ks] and won (1350) with a full house, Jacks full of Fives +Seat 9: maikel76 (small blind) folded on the Turn + + + +PokerStars Game #12637644152: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:46:56 (ET) +Table '63858762 18' 9-max Seat #9 is the button +Seat 1: whitehot (2955 in chips) +Seat 2: J.R.66350 (2950 in chips) +Seat 3: HoddePodde (11565 in chips) +Seat 4: rrk775 (7765 in chips) +Seat 5: s0rrow (3780 in chips) +Seat 6: Lochdale (3255 in chips) +Seat 7: linkeloehtje (1560 in chips) +Seat 8: hookstar22 (2835 in chips) +Seat 9: maikel76 (5385 in chips) +whitehot: posts small blind 25 +J.R.66350: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [7d 3d] +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: folds +linkeloehtje: folds +hookstar22: raises 50 to 100 +maikel76: folds +whitehot: folds +J.R.66350: folds +hookstar22 collected 125 from pot +*** SUMMARY *** +Total pot 125 | Rake 0 +Seat 1: whitehot (small blind) folded before Flop +Seat 2: J.R.66350 (big blind) folded before Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 collected (125) +Seat 9: maikel76 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12637647059: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:47:25 (ET) +Table '63858762 18' 9-max Seat #1 is the button +Seat 1: whitehot (2930 in chips) +Seat 2: J.R.66350 (2900 in chips) +Seat 3: HoddePodde (11565 in chips) +Seat 4: rrk775 (7765 in chips) +Seat 5: s0rrow (3780 in chips) +Seat 6: Lochdale (3255 in chips) +Seat 7: linkeloehtje (1560 in chips) +Seat 8: hookstar22 (2910 in chips) +Seat 9: maikel76 (5385 in chips) +J.R.66350: posts small blind 25 +HoddePodde: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [4s 8h] +rrk775: calls 50 +s0rrow: folds +Lochdale: raises 100 to 150 +linkeloehtje: folds +hookstar22: folds +maikel76: calls 150 +whitehot: folds +J.R.66350: raises 550 to 700 +HoddePodde: folds +rrk775: calls 650 +Lochdale: raises 2555 to 3255 and is all-in +maikel76: folds +J.R.66350: calls 2200 and is all-in +rrk775: calls 2555 +*** FLOP *** [Ks Qd Qh] +*** TURN *** [Ks Qd Qh] [6d] +*** RIVER *** [Ks Qd Qh 6d] [3d] +*** SHOW DOWN *** +rrk775: shows [7c Qc] (three of a kind, Queens) +Lochdale: shows [Th Jd] (a pair of Queens) +rrk775 collected 710 from side pot +J.R.66350: shows [As Ah] (two pair, Aces and Queens) +HoddePodde said, "I had 33" +rrk775 collected 8900 from main pot +Lochdale re-buys and receives 3000 chips for $10.00 +J.R.66350 re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 9610 Main pot 8900. Side pot 710. | Rake 0 +Board [Ks Qd Qh 6d 3d] +Seat 1: whitehot (button) folded before Flop (didn't bet) +Seat 2: J.R.66350 (small blind) showed [As Ah] and lost with two pair, Aces and Queens +Seat 3: HoddePodde (big blind) folded before Flop +Seat 4: rrk775 showed [7c Qc] and won (9610) with three of a kind, Queens +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale showed [Th Jd] and lost with a pair of Queens +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop + + + +PokerStars Game #12637654004: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:48:34 (ET) +Table '63858762 18' 9-max Seat #2 is the button +Seat 1: whitehot (2930 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11515 in chips) +Seat 4: rrk775 (14120 in chips) +Seat 5: s0rrow (3780 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: linkeloehtje (1560 in chips) +Seat 8: hookstar22 (2910 in chips) +Seat 9: maikel76 (5235 in chips) +HoddePodde: posts small blind 25 +rrk775: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [9s 3c] +s0rrow: folds +Lochdale: folds +linkeloehtje: folds +hookstar22: calls 50 +maikel76: folds +whitehot: calls 50 +J.R.66350: folds +HoddePodde: calls 25 +rrk775: raises 250 to 300 +hookstar22: folds +whitehot: folds +HoddePodde: folds +rrk775 collected 200 from pot +rrk775: doesn't show hand +*** SUMMARY *** +Total pot 200 | Rake 0 +Seat 1: whitehot folded before Flop +Seat 2: J.R.66350 (button) folded before Flop (didn't bet) +Seat 3: HoddePodde (small blind) folded before Flop +Seat 4: rrk775 (big blind) collected (200) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637659075: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:49:25 (ET) +Table '63858762 18' 9-max Seat #3 is the button +Seat 1: whitehot (2880 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11465 in chips) +Seat 4: rrk775 (14270 in chips) +Seat 5: s0rrow (3780 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: linkeloehtje (1560 in chips) +Seat 8: hookstar22 (2860 in chips) +Seat 9: maikel76 (5235 in chips) +rrk775: posts small blind 25 +s0rrow: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [7s 9h] +Lochdale: folds +linkeloehtje: calls 50 +hookstar22: calls 50 +maikel76: calls 50 +whitehot: calls 50 +J.R.66350: folds +HoddePodde: folds +rrk775: calls 25 +s0rrow: checks +*** FLOP *** [Ac 3s Th] +rrk775: checks +s0rrow: checks +linkeloehtje: checks +hookstar22: checks +maikel76: checks +whitehot: checks +*** TURN *** [Ac 3s Th] [3d] +rrk775: checks +s0rrow: checks +linkeloehtje: bets 100 +hookstar22: folds +maikel76: folds +whitehot: folds +rrk775: folds +s0rrow: folds +linkeloehtje collected 300 from pot +linkeloehtje: doesn't show hand +*** SUMMARY *** +Total pot 300 | Rake 0 +Board [Ac 3s Th 3d] +Seat 1: whitehot folded on the Turn +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde (button) folded before Flop (didn't bet) +Seat 4: rrk775 (small blind) folded on the Turn +Seat 5: s0rrow (big blind) folded on the Turn +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje collected (300) +Seat 8: hookstar22 folded on the Turn +Seat 9: maikel76 folded on the Turn + + + +PokerStars Game #12637664994: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:50:23 (ET) +Table '63858762 18' 9-max Seat #4 is the button +Seat 1: whitehot (2830 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11465 in chips) +Seat 4: rrk775 (14220 in chips) +Seat 5: s0rrow (3730 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: linkeloehtje (1810 in chips) +Seat 8: hookstar22 (2810 in chips) +Seat 9: maikel76 (5185 in chips) +s0rrow: posts small blind 25 +Lochdale: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [9d Kd] +linkeloehtje: folds +hookstar22: folds +maikel76: raises 350 to 400 +whitehot: folds +J.R.66350: folds +HoddePodde: calls 400 +rrk775: folds +s0rrow: folds +Lochdale: calls 350 +*** FLOP *** [Ah Tc 8c] +Lochdale: checks +maikel76: bets 500 +HoddePodde: folds +Lochdale: raises 2100 to 2600 and is all-in +maikel76: calls 2100 +*** TURN *** [Ah Tc 8c] [2s] +*** RIVER *** [Ah Tc 8c 2s] [Js] +*** SHOW DOWN *** +Lochdale: shows [3c 2c] (a pair of Deuces) +maikel76: shows [Qc Qs] (a pair of Queens) +maikel76 collected 6425 from pot +Lochdale re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 6425 | Rake 0 +Board [Ah Tc 8c 2s Js] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded on the Flop +Seat 4: rrk775 (button) folded before Flop (didn't bet) +Seat 5: s0rrow (small blind) folded before Flop +Seat 6: Lochdale (big blind) showed [3c 2c] and lost with a pair of Deuces +Seat 7: linkeloehtje folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 showed [Qc Qs] and won (6425) with a pair of Queens + + + +PokerStars Game #12637670288: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:51:15 (ET) +Table '63858762 18' 9-max Seat #5 is the button +Seat 1: whitehot (2830 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11065 in chips) +Seat 4: rrk775 (14220 in chips) +Seat 5: s0rrow (3705 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: linkeloehtje (1810 in chips) +Seat 8: hookstar22 (2810 in chips) +Seat 9: maikel76 (8610 in chips) +Lochdale: posts small blind 25 +linkeloehtje: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [Ks 9h] +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: raises 200 to 250 +s0rrow: folds +Lochdale: raises 2750 to 3000 and is all-in +linkeloehtje: folds +rrk775: folds +Lochdale collected 550 from pot +Lochdale: doesn't show hand +*** SUMMARY *** +Total pot 550 | Rake 0 +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop +Seat 5: s0rrow (button) folded before Flop (didn't bet) +Seat 6: Lochdale (small blind) collected (550) +Seat 7: linkeloehtje (big blind) folded before Flop +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637673493: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:51:46 (ET) +Table '63858762 18' 9-max Seat #6 is the button +Seat 1: whitehot (2830 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11065 in chips) +Seat 4: rrk775 (13970 in chips) +Seat 5: s0rrow (3705 in chips) +Seat 6: Lochdale (3300 in chips) +Seat 7: linkeloehtje (1760 in chips) +Seat 8: hookstar22 (2810 in chips) +Seat 9: maikel76 (8610 in chips) +linkeloehtje: posts small blind 25 +hookstar22: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [3h 2s] +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: calls 50 +rrk775: raises 200 to 250 +s0rrow: folds +Lochdale: raises 3050 to 3300 and is all-in +linkeloehtje: folds +hookstar22: folds +HoddePodde: folds +rrk775: calls 3050 +*** FLOP *** [3d 7c Jc] +*** TURN *** [3d 7c Jc] [2h] +*** RIVER *** [3d 7c Jc 2h] [6s] +*** SHOW DOWN *** +rrk775: shows [Ad Ac] (a pair of Aces) +Lochdale: shows [2c 2d] (three of a kind, Deuces) +Lochdale collected 6725 from pot +*** SUMMARY *** +Total pot 6725 | Rake 0 +Board [3d 7c Jc 2h 6s] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop +Seat 4: rrk775 showed [Ad Ac] and lost with a pair of Aces +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale (button) showed [2c 2d] and won (6725) with three of a kind, Deuces +Seat 7: linkeloehtje (small blind) folded before Flop +Seat 8: hookstar22 (big blind) folded before Flop +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637678662: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:52:37 (ET) +Table '63858762 18' 9-max Seat #7 is the button +Seat 1: whitehot (2830 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (11015 in chips) +Seat 4: rrk775 (10670 in chips) +Seat 5: s0rrow (3705 in chips) +Seat 6: Lochdale (6725 in chips) +Seat 7: linkeloehtje (1735 in chips) +Seat 8: hookstar22 (2760 in chips) +Seat 9: maikel76 (8610 in chips) +hookstar22: posts small blind 25 +maikel76: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [7d As] +whitehot: calls 50 +J.R.66350: calls 50 +HoddePodde: folds +rrk775: raises 10620 to 10670 and is all-in +s0rrow: folds +Lochdale: folds +linkeloehtje: calls 1735 and is all-in +hookstar22: folds +maikel76: folds +whitehot: calls 2780 and is all-in +J.R.66350: folds +*** FLOP *** [Ts 8h Js] +linkeloehtje said, "better fold AA lol" +*** TURN *** [Ts 8h Js] [2h] +*** RIVER *** [Ts 8h Js 2h] [Qd] +*** SHOW DOWN *** +whitehot: shows [Kh Th] (a pair of Tens) +rrk775: shows [Ac 3s] (high card Ace) +whitehot collected 2190 from side pot +linkeloehtje: shows [4c 4d] (a pair of Fours) +whitehot collected 5330 from main pot +diablo_nz is connected +*** SUMMARY *** +Total pot 7520 Main pot 5330. Side pot 2190. | Rake 0 +Board [Ts 8h Js 2h Qd] +Seat 1: whitehot showed [Kh Th] and won (7520) with a pair of Tens +Seat 2: J.R.66350 folded before Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [Ac 3s] and lost with high card Ace +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: linkeloehtje (button) showed [4c 4d] and lost with a pair of Fours +Seat 8: hookstar22 (small blind) folded before Flop +Seat 9: maikel76 (big blind) folded before Flop + + + +PokerStars Game #12637683981: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:53:30 (ET) +Table '63858762 18' 9-max Seat #8 is the button +Seat 1: whitehot (7520 in chips) +Seat 2: J.R.66350 (2950 in chips) +Seat 3: HoddePodde (11015 in chips) +Seat 4: rrk775 (7840 in chips) +Seat 5: s0rrow (3705 in chips) +Seat 6: Lochdale (6725 in chips) +Seat 7: diablo_nz (7456 in chips) +Seat 8: hookstar22 (2735 in chips) +Seat 9: maikel76 (8560 in chips) +maikel76: posts small blind 25 +whitehot: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [Jc Jd] +J.R.66350: folds +HoddePodde: folds +rrk775: raises 7790 to 7840 and is all-in +s0rrow: calls 3705 and is all-in +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: folds +whitehot: folds +*** FLOP *** [5c 9s 5h] +*** TURN *** [5c 9s 5h] [Tc] +*** RIVER *** [5c 9s 5h Tc] [2h] +*** SHOW DOWN *** +rrk775: shows [4c Ac] (a pair of Fives) +s0rrow: shows [Jc Jd] (two pair, Jacks and Fives) +s0rrow collected 7485 from pot +*** SUMMARY *** +Total pot 7485 | Rake 0 +Board [5c 9s 5h Tc 2h] +Seat 1: whitehot (big blind) folded before Flop +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [4c Ac] and lost with a pair of Fives +Seat 5: s0rrow showed [Jc Jd] and won (7485) with two pair, Jacks and Fives +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 (button) folded before Flop (didn't bet) +Seat 9: maikel76 (small blind) folded before Flop + + + +PokerStars Game #12637687776: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:54:08 (ET) +Table '63858762 18' 9-max Seat #9 is the button +Seat 1: whitehot (7470 in chips) +Seat 2: J.R.66350 (2950 in chips) +Seat 3: HoddePodde (11015 in chips) +Seat 4: rrk775 (4135 in chips) +Seat 5: s0rrow (7485 in chips) +Seat 6: Lochdale (6725 in chips) +Seat 7: diablo_nz (7456 in chips) +Seat 8: hookstar22 (2735 in chips) +Seat 9: maikel76 (8535 in chips) +whitehot: posts small blind 25 +J.R.66350: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 8h] +HoddePodde: folds +rrk775: raises 4085 to 4135 and is all-in +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +rrk775 collected 125 from pot +rrk775: doesn't show hand +*** SUMMARY *** +Total pot 125 | Rake 0 +Seat 1: whitehot (small blind) folded before Flop +Seat 2: J.R.66350 (big blind) folded before Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 collected (125) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12637691564: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:54:46 (ET) +Table '63858762 18' 9-max Seat #1 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (2900 in chips) +Seat 3: HoddePodde (11015 in chips) +Seat 4: rrk775 (4210 in chips) +Seat 5: s0rrow (7485 in chips) +Seat 6: Lochdale (6725 in chips) +Seat 7: diablo_nz (7456 in chips) +Seat 8: hookstar22 (2735 in chips) +Seat 9: maikel76 (8535 in chips) +J.R.66350: posts small blind 25 +HoddePodde: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [6h 4s] +rrk775: folds +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: raises 1200 to 1250 +whitehot: folds +J.R.66350: folds +HoddePodde: folds +maikel76 collected 125 from pot +maikel76: shows [Jc Jd] (a pair of Jacks) +*** SUMMARY *** +Total pot 125 | Rake 0 +Seat 1: whitehot (button) folded before Flop (didn't bet) +Seat 2: J.R.66350 (small blind) folded before Flop +Seat 3: HoddePodde (big blind) folded before Flop +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 collected (125) + + + +PokerStars Game #12637693745: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:55:08 (ET) +Table '63858762 18' 9-max Seat #2 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (2875 in chips) +Seat 3: HoddePodde (10965 in chips) +Seat 4: rrk775 (4210 in chips) +Seat 5: s0rrow (7485 in chips) +Seat 6: Lochdale (6725 in chips) +Seat 7: diablo_nz (7456 in chips) +Seat 8: hookstar22 (2735 in chips) +Seat 9: maikel76 (8610 in chips) +HoddePodde: posts small blind 25 +rrk775: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [2s 7s] +s0rrow: folds +Lochdale: calls 50 +diablo_nz: calls 50 +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: calls 25 +rrk775: raises 4160 to 4210 and is all-in +Lochdale: raises 2515 to 6725 and is all-in +diablo_nz: folds +HoddePodde: folds +*** FLOP *** [6s 2c 7c] +*** TURN *** [6s 2c 7c] [3d] +*** RIVER *** [6s 2c 7c 3d] [Qd] +*** SHOW DOWN *** +rrk775: shows [7d 8c] (a pair of Sevens) +Lochdale: shows [4c 4s] (a pair of Fours) +rrk775 collected 8520 from pot +*** SUMMARY *** +Total pot 8520 | Rake 0 +Board [6s 2c 7c 3d Qd] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 (button) folded before Flop (didn't bet) +Seat 3: HoddePodde (small blind) folded before Flop +Seat 4: rrk775 (big blind) showed [7d 8c] and won (8520) with a pair of Sevens +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale showed [4c 4s] and lost with a pair of Fours +Seat 7: diablo_nz folded before Flop +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637699784: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:56:07 (ET) +Table '63858762 18' 9-max Seat #3 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (2875 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (8520 in chips) +Seat 5: s0rrow (7485 in chips) +Seat 6: Lochdale (2515 in chips) +Seat 7: diablo_nz (7406 in chips) +Seat 8: hookstar22 (2735 in chips) +Seat 9: maikel76 (8610 in chips) +rrk775: posts small blind 25 +s0rrow: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [7h 7c] +Lochdale: folds +diablo_nz: folds +hookstar22: calls 50 +maikel76: calls 50 +whitehot: folds +J.R.66350: calls 50 +HoddePodde: folds +rrk775: calls 25 +s0rrow: checks +*** FLOP *** [9s 3c Jc] +rrk775: checks +s0rrow: checks +hookstar22: bets 200 +maikel76: calls 200 +J.R.66350: calls 200 +rrk775: calls 200 +s0rrow: folds +*** TURN *** [9s 3c Jc] [2h] +rrk775: checks +hookstar22: bets 650 +maikel76: folds +J.R.66350: calls 650 +rrk775: folds +*** RIVER *** [9s 3c Jc 2h] [3d] +hookstar22: bets 1350 +J.R.66350: calls 1350 +*** SHOW DOWN *** +hookstar22: shows [9h Jh] (two pair, Jacks and Nines) +J.R.66350: mucks hand +hookstar22 collected 5050 from pot +*** SUMMARY *** +Total pot 5050 | Rake 0 +Board [9s 3c Jc 2h 3d] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 mucked [Js 4s] +Seat 3: HoddePodde (button) folded before Flop (didn't bet) +Seat 4: rrk775 (small blind) folded on the Turn +Seat 5: s0rrow (big blind) folded on the Flop +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 showed [9h Jh] and won (5050) with two pair, Jacks and Nines +Seat 9: maikel76 folded on the Turn + + + +PokerStars Game #12637707474: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:57:23 (ET) +Table '63858762 18' 9-max Seat #4 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (625 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (8270 in chips) +Seat 5: s0rrow (7435 in chips) +Seat 6: Lochdale (2515 in chips) +Seat 7: diablo_nz (7406 in chips) +Seat 8: hookstar22 (5535 in chips) +Seat 9: maikel76 (8360 in chips) +s0rrow: posts small blind 25 +Lochdale: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [4h Jc] +diablo_nz: calls 50 +hookstar22: calls 50 +maikel76: calls 50 +whitehot: folds +J.R.66350: calls 50 +HoddePodde: folds +rrk775: raises 8220 to 8270 and is all-in +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: folds +J.R.66350: calls 575 and is all-in +*** FLOP *** [Qs 8d 5d] +*** TURN *** [Qs 8d 5d] [Ks] +*** RIVER *** [Qs 8d 5d Ks] [4s] +*** SHOW DOWN *** +J.R.66350: shows [5c 6d] (a pair of Fives) +rrk775: shows [9s As] (a flush, Ace high) +rrk775 collected 1475 from pot +J.R.66350 re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 1475 | Rake 0 +Board [Qs 8d 5d Ks 4s] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 showed [5c 6d] and lost with a pair of Fives +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 (button) showed [9s As] and won (1475) with a flush, Ace high +Seat 5: s0rrow (small blind) folded before Flop +Seat 6: Lochdale (big blind) folded before Flop +Seat 7: diablo_nz folded before Flop +Seat 8: hookstar22 folded before Flop +Seat 9: maikel76 folded before Flop + + + +PokerStars Game #12637713844: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:58:27 (ET) +Table '63858762 18' 9-max Seat #5 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (3000 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (9120 in chips) +Seat 5: s0rrow (7410 in chips) +Seat 6: Lochdale (2465 in chips) +Seat 7: diablo_nz (7356 in chips) +Seat 8: hookstar22 (5485 in chips) +Seat 9: maikel76 (8310 in chips) +Lochdale: posts small blind 25 +diablo_nz: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [Ad Js] +hookstar22: calls 50 +maikel76: folds +whitehot: folds +J.R.66350: calls 50 +HoddePodde: folds +rrk775: folds +s0rrow: calls 50 +Lochdale: calls 25 +diablo_nz: checks +*** FLOP *** [2s 5c Th] +Lochdale: checks +diablo_nz: checks +hookstar22: checks +J.R.66350: checks +s0rrow: checks +*** TURN *** [2s 5c Th] [5s] +Lochdale: bets 150 +diablo_nz: calls 150 +hookstar22: folds +J.R.66350: folds +s0rrow: folds +*** RIVER *** [2s 5c Th 5s] [As] +Lochdale: bets 200 +diablo_nz: calls 200 +*** SHOW DOWN *** +Lochdale: shows [Tc 4c] (two pair, Tens and Fives) +diablo_nz: mucks hand +Lochdale collected 950 from pot +*** SUMMARY *** +Total pot 950 | Rake 0 +Board [2s 5c Th 5s As] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded on the Turn +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow (button) folded on the Turn +Seat 6: Lochdale (small blind) showed [Tc 4c] and won (950) with two pair, Tens and Fives +Seat 7: diablo_nz (big blind) mucked [6s 6h] +Seat 8: hookstar22 folded on the Turn +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637721731: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level III (25/50) - 2007/10/15 - 05:59:45 (ET) +Table '63858762 18' 9-max Seat #6 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (2950 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (9120 in chips) +Seat 5: s0rrow (7360 in chips) +Seat 6: Lochdale (3015 in chips) +Seat 7: diablo_nz (6956 in chips) +Seat 8: hookstar22 (5435 in chips) +Seat 9: maikel76 (8310 in chips) +diablo_nz: posts small blind 25 +hookstar22: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [7h Qd] +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: folds +diablo_nz: calls 25 +hookstar22: checks +*** FLOP *** [Kc 7c 2c] +diablo_nz: bets 50 +hookstar22: calls 50 +*** TURN *** [Kc 7c 2c] [6d] +diablo_nz: bets 100 +hookstar22: folds +diablo_nz collected 200 from pot +diablo_nz: doesn't show hand +*** SUMMARY *** +Total pot 200 | Rake 0 +Board [Kc 7c 2c 6d] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale (button) folded before Flop (didn't bet) +Seat 7: diablo_nz (small blind) collected (200) +Seat 8: hookstar22 (big blind) folded on the Turn +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637727008: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:00:35 (ET) +Table '63858762 18' 9-max Seat #7 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (2950 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (9120 in chips) +Seat 5: s0rrow (7360 in chips) +Seat 6: Lochdale (3015 in chips) +Seat 7: diablo_nz (7056 in chips) +Seat 8: hookstar22 (5335 in chips) +Seat 9: maikel76 (8310 in chips) +hookstar22: posts small blind 50 +maikel76: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Js Ts] +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: raises 9020 to 9120 and is all-in +s0rrow: folds +Lochdale: calls 3015 and is all-in +diablo_nz: folds +hookstar22: folds +maikel76: folds +*** FLOP *** [2d 7d Jc] +*** TURN *** [2d 7d Jc] [4s] +*** RIVER *** [2d 7d Jc 4s] [Kd] +*** SHOW DOWN *** +rrk775: shows [Kc Ah] (a pair of Kings) +Lochdale: shows [4h Qs] (a pair of Fours) +rrk775 collected 6180 from pot +Lochdale re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 6180 | Rake 0 +Board [2d 7d Jc 4s Kd] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [Kc Ah] and won (6180) with a pair of Kings +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale showed [4h Qs] and lost with a pair of Fours +Seat 7: diablo_nz (button) folded before Flop (didn't bet) +Seat 8: hookstar22 (small blind) folded before Flop +Seat 9: maikel76 (big blind) folded before Flop + + + +PokerStars Game #12637730964: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:01:14 (ET) +Table '63858762 18' 9-max Seat #8 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (2950 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (12285 in chips) +Seat 5: s0rrow (7360 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: diablo_nz (7056 in chips) +Seat 8: hookstar22 (5285 in chips) +Seat 9: maikel76 (8210 in chips) +maikel76: posts small blind 50 +whitehot: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [4s 9d] +J.R.66350: folds +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: raises 200 to 300 +diablo_nz: folds +hookstar22: folds +maikel76: calls 250 +whitehot: folds +*** FLOP *** [Qd Ac Js] +maikel76: checks +Lochdale: bets 300 +maikel76: calls 300 +*** TURN *** [Qd Ac Js] [5d] +maikel76: checks +Lochdale: bets 500 +maikel76: calls 500 +*** RIVER *** [Qd Ac Js 5d] [5c] +maikel76: checks +Lochdale: checks +*** SHOW DOWN *** +maikel76: shows [6d Kd] (a pair of Fives) +Lochdale: mucks hand +maikel76 collected 2300 from pot +*** SUMMARY *** +Total pot 2300 | Rake 0 +Board [Qd Ac Js 5d 5c] +Seat 1: whitehot (big blind) folded before Flop +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale mucked [7c 9s] +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 (button) folded before Flop (didn't bet) +Seat 9: maikel76 (small blind) showed [6d Kd] and won (2300) with a pair of Fives + + + +PokerStars Game #12637735536: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:01:58 (ET) +Table '63858762 18' 9-max Seat #9 is the button +Seat 1: whitehot (7345 in chips) +Seat 2: J.R.66350 (2950 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (12285 in chips) +Seat 5: s0rrow (7360 in chips) +Seat 6: Lochdale (1900 in chips) +Seat 7: diablo_nz (7056 in chips) +Seat 8: hookstar22 (5285 in chips) +Seat 9: maikel76 (9410 in chips) +whitehot: posts small blind 50 +J.R.66350: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [3d 4h] +HoddePodde: folds +rrk775: raises 12185 to 12285 and is all-in +s0rrow: folds +Lochdale: calls 1900 and is all-in +diablo_nz: folds +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +*** FLOP *** [4s Jh Js] +*** TURN *** [4s Jh Js] [Qh] +*** RIVER *** [4s Jh Js Qh] [2s] +*** SHOW DOWN *** +rrk775: shows [Ad Tc] (a pair of Jacks) +Lochdale: shows [Ts Qs] (a flush, Queen high) +Lochdale collected 3950 from pot +*** SUMMARY *** +Total pot 3950 | Rake 0 +Board [4s Jh Js Qh 2s] +Seat 1: whitehot (small blind) folded before Flop +Seat 2: J.R.66350 (big blind) folded before Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [Ad Tc] and lost with a pair of Jacks +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale showed [Ts Qs] and won (3950) with a flush, Queen high +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12637739454: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:02:35 (ET) +Table '63858762 18' 9-max Seat #1 is the button +Seat 1: whitehot (7295 in chips) +Seat 2: J.R.66350 (2850 in chips) +Seat 3: HoddePodde (10915 in chips) +Seat 4: rrk775 (10385 in chips) +Seat 5: s0rrow (7360 in chips) +Seat 6: Lochdale (3950 in chips) +Seat 7: diablo_nz (7056 in chips) +Seat 8: hookstar22 (5285 in chips) +Seat 9: maikel76 (9410 in chips) +J.R.66350: posts small blind 50 +HoddePodde: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [3h Ac] +rrk775: folds +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: folds +whitehot: calls 100 +J.R.66350: folds +HoddePodde: checks +*** FLOP *** [Kc 4s Ks] +HoddePodde: checks +whitehot: bets 200 +HoddePodde: folds +whitehot collected 250 from pot +*** SUMMARY *** +Total pot 250 | Rake 0 +Board [Kc 4s Ks] +Seat 1: whitehot (button) collected (250) +Seat 2: J.R.66350 (small blind) folded before Flop +Seat 3: HoddePodde (big blind) folded on the Flop +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637742733: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:03:07 (ET) +Table '63858762 18' 9-max Seat #2 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (2800 in chips) +Seat 3: HoddePodde (10815 in chips) +Seat 4: rrk775 (10385 in chips) +Seat 5: s0rrow (7360 in chips) +Seat 6: Lochdale (3950 in chips) +Seat 7: diablo_nz (7056 in chips) +Seat 8: hookstar22 (5285 in chips) +Seat 9: maikel76 (9410 in chips) +HoddePodde: posts small blind 50 +rrk775: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [4d Jc] +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: raises 200 to 300 +whitehot: folds +J.R.66350: calls 300 +HoddePodde: folds +rrk775: calls 200 +*** FLOP *** [6d 4c 6c] +rrk775: checks +maikel76: checks +J.R.66350: checks +*** TURN *** [6d 4c 6c] [Ts] +rrk775: checks +maikel76: checks +J.R.66350: checks +*** RIVER *** [6d 4c 6c Ts] [Td] +rrk775: checks +maikel76: checks +J.R.66350: checks +*** SHOW DOWN *** +rrk775: shows [7h Kc] (two pair, Tens and Sixes) +maikel76: mucks hand +J.R.66350: shows [Ah 7d] (two pair, Tens and Sixes - Ace kicker) +J.R.66350 collected 950 from pot +*** SUMMARY *** +Total pot 950 | Rake 0 +Board [6d 4c 6c Ts Td] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 (button) showed [Ah 7d] and won (950) with two pair, Tens and Sixes +Seat 3: HoddePodde (small blind) folded before Flop +Seat 4: rrk775 (big blind) showed [7h Kc] and lost with two pair, Tens and Sixes +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 mucked [9c Qh] + + + +PokerStars Game #12637749579: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:04:14 (ET) +Table '63858762 18' 9-max Seat #3 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (3450 in chips) +Seat 3: HoddePodde (10765 in chips) +Seat 4: rrk775 (10085 in chips) +Seat 5: s0rrow (7360 in chips) +Seat 6: Lochdale (3950 in chips) +Seat 7: diablo_nz (7056 in chips) +Seat 8: hookstar22 (5285 in chips) +Seat 9: maikel76 (9110 in chips) +rrk775: posts small blind 50 +s0rrow: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Ad Kc] +Lochdale: folds +diablo_nz: calls 100 +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: calls 50 +s0rrow: checks +*** FLOP *** [7h 4s 5h] +rrk775: checks +s0rrow: checks +diablo_nz: bets 500 +rrk775: calls 500 +s0rrow: folds +*** TURN *** [7h 4s 5h] [Qh] +rrk775: checks +diablo_nz: bets 500 +rrk775: folds +diablo_nz collected 1300 from pot +diablo_nz: shows [9d 9s] (a pair of Nines) +*** SUMMARY *** +Total pot 1300 | Rake 0 +Board [7h 4s 5h Qh] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde (button) folded before Flop (didn't bet) +Seat 4: rrk775 (small blind) folded on the Turn +Seat 5: s0rrow (big blind) folded on the Flop +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz collected (1300) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637754822: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:05:03 (ET) +Table '63858762 18' 9-max Seat #4 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (3450 in chips) +Seat 3: HoddePodde (10765 in chips) +Seat 4: rrk775 (9485 in chips) +Seat 5: s0rrow (7260 in chips) +Seat 6: Lochdale (3950 in chips) +Seat 7: diablo_nz (7756 in chips) +Seat 8: hookstar22 (5285 in chips) +Seat 9: maikel76 (9110 in chips) +s0rrow: posts small blind 50 +Lochdale: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [9d Qs] +diablo_nz: folds +hookstar22: calls 100 +maikel76: calls 100 +whitehot: folds +J.R.66350: calls 100 +HoddePodde: folds +rrk775: raises 400 to 500 +s0rrow: folds +Lochdale: calls 400 +hookstar22: folds +maikel76: calls 400 +J.R.66350: calls 400 +*** FLOP *** [5h 6s Qc] +Lochdale: checks +maikel76: checks +J.R.66350: checks +rrk775: bets 1000 +Lochdale: folds +maikel76: calls 1000 +J.R.66350: calls 1000 +*** TURN *** [5h 6s Qc] [4d] +maikel76: checks +J.R.66350: checks +rrk775: checks +*** RIVER *** [5h 6s Qc 4d] [3c] +maikel76: checks +J.R.66350: bets 1900 +rrk775: folds +maikel76: calls 1900 +*** SHOW DOWN *** +J.R.66350: shows [9c 7c] (a straight, Three to Seven) +maikel76: mucks hand +J.R.66350 collected 8950 from pot +*** SUMMARY *** +Total pot 8950 | Rake 0 +Board [5h 6s Qc 4d 3c] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 showed [9c 7c] and won (8950) with a straight, Three to Seven +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 (button) folded on the River +Seat 5: s0rrow (small blind) folded before Flop +Seat 6: Lochdale (big blind) folded on the Flop +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop +Seat 9: maikel76 mucked [Qh Kc] + + + +PokerStars Game #12637762024: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:06:13 (ET) +Table '63858762 18' 9-max Seat #5 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (9000 in chips) +Seat 3: HoddePodde (10765 in chips) +Seat 4: rrk775 (7985 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (3450 in chips) +Seat 7: diablo_nz (7756 in chips) +Seat 8: hookstar22 (5185 in chips) +Seat 9: maikel76 (5710 in chips) +Lochdale: posts small blind 50 +diablo_nz: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 7s] +hookstar22: folds +maikel76: calls 100 +whitehot: folds +J.R.66350: calls 100 +HoddePodde: folds +rrk775: raises 7885 to 7985 and is all-in +s0rrow: folds +Lochdale: calls 3400 and is all-in +diablo_nz: folds +maikel76: folds +J.R.66350: folds +*** FLOP *** [8c Jd 8d] +*** TURN *** [8c Jd 8d] [Js] +*** RIVER *** [8c Jd 8d Js] [Qh] +*** SHOW DOWN *** +Lochdale: shows [Ah As] (two pair, Aces and Jacks) +rrk775: shows [9s Tc] (a straight, Eight to Queen) +rrk775 collected 7200 from pot +Lochdale re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 7200 | Rake 0 +Board [8c Jd 8d Js Qh] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [9s Tc] and won (7200) with a straight, Eight to Queen +Seat 5: s0rrow (button) folded before Flop (didn't bet) +Seat 6: Lochdale (small blind) showed [Ah As] and lost with two pair, Aces and Jacks +Seat 7: diablo_nz (big blind) folded before Flop +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop + + + +PokerStars Game #12637766397: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:06:54 (ET) +Table '63858762 18' 9-max Seat #6 is the button +Seat 1: whitehot (7445 in chips) +Seat 2: J.R.66350 (8900 in chips) +Seat 3: HoddePodde (10765 in chips) +Seat 4: rrk775 (11735 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: diablo_nz (7656 in chips) +Seat 8: hookstar22 (5185 in chips) +Seat 9: maikel76 (5610 in chips) +diablo_nz: posts small blind 50 +hookstar22: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [4c Tc] +maikel76: calls 100 +whitehot: calls 100 +J.R.66350: calls 100 +HoddePodde: raises 500 to 600 +rrk775: calls 600 +s0rrow: folds +Lochdale: raises 2400 to 3000 and is all-in +diablo_nz: folds +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: calls 2400 +rrk775: folds +*** FLOP *** [3s 8c Jd] +*** TURN *** [3s 8c Jd] [Jh] +*** RIVER *** [3s 8c Jd Jh] [8h] +*** SHOW DOWN *** +HoddePodde: shows [Qc As] (two pair, Jacks and Eights) +Lochdale: shows [4h 7h] (two pair, Jacks and Eights - lower kicker) +HoddePodde collected 7050 from pot +Lochdale re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 7050 | Rake 0 +Board [3s 8c Jd Jh 8h] +Seat 1: whitehot folded before Flop +Seat 2: J.R.66350 folded before Flop +Seat 3: HoddePodde showed [Qc As] and won (7050) with two pair, Jacks and Eights +Seat 4: rrk775 folded before Flop +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale (button) showed [4h 7h] and lost with two pair, Jacks and Eights +Seat 7: diablo_nz (small blind) folded before Flop +Seat 8: hookstar22 (big blind) folded before Flop +Seat 9: maikel76 folded before Flop + + + +PokerStars Game #12637772664: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:07:54 (ET) +Table '63858762 18' 9-max Seat #7 is the button +Seat 1: whitehot (7345 in chips) +Seat 2: J.R.66350 (8800 in chips) +Seat 3: HoddePodde (14815 in chips) +Seat 4: rrk775 (11135 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: diablo_nz (7606 in chips) +Seat 8: hookstar22 (5085 in chips) +Seat 9: maikel76 (5510 in chips) +hookstar22: posts small blind 50 +maikel76: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [8c Jc] +hookstar22 said, "omg" +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: calls 50 +maikel76: checks +*** FLOP *** [7h Ks Th] +hookstar22: bets 100 +maikel76: calls 100 +*** TURN *** [7h Ks Th] [3c] +hookstar22: bets 100 +maikel76: raises 300 to 400 +hookstar22: folds +maikel76 collected 600 from pot +maikel76: shows [2c Kd] (a pair of Kings) +*** SUMMARY *** +Total pot 600 | Rake 0 +Board [7h Ks Th 3c] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz (button) folded before Flop (didn't bet) +Seat 8: hookstar22 (small blind) folded on the Turn +Seat 9: maikel76 (big blind) collected (600) + + + +PokerStars Game #12637776536: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:08:30 (ET) +Table '63858762 18' 9-max Seat #8 is the button +Seat 1: whitehot (7345 in chips) +Seat 2: J.R.66350 (8800 in chips) +Seat 3: HoddePodde (14815 in chips) +Seat 4: rrk775 (11135 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: diablo_nz (7606 in chips) +Seat 8: hookstar22 (4785 in chips) +Seat 9: maikel76 (5810 in chips) +maikel76: posts small blind 50 +whitehot: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Td 4s] +hookstar22 said, "nh" +J.R.66350: folds +HoddePodde: folds +rrk775: raises 200 to 300 +s0rrow: folds +Lochdale: raises 2700 to 3000 and is all-in +diablo_nz: folds +hookstar22: folds +maikel76: folds +whitehot: folds +rrk775: calls 2700 +*** FLOP *** [6h 4c 4d] +*** TURN *** [6h 4c 4d] [Qc] +*** RIVER *** [6h 4c 4d Qc] [8s] +*** SHOW DOWN *** +rrk775: shows [Kd 7d] (a pair of Fours) +Lochdale: shows [Ts As] (a pair of Fours - Ace kicker) +Lochdale collected 6150 from pot +*** SUMMARY *** +Total pot 6150 | Rake 0 +Board [6h 4c 4d Qc 8s] +Seat 1: whitehot (big blind) folded before Flop +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [Kd 7d] and lost with a pair of Fours +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale showed [Ts As] and won (6150) with a pair of Fours +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 (button) folded before Flop (didn't bet) +Seat 9: maikel76 (small blind) folded before Flop + + + +PokerStars Game #12637781130: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:09:13 (ET) +Table '63858762 18' 9-max Seat #9 is the button +Seat 1: whitehot (7245 in chips) +Seat 2: J.R.66350 (8800 in chips) +Seat 3: HoddePodde (14815 in chips) +Seat 4: rrk775 (8135 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (6150 in chips) +Seat 7: diablo_nz (7606 in chips) +Seat 8: hookstar22 (4785 in chips) +Seat 9: maikel76 (5760 in chips) +whitehot: posts small blind 50 +J.R.66350: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 6s] +HoddePodde: folds +rrk775: raises 8035 to 8135 and is all-in +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +rrk775 collected 250 from pot +rrk775: doesn't show hand +*** SUMMARY *** +Total pot 250 | Rake 0 +Seat 1: whitehot (small blind) folded before Flop +Seat 2: J.R.66350 (big blind) folded before Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 collected (250) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12637783183: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:09:33 (ET) +Table '63858762 18' 9-max Seat #1 is the button +Seat 1: whitehot (7195 in chips) +Seat 2: J.R.66350 (8700 in chips) +Seat 3: HoddePodde (14815 in chips) +Seat 4: rrk775 (8285 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (6150 in chips) +Seat 7: diablo_nz (7606 in chips) +Seat 8: hookstar22 (4785 in chips) +Seat 9: maikel76 (5760 in chips) +J.R.66350: posts small blind 50 +HoddePodde: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [3d 3s] +rrk775: raises 8185 to 8285 and is all-in +s0rrow: folds +Lochdale: folds +diablo_nz: folds +hookstar22: folds +maikel76: calls 5760 and is all-in +whitehot: folds +J.R.66350: folds +HoddePodde: calls 8185 +*** FLOP *** [Jh Ac Kc] +*** TURN *** [Jh Ac Kc] [3c] +*** RIVER *** [Jh Ac Kc 3c] [Js] +*** SHOW DOWN *** +HoddePodde: shows [Tc Ts] (two pair, Jacks and Tens) +rrk775: shows [Ks 9d] (two pair, Kings and Jacks) +rrk775 collected 5050 from side pot +maikel76: shows [Ah Qc] (two pair, Aces and Jacks) +maikel76 collected 17330 from main pot +*** SUMMARY *** +Total pot 22380 Main pot 17330. Side pot 5050. | Rake 0 +Board [Jh Ac Kc 3c Js] +Seat 1: whitehot (button) folded before Flop (didn't bet) +Seat 2: J.R.66350 (small blind) folded before Flop +Seat 3: HoddePodde (big blind) showed [Tc Ts] and lost with two pair, Jacks and Tens +Seat 4: rrk775 showed [Ks 9d] and won (5050) with two pair, Kings and Jacks +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 showed [Ah Qc] and won (17330) with two pair, Aces and Jacks + + + +PokerStars Game #12637790602: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:10:44 (ET) +Table '63858762 18' 9-max Seat #2 is the button +Seat 1: whitehot (7195 in chips) +Seat 2: J.R.66350 (8650 in chips) +Seat 3: HoddePodde (6530 in chips) +Seat 4: rrk775 (5050 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (6150 in chips) +Seat 7: diablo_nz (7606 in chips) +Seat 8: hookstar22 (4785 in chips) +Seat 9: maikel76 (17330 in chips) +HoddePodde: posts small blind 50 +rrk775: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [7s 4s] +s0rrow: folds +Lochdale: folds +diablo_nz: calls 100 +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: raises 4950 to 5050 and is all-in +diablo_nz: calls 4950 +*** FLOP *** [3c Ks 3h] +*** TURN *** [3c Ks 3h] [Ac] +*** RIVER *** [3c Ks 3h Ac] [7d] +*** SHOW DOWN *** +rrk775: shows [Ad 2c] (two pair, Aces and Threes) +diablo_nz: shows [9h 9d] (two pair, Nines and Threes) +rrk775 collected 10150 from pot +*** SUMMARY *** +Total pot 10150 | Rake 0 +Board [3c Ks 3h Ac 7d] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 (button) folded before Flop (didn't bet) +Seat 3: HoddePodde (small blind) folded before Flop +Seat 4: rrk775 (big blind) showed [Ad 2c] and won (10150) with two pair, Aces and Threes +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz showed [9h 9d] and lost with two pair, Nines and Threes +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637794514: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:11:21 (ET) +Table '63858762 18' 9-max Seat #3 is the button +Seat 1: whitehot (7195 in chips) +Seat 2: J.R.66350 (8650 in chips) +Seat 3: HoddePodde (6480 in chips) +Seat 4: rrk775 (10150 in chips) +Seat 5: s0rrow (7210 in chips) +Seat 6: Lochdale (6150 in chips) +Seat 7: diablo_nz (2556 in chips) +Seat 8: hookstar22 (4785 in chips) +Seat 9: maikel76 (17330 in chips) +rrk775: posts small blind 50 +s0rrow: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 9d] +Lochdale: folds +diablo_nz: folds +hookstar22: raises 4685 to 4785 and is all-in +maikel76: folds +whitehot: folds +J.R.66350: raises 3865 to 8650 and is all-in +HoddePodde: folds +rrk775: folds +s0rrow: folds +*** FLOP *** [6h As 2h] +*** TURN *** [6h As 2h] [4d] +*** RIVER *** [6h As 2h 4d] [Qs] +*** SHOW DOWN *** +hookstar22: shows [Kh Kc] (a pair of Kings) +J.R.66350: shows [Ac Kd] (a pair of Aces) +J.R.66350 collected 9720 from pot +hookstar22 re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 9720 | Rake 0 +Board [6h As 2h 4d Qs] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 showed [Ac Kd] and won (9720) with a pair of Aces +Seat 3: HoddePodde (button) folded before Flop (didn't bet) +Seat 4: rrk775 (small blind) folded before Flop +Seat 5: s0rrow (big blind) folded before Flop +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: diablo_nz folded before Flop (didn't bet) +Seat 8: hookstar22 showed [Kh Kc] and lost with a pair of Kings +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637799384: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:12:08 (ET) +Table '63858762 18' 9-max Seat #4 is the button +Seat 1: whitehot (7195 in chips) +Seat 2: J.R.66350 (13585 in chips) +Seat 3: HoddePodde (6480 in chips) +Seat 4: rrk775 (10100 in chips) +Seat 5: s0rrow (7110 in chips) +Seat 6: Lochdale (6150 in chips) +Seat 7: diablo_nz (2556 in chips) +Seat 8: hookstar22 (3000 in chips) +Seat 9: maikel76 (17330 in chips) +s0rrow: posts small blind 50 +Lochdale: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Qs Qc] +diablo_nz: calls 100 +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: calls 100 +HoddePodde: folds +rrk775: folds +s0rrow: calls 50 +Lochdale: raises 300 to 400 +diablo_nz: calls 300 +J.R.66350: calls 300 +s0rrow: calls 300 +*** FLOP *** [Td 2d 4c] +s0rrow: bets 6710 and is all-in +Lochdale: calls 5750 and is all-in +diablo_nz: calls 2156 and is all-in +J.R.66350: folds +*** TURN *** [Td 2d 4c] [5c] +*** RIVER *** [Td 2d 4c 5c] [Ad] +*** SHOW DOWN *** +s0rrow: shows [Qs Qc] (a pair of Queens) +Lochdale: shows [Js Jh] (a pair of Jacks) +s0rrow collected 7188 from side pot +diablo_nz: shows [4d Ac] (two pair, Aces and Fours) +diablo_nz collected 8068 from main pot +Lochdale re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 15256 Main pot 8068. Side pot 7188. | Rake 0 +Board [Td 2d 4c 5c Ad] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded on the Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 (button) folded before Flop (didn't bet) +Seat 5: s0rrow (small blind) showed [Qs Qc] and won (7188) with a pair of Queens +Seat 6: Lochdale (big blind) showed [Js Jh] and lost with a pair of Jacks +Seat 7: diablo_nz showed [4d Ac] and won (8068) with two pair, Aces and Fours +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637806924: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:13:19 (ET) +Table '63858762 18' 9-max Seat #5 is the button +Seat 1: whitehot (7195 in chips) +Seat 2: J.R.66350 (13185 in chips) +Seat 3: HoddePodde (6480 in chips) +Seat 4: rrk775 (10100 in chips) +Seat 5: s0rrow (8148 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 7: diablo_nz (8068 in chips) +Seat 8: hookstar22 (3000 in chips) +Seat 9: maikel76 (17330 in chips) +Lochdale: posts small blind 50 +diablo_nz: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [5s 7h] +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: raises 300 to 400 +s0rrow: folds +Lochdale: raises 2600 to 3000 and is all-in +diablo_nz: calls 2900 +rrk775: raises 7100 to 10100 and is all-in +diablo_nz: calls 5068 and is all-in +*** FLOP *** [3s 2h 9h] +*** TURN *** [3s 2h 9h] [Qc] +*** RIVER *** [3s 2h 9h Qc] [Kc] +*** SHOW DOWN *** +diablo_nz: shows [Kd Ad] (a pair of Kings) +rrk775: shows [9d Ks] (two pair, Kings and Nines) +rrk775 collected 10136 from side pot +Lochdale: shows [6s Qs] (a pair of Queens) +rrk775 collected 9000 from main pot +Lochdale re-buys and receives 3000 chips for $10.00 +*** SUMMARY *** +Total pot 19136 Main pot 9000. Side pot 10136. | Rake 0 +Board [3s 2h 9h Qc Kc] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 showed [9d Ks] and won (19136) with two pair, Kings and Nines +Seat 5: s0rrow (button) folded before Flop (didn't bet) +Seat 6: Lochdale (small blind) showed [6s Qs] and lost with a pair of Queens +Seat 7: diablo_nz (big blind) showed [Kd Ad] and lost with a pair of Kings +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637813141: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:14:17 (ET) +Table '63858762 18' 9-max Seat #6 is the button +Seat 1: whitehot (7195 in chips) +Seat 2: J.R.66350 (13185 in chips) +Seat 3: HoddePodde (6480 in chips) +Seat 4: rrk775 (21168 in chips) +Seat 5: s0rrow (8148 in chips) +Seat 6: Lochdale (3000 in chips) +Seat 8: hookstar22 (3000 in chips) +Seat 9: maikel76 (17330 in chips) +hookstar22: posts small blind 50 +maikel76: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [2h Th] +whitehot: folds +J.R.66350: calls 100 +HoddePodde: calls 100 +rrk775: calls 100 +s0rrow: folds +Lochdale: raises 2900 to 3000 and is all-in +hookstar22: folds +maikel76: folds +J.R.66350: folds +HoddePodde: folds +rrk775: folds +Lochdale collected 550 from pot +Lochdale: doesn't show hand +*** SUMMARY *** +Total pot 550 | Rake 0 +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop +Seat 3: HoddePodde folded before Flop +Seat 4: rrk775 folded before Flop +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale (button) collected (550) +Seat 8: hookstar22 (small blind) folded before Flop +Seat 9: maikel76 (big blind) folded before Flop + + + +PokerStars Game #12637816628: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IV (50/100) - 2007/10/15 - 06:14:50 (ET) +Table '63858762 18' 9-max Seat #8 is the button +Seat 1: whitehot (7195 in chips) +Seat 2: J.R.66350 (13085 in chips) +Seat 3: HoddePodde (6380 in chips) +Seat 4: rrk775 (21068 in chips) +Seat 5: s0rrow (8148 in chips) +Seat 6: Lochdale (3450 in chips) +Seat 8: hookstar22 (2950 in chips) +Seat 9: maikel76 (17230 in chips) +maikel76: posts small blind 50 +whitehot: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [7h Qh] +J.R.66350: folds +HoddePodde: folds +rrk775: calls 100 +s0rrow: folds +Lochdale: folds +hookstar22: folds +maikel76: calls 50 +whitehot: checks +*** FLOP *** [Qc Kd 3d] +maikel76: checks +whitehot: checks +rrk775: checks +*** TURN *** [Qc Kd 3d] [8s] +maikel76: bets 400 +whitehot: folds +rrk775: folds +maikel76 collected 300 from pot +maikel76: shows [Ac Ks] (a pair of Kings) +*** SUMMARY *** +Total pot 300 | Rake 0 +Board [Qc Kd 3d 8s] +Seat 1: whitehot (big blind) folded on the Turn +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded on the Turn +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 8: hookstar22 (button) folded before Flop (didn't bet) +Seat 9: maikel76 (small blind) collected (300) + + + +PokerStars Game #12637860727: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:21:48 (ET) +Table '63858762 18' 9-max Seat #9 is the button +Seat 1: whitehot (9095 in chips) +Seat 2: J.R.66350 (13085 in chips) +Seat 3: HoddePodde (8380 in chips) +Seat 4: rrk775 (20968 in chips) +Seat 5: s0rrow (10148 in chips) +Seat 6: Lochdale (5450 in chips) +Seat 8: hookstar22 (4950 in chips) +Seat 9: maikel76 (17430 in chips) +whitehot: posts small blind 75 +J.R.66350: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Kc Kd] +HoddePodde: folds +rrk775: folds +s0rrow: raises 300 to 450 +Lochdale: folds +hookstar22: folds +maikel76: calls 450 +whitehot: folds +J.R.66350: folds +*** FLOP *** [Qs 3d 4h] +s0rrow: bets 600 +maikel76: raises 600 to 1200 +s0rrow: calls 600 +*** TURN *** [Qs 3d 4h] [Ks] +s0rrow: bets 600 +maikel76: calls 600 +*** RIVER *** [Qs 3d 4h Ks] [7s] +s0rrow: checks +maikel76: checks +*** SHOW DOWN *** +s0rrow: shows [Kc Kd] (three of a kind, Kings) +maikel76: mucks hand +s0rrow collected 4725 from pot +*** SUMMARY *** +Total pot 4725 | Rake 0 +Board [Qs 3d 4h Ks 7s] +Seat 1: whitehot (small blind) folded before Flop +Seat 2: J.R.66350 (big blind) folded before Flop +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow showed [Kc Kd] and won (4725) with three of a kind, Kings +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 (button) mucked [Qd 8d] + + + +PokerStars Game #12637866822: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:22:46 (ET) +Table '63858762 18' 9-max Seat #1 is the button +Seat 1: whitehot (9020 in chips) +Seat 2: J.R.66350 (12935 in chips) +Seat 3: HoddePodde (8380 in chips) +Seat 4: rrk775 (20968 in chips) +Seat 5: s0rrow (12623 in chips) +Seat 6: Lochdale (5450 in chips) +Seat 8: hookstar22 (4950 in chips) +Seat 9: maikel76 (15180 in chips) +J.R.66350: posts small blind 75 +HoddePodde: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [9d 3d] +maikel76 said, "nh" +rrk775: folds +s0rrow: folds +Lochdale: folds +hookstar22: folds +s0rrow said, "nice check" +maikel76: raises 450 to 600 +whitehot: folds +J.R.66350: calls 525 +HoddePodde: folds +*** FLOP *** [4h 4s Jd] +J.R.66350: checks +maikel76: checks +*** TURN *** [4h 4s Jd] [4c] +J.R.66350: checks +maikel76: checks +*** RIVER *** [4h 4s Jd 4c] [7c] +J.R.66350: checks +maikel76: checks +*** SHOW DOWN *** +J.R.66350: shows [9c Th] (three of a kind, Fours) +maikel76: shows [9h Tc] (three of a kind, Fours) +J.R.66350 collected 675 from pot +maikel76 collected 675 from pot +*** SUMMARY *** +Total pot 1350 | Rake 0 +Board [4h 4s Jd 4c 7c] +Seat 1: whitehot (button) folded before Flop (didn't bet) +Seat 2: J.R.66350 (small blind) showed [9c Th] and won (675) with three of a kind, Fours +Seat 3: HoddePodde (big blind) folded before Flop +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 showed [9h Tc] and won (675) with three of a kind, Fours + + + +PokerStars Game #12637871399: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:23:28 (ET) +Table '63858762 18' 9-max Seat #2 is the button +Seat 1: whitehot (9020 in chips) +Seat 2: J.R.66350 (13010 in chips) +Seat 3: HoddePodde (8230 in chips) +Seat 4: rrk775 (20968 in chips) +Seat 5: s0rrow (12623 in chips) +Seat 6: Lochdale (5450 in chips) +Seat 8: hookstar22 (4950 in chips) +Seat 9: maikel76 (15255 in chips) +HoddePodde: posts small blind 75 +rrk775: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Js] +s0rrow: calls 150 +Lochdale: folds +hookstar22: folds +maikel76: calls 150 +whitehot: folds +J.R.66350: calls 150 +HoddePodde: calls 75 +rrk775: checks +*** FLOP *** [Ks 3c Jd] +HoddePodde: checks +rrk775: checks +s0rrow: checks +snowboardr21 is connected +maikel76: checks +J.R.66350: checks +*** TURN *** [Ks 3c Jd] [3h] +HoddePodde: checks +rrk775: checks +s0rrow: bets 150 +maikel76: folds +J.R.66350: calls 150 +HoddePodde: folds +rrk775: folds +*** RIVER *** [Ks 3c Jd 3h] [8h] +s0rrow: checks +J.R.66350: checks +*** SHOW DOWN *** +s0rrow: shows [Qd Js] (two pair, Jacks and Threes) +J.R.66350: mucks hand +s0rrow collected 1050 from pot +*** SUMMARY *** +Total pot 1050 | Rake 0 +Board [Ks 3c Jd 3h 8h] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 (button) mucked [Qh 9c] +Seat 3: HoddePodde (small blind) folded on the Turn +Seat 4: rrk775 (big blind) folded on the Turn +Seat 5: s0rrow showed [Qd Js] and won (1050) with two pair, Jacks and Threes +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded on the Turn + + + +PokerStars Game #12637877332: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:24:23 (ET) +Table '63858762 18' 9-max Seat #3 is the button +Seat 1: whitehot (9020 in chips) +Seat 2: J.R.66350 (12710 in chips) +Seat 3: HoddePodde (8080 in chips) +Seat 4: rrk775 (20818 in chips) +Seat 5: s0rrow (13373 in chips) +Seat 6: Lochdale (5450 in chips) +Seat 7: snowboardr21 (17555 in chips) +Seat 8: hookstar22 (4950 in chips) +Seat 9: maikel76 (15105 in chips) +rrk775: posts small blind 75 +s0rrow: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Jd Ac] +Lochdale: folds +snowboardr21: folds +hookstar22: folds +maikel76: raises 300 to 450 +whitehot: folds +J.R.66350: folds +HoddePodde: folds +rrk775: calls 375 +s0rrow: calls 300 +*** FLOP *** [Tc 9s 5d] +rrk775: checks +s0rrow: checks +maikel76: bets 600 +rrk775: calls 600 +s0rrow: folds +*** TURN *** [Tc 9s 5d] [Td] +rrk775: bets 1200 +maikel76: calls 1200 +*** RIVER *** [Tc 9s 5d Td] [Kd] +rrk775: checks +maikel76: checks +*** SHOW DOWN *** +rrk775: shows [9h 4h] (two pair, Tens and Nines) +maikel76: mucks hand +rrk775 collected 4950 from pot +*** SUMMARY *** +Total pot 4950 | Rake 0 +Board [Tc 9s 5d Td Kd] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 folded before Flop (didn't bet) +Seat 3: HoddePodde (button) folded before Flop (didn't bet) +Seat 4: rrk775 (small blind) showed [9h 4h] and won (4950) with two pair, Tens and Nines +Seat 5: s0rrow (big blind) folded on the Flop +Seat 6: Lochdale folded before Flop (didn't bet) +Seat 7: snowboardr21 folded before Flop (didn't bet) +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 mucked [2d 2h] + + + +PokerStars Game #12637882490: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:25:11 (ET) +Table '63858762 18' 9-max Seat #4 is the button +Seat 1: whitehot (9020 in chips) +Seat 2: J.R.66350 (12710 in chips) +Seat 3: HoddePodde (8080 in chips) +Seat 4: rrk775 (23518 in chips) +Seat 5: s0rrow (12923 in chips) +Seat 6: Lochdale (5450 in chips) +Seat 7: snowboardr21 (17555 in chips) +Seat 8: hookstar22 (4950 in chips) +Seat 9: maikel76 (12855 in chips) +s0rrow: posts small blind 75 +Lochdale: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Ks Tc] +snowboardr21: calls 150 +hookstar22: folds +maikel76: folds +whitehot: folds +J.R.66350: calls 150 +HoddePodde: folds +rrk775: folds +s0rrow: calls 75 +Lochdale: checks +*** FLOP *** [2h 8s 4d] +s0rrow: checks +Lochdale: checks +snowboardr21: checks +J.R.66350: checks +*** TURN *** [2h 8s 4d] [Jd] +s0rrow: checks +Lochdale: checks +snowboardr21: checks +J.R.66350: bets 450 +s0rrow: folds +Lochdale: folds +snowboardr21: folds +J.R.66350 collected 600 from pot +*** SUMMARY *** +Total pot 600 | Rake 0 +Board [2h 8s 4d Jd] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 collected (600) +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 (button) folded before Flop (didn't bet) +Seat 5: s0rrow (small blind) folded on the Turn +Seat 6: Lochdale (big blind) folded on the Turn +Seat 7: snowboardr21 folded on the Turn +Seat 8: hookstar22 folded before Flop (didn't bet) +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637889367: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:26:15 (ET) +Table '63858762 18' 9-max Seat #5 is the button +Seat 1: whitehot (9020 in chips) +Seat 2: J.R.66350 (13160 in chips) +Seat 3: HoddePodde (8080 in chips) +Seat 4: rrk775 (23518 in chips) +Seat 5: s0rrow (12773 in chips) +Seat 6: Lochdale (5300 in chips) +Seat 7: snowboardr21 (17405 in chips) +Seat 8: hookstar22 (4950 in chips) +Seat 9: maikel76 (12855 in chips) +Lochdale: posts small blind 75 +snowboardr21: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [4c Ac] +hookstar22: raises 450 to 600 +maikel76: folds +whitehot: folds +J.R.66350: raises 1500 to 2100 +HoddePodde: folds +rrk775: folds +s0rrow: folds +Lochdale: raises 3200 to 5300 and is all-in +snowboardr21: folds +hookstar22: calls 4350 and is all-in +J.R.66350: calls 3200 +*** FLOP *** [Jd 7s Kc] +*** TURN *** [Jd 7s Kc] [3s] +*** RIVER *** [Jd 7s Kc 3s] [3d] +*** SHOW DOWN *** +Lochdale: shows [2c 2s] (two pair, Threes and Deuces) +J.R.66350: shows [Kd Kh] (a full house, Kings full of Threes) +J.R.66350 collected 700 from side pot +hookstar22: shows [Ad As] (two pair, Aces and Threes) +J.R.66350 collected 15000 from main pot +*** SUMMARY *** +Total pot 15700 Main pot 15000. Side pot 700. | Rake 0 +Board [Jd 7s Kc 3s 3d] +Seat 1: whitehot folded before Flop (didn't bet) +Seat 2: J.R.66350 showed [Kd Kh] and won (15700) with a full house, Kings full of Threes +Seat 3: HoddePodde folded before Flop (didn't bet) +Seat 4: rrk775 folded before Flop (didn't bet) +Seat 5: s0rrow (button) folded before Flop (didn't bet) +Seat 6: Lochdale (small blind) showed [2c 2s] and lost with two pair, Threes and Deuces +Seat 7: snowboardr21 (big blind) folded before Flop +Seat 8: hookstar22 showed [Ad As] and lost with two pair, Aces and Threes +Seat 9: maikel76 folded before Flop (didn't bet) + + + +PokerStars Game #12637904235: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:28:37 (ET) +Table '63858762 6' 9-max Seat #8 is the button +Seat 1: Old Brother (4225 in chips) +Seat 2: fantasticsme (890 in chips) +Seat 3: ToqueSuave69 (25755 in chips) +Seat 4: s0rrow (12773 in chips) +Seat 5: stoplost (8225 in chips) +Seat 6: puddles1985 (8650 in chips) +Seat 7: Angie0502 (2295 in chips) +Seat 8: 2.7 acequeen (10060 in chips) +Seat 9: Tsetung (6720 in chips) +Tsetung: posts small blind 75 +Old Brother: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Jh Qd] +fantasticsme: raises 740 to 890 and is all-in +ToqueSuave69: folds +s0rrow: folds +stoplost: folds +puddles1985: folds +Angie0502: folds +2.7 acequeen: folds +Tsetung: folds +Old Brother: folds +fantasticsme collected 375 from pot +fantasticsme: doesn't show hand +*** SUMMARY *** +Total pot 375 | Rake 0 +Seat 1: Old Brother (big blind) folded before Flop +Seat 2: fantasticsme collected (375) +Seat 3: ToqueSuave69 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: stoplost folded before Flop (didn't bet) +Seat 6: puddles1985 folded before Flop (didn't bet) +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen (button) folded before Flop (didn't bet) +Seat 9: Tsetung (small blind) folded before Flop + + + +PokerStars Game #12637909220: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:29:24 (ET) +Table '63858762 6' 9-max Seat #9 is the button +Seat 1: Old Brother (4075 in chips) +Seat 2: fantasticsme (1115 in chips) +Seat 3: ToqueSuave69 (25755 in chips) +Seat 4: s0rrow (12773 in chips) +Seat 5: stoplost (8225 in chips) +Seat 6: puddles1985 (8650 in chips) +Seat 7: Angie0502 (2295 in chips) +Seat 8: 2.7 acequeen (10060 in chips) +Seat 9: Tsetung (6645 in chips) +Old Brother: posts small blind 75 +fantasticsme: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Ad Qs] +ToqueSuave69: calls 150 +s0rrow: calls 150 +stoplost: raises 600 to 750 +puddles1985: folds +Angie0502: folds +2.7 acequeen: folds +Tsetung: folds +Old Brother: folds +fantasticsme: calls 600 +ToqueSuave69: calls 600 +s0rrow: folds +*** FLOP *** [3h Kh Jc] +fantasticsme: bets 365 and is all-in +ToqueSuave69: raises 365 to 730 +stoplost: calls 730 +*** TURN *** [3h Kh Jc] [8d] +ToqueSuave69: checks +stoplost: bets 1050 +ToqueSuave69: calls 1050 +*** RIVER *** [3h Kh Jc 8d] [4s] +ToqueSuave69: checks +stoplost: bets 1950 +ToqueSuave69: calls 1950 +*** SHOW DOWN *** +stoplost: shows [Tc Ts] (a pair of Tens) +ToqueSuave69: shows [Kd Qd] (a pair of Kings) +ToqueSuave69 collected 6730 from side pot +fantasticsme: mucks hand +ToqueSuave69 collected 3570 from main pot +*** SUMMARY *** +Total pot 10300 Main pot 3570. Side pot 6730. | Rake 0 +Board [3h Kh Jc 8d 4s] +Seat 1: Old Brother (small blind) folded before Flop +Seat 2: fantasticsme (big blind) mucked [6s Js] +Seat 3: ToqueSuave69 showed [Kd Qd] and won (10300) with a pair of Kings +Seat 4: s0rrow folded before Flop +Seat 5: stoplost showed [Tc Ts] and lost with a pair of Tens +Seat 6: puddles1985 folded before Flop (didn't bet) +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen folded before Flop (didn't bet) +Seat 9: Tsetung (button) folded before Flop (didn't bet) + + + +PokerStars Game #12637920202: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:31:08 (ET) +Table '63858762 6' 9-max Seat #1 is the button +Seat 1: Old Brother (4000 in chips) +Seat 3: ToqueSuave69 (31575 in chips) +Seat 4: s0rrow (12623 in chips) +Seat 5: stoplost (3745 in chips) +Seat 6: puddles1985 (8650 in chips) +Seat 7: Angie0502 (2295 in chips) +Seat 8: 2.7 acequeen (10060 in chips) +Seat 9: Tsetung (6645 in chips) +ToqueSuave69: posts small blind 75 +s0rrow: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 9d] +stoplost: folds +puddles1985: folds +ToqueSuave69 said, "sorry, stopwatch, spit happens!!" +Angie0502: calls 150 +2.7 acequeen: folds +Tsetung: folds +Old Brother: folds +ToqueSuave69: raises 150 to 300 +s0rrow: calls 150 +Angie0502: calls 150 +*** FLOP *** [6c 4c 3c] +ToqueSuave69: checks +s0rrow: checks +Angie0502: checks +*** TURN *** [6c 4c 3c] [Kd] +ToqueSuave69: checks +s0rrow: checks +Angie0502: checks +*** RIVER *** [6c 4c 3c Kd] [Th] +ToqueSuave69: checks +s0rrow: checks +Angie0502: checks +*** SHOW DOWN *** +ToqueSuave69: shows [6h Ac] (a pair of Sixes) +s0rrow: mucks hand +azhooligan is connected +Angie0502: mucks hand +ToqueSuave69 collected 900 from pot +*** SUMMARY *** +Total pot 900 | Rake 0 +Board [6c 4c 3c Kd Th] +Seat 1: Old Brother (button) folded before Flop (didn't bet) +Seat 3: ToqueSuave69 (small blind) showed [6h Ac] and won (900) with a pair of Sixes +Seat 4: s0rrow (big blind) mucked [Ah 9d] +Seat 5: stoplost folded before Flop (didn't bet) +Seat 6: puddles1985 folded before Flop (didn't bet) +Seat 7: Angie0502 mucked [2s 2h] +Seat 8: 2.7 acequeen folded before Flop (didn't bet) +Seat 9: Tsetung folded before Flop (didn't bet) + + + +PokerStars Game #12637927769: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:32:22 (ET) +Table '63858762 6' 9-max Seat #3 is the button +Seat 1: Old Brother (4000 in chips) +Seat 2: azhooligan (3780 in chips) +Seat 3: ToqueSuave69 (32175 in chips) +Seat 4: s0rrow (12323 in chips) +Seat 5: stoplost (3745 in chips) +Seat 6: puddles1985 (8650 in chips) +Seat 7: Angie0502 (1995 in chips) +Seat 8: 2.7 acequeen (10060 in chips) +Seat 9: Tsetung (6645 in chips) +s0rrow: posts small blind 75 +stoplost: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [As 4s] +ToqueSuave69 said, "That hand blew" +puddles1985: calls 150 +Angie0502: folds +2.7 acequeen: folds +Tsetung: folds +Old Brother: folds +azhooligan: folds +ToqueSuave69: calls 150 +s0rrow: calls 75 +stoplost: checks +*** FLOP *** [3h 7s Th] +s0rrow: checks +stoplost: checks +puddles1985: bets 300 +ToqueSuave69: calls 300 +s0rrow: folds +stoplost: folds +*** TURN *** [3h 7s Th] [Qd] +puddles1985: bets 600 +ToqueSuave69: folds +puddles1985 collected 1200 from pot +puddles1985: doesn't show hand +*** SUMMARY *** +Total pot 1200 | Rake 0 +Board [3h 7s Th Qd] +Seat 1: Old Brother folded before Flop (didn't bet) +Seat 2: azhooligan folded before Flop (didn't bet) +Seat 3: ToqueSuave69 (button) folded on the Turn +Seat 4: s0rrow (small blind) folded on the Flop +Seat 5: stoplost (big blind) folded on the Flop +Seat 6: puddles1985 collected (1200) +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen folded before Flop (didn't bet) +Seat 9: Tsetung folded before Flop (didn't bet) + + + +PokerStars Game #12637933058: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:33:13 (ET) +Table '63858762 6' 9-max Seat #4 is the button +Seat 1: Old Brother (4000 in chips) +Seat 2: azhooligan (3780 in chips) +Seat 3: ToqueSuave69 (31725 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3595 in chips) +Seat 6: puddles1985 (9400 in chips) +Seat 7: Angie0502 (1995 in chips) +Seat 8: 2.7 acequeen (10060 in chips) +Seat 9: Tsetung (6645 in chips) +stoplost: posts small blind 75 +puddles1985: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [8h Qc] +Angie0502: folds +2.7 acequeen: raises 300 to 450 +Tsetung: folds +Old Brother: folds +azhooligan: folds +ToqueSuave69: calls 450 +s0rrow: folds +stoplost: folds +puddles1985: calls 300 +*** FLOP *** [6d 5d 7c] +puddles1985: checks +2.7 acequeen: bets 600 +ToqueSuave69: raises 600 to 1200 +puddles1985: folds +2.7 acequeen: folds +ToqueSuave69 collected 2625 from pot +ToqueSuave69: shows [7d Kd] (a pair of Sevens) +*** SUMMARY *** +Total pot 2625 | Rake 0 +Board [6d 5d 7c] +Seat 1: Old Brother folded before Flop (didn't bet) +Seat 2: azhooligan folded before Flop (didn't bet) +Seat 3: ToqueSuave69 collected (2625) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: stoplost (small blind) folded before Flop +Seat 6: puddles1985 (big blind) folded on the Flop +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen folded on the Flop +Seat 9: Tsetung folded before Flop (didn't bet) + + + +PokerStars Game #12637939074: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:34:11 (ET) +Table '63858762 6' 9-max Seat #5 is the button +Seat 1: Old Brother (4000 in chips) +Seat 2: azhooligan (3780 in chips) +Seat 3: ToqueSuave69 (33300 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3520 in chips) +Seat 6: puddles1985 (8950 in chips) +Seat 7: Angie0502 (1995 in chips) +Seat 8: 2.7 acequeen (9010 in chips) +Seat 9: Tsetung (6645 in chips) +puddles1985: posts small blind 75 +Angie0502: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [7h 4h] +2.7 acequeen: folds +Tsetung: folds +Old Brother: folds +azhooligan: folds +ToqueSuave69: calls 150 +s0rrow: folds +stoplost: folds +puddles1985: calls 75 +Angie0502: checks +*** FLOP *** [2h 2c Jc] +puddles1985: checks +Angie0502: checks +ToqueSuave69: checks +*** TURN *** [2h 2c Jc] [4d] +puddles1985: bets 450 +Angie0502: folds +ToqueSuave69: folds +puddles1985 collected 450 from pot +puddles1985: doesn't show hand +*** SUMMARY *** +Total pot 450 | Rake 0 +Board [2h 2c Jc 4d] +Seat 1: Old Brother folded before Flop (didn't bet) +Seat 2: azhooligan folded before Flop (didn't bet) +Seat 3: ToqueSuave69 folded on the Turn +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: stoplost (button) folded before Flop (didn't bet) +Seat 6: puddles1985 (small blind) collected (450) +Seat 7: Angie0502 (big blind) folded on the Turn +Seat 8: 2.7 acequeen folded before Flop (didn't bet) +Seat 9: Tsetung folded before Flop (didn't bet) + + + +PokerStars Game #12637944068: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:35:00 (ET) +Table '63858762 6' 9-max Seat #6 is the button +Seat 1: Old Brother (4000 in chips) +Seat 2: azhooligan (3780 in chips) +Seat 3: ToqueSuave69 (33150 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3520 in chips) +Seat 6: puddles1985 (9250 in chips) +Seat 7: Angie0502 (1845 in chips) +Seat 8: 2.7 acequeen (9010 in chips) +Seat 9: Tsetung (6645 in chips) +Angie0502: posts small blind 75 +2.7 acequeen: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 3d] +Tsetung: folds +Old Brother: folds +azhooligan: folds +ToqueSuave69: calls 150 +s0rrow: folds +stoplost: folds +puddles1985: calls 150 +Angie0502: raises 1695 to 1845 and is all-in +2.7 acequeen: folds +ToqueSuave69: calls 1695 +puddles1985: folds +*** FLOP *** [5h 2d Qs] +*** TURN *** [5h 2d Qs] [Js] +*** RIVER *** [5h 2d Qs Js] [6d] +*** SHOW DOWN *** +Angie0502: shows [Kc Kh] (a pair of Kings) +ToqueSuave69: shows [Kd 3s] (high card King) +Angie0502 collected 3990 from pot +*** SUMMARY *** +Total pot 3990 | Rake 0 +Board [5h 2d Qs Js 6d] +Seat 1: Old Brother folded before Flop (didn't bet) +Seat 2: azhooligan folded before Flop (didn't bet) +Seat 3: ToqueSuave69 showed [Kd 3s] and lost with high card King +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: stoplost folded before Flop (didn't bet) +Seat 6: puddles1985 (button) folded before Flop +Seat 7: Angie0502 (small blind) showed [Kc Kh] and won (3990) with a pair of Kings +Seat 8: 2.7 acequeen (big blind) folded before Flop +Seat 9: Tsetung folded before Flop (didn't bet) + + + +PokerStars Game #12637949893: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level V (75/150) - 2007/10/15 - 06:35:54 (ET) +Table '63858762 6' 9-max Seat #7 is the button +Seat 1: Old Brother (4000 in chips) +Seat 2: azhooligan (3780 in chips) +Seat 3: ToqueSuave69 (31305 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3520 in chips) +Seat 6: puddles1985 (9100 in chips) +Seat 7: Angie0502 (3990 in chips) +Seat 8: 2.7 acequeen (8860 in chips) +Seat 9: Tsetung (6645 in chips) +2.7 acequeen: posts small blind 75 +Tsetung: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [6c 3d] +Old Brother: folds +azhooligan: calls 150 +ToqueSuave69: raises 150 to 300 +s0rrow: folds +stoplost: folds +puddles1985: calls 300 +Angie0502: folds +2.7 acequeen: folds +Tsetung: folds +azhooligan: calls 150 +*** FLOP *** [Tc 8s 7h] +azhooligan: checks +ToqueSuave69 said, "Hey puddles, you wanna play in the rain?" +ToqueSuave69: bets 150 +puddles1985: calls 150 +azhooligan: calls 150 +*** TURN *** [Tc 8s 7h] [5c] +azhooligan: checks +ToqueSuave69: bets 150 +puddles1985: calls 150 +azhooligan: calls 150 +*** RIVER *** [Tc 8s 7h 5c] [9c] +azhooligan: checks +ToqueSuave69: bets 150 +puddles1985: raises 450 to 600 +azhooligan: raises 2580 to 3180 and is all-in +ToqueSuave69: calls 3030 +puddles1985: calls 2580 +*** SHOW DOWN *** +azhooligan: shows [Qh Jh] (a straight, Eight to Queen) +ToqueSuave69: mucks hand +puddles1985: mucks hand +azhooligan collected 11565 from pot +*** SUMMARY *** +Total pot 11565 | Rake 0 +Board [Tc 8s 7h 5c 9c] +Seat 1: Old Brother folded before Flop (didn't bet) +Seat 2: azhooligan showed [Qh Jh] and won (11565) with a straight, Eight to Queen +Seat 3: ToqueSuave69 mucked [Kh Ks] +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: stoplost folded before Flop (didn't bet) +Seat 6: puddles1985 mucked [Ad Jc] +Seat 7: Angie0502 (button) folded before Flop (didn't bet) +Seat 8: 2.7 acequeen (small blind) folded before Flop +Seat 9: Tsetung (big blind) folded before Flop + + + +PokerStars Game #12637960241: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:37:32 (ET) +Table '63858762 6' 9-max Seat #8 is the button +Seat 1: Old Brother (4000 in chips) +Seat 2: azhooligan (11565 in chips) +Seat 3: ToqueSuave69 (27525 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3520 in chips) +Seat 6: puddles1985 (5320 in chips) +Seat 7: Angie0502 (3990 in chips) +Seat 8: 2.7 acequeen (8785 in chips) +Seat 9: Tsetung (6495 in chips) +Tsetung: posts small blind 100 +Old Brother: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [6d 9d] +azhooligan: folds +ToqueSuave69: folds +s0rrow: folds +stoplost is disconnected +stoplost is connected +ToqueSuave69 said, "that's what happens when you don't pay attention!!" +stoplost: raises 400 to 600 +puddles1985: folds +Angie0502: folds +2.7 acequeen: folds +Tsetung: folds +Old Brother: folds +stoplost collected 500 from pot +stoplost: doesn't show hand +*** SUMMARY *** +Total pot 500 | Rake 0 +Seat 1: Old Brother (big blind) folded before Flop +Seat 2: azhooligan folded before Flop (didn't bet) +Seat 3: ToqueSuave69 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: stoplost collected (500) +Seat 6: puddles1985 folded before Flop (didn't bet) +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen (button) folded before Flop (didn't bet) +Seat 9: Tsetung (small blind) folded before Flop + + + +PokerStars Game #12637965721: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:38:24 (ET) +Table '63858762 6' 9-max Seat #9 is the button +Seat 1: Old Brother (3800 in chips) +Seat 2: azhooligan (11565 in chips) +Seat 3: ToqueSuave69 (27525 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3820 in chips) +Seat 6: puddles1985 (5320 in chips) +Seat 7: Angie0502 (3990 in chips) +Seat 8: 2.7 acequeen (8785 in chips) +Seat 9: Tsetung (6395 in chips) +Old Brother: posts small blind 100 +azhooligan: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [9h 3h] +ToqueSuave69: calls 200 +s0rrow: folds +stoplost: folds +puddles1985: folds +Angie0502: folds +2.7 acequeen: folds +Tsetung: raises 800 to 1000 +Old Brother: calls 900 +azhooligan: folds +ToqueSuave69 said, "I'm proud stopwatch, you won one!!" +ToqueSuave69: calls 800 +*** FLOP *** [Kh 6s Tc] +Old Brother: bets 600 +ToqueSuave69: calls 600 +Tsetung: calls 600 +*** TURN *** [Kh 6s Tc] [4d] +Old Brother: bets 200 +ToqueSuave69: calls 200 +Tsetung: calls 200 +*** RIVER *** [Kh 6s Tc 4d] [Ah] +Old Brother: bets 200 +ToqueSuave69: folds +Tsetung: calls 200 +*** SHOW DOWN *** +Old Brother: shows [8s 8c] (a pair of Eights) +Tsetung: shows [As Qc] (a pair of Aces) +Tsetung collected 6000 from pot +*** SUMMARY *** +Total pot 6000 | Rake 0 +Board [Kh 6s Tc 4d Ah] +Seat 1: Old Brother (small blind) showed [8s 8c] and lost with a pair of Eights +Seat 2: azhooligan (big blind) folded before Flop +Seat 3: ToqueSuave69 folded on the River +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: stoplost folded before Flop (didn't bet) +Seat 6: puddles1985 folded before Flop (didn't bet) +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen folded before Flop (didn't bet) +Seat 9: Tsetung (button) showed [As Qc] and won (6000) with a pair of Aces + + + +PokerStars Game #12637973641: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:39:38 (ET) +Table '63858762 6' 9-max Seat #1 is the button +Seat 1: Old Brother (1800 in chips) +Seat 2: azhooligan (11365 in chips) +Seat 3: ToqueSuave69 (25725 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3820 in chips) +Seat 6: puddles1985 (5320 in chips) +Seat 7: Angie0502 (3990 in chips) +Seat 8: 2.7 acequeen (8785 in chips) +Seat 9: Tsetung (10395 in chips) +azhooligan: posts small blind 100 +ToqueSuave69: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [6h 2c] +s0rrow: folds +stoplost: folds +puddles1985: raises 400 to 600 +Angie0502: folds +2.7 acequeen: folds +Tsetung: calls 600 +Old Brother: folds +azhooligan: calls 500 +2.7 acequeen is disconnected +2.7 acequeen is connected +ToqueSuave69: calls 400 +*** FLOP *** [2h 8s 4c] +azhooligan: checks +ToqueSuave69: checks +puddles1985: checks +Tsetung: checks +*** TURN *** [2h 8s 4c] [5h] +azhooligan: bets 400 +ToqueSuave69: calls 400 +puddles1985: calls 400 +Tsetung: folds +*** RIVER *** [2h 8s 4c 5h] [5s] +azhooligan: bets 699 +ToqueSuave69: calls 699 +puddles1985: folds +*** SHOW DOWN *** +azhooligan: shows [9s 9c] (two pair, Nines and Fives) +ToqueSuave69: mucks hand +azhooligan collected 4998 from pot +*** SUMMARY *** +Total pot 4998 | Rake 0 +Board [2h 8s 4c 5h 5s] +Seat 1: Old Brother (button) folded before Flop (didn't bet) +Seat 2: azhooligan (small blind) showed [9s 9c] and won (4998) with two pair, Nines and Fives +Seat 3: ToqueSuave69 (big blind) mucked [4h Ah] +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: stoplost folded before Flop (didn't bet) +Seat 6: puddles1985 folded on the River +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen folded before Flop (didn't bet) +Seat 9: Tsetung folded on the Turn + + + +PokerStars Game #12637983442: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:41:07 (ET) +Table '63858762 6' 9-max Seat #2 is the button +Seat 1: Old Brother (1800 in chips) +Seat 2: azhooligan (14664 in chips) +Seat 3: ToqueSuave69 (24026 in chips) +Seat 4: s0rrow (12173 in chips) +Seat 5: stoplost (3820 in chips) +Seat 6: puddles1985 (4320 in chips) +Seat 7: Angie0502 (3990 in chips) +Seat 8: 2.7 acequeen (8785 in chips) +Seat 9: Tsetung (9795 in chips) +ToqueSuave69: posts small blind 100 +s0rrow: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 4h] +stoplost: folds +puddles1985: calls 200 +Angie0502: folds +2.7 acequeen has timed out +2.7 acequeen: folds +2.7 acequeen is sitting out +Tsetung: folds +Old Brother: folds +azhooligan: folds +ToqueSuave69: raises 200 to 400 +s0rrow: folds +puddles1985: calls 200 +*** FLOP *** [3h Ts 4d] +ToqueSuave69: bets 200 +puddles1985: calls 200 +*** TURN *** [3h Ts 4d] [7h] +ToqueSuave69: bets 200 +puddles1985: calls 200 +*** RIVER *** [3h Ts 4d 7h] [7d] +ToqueSuave69: bets 23226 and is all-in +puddles1985: calls 3520 and is all-in +*** SHOW DOWN *** +ToqueSuave69: shows [Qc Qs] (two pair, Queens and Sevens) +puddles1985: shows [2c 2s] (two pair, Sevens and Deuces) +ToqueSuave69 collected 8840 from pot +*** SUMMARY *** +Total pot 8840 | Rake 0 +Board [3h Ts 4d 7h 7d] +Seat 1: Old Brother folded before Flop (didn't bet) +Seat 2: azhooligan (button) folded before Flop (didn't bet) +Seat 3: ToqueSuave69 (small blind) showed [Qc Qs] and won (8840) with two pair, Queens and Sevens +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: stoplost folded before Flop (didn't bet) +Seat 6: puddles1985 showed [2c 2s] and lost with two pair, Sevens and Deuces +Seat 7: Angie0502 folded before Flop (didn't bet) +Seat 8: 2.7 acequeen folded before Flop (didn't bet) +Seat 9: Tsetung folded before Flop (didn't bet) + + + +PokerStars Game #12637992788: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:42:33 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3990 in chips) +Seat 3: fetchmeabeer (17700 in chips) +Seat 4: markd7 (11590 in chips) +Seat 5: CawfeKid (11475 in chips) +Seat 6: rapidrush (29115 in chips) +Seat 7: Jumping (9895 in chips) +Seat 8: BigDoob (1685 in chips) +Seat 9: s0rrow (11973 in chips) +I am 8: posts small blind 100 +fetchmeabeer: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [7c Kc] +markd7: calls 200 +CawfeKid: folds +rapidrush: folds +Jumping: folds +BigDoob: raises 1485 to 1685 and is all-in +s0rrow: folds +anaconda1234: folds +I am 8: folds +fetchmeabeer: folds +markd7: calls 1485 +*** FLOP *** [Kh 8s Jc] +*** TURN *** [Kh 8s Jc] [4h] +*** RIVER *** [Kh 8s Jc 4h] [5d] +*** SHOW DOWN *** +markd7: shows [As Js] (a pair of Jacks) +BigDoob: shows [Td Jd] (a pair of Jacks - lower kicker) +BigDoob is sitting out +markd7 collected 3670 from pot +*** SUMMARY *** +Total pot 3670 | Rake 0 +Board [Kh 8s Jc 4h 5d] +Seat 1: anaconda1234 (button) folded before Flop (didn't bet) +Seat 2: I am 8 (small blind) folded before Flop +Seat 3: fetchmeabeer (big blind) folded before Flop +Seat 4: markd7 showed [As Js] and won (3670) with a pair of Jacks +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: BigDoob showed [Td Jd] and lost with a pair of Jacks +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12637996792: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:43:10 (ET) +Table '63858762 7' 9-max Seat #2 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3890 in chips) +Seat 3: fetchmeabeer (17500 in chips) +Seat 4: markd7 (13575 in chips) +Seat 5: CawfeKid (11475 in chips) +Seat 6: rapidrush (29115 in chips) +Seat 7: Jumping (9895 in chips) +Seat 9: s0rrow (11973 in chips) +fetchmeabeer: posts small blind 100 +markd7: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [9s 8h] +CawfeKid: folds +rapidrush: calls 200 +Jumping: folds +s0rrow: folds +anaconda1234: folds +I am 8: folds +fetchmeabeer: calls 100 +markd7: checks +*** FLOP *** [2d Ah Ad] +fetchmeabeer: checks +markd7: checks +rapidrush: checks +*** TURN *** [2d Ah Ad] [6d] +fetchmeabeer: bets 200 +markd7: folds +rapidrush: calls 200 +*** RIVER *** [2d Ah Ad 6d] [Qs] +fetchmeabeer: bets 200 +rapidrush: raises 800 to 1000 +fetchmeabeer: folds +rapidrush collected 1400 from pot +*** SUMMARY *** +Total pot 1400 | Rake 0 +Board [2d Ah Ad 6d Qs] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: I am 8 (button) folded before Flop (didn't bet) +Seat 3: fetchmeabeer (small blind) folded on the River +Seat 4: markd7 (big blind) folded on the Turn +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush collected (1400) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638005650: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:44:31 (ET) +Table '63858762 7' 9-max Seat #3 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3890 in chips) +Seat 3: fetchmeabeer (16900 in chips) +Seat 4: markd7 (13375 in chips) +Seat 5: CawfeKid (11475 in chips) +Seat 6: rapidrush (29915 in chips) +Seat 7: Jumping (9895 in chips) +Seat 9: s0rrow (11973 in chips) +markd7: posts small blind 100 +CawfeKid: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 7s] +rapidrush: calls 200 +Jumping: folds +s0rrow: folds +anaconda1234: folds +I am 8: folds +fetchmeabeer: folds +jackie001 is connected +markd7: folds +CawfeKid: checks +*** FLOP *** [Tc Ts 7c] +CawfeKid: checks +rapidrush: checks +*** TURN *** [Tc Ts 7c] [Ks] +CawfeKid: checks +rapidrush: checks +*** RIVER *** [Tc Ts 7c Ks] [4c] +CawfeKid: checks +rapidrush: checks +*** SHOW DOWN *** +CawfeKid: shows [6c 2s] (a pair of Tens) +rapidrush: shows [Qh 8d] (a pair of Tens - King+Queen kicker) +rapidrush collected 500 from pot +*** SUMMARY *** +Total pot 500 | Rake 0 +Board [Tc Ts 7c Ks 4c] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: I am 8 folded before Flop (didn't bet) +Seat 3: fetchmeabeer (button) folded before Flop (didn't bet) +Seat 4: markd7 (small blind) folded before Flop +Seat 5: CawfeKid (big blind) showed [6c 2s] and lost with a pair of Tens +Seat 6: rapidrush showed [Qh 8d] and won (500) with a pair of Tens +Seat 7: Jumping folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638013820: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:45:45 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3890 in chips) +Seat 3: fetchmeabeer (16900 in chips) +Seat 4: markd7 (13275 in chips) +Seat 5: CawfeKid (11275 in chips) +Seat 6: rapidrush (30215 in chips) +Seat 7: Jumping (9895 in chips) +Seat 8: jackie001 (62070 in chips) +Seat 9: s0rrow (11973 in chips) +CawfeKid: posts small blind 100 +rapidrush: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [5d 3d] +Jumping: folds +jackie001: calls 200 +s0rrow: folds +anaconda1234: folds +I am 8: calls 200 +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: checks +*** FLOP *** [Qc 7c As] +rapidrush: checks +jackie001: bets 400 +I am 8: folds +rapidrush: folds +jackie001 collected 700 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 700 | Rake 0 +Board [Qc 7c As] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: I am 8 folded on the Flop +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 (button) folded before Flop (didn't bet) +Seat 5: CawfeKid (small blind) folded before Flop +Seat 6: rapidrush (big blind) folded on the Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 collected (700) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638018123: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:46:25 (ET) +Table '63858762 7' 9-max Seat #5 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3690 in chips) +Seat 3: fetchmeabeer (16900 in chips) +Seat 4: markd7 (13275 in chips) +Seat 5: CawfeKid (11175 in chips) +Seat 6: rapidrush (30015 in chips) +Seat 7: Jumping (9895 in chips) +Seat 8: jackie001 (62570 in chips) +Seat 9: s0rrow (11973 in chips) +rapidrush: posts small blind 100 +Jumping: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [8c 4h] +jackie001: calls 200 +s0rrow: folds +anaconda1234: folds +I am 8: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: calls 100 +Jumping: checks +*** FLOP *** [Ad Qs Jh] +rapidrush: checks +Jumping: checks +jackie001: bets 400 +rapidrush: folds +Jumping: folds +jackie001 collected 600 from pot +fetchmeabeer is disconnected +jackie001: doesn't show hand +fetchmeabeer is connected +*** SUMMARY *** +Total pot 600 | Rake 0 +Board [Ad Qs Jh] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: I am 8 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid (button) folded before Flop (didn't bet) +Seat 6: rapidrush (small blind) folded on the Flop +Seat 7: Jumping (big blind) folded on the Flop +Seat 8: jackie001 collected (600) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638022761: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:47:07 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3690 in chips) +Seat 3: fetchmeabeer (16900 in chips) +Seat 4: markd7 (13275 in chips) +Seat 5: CawfeKid (11175 in chips) +Seat 6: rapidrush (29815 in chips) +Seat 7: Jumping (9695 in chips) +Seat 8: jackie001 (62970 in chips) +Seat 9: s0rrow (11973 in chips) +Jumping: posts small blind 100 +jackie001: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 4s] +s0rrow: folds +anaconda1234: folds +I am 8: folds +fetchmeabeer: folds +markd7: raises 400 to 600 +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: folds +markd7 collected 500 from pot +*** SUMMARY *** +Total pot 500 | Rake 0 +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: I am 8 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 collected (500) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush (button) folded before Flop (didn't bet) +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) folded before Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638026266: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:47:39 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3690 in chips) +Seat 3: fetchmeabeer (16900 in chips) +Seat 4: markd7 (13575 in chips) +Seat 5: CawfeKid (11175 in chips) +Seat 6: rapidrush (29815 in chips) +Seat 7: Jumping (9595 in chips) +Seat 8: jackie001 (62770 in chips) +Seat 9: s0rrow (11973 in chips) +jackie001: posts small blind 100 +s0rrow: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [9d 2s] +anaconda1234: folds +I am 8: folds +fetchmeabeer: raises 400 to 600 +markd7: folds +CawfeKid: folds +rapidrush: calls 600 +Jumping: folds +jackie001: folds +s0rrow: folds +*** FLOP *** [6h 9c 8d] +fetchmeabeer: bets 1000 +rapidrush: folds +fetchmeabeer collected 1500 from pot +fetchmeabeer: doesn't show hand +*** SUMMARY *** +Total pot 1500 | Rake 0 +Board [6h 9c 8d] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: I am 8 folded before Flop (didn't bet) +Seat 3: fetchmeabeer collected (1500) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded on the Flop +Seat 7: Jumping (button) folded before Flop (didn't bet) +Seat 8: jackie001 (small blind) folded before Flop +Seat 9: s0rrow (big blind) folded before Flop + + + +PokerStars Game #12638030294: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:48:16 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 1: anaconda1234 (4395 in chips) +Seat 2: I am 8 (3690 in chips) +Seat 3: fetchmeabeer (17800 in chips) +Seat 4: markd7 (13575 in chips) +Seat 5: CawfeKid (11175 in chips) +Seat 6: rapidrush (29215 in chips) +Seat 7: Jumping (9595 in chips) +Seat 8: jackie001 (62670 in chips) +Seat 9: s0rrow (11773 in chips) +s0rrow: posts small blind 100 +anaconda1234: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Td 8h] +I am 8: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: calls 200 +s0rrow: calls 100 +anaconda1234: raises 4195 to 4395 and is all-in +jackie001: calls 4195 +s0rrow: folds +*** FLOP *** [7d Jd Kc] +*** TURN *** [7d Jd Kc] [6c] +*** RIVER *** [7d Jd Kc 6c] [Kh] +*** SHOW DOWN *** +anaconda1234: shows [3c 3s] (two pair, Kings and Threes) +jackie001: shows [4s 5s] (a pair of Kings) +anaconda1234 collected 8990 from pot +*** SUMMARY *** +Total pot 8990 | Rake 0 +Board [7d Jd Kc 6c Kh] +Seat 1: anaconda1234 (big blind) showed [3c 3s] and won (8990) with two pair, Kings and Threes +Seat 2: I am 8 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) showed [4s 5s] and lost with a pair of Kings +Seat 9: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12638038087: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:49:26 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 1: anaconda1234 (8990 in chips) +Seat 2: I am 8 (3690 in chips) +Seat 3: fetchmeabeer (17800 in chips) +Seat 4: markd7 (13575 in chips) +Seat 5: CawfeKid (11175 in chips) +Seat 6: rapidrush (29215 in chips) +Seat 7: Jumping (9595 in chips) +Seat 8: jackie001 (58275 in chips) +Seat 9: s0rrow (11573 in chips) +anaconda1234: posts small blind 100 +I am 8: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Ks 6d] +fetchmeabeer: raises 400 to 600 +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: calls 600 +s0rrow: folds +anaconda1234: folds +I am 8: folds +*** FLOP *** [Ac 9c 2c] +fetchmeabeer: checks +jackie001: bets 400 +fetchmeabeer: calls 400 +*** TURN *** [Ac 9c 2c] [Th] +fetchmeabeer: checks +jackie001: bets 800 +fetchmeabeer: calls 800 +*** RIVER *** [Ac 9c 2c Th] [Qs] +fetchmeabeer: checks +jackie001: checks +*** SHOW DOWN *** +fetchmeabeer: shows [Ah Qh] (two pair, Aces and Queens) +jackie001: mucks hand +fetchmeabeer collected 3900 from pot +*** SUMMARY *** +Total pot 3900 | Rake 0 +Board [Ac 9c 2c Th Qs] +Seat 1: anaconda1234 (small blind) folded before Flop +Seat 2: I am 8 (big blind) folded before Flop +Seat 3: fetchmeabeer showed [Ah Qh] and won (3900) with two pair, Aces and Queens +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 mucked [Ts 5s] +Seat 9: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638043864: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:50:19 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: anaconda1234 (8890 in chips) +Seat 2: I am 8 (3490 in chips) +Seat 3: fetchmeabeer (19900 in chips) +Seat 4: markd7 (13575 in chips) +Seat 5: CawfeKid (11175 in chips) +Seat 6: rapidrush (29215 in chips) +Seat 7: Jumping (9595 in chips) +Seat 8: jackie001 (56475 in chips) +Seat 9: s0rrow (11573 in chips) +I am 8: posts small blind 100 +fetchmeabeer: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Kd Ts] +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: raises 400 to 600 +s0rrow: folds +anaconda1234: folds +I am 8: raises 2890 to 3490 and is all-in +fetchmeabeer: folds +jackie001: calls 2890 +*** FLOP *** [Th 7d 8h] +*** TURN *** [Th 7d 8h] [Qs] +*** RIVER *** [Th 7d 8h Qs] [9h] +*** SHOW DOWN *** +I am 8: shows [2s 2c] (a pair of Deuces) +jackie001: shows [6d 6s] (a straight, Six to Ten) +jackie001 collected 7180 from pot +*** SUMMARY *** +Total pot 7180 | Rake 0 +Board [Th 7d 8h Qs 9h] +Seat 1: anaconda1234 (button) folded before Flop (didn't bet) +Seat 2: I am 8 (small blind) showed [2s 2c] and lost with a pair of Deuces +Seat 3: fetchmeabeer (big blind) folded before Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [6d 6s] and won (7180) with a straight, Six to Ten +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638048656: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:51:02 (ET) +Table '63858762 7' 9-max Seat #3 is the button +Seat 1: anaconda1234 (8890 in chips) +Seat 3: fetchmeabeer (19700 in chips) +Seat 4: markd7 (13575 in chips) +Seat 5: CawfeKid (11175 in chips) +Seat 6: rapidrush (29215 in chips) +Seat 7: Jumping (9595 in chips) +Seat 8: jackie001 (60165 in chips) +Seat 9: s0rrow (11573 in chips) +markd7: posts small blind 100 +CawfeKid: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [5d 6c] +rapidrush: folds +Jumping: folds +jackie001: raises 200 to 400 +s0rrow: folds +anaconda1234: folds +fetchmeabeer: calls 400 +markd7: folds +CawfeKid: calls 200 +*** FLOP *** [Jc 2s 7h] +CawfeKid: checks +jackie001: bets 800 +fetchmeabeer: folds +CawfeKid: folds +jackie001 collected 1300 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 1300 | Rake 0 +Board [Jc 2s 7h] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 3: fetchmeabeer (button) folded on the Flop +Seat 4: markd7 (small blind) folded before Flop +Seat 5: CawfeKid (big blind) folded on the Flop +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 collected (1300) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638053542: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VI (100/200) - 2007/10/15 - 06:51:46 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: anaconda1234 (8890 in chips) +Seat 3: fetchmeabeer (19300 in chips) +Seat 4: markd7 (13475 in chips) +Seat 5: CawfeKid (10775 in chips) +Seat 6: rapidrush (29215 in chips) +Seat 7: Jumping (9595 in chips) +Seat 8: jackie001 (61065 in chips) +Seat 9: s0rrow (11573 in chips) +CawfeKid: posts small blind 100 +rapidrush: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [4d 9h] +Jumping: folds +jackie001: calls 200 +s0rrow: folds +anaconda1234: folds +fetchmeabeer: folds +markd7: raises 600 to 800 +CawfeKid: folds +rapidrush: calls 600 +jackie001: calls 600 +*** FLOP *** [9c 2d 8h] +rapidrush: checks +jackie001: bets 1200 +markd7: raises 3000 to 4200 +rapidrush: folds +jackie001: calls 3000 +*** TURN *** [9c 2d 8h] [4c] +jackie001: checks +markd7: bets 8475 and is all-in +jackie001: calls 8475 +*** RIVER *** [9c 2d 8h 4c] [9s] +*** SHOW DOWN *** +jackie001: shows [2s 7c] (two pair, Nines and Deuces) +markd7: shows [Qh Qd] (two pair, Queens and Nines) +markd7 collected 27850 from pot +PS2 MAN is connected +*** SUMMARY *** +Total pot 27850 | Rake 0 +Board [9c 2d 8h 4c 9s] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 (button) showed [Qh Qd] and won (27850) with two pair, Queens and Nines +Seat 5: CawfeKid (small blind) folded before Flop +Seat 6: rapidrush (big blind) folded on the Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [2s 7c] and lost with two pair, Nines and Deuces +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638061282: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 06:52:57 (ET) +Table '63858762 7' 9-max Seat #5 is the button +Seat 1: anaconda1234 (8890 in chips) +Seat 2: PS2 MAN (4771 in chips) +Seat 3: fetchmeabeer (19300 in chips) +Seat 4: markd7 (27850 in chips) +Seat 5: CawfeKid (10675 in chips) +Seat 6: rapidrush (28415 in chips) +Seat 7: Jumping (9595 in chips) +Seat 8: jackie001 (47590 in chips) +Seat 9: s0rrow (11573 in chips) +anaconda1234: posts the ante 25 +PS2 MAN: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +rapidrush: posts small blind 150 +Jumping: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [2d 6s] +jackie001: folds +s0rrow: folds +anaconda1234: raises 300 to 600 +PS2 MAN: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: calls 300 +*** FLOP *** [7s Qh 4d] +Jumping: checks +jackie001 said, "go to hell" +anaconda1234: bets 900 +Jumping: folds +anaconda1234 collected 1575 from pot +*** SUMMARY *** +Total pot 1575 | Rake 0 +Board [7s Qh 4d] +Seat 1: anaconda1234 collected (1575) +Seat 2: PS2 MAN folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid (button) folded before Flop (didn't bet) +Seat 6: rapidrush (small blind) folded before Flop +Seat 7: Jumping (big blind) folded on the Flop +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638067112: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 06:53:49 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: anaconda1234 (9840 in chips) +Seat 2: PS2 MAN (4746 in chips) +Seat 3: fetchmeabeer (19275 in chips) +Seat 4: markd7 (27825 in chips) +Seat 5: CawfeKid (10650 in chips) +Seat 6: rapidrush (28240 in chips) +Seat 7: Jumping (8970 in chips) +Seat 8: jackie001 (47565 in chips) +Seat 9: s0rrow (11548 in chips) +anaconda1234: posts the ante 25 +PS2 MAN: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +Jumping: posts small blind 150 +jackie001: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [4c 8d] +s0rrow: folds +anaconda1234: raises 300 to 600 +markd7 said, "been there and back" +PS2 MAN: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: folds +anaconda1234 collected 975 from pot +*** SUMMARY *** +Total pot 975 | Rake 0 +Seat 1: anaconda1234 collected (975) +Seat 2: PS2 MAN folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush (button) folded before Flop (didn't bet) +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) folded before Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638070386: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 06:54:19 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 1: anaconda1234 (10490 in chips) +Seat 2: PS2 MAN (4721 in chips) +Seat 3: fetchmeabeer (19250 in chips) +Seat 4: markd7 (27800 in chips) +Seat 5: CawfeKid (10625 in chips) +Seat 6: rapidrush (28215 in chips) +Seat 7: Jumping (8795 in chips) +Seat 8: jackie001 (47240 in chips) +Seat 9: s0rrow (11523 in chips) +anaconda1234: posts the ante 25 +PS2 MAN: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +jackie001: posts small blind 150 +s0rrow: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [8h Th] +anaconda1234: folds +PS2 MAN: folds +fetchmeabeer: folds +markd7: folds +jackie001 said, "pay back is a *****" +CawfeKid: folds +rapidrush: calls 300 +Jumping: folds +jackie001: calls 150 +s0rrow: checks +*** FLOP *** [6d 2c Tc] +jackie001: bets 300 +s0rrow: calls 300 +rapidrush: calls 300 +*** TURN *** [6d 2c Tc] [Js] +jackie001: bets 300 +s0rrow: calls 300 +rapidrush: calls 300 +*** RIVER *** [6d 2c Tc Js] [5c] +jackie001: bets 600 +fetchmeabeer is disconnected +fetchmeabeer is connected +s0rrow: calls 600 +rapidrush: calls 600 +*** SHOW DOWN *** +jackie001: shows [4d 9c] (high card Jack) +s0rrow: shows [8h Th] (a pair of Tens) +rapidrush: shows [Qd Jc] (a pair of Jacks) +rapidrush collected 4725 from pot +*** SUMMARY *** +Total pot 4725 | Rake 0 +Board [6d 2c Tc Js 5c] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: PS2 MAN folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush showed [Qd Jc] and won (4725) with a pair of Jacks +Seat 7: Jumping (button) folded before Flop (didn't bet) +Seat 8: jackie001 (small blind) showed [4d 9c] and lost with high card Jack +Seat 9: s0rrow (big blind) showed [8h Th] and lost with a pair of Tens + + + +PokerStars Game #12638076991: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 06:55:18 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 1: anaconda1234 (10465 in chips) +Seat 2: PS2 MAN (4696 in chips) +Seat 3: fetchmeabeer (19225 in chips) +Seat 4: markd7 (27775 in chips) +Seat 5: CawfeKid (10600 in chips) +Seat 6: rapidrush (31415 in chips) +Seat 7: Jumping (8770 in chips) +Seat 8: jackie001 (45715 in chips) +Seat 9: s0rrow (9998 in chips) +anaconda1234: posts the ante 25 +PS2 MAN: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +s0rrow: posts small blind 150 +anaconda1234: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Ts 2s] +markd7 said, "ok" +PS2 MAN: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: calls 300 +s0rrow: folds +anaconda1234: checks +*** FLOP *** [2h 9h 9s] +anaconda1234: bets 1200 +jackie001: calls 1200 +*** TURN *** [2h 9h 9s] [Ah] +anaconda1234: bets 900 +jackie001: calls 900 +*** RIVER *** [2h 9h 9s Ah] [5d] +anaconda1234: checks +jackie001: bets 2100 +anaconda1234: folds +jackie001 collected 5175 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 5175 | Rake 0 +Board [2h 9h 9s Ah 5d] +Seat 1: anaconda1234 (big blind) folded on the River +Seat 2: PS2 MAN folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) collected (5175) +Seat 9: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12638086953: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 06:56:47 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 1: anaconda1234 (8040 in chips) +Seat 2: PS2 MAN (4671 in chips) +Seat 3: fetchmeabeer (19200 in chips) +Seat 4: markd7 (27750 in chips) +Seat 5: CawfeKid (10575 in chips) +Seat 6: rapidrush (31390 in chips) +Seat 7: Jumping (8745 in chips) +Seat 8: jackie001 (48465 in chips) +Seat 9: s0rrow (9823 in chips) +anaconda1234: posts the ante 25 +PS2 MAN: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +anaconda1234: posts small blind 150 +PS2 MAN: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Ks 9d] +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: calls 300 +s0rrow: calls 300 +anaconda1234: raises 600 to 900 +PS2 MAN: calls 600 +jackie001: calls 600 +s0rrow: calls 600 +*** FLOP *** [Qs 7c 6h] +anaconda1234: bets 300 +PS2 MAN: calls 300 +jackie001: raises 300 to 600 +s0rrow: folds +anaconda1234: calls 300 +PS2 MAN: calls 300 +*** TURN *** [Qs 7c 6h] [3s] +anaconda1234: checks +PS2 MAN: checks +jackie001: bets 900 +anaconda1234: calls 900 +PS2 MAN: folds +*** RIVER *** [Qs 7c 6h 3s] [Kd] +anaconda1234: checks +jackie001: bets 2700 +anaconda1234: folds +jackie001 collected 7425 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 7425 | Rake 0 +Board [Qs 7c 6h 3s Kd] +Seat 1: anaconda1234 (small blind) folded on the River +Seat 2: PS2 MAN (big blind) folded on the Turn +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 collected (7425) +Seat 9: s0rrow (button) folded on the Flop + + + +PokerStars Game #12638096741: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 06:58:15 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: anaconda1234 (5615 in chips) +Seat 2: PS2 MAN (3146 in chips) +Seat 3: fetchmeabeer (19175 in chips) +Seat 4: markd7 (27725 in chips) +Seat 5: CawfeKid (10550 in chips) +Seat 6: rapidrush (31365 in chips) +Seat 7: Jumping (8720 in chips) +Seat 8: jackie001 (53465 in chips) +Seat 9: s0rrow (8898 in chips) +anaconda1234: posts the ante 25 +PS2 MAN: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +PS2 MAN: posts small blind 150 +fetchmeabeer: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Jh Jc] +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: raises 600 to 900 +anaconda1234: calls 900 +PS2 MAN: calls 750 +fetchmeabeer: folds +*** FLOP *** [Kc Qh 2d] +PS2 MAN: checks +s0rrow: checks +anaconda1234: bets 300 +PS2 MAN: folds +s0rrow: calls 300 +*** TURN *** [Kc Qh 2d] [Kh] +s0rrow: bets 1200 +anaconda1234: folds +s0rrow collected 3825 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 3825 | Rake 0 +Board [Kc Qh 2d Kh] +Seat 1: anaconda1234 (button) folded on the Turn +Seat 2: PS2 MAN (small blind) folded on the Flop +Seat 3: fetchmeabeer (big blind) folded before Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow collected (3825) + + + +PokerStars Game #12638103940: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 06:59:19 (ET) +Table '63858762 7' 9-max Seat #2 is the button +Seat 1: anaconda1234 (4390 in chips) +Seat 2: PS2 MAN (2221 in chips) +Seat 3: fetchmeabeer (18850 in chips) +Seat 4: markd7 (27700 in chips) +Seat 5: CawfeKid (10525 in chips) +Seat 6: rapidrush (31340 in chips) +Seat 7: Jumping (8695 in chips) +Seat 8: jackie001 (53440 in chips) +Seat 9: s0rrow (11498 in chips) +anaconda1234: posts the ante 25 +PS2 MAN: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +fetchmeabeer: posts small blind 150 +markd7: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [3h 2c] +CawfeKid: folds +rapidrush: calls 300 +Jumping: folds +jackie001: calls 300 +s0rrow: folds +anaconda1234: folds +PS2 MAN: raises 1896 to 2196 and is all-in +fetchmeabeer: folds +markd7: folds +rapidrush: calls 1896 +jackie001: folds +*** FLOP *** [2h 3s Ks] +*** TURN *** [2h 3s Ks] [Tc] +*** RIVER *** [2h 3s Ks Tc] [6d] +*** SHOW DOWN *** +rapidrush: shows [5s 5h] (a pair of Fives) +PS2 MAN: shows [Qc Jc] (high card King) +rapidrush collected 5367 from pot +*** SUMMARY *** +Total pot 5367 | Rake 0 +Board [2h 3s Ks Tc 6d] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 2: PS2 MAN (button) showed [Qc Jc] and lost with high card King +Seat 3: fetchmeabeer (small blind) folded before Flop +Seat 4: markd7 (big blind) folded before Flop +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush showed [5s 5h] and won (5367) with a pair of Fives +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638109254: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 07:00:07 (ET) +Table '63858762 7' 9-max Seat #3 is the button +Seat 1: anaconda1234 (4365 in chips) +Seat 3: fetchmeabeer (18675 in chips) +Seat 4: markd7 (27375 in chips) +Seat 5: CawfeKid (10500 in chips) +Seat 6: rapidrush (34486 in chips) +Seat 7: Jumping (8670 in chips) +Seat 8: jackie001 (53115 in chips) +Seat 9: s0rrow (11473 in chips) +anaconda1234: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +markd7: posts small blind 150 +CawfeKid: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Kc] +rapidrush: calls 300 +Jumping: folds +jackie001: raises 600 to 900 +s0rrow: folds +anaconda1234: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: calls 600 +*** FLOP *** [6c 4d 6s] +rapidrush: checks +jackie001: bets 2100 +rapidrush: folds +jackie001 collected 2450 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 2450 | Rake 0 +Board [6c 4d 6s] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 3: fetchmeabeer (button) folded before Flop (didn't bet) +Seat 4: markd7 (small blind) folded before Flop +Seat 5: CawfeKid (big blind) folded before Flop +Seat 6: rapidrush folded on the Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 collected (2450) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638113701: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 07:00:47 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: anaconda1234 (4340 in chips) +Seat 3: fetchmeabeer (18650 in chips) +Seat 4: markd7 (27200 in chips) +Seat 5: CawfeKid (10175 in chips) +Seat 6: rapidrush (33561 in chips) +Seat 7: Jumping (8645 in chips) +Seat 8: jackie001 (54640 in chips) +Seat 9: s0rrow (11448 in chips) +anaconda1234: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +CawfeKid: posts small blind 150 +rapidrush: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Qs] +Jumping: folds +jackie001: raises 300 to 600 +s0rrow: raises 900 to 1500 +anaconda1234: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +jackie001: calls 900 +*** FLOP *** [Ts 5s 4s] +jackie001: bets 1200 +s0rrow: calls 1200 +*** TURN *** [Ts 5s 4s] [6c] +jackie001: bets 51915 and is all-in +s0rrow: calls 8723 and is all-in +*** RIVER *** [Ts 5s 4s 6c] [5d] +*** SHOW DOWN *** +jackie001: shows [Ks 9c] (a pair of Fives) +s0rrow: shows [Qd Qs] (two pair, Queens and Fives) +s0rrow collected 23496 from pot +*** SUMMARY *** +Total pot 23496 | Rake 0 +Board [Ts 5s 4s 6c 5d] +Seat 1: anaconda1234 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 (button) folded before Flop (didn't bet) +Seat 5: CawfeKid (small blind) folded before Flop +Seat 6: rapidrush (big blind) folded before Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [Ks 9c] and lost with a pair of Fives +Seat 9: s0rrow showed [Qd Qs] and won (23496) with two pair, Queens and Fives + + + +PokerStars Game #12638119469: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 07:01:38 (ET) +Table '63858762 7' 9-max Seat #5 is the button +Seat 1: anaconda1234 (4315 in chips) +Seat 3: fetchmeabeer (18625 in chips) +Seat 4: markd7 (27175 in chips) +Seat 5: CawfeKid (10000 in chips) +Seat 6: rapidrush (33236 in chips) +Seat 7: Jumping (8620 in chips) +Seat 8: jackie001 (43192 in chips) +Seat 9: s0rrow (23496 in chips) +anaconda1234: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +rapidrush: posts small blind 150 +Jumping: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [4d Ks] +jackie001: calls 300 +s0rrow: folds +anaconda1234: raises 900 to 1200 +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001 is disconnected +jackie001 is connected +jackie001: folds +anaconda1234 collected 1250 from pot +*** SUMMARY *** +Total pot 1250 | Rake 0 +Seat 1: anaconda1234 collected (1250) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid (button) folded before Flop (didn't bet) +Seat 6: rapidrush (small blind) folded before Flop +Seat 7: Jumping (big blind) folded before Flop +Seat 8: jackie001 folded before Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638128982: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 07:03:03 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: anaconda1234 (5240 in chips) +Seat 3: fetchmeabeer (18600 in chips) +Seat 4: markd7 (27150 in chips) +Seat 5: CawfeKid (9975 in chips) +Seat 6: rapidrush (33061 in chips) +Seat 7: Jumping (8295 in chips) +Seat 8: jackie001 (42867 in chips) +Seat 9: s0rrow (23471 in chips) +anaconda1234: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +Jumping: posts small blind 150 +jackie001: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 4c] +s0rrow: folds +anaconda1234: raises 600 to 900 +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: calls 900 +Jumping: folds +jackie001: raises 600 to 1500 +anaconda1234: calls 600 +rapidrush: calls 600 +*** FLOP *** [8h Ah Td] +jackie001: bets 1500 +anaconda1234: calls 1500 +rapidrush: calls 1500 +*** TURN *** [8h Ah Td] [Kh] +jackie001: bets 39842 and is all-in +anaconda1234: calls 2215 and is all-in +rapidrush: folds +*** RIVER *** [8h Ah Td Kh] [8c] +*** SHOW DOWN *** +jackie001: shows [Jc Qh] (a straight, Ten to Ace) +anaconda1234: shows [Js Ts] (two pair, Tens and Eights) +borik52 is connected +jackie001 collected 13780 from pot +*** SUMMARY *** +Total pot 13780 | Rake 0 +Board [8h Ah Td Kh 8c] +Seat 1: anaconda1234 showed [Js Ts] and lost with two pair, Tens and Eights +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush (button) folded on the Turn +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) showed [Jc Qh] and won (13780) with a straight, Ten to Ace +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638138207: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 07:04:25 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 2: borik52 (24955 in chips) +Seat 3: fetchmeabeer (18575 in chips) +Seat 4: markd7 (27125 in chips) +Seat 5: CawfeKid (9950 in chips) +Seat 6: rapidrush (30036 in chips) +Seat 7: Jumping (8120 in chips) +Seat 8: jackie001 (51407 in chips) +Seat 9: s0rrow (23446 in chips) +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +jackie001: posts small blind 150 +s0rrow: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Js 2d] +borik52: calls 300 +fetchmeabeer: folds +markd7: calls 300 +CawfeKid: calls 300 +rapidrush: calls 300 +Jumping: folds +jackie001: calls 150 +s0rrow: checks +*** FLOP *** [2h 6d 2c] +jackie001: bets 900 +s0rrow: calls 900 +borik52: folds +markd7: folds +CawfeKid: folds +rapidrush: calls 900 +*** TURN *** [2h 6d 2c] [Td] +jackie001: bets 300 +s0rrow: calls 300 +rapidrush: calls 300 +*** RIVER *** [2h 6d 2c Td] [Qc] +jackie001: checks +s0rrow: bets 900 +rapidrush: folds +jackie001: folds +s0rrow collected 5600 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 5600 | Rake 0 +Board [2h 6d 2c Td Qc] +Seat 2: borik52 folded on the Flop +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded on the Flop +Seat 5: CawfeKid folded on the Flop +Seat 6: rapidrush folded on the River +Seat 7: Jumping (button) folded before Flop (didn't bet) +Seat 8: jackie001 (small blind) folded on the River +Seat 9: s0rrow (big blind) collected (5600) + + + +PokerStars Game #12638149785: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VII (150/300) - 2007/10/15 - 07:06:06 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 2: borik52 (24630 in chips) +Seat 3: fetchmeabeer (18550 in chips) +Seat 4: markd7 (26800 in chips) +Seat 5: CawfeKid (9625 in chips) +Seat 6: rapidrush (28511 in chips) +Seat 7: Jumping (8095 in chips) +Seat 8: jackie001 (49882 in chips) +Seat 9: s0rrow (27521 in chips) +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +s0rrow: posts small blind 150 +borik52: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Kd Qc] +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: calls 300 +s0rrow: calls 150 +borik52: checks +*** FLOP *** [4s 7h As] +s0rrow: checks +borik52: bets 300 +jackie001: calls 300 +s0rrow: folds +*** TURN *** [4s 7h As] [3d] +borik52: checks +jackie001: bets 1200 +borik52: folds +jackie001 collected 1700 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 1700 | Rake 0 +Board [4s 7h As 3d] +Seat 2: borik52 (big blind) folded on the Turn +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) collected (1700) +Seat 9: s0rrow (small blind) folded on the Flop + + + +PokerStars Game #12638159090: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:07:29 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 2: borik52 (24005 in chips) +Seat 3: fetchmeabeer (18525 in chips) +Seat 4: markd7 (26775 in chips) +Seat 5: CawfeKid (9600 in chips) +Seat 6: rapidrush (28486 in chips) +Seat 7: Jumping (8070 in chips) +Seat 8: jackie001 (50957 in chips) +Seat 9: s0rrow (27196 in chips) +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +borik52: posts small blind 200 +fetchmeabeer: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [4d Ts] +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: calls 400 +s0rrow: folds +borik52: calls 200 +fetchmeabeer: checks +*** FLOP *** [Kh 6s Qd] +borik52: checks +fetchmeabeer: bets 1200 +jackie001: folds +borik52: folds +fetchmeabeer collected 1400 from pot +fetchmeabeer: doesn't show hand +*** SUMMARY *** +Total pot 1400 | Rake 0 +Board [Kh 6s Qd] +Seat 2: borik52 (small blind) folded on the Flop +Seat 3: fetchmeabeer (big blind) collected (1400) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded on the Flop +Seat 9: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638165706: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:08:26 (ET) +Table '63858762 7' 9-max Seat #2 is the button +Seat 2: borik52 (23580 in chips) +Seat 3: fetchmeabeer (19500 in chips) +Seat 4: markd7 (26750 in chips) +Seat 5: CawfeKid (9575 in chips) +Seat 6: rapidrush (28461 in chips) +Seat 7: Jumping (8045 in chips) +Seat 8: jackie001 (50532 in chips) +Seat 9: s0rrow (27171 in chips) +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +fetchmeabeer: posts small blind 200 +markd7: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [9h As] +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: folds +borik52: calls 400 +fetchmeabeer: raises 1200 to 1600 +markd7: folds +borik52: folds +fetchmeabeer collected 1400 from pot +fetchmeabeer: doesn't show hand +*** SUMMARY *** +Total pot 1400 | Rake 0 +Seat 2: borik52 (button) folded before Flop +Seat 3: fetchmeabeer (small blind) collected (1400) +Seat 4: markd7 (big blind) folded before Flop +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638169145: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:08:57 (ET) +Table '63858762 7' 9-max Seat #3 is the button +Seat 2: borik52 (23155 in chips) +Seat 3: fetchmeabeer (20475 in chips) +Seat 4: markd7 (26325 in chips) +Seat 5: CawfeKid (9550 in chips) +Seat 6: rapidrush (28436 in chips) +Seat 7: Jumping (8020 in chips) +Seat 8: jackie001 (50507 in chips) +Seat 9: s0rrow (27146 in chips) +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +markd7: posts small blind 200 +CawfeKid: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [3c Ac] +rapidrush: calls 400 +Jumping: folds +jackie001: calls 400 +s0rrow: folds +borik52: calls 400 +fetchmeabeer: calls 400 +markd7: calls 200 +CawfeKid: checks +*** FLOP *** [Tc 6d Kd] +markd7: checks +CawfeKid: checks +rapidrush: checks +jackie001: checks +borik52: bets 1200 +fetchmeabeer: raises 1200 to 2400 +markd7: folds +CawfeKid: folds +rapidrush: folds +jackie001: folds +borik52: calls 1200 +*** TURN *** [Tc 6d Kd] [6h] +borik52: checks +fetchmeabeer: bets 17650 and is all-in +dirk2340 is connected +borik52: folds +fetchmeabeer collected 7400 from pot +fetchmeabeer: doesn't show hand +*** SUMMARY *** +Total pot 7400 | Rake 0 +Board [Tc 6d Kd 6h] +Seat 2: borik52 folded on the Turn +Seat 3: fetchmeabeer (button) collected (7400) +Seat 4: markd7 (small blind) folded on the Flop +Seat 5: CawfeKid (big blind) folded on the Flop +Seat 6: rapidrush folded on the Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded on the Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638184954: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:11:15 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: dirk2340 (19845 in chips) +Seat 2: borik52 (20330 in chips) +Seat 3: fetchmeabeer (25050 in chips) +Seat 4: markd7 (25900 in chips) +Seat 5: CawfeKid (9125 in chips) +Seat 6: rapidrush (28011 in chips) +Seat 7: Jumping (7995 in chips) +Seat 8: jackie001 (50082 in chips) +Seat 9: s0rrow (27121 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +CawfeKid: posts small blind 200 +rapidrush: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [9d 8c] +Jumping: folds +jackie001: calls 400 +s0rrow: folds +dirk2340: folds +borik52: folds +fetchmeabeer: calls 400 +markd7: calls 400 +CawfeKid: folds +rapidrush: checks +*** FLOP *** [Qh 8h 4s] +rapidrush: checks +jackie001: bets 1200 +fetchmeabeer: raises 1200 to 2400 +markd7: folds +rapidrush: folds +jackie001: calls 1200 +*** TURN *** [Qh 8h 4s] [6s] +jackie001: bets 1200 +fetchmeabeer: raises 5200 to 6400 +jackie001: calls 5200 +*** RIVER *** [Qh 8h 4s 6s] [Ac] +jackie001: checks +fetchmeabeer: bets 10000 +jackie001: calls 10000 +*** SHOW DOWN *** +fetchmeabeer: shows [8s 8d] (three of a kind, Eights) +jackie001: mucks hand +fetchmeabeer collected 39625 from pot +*** SUMMARY *** +Total pot 39625 | Rake 0 +Board [Qh 8h 4s 6s Ac] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: borik52 folded before Flop (didn't bet) +Seat 3: fetchmeabeer showed [8s 8d] and won (39625) with three of a kind, Eights +Seat 4: markd7 (button) folded on the Flop +Seat 5: CawfeKid (small blind) folded before Flop +Seat 6: rapidrush (big blind) folded on the Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 mucked [Qs Tc] +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638194432: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:12:38 (ET) +Table '63858762 7' 9-max Seat #5 is the button +Seat 1: dirk2340 (19820 in chips) +Seat 2: borik52 (20305 in chips) +Seat 3: fetchmeabeer (45450 in chips) +Seat 4: markd7 (25475 in chips) +Seat 5: CawfeKid (8900 in chips) +Seat 6: rapidrush (27586 in chips) +Seat 7: Jumping (7970 in chips) +Seat 8: jackie001 (30857 in chips) +Seat 9: s0rrow (27096 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +rapidrush: posts small blind 200 +Jumping: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [2d 2h] +jackie001: raises 400 to 800 +s0rrow: folds +dirk2340: folds +borik52: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: calls 400 +*** FLOP *** [7s 2c 4s] +Jumping: checks +jackie001: bets 400 +Jumping: raises 6745 to 7145 and is all-in +jackie001: folds +Jumping collected 2825 from pot +*** SUMMARY *** +Total pot 2825 | Rake 0 +Board [7s 2c 4s] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: borik52 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid (button) folded before Flop (didn't bet) +Seat 6: rapidrush (small blind) folded before Flop +Seat 7: Jumping (big blind) collected (2825) +Seat 8: jackie001 folded on the Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638199986: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:13:27 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: dirk2340 (19795 in chips) +Seat 2: borik52 (20280 in chips) +Seat 3: fetchmeabeer (45425 in chips) +Seat 4: markd7 (25450 in chips) +Seat 5: CawfeKid (8875 in chips) +Seat 6: rapidrush (27361 in chips) +Seat 7: Jumping (9570 in chips) +Seat 8: jackie001 (29632 in chips) +Seat 9: s0rrow (27071 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +Jumping: posts small blind 200 +jackie001: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [3d 6d] +s0rrow: folds +dirk2340: raises 800 to 1200 +borik52: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: calls 800 +*** FLOP *** [4s 4d 7h] +jackie001: bets 400 +dirk2340: calls 400 +*** TURN *** [4s 4d 7h] [8h] +jackie001: bets 400 +dirk2340: raises 800 to 1200 +jackie001: calls 800 +*** RIVER *** [4s 4d 7h 8h] [Tc] +jackie001: bets 400 +dirk2340: calls 400 +*** SHOW DOWN *** +jackie001: shows [Jh 5s] (a pair of Fours) +dirk2340: shows [Ac Jd] (a pair of Fours - Ace kicker) +dirk2340 collected 6825 from pot +*** SUMMARY *** +Total pot 6825 | Rake 0 +Board [4s 4d 7h 8h Tc] +Seat 1: dirk2340 showed [Ac Jd] and won (6825) with a pair of Fours +Seat 2: borik52 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush (button) folded before Flop (didn't bet) +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) showed [Jh 5s] and lost with a pair of Fours +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638206168: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:14:21 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 1: dirk2340 (23395 in chips) +Seat 2: borik52 (20255 in chips) +Seat 3: fetchmeabeer (45400 in chips) +Seat 4: markd7 (25425 in chips) +Seat 5: CawfeKid (8850 in chips) +Seat 6: rapidrush (27336 in chips) +Seat 7: Jumping (9345 in chips) +Seat 8: jackie001 (26407 in chips) +Seat 9: s0rrow (27046 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +jackie001: posts small blind 200 +s0rrow: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [Js Jc] +dirk2340: folds +borik52: folds +fetchmeabeer: folds +markd7: folds +CawfeKid: folds +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow collected 625 from pot +s0rrow: shows [Js Jc] (a pair of Jacks) +*** SUMMARY *** +Total pot 625 | Rake 0 +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: borik52 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping (button) folded before Flop (didn't bet) +Seat 8: jackie001 (small blind) folded before Flop +Seat 9: s0rrow (big blind) collected (625) + + + +PokerStars Game #12638209367: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:14:50 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 1: dirk2340 (23370 in chips) +Seat 2: borik52 (20230 in chips) +Seat 3: fetchmeabeer (45375 in chips) +Seat 4: markd7 (25400 in chips) +Seat 5: CawfeKid (8825 in chips) +Seat 6: rapidrush (27311 in chips) +Seat 7: Jumping (9320 in chips) +Seat 8: jackie001 (26182 in chips) +Seat 9: s0rrow (27446 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +s0rrow: posts small blind 200 +dirk2340: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [7d 6d] +borik52: folds +fetchmeabeer: raises 800 to 1200 +markd7: folds +CawfeKid: folds +rapidrush: calls 1200 +Jumping: folds +jackie001: calls 1200 +s0rrow: folds +dirk2340: calls 800 +*** FLOP *** [9h Ts Jc] +dirk2340: checks +fetchmeabeer: checks +rapidrush: bets 800 +jackie001: calls 800 +dirk2340: folds +fetchmeabeer: calls 800 +*** TURN *** [9h Ts Jc] [4c] +fetchmeabeer: checks +rapidrush: bets 1200 +jackie001: calls 1200 +fetchmeabeer: calls 1200 +*** RIVER *** [9h Ts Jc 4c] [Td] +fetchmeabeer: checks +rapidrush: bets 4000 +jackie001: folds +fetchmeabeer: raises 38150 to 42150 and is all-in +rapidrush: calls 20086 and is all-in +*** SHOW DOWN *** +fetchmeabeer: shows [Ah Ks] (a pair of Tens) +rapidrush: shows [As Tc] (three of a kind, Tens) +rapidrush collected 59397 from pot +*** SUMMARY *** +Total pot 59397 | Rake 0 +Board [9h Ts Jc 4c Td] +Seat 1: dirk2340 (big blind) folded on the Flop +Seat 2: borik52 folded before Flop (didn't bet) +Seat 3: fetchmeabeer showed [Ah Ks] and lost with a pair of Tens +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush showed [As Tc] and won (59397) with three of a kind, Tens +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) folded on the River +Seat 9: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12638220687: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:16:30 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 1: dirk2340 (22145 in chips) +Seat 2: borik52 (20205 in chips) +Seat 3: fetchmeabeer (18064 in chips) +Seat 4: markd7 (25375 in chips) +Seat 5: CawfeKid (8800 in chips) +Seat 6: rapidrush (59397 in chips) +Seat 7: Jumping (9295 in chips) +Seat 8: jackie001 (22957 in chips) +Seat 9: s0rrow (27221 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +dirk2340: posts small blind 200 +borik52: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [As Qs] +fetchmeabeer: calls 400 +markd7: folds +CawfeKid: folds +rapidrush: calls 400 +Jumping: folds +jackie001: calls 400 +s0rrow: calls 400 +dirk2340: calls 200 +borik52: checks +*** FLOP *** [4h 7s 6d] +dirk2340: checks +borik52: checks +fetchmeabeer: checks +rapidrush: checks +jackie001: checks +s0rrow: checks +*** TURN *** [4h 7s 6d] [3c] +dirk2340: bets 800 +borik52: folds +fetchmeabeer: folds +rapidrush: folds +jackie001: calls 800 +s0rrow: folds +*** RIVER *** [4h 7s 6d 3c] [6s] +dirk2340: bets 1200 +jackie001: folds +dirk2340 collected 4225 from pot +dirk2340: doesn't show hand +*** SUMMARY *** +Total pot 4225 | Rake 0 +Board [4h 7s 6d 3c 6s] +Seat 1: dirk2340 (small blind) collected (4225) +Seat 2: borik52 (big blind) folded on the Turn +Seat 3: fetchmeabeer folded on the Turn +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded on the Turn +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded on the River +Seat 9: s0rrow (button) folded on the Turn + + + +PokerStars Game #12638229570: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:17:48 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: dirk2340 (25145 in chips) +Seat 2: borik52 (19780 in chips) +Seat 3: fetchmeabeer (17639 in chips) +Seat 4: markd7 (25350 in chips) +Seat 5: CawfeKid (8775 in chips) +Seat 6: rapidrush (58972 in chips) +Seat 7: Jumping (9270 in chips) +Seat 8: jackie001 (21732 in chips) +Seat 9: s0rrow (26796 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +borik52: posts small blind 200 +fetchmeabeer: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 7h] +markd7: folds +CawfeKid: folds +rapidrush: calls 400 +Jumping: raises 1200 to 1600 +jackie001: folds +s0rrow: folds +dirk2340: folds +borik52: folds +fetchmeabeer: folds +rapidrush: calls 1200 +*** FLOP *** [Ks 3h 9s] +rapidrush: checks +Jumping: bets 1200 +rapidrush: calls 1200 +*** TURN *** [Ks 3h 9s] [9h] +rapidrush: checks +Jumping: bets 3600 +rapidrush: folds +Jumping collected 6425 from pot +*** SUMMARY *** +Total pot 6425 | Rake 0 +Board [Ks 3h 9s 9h] +Seat 1: dirk2340 (button) folded before Flop (didn't bet) +Seat 2: borik52 (small blind) folded before Flop +Seat 3: fetchmeabeer (big blind) folded before Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded on the Turn +Seat 7: Jumping collected (6425) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638237268: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:18:55 (ET) +Table '63858762 7' 9-max Seat #2 is the button +Seat 1: dirk2340 (25120 in chips) +Seat 2: borik52 (19555 in chips) +Seat 3: fetchmeabeer (17214 in chips) +Seat 4: markd7 (25325 in chips) +Seat 5: CawfeKid (8750 in chips) +Seat 6: rapidrush (56147 in chips) +Seat 7: Jumping (12870 in chips) +Seat 8: jackie001 (21707 in chips) +Seat 9: s0rrow (26771 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +fetchmeabeer: posts small blind 200 +markd7: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [3s Tc] +CawfeKid: folds +rapidrush: folds +Jumping: calls 400 +jackie001: folds +s0rrow: folds +dirk2340: folds +borik52: folds +markd7 said, "hey jackie where did all ur chips go" +fetchmeabeer is disconnected +fetchmeabeer has timed out while disconnected +fetchmeabeer: folds +fetchmeabeer is sitting out +markd7: checks +*** FLOP *** [2s Ac Td] +markd7: checks +Jumping: bets 800 +markd7: folds +Jumping collected 1225 from pot +*** SUMMARY *** +Total pot 1225 | Rake 0 +Board [2s Ac Td] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: borik52 (button) folded before Flop (didn't bet) +Seat 3: fetchmeabeer (small blind) folded before Flop +Seat 4: markd7 (big blind) folded on the Flop +Seat 5: CawfeKid folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping collected (1225) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638246552: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:20:20 (ET) +Table '63858762 7' 9-max Seat #3 is the button +Seat 1: dirk2340 (25095 in chips) +Seat 2: borik52 (19530 in chips) +Seat 3: fetchmeabeer (16989 in chips) is sitting out +Seat 4: markd7 (24900 in chips) +Seat 5: CawfeKid (8725 in chips) +Seat 6: rapidrush (56122 in chips) +Seat 7: Jumping (13670 in chips) +Seat 8: jackie001 (21682 in chips) +Seat 9: s0rrow (26746 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +CawfeKid: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +markd7: posts small blind 200 +CawfeKid: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [3d Jd] +rapidrush: calls 400 +Jumping: folds +jackie001: calls 400 +s0rrow: folds +dirk2340: folds +borik52: folds +fetchmeabeer: folds +markd7: calls 200 +CawfeKid: checks +*** FLOP *** [Th 4d 3c] +markd7: checks +CawfeKid: checks +rapidrush: checks +jackie001: bets 800 +markd7: folds +CawfeKid: calls 800 +rapidrush: folds +*** TURN *** [Th 4d 3c] [2h] +CawfeKid: checks +jackie001: bets 800 +CawfeKid: raises 1600 to 2400 +jackie001: calls 1600 +*** RIVER *** [Th 4d 3c 2h] [Ah] +CawfeKid: bets 5100 and is all-in +jackie001: calls 5100 +*** SHOW DOWN *** +CawfeKid: shows [6s 5d] (a straight, Deuce to Six) +jackie001: shows [4h Jh] (a flush, Ace high) +jackie001 collected 18425 from pot +*** SUMMARY *** +Total pot 18425 | Rake 0 +Board [Th 4d 3c 2h Ah] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: borik52 folded before Flop (didn't bet) +Seat 3: fetchmeabeer (button) folded before Flop (didn't bet) +Seat 4: markd7 (small blind) folded on the Flop +Seat 5: CawfeKid (big blind) showed [6s 5d] and lost with a straight, Deuce to Six +Seat 6: rapidrush folded on the Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [4h Jh] and won (18425) with a flush, Ace high +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638254522: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level VIII (200/400) - 2007/10/15 - 07:21:30 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: dirk2340 (25070 in chips) +Seat 2: borik52 (19505 in chips) +Seat 3: fetchmeabeer (16964 in chips) is sitting out +Seat 4: markd7 (24475 in chips) +Seat 6: rapidrush (55697 in chips) +Seat 7: Jumping (13645 in chips) +Seat 8: jackie001 (31382 in chips) +Seat 9: s0rrow (26721 in chips) +dirk2340: posts the ante 25 +borik52: posts the ante 25 +fetchmeabeer: posts the ante 25 +markd7: posts the ante 25 +rapidrush: posts the ante 25 +Jumping: posts the ante 25 +jackie001: posts the ante 25 +s0rrow: posts the ante 25 +rapidrush: posts small blind 200 +Jumping: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [3h 6c] +jackie001: raises 400 to 800 +s0rrow: folds +dirk2340: folds +borik52: calls 800 +fetchmeabeer: folds +markd7: folds +rapidrush: calls 600 +Jumping: folds +*** FLOP *** [Jh 5d 4h] +rapidrush: checks +jackie001: bets 400 +borik52: raises 800 to 1200 +rapidrush: calls 1200 +jackie001: calls 800 +*** TURN *** [Jh 5d 4h] [2h] +rapidrush: checks +jackie001: checks +borik52: bets 17480 and is all-in +fetchmeabeer is connected +fetchmeabeer has returned +rapidrush: calls 17480 +jackie001: folds +*** RIVER *** [Jh 5d 4h 2h] [9d] +*** SHOW DOWN *** +rapidrush: shows [Th 6h] (a flush, Jack high) +borik52: shows [Qc Kh] (high card King) +rapidrush collected 41560 from pot +*** SUMMARY *** +Total pot 41560 | Rake 0 +Board [Jh 5d 4h 2h 9d] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: borik52 showed [Qc Kh] and lost with high card King +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 (button) folded before Flop (didn't bet) +Seat 6: rapidrush (small blind) showed [Th 6h] and won (41560) with a flush, Jack high +Seat 7: Jumping (big blind) folded before Flop +Seat 8: jackie001 folded on the Turn +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638297094: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:27:44 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: dirk2340 (25045 in chips) +Seat 3: fetchmeabeer (16939 in chips) +Seat 4: markd7 (24450 in chips) +Seat 6: rapidrush (77752 in chips) +Seat 7: Jumping (13220 in chips) +Seat 8: jackie001 (29357 in chips) +Seat 9: s0rrow (26696 in chips) +dirk2340: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +Jumping: posts small blind 300 +jackie001: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [9h Ts] +s0rrow: folds +dirk2340: folds +fetchmeabeer: raises 1200 to 1800 +markd7: folds +rapidrush: folds +Jumping: folds +jackie001: folds +fetchmeabeer collected 1850 from pot +fetchmeabeer: doesn't show hand +*** SUMMARY *** +Total pot 1850 | Rake 0 +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 3: fetchmeabeer collected (1850) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 6: rapidrush (button) folded before Flop (didn't bet) +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) folded before Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638300004: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:28:09 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 1: dirk2340 (24995 in chips) +Seat 3: fetchmeabeer (18139 in chips) +Seat 4: markd7 (24400 in chips) +Seat 6: rapidrush (77702 in chips) +Seat 7: Jumping (12870 in chips) +Seat 8: jackie001 (28707 in chips) +Seat 9: s0rrow (26646 in chips) +dirk2340: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +jackie001: posts small blind 300 +s0rrow: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Ts 7d] +dirk2340: folds +fetchmeabeer: folds +sanfe68 is connected +darbo1 is connected +markd7: folds +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow collected 950 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 950 | Rake 0 +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping (button) folded before Flop (didn't bet) +Seat 8: jackie001 (small blind) folded before Flop +Seat 9: s0rrow (big blind) collected (950) + + + +PokerStars Game #12638303127: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:28:37 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 1: dirk2340 (24945 in chips) +Seat 2: sanfe68 (18240 in chips) is sitting out +Seat 3: fetchmeabeer (18089 in chips) +Seat 4: markd7 (24350 in chips) +Seat 5: darbo1 (13935 in chips) +Seat 6: rapidrush (77652 in chips) +Seat 7: Jumping (12820 in chips) +Seat 8: jackie001 (28357 in chips) +Seat 9: s0rrow (27246 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +s0rrow: posts small blind 300 +dirk2340: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Kh 2s] +sanfe68: folds +fetchmeabeer: folds +markd7: calls 600 +darbo1: calls 600 +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: calls 300 +dirk2340: checks +*** FLOP *** [4d 7d Td] +s0rrow: checks +dirk2340: checks +markd7: bets 1200 +darbo1: raises 2400 to 3600 +s0rrow: folds +dirk2340: folds +markd7: calls 2400 +*** TURN *** [4d 7d Td] [4s] +markd7: bets 3600 +darbo1: calls 3600 +*** RIVER *** [4d 7d Td 4s] [3d] +markd7: checks +darbo1: checks +*** SHOW DOWN *** +markd7: shows [9d 9s] (a flush, Ten high) +darbo1: mucks hand +markd7 collected 17250 from pot +*** SUMMARY *** +Total pot 17250 | Rake 0 +Board [4d 7d Td 4s 3d] +Seat 1: dirk2340 (big blind) folded on the Flop +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 showed [9d 9s] and won (17250) with a flush, Ten high +Seat 5: darbo1 mucked [Ts Js] +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) folded before Flop (didn't bet) +Seat 9: s0rrow (small blind) folded on the Flop + + + +PokerStars Game #12638310716: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:29:44 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 1: dirk2340 (24295 in chips) +Seat 2: sanfe68 (18190 in chips) is sitting out +Seat 3: fetchmeabeer (18039 in chips) +Seat 4: markd7 (33750 in chips) +Seat 5: darbo1 (6085 in chips) +Seat 6: rapidrush (77602 in chips) +Seat 7: Jumping (12770 in chips) +Seat 8: jackie001 (28307 in chips) +Seat 9: s0rrow (26596 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +dirk2340: posts small blind 300 +sanfe68: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [8c 4d] +fetchmeabeer: folds +markd7: folds +darbo1: raises 5435 to 6035 and is all-in +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: folds +dirk2340: folds +sanfe68: folds +darbo1 collected 1950 from pot +*** SUMMARY *** +Total pot 1950 | Rake 0 +Seat 1: dirk2340 (small blind) folded before Flop +Seat 2: sanfe68 (big blind) folded before Flop +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 collected (1950) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638315483: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:30:26 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: dirk2340 (23945 in chips) +Seat 2: sanfe68 (17540 in chips) is sitting out +Seat 3: fetchmeabeer (17989 in chips) +Seat 4: markd7 (33700 in chips) +Seat 5: darbo1 (7385 in chips) +Seat 6: rapidrush (77552 in chips) +Seat 7: Jumping (12720 in chips) +Seat 8: jackie001 (28257 in chips) +Seat 9: s0rrow (26546 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +sanfe68: posts small blind 300 +fetchmeabeer: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 9s] +markd7: folds +darbo1: folds +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: raises 1200 to 1800 +dirk2340: calls 1800 +sanfe68: folds +fetchmeabeer: folds +*** FLOP *** [Qh Th 2d] +s0rrow: checks +dirk2340: checks +*** TURN *** [Qh Th 2d] [9c] +s0rrow: bets 1800 +dirk2340: calls 1800 +*** RIVER *** [Qh Th 2d 9c] [Qs] +s0rrow: checks +dirk2340: checks +*** SHOW DOWN *** +s0rrow: shows [Jd 9s] (two pair, Queens and Nines) +dirk2340: mucks hand +s0rrow collected 8550 from pot +*** SUMMARY *** +Total pot 8550 | Rake 0 +Board [Qh Th 2d 9c Qs] +Seat 1: dirk2340 (button) mucked [6c 6s] +Seat 2: sanfe68 (small blind) folded before Flop +Seat 3: fetchmeabeer (big blind) folded before Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow showed [Jd 9s] and won (8550) with two pair, Queens and Nines + + + +PokerStars Game #12638321976: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:31:19 (ET) +Table '63858762 7' 9-max Seat #2 is the button +Seat 1: dirk2340 (20295 in chips) +Seat 2: sanfe68 (17190 in chips) is sitting out +Seat 3: fetchmeabeer (17339 in chips) +Seat 4: markd7 (33650 in chips) +Seat 5: darbo1 (7335 in chips) +Seat 6: rapidrush (77502 in chips) +Seat 7: Jumping (12670 in chips) +Seat 8: jackie001 (28207 in chips) +Seat 9: s0rrow (31446 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +fetchmeabeer: posts small blind 300 +markd7: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Jd Ah] +darbo1: folds +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: raises 1200 to 1800 +dirk2340: folds +sanfe68: folds +fetchmeabeer: folds +markd7: folds +s0rrow collected 1950 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 1950 | Rake 0 +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 (button) folded before Flop (didn't bet) +Seat 3: fetchmeabeer (small blind) folded before Flop +Seat 4: markd7 (big blind) folded before Flop +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow collected (1950) + + + +PokerStars Game #12638325497: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:31:51 (ET) +Table '63858762 7' 9-max Seat #3 is the button +Seat 1: dirk2340 (20245 in chips) +Seat 2: sanfe68 (17140 in chips) is sitting out +Seat 3: fetchmeabeer (16989 in chips) +Seat 4: markd7 (33000 in chips) +Seat 5: darbo1 (7285 in chips) +Seat 6: rapidrush (77452 in chips) +Seat 7: Jumping (12620 in chips) +Seat 8: jackie001 (28157 in chips) +Seat 9: s0rrow (32746 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +markd7: posts small blind 300 +darbo1: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [4d 5h] +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: folds +dirk2340: raises 1200 to 1800 +sanfe68: folds +fetchmeabeer: folds +markd7: folds +darbo1: calls 1200 +*** FLOP *** [4h 6h 3h] +darbo1: checks +dirk2340: bets 1800 +darbo1: calls 1800 +*** TURN *** [4h 6h 3h] [Kh] +darbo1: checks +dirk2340: checks +*** RIVER *** [4h 6h 3h Kh] [Kc] +darbo1: bets 3635 and is all-in +dirk2340: calls 3635 +*** SHOW DOWN *** +darbo1: shows [3c 3s] (a full house, Threes full of Kings) +dirk2340: shows [Qc Ah] (a flush, Ace high) +darbo1 collected 15220 from pot +*** SUMMARY *** +Total pot 15220 | Rake 0 +Board [4h 6h 3h Kh Kc] +Seat 1: dirk2340 showed [Qc Ah] and lost with a flush, Ace high +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: fetchmeabeer (button) folded before Flop (didn't bet) +Seat 4: markd7 (small blind) folded before Flop +Seat 5: darbo1 (big blind) showed [3c 3s] and won (15220) with a full house, Threes full of Kings +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638332709: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:32:51 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: dirk2340 (12960 in chips) +Seat 2: sanfe68 (17090 in chips) is sitting out +Seat 3: fetchmeabeer (16939 in chips) +Seat 4: markd7 (32650 in chips) +Seat 5: darbo1 (15220 in chips) +Seat 6: rapidrush (77402 in chips) +Seat 7: Jumping (12570 in chips) +Seat 8: jackie001 (28107 in chips) +Seat 9: s0rrow (32696 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +darbo1: posts small blind 300 +rapidrush: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Ks 5s] +Jumping: folds +jackie001: calls 600 +s0rrow: folds +dirk2340: folds +sanfe68: folds +fetchmeabeer: folds +markd7: folds +darbo1: calls 300 +rapidrush: checks +*** FLOP *** [5h 4s 9h] +darbo1: bets 600 +rapidrush: calls 600 +jackie001: calls 600 +*** TURN *** [5h 4s 9h] [5c] +darbo1: bets 600 +rapidrush: calls 600 +jackie001: calls 600 +*** RIVER *** [5h 4s 9h 5c] [7c] +darbo1: bets 1200 +rapidrush: calls 1200 +jackie001: folds +*** SHOW DOWN *** +darbo1: shows [Th Ah] (a pair of Fives) +rapidrush: shows [3c 6h] (a straight, Three to Seven) +rapidrush collected 8250 from pot +*** SUMMARY *** +Total pot 8250 | Rake 0 +Board [5h 4s 9h 5c 7c] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 (button) folded before Flop (didn't bet) +Seat 5: darbo1 (small blind) showed [Th Ah] and lost with a pair of Fives +Seat 6: rapidrush (big blind) showed [3c 6h] and won (8250) with a straight, Three to Seven +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded on the River +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638339172: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:33:46 (ET) +Table '63858762 7' 9-max Seat #5 is the button +Seat 1: dirk2340 (12910 in chips) +Seat 2: sanfe68 (17040 in chips) is sitting out +Seat 3: fetchmeabeer (16889 in chips) +Seat 4: markd7 (32600 in chips) +Seat 5: darbo1 (12170 in chips) +Seat 6: rapidrush (82602 in chips) +Seat 7: Jumping (12520 in chips) +Seat 8: jackie001 (26257 in chips) +Seat 9: s0rrow (32646 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +rapidrush: posts small blind 300 +Jumping: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Tc Jh] +jackie001: folds +s0rrow: folds +dirk2340: folds +sanfe68: folds +fetchmeabeer: raises 1200 to 1800 +markd7: calls 1800 +darbo1: folds +rapidrush: folds +Jumping: folds +*** FLOP *** [7h 4c Ac] +fetchmeabeer: bets 1800 +markd7: calls 1800 +*** TURN *** [7h 4c Ac] [Qh] +fetchmeabeer: checks +markd7: bets 3000 +fetchmeabeer: raises 10239 to 13239 and is all-in +markd7: folds +fetchmeabeer collected 14550 from pot +fetchmeabeer: doesn't show hand +*** SUMMARY *** +Total pot 14550 | Rake 0 +Board [7h 4c Ac Qh] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: fetchmeabeer collected (14550) +Seat 4: markd7 folded on the Turn +Seat 5: darbo1 (button) folded before Flop (didn't bet) +Seat 6: rapidrush (small blind) folded before Flop +Seat 7: Jumping (big blind) folded before Flop +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638349024: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:35:07 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: dirk2340 (12860 in chips) +Seat 2: sanfe68 (16990 in chips) is sitting out +Seat 3: fetchmeabeer (24789 in chips) +Seat 4: markd7 (25950 in chips) +Seat 5: darbo1 (12120 in chips) +Seat 6: rapidrush (82252 in chips) +Seat 7: Jumping (11870 in chips) +Seat 8: jackie001 (26207 in chips) +Seat 9: s0rrow (32596 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +Jumping: posts small blind 300 +jackie001: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [7h As] +markd7 said, "aj no good" +s0rrow: folds +dirk2340: calls 600 +sanfe68: folds +fetchmeabeer: folds +markd7: folds +darbo1: folds +rapidrush: folds +Jumping: folds +jackie001: checks +*** FLOP *** [3h 4h 2c] +jackie001: checks +markd7 said, "???" +dirk2340: bets 600 +jackie001: calls 600 +*** TURN *** [3h 4h 2c] [9d] +jackie001: bets 600 +dirk2340: calls 600 +*** RIVER *** [3h 4h 2c 9d] [4c] +jackie001: bets 600 +dirk2340: calls 600 +*** SHOW DOWN *** +jackie001: shows [6s 8c] (a pair of Fours) +dirk2340: shows [Ac Ts] (a pair of Fours - Ace kicker) +dirk2340 collected 5550 from pot +*** SUMMARY *** +Total pot 5550 | Rake 0 +Board [3h 4h 2c 9d 4c] +Seat 1: dirk2340 showed [Ac Ts] and won (5550) with a pair of Fours +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush (button) folded before Flop (didn't bet) +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) showed [6s 8c] and lost with a pair of Fours +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638353853: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:35:47 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 1: dirk2340 (15960 in chips) +Seat 2: sanfe68 (16940 in chips) is sitting out +Seat 3: fetchmeabeer (24739 in chips) +Seat 4: markd7 (25900 in chips) +Seat 5: darbo1 (12070 in chips) +Seat 6: rapidrush (82202 in chips) +Seat 7: Jumping (11520 in chips) +Seat 8: jackie001 (23757 in chips) +Seat 9: s0rrow (32546 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +jackie001: posts small blind 300 +s0rrow: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [8d 3d] +dirk2340: folds +sanfe68: folds +fetchmeabeer: folds +markd7: calls 600 +darbo1: folds +rapidrush: calls 600 +Jumping: raises 1200 to 1800 +jackie001: folds +s0rrow: folds +markd7: folds +rapidrush: calls 1200 +*** FLOP *** [6h 7c Qh] +rapidrush: checks +Jumping: bets 1800 +rapidrush: folds +Jumping collected 5550 from pot +*** SUMMARY *** +Total pot 5550 | Rake 0 +Board [6h 7c Qh] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush folded on the Flop +Seat 7: Jumping (button) collected (5550) +Seat 8: jackie001 (small blind) folded before Flop +Seat 9: s0rrow (big blind) folded before Flop + + + +PokerStars Game #12638359284: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:36:33 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 1: dirk2340 (15910 in chips) +Seat 2: sanfe68 (16890 in chips) is sitting out +Seat 3: fetchmeabeer (24689 in chips) +Seat 4: markd7 (25250 in chips) +Seat 5: darbo1 (12020 in chips) +Seat 6: rapidrush (80352 in chips) +Seat 7: Jumping (15220 in chips) +Seat 8: jackie001 (23407 in chips) +Seat 9: s0rrow (31896 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +s0rrow: posts small blind 300 +dirk2340: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 5s] +sanfe68: folds +fetchmeabeer: folds +markd7: calls 600 +darbo1: raises 1200 to 1800 +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: folds +dirk2340: folds +markd7: calls 1200 +*** FLOP *** [7s Kc Qs] +markd7: checks +darbo1: bets 1800 +markd7: calls 1800 +*** TURN *** [7s Kc Qs] [4c] +markd7: checks +darbo1: bets 3600 +markd7: calls 3600 +*** RIVER *** [7s Kc Qs 4c] [2h] +markd7: checks +darbo1: bets 4770 and is all-in +markd7: folds +darbo1 collected 15750 from pot +sanfe68 has returned +*** SUMMARY *** +Total pot 15750 | Rake 0 +Board [7s Kc Qs 4c 2h] +Seat 1: dirk2340 (big blind) folded before Flop +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 folded on the River +Seat 5: darbo1 collected (15750) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) folded before Flop (didn't bet) +Seat 9: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12638365374: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:37:23 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 1: dirk2340 (15260 in chips) +Seat 2: sanfe68 (16840 in chips) +Seat 3: fetchmeabeer (24639 in chips) +Seat 4: markd7 (18000 in chips) +Seat 5: darbo1 (20520 in chips) +Seat 6: rapidrush (80302 in chips) +Seat 7: Jumping (15170 in chips) +Seat 8: jackie001 (23357 in chips) +Seat 9: s0rrow (31546 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +dirk2340: posts small blind 300 +sanfe68: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [3c 2c] +fetchmeabeer: folds +markd7: calls 600 +darbo1: calls 600 +rapidrush: calls 600 +Jumping: folds +jackie001: folds +s0rrow: folds +dirk2340: calls 300 +sanfe68: checks +*** FLOP *** [4h Ah 4s] +dirk2340: checks +sanfe68: checks +markd7: bets 1800 +darbo1: folds +rapidrush: calls 1800 +dirk2340: folds +sanfe68: folds +*** TURN *** [4h Ah 4s] [Qh] +markd7: checks +rapidrush: checks +*** RIVER *** [4h Ah 4s Qh] [Tc] +markd7: bets 1200 +rapidrush: calls 1200 +*** SHOW DOWN *** +markd7: shows [As Jd] (two pair, Aces and Fours) +rapidrush: shows [8c Ac] (two pair, Aces and Fours) +markd7 collected 4725 from pot +rapidrush collected 4725 from pot +*** SUMMARY *** +Total pot 9450 | Rake 0 +Board [4h Ah 4s Qh Tc] +Seat 1: dirk2340 (small blind) folded on the Flop +Seat 2: sanfe68 (big blind) folded on the Flop +Seat 3: fetchmeabeer folded before Flop (didn't bet) +Seat 4: markd7 showed [As Jd] and won (4725) with two pair, Aces and Fours +Seat 5: darbo1 folded on the Flop +Seat 6: rapidrush showed [8c Ac] and won (4725) with two pair, Aces and Fours +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638370972: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:38:10 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: dirk2340 (14610 in chips) +Seat 2: sanfe68 (16190 in chips) +Seat 3: fetchmeabeer (24589 in chips) +Seat 4: markd7 (19075 in chips) +Seat 5: darbo1 (19870 in chips) +Seat 6: rapidrush (81377 in chips) +Seat 7: Jumping (15120 in chips) +Seat 8: jackie001 (23307 in chips) +Seat 9: s0rrow (31496 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +sanfe68: posts small blind 300 +fetchmeabeer: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Th 4d] +markd7: calls 600 +darbo1: calls 600 +rapidrush: folds +Jumping: folds +jackie001: folds +s0rrow: folds +dirk2340: folds +sanfe68: folds +fetchmeabeer: checks +*** FLOP *** [Ts 9d 7c] +fetchmeabeer: checks +markd7: bets 1200 +darbo1: calls 1200 +fetchmeabeer: calls 1200 +*** TURN *** [Ts 9d 7c] [2s] +fetchmeabeer: checks +markd7: bets 4200 +darbo1: folds +fetchmeabeer: calls 4200 +*** RIVER *** [Ts 9d 7c 2s] [5s] +fetchmeabeer: checks +markd7: bets 5400 +fetchmeabeer: folds +markd7 collected 14550 from pot +markd7: doesn't show hand +*** SUMMARY *** +Total pot 14550 | Rake 0 +Board [Ts 9d 7c 2s 5s] +Seat 1: dirk2340 (button) folded before Flop (didn't bet) +Seat 2: sanfe68 (small blind) folded before Flop +Seat 3: fetchmeabeer (big blind) folded on the River +Seat 4: markd7 collected (14550) +Seat 5: darbo1 folded on the Turn +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638377503: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:39:04 (ET) +Table '63858762 7' 9-max Seat #2 is the button +Seat 1: dirk2340 (14560 in chips) +Seat 2: sanfe68 (15840 in chips) +Seat 3: fetchmeabeer (18539 in chips) +Seat 4: markd7 (27575 in chips) +Seat 5: darbo1 (18020 in chips) +Seat 6: rapidrush (81327 in chips) +Seat 7: Jumping (15070 in chips) +Seat 8: jackie001 (23257 in chips) +Seat 9: s0rrow (31446 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +fetchmeabeer: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +fetchmeabeer: posts small blind 300 +markd7: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [8d 5d] +darbo1: calls 600 +rapidrush: folds +Jumping: folds +jackie001: raises 600 to 1200 +s0rrow: folds +dirk2340: folds +sanfe68: calls 1200 +fetchmeabeer: raises 17289 to 18489 and is all-in +markd7: folds +darbo1: folds +jackie001: calls 17289 +sanfe68: folds +*** FLOP *** [5c 9s 4c] +*** TURN *** [5c 9s 4c] [6h] +fetchmeabeer said, "lmao" +*** RIVER *** [5c 9s 4c 6h] [2d] +*** SHOW DOWN *** +fetchmeabeer: shows [Ac Kh] (high card Ace) +jackie001: shows [6d 6s] (three of a kind, Sixes) +jackie001 collected 39828 from pot +*** SUMMARY *** +Total pot 39828 | Rake 0 +Board [5c 9s 4c 6h 2d] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 (button) folded before Flop +Seat 3: fetchmeabeer (small blind) showed [Ac Kh] and lost with high card Ace +Seat 4: markd7 (big blind) folded before Flop +Seat 5: darbo1 folded before Flop +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [6d 6s] and won (39828) with three of a kind, Sixes +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638382436: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:39:44 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: dirk2340 (14510 in chips) +Seat 2: sanfe68 (14590 in chips) +Seat 4: markd7 (26925 in chips) +Seat 5: darbo1 (17370 in chips) +Seat 6: rapidrush (81277 in chips) +Seat 7: Jumping (15020 in chips) +Seat 8: jackie001 (44546 in chips) +Seat 9: s0rrow (31396 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +darbo1: posts small blind 300 +rapidrush: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Th Js] +Jumping: folds +jackie001: folds +themexican24 is connected +s0rrow: calls 600 +dirk2340: calls 600 +sanfe68: folds +markd7: folds +darbo1: calls 300 +rapidrush: checks +*** FLOP *** [Ts 8s Tc] +darbo1: bets 600 +rapidrush: folds +s0rrow: calls 600 +dirk2340: folds +*** TURN *** [Ts 8s Tc] [9h] +darbo1: bets 600 +s0rrow: raises 1200 to 1800 +darbo1: calls 1200 +*** RIVER *** [Ts 8s Tc 9h] [8d] +darbo1: checks +s0rrow: bets 2400 +darbo1: folds +s0rrow collected 7600 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 7600 | Rake 0 +Board [Ts 8s Tc 9h 8d] +Seat 1: dirk2340 folded on the Flop +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 4: markd7 (button) folded before Flop (didn't bet) +Seat 5: darbo1 (small blind) folded on the River +Seat 6: rapidrush (big blind) folded on the Flop +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow collected (7600) + + + +PokerStars Game #12638389810: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:40:45 (ET) +Table '63858762 7' 9-max Seat #5 is the button +Seat 1: dirk2340 (13860 in chips) +Seat 2: sanfe68 (14540 in chips) +Seat 3: themexican24 (5151 in chips) +Seat 4: markd7 (26875 in chips) +Seat 5: darbo1 (14320 in chips) +Seat 6: rapidrush (80627 in chips) +Seat 7: Jumping (14970 in chips) +Seat 8: jackie001 (44496 in chips) +Seat 9: s0rrow (35946 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +themexican24: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +rapidrush: posts small blind 300 +Jumping: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 2s] +jackie001: calls 600 +s0rrow: folds +dirk2340: calls 600 +sanfe68: folds +themexican24: folds +markd7: folds +darbo1: calls 600 +rapidrush: calls 300 +Jumping: checks +*** FLOP *** [2c 6s 7s] +rapidrush: checks +Jumping: checks +jackie001: bets 600 +dirk2340: calls 600 +darbo1: calls 600 +rapidrush: folds +Jumping: folds +*** TURN *** [2c 6s 7s] [9s] +jackie001: bets 2400 +darbo1 is connected +dirk2340: folds +darbo1: folds +jackie001 collected 5250 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 5250 | Rake 0 +Board [2c 6s 7s 9s] +Seat 1: dirk2340 folded on the Turn +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: themexican24 folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 (button) folded on the Turn +Seat 6: rapidrush (small blind) folded on the Flop +Seat 7: Jumping (big blind) folded on the Flop +Seat 8: jackie001 collected (5250) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638397947: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level IX (300/600) - 2007/10/15 - 07:41:53 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: dirk2340 (12610 in chips) +Seat 2: sanfe68 (14490 in chips) +Seat 3: themexican24 (5101 in chips) +Seat 4: markd7 (26825 in chips) +Seat 5: darbo1 (13070 in chips) +Seat 6: rapidrush (79977 in chips) +Seat 7: Jumping (14320 in chips) +Seat 8: jackie001 (48496 in chips) +Seat 9: s0rrow (35896 in chips) +dirk2340: posts the ante 50 +sanfe68: posts the ante 50 +themexican24: posts the ante 50 +markd7: posts the ante 50 +darbo1: posts the ante 50 +rapidrush: posts the ante 50 +Jumping: posts the ante 50 +jackie001: posts the ante 50 +s0rrow: posts the ante 50 +Jumping: posts small blind 300 +jackie001: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [3s Ad] +s0rrow: folds +dirk2340: calls 600 +sanfe68: raises 600 to 1200 +themexican24: calls 1200 +markd7: folds +darbo1: folds +rapidrush: calls 1200 +Jumping: folds +jackie001: calls 600 +dirk2340: calls 600 +*** FLOP *** [5d 3d 9c] +jackie001: bets 1200 +dirk2340: folds +sanfe68: calls 1200 +themexican24: folds +rapidrush: calls 1200 +*** TURN *** [5d 3d 9c] [Ks] +jackie001: bets 1800 +sanfe68: calls 1800 +rapidrush: calls 1800 +*** RIVER *** [5d 3d 9c Ks] [7s] +jackie001: bets 600 +sanfe68: calls 600 +rapidrush: calls 600 +*** SHOW DOWN *** +jackie001: shows [Js 2s] (high card King) +sanfe68: shows [Qs Kc] (a pair of Kings) +rapidrush: mucks hand +sanfe68 collected 17550 from pot +*** SUMMARY *** +Total pot 17550 | Rake 0 +Board [5d 3d 9c Ks 7s] +Seat 1: dirk2340 folded on the Flop +Seat 2: sanfe68 showed [Qs Kc] and won (17550) with a pair of Kings +Seat 3: themexican24 folded on the Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush (button) mucked [9s As] +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) showed [Js 2s] and lost with high card King +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638407141: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:43:08 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 1: dirk2340 (11360 in chips) +Seat 2: sanfe68 (27190 in chips) +Seat 3: themexican24 (3851 in chips) +Seat 4: markd7 (26775 in chips) +Seat 5: darbo1 (13020 in chips) +Seat 6: rapidrush (75127 in chips) +Seat 7: Jumping (13970 in chips) +Seat 8: jackie001 (43646 in chips) +Seat 9: s0rrow (35846 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +themexican24: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +jackie001: posts small blind 400 +s0rrow: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Ks 6c] +dirk2340: folds +sanfe68: calls 800 +themexican24: folds +markd7: folds +darbo1: folds +rapidrush: calls 800 +Jumping: folds +jackie001: calls 400 +s0rrow: checks +*** FLOP *** [7s Ac 2d] +jackie001: checks +s0rrow: checks +sanfe68: checks +rapidrush: bets 1600 +jackie001: folds +s0rrow: folds +sanfe68: calls 1600 +*** TURN *** [7s Ac 2d] [Jh] +sanfe68: checks +rapidrush: checks +*** RIVER *** [7s Ac 2d Jh] [Qc] +sanfe68: checks +rapidrush: checks +*** SHOW DOWN *** +sanfe68: shows [Ah 9s] (a pair of Aces) +rapidrush: mucks hand +sanfe68 collected 7075 from pot +*** SUMMARY *** +Total pot 7075 | Rake 0 +Board [7s Ac 2d Jh Qc] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 showed [Ah 9s] and won (7075) with a pair of Aces +Seat 3: themexican24 folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush mucked [8c 9c] +Seat 7: Jumping (button) folded before Flop (didn't bet) +Seat 8: jackie001 (small blind) folded on the Flop +Seat 9: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #12638414498: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:44:08 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 1: dirk2340 (11285 in chips) +Seat 2: sanfe68 (31790 in chips) +Seat 3: themexican24 (3776 in chips) +Seat 4: markd7 (26700 in chips) +Seat 5: darbo1 (12945 in chips) +Seat 6: rapidrush (72652 in chips) +Seat 7: Jumping (13895 in chips) +Seat 8: jackie001 (42771 in chips) +Seat 9: s0rrow (34971 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +themexican24: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +s0rrow: posts small blind 400 +dirk2340: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 4h] +sanfe68: folds +themexican24: folds +markd7: folds +darbo1: folds +rapidrush: folds +Jumping: folds +jackie001: calls 800 +s0rrow: calls 400 +dirk2340: checks +*** FLOP *** [Ac Jh 2h] +s0rrow: checks +dirk2340: checks +jackie001: bets 2400 +s0rrow: folds +dirk2340: folds +jackie001 collected 3075 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 3075 | Rake 0 +Board [Ac Jh 2h] +Seat 1: dirk2340 (big blind) folded on the Flop +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 3: themexican24 folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) collected (3075) +Seat 9: s0rrow (small blind) folded on the Flop + + + +PokerStars Game #12638418893: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:44:44 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 1: dirk2340 (10410 in chips) +Seat 2: sanfe68 (31715 in chips) +Seat 3: themexican24 (3701 in chips) +Seat 4: markd7 (26625 in chips) +Seat 5: darbo1 (12870 in chips) +Seat 6: rapidrush (72577 in chips) +Seat 7: Jumping (13820 in chips) +Seat 8: jackie001 (44971 in chips) +Seat 9: s0rrow (34096 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +themexican24: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +dirk2340: posts small blind 400 +sanfe68: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [2h 6d] +themexican24: folds +markd7: folds +darbo1: raises 800 to 1600 +rapidrush: calls 1600 +Jumping: folds +jackie001: folds +s0rrow: folds +dirk2340: calls 1200 +sanfe68: calls 800 +*** FLOP *** [7c 4s 5h] +dirk2340: checks +sanfe68: checks +darbo1: bets 2400 +rapidrush: calls 2400 +dirk2340: folds +sanfe68: folds +*** TURN *** [7c 4s 5h] [Js] +darbo1: checks +rapidrush: checks +*** RIVER *** [7c 4s 5h Js] [3d] +darbo1: checks +rapidrush: checks +*** SHOW DOWN *** +darbo1: shows [Kc 5c] (a pair of Fives) +rapidrush: mucks hand +darbo1 collected 11875 from pot +*** SUMMARY *** +Total pot 11875 | Rake 0 +Board [7c 4s 5h Js 3d] +Seat 1: dirk2340 (small blind) folded on the Flop +Seat 2: sanfe68 (big blind) folded on the Flop +Seat 3: themexican24 folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 showed [Kc 5c] and won (11875) with a pair of Fives +Seat 6: rapidrush mucked [8d Ad] +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop (didn't bet) +Seat 9: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638425171: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:45:35 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: dirk2340 (8735 in chips) +Seat 2: sanfe68 (30040 in chips) +Seat 3: themexican24 (3626 in chips) +Seat 4: markd7 (26550 in chips) +Seat 5: darbo1 (20670 in chips) +Seat 6: rapidrush (68502 in chips) +Seat 7: Jumping (13745 in chips) +Seat 8: jackie001 (44896 in chips) +Seat 9: s0rrow (34021 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +themexican24: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +sanfe68: posts small blind 400 +themexican24: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Ac Kh] +markd7: folds +darbo1: folds +rapidrush: folds +Jumping: folds +jackie001: raises 800 to 1600 +s0rrow: calls 1600 +dirk2340: folds +sanfe68: folds +themexican24: folds +*** FLOP *** [3d Ah Qs] +jackie001: checks +s0rrow: bets 2400 +jackie001: calls 2400 +*** TURN *** [3d Ah Qs] [6d] +jackie001: checks +s0rrow: bets 1600 +jackie001: calls 1600 +*** RIVER *** [3d Ah Qs 6d] [Qh] +jackie001: checks +s0rrow: checks +*** SHOW DOWN *** +jackie001: shows [Ad Js] (two pair, Aces and Queens) +s0rrow: shows [Ac Kh] (two pair, Aces and Queens - King kicker) +s0rrow collected 13075 from pot +*** SUMMARY *** +Total pot 13075 | Rake 0 +Board [3d Ah Qs 6d Qh] +Seat 1: dirk2340 (button) folded before Flop (didn't bet) +Seat 2: sanfe68 (small blind) folded before Flop +Seat 3: themexican24 (big blind) folded before Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [Ad Js] and lost with two pair, Aces and Queens +Seat 9: s0rrow showed [Ac Kh] and won (13075) with two pair, Aces and Queens + + + +PokerStars Game #12638430875: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:46:21 (ET) +Table '63858762 7' 9-max Seat #2 is the button +Seat 1: dirk2340 (8660 in chips) +Seat 2: sanfe68 (29565 in chips) +Seat 3: themexican24 (2751 in chips) +Seat 4: markd7 (26475 in chips) +Seat 5: darbo1 (20595 in chips) +Seat 6: rapidrush (68427 in chips) +Seat 7: Jumping (13670 in chips) +Seat 8: jackie001 (39221 in chips) +Seat 9: s0rrow (41421 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +themexican24: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +themexican24: posts small blind 400 +markd7: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 8d] +darbo1: folds +rapidrush: folds +Jumping: folds +jackie001: calls 800 +s0rrow: folds +dirk2340: folds +sanfe68: folds +themexican24: calls 400 +markd7: checks +*** FLOP *** [6s 9c 2c] +themexican24: bets 1876 and is all-in +markd7: calls 1876 +jackie001: calls 1876 +*** TURN *** [6s 9c 2c] [Ad] +markd7: checks +jackie001: checks +*** RIVER *** [6s 9c 2c Ad] [6h] +markd7: checks +jackie001: bets 36470 and is all-in +markd7: folds +*** SHOW DOWN *** +jackie001: shows [7c 6c] (three of a kind, Sixes) +themexican24: shows [5d Jd] (a pair of Sixes) +themexican24 is sitting out +jackie001 collected 8703 from pot +*** SUMMARY *** +Total pot 8703 | Rake 0 +Board [6s 9c 2c Ad 6h] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 (button) folded before Flop (didn't bet) +Seat 3: themexican24 (small blind) showed [5d Jd] and lost with a pair of Sixes +Seat 4: markd7 (big blind) folded on the River +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [7c 6c] and won (8703) with three of a kind, Sixes +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638437831: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:47:17 (ET) +Table '63858762 7' 9-max Seat #4 is the button +Seat 1: dirk2340 (8585 in chips) +Seat 2: sanfe68 (29490 in chips) +Seat 4: markd7 (23724 in chips) +Seat 5: darbo1 (20520 in chips) +Seat 6: rapidrush (68352 in chips) +Seat 7: Jumping (13595 in chips) +Seat 8: jackie001 (45173 in chips) +Seat 9: s0rrow (41346 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +darbo1: posts small blind 400 +rapidrush: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [9s 4d] +Jumping: folds +jackie001: calls 800 +s0rrow: folds +dirk2340: folds +sanfe68: folds +markd7: folds +darbo1: calls 400 +rapidrush: checks +*** FLOP *** [8c 3s 5h] +darbo1: checks +rapidrush: bets 800 +jackie001: raises 800 to 1600 +darbo1: folds +rapidrush: calls 800 +*** TURN *** [8c 3s 5h] [Tc] +rapidrush: checks +jackie001: bets 800 +rapidrush: calls 800 +*** RIVER *** [8c 3s 5h Tc] [Ks] +rapidrush: checks +jackie001: checks +*** SHOW DOWN *** +rapidrush: shows [9h 5s] (a pair of Fives) +jackie001: shows [Qd 8h] (a pair of Eights) +jackie001 collected 7800 from pot +*** SUMMARY *** +Total pot 7800 | Rake 0 +Board [8c 3s 5h Tc Ks] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 4: markd7 (button) folded before Flop (didn't bet) +Seat 5: darbo1 (small blind) folded on the Flop +Seat 6: rapidrush (big blind) showed [9h 5s] and lost with a pair of Fives +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 showed [Qd 8h] and won (7800) with a pair of Eights +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638443178: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:48:01 (ET) +Table '63858762 7' 9-max Seat #5 is the button +Seat 1: dirk2340 (8510 in chips) +Seat 2: sanfe68 (29415 in chips) +Seat 4: markd7 (23649 in chips) +Seat 5: darbo1 (19645 in chips) +Seat 6: rapidrush (65077 in chips) +Seat 7: Jumping (13520 in chips) +Seat 8: jackie001 (49698 in chips) +Seat 9: s0rrow (41271 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +rapidrush: posts small blind 400 +Jumping: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [6h Ad] +jackie001: calls 800 +s0rrow: folds +dirk2340: calls 800 +sanfe68: folds +markd7: folds +darbo1: calls 800 +rapidrush: calls 400 +Jumping: checks +*** FLOP *** [9c 7c Qs] +rapidrush: checks +Jumping: bets 800 +jackie001: folds +dirk2340: calls 800 +darbo1: calls 800 +rapidrush: calls 800 +*** TURN *** [9c 7c Qs] [2c] +rapidrush: checks +Jumping: checks +dirk2340: checks +darbo1: bets 2400 +rapidrush: folds +Jumping: folds +dirk2340: folds +darbo1 collected 7800 from pot +*** SUMMARY *** +Total pot 7800 | Rake 0 +Board [9c 7c Qs 2c] +Seat 1: dirk2340 folded on the Turn +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 (button) collected (7800) +Seat 6: rapidrush (small blind) folded on the Turn +Seat 7: Jumping (big blind) folded on the Turn +Seat 8: jackie001 folded on the Flop +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638450215: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:48:57 (ET) +Table '63858762 7' 9-max Seat #6 is the button +Seat 1: dirk2340 (6835 in chips) +Seat 2: sanfe68 (29340 in chips) +Seat 4: markd7 (23574 in chips) +Seat 5: darbo1 (25770 in chips) +Seat 6: rapidrush (63402 in chips) +Seat 7: Jumping (11845 in chips) +Seat 8: jackie001 (48823 in chips) +Seat 9: s0rrow (41196 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +Jumping: posts small blind 400 +jackie001: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [6d 8h] +s0rrow: folds +dirk2340: folds +sanfe68: calls 800 +markd7: folds +darbo1: folds +rapidrush: calls 800 +Jumping: folds +jackie001: raises 800 to 1600 +sanfe68: folds +rapidrush: calls 800 +*** FLOP *** [8s 6s 9c] +jackie001: bets 2400 +rapidrush: calls 2400 +*** TURN *** [8s 6s 9c] [6h] +jackie001: bets 800 +rapidrush: calls 800 +*** RIVER *** [8s 6s 9c 6h] [Ac] +jackie001: bets 5600 +rapidrush: folds +jackie001 collected 11400 from pot +jackie001: doesn't show hand +*** SUMMARY *** +Total pot 11400 | Rake 0 +Board [8s 6s 9c 6h Ac] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 folded before Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush (button) folded on the River +Seat 7: Jumping (small blind) folded before Flop +Seat 8: jackie001 (big blind) collected (11400) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638455125: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:49:37 (ET) +Table '63858762 7' 9-max Seat #7 is the button +Seat 1: dirk2340 (6760 in chips) +Seat 2: sanfe68 (28465 in chips) +Seat 4: markd7 (23499 in chips) +Seat 5: darbo1 (25695 in chips) +Seat 6: rapidrush (58527 in chips) +Seat 7: Jumping (11370 in chips) +Seat 8: jackie001 (55348 in chips) +Seat 9: s0rrow (41121 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +jackie001: posts small blind 400 +s0rrow: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Ah Kh] +dirk2340: folds +sanfe68: folds +markd7: folds +darbo1: folds +rapidrush: calls 800 +Jumping: folds +jackie001: calls 400 +s0rrow: checks +*** FLOP *** [9s Qs 3h] +jackie001: bets 800 +s0rrow: folds +rapidrush: calls 800 +*** TURN *** [9s Qs 3h] [Ac] +jackie001: bets 800 +rapidrush: calls 800 +*** RIVER *** [9s Qs 3h Ac] [6c] +jackie001: checks +rapidrush: checks +*** SHOW DOWN *** +jackie001: shows [Jd 7h] (high card Ace) +rapidrush: shows [9d 7s] (a pair of Nines) +rapidrush collected 6200 from pot +*** SUMMARY *** +Total pot 6200 | Rake 0 +Board [9s Qs 3h Ac 6c] +Seat 1: dirk2340 folded before Flop (didn't bet) +Seat 2: sanfe68 folded before Flop (didn't bet) +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush showed [9d 7s] and won (6200) with a pair of Nines +Seat 7: Jumping (button) folded before Flop (didn't bet) +Seat 8: jackie001 (small blind) showed [Jd 7h] and lost with high card Ace +Seat 9: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #12638464102: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:50:50 (ET) +Table '63858762 7' 9-max Seat #8 is the button +Seat 1: dirk2340 (6685 in chips) +Seat 2: sanfe68 (28390 in chips) +Seat 4: markd7 (23424 in chips) +Seat 5: darbo1 (25620 in chips) +Seat 6: rapidrush (62252 in chips) +Seat 7: Jumping (11295 in chips) +Seat 8: jackie001 (52873 in chips) +Seat 9: s0rrow (40246 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +s0rrow: posts small blind 400 +dirk2340: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [3s 7d] +sanfe68: calls 800 +markd7: folds +darbo1: folds +rapidrush: folds +Jumping: folds +jackie001: calls 800 +s0rrow: folds +dirk2340: checks +*** FLOP *** [2s 8c 3d] +dirk2340: checks +sanfe68: checks +jackie001: checks +*** TURN *** [2s 8c 3d] [9c] +dirk2340: checks +sanfe68: bets 2400 +jackie001: calls 2400 +dirk2340: folds +*** RIVER *** [2s 8c 3d 9c] [7c] +sanfe68: checks +jackie001: bets 4000 +sanfe68: calls 4000 +*** SHOW DOWN *** +jackie001: shows [5c Kc] (a flush, King high) +sanfe68: mucks hand +jackie001 collected 16200 from pot +*** SUMMARY *** +Total pot 16200 | Rake 0 +Board [2s 8c 3d 9c 7c] +Seat 1: dirk2340 (big blind) folded on the Turn +Seat 2: sanfe68 mucked [Th 7h] +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 folded before Flop (didn't bet) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 (button) showed [5c Kc] and won (16200) with a flush, King high +Seat 9: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12638469404: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:51:33 (ET) +Table '63858762 7' 9-max Seat #9 is the button +Seat 1: dirk2340 (5810 in chips) +Seat 2: sanfe68 (21115 in chips) +Seat 4: markd7 (23349 in chips) +Seat 5: darbo1 (25545 in chips) +Seat 6: rapidrush (62177 in chips) +Seat 7: Jumping (11220 in chips) +Seat 8: jackie001 (61798 in chips) +Seat 9: s0rrow (39771 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +dirk2340: posts small blind 400 +sanfe68: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [8d 9h] +markd7: folds +darbo1: calls 800 +rapidrush: folds +Jumping: folds +jackie001: calls 800 +s0rrow: folds +dirk2340: calls 400 +sanfe68: raises 2400 to 3200 +darbo1: calls 2400 +jackie001: folds +dirk2340: folds +*** FLOP *** [Qd 9d Qs] +sanfe68: bets 3200 +darbo1: raises 3200 to 6400 +sanfe68: folds +darbo1 collected 15000 from pot +darbo1: shows [2s 2c] (two pair, Queens and Deuces) +*** SUMMARY *** +Total pot 15000 | Rake 0 +Board [Qd 9d Qs] +Seat 1: dirk2340 (small blind) folded before Flop +Seat 2: sanfe68 (big blind) folded on the Flop +Seat 4: markd7 folded before Flop (didn't bet) +Seat 5: darbo1 collected (15000) +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded before Flop +Seat 9: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638474894: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:52:17 (ET) +Table '63858762 7' 9-max Seat #1 is the button +Seat 1: dirk2340 (4935 in chips) +Seat 2: sanfe68 (14640 in chips) +Seat 4: markd7 (23274 in chips) +Seat 5: darbo1 (34070 in chips) +Seat 6: rapidrush (62102 in chips) +Seat 7: Jumping (11145 in chips) +Seat 8: jackie001 (60923 in chips) +Seat 9: s0rrow (39696 in chips) +dirk2340: posts the ante 75 +sanfe68: posts the ante 75 +markd7: posts the ante 75 +darbo1: posts the ante 75 +rapidrush: posts the ante 75 +Jumping: posts the ante 75 +jackie001: posts the ante 75 +s0rrow: posts the ante 75 +sanfe68: posts small blind 400 +markd7: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Qc Th] +darbo1: calls 800 +rapidrush: folds +Jumping: folds +jackie001: calls 800 +s0rrow: calls 800 +dirk2340: calls 800 +sanfe68: calls 400 +markd7: checks +*** FLOP *** [Ts 6c 7c] +sanfe68: checks +markd7: checks +darbo1: checks +jackie001: bets 800 +s0rrow: calls 800 +dirk2340: calls 800 +sanfe68: calls 800 +markd7: calls 800 +darbo1: calls 800 +*** TURN *** [Ts 6c 7c] [7s] +sanfe68: checks +markd7: bets 2400 +darbo1: folds +jackie001: folds +s0rrow: calls 2400 +dirk2340: raises 860 to 3260 and is all-in +sanfe68: raises 9705 to 12965 and is all-in +markd7: folds +s0rrow: folds +*** RIVER *** [Ts 6c 7c 7s] [2d] +*** SHOW DOWN *** +sanfe68: shows [7h Kd] (three of a kind, Sevens) +dirk2340: shows [8s Js] (a pair of Sevens) +sanfe68 collected 21520 from pot +*** SUMMARY *** +Total pot 21520 | Rake 0 +Board [Ts 6c 7c 7s 2d] +Seat 1: dirk2340 (button) showed [8s Js] and lost with a pair of Sevens +Seat 2: sanfe68 (small blind) showed [7h Kd] and won (21520) with three of a kind, Sevens +Seat 4: markd7 (big blind) folded on the Turn +Seat 5: darbo1 folded on the Turn +Seat 6: rapidrush folded before Flop (didn't bet) +Seat 7: Jumping folded before Flop (didn't bet) +Seat 8: jackie001 folded on the Turn +Seat 9: s0rrow folded on the Turn + + + +PokerStars Game #12638494838: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:54:58 (ET) +Table '63858762 10' 9-max Seat #3 is the button +Seat 1: jt2007 (7751 in chips) +Seat 2: yapa2yapa (27585 in chips) +Seat 3: patrick sph (27420 in chips) +Seat 4: KingShades (90536 in chips) +Seat 5: ethegreat1 (48150 in chips) +Seat 6: Jumping (11070 in chips) +Seat 7: TRYINGHARD (19955 in chips) +Seat 8: s0rrow (35621 in chips) +Seat 9: HangingBalls (7261 in chips) +jt2007: posts the ante 75 +yapa2yapa: posts the ante 75 +patrick sph: posts the ante 75 +KingShades: posts the ante 75 +ethegreat1: posts the ante 75 +Jumping: posts the ante 75 +TRYINGHARD: posts the ante 75 +s0rrow: posts the ante 75 +HangingBalls: posts the ante 75 +KingShades: posts small blind 400 +ethegreat1: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Jc Jd] +Jumping: folds +TRYINGHARD: folds +s0rrow: raises 1600 to 2400 +HangingBalls: raises 4786 to 7186 and is all-in +jt2007: raises 490 to 7676 and is all-in +yapa2yapa: folds +patrick sph: folds +KingShades: folds +ethegreat1: folds +s0rrow: calls 5276 +*** FLOP *** [3c 5d 2h] +*** TURN *** [3c 5d 2h] [Ks] +*** RIVER *** [3c 5d 2h Ks] [6c] +*** SHOW DOWN *** +s0rrow: shows [Jc Jd] (a pair of Jacks) +jt2007: shows [Kd As] (a pair of Kings) +jt2007 collected 980 from side pot +HangingBalls: shows [9d 9h] (a pair of Nines) +HangingBalls is sitting out +jt2007 collected 23433 from main pot +*** SUMMARY *** +Total pot 24413 Main pot 23433. Side pot 980. | Rake 0 +Board [3c 5d 2h Ks 6c] +Seat 1: jt2007 showed [Kd As] and won (24413) with a pair of Kings +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph (button) folded before Flop (didn't bet) +Seat 4: KingShades (small blind) folded before Flop +Seat 5: ethegreat1 (big blind) folded before Flop +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: TRYINGHARD folded before Flop (didn't bet) +Seat 8: s0rrow showed [Jc Jd] and lost with a pair of Jacks +Seat 9: HangingBalls showed [9d 9h] and lost with a pair of Nines + + + +PokerStars Game #12638501056: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:55:48 (ET) +Table '63858762 10' 9-max Seat #4 is the button +Seat 1: jt2007 (24413 in chips) +Seat 2: yapa2yapa (27510 in chips) +Seat 3: patrick sph (27345 in chips) +Seat 4: KingShades (90061 in chips) +Seat 5: ethegreat1 (47275 in chips) +Seat 6: Jumping (10995 in chips) +Seat 7: TRYINGHARD (19880 in chips) +Seat 8: s0rrow (27870 in chips) +jt2007: posts the ante 75 +yapa2yapa: posts the ante 75 +patrick sph: posts the ante 75 +KingShades: posts the ante 75 +ethegreat1: posts the ante 75 +Jumping: posts the ante 75 +TRYINGHARD: posts the ante 75 +s0rrow: posts the ante 75 +ethegreat1: posts small blind 400 +Jumping: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 7s] +TRYINGHARD: folds +s0rrow: folds +jt2007: folds +yapa2yapa: folds +patrick sph: folds +KingShades: raises 1600 to 2400 +ethegreat1: calls 2000 +Jumping: folds +*** FLOP *** [6s Kh 2h] +ethegreat1: checks +KingShades: bets 1600 +ethegreat1: folds +KingShades collected 6200 from pot +KingShades: doesn't show hand +*** SUMMARY *** +Total pot 6200 | Rake 0 +Board [6s Kh 2h] +Seat 1: jt2007 folded before Flop (didn't bet) +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades (button) collected (6200) +Seat 5: ethegreat1 (small blind) folded on the Flop +Seat 6: Jumping (big blind) folded before Flop +Seat 7: TRYINGHARD folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638507373: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:56:39 (ET) +Table '63858762 10' 9-max Seat #5 is the button +Seat 1: jt2007 (24338 in chips) +Seat 2: yapa2yapa (27435 in chips) +Seat 3: patrick sph (27270 in chips) +Seat 4: KingShades (93786 in chips) +Seat 5: ethegreat1 (44800 in chips) +Seat 6: Jumping (10120 in chips) +Seat 7: TRYINGHARD (19805 in chips) +Seat 8: s0rrow (27795 in chips) +jt2007: posts the ante 75 +yapa2yapa: posts the ante 75 +patrick sph: posts the ante 75 +KingShades: posts the ante 75 +ethegreat1: posts the ante 75 +Jumping: posts the ante 75 +TRYINGHARD: posts the ante 75 +s0rrow: posts the ante 75 +Jumping: posts small blind 400 +TRYINGHARD: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [4d 2d] +s0rrow: folds +jt2007: folds +yapa2yapa: folds +patrick sph: folds +KingShades: raises 800 to 1600 +ethegreat1: folds +Jumping: folds +TRYINGHARD: folds +KingShades collected 2600 from pot +KingShades: doesn't show hand +*** SUMMARY *** +Total pot 2600 | Rake 0 +Seat 1: jt2007 folded before Flop (didn't bet) +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades collected (2600) +Seat 5: ethegreat1 (button) folded before Flop (didn't bet) +Seat 6: Jumping (small blind) folded before Flop +Seat 7: TRYINGHARD (big blind) folded before Flop +Seat 8: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12638511835: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level X (400/800) - 2007/10/15 - 07:57:14 (ET) +Table '63858762 10' 9-max Seat #6 is the button +Seat 1: jt2007 (24263 in chips) +Seat 2: yapa2yapa (27360 in chips) +Seat 3: patrick sph (27195 in chips) +Seat 4: KingShades (95511 in chips) +Seat 5: ethegreat1 (44725 in chips) +Seat 6: Jumping (9645 in chips) +Seat 7: TRYINGHARD (18930 in chips) +Seat 8: s0rrow (27720 in chips) +jt2007: posts the ante 75 +yapa2yapa: posts the ante 75 +patrick sph: posts the ante 75 +KingShades: posts the ante 75 +ethegreat1: posts the ante 75 +Jumping: posts the ante 75 +TRYINGHARD: posts the ante 75 +s0rrow: posts the ante 75 +TRYINGHARD: posts small blind 400 +s0rrow: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Td 5s] +jt2007: calls 800 +yapa2yapa: folds +patrick sph: folds +KingShades: calls 800 +ethegreat1: calls 800 +Jumping: folds +TRYINGHARD: calls 400 +s0rrow: checks +*** FLOP *** [6d 6h Qc] +TRYINGHARD: checks +s0rrow: checks +jt2007: checks +KingShades: checks +ethegreat1: checks +*** TURN *** [6d 6h Qc] [Jh] +TRYINGHARD: bets 1055 +s0rrow: folds +jt2007: calls 1055 +KingShades: folds +ethegreat1: folds +*** RIVER *** [6d 6h Qc Jh] [Ks] +TRYINGHARD: bets 3200 +jt2007: calls 3200 +*** SHOW DOWN *** +TRYINGHARD: shows [Kc Jc] (two pair, Kings and Jacks) +jt2007: shows [Jd Kh] (two pair, Kings and Jacks) +TRYINGHARD collected 6555 from pot +jt2007 collected 6555 from pot +*** SUMMARY *** +Total pot 13110 | Rake 0 +Board [6d 6h Qc Jh Ks] +Seat 1: jt2007 showed [Jd Kh] and won (6555) with two pair, Kings and Jacks +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades folded on the Turn +Seat 5: ethegreat1 folded on the Turn +Seat 6: Jumping (button) folded before Flop (didn't bet) +Seat 7: TRYINGHARD (small blind) showed [Kc Jc] and won (6555) with two pair, Kings and Jacks +Seat 8: s0rrow (big blind) folded on the Turn + + + +PokerStars Game #12638524995: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 07:58:58 (ET) +Table '63858762 10' 9-max Seat #7 is the button +Seat 1: jt2007 (25688 in chips) +Seat 2: yapa2yapa (27285 in chips) +Seat 3: patrick sph (27120 in chips) +Seat 4: KingShades (94636 in chips) +Seat 5: ethegreat1 (43850 in chips) +Seat 6: Jumping (9570 in chips) +Seat 7: TRYINGHARD (20355 in chips) +Seat 8: s0rrow (26845 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +TRYINGHARD: posts the ante 100 +s0rrow: posts the ante 100 +s0rrow: posts small blind 500 +jt2007: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 5s] +yapa2yapa: folds +patrick sph: folds +KingShades: raises 2000 to 3000 +ethegreat1: folds +Jumping: folds +TRYINGHARD: folds +s0rrow: folds +jt2007: folds +KingShades collected 3300 from pot +KingShades: doesn't show hand +*** SUMMARY *** +Total pot 3300 | Rake 0 +Seat 1: jt2007 (big blind) folded before Flop +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades collected (3300) +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: TRYINGHARD (button) folded before Flop (didn't bet) +Seat 8: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12638532044: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 07:59:54 (ET) +Table '63858762 10' 9-max Seat #8 is the button +Seat 1: jt2007 (24588 in chips) +Seat 2: yapa2yapa (27185 in chips) +Seat 3: patrick sph (27020 in chips) +Seat 4: KingShades (96836 in chips) +Seat 5: ethegreat1 (43750 in chips) +Seat 6: Jumping (9470 in chips) +Seat 7: TRYINGHARD (20255 in chips) +Seat 8: s0rrow (26245 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +TRYINGHARD: posts the ante 100 +s0rrow: posts the ante 100 +jt2007: posts small blind 500 +yapa2yapa: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [5h Qs] +patrick sph: folds +KingShades: folds +NoLuv420 is connected +ethegreat1: calls 1000 +Jumping: folds +TRYINGHARD: folds +s0rrow: folds +jt2007: calls 500 +yapa2yapa: checks +*** FLOP *** [Jh 5c 4s] +jt2007: checks +yapa2yapa: checks +ethegreat1: bets 3000 +jt2007: calls 3000 +yapa2yapa: calls 3000 +*** TURN *** [Jh 5c 4s] [7s] +jt2007: checks +yapa2yapa: checks +ethegreat1: bets 4000 +jt2007: calls 4000 +yapa2yapa: calls 4000 +*** RIVER *** [Jh 5c 4s 7s] [2s] +jt2007: checks +yapa2yapa: checks +ethegreat1: checks +*** SHOW DOWN *** +jt2007: shows [7c 6h] (a pair of Sevens) +yapa2yapa: shows [Ad Qd] (high card Ace) +ethegreat1: shows [Jc 9s] (a pair of Jacks) +ethegreat1 collected 24800 from pot +*** SUMMARY *** +Total pot 24800 | Rake 0 +Board [Jh 5c 4s 7s 2s] +Seat 1: jt2007 (small blind) showed [7c 6h] and lost with a pair of Sevens +Seat 2: yapa2yapa (big blind) showed [Ad Qd] and lost with high card Ace +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 showed [Jc 9s] and won (24800) with a pair of Jacks +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: TRYINGHARD folded before Flop (didn't bet) +Seat 8: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638549710: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:02:13 (ET) +Table '63858762 10' 9-max Seat #1 is the button +Seat 1: jt2007 (16488 in chips) +Seat 2: yapa2yapa (19085 in chips) +Seat 3: patrick sph (26920 in chips) +Seat 4: KingShades (96736 in chips) +Seat 5: ethegreat1 (60450 in chips) +Seat 6: Jumping (9370 in chips) +Seat 7: TRYINGHARD (20155 in chips) +Seat 8: s0rrow (26145 in chips) +Seat 9: NoLuv420 (19198 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +TRYINGHARD: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +yapa2yapa: posts small blind 500 +patrick sph: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 4h] +KingShades: folds +ethegreat1: folds +Jumping: folds +TRYINGHARD: folds +s0rrow: raises 2000 to 3000 +NoLuv420: folds +jt2007: folds +yapa2yapa: calls 2500 +patrick sph: folds +*** FLOP *** [8c Ts 7d] +yapa2yapa: checks +s0rrow: checks +*** TURN *** [8c Ts 7d] [3d] +yapa2yapa: checks +s0rrow: bets 3000 +yapa2yapa: folds +s0rrow collected 7900 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 7900 | Rake 0 +Board [8c Ts 7d 3d] +Seat 1: jt2007 (button) folded before Flop (didn't bet) +Seat 2: yapa2yapa (small blind) folded on the Turn +Seat 3: patrick sph (big blind) folded before Flop +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: TRYINGHARD folded before Flop (didn't bet) +Seat 8: s0rrow collected (7900) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638559561: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:03:30 (ET) +Table '63858762 10' 9-max Seat #2 is the button +Seat 1: jt2007 (16388 in chips) +Seat 2: yapa2yapa (15985 in chips) +Seat 3: patrick sph (25820 in chips) +Seat 4: KingShades (96636 in chips) +Seat 5: ethegreat1 (60350 in chips) +Seat 6: Jumping (9270 in chips) +Seat 7: TRYINGHARD (20055 in chips) +Seat 8: s0rrow (30945 in chips) +Seat 9: NoLuv420 (19098 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +TRYINGHARD: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +patrick sph: posts small blind 500 +KingShades: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 9d] +ethegreat1: folds +Jumping: folds +TRYINGHARD: folds +s0rrow: folds +NoLuv420: raises 3000 to 4000 +jt2007: folds +yapa2yapa: folds +patrick sph: folds +KingShades: calls 3000 +*** FLOP *** [Qs Td 3c] +KingShades: bets 4000 +NoLuv420: raises 10998 to 14998 and is all-in +KingShades: folds +NoLuv420 collected 17400 from pot +NoLuv420: doesn't show hand +*** SUMMARY *** +Total pot 17400 | Rake 0 +Board [Qs Td 3c] +Seat 1: jt2007 folded before Flop (didn't bet) +Seat 2: yapa2yapa (button) folded before Flop (didn't bet) +Seat 3: patrick sph (small blind) folded before Flop +Seat 4: KingShades (big blind) folded on the Flop +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: TRYINGHARD folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 collected (17400) + + + +PokerStars Game #12638568814: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:04:43 (ET) +Table '63858762 10' 9-max Seat #3 is the button +Seat 1: jt2007 (16288 in chips) +Seat 2: yapa2yapa (15885 in chips) +Seat 3: patrick sph (25220 in chips) +Seat 4: KingShades (88536 in chips) +Seat 5: ethegreat1 (60250 in chips) +Seat 6: Jumping (9170 in chips) +Seat 7: TRYINGHARD (19955 in chips) +Seat 8: s0rrow (30845 in chips) +Seat 9: NoLuv420 (28398 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +TRYINGHARD: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +KingShades: posts small blind 500 +ethegreat1: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [7h Qc] +Jumping: folds +TRYINGHARD: folds +s0rrow: folds +NoLuv420: folds +jt2007: raises 2000 to 3000 +yapa2yapa: folds +patrick sph: folds +KingShades: calls 2500 +ethegreat1: calls 2000 +*** FLOP *** [Ac 2c 4s] +KingShades: checks +ethegreat1: checks +jt2007: checks +*** TURN *** [Ac 2c 4s] [3h] +KingShades: bets 2000 +ethegreat1: raises 5000 to 7000 +jt2007: folds +KingShades: calls 5000 +*** RIVER *** [Ac 2c 4s 3h] [6c] +KingShades: checks +ethegreat1: checks +*** SHOW DOWN *** +KingShades: shows [Th Ah] (a pair of Aces) +ethegreat1: shows [Kc As] (a pair of Aces - King kicker) +ethegreat1 collected 23900 from pot +*** SUMMARY *** +Total pot 23900 | Rake 0 +Board [Ac 2c 4s 3h 6c] +Seat 1: jt2007 folded on the Turn +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph (button) folded before Flop (didn't bet) +Seat 4: KingShades (small blind) showed [Th Ah] and lost with a pair of Aces +Seat 5: ethegreat1 (big blind) showed [Kc As] and won (23900) with a pair of Aces +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: TRYINGHARD folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638578336: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:05:58 (ET) +Table '63858762 10' 9-max Seat #4 is the button +Seat 1: jt2007 (13188 in chips) +Seat 2: yapa2yapa (15785 in chips) +Seat 3: patrick sph (25120 in chips) +Seat 4: KingShades (78436 in chips) +Seat 5: ethegreat1 (74050 in chips) +Seat 6: Jumping (9070 in chips) +Seat 8: s0rrow (30745 in chips) +Seat 9: NoLuv420 (28298 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +ethegreat1: posts small blind 500 +Jumping: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [9h 2d] +s0rrow: folds +NoLuv420: folds +jt2007: folds +yapa2yapa: folds +patrick sph: folds +KingShades: folds +ethegreat1: folds +Jumping collected 1800 from pot +*** SUMMARY *** +Total pot 1800 | Rake 0 +Seat 1: jt2007 folded before Flop (didn't bet) +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades (button) folded before Flop (didn't bet) +Seat 5: ethegreat1 (small blind) folded before Flop +Seat 6: Jumping (big blind) collected (1800) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638581799: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:06:25 (ET) +Table '63858762 10' 9-max Seat #5 is the button +Seat 1: jt2007 (13088 in chips) +Seat 2: yapa2yapa (15685 in chips) +Seat 3: patrick sph (25020 in chips) +Seat 4: KingShades (78336 in chips) +Seat 5: ethegreat1 (73450 in chips) +Seat 6: Jumping (10270 in chips) +Seat 8: s0rrow (30645 in chips) +Seat 9: NoLuv420 (28198 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +Jumping: posts small blind 500 +s0rrow: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 2c] +NoLuv420: calls 1000 +jt2007: folds +yapa2yapa: folds +patrick sph: folds +KingShades: calls 1000 +ethegreat1: folds +Jumping: calls 500 +s0rrow: checks +*** FLOP *** [Qh Jc 4c] +Jumping: checks +s0rrow: bets 1000 +NoLuv420: folds +KingShades: folds +Jumping: folds +s0rrow collected 4800 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 4800 | Rake 0 +Board [Qh Jc 4c] +Seat 1: jt2007 folded before Flop (didn't bet) +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades folded on the Flop +Seat 5: ethegreat1 (button) folded before Flop (didn't bet) +Seat 6: Jumping (small blind) folded on the Flop +Seat 8: s0rrow (big blind) collected (4800) +Seat 9: NoLuv420 folded on the Flop + + + +PokerStars Game #12638587516: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:07:09 (ET) +Table '63858762 10' 9-max Seat #6 is the button +Seat 1: jt2007 (12988 in chips) +Seat 2: yapa2yapa (15585 in chips) +Seat 3: patrick sph (24920 in chips) +Seat 4: KingShades (77236 in chips) +Seat 5: ethegreat1 (73350 in chips) +Seat 6: Jumping (9170 in chips) +Seat 8: s0rrow (34345 in chips) +Seat 9: NoLuv420 (27098 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +s0rrow: posts small blind 500 +NoLuv420: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [7c 6d] +jt2007: folds +yapa2yapa: folds +patrick sph: folds +KingShades: raises 2000 to 3000 +ethegreat1: folds +Jumping: folds +s0rrow: folds +NoLuv420: calls 2000 +*** FLOP *** [2c Kh 7d] +NoLuv420: checks +KingShades: checks +*** TURN *** [2c Kh 7d] [As] +NoLuv420: checks +KingShades: checks +*** RIVER *** [2c Kh 7d As] [Js] +NoLuv420: bets 2000 +KingShades: raises 2000 to 4000 +NoLuv420: calls 2000 +*** SHOW DOWN *** +KingShades: shows [Jd 7h] (two pair, Jacks and Sevens) +NoLuv420: mucks hand +KingShades collected 15300 from pot +*** SUMMARY *** +Total pot 15300 | Rake 0 +Board [2c Kh 7d As Js] +Seat 1: jt2007 folded before Flop (didn't bet) +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades showed [Jd 7h] and won (15300) with two pair, Jacks and Sevens +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping (button) folded before Flop (didn't bet) +Seat 8: s0rrow (small blind) folded before Flop +Seat 9: NoLuv420 (big blind) mucked [Ad Tc] + + + +PokerStars Game #12638592975: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:07:52 (ET) +Table '63858762 10' 9-max Seat #8 is the button +Seat 1: jt2007 (12888 in chips) +Seat 2: yapa2yapa (15485 in chips) +Seat 3: patrick sph (24820 in chips) +Seat 4: KingShades (85436 in chips) +Seat 5: ethegreat1 (73250 in chips) +Seat 6: Jumping (9070 in chips) +Seat 8: s0rrow (33745 in chips) +Seat 9: NoLuv420 (19998 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +NoLuv420: posts small blind 500 +jt2007: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [2d 9d] +yapa2yapa: folds +patrick sph: folds +KingShades: folds +ethegreat1: folds +Jumping: raises 2000 to 3000 +s0rrow: folds +NoLuv420: folds +jt2007: raises 9788 to 12788 and is all-in +Jumping: calls 5970 and is all-in +*** FLOP *** [3h 6c Th] +*** TURN *** [3h 6c Th] [4c] +XROMOY is connected +*** RIVER *** [3h 6c Th 4c] [7s] +*** SHOW DOWN *** +jt2007: shows [9c 9h] (a pair of Nines) +Jumping: shows [Qc Qs] (a pair of Queens) +Jumping collected 19240 from pot +*** SUMMARY *** +Total pot 19240 | Rake 0 +Board [3h 6c Th 4c 7s] +Seat 1: jt2007 (big blind) showed [9c 9h] and lost with a pair of Nines +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping showed [Qc Qs] and won (19240) with a pair of Queens +Seat 8: s0rrow (button) folded before Flop (didn't bet) +Seat 9: NoLuv420 (small blind) folded before Flop + + + +PokerStars Game #12638599058: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:08:39 (ET) +Table '63858762 10' 9-max Seat #9 is the button +Seat 1: jt2007 (3818 in chips) +Seat 2: yapa2yapa (15385 in chips) +Seat 3: patrick sph (24720 in chips) +Seat 4: KingShades (85336 in chips) +Seat 5: ethegreat1 (73150 in chips) +Seat 6: Jumping (19240 in chips) +Seat 7: XROMOY (48170 in chips) +Seat 8: s0rrow (33645 in chips) +Seat 9: NoLuv420 (19398 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +XROMOY: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +jt2007: posts small blind 500 +yapa2yapa: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [6d Js] +patrick sph: folds +KingShades: folds +ethegreat1: folds +Jumping: folds +XROMOY: folds +s0rrow: folds +NoLuv420: folds +jt2007: folds +yapa2yapa collected 1900 from pot +*** SUMMARY *** +Total pot 1900 | Rake 0 +Seat 1: jt2007 (small blind) folded before Flop +Seat 2: yapa2yapa (big blind) collected (1900) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638601936: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:09:02 (ET) +Table '63858762 10' 9-max Seat #1 is the button +Seat 1: jt2007 (3218 in chips) +Seat 2: yapa2yapa (16685 in chips) +Seat 3: patrick sph (24620 in chips) +Seat 4: KingShades (85236 in chips) +Seat 5: ethegreat1 (73050 in chips) +Seat 6: Jumping (19140 in chips) +Seat 7: XROMOY (48070 in chips) +Seat 8: s0rrow (33545 in chips) +Seat 9: NoLuv420 (19298 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +XROMOY: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +yapa2yapa: posts small blind 500 +patrick sph: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 8c] +KingShades: folds +ethegreat1: folds +Jumping: folds +XROMOY: folds +s0rrow: raises 1000 to 2000 +NoLuv420: folds +jt2007: folds +yapa2yapa is disconnected +yapa2yapa has timed out while disconnected +yapa2yapa: folds +yapa2yapa is sitting out +patrick sph: calls 1000 +*** FLOP *** [8h 2c As] +patrick sph: checks +s0rrow: bets 1000 +patrick sph: folds +s0rrow collected 5400 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 5400 | Rake 0 +Board [8h 2c As] +Seat 1: jt2007 (button) folded before Flop (didn't bet) +Seat 2: yapa2yapa (small blind) folded before Flop +Seat 3: patrick sph (big blind) folded on the Flop +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow collected (5400) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638614918: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:10:42 (ET) +Table '63858762 10' 9-max Seat #2 is the button +Seat 1: jt2007 (3118 in chips) +Seat 2: yapa2yapa (16085 in chips) is sitting out +Seat 3: patrick sph (22520 in chips) +Seat 4: KingShades (85136 in chips) +Seat 5: ethegreat1 (72950 in chips) +Seat 6: Jumping (19040 in chips) +Seat 7: XROMOY (47970 in chips) +Seat 8: s0rrow (36845 in chips) +Seat 9: NoLuv420 (19198 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +XROMOY: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +patrick sph: posts small blind 500 +KingShades: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [7s Qd] +ethegreat1: folds +Jumping: raises 2000 to 3000 +XROMOY: folds +s0rrow: folds +NoLuv420: folds +jt2007: folds +yapa2yapa: folds +patrick sph: folds +KingShades: folds +Jumping collected 3400 from pot +yapa2yapa is connected +*** SUMMARY *** +Total pot 3400 | Rake 0 +Seat 1: jt2007 folded before Flop (didn't bet) +Seat 2: yapa2yapa (button) folded before Flop (didn't bet) +Seat 3: patrick sph (small blind) folded before Flop +Seat 4: KingShades (big blind) folded before Flop +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping collected (3400) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638621089: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:11:29 (ET) +Table '63858762 10' 9-max Seat #3 is the button +Seat 1: jt2007 (3018 in chips) +Seat 2: yapa2yapa (15985 in chips) is sitting out +Seat 3: patrick sph (21920 in chips) +Seat 4: KingShades (84036 in chips) +Seat 5: ethegreat1 (72850 in chips) +Seat 6: Jumping (21340 in chips) +Seat 7: XROMOY (47870 in chips) +Seat 8: s0rrow (36745 in chips) +Seat 9: NoLuv420 (19098 in chips) +jt2007: posts the ante 100 +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +XROMOY: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +KingShades: posts small blind 500 +ethegreat1: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [4c 7c] +Jumping: folds +yapa2yapa has returned +XROMOY: raises 3000 to 4000 +s0rrow: folds +NoLuv420: folds +jt2007: calls 2918 and is all-in +yapa2yapa has timed out while being disconnected +yapa2yapa: folds +yapa2yapa is sitting out +patrick sph: folds +KingShades: folds +ethegreat1: folds +*** FLOP *** [Qh Qc 6d] +*** TURN *** [Qh Qc 6d] [Kh] +yapa2yapa has returned +*** RIVER *** [Qh Qc 6d Kh] [5h] +*** SHOW DOWN *** +XROMOY: shows [As Qs] (three of a kind, Queens) +jt2007: shows [Ac 2c] (a pair of Queens) +XROMOY collected 8236 from pot +*** SUMMARY *** +Total pot 8236 | Rake 0 +Board [Qh Qc 6d Kh 5h] +Seat 1: jt2007 showed [Ac 2c] and lost with a pair of Queens +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph (button) folded before Flop (didn't bet) +Seat 4: KingShades (small blind) folded before Flop +Seat 5: ethegreat1 (big blind) folded before Flop +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: XROMOY showed [As Qs] and won (8236) with three of a kind, Queens +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638628205: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XI (500/1000) - 2007/10/15 - 08:12:24 (ET) +Table '63858762 10' 9-max Seat #4 is the button +Seat 2: yapa2yapa (15885 in chips) +Seat 3: patrick sph (21820 in chips) +Seat 4: KingShades (83436 in chips) +Seat 5: ethegreat1 (71750 in chips) +Seat 6: Jumping (21240 in chips) +Seat 7: XROMOY (53088 in chips) +Seat 8: s0rrow (36645 in chips) +Seat 9: NoLuv420 (18998 in chips) +yapa2yapa: posts the ante 100 +patrick sph: posts the ante 100 +KingShades: posts the ante 100 +ethegreat1: posts the ante 100 +Jumping: posts the ante 100 +XROMOY: posts the ante 100 +s0rrow: posts the ante 100 +NoLuv420: posts the ante 100 +ethegreat1: posts small blind 500 +Jumping: posts big blind 1000 +*** HOLE CARDS *** +Dealt to s0rrow [4c 9d] +XROMOY: folds +s0rrow: folds +NoLuv420: folds +yapa2yapa: folds +patrick sph: raises 2000 to 3000 +KingShades: calls 3000 +ethegreat1: folds +Jumping: raises 18140 to 21140 and is all-in +patrick sph: folds +KingShades: folds +Jumping collected 10300 from pot +*** SUMMARY *** +Total pot 10300 | Rake 0 +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop +Seat 4: KingShades (button) folded before Flop +Seat 5: ethegreat1 (small blind) folded before Flop +Seat 6: Jumping (big blind) collected (10300) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638637185: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:13:33 (ET) +Table '63858762 10' 9-max Seat #5 is the button +Seat 2: yapa2yapa (15785 in chips) +Seat 3: patrick sph (18720 in chips) +Seat 4: KingShades (80336 in chips) +Seat 5: ethegreat1 (71150 in chips) +Seat 6: Jumping (28440 in chips) +Seat 7: XROMOY (52988 in chips) +Seat 8: s0rrow (36545 in chips) +Seat 9: NoLuv420 (18898 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +Jumping: posts small blind 600 +XROMOY: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [2h 5d] +s0rrow: folds +NoLuv420: folds +yapa2yapa: folds +patrick sph: raises 3600 to 4800 +KingShades: folds +ethegreat1: folds +Jumping: folds +XROMOY: folds +patrick sph collected 4000 from pot +patrick sph: doesn't show hand +*** SUMMARY *** +Total pot 4000 | Rake 0 +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph collected (4000) +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 (button) folded before Flop (didn't bet) +Seat 6: Jumping (small blind) folded before Flop +Seat 7: XROMOY (big blind) folded before Flop +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638641604: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:14:08 (ET) +Table '63858762 10' 9-max Seat #6 is the button +Seat 2: yapa2yapa (15660 in chips) +Seat 3: patrick sph (21395 in chips) +Seat 4: KingShades (80211 in chips) +Seat 5: ethegreat1 (71025 in chips) +Seat 6: Jumping (27715 in chips) +Seat 7: XROMOY (51663 in chips) +Seat 8: s0rrow (36420 in chips) +Seat 9: NoLuv420 (18773 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +XROMOY: posts small blind 600 +s0rrow: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [4d Td] +NoLuv420: folds +yapa2yapa has timed out while being disconnected +yapa2yapa: folds +yapa2yapa is sitting out +patrick sph: folds +KingShades: raises 1200 to 2400 +ethegreat1: folds +yapa2yapa is disconnected +Jumping: calls 2400 +yapa2yapa is connected +XROMOY has timed out +XROMOY: folds +XROMOY is sitting out +s0rrow: folds +*** FLOP *** [2c 6h Qh] +XROMOY has returned +KingShades: checks +yapa2yapa has returned +Jumping: checks +*** TURN *** [2c 6h Qh] [Jc] +KingShades: bets 2400 +Jumping: calls 2400 +*** RIVER *** [2c 6h Qh Jc] [8s] +KingShades: bets 3600 +Jumping: calls 3600 +*** SHOW DOWN *** +KingShades: shows [Qc Th] (a pair of Queens) +Jumping: mucks hand +KingShades collected 19600 from pot +*** SUMMARY *** +Total pot 19600 | Rake 0 +Board [2c 6h Qh Jc 8s] +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades showed [Qc Th] and won (19600) with a pair of Queens +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping (button) mucked [As Js] +Seat 7: XROMOY (small blind) folded before Flop +Seat 8: s0rrow (big blind) folded before Flop +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638656571: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:16:02 (ET) +Table '63858762 10' 9-max Seat #7 is the button +Seat 2: yapa2yapa (15535 in chips) +Seat 3: patrick sph (21270 in chips) +Seat 4: KingShades (91286 in chips) +Seat 5: ethegreat1 (70900 in chips) +Seat 6: Jumping (19190 in chips) +Seat 7: XROMOY (50938 in chips) +Seat 8: s0rrow (35095 in chips) +Seat 9: NoLuv420 (18648 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +s0rrow: posts small blind 600 +NoLuv420: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [7c 7s] +yapa2yapa: calls 1200 +patrick sph: folds +KingShades: folds +ethegreat1: raises 1200 to 2400 +Jumping: folds +XROMOY: folds +s0rrow: calls 1800 +NoLuv420: folds +yapa2yapa: calls 1200 +*** FLOP *** [8c Ks 4c] +s0rrow: checks +yapa2yapa: checks +ethegreat1: checks +*** TURN *** [8c Ks 4c] [9d] +s0rrow: bets 1200 +yapa2yapa: raises 2800 to 4000 +ethegreat1: folds +s0rrow: folds +yapa2yapa collected 11800 from pot +*** SUMMARY *** +Total pot 11800 | Rake 0 +Board [8c Ks 4c 9d] +Seat 2: yapa2yapa collected (11800) +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 folded on the Turn +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: XROMOY (button) folded before Flop (didn't bet) +Seat 8: s0rrow (small blind) folded on the Turn +Seat 9: NoLuv420 (big blind) folded before Flop + + + +PokerStars Game #12638665692: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:17:10 (ET) +Table '63858762 10' 9-max Seat #8 is the button +Seat 2: yapa2yapa (23610 in chips) +Seat 3: patrick sph (21145 in chips) +Seat 4: KingShades (91161 in chips) +Seat 5: ethegreat1 (68375 in chips) +Seat 6: Jumping (19065 in chips) +Seat 7: XROMOY (50813 in chips) +Seat 8: s0rrow (31370 in chips) +Seat 9: NoLuv420 (17323 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +NoLuv420: posts small blind 600 +yapa2yapa: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [4h 5h] +patrick sph: folds +KingShades: folds +ethegreat1: calls 1200 +Jumping: folds +XROMOY: folds +s0rrow: calls 1200 +NoLuv420: folds +yapa2yapa: checks +*** FLOP *** [2h Ac 3h] +yapa2yapa: checks +ethegreat1: checks +s0rrow: bets 2400 +yapa2yapa: folds +ethegreat1: folds +s0rrow collected 5200 from pot +s0rrow: shows [4h 5h] (a straight, Ace to Five) +*** SUMMARY *** +Total pot 5200 | Rake 0 +Board [2h Ac 3h] +Seat 2: yapa2yapa (big blind) folded on the Flop +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades folded before Flop (didn't bet) +Seat 5: ethegreat1 folded on the Flop +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow (button) collected (5200) +Seat 9: NoLuv420 (small blind) folded before Flop + + + +PokerStars Game #12638675603: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:18:24 (ET) +Table '63858762 10' 9-max Seat #9 is the button +Seat 2: yapa2yapa (22285 in chips) +Seat 3: patrick sph (21020 in chips) +Seat 4: KingShades (91036 in chips) +Seat 5: ethegreat1 (67050 in chips) +Seat 6: Jumping (18940 in chips) +Seat 7: XROMOY (50688 in chips) +Seat 8: s0rrow (35245 in chips) +Seat 9: NoLuv420 (16598 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +yapa2yapa: posts small blind 600 +patrick sph: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [Ad Ac] +KingShades: calls 1200 +ethegreat1: folds +Jumping: folds +XROMOY: folds +s0rrow: raises 2400 to 3600 +NoLuv420: folds +yapa2yapa: calls 3000 +patrick sph: folds +KingShades: calls 2400 +*** FLOP *** [8h Qd 6s] +yapa2yapa: checks +KingShades: checks +s0rrow: bets 2400 +yapa2yapa: folds +KingShades: folds +s0rrow collected 13000 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 13000 | Rake 0 +Board [8h Qd 6s] +Seat 2: yapa2yapa (small blind) folded on the Flop +Seat 3: patrick sph (big blind) folded before Flop +Seat 4: KingShades folded on the Flop +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow collected (13000) +Seat 9: NoLuv420 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638685323: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:19:37 (ET) +Table '63858762 10' 9-max Seat #2 is the button +Seat 2: yapa2yapa (18560 in chips) +Seat 3: patrick sph (19695 in chips) +Seat 4: KingShades (87311 in chips) +Seat 5: ethegreat1 (66925 in chips) +Seat 6: Jumping (18815 in chips) +Seat 7: XROMOY (50563 in chips) +Seat 8: s0rrow (44520 in chips) +Seat 9: NoLuv420 (16473 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +patrick sph: posts small blind 600 +KingShades: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [6h 6d] +ethegreat1: folds +Jumping: raises 4800 to 6000 +XROMOY: folds +s0rrow: folds +NoLuv420: folds +yapa2yapa: folds +patrick sph: folds +KingShades: folds +Jumping collected 4000 from pot +*** SUMMARY *** +Total pot 4000 | Rake 0 +Seat 2: yapa2yapa (button) folded before Flop (didn't bet) +Seat 3: patrick sph (small blind) folded before Flop +Seat 4: KingShades (big blind) folded before Flop +Seat 5: ethegreat1 folded before Flop (didn't bet) +Seat 6: Jumping collected (4000) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638692889: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:20:33 (ET) +Table '63858762 10' 9-max Seat #3 is the button +Seat 2: yapa2yapa (18435 in chips) +Seat 3: patrick sph (18970 in chips) +Seat 4: KingShades (85986 in chips) +Seat 5: ethegreat1 (66800 in chips) +Seat 6: Jumping (21490 in chips) +Seat 7: XROMOY (50438 in chips) +Seat 8: s0rrow (44395 in chips) +Seat 9: NoLuv420 (16348 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +KingShades: posts small blind 600 +ethegreat1: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [3c Ts] +Jumping: folds +XROMOY: folds +s0rrow: folds +NoLuv420: raises 2650 to 3850 +yapa2yapa: folds +patrick sph: folds +KingShades: raises 82011 to 85861 and is all-in +ethegreat1: folds +NoLuv420: folds +KingShades collected 9900 from pot +KingShades: doesn't show hand +*** SUMMARY *** +Total pot 9900 | Rake 0 +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph (button) folded before Flop (didn't bet) +Seat 4: KingShades (small blind) collected (9900) +Seat 5: ethegreat1 (big blind) folded before Flop +Seat 6: Jumping folded before Flop (didn't bet) +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop + + + +PokerStars Game #12638697786: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:21:09 (ET) +Table '63858762 10' 9-max Seat #4 is the button +Seat 2: yapa2yapa (18310 in chips) +Seat 3: patrick sph (18845 in chips) +Seat 4: KingShades (91911 in chips) +Seat 5: ethegreat1 (65475 in chips) +Seat 6: Jumping (21365 in chips) +Seat 7: XROMOY (50313 in chips) +Seat 8: s0rrow (44270 in chips) +Seat 9: NoLuv420 (12373 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +ethegreat1: posts small blind 600 +Jumping: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 5s] +XROMOY: folds +s0rrow: folds +NoLuv420: folds +yapa2yapa: calls 1200 +patrick sph: folds +KingShades: calls 1200 +ethegreat1: calls 600 +Jumping: checks +*** FLOP *** [Qd Qh 6s] +ethegreat1: bets 2400 +Jumping: folds +yapa2yapa: folds +KingShades: folds +ethegreat1 collected 5800 from pot +ethegreat1 is sitting out +*** SUMMARY *** +Total pot 5800 | Rake 0 +Board [Qd Qh 6s] +Seat 2: yapa2yapa folded on the Flop +Seat 3: patrick sph folded before Flop (didn't bet) +Seat 4: KingShades (button) folded on the Flop +Seat 5: ethegreat1 (small blind) collected (5800) +Seat 6: Jumping (big blind) folded on the Flop +Seat 7: XROMOY folded before Flop (didn't bet) +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638709837: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:22:37 (ET) +Table '63858762 10' 9-max Seat #5 is the button +Seat 2: yapa2yapa (16985 in chips) +Seat 3: patrick sph (18720 in chips) +Seat 4: KingShades (90586 in chips) +Seat 5: ethegreat1 (69950 in chips) +Seat 6: Jumping (20040 in chips) +Seat 7: XROMOY (50188 in chips) +Seat 8: s0rrow (44145 in chips) +Seat 9: NoLuv420 (12248 in chips) +yapa2yapa: posts the ante 125 +patrick sph: posts the ante 125 +KingShades: posts the ante 125 +ethegreat1: posts the ante 125 +Jumping: posts the ante 125 +XROMOY: posts the ante 125 +s0rrow: posts the ante 125 +NoLuv420: posts the ante 125 +Jumping: posts small blind 600 +XROMOY: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 9h] +s0rrow: folds +NoLuv420: folds +yapa2yapa: folds +patrick sph: raises 3600 to 4800 +KingShades: raises 85661 to 90461 and is all-in +ethegreat1: folds +Jumping: folds +XROMOY: folds +patrick sph: calls 13795 and is all-in +*** FLOP *** [7h 2s 4h] +*** TURN *** [7h 2s 4h] [7c] +*** RIVER *** [7h 2s 4h 7c] [9c] +*** SHOW DOWN *** +patrick sph: shows [Qh Js] (a pair of Sevens) +KingShades: shows [Qd As] (a pair of Sevens - Ace kicker) +KingShades collected 39990 from pot +*** SUMMARY *** +Total pot 39990 | Rake 0 +Board [7h 2s 4h 7c 9c] +Seat 2: yapa2yapa folded before Flop (didn't bet) +Seat 3: patrick sph showed [Qh Js] and lost with a pair of Sevens +Seat 4: KingShades showed [Qd As] and won (39990) with a pair of Sevens +Seat 5: ethegreat1 (button) folded before Flop (didn't bet) +Seat 6: Jumping (small blind) folded before Flop +Seat 7: XROMOY (big blind) folded before Flop +Seat 8: s0rrow folded before Flop (didn't bet) +Seat 9: NoLuv420 folded before Flop (didn't bet) + + + +PokerStars Game #12638718896: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:23:43 (ET) +Table '63858762 32' 9-max Seat #2 is the button +Seat 1: philnkaz (57337 in chips) +Seat 2: batscarer (102414 in chips) +Seat 3: scouse21 (63239 in chips) +Seat 4: s0rrow (44020 in chips) +Seat 5: VanBuren44 (35418 in chips) +Seat 6: Angie0502 (11760 in chips) +Seat 7: misterji (55000 in chips) +Seat 8: ACEISGOD (24335 in chips) +Seat 9: OverTheWell (118487 in chips) +philnkaz: posts the ante 125 +batscarer: posts the ante 125 +scouse21: posts the ante 125 +s0rrow: posts the ante 125 +VanBuren44: posts the ante 125 +Angie0502: posts the ante 125 +misterji: posts the ante 125 +ACEISGOD: posts the ante 125 +OverTheWell: posts the ante 125 +scouse21: posts small blind 600 +s0rrow: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [4h 9s] +VanBuren44: folds +Angie0502: calls 1200 +misterji: folds +ACEISGOD: calls 1200 +OverTheWell: folds +philnkaz: folds +batscarer: folds +scouse21: folds +s0rrow: checks +*** FLOP *** [Ad Ac 4d] +s0rrow: checks +Angie0502: bets 2400 +ACEISGOD: raises 6000 to 8400 +s0rrow: folds +Angie0502: folds +ACEISGOD collected 10125 from pot +*** SUMMARY *** +Total pot 10125 | Rake 0 +Board [Ad Ac 4d] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: batscarer (button) folded before Flop (didn't bet) +Seat 3: scouse21 (small blind) folded before Flop +Seat 4: s0rrow (big blind) folded on the Flop +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded on the Flop +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD collected (10125) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638729153: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:24:59 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (57212 in chips) +Seat 2: batscarer (102289 in chips) +Seat 3: scouse21 (62514 in chips) +Seat 4: s0rrow (42695 in chips) +Seat 5: VanBuren44 (35293 in chips) +Seat 6: Angie0502 (8035 in chips) +Seat 7: misterji (54875 in chips) +Seat 8: ACEISGOD (30735 in chips) +Seat 9: OverTheWell (118362 in chips) +philnkaz: posts the ante 125 +batscarer: posts the ante 125 +scouse21: posts the ante 125 +s0rrow: posts the ante 125 +VanBuren44: posts the ante 125 +Angie0502: posts the ante 125 +misterji: posts the ante 125 +ACEISGOD: posts the ante 125 +OverTheWell: posts the ante 125 +s0rrow: posts small blind 600 +VanBuren44: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [2s Kd] +Angie0502: folds +misterji: folds +ACEISGOD: folds +OverTheWell: raises 2400 to 3600 +philnkaz: folds +batscarer: folds +scouse21: folds +s0rrow: folds +VanBuren44: calls 2400 +*** FLOP *** [8s 8c 4h] +VanBuren44: checks +OverTheWell: bets 4800 +VanBuren44: folds +OverTheWell collected 8925 from pot +OverTheWell: doesn't show hand +*** SUMMARY *** +Total pot 8925 | Rake 0 +Board [8s 8c 4h] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: batscarer folded before Flop (didn't bet) +Seat 3: scouse21 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: VanBuren44 (big blind) folded on the Flop +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell collected (8925) + + + +PokerStars Game #12638735406: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:25:45 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (57087 in chips) +Seat 2: batscarer (102164 in chips) +Seat 3: scouse21 (62389 in chips) +Seat 4: s0rrow (41970 in chips) +Seat 5: VanBuren44 (31568 in chips) +Seat 6: Angie0502 (7910 in chips) +Seat 7: misterji (54750 in chips) +Seat 8: ACEISGOD (30610 in chips) +Seat 9: OverTheWell (123562 in chips) +philnkaz: posts the ante 125 +batscarer: posts the ante 125 +scouse21: posts the ante 125 +s0rrow: posts the ante 125 +VanBuren44: posts the ante 125 +Angie0502: posts the ante 125 +misterji: posts the ante 125 +ACEISGOD: posts the ante 125 +OverTheWell: posts the ante 125 +VanBuren44: posts small blind 600 +Angie0502: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [8c 4s] +misterji: folds +ACEISGOD: folds +OverTheWell: folds +philnkaz: folds +batscarer: folds +scouse21: folds +s0rrow: folds +VanBuren44: raises 2400 to 3600 +Angie0502: folds +VanBuren44 collected 3525 from pot +VanBuren44: doesn't show hand +*** SUMMARY *** +Total pot 3525 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: batscarer folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: VanBuren44 (small blind) collected (3525) +Seat 6: Angie0502 (big blind) folded before Flop +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638739009: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:26:10 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (56962 in chips) +Seat 2: batscarer (102039 in chips) +Seat 3: scouse21 (62264 in chips) +Seat 4: s0rrow (41845 in chips) +Seat 5: VanBuren44 (33768 in chips) +Seat 6: Angie0502 (6585 in chips) +Seat 7: misterji (54625 in chips) +Seat 8: ACEISGOD (30485 in chips) +Seat 9: OverTheWell (123437 in chips) +philnkaz: posts the ante 125 +batscarer: posts the ante 125 +scouse21: posts the ante 125 +s0rrow: posts the ante 125 +VanBuren44: posts the ante 125 +Angie0502: posts the ante 125 +misterji: posts the ante 125 +ACEISGOD: posts the ante 125 +OverTheWell: posts the ante 125 +Angie0502: posts small blind 600 +misterji: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 3h] +ACEISGOD: folds +OverTheWell: folds +philnkaz: folds +batscarer: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: raises 5260 to 6460 and is all-in +misterji: folds +Angie0502 collected 3525 from pot +*** SUMMARY *** +Total pot 3525 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: batscarer folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) folded before Flop (didn't bet) +Seat 6: Angie0502 (small blind) collected (3525) +Seat 7: misterji (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638742788: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XII (600/1200) - 2007/10/15 - 08:26:38 (ET) +Table '63858762 32' 9-max Seat #6 is the button +Seat 1: philnkaz (56837 in chips) +Seat 2: batscarer (101914 in chips) +Seat 3: scouse21 (62139 in chips) +Seat 4: s0rrow (41720 in chips) +Seat 5: VanBuren44 (33643 in chips) +Seat 6: Angie0502 (8785 in chips) +Seat 7: misterji (53300 in chips) +Seat 8: ACEISGOD (30360 in chips) +Seat 9: OverTheWell (123312 in chips) +philnkaz: posts the ante 125 +batscarer: posts the ante 125 +scouse21: posts the ante 125 +s0rrow: posts the ante 125 +VanBuren44: posts the ante 125 +Angie0502: posts the ante 125 +misterji: posts the ante 125 +ACEISGOD: posts the ante 125 +OverTheWell: posts the ante 125 +misterji: posts small blind 600 +ACEISGOD: posts big blind 1200 +*** HOLE CARDS *** +Dealt to s0rrow [3h Ah] +OverTheWell: folds +philnkaz: folds +batscarer: raises 2400 to 3600 +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: calls 2400 +*** FLOP *** [7s 6h Ts] +ACEISGOD: checks +batscarer: bets 4800 +ACEISGOD: raises 14100 to 18900 +batscarer: folds +ACEISGOD collected 18525 from pot +*** SUMMARY *** +Total pot 18525 | Rake 0 +Board [7s 6h Ts] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: batscarer folded on the Flop +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 (button) folded before Flop (didn't bet) +Seat 7: misterji (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) collected (18525) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638801692: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:33:37 (ET) +Table '63858762 32' 9-max Seat #7 is the button +Seat 1: philnkaz (56712 in chips) +Seat 2: batscarer (93389 in chips) +Seat 3: scouse21 (62014 in chips) +Seat 4: s0rrow (41595 in chips) +Seat 5: VanBuren44 (33518 in chips) +Seat 6: Angie0502 (8660 in chips) +Seat 7: misterji (52575 in chips) +Seat 8: ACEISGOD (40360 in chips) +Seat 9: OverTheWell (123187 in chips) +philnkaz: posts the ante 150 +batscarer: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +ACEISGOD: posts small blind 800 +OverTheWell: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [8d 6s] +philnkaz: raises 3200 to 4800 +batscarer: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: folds +OverTheWell: folds +philnkaz collected 5350 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 5350 | Rake 0 +Seat 1: philnkaz collected (5350) +Seat 2: batscarer folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) folded before Flop +Seat 9: OverTheWell (big blind) folded before Flop + + + +PokerStars Game #12638809779: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:34:31 (ET) +Table '63858762 32' 9-max Seat #8 is the button +Seat 1: philnkaz (60312 in chips) +Seat 2: batscarer (93239 in chips) +Seat 3: scouse21 (61864 in chips) +Seat 4: s0rrow (41445 in chips) +Seat 5: VanBuren44 (33368 in chips) +Seat 6: Angie0502 (8510 in chips) +Seat 7: misterji (52425 in chips) +Seat 8: ACEISGOD (39410 in chips) +Seat 9: OverTheWell (121437 in chips) +philnkaz: posts the ante 150 +batscarer: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +OverTheWell: posts small blind 800 +philnkaz: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [9h 7c] +batscarer: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: raises 2175 to 3775 +ACEISGOD: folds +OverTheWell: folds +philnkaz: folds +misterji collected 5350 from pot +*** SUMMARY *** +Total pot 5350 | Rake 0 +Seat 1: philnkaz (big blind) folded before Flop +Seat 2: batscarer folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji collected (5350) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: OverTheWell (small blind) folded before Flop + + + +PokerStars Game #12638814302: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:35:02 (ET) +Table '63858762 32' 9-max Seat #9 is the button +Seat 1: philnkaz (58562 in chips) +Seat 3: scouse21 (61714 in chips) +Seat 4: s0rrow (41295 in chips) +Seat 5: VanBuren44 (33218 in chips) +Seat 6: Angie0502 (8360 in chips) +Seat 7: misterji (56025 in chips) +Seat 8: ACEISGOD (39260 in chips) +Seat 9: OverTheWell (120487 in chips) +philnkaz: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +philnkaz: posts small blind 800 +scouse21: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [4d Kh] +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: raises 3200 to 4800 +OverTheWell: folds +philnkaz: folds +scouse21: folds +ACEISGOD collected 5200 from pot +*** SUMMARY *** +Total pot 5200 | Rake 0 +Seat 1: philnkaz (small blind) folded before Flop +Seat 3: scouse21 (big blind) folded before Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD collected (5200) +Seat 9: OverTheWell (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638818367: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:35:30 (ET) +Table '63858762 32' 9-max Seat #1 is the button +Seat 1: philnkaz (57612 in chips) +Seat 3: scouse21 (59964 in chips) +Seat 4: s0rrow (41145 in chips) +Seat 5: VanBuren44 (33068 in chips) +Seat 6: Angie0502 (8210 in chips) +Seat 7: misterji (55875 in chips) +Seat 8: ACEISGOD (42710 in chips) +Seat 9: OverTheWell (120337 in chips) +philnkaz: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +scouse21: posts small blind 800 +s0rrow: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 3h] +VanBuren44: folds +Angie0502: raises 6460 to 8060 and is all-in +misterji: folds +ACEISGOD: folds +OverTheWell: folds +philnkaz: folds +scouse21: folds +s0rrow: folds +Angie0502 collected 5200 from pot +*** SUMMARY *** +Total pot 5200 | Rake 0 +Seat 1: philnkaz (button) folded before Flop (didn't bet) +Seat 3: scouse21 (small blind) folded before Flop +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 collected (5200) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638822863: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:36:01 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (57462 in chips) +Seat 3: scouse21 (59014 in chips) +Seat 4: s0rrow (39395 in chips) +Seat 5: VanBuren44 (32918 in chips) +Seat 6: Angie0502 (11660 in chips) +Seat 7: misterji (55725 in chips) +Seat 8: ACEISGOD (42560 in chips) +Seat 9: OverTheWell (120187 in chips) +philnkaz: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +s0rrow: posts small blind 800 +VanBuren44: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [4s 9h] +Angie0502: folds +misterji: folds +ACEISGOD: folds +OverTheWell: raises 2400 to 4000 +philnkaz: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +OverTheWell collected 5200 from pot +OverTheWell: doesn't show hand +*** SUMMARY *** +Total pot 5200 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 3: scouse21 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: VanBuren44 (big blind) folded before Flop +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell collected (5200) + + + +PokerStars Game #12638827578: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:36:33 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (57312 in chips) +Seat 3: scouse21 (58864 in chips) +Seat 4: s0rrow (38445 in chips) +Seat 5: VanBuren44 (31168 in chips) +Seat 6: Angie0502 (11510 in chips) +Seat 7: misterji (55575 in chips) +Seat 8: ACEISGOD (42410 in chips) +Seat 9: OverTheWell (123637 in chips) +philnkaz: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +VanBuren44: posts small blind 800 +Angie0502: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [7c Kh] +misterji: raises 1825 to 3425 +ACEISGOD: folds +OverTheWell: folds +philnkaz: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +mit5482 is connected +Angie0502: folds +misterji collected 5200 from pot +*** SUMMARY *** +Total pot 5200 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: VanBuren44 (small blind) folded before Flop +Seat 6: Angie0502 (big blind) folded before Flop +Seat 7: misterji collected (5200) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638834645: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:37:22 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (57162 in chips) +Seat 2: mit5482 (99773 in chips) +Seat 3: scouse21 (58714 in chips) +Seat 4: s0rrow (38295 in chips) +Seat 5: VanBuren44 (30218 in chips) +Seat 6: Angie0502 (9760 in chips) +Seat 7: misterji (59025 in chips) +Seat 8: ACEISGOD (42260 in chips) +Seat 9: OverTheWell (123487 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +Angie0502: posts small blind 800 +misterji: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [Ts 7h] +ACEISGOD: raises 1600 to 3200 +OverTheWell: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD collected 5350 from pot +*** SUMMARY *** +Total pot 5350 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) folded before Flop (didn't bet) +Seat 6: Angie0502 (small blind) folded before Flop +Seat 7: misterji (big blind) folded before Flop +Seat 8: ACEISGOD collected (5350) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638840500: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:38:02 (ET) +Table '63858762 32' 9-max Seat #6 is the button +Seat 1: philnkaz (57012 in chips) +Seat 2: mit5482 (99623 in chips) +Seat 3: scouse21 (58564 in chips) +Seat 4: s0rrow (38145 in chips) +Seat 5: VanBuren44 (30068 in chips) +Seat 6: Angie0502 (8810 in chips) +Seat 7: misterji (57275 in chips) +Seat 8: ACEISGOD (45860 in chips) +Seat 9: OverTheWell (123337 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +misterji: posts small blind 800 +ACEISGOD: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 8h] +OverTheWell: folds +philnkaz: folds +mit5482: folds +scouse21: raises 1600 to 3200 +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: folds +scouse21 collected 5350 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 5350 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 collected (5350) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 (button) folded before Flop (didn't bet) +Seat 7: misterji (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638848138: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:38:54 (ET) +Table '63858762 32' 9-max Seat #7 is the button +Seat 1: philnkaz (56862 in chips) +Seat 2: mit5482 (99473 in chips) +Seat 3: scouse21 (62164 in chips) +Seat 4: s0rrow (37995 in chips) +Seat 5: VanBuren44 (29918 in chips) +Seat 6: Angie0502 (8660 in chips) +Seat 7: misterji (56325 in chips) +Seat 8: ACEISGOD (44110 in chips) +Seat 9: OverTheWell (123187 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +ACEISGOD: posts small blind 800 +OverTheWell: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [4h Js] +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: raises 2075 to 3675 +ACEISGOD: raises 10075 to 13750 +OverTheWell: folds +misterji: calls 10075 +*** FLOP *** [Kc 5d 5s] +ACEISGOD: checks +misterji: checks +*** TURN *** [Kc 5d 5s] [9h] +ACEISGOD: checks +misterji: checks +*** RIVER *** [Kc 5d 5s 9h] [Ts] +ACEISGOD: bets 6600 +misterji: raises 9400 to 16000 +ACEISGOD: calls 9400 +*** SHOW DOWN *** +misterji: shows [7s 8s] (a pair of Fives) +ACEISGOD: shows [Ks Qs] (two pair, Kings and Fives) +ACEISGOD collected 62450 from pot +*** SUMMARY *** +Total pot 62450 | Rake 0 +Board [Kc 5d 5s 9h Ts] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji (button) showed [7s 8s] and lost with a pair of Fives +Seat 8: ACEISGOD (small blind) showed [Ks Qs] and won (62450) with two pair, Kings and Fives +Seat 9: OverTheWell (big blind) folded before Flop + + + +PokerStars Game #12638869001: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:41:12 (ET) +Table '63858762 32' 9-max Seat #8 is the button +Seat 1: philnkaz (56712 in chips) +Seat 2: mit5482 (99323 in chips) +Seat 3: scouse21 (62014 in chips) +Seat 4: s0rrow (37845 in chips) +Seat 5: VanBuren44 (29768 in chips) +Seat 6: Angie0502 (8510 in chips) +Seat 7: misterji (26425 in chips) +Seat 8: ACEISGOD (76660 in chips) +Seat 9: OverTheWell (121437 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +OverTheWell: posts small blind 800 +philnkaz: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [7d 4s] +mit5482: folds +scouse21: raises 1600 to 3200 +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: folds +OverTheWell: calls 2400 +philnkaz: calls 1600 +*** FLOP *** [3c Qd Jd] +OverTheWell: bets 8000 +philnkaz: raises 45362 to 53362 and is all-in +scouse21: folds +OverTheWell: folds +philnkaz collected 26950 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 26950 | Rake 0 +Board [3c Qd Jd] +Seat 1: philnkaz (big blind) collected (26950) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded on the Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: OverTheWell (small blind) folded on the Flop + + + +PokerStars Game #12638883471: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:42:48 (ET) +Table '63858762 32' 9-max Seat #9 is the button +Seat 1: philnkaz (72312 in chips) +Seat 2: mit5482 (99173 in chips) +Seat 3: scouse21 (58664 in chips) +Seat 4: s0rrow (37695 in chips) +Seat 5: VanBuren44 (29618 in chips) +Seat 6: Angie0502 (8360 in chips) +Seat 7: misterji (26275 in chips) +Seat 8: ACEISGOD (76510 in chips) +Seat 9: OverTheWell (110087 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +philnkaz: posts small blind 800 +mit5482: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [5c 7d] +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: raises 3600 to 5200 +OverTheWell: folds +philnkaz: folds +mit5482: folds +ACEISGOD collected 5350 from pot +*** SUMMARY *** +Total pot 5350 | Rake 0 +Seat 1: philnkaz (small blind) folded before Flop +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD collected (5350) +Seat 9: OverTheWell (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638888277: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:43:21 (ET) +Table '63858762 32' 9-max Seat #1 is the button +Seat 1: philnkaz (71362 in chips) +Seat 2: mit5482 (97423 in chips) +Seat 3: scouse21 (58514 in chips) +Seat 4: s0rrow (37545 in chips) +Seat 5: VanBuren44 (29468 in chips) +Seat 6: Angie0502 (8210 in chips) +Seat 7: misterji (26125 in chips) +Seat 8: ACEISGOD (80110 in chips) +Seat 9: OverTheWell (109937 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +mit5482: posts small blind 800 +scouse21: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [4s 3h] +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: folds +OverTheWell: raises 2400 to 4000 +philnkaz: folds +mit5482: folds +scouse21: calls 2400 +*** FLOP *** [Jd Ah 7d] +scouse21: checks +OverTheWell: bets 7000 +scouse21: calls 7000 +*** TURN *** [Jd Ah 7d] [8d] +scouse21: checks +OverTheWell: checks +*** RIVER *** [Jd Ah 7d 8d] [5h] +scouse21: bets 3200 +OverTheWell: folds +scouse21 collected 24150 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 24150 | Rake 0 +Board [Jd Ah 7d 8d 5h] +Seat 1: philnkaz (button) folded before Flop (didn't bet) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: scouse21 (big blind) collected (24150) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell folded on the River + + + +PokerStars Game #12638899139: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:44:34 (ET) +Table '63858762 32' 9-max Seat #2 is the button +Seat 1: philnkaz (71212 in chips) +Seat 2: mit5482 (96473 in chips) +Seat 3: scouse21 (71514 in chips) +Seat 4: s0rrow (37395 in chips) +Seat 5: VanBuren44 (29318 in chips) +Seat 6: Angie0502 (8060 in chips) +Seat 7: misterji (25975 in chips) +Seat 8: ACEISGOD (79960 in chips) +Seat 9: OverTheWell (98787 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +scouse21: posts small blind 800 +s0rrow: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [3s 4h] +VanBuren44: folds +Angie0502: folds +misterji: folds +ACEISGOD: folds +OverTheWell: folds +philnkaz: folds +mit5482: folds +scouse21: calls 800 +s0rrow: checks +*** FLOP *** [2s 5h Kd] +scouse21: checks +s0rrow: checks +*** TURN *** [2s 5h Kd] [2c] +scouse21: checks +s0rrow: bets 3200 +scouse21: folds +s0rrow collected 4550 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 4550 | Rake 0 +Board [2s 5h Kd 2c] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: scouse21 (small blind) folded on the Turn +Seat 4: s0rrow (big blind) collected (4550) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638905150: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:45:15 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (71062 in chips) +Seat 2: mit5482 (96323 in chips) +Seat 3: scouse21 (69764 in chips) +Seat 4: s0rrow (40195 in chips) +Seat 5: VanBuren44 (29168 in chips) +Seat 6: Angie0502 (7910 in chips) +Seat 7: misterji (25825 in chips) +Seat 8: ACEISGOD (79810 in chips) +Seat 9: OverTheWell (98637 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +OverTheWell: posts the ante 150 +s0rrow: posts small blind 800 +VanBuren44: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [2h 9h] +Angie0502: folds +misterji: folds +ACEISGOD: folds +OverTheWell: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: calls 800 +VanBuren44: checks +*** FLOP *** [Qs Td Kh] +s0rrow: checks +VanBuren44: bets 1600 +s0rrow: calls 1600 +*** TURN *** [Qs Td Kh] [2d] +s0rrow: checks +VanBuren44: bets 3200 +s0rrow: folds +VanBuren44 collected 7750 from pot +*** SUMMARY *** +Total pot 7750 | Rake 0 +Board [Qs Td Kh 2d] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded on the Turn +Seat 5: VanBuren44 (big blind) collected (7750) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 7: misterji folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: OverTheWell folded before Flop (didn't bet) + + + +PokerStars Game #12638914641: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:46:18 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (70912 in chips) +Seat 2: mit5482 (96173 in chips) +Seat 3: scouse21 (69614 in chips) +Seat 4: s0rrow (36845 in chips) +Seat 5: VanBuren44 (33568 in chips) +Seat 6: Angie0502 (7760 in chips) +Seat 7: misterji (25675 in chips) +Seat 8: ACEISGOD (79660 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +VanBuren44: posts small blind 800 +Angie0502: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 3h] +misterji: raises 1925 to 3525 +ACEISGOD: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji collected 5200 from pot +*** SUMMARY *** +Total pot 5200 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: VanBuren44 (small blind) folded before Flop +Seat 6: Angie0502 (big blind) folded before Flop +Seat 7: misterji collected (5200) +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12638919183: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:46:49 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (70762 in chips) +Seat 2: mit5482 (96023 in chips) +Seat 3: scouse21 (69464 in chips) +Seat 4: s0rrow (36695 in chips) +Seat 5: VanBuren44 (32618 in chips) +Seat 6: Angie0502 (6010 in chips) +Seat 7: misterji (29125 in chips) +Seat 8: ACEISGOD (79510 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +misterji: posts the ante 150 +ACEISGOD: posts the ante 150 +Angie0502: posts small blind 800 +misterji: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [9d 8h] +ACEISGOD: raises 4800 to 6400 +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +misterji: raises 22575 to 28975 and is all-in +ACEISGOD: calls 22575 +*** FLOP *** [Kc 7s 9c] +*** TURN *** [Kc 7s 9c] [9h] +*** RIVER *** [Kc 7s 9c 9h] [Kh] +*** SHOW DOWN *** +misterji: shows [Jh Jc] (two pair, Kings and Jacks) +ACEISGOD: shows [Kd Ah] (a full house, Kings full of Nines) +ACEISGOD collected 59950 from pot +*** SUMMARY *** +Total pot 59950 | Rake 0 +Board [Kc 7s 9c 9h Kh] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) folded before Flop (didn't bet) +Seat 6: Angie0502 (small blind) folded before Flop +Seat 7: misterji (big blind) showed [Jh Jc] and lost with two pair, Kings and Jacks +Seat 8: ACEISGOD showed [Kd Ah] and won (59950) with a full house, Kings full of Nines + + + +PokerStars Game #12638926553: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:47:39 (ET) +Table '63858762 32' 9-max Seat #6 is the button +Seat 1: philnkaz (70612 in chips) +Seat 2: mit5482 (95873 in chips) +Seat 3: scouse21 (69314 in chips) +Seat 4: s0rrow (36545 in chips) +Seat 5: VanBuren44 (32468 in chips) +Seat 6: Angie0502 (5060 in chips) +Seat 8: ACEISGOD (110335 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +ACEISGOD: posts the ante 150 +ACEISGOD: posts small blind 800 +philnkaz: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [6s 9s] +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: raises 1600 to 3200 +Angie0502: folds +ACEISGOD: raises 19600 to 22800 +philnkaz: folds +VanBuren44: folds +ACEISGOD collected 9050 from pot +*** SUMMARY *** +Total pot 9050 | Rake 0 +Seat 1: philnkaz (big blind) folded before Flop +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop +Seat 6: Angie0502 (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) collected (9050) + + + +PokerStars Game #12638931310: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIII (800/1600) - 2007/10/15 - 08:48:10 (ET) +Table '63858762 32' 9-max Seat #8 is the button +Seat 1: philnkaz (68862 in chips) +Seat 2: mit5482 (95723 in chips) +Seat 3: scouse21 (69164 in chips) +Seat 4: s0rrow (36395 in chips) +Seat 5: VanBuren44 (29118 in chips) +Seat 6: Angie0502 (4910 in chips) +Seat 8: ACEISGOD (116035 in chips) +philnkaz: posts the ante 150 +mit5482: posts the ante 150 +scouse21: posts the ante 150 +s0rrow: posts the ante 150 +VanBuren44: posts the ante 150 +Angie0502: posts the ante 150 +ACEISGOD: posts the ante 150 +philnkaz: posts small blind 800 +mit5482: posts big blind 1600 +*** HOLE CARDS *** +Dealt to s0rrow [Kh 4d] +scouse21: folds +s0rrow: folds +VanBuren44: folds +Angie0502: folds +ACEISGOD: raises 4800 to 6400 +philnkaz: folds +mit5482: folds +ACEISGOD collected 5050 from pot +ACEISGOD: shows [Ts Th] (a pair of Tens) +*** SUMMARY *** +Total pot 5050 | Rake 0 +Seat 1: philnkaz (small blind) folded before Flop +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) collected (5050) + + + +PokerStars Game #12638939908: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:49:08 (ET) +Table '63858762 32' 9-max Seat #1 is the button +Seat 1: philnkaz (67912 in chips) +Seat 2: mit5482 (93973 in chips) +Seat 3: scouse21 (69014 in chips) +Seat 4: s0rrow (36245 in chips) +Seat 5: VanBuren44 (28968 in chips) +Seat 6: Angie0502 (4760 in chips) +Seat 8: ACEISGOD (119335 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +Angie0502: posts the ante 200 +ACEISGOD: posts the ante 200 +mit5482: posts small blind 1000 +scouse21: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [2c Kh] +s0rrow: folds +VanBuren44: folds +Angie0502: folds +ACEISGOD: folds +philnkaz: folds +philnkaz said, "NH" +mit5482: folds +scouse21 collected 3400 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 3400 | Rake 0 +Seat 1: philnkaz (button) folded before Flop (didn't bet) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: scouse21 (big blind) collected (3400) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12638942853: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:49:28 (ET) +Table '63858762 32' 9-max Seat #2 is the button +Seat 1: philnkaz (67712 in chips) +Seat 2: mit5482 (92773 in chips) +Seat 3: scouse21 (71214 in chips) +Seat 4: s0rrow (36045 in chips) +Seat 5: VanBuren44 (28768 in chips) +Seat 6: Angie0502 (4560 in chips) +Seat 8: ACEISGOD (119135 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +Angie0502: posts the ante 200 +ACEISGOD: posts the ante 200 +scouse21: posts small blind 1000 +s0rrow: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 7h] +VanBuren44: folds +Angie0502: folds +ACEISGOD said, "thx" +ACEISGOD: folds +philnkaz: folds +mit5482: calls 2000 +scouse21: calls 1000 +s0rrow: checks +*** FLOP *** [Kc Kh 6h] +scouse21: checks +s0rrow: checks +mit5482: bets 4000 +scouse21: calls 4000 +s0rrow: calls 4000 +*** TURN *** [Kc Kh 6h] [2d] +scouse21: checks +s0rrow: checks +mit5482: bets 4000 +scouse21: raises 6000 to 10000 +s0rrow: folds +mit5482: folds +scouse21 collected 27400 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 27400 | Rake 0 +Board [Kc Kh 6h 2d] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded on the Turn +Seat 3: scouse21 (small blind) collected (27400) +Seat 4: s0rrow (big blind) folded on the Turn +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: Angie0502 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12638951705: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:50:27 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (67512 in chips) +Seat 2: mit5482 (82573 in chips) +Seat 3: scouse21 (88414 in chips) +Seat 4: s0rrow (29845 in chips) +Seat 5: VanBuren44 (28568 in chips) +Seat 6: Angie0502 (4360 in chips) +Seat 8: ACEISGOD (118935 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +Angie0502: posts the ante 200 +ACEISGOD: posts the ante 200 +s0rrow: posts small blind 1000 +VanBuren44: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [3d 7h] +Angie0502: raises 2160 to 4160 and is all-in +ACEISGOD: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: calls 2160 +*** FLOP *** [7c As Qh] +Angie0502 said, "gl all" +Angie0502 said, ":-)" +*** TURN *** [7c As Qh] [6h] +*** RIVER *** [7c As Qh 6h] [9s] +Angie0502 said, "nice1" +*** SHOW DOWN *** +VanBuren44: shows [Js Ac] (a pair of Aces) +Angie0502: shows [Kh Jc] (high card Ace) +VanBuren44 collected 10720 from pot +philnkaz said, "GG" +*** SUMMARY *** +Total pot 10720 | Rake 0 +Board [7c As Qh 6h 9s] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: VanBuren44 (big blind) showed [Js Ac] and won (10720) with a pair of Aces +Seat 6: Angie0502 showed [Kh Jc] and lost with high card Ace +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12638958372: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:51:11 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (67312 in chips) +Seat 2: mit5482 (82373 in chips) +Seat 3: scouse21 (88214 in chips) +Seat 4: s0rrow (28645 in chips) +Seat 5: VanBuren44 (34928 in chips) +Seat 6: GoldeNEyE0o7 (63227 in chips) +Seat 8: ACEISGOD (118735 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +ACEISGOD: posts the ante 200 +VanBuren44: posts small blind 1000 +GoldeNEyE0o7: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [5d Ad] +ACEISGOD: folds +ACEISGOD said, "ty" +philnkaz: raises 4000 to 6000 +ACEISGOD said, "gg" +scouse21 said, "tx" +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +scouse21 said, "golden still here eye see" +GoldeNEyE0o7: folds +philnkaz collected 6400 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 6400 | Rake 0 +Seat 1: philnkaz collected (6400) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: VanBuren44 (small blind) folded before Flop +Seat 6: GoldeNEyE0o7 (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12638964105: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:51:49 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (71512 in chips) +Seat 2: mit5482 (82173 in chips) +Seat 3: scouse21 (88014 in chips) +Seat 4: s0rrow (28445 in chips) +Seat 5: VanBuren44 (33728 in chips) +Seat 6: GoldeNEyE0o7 (61027 in chips) +Seat 8: ACEISGOD (118535 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +ACEISGOD: posts the ante 200 +GoldeNEyE0o7: posts small blind 1000 +ACEISGOD: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [3s 7c] +GoldeNEyE0o7 said, "ya" +GoldeNEyE0o7 said, "gl" +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +scouse21 said, "need it" +ACEISGOD collected 3400 from pot +scouse21 said, "u2" +*** SUMMARY *** +Total pot 3400 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) collected (3400) + + + +PokerStars Game #12638968047: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:52:16 (ET) +Table '63858762 32' 9-max Seat #6 is the button +Seat 1: philnkaz (71312 in chips) +Seat 2: mit5482 (81973 in chips) +Seat 3: scouse21 (87814 in chips) +Seat 4: s0rrow (28245 in chips) +Seat 5: VanBuren44 (33528 in chips) +Seat 6: GoldeNEyE0o7 (59827 in chips) +Seat 8: ACEISGOD (120735 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +ACEISGOD: posts the ante 200 +ACEISGOD: posts small blind 1000 +philnkaz: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [6h 2h] +GoldeNEyE0o7 said, "ty" +mit5482: folds +scouse21: raises 2000 to 4000 +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +ACEISGOD: folds +philnkaz: folds +scouse21 collected 6400 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 6400 | Rake 0 +Seat 1: philnkaz (big blind) folded before Flop +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 collected (6400) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) folded before Flop + + + +PokerStars Game #12638975574: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:53:06 (ET) +Table '63858762 32' 9-max Seat #8 is the button +Seat 1: philnkaz (69112 in chips) +Seat 2: mit5482 (81773 in chips) +Seat 3: scouse21 (92014 in chips) +Seat 4: s0rrow (28045 in chips) +Seat 5: VanBuren44 (33328 in chips) +Seat 6: GoldeNEyE0o7 (59627 in chips) +Seat 8: ACEISGOD (119535 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +ACEISGOD: posts the ante 200 +philnkaz: posts small blind 1000 +mit5482: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [Jd Ts] +scouse21: calls 2000 +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: calls 2000 +ACEISGOD: folds +philnkaz: calls 1000 +mit5482: checks +*** FLOP *** [3h 9h Kc] +scouse21 said, "dont bet against me" +philnkaz: bets 6000 +mit5482: folds +scouse21: calls 6000 +GoldeNEyE0o7: folds +*** TURN *** [3h 9h Kc] [Qc] +philnkaz: checks +scouse21: bets 6000 +philnkaz: calls 6000 +*** RIVER *** [3h 9h Kc Qc] [2h] +philnkaz: checks +scouse21: bets 10000 +philnkaz: calls 10000 +*** SHOW DOWN *** +scouse21: shows [Jh Th] (a flush, Jack high) +philnkaz: mucks hand +scouse21 collected 53400 from pot +*** SUMMARY *** +Total pot 53400 | Rake 0 +Board [3h 9h Kc Qc 2h] +Seat 1: philnkaz (small blind) mucked [Ks 6s] +Seat 2: mit5482 (big blind) folded on the Flop +Seat 3: scouse21 showed [Jh Th] and won (53400) with a flush, Jack high +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded on the Flop +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) + + + +PokerStars Game #12638984645: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:54:07 (ET) +Table '63858762 32' 9-max Seat #1 is the button +Seat 1: philnkaz (44912 in chips) +Seat 2: mit5482 (79573 in chips) +Seat 3: scouse21 (121214 in chips) +Seat 4: s0rrow (27845 in chips) +Seat 5: VanBuren44 (33128 in chips) +Seat 6: GoldeNEyE0o7 (57427 in chips) +Seat 8: ACEISGOD (119335 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +ACEISGOD: posts the ante 200 +mit5482: posts small blind 1000 +scouse21: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [9d Ac] +GoldeNEyE0o7 said, "vnh" +s0rrow: calls 2000 +VanBuren44: folds +scouse21 said, "ty" +GoldeNEyE0o7: folds +ACEISGOD: folds +philnkaz: raises 4000 to 6000 +mit5482: folds +scouse21: folds +s0rrow: calls 4000 +*** FLOP *** [8s Qh 4s] +s0rrow: checks +philnkaz: bets 10000 +s0rrow: folds +philnkaz collected 16400 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 16400 | Rake 0 +Board [8s Qh 4s] +Seat 1: philnkaz (button) collected (16400) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: scouse21 (big blind) folded before Flop +Seat 4: s0rrow folded on the Flop +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12638989918: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:54:42 (ET) +Table '63858762 32' 9-max Seat #2 is the button +Seat 1: philnkaz (55112 in chips) +Seat 2: mit5482 (78373 in chips) +Seat 3: scouse21 (119014 in chips) +Seat 4: s0rrow (21645 in chips) +Seat 5: VanBuren44 (32928 in chips) +Seat 6: GoldeNEyE0o7 (57227 in chips) +Seat 8: ACEISGOD (119135 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +ACEISGOD: posts the ante 200 +scouse21: posts small blind 1000 +s0rrow: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [4h 7d] +VanBuren44: folds +GoldeNEyE0o7: folds +ACEISGOD: folds +philnkaz: folds +mit5482: calls 2000 +scouse21: calls 1000 +s0rrow: checks +*** FLOP *** [Td 7c 8s] +scouse21: checks +s0rrow: bets 6000 +mit5482: folds +scouse21: folds +s0rrow collected 7400 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 7400 | Rake 0 +Board [Td 7c 8s] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded on the Flop +Seat 3: scouse21 (small blind) folded on the Flop +Seat 4: s0rrow (big blind) collected (7400) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12638997066: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:55:30 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (54912 in chips) +Seat 2: mit5482 (76173 in chips) +Seat 3: scouse21 (116814 in chips) +Seat 4: s0rrow (26845 in chips) +Seat 5: VanBuren44 (32728 in chips) +Seat 6: GoldeNEyE0o7 (57027 in chips) +Seat 8: ACEISGOD (118935 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +ACEISGOD: posts the ante 200 +s0rrow: posts small blind 1000 +VanBuren44: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [9d Ks] +GoldeNEyE0o7: folds +ACEISGOD: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: calls 1000 +VanBuren44: checks +*** FLOP *** [Js 4d 3h] +s0rrow: checks +VanBuren44: checks +*** TURN *** [Js 4d 3h] [Jd] +s0rrow: checks +VanBuren44: checks +*** RIVER *** [Js 4d 3h Jd] [5d] +s0rrow: checks +VanBuren44: checks +*** SHOW DOWN *** +s0rrow: shows [9d Ks] (a pair of Jacks) +VanBuren44: mucks hand +s0rrow collected 5400 from pot +*** SUMMARY *** +Total pot 5400 | Rake 0 +Board [Js 4d 3h Jd 5d] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) showed [9d Ks] and won (5400) with a pair of Jacks +Seat 5: VanBuren44 (big blind) mucked [Th Qh] +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) + + + +PokerStars Game #12639013938: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:57:23 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (54712 in chips) +Seat 2: mit5482 (75973 in chips) +Seat 3: scouse21 (116614 in chips) +Seat 4: s0rrow (30045 in chips) +Seat 5: VanBuren44 (30528 in chips) +Seat 6: GoldeNEyE0o7 (56827 in chips) +Seat 7: El_Pino82 (125637 in chips) +Seat 8: ACEISGOD (118735 in chips) +Seat 9: J.R.66350 (193372 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +El_Pino82: posts the ante 200 +ACEISGOD: posts the ante 200 +J.R.66350: posts the ante 200 +VanBuren44: posts small blind 1000 +GoldeNEyE0o7: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 7h] +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: raises 2000 to 4000 +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: calls 2000 +*** FLOP *** [4d Kh Kd] +GoldeNEyE0o7: bets 3200 +scouse21: folds +GoldeNEyE0o7 collected 10800 from pot +GoldeNEyE0o7: doesn't show hand +*** SUMMARY *** +Total pot 10800 | Rake 0 +Board [4d Kh Kd] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded on the Flop +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: VanBuren44 (small blind) folded before Flop +Seat 6: GoldeNEyE0o7 (big blind) collected (10800) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639022707: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:58:21 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (54512 in chips) +Seat 2: mit5482 (75773 in chips) +Seat 3: scouse21 (112414 in chips) +Seat 4: s0rrow (29845 in chips) +Seat 5: VanBuren44 (29328 in chips) +Seat 6: GoldeNEyE0o7 (63427 in chips) +Seat 7: El_Pino82 (125437 in chips) +Seat 8: ACEISGOD (118535 in chips) +Seat 9: J.R.66350 (193172 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +El_Pino82: posts the ante 200 +ACEISGOD: posts the ante 200 +J.R.66350: posts the ante 200 +GoldeNEyE0o7: posts small blind 1000 +El_Pino82: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 6h] +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: raises 4000 to 6000 +GoldeNEyE0o7: folds +El_Pino82: folds +VanBuren44 collected 6800 from pot +VanBuren44: doesn't show hand +*** SUMMARY *** +Total pot 6800 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) collected (6800) +Seat 6: GoldeNEyE0o7 (small blind) folded before Flop +Seat 7: El_Pino82 (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639027708: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 08:58:55 (ET) +Table '63858762 32' 9-max Seat #6 is the button +Seat 1: philnkaz (54312 in chips) +Seat 2: mit5482 (75573 in chips) +Seat 3: scouse21 (112214 in chips) +Seat 4: s0rrow (29645 in chips) +Seat 5: VanBuren44 (33928 in chips) +Seat 6: GoldeNEyE0o7 (62227 in chips) +Seat 7: El_Pino82 (123237 in chips) +Seat 8: ACEISGOD (118335 in chips) +Seat 9: J.R.66350 (192972 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +El_Pino82: posts the ante 200 +ACEISGOD: posts the ante 200 +J.R.66350: posts the ante 200 +El_Pino82: posts small blind 1000 +ACEISGOD: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [Kd Jd] +J.R.66350: calls 2000 +philnkaz: folds +mit5482: folds +scouse21: calls 2000 +s0rrow: calls 2000 +VanBuren44: folds +GoldeNEyE0o7: calls 2000 +El_Pino82: calls 1000 +ACEISGOD: checks +*** FLOP *** [Td 2h 2s] +El_Pino82: checks +ACEISGOD: checks +J.R.66350: checks +scouse21: checks +s0rrow: checks +GoldeNEyE0o7: checks +*** TURN *** [Td 2h 2s] [5c] +El_Pino82: checks +ACEISGOD: checks +scouse21 said, "go on" +scouse21 said, "u know u want to" +J.R.66350: checks +scouse21: checks +s0rrow: bets 4000 +GoldeNEyE0o7: calls 4000 +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +scouse21: calls 4000 +*** RIVER *** [Td 2h 2s 5c] [Jh] +scouse21: checks +s0rrow: checks +GoldeNEyE0o7: checks +*** SHOW DOWN *** +scouse21: shows [Qd Ks] (a pair of Deuces) +s0rrow: shows [Kd Jd] (two pair, Jacks and Deuces) +GoldeNEyE0o7: shows [8s 8h] (two pair, Eights and Deuces) +GoldeNEyE0o7 said, "god damnit" +s0rrow collected 25800 from pot +*** SUMMARY *** +Total pot 25800 | Rake 0 +Board [Td 2h 2s 5c Jh] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 showed [Qd Ks] and lost with a pair of Deuces +Seat 4: s0rrow showed [Kd Jd] and won (25800) with two pair, Jacks and Deuces +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 (button) showed [8s 8h] and lost with two pair, Eights and Deuces +Seat 7: El_Pino82 (small blind) folded on the Turn +Seat 8: ACEISGOD (big blind) folded on the Turn +Seat 9: J.R.66350 folded on the Turn + + + +PokerStars Game #12639045153: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 09:00:50 (ET) +Table '63858762 32' 9-max Seat #7 is the button +Seat 1: philnkaz (54112 in chips) +Seat 2: mit5482 (75373 in chips) +Seat 3: scouse21 (106014 in chips) +Seat 4: s0rrow (49245 in chips) +Seat 5: VanBuren44 (33728 in chips) +Seat 6: GoldeNEyE0o7 (56027 in chips) +Seat 7: El_Pino82 (121037 in chips) +Seat 8: ACEISGOD (116135 in chips) +Seat 9: J.R.66350 (190772 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +El_Pino82: posts the ante 200 +ACEISGOD: posts the ante 200 +J.R.66350: posts the ante 200 +ACEISGOD: posts small blind 1000 +J.R.66350: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [7h Th] +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +El_Pino82: folds +scouse21 said, "nice pot" +s0rrow said, "lucky" +ACEISGOD: calls 1000 +J.R.66350: raises 2000 to 4000 +ACEISGOD: calls 2000 +*** FLOP *** [4c Td Qd] +GoldeNEyE0o7 said, "i played my 8's all bad wrong icky" +GoldeNEyE0o7 said, "ur hand too scouse" +ACEISGOD: checks +GoldeNEyE0o7 said, "and i f it up lol" +J.R.66350: bets 2000 +ACEISGOD: folds +J.R.66350 collected 9800 from pot +J.R.66350: doesn't show hand +*** SUMMARY *** +Total pot 9800 | Rake 0 +Board [4c Td Qd] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) folded on the Flop +Seat 9: J.R.66350 (big blind) collected (9800) + + + +PokerStars Game #12639052991: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 09:01:41 (ET) +Table '63858762 32' 9-max Seat #8 is the button +Seat 1: philnkaz (53912 in chips) +Seat 2: mit5482 (75173 in chips) +Seat 3: scouse21 (105814 in chips) +Seat 4: s0rrow (49045 in chips) +Seat 5: VanBuren44 (33528 in chips) +Seat 6: GoldeNEyE0o7 (55827 in chips) +Seat 7: El_Pino82 (120837 in chips) +Seat 8: ACEISGOD (111935 in chips) +Seat 9: J.R.66350 (196372 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +El_Pino82: posts the ante 200 +ACEISGOD: posts the ante 200 +J.R.66350: posts the ante 200 +J.R.66350: posts small blind 1000 +philnkaz: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [9d 7s] +mit5482: raises 4000 to 6000 +scouse21 said, "lol" +scouse21: folds +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +scouse21 said, "bet early" +El_Pino82: folds +ACEISGOD: folds +scouse21 said, "snooze u lose" +J.R.66350: calls 5000 +philnkaz: folds +*** FLOP *** [As 2c 9c] +J.R.66350: bets 8000 +mit5482: calls 8000 +*** TURN *** [As 2c 9c] [Jh] +J.R.66350: bets 2000 +mit5482: raises 8000 to 10000 +J.R.66350: calls 8000 +*** RIVER *** [As 2c 9c Jh] [6d] +J.R.66350: checks +mit5482: bets 10000 +scouse21 said, "and i would of lost to u" +J.R.66350: calls 10000 +*** SHOW DOWN *** +mit5482: shows [Ad Kc] (a pair of Aces) +J.R.66350: mucks hand +mit5482 collected 71800 from pot +*** SUMMARY *** +Total pot 71800 | Rake 0 +Board [As 2c 9c Jh 6d] +Seat 1: philnkaz (big blind) folded before Flop +Seat 2: mit5482 showed [Ad Kc] and won (71800) with a pair of Aces +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: J.R.66350 (small blind) mucked [Ac 8s] + + + +PokerStars Game #12639064476: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIV (1000/2000) - 2007/10/15 - 09:02:56 (ET) +Table '63858762 32' 9-max Seat #9 is the button +Seat 1: philnkaz (51712 in chips) +Seat 2: mit5482 (112773 in chips) +Seat 3: scouse21 (105614 in chips) +Seat 4: s0rrow (48845 in chips) +Seat 5: VanBuren44 (33328 in chips) +Seat 6: GoldeNEyE0o7 (55627 in chips) +Seat 7: El_Pino82 (120637 in chips) +Seat 8: ACEISGOD (111735 in chips) +Seat 9: J.R.66350 (162172 in chips) +philnkaz: posts the ante 200 +mit5482: posts the ante 200 +scouse21: posts the ante 200 +s0rrow: posts the ante 200 +VanBuren44: posts the ante 200 +GoldeNEyE0o7: posts the ante 200 +El_Pino82: posts the ante 200 +ACEISGOD: posts the ante 200 +J.R.66350: posts the ante 200 +philnkaz: posts small blind 1000 +mit5482: posts big blind 2000 +*** HOLE CARDS *** +Dealt to s0rrow [7c Ad] +scouse21: calls 2000 +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: calls 1000 +mit5482: checks +*** FLOP *** [Jc Ts Tc] +philnkaz: checks +mit5482: bets 4000 +scouse21: calls 4000 +philnkaz: folds +*** TURN *** [Jc Ts Tc] [5d] +mit5482: bets 4000 +scouse21: calls 4000 +*** RIVER *** [Jc Ts Tc 5d] [7s] +mit5482: bets 10000 +scouse21: calls 10000 +*** SHOW DOWN *** +mit5482: shows [2h As] (a pair of Tens) +scouse21: shows [Jd Qh] (two pair, Jacks and Tens) +scouse21 collected 43800 from pot +*** SUMMARY *** +Total pot 43800 | Rake 0 +Board [Jc Ts Tc 5d 7s] +Seat 1: philnkaz (small blind) folded on the Flop +Seat 2: mit5482 (big blind) showed [2h As] and lost with a pair of Tens +Seat 3: scouse21 showed [Jd Qh] and won (43800) with two pair, Jacks and Tens +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639071715: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:03:44 (ET) +Table '63858762 32' 9-max Seat #1 is the button +Seat 1: philnkaz (49512 in chips) +Seat 2: mit5482 (92573 in chips) +Seat 3: scouse21 (129214 in chips) +Seat 4: s0rrow (48645 in chips) +Seat 5: VanBuren44 (33128 in chips) +Seat 6: GoldeNEyE0o7 (55427 in chips) +Seat 7: El_Pino82 (120437 in chips) +Seat 8: ACEISGOD (111535 in chips) +Seat 9: J.R.66350 (161972 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +mit5482: posts small blind 1500 +scouse21: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [8d Qs] +s0rrow: folds +VanBuren44: raises 6000 to 9000 +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: folds +VanBuren44 collected 10200 from pot +VanBuren44: doesn't show hand +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: philnkaz (button) folded before Flop (didn't bet) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: scouse21 (big blind) folded before Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 collected (10200) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639075259: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:04:07 (ET) +Table '63858762 32' 9-max Seat #2 is the button +Seat 1: philnkaz (49212 in chips) +Seat 2: mit5482 (90773 in chips) +Seat 3: scouse21 (125914 in chips) +Seat 4: s0rrow (48345 in chips) +Seat 5: VanBuren44 (40028 in chips) +Seat 6: GoldeNEyE0o7 (55127 in chips) +Seat 7: El_Pino82 (120137 in chips) +Seat 8: ACEISGOD (111235 in chips) +Seat 9: J.R.66350 (161672 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +scouse21: posts small blind 1500 +s0rrow: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [4c Ks] +VanBuren44: folds +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: raises 6000 to 9000 +mit5482: folds +scouse21: folds +s0rrow: folds +philnkaz collected 10200 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: philnkaz collected (10200) +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: scouse21 (small blind) folded before Flop +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639079083: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:04:33 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (56112 in chips) +Seat 2: mit5482 (90473 in chips) +Seat 3: scouse21 (124114 in chips) +Seat 4: s0rrow (45045 in chips) +Seat 5: VanBuren44 (39728 in chips) +Seat 6: GoldeNEyE0o7 (54827 in chips) +Seat 7: El_Pino82 (119837 in chips) +Seat 8: ACEISGOD (110935 in chips) +Seat 9: J.R.66350 (161372 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +s0rrow: posts small blind 1500 +VanBuren44: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [2c Td] +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD: raises 5000 to 8000 +J.R.66350: folds +philnkaz: folds +mit5482: calls 8000 +scouse21: folds +s0rrow: folds +VanBuren44: folds +*** FLOP *** [7s 4c Jc] +ACEISGOD: bets 10500 +mit5482: calls 10500 +*** TURN *** [7s 4c Jc] [8d] +ACEISGOD: checks +mit5482: bets 9000 +ACEISGOD: calls 9000 +*** RIVER *** [7s 4c Jc 8d] [Kc] +ACEISGOD: checks +mit5482: bets 15000 +ACEISGOD: calls 15000 +*** SHOW DOWN *** +mit5482: shows [9c 9d] (a pair of Nines) +ACEISGOD: shows [Qc Jd] (a pair of Jacks) +ACEISGOD collected 92200 from pot +*** SUMMARY *** +Total pot 92200 | Rake 0 +Board [7s 4c Jc 8d Kc] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 showed [9c 9d] and lost with a pair of Nines +Seat 3: scouse21 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: VanBuren44 (big blind) folded before Flop +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD showed [Qc Jd] and won (92200) with a pair of Jacks +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639087136: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:05:25 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (55812 in chips) +Seat 2: mit5482 (47673 in chips) +Seat 3: scouse21 (123814 in chips) +Seat 4: s0rrow (43245 in chips) +Seat 5: VanBuren44 (36428 in chips) +Seat 6: GoldeNEyE0o7 (54527 in chips) +Seat 7: El_Pino82 (119537 in chips) +Seat 8: ACEISGOD (160335 in chips) +Seat 9: J.R.66350 (161072 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +VanBuren44: posts small blind 1500 +GoldeNEyE0o7: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [4s Kh] +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7 collected 5700 from pot +*** SUMMARY *** +Total pot 5700 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: VanBuren44 (small blind) folded before Flop +Seat 6: GoldeNEyE0o7 (big blind) collected (5700) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639091074: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:05:51 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (55512 in chips) +Seat 2: mit5482 (47373 in chips) +Seat 3: scouse21 (123514 in chips) +Seat 4: s0rrow (42945 in chips) +Seat 5: VanBuren44 (34628 in chips) +Seat 6: GoldeNEyE0o7 (58427 in chips) +Seat 7: El_Pino82 (119237 in chips) +Seat 8: ACEISGOD (160035 in chips) +Seat 9: J.R.66350 (160772 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +GoldeNEyE0o7: posts small blind 1500 +El_Pino82: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [7h Qh] +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: raises 3000 to 6000 +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +El_Pino82: folds +scouse21 collected 10200 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 collected (10200) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 (small blind) folded before Flop +Seat 7: El_Pino82 (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639095100: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:06:18 (ET) +Table '63858762 32' 9-max Seat #6 is the button +Seat 1: philnkaz (55212 in chips) +Seat 2: mit5482 (47073 in chips) +Seat 3: scouse21 (130414 in chips) +Seat 4: s0rrow (42645 in chips) +Seat 5: VanBuren44 (34328 in chips) +Seat 6: GoldeNEyE0o7 (56627 in chips) +Seat 7: El_Pino82 (115937 in chips) +Seat 8: ACEISGOD (159735 in chips) +Seat 9: J.R.66350 (160472 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +El_Pino82: posts small blind 1500 +ACEISGOD: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [5c 3h] +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: raises 3000 to 6000 +El_Pino82: calls 4500 +ACEISGOD: raises 15000 to 21000 +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD collected 20700 from pot +*** SUMMARY *** +Total pot 20700 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 (button) folded before Flop +Seat 7: El_Pino82 (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) collected (20700) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639104368: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:07:18 (ET) +Table '63858762 32' 9-max Seat #7 is the button +Seat 1: philnkaz (54912 in chips) +Seat 2: mit5482 (46773 in chips) +Seat 3: scouse21 (130114 in chips) +Seat 4: s0rrow (42345 in chips) +Seat 5: VanBuren44 (34028 in chips) +Seat 6: GoldeNEyE0o7 (50327 in chips) +Seat 7: El_Pino82 (109637 in chips) +Seat 8: ACEISGOD (174135 in chips) +Seat 9: J.R.66350 (160172 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +ACEISGOD: posts small blind 1500 +J.R.66350: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [2c 5s] +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: raises 47027 to 50027 and is all-in +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +GoldeNEyE0o7 collected 10200 from pot +GoldeNEyE0o7: doesn't show hand +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 collected (10200) +Seat 7: El_Pino82 (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) folded before Flop +Seat 9: J.R.66350 (big blind) folded before Flop + + + +PokerStars Game #12639108544: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:07:45 (ET) +Table '63858762 32' 9-max Seat #8 is the button +Seat 1: philnkaz (54612 in chips) +Seat 2: mit5482 (46473 in chips) +Seat 3: scouse21 (129814 in chips) +Seat 4: s0rrow (42045 in chips) +Seat 5: VanBuren44 (33728 in chips) +Seat 6: GoldeNEyE0o7 (57227 in chips) +Seat 7: El_Pino82 (109337 in chips) +Seat 8: ACEISGOD (172335 in chips) +Seat 9: J.R.66350 (156872 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +J.R.66350: posts small blind 1500 +philnkaz: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [7h Kh] +mit5482: folds +scouse21: raises 3000 to 6000 +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +scouse21 collected 10200 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: philnkaz (big blind) folded before Flop +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 collected (10200) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: J.R.66350 (small blind) folded before Flop + + + +PokerStars Game #12639111482: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:08:04 (ET) +Table '63858762 32' 9-max Seat #9 is the button +Seat 1: philnkaz (51312 in chips) +Seat 2: mit5482 (46173 in chips) +Seat 3: scouse21 (136714 in chips) +Seat 4: s0rrow (41745 in chips) +Seat 5: VanBuren44 (33428 in chips) +Seat 6: GoldeNEyE0o7 (56927 in chips) +Seat 7: El_Pino82 (109037 in chips) +Seat 8: ACEISGOD (172035 in chips) +Seat 9: J.R.66350 (155072 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +philnkaz: posts small blind 1500 +mit5482: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [4c Qh] +scouse21: folds +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: raises 6000 to 9000 +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +GoldeNEyE0o7 collected 10200 from pot +GoldeNEyE0o7: shows [Jd Jh] (a pair of Jacks) +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: philnkaz (small blind) folded before Flop +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 collected (10200) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639115733: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:08:32 (ET) +Table '63858762 32' 9-max Seat #1 is the button +Seat 1: philnkaz (49512 in chips) +Seat 2: mit5482 (42873 in chips) +Seat 3: scouse21 (136414 in chips) +Seat 4: s0rrow (41445 in chips) +Seat 5: VanBuren44 (33128 in chips) +Seat 6: GoldeNEyE0o7 (63827 in chips) +Seat 7: El_Pino82 (108737 in chips) +Seat 8: ACEISGOD (171735 in chips) +Seat 9: J.R.66350 (154772 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +mit5482: posts small blind 1500 +scouse21: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [4h 3c] +scouse21 said, "lol" +s0rrow: folds +VanBuren44: folds +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: calls 1500 +scouse21: checks +*** FLOP *** [9s 2c 3d] +mit5482: checks +scouse21: checks +*** TURN *** [9s 2c 3d] [4s] +mit5482: bets 6000 +scouse21: folds +mit5482 collected 8700 from pot +*** SUMMARY *** +Total pot 8700 | Rake 0 +Board [9s 2c 3d 4s] +Seat 1: philnkaz (button) folded before Flop (didn't bet) +Seat 2: mit5482 (small blind) collected (8700) +Seat 3: scouse21 (big blind) folded on the Turn +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639120954: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:09:06 (ET) +Table '63858762 32' 9-max Seat #2 is the button +Seat 1: philnkaz (49212 in chips) +Seat 2: mit5482 (48273 in chips) +Seat 3: scouse21 (133114 in chips) +Seat 4: s0rrow (41145 in chips) +Seat 5: VanBuren44 (32828 in chips) +Seat 6: GoldeNEyE0o7 (63527 in chips) +Seat 7: El_Pino82 (108437 in chips) +Seat 8: ACEISGOD (171435 in chips) +Seat 9: J.R.66350 (154472 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +scouse21: posts small blind 1500 +s0rrow: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [2h 9s] +VanBuren44: raises 6000 to 9000 +GoldeNEyE0o7: raises 54227 to 63227 and is all-in +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: calls 23528 and is all-in +*** FLOP *** [7d 5d 5c] +*** TURN *** [7d 5d 5c] [8c] +*** RIVER *** [7d 5d 5c 8c] [5h] +*** SHOW DOWN *** +VanBuren44: shows [Jd Jh] (a full house, Fives full of Jacks) +GoldeNEyE0o7: shows [3s 3h] (a full house, Fives full of Threes) +VanBuren44 collected 72256 from pot +*** SUMMARY *** +Total pot 72256 | Rake 0 +Board [7d 5d 5c 8c 5h] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: scouse21 (small blind) folded before Flop +Seat 4: s0rrow (big blind) folded before Flop +Seat 5: VanBuren44 showed [Jd Jh] and won (72256) with a full house, Fives full of Jacks +Seat 6: GoldeNEyE0o7 showed [3s 3h] and lost with a full house, Fives full of Threes +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639131673: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:10:16 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (48912 in chips) +Seat 2: mit5482 (47973 in chips) +Seat 3: scouse21 (131314 in chips) +Seat 4: s0rrow (37845 in chips) +Seat 5: VanBuren44 (72256 in chips) +Seat 6: GoldeNEyE0o7 (30699 in chips) +Seat 7: El_Pino82 (108137 in chips) +Seat 8: ACEISGOD (171135 in chips) +Seat 9: J.R.66350 (154172 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +s0rrow: posts small blind 1500 +VanBuren44: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [4h 8c] +GoldeNEyE0o7: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: raises 3000 to 6000 +s0rrow: folds +VanBuren44: folds +scouse21 collected 10200 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 (button) collected (10200) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: VanBuren44 (big blind) folded before Flop +Seat 6: GoldeNEyE0o7 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639135223: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:10:39 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (48612 in chips) +Seat 2: mit5482 (47673 in chips) +Seat 3: scouse21 (138214 in chips) +Seat 4: s0rrow (36045 in chips) +Seat 5: VanBuren44 (68956 in chips) +Seat 6: GoldeNEyE0o7 (30399 in chips) +Seat 7: El_Pino82 (107837 in chips) +Seat 8: ACEISGOD (170835 in chips) +Seat 9: J.R.66350 (153872 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +GoldeNEyE0o7: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +VanBuren44: posts small blind 1500 +GoldeNEyE0o7: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [Ad 5c] +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: raises 3000 to 6000 +VanBuren44: folds +GoldeNEyE0o7: raises 24099 to 30099 and is all-in +s0rrow: calls 24099 +*** FLOP *** [6c 9d Ah] +*** TURN *** [6c 9d Ah] [4d] +*** RIVER *** [6c 9d Ah 4d] [Jc] +*** SHOW DOWN *** +GoldeNEyE0o7: shows [Ks Jd] (a pair of Jacks) +s0rrow: shows [Ad 5c] (a pair of Aces) +s0rrow collected 64398 from pot +scouse21 said, "gg" +*** SUMMARY *** +Total pot 64398 | Rake 0 +Board [6c 9d Ah 4d Jc] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow (button) showed [Ad 5c] and won (64398) with a pair of Aces +Seat 5: VanBuren44 (small blind) folded before Flop +Seat 6: GoldeNEyE0o7 (big blind) showed [Ks Jd] and lost with a pair of Jacks +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639142303: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:11:25 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (48312 in chips) +Seat 2: mit5482 (47373 in chips) +Seat 3: scouse21 (137914 in chips) +Seat 4: s0rrow (70044 in chips) +Seat 5: VanBuren44 (67156 in chips) +Seat 7: El_Pino82 (107537 in chips) +Seat 8: ACEISGOD (170535 in chips) +Seat 9: J.R.66350 (153572 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +El_Pino82: posts small blind 1500 +ACEISGOD: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [2d 7h] +J.R.66350: folds +philnkaz: raises 6000 to 9000 +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +El_Pino82: folds +ACEISGOD: folds +philnkaz collected 9900 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 9900 | Rake 0 +Seat 1: philnkaz collected (9900) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) folded before Flop (didn't bet) +Seat 7: El_Pino82 (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639145827: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:11:48 (ET) +Table '63858762 32' 9-max Seat #7 is the button +Seat 1: philnkaz (54912 in chips) +Seat 2: mit5482 (47073 in chips) +Seat 3: scouse21 (137614 in chips) +Seat 4: s0rrow (69744 in chips) +Seat 5: VanBuren44 (66856 in chips) +Seat 7: El_Pino82 (105737 in chips) +Seat 8: ACEISGOD (167235 in chips) +Seat 9: J.R.66350 (153272 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +ACEISGOD: posts small blind 1500 +J.R.66350: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [2d Qd] +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +El_Pino82: folds +ACEISGOD: calls 1500 +J.R.66350: raises 3000 to 6000 +ACEISGOD: raises 18000 to 24000 +J.R.66350: calls 18000 +*** FLOP *** [6d Qs 5s] +ACEISGOD: bets 26000 +J.R.66350: folds +ACEISGOD collected 50400 from pot +*** SUMMARY *** +Total pot 50400 | Rake 0 +Board [6d Qs 5s] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 7: El_Pino82 (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) collected (50400) +Seat 9: J.R.66350 (big blind) folded on the Flop + + + +PokerStars Game #12639154309: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:12:43 (ET) +Table '63858762 32' 9-max Seat #8 is the button +Seat 1: philnkaz (54612 in chips) +Seat 2: mit5482 (46773 in chips) +Seat 3: scouse21 (137314 in chips) +Seat 4: s0rrow (69444 in chips) +Seat 5: VanBuren44 (66556 in chips) +Seat 7: El_Pino82 (105437 in chips) +Seat 8: ACEISGOD (193335 in chips) +Seat 9: J.R.66350 (128972 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +J.R.66350: posts small blind 1500 +philnkaz: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [7d Qc] +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: calls 1500 +philnkaz: checks +*** FLOP *** [2s Qd 5d] +J.R.66350: checks +philnkaz: bets 6000 +J.R.66350: folds +philnkaz collected 8400 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 8400 | Rake 0 +Board [2s Qd 5d] +Seat 1: philnkaz (big blind) collected (8400) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: J.R.66350 (small blind) folded on the Flop + + + +PokerStars Game #12639161236: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:13:28 (ET) +Table '63858762 32' 9-max Seat #9 is the button +Seat 1: philnkaz (59712 in chips) +Seat 2: mit5482 (46473 in chips) +Seat 3: scouse21 (137014 in chips) +Seat 4: s0rrow (69144 in chips) +Seat 5: VanBuren44 (66256 in chips) +Seat 7: El_Pino82 (105137 in chips) +Seat 8: ACEISGOD (193035 in chips) +Seat 9: J.R.66350 (125672 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +philnkaz: posts small blind 1500 +mit5482: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 8c] +scouse21: folds +s0rrow: folds +VanBuren44: folds +El_Pino82: raises 6256 to 9256 +ACEISGOD: calls 9256 +J.R.66350: folds +philnkaz: folds +mit5482: folds +*** FLOP *** [8d Tc Jh] +El_Pino82: checks +ACEISGOD: checks +*** TURN *** [8d Tc Jh] [4s] +El_Pino82: bets 13577 +ACEISGOD: folds +El_Pino82 collected 25412 from pot +El_Pino82: doesn't show hand +*** SUMMARY *** +Total pot 25412 | Rake 0 +Board [8d Tc Jh 4s] +Seat 1: philnkaz (small blind) folded before Flop +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 7: El_Pino82 collected (25412) +Seat 8: ACEISGOD folded on the Turn +Seat 9: J.R.66350 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639169506: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:14:21 (ET) +Table '63858762 32' 9-max Seat #1 is the button +Seat 1: philnkaz (57912 in chips) +Seat 2: mit5482 (43173 in chips) +Seat 3: scouse21 (136714 in chips) +Seat 4: s0rrow (68844 in chips) +Seat 5: VanBuren44 (65956 in chips) +Seat 7: El_Pino82 (120993 in chips) +Seat 8: ACEISGOD (183479 in chips) +Seat 9: J.R.66350 (125372 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +mit5482: posts small blind 1500 +scouse21: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [5c 7d] +s0rrow: folds +VanBuren44: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21 collected 5400 from pot +scouse21: doesn't show hand +*** SUMMARY *** +Total pot 5400 | Rake 0 +Seat 1: philnkaz (button) folded before Flop (didn't bet) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: scouse21 (big blind) collected (5400) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639172234: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:14:39 (ET) +Table '63858762 32' 9-max Seat #2 is the button +Seat 1: philnkaz (57612 in chips) +Seat 2: mit5482 (41373 in chips) +Seat 3: scouse21 (140314 in chips) +Seat 4: s0rrow (68544 in chips) +Seat 5: VanBuren44 (65656 in chips) +Seat 7: El_Pino82 (120693 in chips) +Seat 8: ACEISGOD (183179 in chips) +Seat 9: J.R.66350 (125072 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +scouse21: posts small blind 1500 +s0rrow: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [As 5s] +VanBuren44: folds +El_Pino82: folds +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: raises 6000 to 9000 +s0rrow: calls 6000 +*** FLOP *** [7c Ah Js] +scouse21: checks +s0rrow: checks +*** TURN *** [7c Ah Js] [5c] +scouse21: checks +s0rrow: bets 3000 +scouse21: calls 3000 +*** RIVER *** [7c Ah Js 5c] [3d] +scouse21: checks +s0rrow: bets 9000 +scouse21: folds +s0rrow collected 26400 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 26400 | Rake 0 +Board [7c Ah Js 5c 3d] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: scouse21 (small blind) folded on the River +Seat 4: s0rrow (big blind) collected (26400) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 7: El_Pino82 folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639180715: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:15:33 (ET) +Table '63858762 32' 9-max Seat #3 is the button +Seat 1: philnkaz (57312 in chips) +Seat 2: mit5482 (41073 in chips) +Seat 3: scouse21 (128014 in chips) +Seat 4: s0rrow (82644 in chips) +Seat 5: VanBuren44 (65356 in chips) +Seat 7: El_Pino82 (120393 in chips) +Seat 8: ACEISGOD (182879 in chips) +Seat 9: J.R.66350 (124772 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +s0rrow: posts small blind 1500 +VanBuren44: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [4s 7h] +El_Pino82: raises 4965 to 7965 +ACEISGOD: folds +J.R.66350: folds +scouse21 said, "i hate 88" +philnkaz: raises 49047 to 57012 and is all-in +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +El_Pino82: folds +s0rrow said, "a 5" +philnkaz collected 22830 from pot +philnkaz: doesn't show hand +*** SUMMARY *** +Total pot 22830 | Rake 0 +Seat 1: philnkaz collected (22830) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 (button) folded before Flop (didn't bet) +Seat 4: s0rrow (small blind) folded before Flop +Seat 5: VanBuren44 (big blind) folded before Flop +Seat 7: El_Pino82 folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639190628: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:16:36 (ET) +Table '63858762 32' 9-max Seat #4 is the button +Seat 1: philnkaz (71877 in chips) +Seat 2: mit5482 (40773 in chips) +Seat 3: scouse21 (127714 in chips) +Seat 4: s0rrow (80844 in chips) +Seat 5: VanBuren44 (62056 in chips) +Seat 7: El_Pino82 (112128 in chips) +Seat 8: ACEISGOD (182579 in chips) +Seat 9: J.R.66350 (124472 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +VanBuren44: posts small blind 1500 +El_Pino82: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [Kc 7s] +ACEISGOD: folds +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: calls 3000 +s0rrow: folds +VanBuren44: folds +El_Pino82: checks +*** FLOP *** [Qc 5s 2s] +El_Pino82: checks +scouse21: bets 3000 +El_Pino82: calls 3000 +*** TURN *** [Qc 5s 2s] [4h] +El_Pino82: checks +scouse21: bets 9000 +El_Pino82: calls 9000 +*** RIVER *** [Qc 5s 2s 4h] [Ks] +El_Pino82: checks +scouse21: checks +*** SHOW DOWN *** +El_Pino82: shows [5d 3c] (a pair of Fives) +scouse21: shows [Jh Qs] (a pair of Queens) +scouse21 collected 33900 from pot +*** SUMMARY *** +Total pot 33900 | Rake 0 +Board [Qc 5s 2s 4h Ks] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 showed [Jh Qs] and won (33900) with a pair of Queens +Seat 4: s0rrow (button) folded before Flop (didn't bet) +Seat 5: VanBuren44 (small blind) folded before Flop +Seat 7: El_Pino82 (big blind) showed [5d 3c] and lost with a pair of Fives +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639196563: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:17:14 (ET) +Table '63858762 32' 9-max Seat #5 is the button +Seat 1: philnkaz (71577 in chips) +Seat 2: mit5482 (40473 in chips) +Seat 3: scouse21 (146314 in chips) +Seat 4: s0rrow (80544 in chips) +Seat 5: VanBuren44 (60256 in chips) +Seat 7: El_Pino82 (96828 in chips) +Seat 8: ACEISGOD (182279 in chips) +Seat 9: J.R.66350 (124172 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +El_Pino82: posts small blind 1500 +ACEISGOD: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [Th 9h] +J.R.66350: folds +philnkaz: folds +mit5482: folds +scouse21: calls 3000 +s0rrow: folds +VanBuren44: raises 9000 to 12000 +El_Pino82: folds +ACEISGOD: folds +scouse21: folds +VanBuren44 collected 12900 from pot +VanBuren44: doesn't show hand +*** SUMMARY *** +Total pot 12900 | Rake 0 +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 (button) collected (12900) +Seat 7: El_Pino82 (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639200044: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XV (1500/3000) - 2007/10/15 - 09:17:37 (ET) +Table '63858762 32' 9-max Seat #7 is the button +Seat 1: philnkaz (71277 in chips) +Seat 2: mit5482 (40173 in chips) +Seat 3: scouse21 (143014 in chips) +Seat 4: s0rrow (80244 in chips) +Seat 5: VanBuren44 (69856 in chips) +Seat 7: El_Pino82 (95028 in chips) +Seat 8: ACEISGOD (178979 in chips) +Seat 9: J.R.66350 (123872 in chips) +philnkaz: posts the ante 300 +mit5482: posts the ante 300 +scouse21: posts the ante 300 +s0rrow: posts the ante 300 +VanBuren44: posts the ante 300 +El_Pino82: posts the ante 300 +ACEISGOD: posts the ante 300 +J.R.66350: posts the ante 300 +ACEISGOD: posts small blind 1500 +J.R.66350: posts big blind 3000 +*** HOLE CARDS *** +Dealt to s0rrow [7s 3h] +philnkaz: folds +mit5482: folds +scouse21: folds +s0rrow: folds +VanBuren44: folds +El_Pino82: raises 6000 to 9000 +ACEISGOD: folds +J.R.66350: calls 6000 +*** FLOP *** [Th 5h 6c] +J.R.66350: checks +El_Pino82: bets 9500 +J.R.66350: folds +El_Pino82 collected 21900 from pot +*** SUMMARY *** +Total pot 21900 | Rake 0 +Board [Th 5h 6c] +Seat 1: philnkaz folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: scouse21 folded before Flop (didn't bet) +Seat 4: s0rrow folded before Flop (didn't bet) +Seat 5: VanBuren44 folded before Flop (didn't bet) +Seat 7: El_Pino82 (button) collected (21900) +Seat 8: ACEISGOD (small blind) folded before Flop +Seat 9: J.R.66350 (big blind) folded on the Flop + + + +PokerStars Game #12639212780: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:18:58 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (257796 in chips) +Seat 2: BlindBurt (125112 in chips) +Seat 3: billyem (208473 in chips) +Seat 4: batscarer (149834 in chips) +Seat 5: donkey (44013 in chips) +Seat 6: ethegreat1 (164758 in chips) +Seat 7: s0rrow (79944 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +billyem: posts small blind 2000 +batscarer: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [Kh Tc] +donkey: folds +ethegreat1: calls 4000 +s0rrow: folds +Girlie007: folds +BlindBurt: raises 11000 to 15000 +billyem: folds +batscarer: folds +ethegreat1: folds +BlindBurt collected 16800 from pot +*** SUMMARY *** +Total pot 16800 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt (button) collected (16800) +Seat 3: billyem (small blind) folded before Flop +Seat 4: batscarer (big blind) folded before Flop +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639217710: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:19:29 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (257396 in chips) +Seat 2: BlindBurt (137512 in chips) +Seat 3: billyem (206073 in chips) +Seat 4: batscarer (145434 in chips) +Seat 5: donkey (43613 in chips) +Seat 6: ethegreat1 (160358 in chips) +Seat 7: s0rrow (79544 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +batscarer: posts small blind 2000 +donkey: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [7d 6c] +ethegreat1: raises 6000 to 10000 +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1 collected 12800 from pot +*** SUMMARY *** +Total pot 12800 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: batscarer (small blind) folded before Flop +Seat 5: donkey (big blind) folded before Flop +Seat 6: ethegreat1 collected (12800) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639223172: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:20:04 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (256996 in chips) +Seat 2: BlindBurt (137112 in chips) +Seat 3: billyem (205673 in chips) +Seat 4: batscarer (143034 in chips) +Seat 5: donkey (39213 in chips) +Seat 6: ethegreat1 (168758 in chips) +Seat 7: s0rrow (79144 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +donkey: posts small blind 2000 +ethegreat1: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 4d] +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: raises 6500 to 10500 +donkey: raises 28313 to 38813 and is all-in +ethegreat1: folds +batscarer: folds +donkey collected 27800 from pot +*** SUMMARY *** +Total pot 27800 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer (button) folded before Flop +Seat 5: donkey (small blind) collected (27800) +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639229292: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:20:43 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (256596 in chips) +Seat 2: BlindBurt (136712 in chips) +Seat 3: billyem (205273 in chips) +Seat 4: batscarer (132134 in chips) +Seat 5: donkey (56113 in chips) +Seat 6: ethegreat1 (164358 in chips) +Seat 7: s0rrow (78744 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +ethegreat1: posts small blind 2000 +s0rrow: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [Qc Kd] +Girlie007: folds +BlindBurt: raises 8000 to 12000 +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: folds +batscarer said, "hate calling with small pairs" +s0rrow: calls 8000 +*** FLOP *** [9d 9h As] +s0rrow: checks +BlindBurt: bets 16000 +s0rrow: folds +BlindBurt collected 28800 from pot +*** SUMMARY *** +Total pot 28800 | Rake 0 +Board [9d 9h As] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt collected (28800) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #12639234977: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:21:19 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (256196 in chips) +Seat 2: BlindBurt (153112 in chips) +Seat 3: billyem (204873 in chips) +Seat 4: batscarer (131734 in chips) +Seat 5: donkey (55713 in chips) +Seat 6: ethegreat1 (161958 in chips) +Seat 7: s0rrow (66344 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +s0rrow: posts small blind 2000 +Girlie007: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [4c Kh] +BlindBurt: folds +billyem: raises 8000 to 12000 +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: folds +Girlie007: folds +billyem collected 12800 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 12800 | Rake 0 +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem collected (12800) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12639239174: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:21:45 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (251796 in chips) +Seat 2: BlindBurt (152712 in chips) +Seat 3: billyem (213273 in chips) +Seat 4: batscarer (131334 in chips) +Seat 5: donkey (55313 in chips) +Seat 6: ethegreat1 (161558 in chips) +Seat 7: s0rrow (63944 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +Girlie007: posts small blind 2000 +BlindBurt: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [4s As] +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: raises 8000 to 12000 +Girlie007: folds +BlindBurt: folds +s0rrow collected 12800 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 12800 | Rake 0 +Seat 1: Girlie007 (small blind) folded before Flop +Seat 2: BlindBurt (big blind) folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) collected (12800) + + + +PokerStars Game #12639242626: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:22:06 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (249396 in chips) +Seat 2: BlindBurt (148312 in chips) +Seat 3: billyem (212873 in chips) +Seat 4: batscarer (130934 in chips) +Seat 5: donkey (54913 in chips) +Seat 6: ethegreat1 (161158 in chips) +Seat 7: s0rrow (72344 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +BlindBurt: posts small blind 2000 +billyem: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [Qc 8s] +batscarer: raises 6500 to 10500 +donkey: folds +ethegreat1: folds +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer collected 12800 from pot +batscarer: doesn't show hand +*** SUMMARY *** +Total pot 12800 | Rake 0 +Seat 1: Girlie007 (button) folded before Flop (didn't bet) +Seat 2: BlindBurt (small blind) folded before Flop +Seat 3: billyem (big blind) folded before Flop +Seat 4: batscarer collected (12800) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639248338: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:22:43 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (248996 in chips) +Seat 2: BlindBurt (145912 in chips) +Seat 3: billyem (208473 in chips) +Seat 4: batscarer (139334 in chips) +Seat 5: donkey (54513 in chips) +Seat 6: ethegreat1 (160758 in chips) +Seat 7: s0rrow (71944 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +billyem: posts small blind 2000 +batscarer: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [4c Js] +donkey: folds +ethegreat1: folds +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: calls 2000 +batscarer: checks +*** FLOP *** [Jh Kh Qc] +billyem: checks +batscarer: bets 6000 +billyem: calls 6000 +*** TURN *** [Jh Kh Qc] [2d] +billyem: checks +batscarer: bets 12000 +billyem: folds +batscarer collected 22800 from pot +batscarer: doesn't show hand +*** SUMMARY *** +Total pot 22800 | Rake 0 +Board [Jh Kh Qc 2d] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded on the Turn +Seat 4: batscarer (big blind) collected (22800) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639260408: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:23:58 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (248596 in chips) +Seat 2: BlindBurt (145512 in chips) +Seat 3: billyem (198073 in chips) +Seat 4: batscarer (151734 in chips) +Seat 5: donkey (54113 in chips) +Seat 6: ethegreat1 (160358 in chips) +Seat 7: s0rrow (71544 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +batscarer: posts small blind 2000 +donkey: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [2d Td] +ethegreat1: raises 8000 to 12000 +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1 collected 12800 from pot +*** SUMMARY *** +Total pot 12800 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: batscarer (small blind) folded before Flop +Seat 5: donkey (big blind) folded before Flop +Seat 6: ethegreat1 collected (12800) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639262926: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:24:14 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (248196 in chips) +Seat 2: BlindBurt (145112 in chips) +Seat 3: billyem (197673 in chips) +Seat 4: batscarer (149334 in chips) +Seat 5: donkey (49713 in chips) +Seat 6: ethegreat1 (168758 in chips) +Seat 7: s0rrow (71144 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +donkey: posts small blind 2000 +ethegreat1: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [9h Kd] +s0rrow: folds +Girlie007: raises 12000 to 16000 +BlindBurt: folds +billyem: calls 16000 +batscarer: folds +donkey: folds +ethegreat1: folds +*** FLOP *** [Tc Js Jd] +Girlie007: checks +billyem: checks +*** TURN *** [Tc Js Jd] [6h] +Girlie007: checks +billyem: checks +*** RIVER *** [Tc Js Jd 6h] [2d] +Girlie007: checks +billyem: checks +*** SHOW DOWN *** +Girlie007: shows [As Ks] (a pair of Jacks) +billyem: mucks hand +Girlie007 collected 40800 from pot +*** SUMMARY *** +Total pot 40800 | Rake 0 +Board [Tc Js Jd 6h 2d] +Seat 1: Girlie007 showed [As Ks] and won (40800) with a pair of Jacks +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem mucked [Ah Qd] +Seat 4: batscarer (button) folded before Flop (didn't bet) +Seat 5: donkey (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639272143: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:25:12 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (272596 in chips) +Seat 2: BlindBurt (144712 in chips) +Seat 3: billyem (181273 in chips) +Seat 4: batscarer (148934 in chips) +Seat 5: donkey (47313 in chips) +Seat 6: ethegreat1 (164358 in chips) +Seat 7: s0rrow (70744 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +ethegreat1: posts small blind 2000 +s0rrow: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [2s Qh] +Girlie007: folds +BlindBurt: folds +billyem: raises 4000 to 8000 +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: folds +billyem collected 12800 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 12800 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem collected (12800) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded before Flop + + + +PokerStars Game #12639275396: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:25:32 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (272196 in chips) +Seat 2: BlindBurt (144312 in chips) +Seat 3: billyem (189673 in chips) +Seat 4: batscarer (148534 in chips) +Seat 5: donkey (46913 in chips) +Seat 6: ethegreat1 (161958 in chips) +Seat 7: s0rrow (66344 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +s0rrow: posts small blind 2000 +Girlie007: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [2c As] +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: calls 4000 +s0rrow: calls 2000 +Girlie007: checks +*** FLOP *** [Qh 7s Js] +s0rrow: checks +Girlie007: checks +ethegreat1: bets 8000 +s0rrow: folds +Girlie007: folds +ethegreat1 collected 14800 from pot +*** SUMMARY *** +Total pot 14800 | Rake 0 +Board [Qh 7s Js] +Seat 1: Girlie007 (big blind) folded on the Flop +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) collected (14800) +Seat 7: s0rrow (small blind) folded on the Flop + + + +PokerStars Game #12639281063: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:26:09 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (267796 in chips) +Seat 2: BlindBurt (143912 in chips) +Seat 3: billyem (189273 in chips) +Seat 4: batscarer (148134 in chips) +Seat 5: donkey (46513 in chips) +Seat 6: ethegreat1 (172358 in chips) +Seat 7: s0rrow (61944 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +Girlie007: posts small blind 2000 +BlindBurt: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [6s 5s] +billyem: calls 4000 +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: folds +Girlie007: calls 2000 +BlindBurt: checks +*** FLOP *** [7s 9s 8c] +Girlie007: checks +BlindBurt: bets 9999 +billyem: folds +Girlie007: folds +BlindBurt collected 14800 from pot +*** SUMMARY *** +Total pot 14800 | Rake 0 +Board [7s 9s 8c] +Seat 1: Girlie007 (small blind) folded on the Flop +Seat 2: BlindBurt (big blind) collected (14800) +Seat 3: billyem folded on the Flop +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639286143: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:26:41 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (263396 in chips) +Seat 2: BlindBurt (154312 in chips) +Seat 3: billyem (184873 in chips) +Seat 4: batscarer (147734 in chips) +Seat 5: donkey (46113 in chips) +Seat 6: ethegreat1 (171958 in chips) +Seat 7: s0rrow (61544 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +BlindBurt: posts small blind 2000 +billyem: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [3s Qc] +batscarer: raises 6000 to 10000 +donkey: folds +ethegreat1: calls 10000 +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +*** FLOP *** [As 8c Jd] +batscarer: checks +ethegreat1: checks +*** TURN *** [As 8c Jd] [4c] +batscarer: checks +ethegreat1: bets 14000 +batscarer: folds +ethegreat1 collected 28800 from pot +*** SUMMARY *** +Total pot 28800 | Rake 0 +Board [As 8c Jd 4c] +Seat 1: Girlie007 (button) folded before Flop (didn't bet) +Seat 2: BlindBurt (small blind) folded before Flop +Seat 3: billyem (big blind) folded before Flop +Seat 4: batscarer folded on the Turn +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 collected (28800) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639298090: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:27:56 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (262996 in chips) +Seat 2: BlindBurt (151912 in chips) +Seat 3: billyem (180473 in chips) +Seat 4: batscarer (137334 in chips) +Seat 5: donkey (45713 in chips) +Seat 6: ethegreat1 (190358 in chips) +Seat 7: s0rrow (61144 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +billyem: posts small blind 2000 +batscarer: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [Js Qc] +donkey: raises 41313 to 45313 and is all-in +ethegreat1: folds +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey collected 12800 from pot +*** SUMMARY *** +Total pot 12800 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded before Flop +Seat 4: batscarer (big blind) folded before Flop +Seat 5: donkey collected (12800) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639302761: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:28:26 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (262596 in chips) +Seat 2: BlindBurt (151512 in chips) +Seat 3: billyem (178073 in chips) +Seat 4: batscarer (132934 in chips) +Seat 5: donkey (54113 in chips) +Seat 6: ethegreat1 (189958 in chips) +Seat 7: s0rrow (60744 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +batscarer: posts small blind 2000 +donkey: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [9c 6s] +ethegreat1: folds +s0rrow: folds +Girlie007: folds +BlindBurt: folds +ethegreat1 said, "yes?" +billyem: raises 8000 to 12000 +batscarer: calls 10000 +donkey: folds +*** FLOP *** [6c 9d 7c] +batscarer: checks +billyem: bets 16000 +ethegreat1 said, "indeed i am" +batscarer: calls 16000 +*** TURN *** [6c 9d 7c] [2d] +batscarer: checks +billyem: checks +*** RIVER *** [6c 9d 7c 2d] [3c] +ethegreat1 said, "suburbs of" +batscarer: bets 24000 +ethegreat1 said, "exeter" +billyem: folds +batscarer collected 62800 from pot +batscarer: doesn't show hand +*** SUMMARY *** +Total pot 62800 | Rake 0 +Board [6c 9d 7c 2d 3c] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem (button) folded on the River +Seat 4: batscarer (small blind) collected (62800) +Seat 5: donkey (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639315085: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:29:43 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (262196 in chips) +Seat 2: BlindBurt (151112 in chips) +Seat 3: billyem (149673 in chips) +Seat 4: batscarer (167334 in chips) +Seat 5: donkey (49713 in chips) +Seat 6: ethegreat1 (189558 in chips) +Seat 7: s0rrow (60344 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +donkey: posts small blind 2000 +ethegreat1: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [4c 6d] +ethegreat1 said, "36" +s0rrow: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +BlindBurt said, "ooooooooo same here" +batscarer: folds +donkey: raises 12000 to 16000 +ethegreat1: folds +donkey collected 10800 from pot +*** SUMMARY *** +Total pot 10800 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer (button) folded before Flop (didn't bet) +Seat 5: donkey (small blind) collected (10800) +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639318971: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:30:08 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (261796 in chips) +Seat 2: BlindBurt (150712 in chips) +Seat 3: billyem (149273 in chips) +Seat 4: batscarer (166934 in chips) +Seat 5: donkey (56113 in chips) +Seat 6: ethegreat1 (185158 in chips) +Seat 7: s0rrow (59944 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +ethegreat1: posts small blind 2000 +s0rrow: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [3h Td] +Girlie007: raises 8000 to 12000 +ethegreat1 said, "ty" +BlindBurt: calls 12000 +ethegreat1 said, "im feeling old burt" +BlindBurt said, "im feeling tired" +billyem: folds +batscarer: folds +donkey: folds +ethegreat1 said, "lol" +ethegreat1: calls 10000 +s0rrow: folds +*** FLOP *** [7s 9c 4s] +ethegreat1: checks +Girlie007: bets 32000 +BlindBurt: raises 106312 to 138312 and is all-in +ethegreat1: folds +Girlie007: folds +BlindBurt collected 106800 from pot +rapidrush is connected +thripe is connected +ethegreat1 said, "n1 burt" +*** SUMMARY *** +Total pot 106800 | Rake 0 +Board [7s 9c 4s] +Seat 1: Girlie007 folded on the Flop +Seat 2: BlindBurt collected (106800) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded on the Flop +Seat 7: s0rrow (big blind) folded before Flop + + + +PokerStars Game #12639331484: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:31:24 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (217396 in chips) +Seat 2: BlindBurt (213112 in chips) +Seat 3: billyem (148873 in chips) +Seat 4: batscarer (166534 in chips) +Seat 5: donkey (55713 in chips) +Seat 6: ethegreat1 (172758 in chips) +Seat 7: s0rrow (55544 in chips) +Seat 8: rapidrush (131202 in chips) +Seat 9: thripe (75248 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +rapidrush: posts the ante 400 +thripe: posts the ante 400 +s0rrow: posts small blind 2000 +rapidrush: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 5c] +thripe: folds +Girlie007: raises 8000 to 12000 +BlindBurt: folds +billyem: folds +ethegreat1 said, "KK?" +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: folds +rapidrush: folds +BlindBurt said, "close" +Girlie007 collected 13600 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 13600 | Rake 0 +Seat 1: Girlie007 collected (13600) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: rapidrush (big blind) folded before Flop +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639334679: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:31:45 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (226596 in chips) +Seat 2: BlindBurt (212712 in chips) +Seat 3: billyem (148473 in chips) +Seat 4: batscarer (166134 in chips) +Seat 5: donkey (55313 in chips) +Seat 6: ethegreat1 (172358 in chips) +Seat 7: s0rrow (53144 in chips) +Seat 8: rapidrush (126802 in chips) +Seat 9: thripe (74848 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +rapidrush: posts the ante 400 +thripe: posts the ante 400 +rapidrush: posts small blind 2000 +thripe: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [Kd Td] +Girlie007: folds +BlindBurt: folds +billyem: calls 4000 +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: raises 8000 to 12000 +rapidrush: folds +thripe: folds +billyem: folds +s0rrow collected 17600 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 17600 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) collected (17600) +Seat 8: rapidrush (small blind) folded before Flop +Seat 9: thripe (big blind) folded before Flop + + + +PokerStars Game #12639340371: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:32:21 (ET) +Table '63858762 9' 9-max Seat #8 is the button +Seat 1: Girlie007 (226196 in chips) +Seat 2: BlindBurt (212312 in chips) +Seat 3: billyem (144073 in chips) +Seat 4: batscarer (165734 in chips) +Seat 5: donkey (54913 in chips) +Seat 6: ethegreat1 (171958 in chips) +Seat 7: s0rrow (66344 in chips) +Seat 8: rapidrush (124402 in chips) +Seat 9: thripe (70448 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +rapidrush: posts the ante 400 +thripe: posts the ante 400 +thripe: posts small blind 2000 +Girlie007: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [6d 9h] +BlindBurt: calls 4000 +billyem: folds +batscarer: raises 6500 to 10500 +donkey: folds +ethegreat1: raises 9500 to 20000 +s0rrow: folds +rapidrush: folds +thripe: folds +Girlie007: folds +BlindBurt: folds +batscarer: calls 9500 +*** FLOP *** [6c Qs Jc] +batscarer: checks +ethegreat1: bets 35000 +batscarer: folds +ethegreat1 collected 53600 from pot +*** SUMMARY *** +Total pot 53600 | Rake 0 +Board [6c Qs Jc] +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: BlindBurt folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded on the Flop +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 collected (53600) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush (button) folded before Flop (didn't bet) +Seat 9: thripe (small blind) folded before Flop + + + +PokerStars Game #12639349761: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVI (2000/4000) - 2007/10/15 - 09:33:20 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (221796 in chips) +Seat 2: BlindBurt (207912 in chips) +Seat 3: billyem (143673 in chips) +Seat 4: batscarer (145334 in chips) +Seat 5: donkey (54513 in chips) +Seat 6: ethegreat1 (205158 in chips) +Seat 7: s0rrow (65944 in chips) +Seat 8: rapidrush (124002 in chips) +Seat 9: thripe (68048 in chips) +Girlie007: posts the ante 400 +BlindBurt: posts the ante 400 +billyem: posts the ante 400 +batscarer: posts the ante 400 +donkey: posts the ante 400 +ethegreat1: posts the ante 400 +s0rrow: posts the ante 400 +rapidrush: posts the ante 400 +thripe: posts the ante 400 +Girlie007: posts small blind 2000 +BlindBurt: posts big blind 4000 +*** HOLE CARDS *** +Dealt to s0rrow [3h 5d] +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: folds +rapidrush: folds +thripe: folds +Girlie007: raises 8000 to 12000 +BlindBurt: calls 8000 +*** FLOP *** [8s 6c 2h] +Girlie007: bets 12000 +BlindBurt: folds +Girlie007 collected 27600 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 27600 | Rake 0 +Board [8s 6c 2h] +Seat 1: Girlie007 (small blind) collected (27600) +Seat 2: BlindBurt (big blind) folded on the Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639403019: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:38:54 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (236996 in chips) +Seat 2: BlindBurt (195512 in chips) +Seat 3: billyem (143273 in chips) +Seat 4: batscarer (144934 in chips) +Seat 5: donkey (54113 in chips) +Seat 6: ethegreat1 (204758 in chips) is sitting out +Seat 7: s0rrow (65544 in chips) +Seat 8: rapidrush (123602 in chips) +Seat 9: thripe (67648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +BlindBurt: posts small blind 2500 +billyem: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 5h] +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: folds +rapidrush: calls 5000 +thripe: folds +Girlie007: folds +BlindBurt: calls 2500 +billyem: checks +*** FLOP *** [7c Js 4h] +BlindBurt: checks +billyem: checks +rapidrush: bets 10000 +BlindBurt: folds +billyem: folds +rapidrush collected 19500 from pot +*** SUMMARY *** +Total pot 19500 | Rake 0 +Board [7c Js 4h] +Seat 1: Girlie007 (button) folded before Flop (didn't bet) +Seat 2: BlindBurt (small blind) folded on the Flop +Seat 3: billyem (big blind) folded on the Flop +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush collected (19500) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639410743: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:39:41 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (236496 in chips) +Seat 2: BlindBurt (190012 in chips) +Seat 3: billyem (137773 in chips) +Seat 4: batscarer (144434 in chips) +Seat 5: donkey (53613 in chips) +Seat 6: ethegreat1 (204258 in chips) is sitting out +Seat 7: s0rrow (65044 in chips) +Seat 8: rapidrush (137602 in chips) +Seat 9: thripe (67148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +billyem: posts small blind 2500 +batscarer: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 2d] +donkey: folds +ethegreat1: folds +s0rrow: folds +rapidrush: folds +thripe: folds +ethegreat1 has returned +Girlie007: raises 10000 to 15000 +BlindBurt: folds +billyem: folds +batscarer: calls 10000 +*** FLOP *** [Qc 6c 6d] +batscarer: checks +Girlie007: checks +*** TURN *** [Qc 6c 6d] [5s] +batscarer: bets 15000 +Girlie007: calls 15000 +*** RIVER *** [Qc 6c 6d 5s] [Th] +batscarer: checks +Girlie007: checks +*** SHOW DOWN *** +batscarer: shows [8c 8d] (two pair, Eights and Sixes) +Girlie007: mucks hand +batscarer collected 67000 from pot +*** SUMMARY *** +Total pot 67000 | Rake 0 +Board [Qc 6c 6d 5s Th] +Seat 1: Girlie007 mucked [9c As] +Seat 2: BlindBurt (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded before Flop +Seat 4: batscarer (big blind) showed [8c 8d] and won (67000) with two pair, Eights and Sixes +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639418149: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:40:27 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (205996 in chips) +Seat 2: BlindBurt (189512 in chips) +Seat 3: billyem (134773 in chips) +Seat 4: batscarer (180934 in chips) +Seat 5: donkey (53113 in chips) +Seat 6: ethegreat1 (203758 in chips) +Seat 7: s0rrow (64544 in chips) +Seat 8: rapidrush (137102 in chips) +Seat 9: thripe (66648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +batscarer: posts small blind 2500 +donkey: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [4c Qh] +ethegreat1: folds +s0rrow: folds +rapidrush: folds +thripe: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey collected 9500 from pot +*** SUMMARY *** +Total pot 9500 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: batscarer (small blind) folded before Flop +Seat 5: donkey (big blind) collected (9500) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639424537: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:41:06 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (205496 in chips) +Seat 2: BlindBurt (189012 in chips) +Seat 3: billyem (134273 in chips) +Seat 4: batscarer (177934 in chips) +Seat 5: donkey (59613 in chips) +Seat 6: ethegreat1 (203258 in chips) +Seat 7: s0rrow (64044 in chips) +Seat 8: rapidrush (136602 in chips) +Seat 9: thripe (66148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +donkey: posts small blind 2500 +ethegreat1: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Qc Td] +s0rrow: raises 10000 to 15000 +rapidrush: folds +thripe: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow collected 17000 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 17000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer (button) folded before Flop (didn't bet) +Seat 5: donkey (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow collected (17000) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639428624: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:41:31 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (204996 in chips) +Seat 2: BlindBurt (188512 in chips) +Seat 3: billyem (133773 in chips) +Seat 4: batscarer (177434 in chips) +Seat 5: donkey (56613 in chips) +Seat 6: ethegreat1 (197758 in chips) +Seat 7: s0rrow (75544 in chips) +Seat 8: rapidrush (136102 in chips) +Seat 9: thripe (65648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +ethegreat1: posts small blind 2500 +s0rrow: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [9s Jc] +rapidrush: folds +thripe: raises 7500 to 12500 +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: calls 10000 +s0rrow: folds +*** FLOP *** [6s Kh 3s] +ethegreat1: checks +thripe: bets 18000 +ethegreat1: folds +thripe collected 34500 from pot +thripe: doesn't show hand +*** SUMMARY *** +Total pot 34500 | Rake 0 +Board [6s Kh 3s] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded on the Flop +Seat 7: s0rrow (big blind) folded before Flop +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe collected (34500) + + + +PokerStars Game #12639439020: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:42:34 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (204496 in chips) +Seat 2: BlindBurt (188012 in chips) +Seat 3: billyem (133273 in chips) +Seat 4: batscarer (176934 in chips) +Seat 5: donkey (56113 in chips) +Seat 6: ethegreat1 (184758 in chips) +Seat 7: s0rrow (70044 in chips) +Seat 8: rapidrush (135602 in chips) +Seat 9: thripe (87148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +s0rrow: posts small blind 2500 +rapidrush: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [3s 8c] +thripe: folds +Girlie007: folds +BlindBurt: raises 7999 to 12999 +billyem: calls 12999 +batscarer: folds +donkey: folds +ethegreat1: calls 12999 +s0rrow: folds +rapidrush: calls 7999 +*** FLOP *** [9h 4c 6d] +rapidrush: checks +BlindBurt: checks +billyem: bets 50000 +ethegreat1: folds +rapidrush: folds +BlindBurt: folds +billyem collected 58996 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 58996 | Rake 0 +Board [9h 4c 6d] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded on the Flop +Seat 3: billyem collected (58996) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded on the Flop +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: rapidrush (big blind) folded on the Flop +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639447783: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:43:27 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (203996 in chips) +Seat 2: BlindBurt (174513 in chips) +Seat 3: billyem (178770 in chips) +Seat 4: batscarer (176434 in chips) +Seat 5: donkey (55613 in chips) +Seat 6: ethegreat1 (171259 in chips) +Seat 7: s0rrow (67044 in chips) +Seat 8: rapidrush (122103 in chips) +Seat 9: thripe (86648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +rapidrush: posts small blind 2500 +thripe: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [6s 5c] +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: raises 10000 to 15000 +rapidrush: calls 12500 +thripe: folds +*** FLOP *** [Ts Th Ks] +rapidrush: checks +s0rrow: bets 20000 +rapidrush: calls 20000 +*** TURN *** [Ts Th Ks] [Ac] +rapidrush: checks +s0rrow: bets 31544 and is all-in +rapidrush: folds +s0rrow collected 79500 from pot +*** SUMMARY *** +Total pot 79500 | Rake 0 +Board [Ts Th Ks Ac] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) collected (79500) +Seat 8: rapidrush (small blind) folded on the Turn +Seat 9: thripe (big blind) folded before Flop + + + +PokerStars Game #12639454160: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:44:06 (ET) +Table '63858762 9' 9-max Seat #8 is the button +Seat 1: Girlie007 (203496 in chips) +Seat 2: BlindBurt (174013 in chips) +Seat 3: billyem (178270 in chips) +Seat 4: batscarer (175934 in chips) +Seat 5: donkey (55113 in chips) +Seat 6: ethegreat1 (170759 in chips) +Seat 7: s0rrow (111044 in chips) +Seat 8: rapidrush (86603 in chips) +Seat 9: thripe (81148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +thripe: posts small blind 2500 +Girlie007: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Tc Th] +BlindBurt: folds +billyem: folds +batscarer: raises 10000 to 15000 +donkey: folds +ethegreat1: folds +s0rrow: calls 15000 +rapidrush: folds +thripe: folds +Girlie007: folds +*** FLOP *** [4s Kh 7c] +batscarer: bets 22000 +s0rrow: folds +batscarer collected 42000 from pot +batscarer: doesn't show hand +*** SUMMARY *** +Total pot 42000 | Rake 0 +Board [4s Kh 7c] +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer collected (42000) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded on the Flop +Seat 8: rapidrush (button) folded before Flop (didn't bet) +Seat 9: thripe (small blind) folded before Flop + + + +PokerStars Game #12639462436: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:44:56 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (197996 in chips) +Seat 2: BlindBurt (173513 in chips) +Seat 3: billyem (177770 in chips) +Seat 4: batscarer (202434 in chips) +Seat 5: donkey (54613 in chips) +Seat 6: ethegreat1 (170259 in chips) +Seat 7: s0rrow (95544 in chips) +Seat 8: rapidrush (86103 in chips) +Seat 9: thripe (78148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +Girlie007: posts small blind 2500 +BlindBurt: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Jd Jh] +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: raises 5000 to 10000 +s0rrow: calls 10000 +rapidrush: calls 10000 +thripe: folds +Girlie007: calls 7500 +BlindBurt: calls 5000 +*** FLOP *** [Kh Qh 8s] +Girlie007: checks +BlindBurt: checks +ethegreat1: bets 10000 +s0rrow: folds +rapidrush: folds +Girlie007: raises 10000 to 20000 +BlindBurt: folds +ethegreat1: calls 10000 +*** TURN *** [Kh Qh 8s] [5h] +Girlie007: checks +ethegreat1: checks +*** RIVER *** [Kh Qh 8s 5h] [4h] +Girlie007: checks +ethegreat1: bets 35000 +Girlie007: calls 35000 +*** SHOW DOWN *** +ethegreat1: shows [Ts Js] (high card King) +Girlie007: shows [Kc Ac] (a pair of Kings) +Girlie007 collected 164500 from pot +*** SUMMARY *** +Total pot 164500 | Rake 0 +Board [Kh Qh 8s 5h 4h] +Seat 1: Girlie007 (small blind) showed [Kc Ac] and won (164500) with a pair of Kings +Seat 2: BlindBurt (big blind) folded on the Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 showed [Ts Js] and lost with high card King +Seat 7: s0rrow folded on the Flop +Seat 8: rapidrush folded on the Flop +Seat 9: thripe (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639475471: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:46:14 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (296996 in chips) +Seat 2: BlindBurt (163013 in chips) +Seat 3: billyem (177270 in chips) +Seat 4: batscarer (201934 in chips) +Seat 5: donkey (54113 in chips) +Seat 6: ethegreat1 (104759 in chips) +Seat 7: s0rrow (85044 in chips) +Seat 8: rapidrush (75603 in chips) +Seat 9: thripe (77648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +BlindBurt: posts small blind 2500 +billyem: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Th 3h] +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: folds +rapidrush: folds +thripe: raises 7500 to 12500 +Girlie007: folds +ethegreat1 said, "good call i guess" +BlindBurt: folds +billyem: folds +thripe collected 17000 from pot +thripe: doesn't show hand +*** SUMMARY *** +Total pot 17000 | Rake 0 +Seat 1: Girlie007 (button) folded before Flop (didn't bet) +Seat 2: BlindBurt (small blind) folded before Flop +Seat 3: billyem (big blind) folded before Flop +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe collected (17000) + + + +PokerStars Game #12639480059: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:46:42 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (296496 in chips) +Seat 2: BlindBurt (160013 in chips) +Seat 3: billyem (171770 in chips) +Seat 4: batscarer (201434 in chips) +Seat 5: donkey (53613 in chips) +Seat 6: ethegreat1 (104259 in chips) +Seat 7: s0rrow (84544 in chips) +Seat 8: rapidrush (75103 in chips) +Seat 9: thripe (89148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +billyem: posts small blind 2500 +batscarer: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Ah Jc] +ethegreat1 said, "no hearts and call?" +donkey: folds +ethegreat1: folds +s0rrow: raises 10000 to 15000 +rapidrush: folds +thripe: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: calls 10000 +*** FLOP *** [3h 8s 8h] +BlindBurt said, "probably stoned" +batscarer: checks +s0rrow: bets 20000 +ethegreat1 said, "true" +BlindBurt said, "wish i was....." +batscarer: folds +s0rrow collected 37000 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 37000 | Rake 0 +Board [3h 8s 8h] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded before Flop +Seat 4: batscarer (big blind) folded on the Flop +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow collected (37000) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639489248: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:47:36 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (295996 in chips) +Seat 2: BlindBurt (159513 in chips) +Seat 3: billyem (168770 in chips) +Seat 4: batscarer (185934 in chips) +Seat 5: donkey (53113 in chips) +Seat 6: ethegreat1 (103759 in chips) +Seat 7: s0rrow (106044 in chips) +Seat 8: rapidrush (74603 in chips) +Seat 9: thripe (88648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +batscarer: posts small blind 2500 +donkey: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [3h 6c] +ethegreat1: folds +s0rrow: folds +rapidrush: folds +thripe: folds +Girlie007: folds +BlindBurt: folds +billyem: raises 15000 to 20000 +batscarer: folds +donkey: folds +billyem collected 17000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 17000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem (button) collected (17000) +Seat 4: batscarer (small blind) folded before Flop +Seat 5: donkey (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639493818: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:48:04 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (295496 in chips) +Seat 2: BlindBurt (159013 in chips) +Seat 3: billyem (180270 in chips) +Seat 4: batscarer (182934 in chips) +Seat 5: donkey (47613 in chips) +Seat 6: ethegreat1 (103259 in chips) +Seat 7: s0rrow (105544 in chips) +Seat 8: rapidrush (74103 in chips) +Seat 9: thripe (88148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +donkey: posts small blind 2500 +ethegreat1: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 5d] +s0rrow: folds +rapidrush: folds +thripe: folds +Girlie007: folds +BlindBurt: raises 10000 to 15000 +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: folds +BlindBurt collected 17000 from pot +*** SUMMARY *** +Total pot 17000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt collected (17000) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer (button) folded before Flop (didn't bet) +Seat 5: donkey (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639497135: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:48:23 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (294996 in chips) +Seat 2: BlindBurt (170513 in chips) +Seat 3: billyem (179770 in chips) +Seat 4: batscarer (182434 in chips) +Seat 5: donkey (44613 in chips) +Seat 6: ethegreat1 (97759 in chips) +Seat 7: s0rrow (105044 in chips) +Seat 8: rapidrush (73603 in chips) +Seat 9: thripe (87648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +ethegreat1: posts small blind 2500 +s0rrow: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [7d 2d] +rapidrush: folds +thripe: folds +Girlie007: folds +BlindBurt: raises 10000 to 15000 +billyem: folds +batscarer: raises 20000 to 35000 +donkey: folds +ethegreat1: raises 62259 to 97259 and is all-in +s0rrow: folds +BlindBurt: folds +batscarer: calls 62259 +*** FLOP *** [8d 5s Qs] +*** TURN *** [8d 5s Qs] [Tc] +*** RIVER *** [8d 5s Qs Tc] [Th] +*** SHOW DOWN *** +ethegreat1: shows [Jh Jd] (two pair, Jacks and Tens) +batscarer: shows [Kd Ad] (a pair of Tens) +ethegreat1 collected 219018 from pot +BlindBurt said, "nh" +*** SUMMARY *** +Total pot 219018 | Rake 0 +Board [8d 5s Qs Tc Th] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer showed [Kd Ad] and lost with a pair of Tens +Seat 5: donkey (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) showed [Jh Jd] and won (219018) with two pair, Jacks and Tens +Seat 7: s0rrow (big blind) folded before Flop +Seat 8: rapidrush folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639510482: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:49:42 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (294496 in chips) +Seat 2: BlindBurt (155013 in chips) +Seat 3: billyem (179270 in chips) +Seat 4: batscarer (84675 in chips) +Seat 5: donkey (44113 in chips) +Seat 6: ethegreat1 (219018 in chips) +Seat 7: s0rrow (99544 in chips) +Seat 8: rapidrush (73103 in chips) +Seat 9: thripe (87148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +s0rrow: posts small blind 2500 +rapidrush: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 2c] +ethegreat1 said, "ty" +thripe: folds +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1 said, "i hate coin flips" +ethegreat1: folds +s0rrow: folds +ethegreat1 said, "was hoping he fold pre" +rapidrush collected 9500 from pot +*** SUMMARY *** +Total pot 9500 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: rapidrush (big blind) collected (9500) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639514869: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:50:08 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (293996 in chips) +Seat 2: BlindBurt (154513 in chips) +Seat 3: billyem (178770 in chips) +Seat 4: batscarer (84175 in chips) +Seat 5: donkey (43613 in chips) +Seat 6: ethegreat1 (218518 in chips) +Seat 7: s0rrow (96544 in chips) +Seat 8: rapidrush (79603 in chips) +Seat 9: thripe (86648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +rapidrush: posts the ante 500 +thripe: posts the ante 500 +rapidrush: posts small blind 2500 +thripe: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [2s 8h] +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: calls 5000 +s0rrow: folds +rapidrush: raises 10000 to 15000 +thripe: folds +batscarer said, "tough spot" +ethegreat1: calls 10000 +*** FLOP *** [Kd 5c Qs] +rapidrush: bets 64103 and is all-in +ethegreat1: calls 64103 +*** TURN *** [Kd 5c Qs] [4d] +*** RIVER *** [Kd 5c Qs 4d] [7h] +*** SHOW DOWN *** +rapidrush: shows [As Ac] (a pair of Aces) +ethegreat1: shows [5h 5d] (three of a kind, Fives) +ethegreat1 collected 167706 from pot +BlindBurt said, "nh" +BlindBurt said, "gg" +*** SUMMARY *** +Total pot 167706 | Rake 0 +Board [Kd 5c Qs 4d 7h] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 showed [5h 5d] and won (167706) with three of a kind, Fives +Seat 7: s0rrow (button) folded before Flop (didn't bet) +Seat 8: rapidrush (small blind) showed [As Ac] and lost with a pair of Aces +Seat 9: thripe (big blind) folded before Flop + + + +PokerStars Game #12639524707: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:51:07 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (293496 in chips) +Seat 2: BlindBurt (154013 in chips) +Seat 3: billyem (178270 in chips) +Seat 4: batscarer (83675 in chips) +Seat 5: donkey (43113 in chips) +Seat 6: ethegreat1 (306621 in chips) +Seat 7: s0rrow (96044 in chips) +Seat 9: thripe (81148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +thripe: posts the ante 500 +Girlie007: posts small blind 2500 +BlindBurt: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [5c Ad] +ethegreat1 said, "ty" +billyem: folds +batscarer: folds +donkey: folds +ethegreat1: folds +s0rrow: raises 10000 to 15000 +thripe: folds +Girlie007: folds +BlindBurt: folds +s0rrow collected 16500 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 16500 | Rake 0 +Seat 1: Girlie007 (small blind) folded before Flop +Seat 2: BlindBurt (big blind) folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow collected (16500) +Seat 9: thripe (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639528775: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:51:31 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (290496 in chips) +Seat 2: BlindBurt (148513 in chips) +Seat 3: billyem (177770 in chips) +Seat 4: batscarer (83175 in chips) +Seat 5: donkey (42613 in chips) +Seat 6: ethegreat1 (306121 in chips) +Seat 7: s0rrow (107044 in chips) +Seat 9: thripe (80648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +thripe: posts the ante 500 +BlindBurt: posts small blind 2500 +billyem: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Jh Tc] +batscarer: raises 10000 to 15000 +donkey: folds +ethegreat1: folds +s0rrow: folds +thripe: folds +Girlie007: folds +BlindBurt: folds +billyem: calls 10000 +*** FLOP *** [Kh Td 5s] +billyem: checks +batscarer: checks +*** TURN *** [Kh Td 5s] [3d] +billyem: bets 10000 +batscarer: calls 10000 +*** RIVER *** [Kh Td 5s 3d] [9h] +billyem: bets 152270 and is all-in +batscarer: calls 57675 and is all-in +*** SHOW DOWN *** +billyem: shows [Ts 9s] (two pair, Tens and Nines) +batscarer: shows [3s 3h] (three of a kind, Threes) +batscarer collected 171850 from pot +*** SUMMARY *** +Total pot 171850 | Rake 0 +Board [Kh Td 5s 3d 9h] +Seat 1: Girlie007 (button) folded before Flop (didn't bet) +Seat 2: BlindBurt (small blind) folded before Flop +Seat 3: billyem (big blind) showed [Ts 9s] and lost with two pair, Tens and Nines +Seat 4: batscarer showed [3s 3h] and won (171850) with three of a kind, Threes +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639536605: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:52:17 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (289996 in chips) +Seat 2: BlindBurt (145513 in chips) +Seat 3: billyem (94595 in chips) +Seat 4: batscarer (171850 in chips) +Seat 5: donkey (42113 in chips) +Seat 6: ethegreat1 (305621 in chips) +Seat 7: s0rrow (106544 in chips) +Seat 9: thripe (80148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +thripe: posts the ante 500 +billyem: posts small blind 2500 +batscarer: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [2s 3s] +donkey: folds +ethegreat1: raises 5000 to 10000 +s0rrow: folds +thripe: folds +BlindBurt said, "sets everywhere" +billyem said, "no way" +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: calls 5000 +*** FLOP *** [Jc 9h 2d] +batscarer: checks +ethegreat1: bets 15000 +batscarer: calls 15000 +*** TURN *** [Jc 9h 2d] [7h] +billyem said, "f river" +batscarer: checks +ethegreat1: bets 15000 +batscarer: calls 15000 +*** RIVER *** [Jc 9h 2d 7h] [6s] +batscarer: bets 35000 +ethegreat1: calls 35000 +*** SHOW DOWN *** +batscarer: shows [Ts Qs] (high card Queen) +ethegreat1: shows [As 9s] (a pair of Nines) +ethegreat1 collected 156500 from pot +*** SUMMARY *** +Total pot 156500 | Rake 0 +Board [Jc 9h 2d 7h 6s] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded before Flop +Seat 4: batscarer (big blind) showed [Ts Qs] and lost with high card Queen +Seat 5: donkey folded before Flop (didn't bet) +Seat 6: ethegreat1 showed [As 9s] and won (156500) with a pair of Nines +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639545688: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:53:11 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (289496 in chips) +Seat 2: BlindBurt (145013 in chips) +Seat 3: billyem (91595 in chips) +Seat 4: batscarer (96350 in chips) +Seat 5: donkey (41613 in chips) +Seat 6: ethegreat1 (386621 in chips) +Seat 7: s0rrow (106044 in chips) +Seat 9: thripe (79648 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +thripe: posts the ante 500 +batscarer: posts small blind 2500 +donkey: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [7h Jd] +ethegreat1 said, "nice try" +ethegreat1: folds +s0rrow: folds +thripe: folds +Girlie007: raises 15000 to 20000 +BlindBurt: folds +batscarer said, "ty" +billyem: folds +batscarer: folds +donkey: folds +Girlie007 collected 16500 from pot +ethegreat1 said, "had you on draw" +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 16500 | Rake 0 +Seat 1: Girlie007 collected (16500) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: batscarer (small blind) folded before Flop +Seat 5: donkey (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639548680: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVII (2500/5000) - 2007/10/15 - 09:53:29 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (300496 in chips) +Seat 2: BlindBurt (144513 in chips) +Seat 3: billyem (91095 in chips) +Seat 4: batscarer (93350 in chips) +Seat 5: donkey (36113 in chips) +Seat 6: ethegreat1 (386121 in chips) +Seat 7: s0rrow (105544 in chips) +Seat 9: thripe (79148 in chips) +Girlie007: posts the ante 500 +BlindBurt: posts the ante 500 +billyem: posts the ante 500 +batscarer: posts the ante 500 +donkey: posts the ante 500 +ethegreat1: posts the ante 500 +s0rrow: posts the ante 500 +thripe: posts the ante 500 +donkey: posts small blind 2500 +ethegreat1: posts big blind 5000 +*** HOLE CARDS *** +Dealt to s0rrow [Qh Jc] +s0rrow: calls 5000 +batscarer said, "i never draw" +thripe: folds +Girlie007: folds +BlindBurt: raises 15000 to 20000 +billyem: folds +batscarer: folds +donkey: folds +ethegreat1 said, "what did you call that then" +ethegreat1: folds +s0rrow: calls 15000 +*** FLOP *** [Qd 4s Qs] +s0rrow: bets 15000 +BlindBurt: calls 15000 +*** TURN *** [Qd 4s Qs] [2c] +s0rrow: bets 70044 and is all-in +BlindBurt: calls 70044 +*** RIVER *** [Qd 4s Qs 2c] [2h] +*** SHOW DOWN *** +s0rrow: shows [Qh Jc] (a full house, Queens full of Deuces) +BlindBurt: shows [Kc Kh] (two pair, Kings and Queens) +s0rrow collected 221588 from pot +*** SUMMARY *** +Total pot 221588 | Rake 0 +Board [Qd 4s Qs 2c 2h] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt showed [Kc Kh] and lost with two pair, Kings and Queens +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer (button) folded before Flop (didn't bet) +Seat 5: donkey (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow showed [Qh Jc] and won (221588) with a full house, Queens full of Deuces +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639558365: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:54:27 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (299996 in chips) +Seat 2: BlindBurt (38969 in chips) +Seat 3: billyem (90595 in chips) +Seat 4: batscarer (92850 in chips) +Seat 5: donkey (33113 in chips) +Seat 6: ethegreat1 (380621 in chips) +Seat 7: s0rrow (221588 in chips) +Seat 9: thripe (78648 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +donkey: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +ethegreat1: posts small blind 3000 +s0rrow: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Ad Ac] +thripe: folds +ethegreat1 said, "i bet flop and turn" +Girlie007: raises 12000 to 18000 +BlindBurt: folds +billyem: folds +batscarer: folds +ethegreat1 said, "you called" +donkey: calls 18000 +ethegreat1 said, "drawing" +ethegreat1: folds +s0rrow: raises 202988 to 220988 and is all-in +Girlie007: folds +donkey: calls 14513 and is all-in +batscarer said, "mis click" +*** FLOP *** [5d Jh 7d] +*** TURN *** [5d Jh 7d] [2d] +*** RIVER *** [5d Jh 7d 2d] [6c] +*** SHOW DOWN *** +s0rrow: shows [Ad Ac] (a pair of Aces) +donkey: shows [9d 9h] (a pair of Nines) +s0rrow collected 90826 from pot +batscarer said, "gg" +*** SUMMARY *** +Total pot 90826 | Rake 0 +Board [5d Jh 7d 2d 6c] +Seat 1: Girlie007 folded before Flop +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 5: donkey (button) showed [9d 9h] and lost with a pair of Nines +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) showed [Ad Ac] and won (90826) with a pair of Aces +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639565955: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:55:13 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (281396 in chips) +Seat 2: BlindBurt (38369 in chips) +Seat 3: billyem (89995 in chips) +Seat 4: batscarer (92250 in chips) +Seat 6: ethegreat1 (377021 in chips) +Seat 7: s0rrow (279301 in chips) +Seat 9: thripe (78048 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +s0rrow: posts small blind 3000 +thripe: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Th 4c] +ethegreat1 said, "gg" +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +ethegreat1: folds +s0rrow: folds +thripe collected 10200 from pot +*** SUMMARY *** +Total pot 10200 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 9: thripe (big blind) collected (10200) + + + +PokerStars Game #12639568966: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:55:31 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (280796 in chips) +Seat 2: BlindBurt (37769 in chips) +Seat 3: billyem (89395 in chips) +Seat 4: batscarer (91650 in chips) +Seat 6: ethegreat1 (376421 in chips) +Seat 7: s0rrow (275701 in chips) +Seat 9: thripe (84648 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +thripe: posts small blind 3000 +Girlie007: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Ac As] +BlindBurt: folds +billyem: folds +batscarer: folds +ethegreat1: folds +s0rrow: raises 12000 to 18000 +thripe: calls 15000 +Girlie007: folds +*** FLOP *** [4s Qs Tc] +thripe: checks +s0rrow: bets 30000 +thripe: raises 36048 to 66048 and is all-in +s0rrow: calls 36048 +thripe said, "lool" +*** TURN *** [4s Qs Tc] [Kh] +*** RIVER *** [4s Qs Tc Kh] [3h] +thripe said, "sic" +*** SHOW DOWN *** +thripe: shows [Ah Ad] (a pair of Aces) +s0rrow: shows [Ac As] (a pair of Aces) +thripe collected 89148 from pot +s0rrow collected 89148 from pot +*** SUMMARY *** +Total pot 178296 | Rake 0 +Board [4s Qs Tc Kh 3h] +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) showed [Ac As] and won (89148) with a pair of Aces +Seat 9: thripe (small blind) showed [Ah Ad] and won (89148) with a pair of Aces + + + +PokerStars Game #12639577332: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:56:20 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (274196 in chips) +Seat 2: BlindBurt (37169 in chips) +Seat 3: billyem (88795 in chips) +Seat 4: batscarer (91050 in chips) +Seat 6: ethegreat1 (375821 in chips) +Seat 7: s0rrow (280201 in chips) +Seat 9: thripe (89148 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +Girlie007: posts small blind 3000 +BlindBurt: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [3c Qh] +billyem: folds +batscarer: folds +ethegreat1: folds +s0rrow: folds +thripe: folds +Girlie007: calls 3000 +BlindBurt: raises 30569 to 36569 and is all-in +Girlie007: calls 30569 +*** FLOP *** [5s 8s 6s] +*** TURN *** [5s 8s 6s] [As] +*** RIVER *** [5s 8s 6s As] [Jd] +*** SHOW DOWN *** +Girlie007: shows [Qc 7h] (high card Ace) +BlindBurt: shows [Ks Ts] (a flush, Ace high) +BlindBurt collected 77338 from pot +BlindBurt said, "haah the nuts" +*** SUMMARY *** +Total pot 77338 | Rake 0 +Board [5s 8s 6s As Jd] +Seat 1: Girlie007 (small blind) showed [Qc 7h] and lost with high card Ace +Seat 2: BlindBurt (big blind) showed [Ks Ts] and won (77338) with a flush, Ace high +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 9: thripe (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639582919: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:56:54 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (237027 in chips) +Seat 2: BlindBurt (77338 in chips) +Seat 3: billyem (88195 in chips) +Seat 4: batscarer (90450 in chips) +Seat 6: ethegreat1 (375221 in chips) +Seat 7: s0rrow (279601 in chips) +Seat 9: thripe (88548 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +BlindBurt: posts small blind 3000 +billyem: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Kh 5c] +Girlie007 said, ":)" +batscarer: folds +ethegreat1: calls 6000 +s0rrow: folds +thripe: folds +Girlie007: calls 6000 +BlindBurt said, "id like to kick sorrow in the nuts" +BlindBurt: folds +billyem: checks +*** FLOP *** [2d 6d 8c] +billyem: checks +ethegreat1: checks +s0rrow said, "?" +Girlie007: checks +*** TURN *** [2d 6d 8c] [Jc] +BlindBurt said, "perth in aus sorrow?#" +billyem: checks +s0rrow said, "yeah" +ethegreat1: bets 15000 +Girlie007: folds +BlindBurt said, "good, im going there next week" +billyem: folds +ethegreat1 collected 25200 from pot +BlindBurt said, "gonna kick u in the nuts" +*** SUMMARY *** +Total pot 25200 | Rake 0 +Board [2d 6d 8c Jc] +Seat 1: Girlie007 (button) folded on the Turn +Seat 2: BlindBurt (small blind) folded before Flop +Seat 3: billyem (big blind) folded on the Turn +Seat 4: batscarer folded before Flop (didn't bet) +Seat 6: ethegreat1 collected (25200) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639592393: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:57:50 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (230427 in chips) +Seat 2: BlindBurt (73738 in chips) +Seat 3: billyem (81595 in chips) +Seat 4: batscarer (89850 in chips) +Seat 6: ethegreat1 (393821 in chips) +Seat 7: s0rrow (279001 in chips) +Seat 9: thripe (87948 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +billyem: posts small blind 3000 +batscarer: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [5h 2s] +ethegreat1: folds +s0rrow: folds +thripe: folds +Girlie007: folds +s0rrow said, "i'll be in sa" +BlindBurt: folds +billyem: raises 12000 to 18000 +BlindBurt said, "i'll find u" +batscarer: raises 71250 to 89250 and is all-in +billyem: calls 62995 and is all-in +s0rrow said, "nice to be loved though" +*** FLOP *** [7s 8s 8d] +*** TURN *** [7s 8s 8d] [Ac] +*** RIVER *** [7s 8s 8d Ac] [Tc] +*** SHOW DOWN *** +billyem: shows [Th Ts] (a full house, Tens full of Eights) +batscarer: shows [Ah Ks] (two pair, Aces and Eights) +billyem collected 166190 from pot +*** SUMMARY *** +Total pot 166190 | Rake 0 +Board [7s 8s 8d Ac Tc] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) showed [Th Ts] and won (166190) with a full house, Tens full of Eights +Seat 4: batscarer (big blind) showed [Ah Ks] and lost with two pair, Aces and Eights +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639599468: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:58:33 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (229827 in chips) +Seat 2: BlindBurt (73138 in chips) +Seat 3: billyem (166190 in chips) +Seat 4: batscarer (8255 in chips) +Seat 6: ethegreat1 (393221 in chips) +Seat 7: s0rrow (278401 in chips) +Seat 9: thripe (87348 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +batscarer: posts small blind 3000 +ethegreat1: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Ks Kh] +batscarer said, "knew that was coming" +batscarer said, "nh" +s0rrow: raises 12000 to 18000 +thripe: folds +Girlie007: folds +billyem said, "always a chance on riverstars" +BlindBurt: folds +billyem: folds +batscarer: calls 4655 and is all-in +ethegreat1: folds +*** FLOP *** [3d Ad 8c] +*** TURN *** [3d Ad 8c] [Ac] +*** RIVER *** [3d Ad 8c Ac] [3c] +*** SHOW DOWN *** +batscarer: shows [Qh 3s] (a full house, Threes full of Aces) +s0rrow: shows [Ks Kh] (two pair, Aces and Kings) +batscarer collected 25510 from pot +batscarer said, "bink" +*** SUMMARY *** +Total pot 25510 | Rake 0 +Board [3d Ad 8c Ac 3c] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: batscarer (small blind) showed [Qh 3s] and won (25510) with a full house, Threes full of Aces +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow showed [Ks Kh] and lost with two pair, Aces and Kings +Seat 9: thripe folded before Flop (didn't bet) + + + +PokerStars Game #12639607997: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:59:24 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (229227 in chips) +Seat 2: BlindBurt (72538 in chips) +Seat 3: billyem (165590 in chips) +Seat 4: batscarer (25510 in chips) +Seat 6: ethegreat1 (386621 in chips) +Seat 7: s0rrow (270146 in chips) +Seat 9: thripe (86748 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +ethegreat1: posts small blind 3000 +s0rrow: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [7s 4s] +ethegreat1 said, "sick" +thripe: raises 8900 to 14900 +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: folds +ethegreat1: raises 371121 to 386021 and is all-in +s0rrow: folds +thripe: folds +s0rrow said, "meh" +ethegreat1 collected 40000 from pot +ethegreat1: shows [As Ac] (a pair of Aces) +*** SUMMARY *** +Total pot 40000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) collected (40000) +Seat 7: s0rrow (big blind) folded before Flop +Seat 9: thripe folded before Flop + + + +PokerStars Game #12639613520: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 09:59:57 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (228627 in chips) +Seat 2: BlindBurt (71938 in chips) +Seat 3: billyem (164990 in chips) +Seat 4: batscarer (24910 in chips) +Seat 6: ethegreat1 (411121 in chips) +Seat 7: s0rrow (263546 in chips) +Seat 9: thripe (71248 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +batscarer: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +s0rrow: posts small blind 3000 +thripe: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Ks Ac] +Girlie007: folds +BlindBurt: folds +billyem: folds +batscarer: raises 18310 to 24310 and is all-in +ethegreat1: folds +s0rrow: calls 21310 +thripe: folds +*** FLOP *** [7c Ah Qc] +*** TURN *** [7c Ah Qc] [9c] +*** RIVER *** [7c Ah Qc 9c] [4c] +*** SHOW DOWN *** +s0rrow: shows [Ks Ac] (a flush, Ace high) +batscarer: shows [3c 5c] (a flush, Queen high) +batscarer said, "sickp" +s0rrow collected 58820 from pot +*** SUMMARY *** +Total pot 58820 | Rake 0 +Board [7c Ah Qc 9c 4c] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: batscarer showed [3c 5c] and lost with a flush, Queen high +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) showed [Ks Ac] and won (58820) with a flush, Ace high +Seat 9: thripe (big blind) folded before Flop + + + +PokerStars Game #12639621196: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:00:39 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (228027 in chips) +Seat 2: BlindBurt (71338 in chips) +Seat 3: billyem (164390 in chips) +Seat 6: ethegreat1 (410521 in chips) +Seat 7: s0rrow (297456 in chips) +Seat 9: thripe (64648 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +thripe: posts the ante 600 +thripe: posts small blind 3000 +Girlie007: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 6c] +BlindBurt: folds +BlindBurt said, "gg" +s0rrow said, "gg" +thripe said, "gg" +billyem: raises 18000 to 24000 +J.R.66350 is connected +ethegreat1: folds +s0rrow: folds +thripe: folds +Girlie007: folds +billyem collected 18600 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 18600 | Rake 0 +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: BlindBurt folded before Flop (didn't bet) +Seat 3: billyem collected (18600) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) folded before Flop (didn't bet) +Seat 9: thripe (small blind) folded before Flop + + + +PokerStars Game #12639628842: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:01:23 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (221427 in chips) +Seat 2: BlindBurt (70738 in chips) +Seat 3: billyem (176390 in chips) +Seat 6: ethegreat1 (409921 in chips) +Seat 7: s0rrow (296856 in chips) +Seat 8: J.R.66350 (70850 in chips) +Seat 9: thripe (61048 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +J.R.66350: posts the ante 600 +thripe: posts the ante 600 +Girlie007: posts small blind 3000 +BlindBurt: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Jc Jh] +billyem: folds +ethegreat1: folds +s0rrow: raises 12000 to 18000 +J.R.66350: folds +thripe: raises 24000 to 42000 +Girlie007: folds +BlindBurt: folds +s0rrow: raises 24000 to 66000 +thripe: calls 18448 and is all-in +*** FLOP *** [Tc 6h Jd] +*** TURN *** [Tc 6h Jd] [4d] +thripe said, "jesus" +BlindBurt said, "o my" +*** RIVER *** [Tc 6h Jd 4d] [4s] +*** SHOW DOWN *** +s0rrow: shows [Jc Jh] (a full house, Jacks full of Fours) +thripe: shows [Qs Qh] (two pair, Queens and Fours) +s0rrow collected 134096 from pot +s0rrow said, "wow" +*** SUMMARY *** +Total pot 134096 | Rake 0 +Board [Tc 6h Jd 4d 4s] +Seat 1: Girlie007 (small blind) folded before Flop +Seat 2: BlindBurt (big blind) folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow showed [Jc Jh] and won (134096) with a full house, Jacks full of Fours +Seat 8: J.R.66350 folded before Flop (didn't bet) +Seat 9: thripe (button) showed [Qs Qh] and lost with two pair, Queens and Fours + + + +PokerStars Game #12639635787: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:02:03 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (217827 in chips) +Seat 2: BlindBurt (64138 in chips) +Seat 3: billyem (175790 in chips) +Seat 6: ethegreat1 (409321 in chips) +Seat 7: s0rrow (369904 in chips) +Seat 8: J.R.66350 (70250 in chips) +Girlie007: posts the ante 600 +BlindBurt: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +J.R.66350: posts the ante 600 +BlindBurt: posts small blind 3000 +billyem: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [9s Ts] +ethegreat1: folds +s0rrow: folds +J.R.66350: folds +Girlie007: raises 18000 to 24000 +BlindBurt: raises 39538 to 63538 and is all-in +billyem: folds +Girlie007: calls 39538 +*** FLOP *** [Qc 9c 6c] +*** TURN *** [Qc 9c 6c] [Kd] +*** RIVER *** [Qc 9c 6c Kd] [5h] +*** SHOW DOWN *** +BlindBurt: shows [Tc As] (high card Ace) +Girlie007: shows [7s 7c] (a pair of Sevens) +BlindBurt said, "* * all" +Girlie007 collected 136676 from pot +*** SUMMARY *** +Total pot 136676 | Rake 0 +Board [Qc 9c 6c Kd 5h] +Seat 1: Girlie007 (button) showed [7s 7c] and won (136676) with a pair of Sevens +Seat 2: BlindBurt (small blind) showed [Tc As] and lost with high card Ace +Seat 3: billyem (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639641327: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:02:35 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (290365 in chips) +Seat 3: billyem (169190 in chips) +Seat 6: ethegreat1 (408721 in chips) +Seat 7: s0rrow (369304 in chips) +Seat 8: J.R.66350 (69650 in chips) +Girlie007: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +J.R.66350: posts the ante 600 +ethegreat1: posts small blind 3000 +s0rrow: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [8s 4d] +J.R.66350: folds +mit5482 is connected +ethegreat1 said, "gg burt" +Girlie007: raises 18000 to 24000 +billyem: folds +ethegreat1: calls 21000 +s0rrow: folds +*** FLOP *** [Th As Ac] +ethegreat1: checks +Girlie007: checks +*** TURN *** [Th As Ac] [Qs] +ethegreat1: bets 12000 +Girlie007: calls 12000 +*** RIVER *** [Th As Ac Qs] [Jd] +ethegreat1: checks +Girlie007: bets 24000 +ethegreat1: folds +Girlie007 collected 81000 from pot +Girlie007: shows [Kd Ks] (a straight, Ten to Ace) +*** SUMMARY *** +Total pot 81000 | Rake 0 +Board [Th As Ac Qs Jd] +Seat 1: Girlie007 collected (81000) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded on the River +Seat 7: s0rrow (big blind) folded before Flop +Seat 8: J.R.66350 folded before Flop (didn't bet) + + + +PokerStars Game #12639647785: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:03:12 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (334765 in chips) +Seat 2: mit5482 (121246 in chips) +Seat 3: billyem (168590 in chips) +Seat 6: ethegreat1 (372121 in chips) +Seat 7: s0rrow (362704 in chips) +Seat 8: J.R.66350 (69050 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +J.R.66350: posts the ante 600 +s0rrow: posts small blind 3000 +J.R.66350: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 7s] +Girlie007: folds +mit5482: calls 6000 +billyem: raises 18000 to 24000 +ethegreat1: folds +s0rrow: folds +J.R.66350: calls 18000 +mit5482: folds +*** FLOP *** [Qd Th 2c] +J.R.66350: bets 44450 and is all-in +billyem: calls 44450 +*** TURN *** [Qd Th 2c] [5s] +*** RIVER *** [Qd Th 2c 5s] [9h] +*** SHOW DOWN *** +J.R.66350: shows [Qc Jc] (a pair of Queens) +billyem: shows [Qs Ad] (a pair of Queens - Ace kicker) +billyem collected 149500 from pot +*** SUMMARY *** +Total pot 149500 | Rake 0 +Board [Qd Th 2c 5s 9h] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop +Seat 3: billyem showed [Qs Ad] and won (149500) with a pair of Queens +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: J.R.66350 (big blind) showed [Qc Jc] and lost with a pair of Queens + + + +PokerStars Game #12639656613: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:04:03 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (334165 in chips) +Seat 2: mit5482 (114646 in chips) +Seat 3: billyem (249040 in chips) +Seat 6: ethegreat1 (371521 in chips) +Seat 7: s0rrow (359104 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +Girlie007: posts small blind 3000 +mit5482: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [8h 2c] +billyem: folds +ethegreat1: folds +s0rrow: folds +Girlie007: raises 12000 to 18000 +mit5482: folds +Girlie007 collected 15000 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 15000 | Rake 0 +Seat 1: Girlie007 (small blind) collected (15000) +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639660655: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:04:26 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (342565 in chips) +Seat 2: mit5482 (108046 in chips) +Seat 3: billyem (248440 in chips) +Seat 6: ethegreat1 (370921 in chips) +Seat 7: s0rrow (358504 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +mit5482: posts small blind 3000 +billyem: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Qc Kh] +ethegreat1: folds +s0rrow: raises 6000 to 12000 +Girlie007: calls 12000 +mit5482: folds +billyem: calls 6000 +*** FLOP *** [2h As 8s] +billyem: checks +s0rrow: checks +Girlie007: checks +*** TURN *** [2h As 8s] [Kc] +billyem: bets 18000 +s0rrow: calls 18000 +Girlie007: folds +*** RIVER *** [2h As 8s Kc] [6d] +billyem: checks +s0rrow: checks +*** SHOW DOWN *** +billyem: shows [3d 4h] (high card Ace) +s0rrow: shows [Qc Kh] (a pair of Kings) +s0rrow collected 78000 from pot +*** SUMMARY *** +Total pot 78000 | Rake 0 +Board [2h As 8s Kc 6d] +Seat 1: Girlie007 (button) folded on the Turn +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: billyem (big blind) showed [3d 4h] and lost with high card Ace +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow showed [Qc Kh] and won (78000) with a pair of Kings + + + +PokerStars Game #12639672381: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:05:34 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (329965 in chips) +Seat 2: mit5482 (104446 in chips) +Seat 3: billyem (217840 in chips) +Seat 6: ethegreat1 (370321 in chips) +Seat 7: s0rrow (405904 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +billyem: posts small blind 3000 +ethegreat1: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [8s 7h] +s0rrow: folds +Girlie007: folds +mit5482: folds +billyem: folds +ethegreat1 collected 9000 from pot +*** SUMMARY *** +Total pot 9000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) collected (9000) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639674478: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:05:46 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (329365 in chips) +Seat 2: mit5482 (103846 in chips) +Seat 3: billyem (214240 in chips) +Seat 6: ethegreat1 (375721 in chips) +Seat 7: s0rrow (405304 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +ethegreat1: posts small blind 3000 +s0rrow: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Qs Jd] +Girlie007: folds +mit5482: calls 6000 +billyem said, "that 6 was meant 2 b a 5" +billyem: calls 6000 +ethegreat1: folds +s0rrow: checks +*** FLOP *** [8h 9c 7c] +s0rrow: checks +mit5482: bets 6000 +billyem: raises 12000 to 18000 +s0rrow: folds +mit5482: calls 12000 +*** TURN *** [8h 9c 7c] [Qd] +mit5482: bets 6000 +billyem: calls 6000 +*** RIVER *** [8h 9c 7c Qd] [5h] +mit5482: bets 12000 +billyem: calls 12000 +*** SHOW DOWN *** +mit5482: shows [Th Kd] (high card King) +billyem: shows [9h Ac] (a pair of Nines) +billyem collected 96000 from pot +*** SUMMARY *** +Total pot 96000 | Rake 0 +Board [8h 9c 7c Qd 5h] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 showed [Th Kd] and lost with high card King +Seat 3: billyem (button) showed [9h Ac] and won (96000) with a pair of Nines +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #12639682757: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:06:33 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (328765 in chips) +Seat 2: mit5482 (61246 in chips) +Seat 3: billyem (267640 in chips) +Seat 6: ethegreat1 (372121 in chips) +Seat 7: s0rrow (398704 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +s0rrow: posts small blind 3000 +Girlie007: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Ad Ts] +mit5482: folds +billyem: folds +ethegreat1: raises 6000 to 12000 +s0rrow: calls 9000 +Girlie007: calls 6000 +*** FLOP *** [3h 4d 9s] +s0rrow: checks +Girlie007: checks +ethegreat1: checks +*** TURN *** [3h 4d 9s] [6h] +s0rrow: checks +Girlie007: bets 24000 +ethegreat1: folds +s0rrow: folds +Girlie007 collected 39000 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 39000 | Rake 0 +Board [3h 4d 9s 6h] +Seat 1: Girlie007 (big blind) collected (39000) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded on the Turn +Seat 7: s0rrow (small blind) folded on the Turn + + + +PokerStars Game #12639688869: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:07:08 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (355165 in chips) +Seat 2: mit5482 (60646 in chips) +Seat 3: billyem (267040 in chips) +Seat 6: ethegreat1 (359521 in chips) +Seat 7: s0rrow (386104 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +Girlie007: posts small blind 3000 +mit5482: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Th 4s] +billyem: folds +ethegreat1: folds +s0rrow: folds +Girlie007: calls 3000 +mit5482: checks +*** FLOP *** [9h 4c Ac] +Girlie007: checks +mit5482: checks +*** TURN *** [9h 4c Ac] [Ts] +Girlie007: checks +mit5482: checks +*** RIVER *** [9h 4c Ac Ts] [Kd] +Girlie007: checks +mit5482: checks +*** SHOW DOWN *** +Girlie007: shows [2s Jd] (high card Ace) +mit5482: mucks hand +Girlie007 collected 15000 from pot +*** SUMMARY *** +Total pot 15000 | Rake 0 +Board [9h 4c Ac Ts Kd] +Seat 1: Girlie007 (small blind) showed [2s Jd] and won (15000) with high card Ace +Seat 2: mit5482 (big blind) mucked [7d 8d] +Seat 3: billyem folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639693540: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:07:34 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (363565 in chips) +Seat 2: mit5482 (54046 in chips) +Seat 3: billyem (266440 in chips) +Seat 6: ethegreat1 (358921 in chips) +Seat 7: s0rrow (385504 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +mit5482: posts small blind 3000 +billyem: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [3h 9s] +ethegreat1: folds +s0rrow: folds +Girlie007: raises 12000 to 18000 +mit5482: folds +billyem: calls 12000 +*** FLOP *** [3s Td Qs] +billyem: checks +Girlie007: checks +*** TURN *** [3s Td Qs] [Kh] +billyem: checks +Girlie007: bets 24000 +billyem: folds +Girlie007 collected 42000 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 42000 | Rake 0 +Board [3s Td Qs Kh] +Seat 1: Girlie007 (button) collected (42000) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: billyem (big blind) folded on the Turn +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639699648: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XVIII (3000/6000) - 2007/10/15 - 10:08:09 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (386965 in chips) +Seat 2: mit5482 (50446 in chips) +Seat 3: billyem (247840 in chips) +Seat 6: ethegreat1 (358321 in chips) +Seat 7: s0rrow (384904 in chips) +Girlie007: posts the ante 600 +mit5482: posts the ante 600 +billyem: posts the ante 600 +ethegreat1: posts the ante 600 +s0rrow: posts the ante 600 +billyem: posts small blind 3000 +ethegreat1: posts big blind 6000 +*** HOLE CARDS *** +Dealt to s0rrow [Jd Kh] +s0rrow: raises 6000 to 12000 +Girlie007: folds +mit5482: folds +billyem: calls 9000 +ethegreat1: calls 6000 +*** FLOP *** [3s Tc 9s] +billyem: checks +ethegreat1: checks +s0rrow: bets 12000 +billyem: calls 12000 +ethegreat1: folds +*** TURN *** [3s Tc 9s] [Js] +billyem: checks +s0rrow: checks +*** RIVER *** [3s Tc 9s Js] [Ac] +ethegreat1 said, "top4 here" +billyem: bets 24000 +ethegreat1 said, "not even tables" +s0rrow: calls 24000 +*** SHOW DOWN *** +billyem: shows [5s As] (a flush, Ace high) +s0rrow: mucks hand +billyem collected 111000 from pot +s0rrow said, "nh" +*** SUMMARY *** +Total pot 111000 | Rake 0 +Board [3s Tc 9s Js Ac] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) showed [5s As] and won (111000) with a flush, Ace high +Seat 6: ethegreat1 (big blind) folded on the Flop +Seat 7: s0rrow mucked [Jd Kh] + + + +PokerStars Game #12639711438: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:09:17 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (386365 in chips) +Seat 2: mit5482 (49846 in chips) +Seat 3: billyem (310240 in chips) +Seat 6: ethegreat1 (345721 in chips) +Seat 7: s0rrow (336304 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ethegreat1: posts small blind 4000 +s0rrow: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [9d Ts] +Girlie007: folds +mit5482: folds +billyem: raises 16000 to 24000 +ethegreat1: folds +s0rrow: folds +billyem collected 24000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 24000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem (button) collected (24000) +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded before Flop + + + +PokerStars Game #12639714592: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:09:35 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (385565 in chips) +Seat 2: mit5482 (49046 in chips) +Seat 3: billyem (325440 in chips) +Seat 6: ethegreat1 (340921 in chips) +Seat 7: s0rrow (327504 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +s0rrow: posts small blind 4000 +Girlie007: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [3s Ah] +mit5482: raises 40246 to 48246 and is all-in +billyem: folds +ethegreat1: folds +s0rrow: folds +Girlie007: folds +mit5482 collected 24000 from pot +*** SUMMARY *** +Total pot 24000 | Rake 0 +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: mit5482 collected (24000) +Seat 3: billyem folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12639718620: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:09:59 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (376765 in chips) +Seat 2: mit5482 (64246 in chips) +Seat 3: billyem (324640 in chips) +Seat 6: ethegreat1 (340121 in chips) +Seat 7: s0rrow (322704 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +Girlie007: posts small blind 4000 +mit5482: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [7h Qh] +billyem: folds +ethegreat1: folds +s0rrow: folds +Girlie007: raises 8000 to 16000 +mit5482: folds +Girlie007 collected 20000 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 20000 | Rake 0 +Seat 1: Girlie007 (small blind) collected (20000) +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639725057: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:10:36 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (387965 in chips) +Seat 2: mit5482 (55446 in chips) +Seat 3: billyem (323840 in chips) +Seat 6: ethegreat1 (339321 in chips) +Seat 7: s0rrow (321904 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +mit5482: posts small blind 4000 +billyem: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [5h Th] +ethegreat1: folds +s0rrow: folds +Girlie007: raises 16000 to 24000 +mit5482: folds +billyem: folds +Girlie007 collected 24000 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 24000 | Rake 0 +Seat 1: Girlie007 (button) collected (24000) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: billyem (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639727894: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:10:52 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (403165 in chips) +Seat 2: mit5482 (50646 in chips) +Seat 3: billyem (315040 in chips) +Seat 6: ethegreat1 (338521 in chips) +Seat 7: s0rrow (321104 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +billyem: posts small blind 4000 +ethegreat1: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [9d Ad] +s0rrow: raises 16000 to 24000 +Girlie007: calls 24000 +mit5482: folds +billyem: folds +ethegreat1: calls 16000 +*** FLOP *** [Qs Jd 8h] +ethegreat1: checks +s0rrow: checks +Girlie007: checks +*** TURN *** [Qs Jd 8h] [Qc] +ethegreat1: bets 40000 +s0rrow: folds +Girlie007: folds +ethegreat1 collected 80000 from pot +*** SUMMARY *** +Total pot 80000 | Rake 0 +Board [Qs Jd 8h Qc] +Seat 1: Girlie007 folded on the Turn +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) collected (80000) +Seat 7: s0rrow folded on the Turn + + + +PokerStars Game #12639738141: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:11:51 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (378365 in chips) +Seat 2: mit5482 (49846 in chips) +Seat 3: billyem (310240 in chips) +Seat 6: ethegreat1 (393721 in chips) +Seat 7: s0rrow (296304 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ethegreat1: posts small blind 4000 +s0rrow: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [2c 2d] +Girlie007: folds +mit5482: folds +billyem: folds +ethegreat1: raises 24000 to 32000 +s0rrow: calls 24000 +*** FLOP *** [Th 3d 9h] +ethegreat1: bets 80000 +s0rrow: folds +ethegreat1 collected 68000 from pot +ethegreat1: shows [Jc Jd] (a pair of Jacks) +*** SUMMARY *** +Total pot 68000 | Rake 0 +Board [Th 3d 9h] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) collected (68000) +Seat 7: s0rrow (big blind) folded on the Flop + + + +PokerStars Game #12639743323: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:12:20 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (377565 in chips) +Seat 2: mit5482 (49046 in chips) +Seat 3: billyem (309440 in chips) +Seat 6: ethegreat1 (428921 in chips) +Seat 7: s0rrow (263504 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +s0rrow: posts small blind 4000 +Girlie007: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [5h 6c] +s0rrow said, "2s" +mit5482: folds +billyem: raises 16000 to 24000 +ethegreat1: calls 24000 +s0rrow: folds +Girlie007: folds +*** FLOP *** [Tc Ah Qc] +billyem: bets 24000 +ethegreat1: folds +billyem collected 64000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 64000 | Rake 0 +Board [Tc Ah Qc] +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem collected (64000) +Seat 6: ethegreat1 (button) folded on the Flop +Seat 7: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12639751151: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:13:05 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (368765 in chips) +Seat 2: mit5482 (48246 in chips) +Seat 3: billyem (348640 in chips) +Seat 6: ethegreat1 (404121 in chips) +Seat 7: s0rrow (258704 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +Girlie007: posts small blind 4000 +mit5482: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [4h 8s] +billyem: folds +ethegreat1: calls 8000 +s0rrow: folds +Girlie007: calls 4000 +mit5482: checks +*** FLOP *** [Kh 9s 9c] +Girlie007: checks +mit5482: bets 8000 +ethegreat1: calls 8000 +Girlie007: folds +*** TURN *** [Kh 9s 9c] [8h] +mit5482: bets 8000 +ethegreat1: folds +mit5482 collected 44000 from pot +*** SUMMARY *** +Total pot 44000 | Rake 0 +Board [Kh 9s 9c 8h] +Seat 1: Girlie007 (small blind) folded on the Flop +Seat 2: mit5482 (big blind) collected (44000) +Seat 3: billyem folded before Flop (didn't bet) +Seat 6: ethegreat1 folded on the Turn +Seat 7: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639757879: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:13:43 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (359965 in chips) +Seat 2: mit5482 (75446 in chips) +Seat 3: billyem (347840 in chips) +Seat 6: ethegreat1 (387321 in chips) +Seat 7: s0rrow (257904 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +mit5482: posts small blind 4000 +billyem: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 2d] +ethegreat1: calls 8000 +s0rrow: folds +Girlie007: raises 8000 to 16000 +mit5482: folds +billyem: calls 8000 +ethegreat1: calls 8000 +*** FLOP *** [5s Qh 7h] +billyem: checks +ethegreat1: checks +Girlie007: bets 24000 +billyem: folds +ethegreat1: calls 24000 +*** TURN *** [5s Qh 7h] [Qd] +ethegreat1: bets 36000 +Girlie007: calls 36000 +*** RIVER *** [5s Qh 7h Qd] [Tc] +ethegreat1: bets 36000 +Girlie007: calls 36000 +*** SHOW DOWN *** +ethegreat1: shows [4s 4c] (two pair, Queens and Fours) +Girlie007: shows [Kd Qs] (three of a kind, Queens) +Girlie007 collected 248000 from pot +ethegreat1 said, "nh" +*** SUMMARY *** +Total pot 248000 | Rake 0 +Board [5s Qh 7h Qd Tc] +Seat 1: Girlie007 (button) showed [Kd Qs] and won (248000) with three of a kind, Queens +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: billyem (big blind) folded on the Flop +Seat 6: ethegreat1 showed [4s 4c] and lost with two pair, Queens and Fours +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639769229: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:14:48 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (495165 in chips) +Seat 2: mit5482 (70646 in chips) +Seat 3: billyem (331040 in chips) +Seat 6: ethegreat1 (274521 in chips) +Seat 7: s0rrow (257104 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +billyem: posts small blind 4000 +ethegreat1: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 9s] +Girlie007 said, "ty" +s0rrow: folds +Girlie007: folds +mit5482: calls 8000 +billyem: calls 4000 +ethegreat1: checks +*** FLOP *** [Kd 7d 7s] +billyem: checks +Girlie007 said, "was afraid of a set" +ethegreat1: checks +mit5482: bets 16000 +Girlie007 said, "fullhouse" +billyem: folds +ethegreat1: calls 16000 +*** TURN *** [Kd 7d 7s] [4s] +ethegreat1: checks +mit5482: bets 16000 +ethegreat1: calls 16000 +*** RIVER *** [Kd 7d 7s 4s] [Kc] +ethegreat1: checks +mit5482: bets 29846 and is all-in +ethegreat1: folds +mit5482 collected 92000 from pot +Girlie007 said, "should have raised you on the river" +*** SUMMARY *** +Total pot 92000 | Rake 0 +Board [Kd 7d 7s 4s Kc] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 (button) collected (92000) +Seat 3: billyem (small blind) folded on the Flop +Seat 6: ethegreat1 (big blind) folded on the River +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639778562: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:15:41 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (494365 in chips) +Seat 2: mit5482 (121846 in chips) +Seat 3: billyem (322240 in chips) +Seat 6: ethegreat1 (233721 in chips) +Seat 7: s0rrow (256304 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ethegreat1: posts small blind 4000 +s0rrow: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [2h 8c] +Girlie007: folds +mit5482: folds +billyem: folds +ethegreat1: folds +s0rrow collected 12000 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 12000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) collected (12000) + + + +PokerStars Game #12639781203: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:15:56 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (493565 in chips) +Seat 2: mit5482 (121046 in chips) +Seat 3: billyem (321440 in chips) +Seat 6: ethegreat1 (228921 in chips) +Seat 7: s0rrow (263504 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +s0rrow: posts small blind 4000 +Girlie007: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 3s] +ethegreat1 said, "i wouldve folded" +mit5482: folds +billyem: raises 16000 to 24000 +Girlie007 said, "yep" +ethegreat1: folds +s0rrow: folds +Girlie007: folds +billyem collected 24000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 24000 | Rake 0 +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem collected (24000) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop + + + +PokerStars Game #12639785039: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:16:18 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (484765 in chips) +Seat 2: mit5482 (120246 in chips) +Seat 3: billyem (336640 in chips) +Seat 6: ethegreat1 (228121 in chips) +Seat 7: s0rrow (258704 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +Girlie007: posts small blind 4000 +mit5482: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [2h 7s] +billyem: raises 16000 to 24000 +ethegreat1: folds +s0rrow: folds +Girlie007: folds +mit5482: folds +billyem collected 24000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 24000 | Rake 0 +Seat 1: Girlie007 (small blind) folded before Flop +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: billyem collected (24000) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639794198: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:17:10 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (479965 in chips) +Seat 2: mit5482 (111446 in chips) +Seat 3: billyem (351840 in chips) +Seat 6: ethegreat1 (227321 in chips) +Seat 7: s0rrow (257904 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +mit5482: posts small blind 4000 +billyem: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [9c 5s] +ethegreat1: folds +s0rrow: folds +Girlie007: raises 16000 to 24000 +mit5482: folds +billyem: folds +Girlie007 collected 24000 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 24000 | Rake 0 +Seat 1: Girlie007 (button) collected (24000) +Seat 2: mit5482 (small blind) folded before Flop +Seat 3: billyem (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639799284: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:17:39 (ET) +Table '63858762 9' 9-max Seat #2 is the button +Seat 1: Girlie007 (495165 in chips) +Seat 2: mit5482 (106646 in chips) +Seat 3: billyem (343040 in chips) +Seat 6: ethegreat1 (226521 in chips) +Seat 7: s0rrow (257104 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +billyem: posts small blind 4000 +ethegreat1: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [6d Kc] +s0rrow: folds +Girlie007: folds +mit5482: folds +billyem: calls 4000 +ethegreat1: checks +*** FLOP *** [7s Ah Qd] +billyem: bets 8000 +ethegreat1: folds +billyem collected 20000 from pot +billyem: doesn't show hand +VanBuren44 is connected +OverTheWell is connected +ACEISGOD is connected +scouse21 is connected +*** SUMMARY *** +Total pot 20000 | Rake 0 +Board [7s Ah Qd] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) collected (20000) +Seat 6: ethegreat1 (big blind) folded on the Flop +Seat 7: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #12639805964: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:18:17 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (494365 in chips) +Seat 2: mit5482 (105846 in chips) +Seat 3: billyem (354240 in chips) +Seat 4: OverTheWell (280030 in chips) out of hand (moved from another table into small blind) +Seat 5: scouse21 (137058 in chips) out of hand (moved from another table into small blind) +Seat 6: ethegreat1 (217721 in chips) +Seat 7: s0rrow (256304 in chips) +Seat 8: ACEISGOD (197206 in chips) +Seat 9: VanBuren44 (193730 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +ethegreat1: posts small blind 4000 +s0rrow: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [8s Qh] +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +mit5482: folds +billyem: folds +ethegreat1: calls 4000 +s0rrow: checks +*** FLOP *** [8c Kd Ac] +ethegreat1: bets 8000 +s0rrow: folds +ethegreat1 collected 21600 from pot +*** SUMMARY *** +Total pot 21600 | Rake 0 +Board [8c Kd Ac] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) collected (21600) +Seat 7: s0rrow (big blind) folded on the Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639813652: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:19:00 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (493565 in chips) +Seat 2: mit5482 (105046 in chips) +Seat 3: billyem (353440 in chips) +Seat 4: OverTheWell (280030 in chips) +Seat 5: scouse21 (137058 in chips) +Seat 6: ethegreat1 (230521 in chips) +Seat 7: s0rrow (247504 in chips) +Seat 8: ACEISGOD (196406 in chips) +Seat 9: VanBuren44 (192930 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +s0rrow: posts small blind 4000 +ACEISGOD: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [Ts Qs] +VanBuren44: folds +Girlie007: folds +mit5482: folds +billyem: raises 16000 to 24000 +OverTheWell: folds +scouse21: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +billyem collected 27200 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 27200 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem collected (27200) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639817798: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:19:23 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (492765 in chips) +Seat 2: mit5482 (104246 in chips) +Seat 3: billyem (371840 in chips) +Seat 4: OverTheWell (279230 in chips) +Seat 5: scouse21 (136258 in chips) +Seat 6: ethegreat1 (229721 in chips) +Seat 7: s0rrow (242704 in chips) +Seat 8: ACEISGOD (187606 in chips) +Seat 9: VanBuren44 (192130 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +ACEISGOD: posts small blind 4000 +VanBuren44: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [6d 2d] +Girlie007: folds +mit5482: raises 16000 to 24000 +billyem: folds +OverTheWell: folds +scouse21: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +mit5482 collected 27200 from pot +*** SUMMARY *** +Total pot 27200 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 2: mit5482 collected (27200) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) folded before Flop +Seat 9: VanBuren44 (big blind) folded before Flop + + + +PokerStars Game #12639822391: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:19:49 (ET) +Table '63858762 9' 9-max Seat #8 is the button +Seat 1: Girlie007 (491965 in chips) +Seat 2: mit5482 (122646 in chips) +Seat 3: billyem (371040 in chips) +Seat 4: OverTheWell (278430 in chips) +Seat 5: scouse21 (135458 in chips) +Seat 6: ethegreat1 (228921 in chips) +Seat 7: s0rrow (241904 in chips) +Seat 8: ACEISGOD (182806 in chips) +Seat 9: VanBuren44 (183330 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +VanBuren44: posts small blind 4000 +Girlie007: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [9d 6d] +mit5482: folds +billyem: folds +OverTheWell: folds +scouse21: folds +ethegreat1: raises 8000 to 16000 +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +ethegreat1 collected 27200 from pot +*** SUMMARY *** +Total pot 27200 | Rake 0 +Seat 1: Girlie007 (big blind) folded before Flop +Seat 2: mit5482 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 collected (27200) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: VanBuren44 (small blind) folded before Flop + + + +PokerStars Game #12639825317: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:20:06 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (483165 in chips) +Seat 2: mit5482 (121846 in chips) +Seat 3: billyem (370240 in chips) +Seat 4: OverTheWell (277630 in chips) +Seat 5: scouse21 (134658 in chips) +Seat 6: ethegreat1 (247321 in chips) +Seat 7: s0rrow (241104 in chips) +Seat 8: ACEISGOD (182006 in chips) +Seat 9: VanBuren44 (178530 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +Girlie007: posts small blind 4000 +mit5482: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [8d 6c] +billyem: folds +OverTheWell: folds +scouse21: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: raises 12800 to 20800 +VanBuren44: folds +Girlie007: calls 16800 +mit5482: folds +*** FLOP *** [4d 4h 4s] +Girlie007: checks +ACEISGOD: checks +*** TURN *** [4d 4h 4s] [Kc] +Girlie007: checks +ACEISGOD: checks +*** RIVER *** [4d 4h 4s Kc] [Ad] +Girlie007: checks +ACEISGOD: bets 16000 +Girlie007: calls 16000 +*** SHOW DOWN *** +ACEISGOD: shows [7d As] (a full house, Fours full of Aces) +Girlie007: mucks hand +ACEISGOD collected 88800 from pot +*** SUMMARY *** +Total pot 88800 | Rake 0 +Board [4d 4h 4s Kc Ad] +Seat 1: Girlie007 (small blind) mucked [Ks Qc] +Seat 2: mit5482 (big blind) folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD showed [7d As] and won (88800) with a full house, Fours full of Aces +Seat 9: VanBuren44 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639839645: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:21:26 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (445565 in chips) +Seat 2: mit5482 (113046 in chips) +Seat 3: billyem (369440 in chips) +Seat 4: OverTheWell (276830 in chips) +Seat 5: scouse21 (133858 in chips) +Seat 6: ethegreat1 (246521 in chips) +Seat 7: s0rrow (240304 in chips) +Seat 8: ACEISGOD (233206 in chips) +Seat 9: VanBuren44 (177730 in chips) +Girlie007: posts the ante 800 +mit5482: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +mit5482: posts small blind 4000 +billyem: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [Jc Ts] +OverTheWell: folds +scouse21: folds +ethegreat1: calls 8000 +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +mit5482: calls 4000 +billyem: checks +*** FLOP *** [3c 7c 3d] +mit5482: checks +billyem: checks +ethegreat1: checks +*** TURN *** [3c 7c 3d] [4s] +mit5482: bets 16000 +billyem: folds +ethegreat1: calls 16000 +*** RIVER *** [3c 7c 3d 4s] [Tc] +mit5482: bets 32000 +ethegreat1: raises 189721 to 221721 and is all-in +mit5482: calls 56246 and is all-in +*** SHOW DOWN *** +ethegreat1: shows [4c Ac] (a flush, Ace high) +mit5482: shows [Ad 3h] (three of a kind, Threes) +ethegreat1 collected 239692 from pot +*** SUMMARY *** +Total pot 239692 | Rake 0 +Board [3c 7c 3d 4s Tc] +Seat 1: Girlie007 (button) folded before Flop (didn't bet) +Seat 2: mit5482 (small blind) showed [Ad 3h] and lost with three of a kind, Threes +Seat 3: billyem (big blind) folded on the Turn +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 showed [4c Ac] and won (239692) with a flush, Ace high +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639852409: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:22:37 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (444765 in chips) +Seat 3: billyem (360640 in chips) +Seat 4: OverTheWell (276030 in chips) +Seat 5: scouse21 (133058 in chips) +Seat 6: ethegreat1 (373167 in chips) +Seat 7: s0rrow (239504 in chips) +Seat 8: ACEISGOD (232406 in chips) +Seat 9: VanBuren44 (176930 in chips) +Girlie007: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +OverTheWell: posts small blind 4000 +scouse21: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [8c Ks] +ethegreat1 said, "gg" +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007: raises 16000 to 24000 +billyem: folds +OverTheWell: folds +scouse21: folds +Girlie007 collected 26400 from pot +*** SUMMARY *** +Total pot 26400 | Rake 0 +Seat 1: Girlie007 collected (26400) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: OverTheWell (small blind) folded before Flop +Seat 5: scouse21 (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639857063: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:23:03 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (462365 in chips) +Seat 3: billyem (359840 in chips) +Seat 4: OverTheWell (271230 in chips) +Seat 5: scouse21 (124258 in chips) +Seat 6: ethegreat1 (372367 in chips) +Seat 7: s0rrow (238704 in chips) +Seat 8: ACEISGOD (231606 in chips) +Seat 9: VanBuren44 (176130 in chips) +Girlie007: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +scouse21: posts small blind 4000 +ethegreat1: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Qc] +s0rrow: raises 16000 to 24000 +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: folds +OverTheWell: folds +scouse21: folds +ethegreat1: folds +s0rrow collected 26400 from pot +s0rrow: shows [Qd Qc] (a pair of Queens) +*** SUMMARY *** +Total pot 26400 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell (button) folded before Flop (didn't bet) +Seat 5: scouse21 (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow collected (26400) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639861638: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XIX (4000/8000) - 2007/10/15 - 10:23:29 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (461565 in chips) +Seat 3: billyem (359040 in chips) +Seat 4: OverTheWell (270430 in chips) +Seat 5: scouse21 (119458 in chips) +Seat 6: ethegreat1 (363567 in chips) +Seat 7: s0rrow (256304 in chips) +Seat 8: ACEISGOD (230806 in chips) +Seat 9: VanBuren44 (175330 in chips) +Girlie007: posts the ante 800 +billyem: posts the ante 800 +OverTheWell: posts the ante 800 +scouse21: posts the ante 800 +ethegreat1: posts the ante 800 +s0rrow: posts the ante 800 +ACEISGOD: posts the ante 800 +VanBuren44: posts the ante 800 +ethegreat1: posts small blind 4000 +s0rrow: posts big blind 8000 +*** HOLE CARDS *** +Dealt to s0rrow [8c 7s] +ACEISGOD: folds +VanBuren44: folds +Girlie007: raises 16000 to 24000 +billyem: folds +OverTheWell: folds +scouse21: folds +ethegreat1: folds +s0rrow: folds +Girlie007 collected 26400 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 26400 | Rake 0 +Seat 1: Girlie007 collected (26400) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639867534: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:24:02 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (479165 in chips) +Seat 3: billyem (358240 in chips) +Seat 4: OverTheWell (269630 in chips) +Seat 5: scouse21 (118658 in chips) +Seat 6: ethegreat1 (358767 in chips) +Seat 7: s0rrow (247504 in chips) +Seat 8: ACEISGOD (230006 in chips) +Seat 9: VanBuren44 (174530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +s0rrow: posts small blind 5000 +ACEISGOD: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [As 8c] +VanBuren44: folds +Girlie007: raises 20000 to 30000 +billyem: folds +OverTheWell: folds +scouse21: folds +ethegreat1: calls 30000 +s0rrow: folds +ACEISGOD: folds +*** FLOP *** [5c 3s Ah] +Girlie007: bets 40000 +ethegreat1: calls 40000 +*** TURN *** [5c 3s Ah] [Kh] +Girlie007: checks +ethegreat1: checks +*** RIVER *** [5c 3s Ah Kh] [3d] +Girlie007: checks +ethegreat1: checks +*** SHOW DOWN *** +Girlie007: shows [2d 2s] (two pair, Threes and Deuces) +ethegreat1: shows [Jc Js] (two pair, Jacks and Threes) +ethegreat1 collected 163000 from pot +*** SUMMARY *** +Total pot 163000 | Rake 0 +Board [5c 3s Ah Kh 3d] +Seat 1: Girlie007 showed [2d 2s] and lost with two pair, Threes and Deuces +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) showed [Jc Js] and won (163000) with two pair, Jacks and Threes +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639876229: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:24:51 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (408165 in chips) +Seat 3: billyem (357240 in chips) +Seat 4: OverTheWell (268630 in chips) +Seat 5: scouse21 (117658 in chips) +Seat 6: ethegreat1 (450767 in chips) +Seat 7: s0rrow (241504 in chips) +Seat 8: ACEISGOD (219006 in chips) +Seat 9: VanBuren44 (173530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +ACEISGOD: posts small blind 5000 +VanBuren44: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 9d] +Girlie007: folds +billyem: folds +OverTheWell: folds +scouse21: raises 10000 to 20000 +ethegreat1: calls 20000 +s0rrow: folds +ACEISGOD: raises 72000 to 92000 +VanBuren44: folds +scouse21: folds +ethegreat1: folds +ACEISGOD collected 78000 from pot +*** SUMMARY *** +Total pot 78000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop +Seat 6: ethegreat1 folded before Flop +Seat 7: s0rrow (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) collected (78000) +Seat 9: VanBuren44 (big blind) folded before Flop + + + +PokerStars Game #12639891590: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:26:18 (ET) +Table '63858762 9' 9-max Seat #8 is the button +Seat 1: Girlie007 (407165 in chips) +Seat 3: billyem (356240 in chips) +Seat 4: OverTheWell (267630 in chips) +Seat 5: scouse21 (96658 in chips) +Seat 6: ethegreat1 (429767 in chips) +Seat 7: s0rrow (240504 in chips) +Seat 8: ACEISGOD (276006 in chips) +Seat 9: VanBuren44 (162530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +VanBuren44: posts small blind 5000 +Girlie007: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [5s Ah] +billyem: raises 20000 to 30000 +OverTheWell: folds +scouse21: folds +ethegreat1: calls 30000 +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +*** FLOP *** [8d 9s 7s] +billyem: checks +ethegreat1: checks +*** TURN *** [8d 9s 7s] [2c] +billyem: checks +ethegreat1: checks +*** RIVER *** [8d 9s 7s 2c] [6h] +billyem: bets 40000 +ethegreat1: folds +billyem collected 83000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 83000 | Rake 0 +Board [8d 9s 7s 2c 6h] +Seat 1: Girlie007 (big blind) folded before Flop +Seat 3: billyem collected (83000) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 folded on the River +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: VanBuren44 (small blind) folded before Flop + + + +PokerStars Game #12639899922: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:27:05 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (396165 in chips) +Seat 3: billyem (408240 in chips) +Seat 4: OverTheWell (266630 in chips) +Seat 5: scouse21 (95658 in chips) +Seat 6: ethegreat1 (398767 in chips) +Seat 7: s0rrow (239504 in chips) +Seat 8: ACEISGOD (275006 in chips) +Seat 9: VanBuren44 (156530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +Girlie007: posts small blind 5000 +billyem: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [8s 6c] +OverTheWell: folds +scouse21: folds +ethegreat1: raises 10000 to 20000 +s0rrow: folds +ACEISGOD: calls 20000 +VanBuren44: folds +Girlie007: folds +billyem: calls 10000 +*** FLOP *** [Qc Tc 9d] +billyem: bets 40000 +ethegreat1: folds +ACEISGOD: folds +billyem collected 73000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 73000 | Rake 0 +Board [Qc Tc 9d] +Seat 1: Girlie007 (small blind) folded before Flop +Seat 3: billyem (big blind) collected (73000) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 folded on the Flop +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded on the Flop +Seat 9: VanBuren44 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639908746: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:27:55 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (390165 in chips) +Seat 3: billyem (460240 in chips) +Seat 4: OverTheWell (265630 in chips) +Seat 5: scouse21 (94658 in chips) +Seat 6: ethegreat1 (377767 in chips) +Seat 7: s0rrow (238504 in chips) +Seat 8: ACEISGOD (254006 in chips) +Seat 9: VanBuren44 (155530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +billyem: posts small blind 5000 +OverTheWell: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [3d Jh] +scouse21: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: raises 20000 to 30000 +VanBuren44: folds +Girlie007: calls 30000 +billyem: folds +OverTheWell: calls 20000 +*** FLOP *** [5d 6s 2h] +OverTheWell: bets 70000 +ACEISGOD: raises 153006 to 223006 and is all-in +Girlie007: folds +OverTheWell: calls 153006 +*** TURN *** [5d 6s 2h] [As] +*** RIVER *** [5d 6s 2h As] [8h] +*** SHOW DOWN *** +OverTheWell: shows [Th Tc] (a pair of Tens) +ACEISGOD: shows [Td Ts] (a pair of Tens) +OverTheWell collected 274506 from pot +ACEISGOD collected 274506 from pot +*** SUMMARY *** +Total pot 549012 | Rake 0 +Board [5d 6s 2h As 8h] +Seat 1: Girlie007 (button) folded on the Flop +Seat 3: billyem (small blind) folded before Flop +Seat 4: OverTheWell (big blind) showed [Th Tc] and won (274506) with a pair of Tens +Seat 5: scouse21 folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD showed [Td Ts] and won (274506) with a pair of Tens +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639925982: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:29:36 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (359165 in chips) +Seat 3: billyem (454240 in chips) +Seat 4: OverTheWell (286130 in chips) +Seat 5: scouse21 (93658 in chips) +Seat 6: ethegreat1 (376767 in chips) +Seat 7: s0rrow (237504 in chips) +Seat 8: ACEISGOD (274506 in chips) +Seat 9: VanBuren44 (154530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +OverTheWell: posts small blind 5000 +scouse21: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [7h 2d] +ethegreat1: calls 10000 +s0rrow: folds +ACEISGOD: folds +VanBuren44: calls 10000 +Girlie007: folds +billyem: folds +OverTheWell: calls 5000 +scouse21: checks +*** FLOP *** [Ad 8s 6c] +OverTheWell: checks +scouse21: checks +ethegreat1: bets 25000 +VanBuren44: folds +OverTheWell: folds +scouse21: folds +ethegreat1 collected 48000 from pot +*** SUMMARY *** +Total pot 48000 | Rake 0 +Board [Ad 8s 6c] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: OverTheWell (small blind) folded on the Flop +Seat 5: scouse21 (big blind) folded on the Flop +Seat 6: ethegreat1 collected (48000) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded on the Flop + + + +PokerStars Game #12639933546: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:30:19 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (358165 in chips) +Seat 3: billyem (453240 in chips) +Seat 4: OverTheWell (275130 in chips) +Seat 5: scouse21 (82658 in chips) +Seat 6: ethegreat1 (413767 in chips) +Seat 7: s0rrow (236504 in chips) +Seat 8: ACEISGOD (273506 in chips) +Seat 9: VanBuren44 (143530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +scouse21: posts small blind 5000 +ethegreat1: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [3d Kd] +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: raises 20000 to 30000 +OverTheWell: folds +scouse21: folds +ethegreat1: folds +billyem collected 33000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 33000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem collected (33000) +Seat 4: OverTheWell (button) folded before Flop (didn't bet) +Seat 5: scouse21 (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639936858: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:30:37 (ET) +Table '63858762 9' 9-max Seat #5 is the button +Seat 1: Girlie007 (357165 in chips) +Seat 3: billyem (475240 in chips) +Seat 4: OverTheWell (274130 in chips) +Seat 5: scouse21 (76658 in chips) +Seat 6: ethegreat1 (402767 in chips) +Seat 7: s0rrow (235504 in chips) +Seat 8: ACEISGOD (272506 in chips) +Seat 9: VanBuren44 (142530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +scouse21: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +ethegreat1: posts small blind 5000 +s0rrow: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [9d 7c] +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: folds +OverTheWell: raises 20000 to 30000 +scouse21: raises 45658 to 75658 and is all-in +ethegreat1: folds +s0rrow: folds +OverTheWell: calls 45658 +*** FLOP *** [3d 2d 5c] +*** TURN *** [3d 2d 5c] [8h] +*** RIVER *** [3d 2d 5c 8h] [3c] +*** SHOW DOWN *** +OverTheWell: shows [Ad Ks] (a pair of Threes) +scouse21: shows [9h Ah] (a pair of Threes - lower kicker) +OverTheWell collected 174316 from pot +OverTheWell said, "gg" +*** SUMMARY *** +Total pot 174316 | Rake 0 +Board [3d 2d 5c 8h 3c] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell showed [Ad Ks] and won (174316) with a pair of Threes +Seat 5: scouse21 (button) showed [9h Ah] and lost with a pair of Threes +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639945061: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:31:17 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (356165 in chips) +Seat 3: billyem (474240 in chips) +Seat 4: OverTheWell (371788 in chips) +Seat 6: ethegreat1 (396767 in chips) +Seat 7: s0rrow (224504 in chips) +Seat 8: ACEISGOD (271506 in chips) +Seat 9: VanBuren44 (141530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +s0rrow: posts small blind 5000 +ACEISGOD: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [Qc 4s] +ethegreat1 said, "nh" +VanBuren44: folds +Girlie007: folds +billyem: folds +OverTheWell: raises 20000 to 30000 +ethegreat1: folds +s0rrow: folds +ACEISGOD said, "gg" +ACEISGOD: folds +OverTheWell collected 32000 from pot +OverTheWell: doesn't show hand +*** SUMMARY *** +Total pot 32000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell collected (32000) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639951502: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:31:52 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (355165 in chips) +Seat 3: billyem (473240 in chips) +Seat 4: OverTheWell (392788 in chips) +Seat 6: ethegreat1 (395767 in chips) +Seat 7: s0rrow (218504 in chips) +Seat 8: ACEISGOD (260506 in chips) +Seat 9: VanBuren44 (140530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +ACEISGOD: posts small blind 5000 +VanBuren44: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [Th 4s] +Girlie007: folds +billyem: folds +OverTheWell: folds +ethegreat1: raises 10000 to 20000 +s0rrow: folds +ACEISGOD: folds +VanBuren44: calls 10000 +*** FLOP *** [2h 3s As] +VanBuren44: checks +ethegreat1: bets 26000 +VanBuren44: folds +ethegreat1 collected 52000 from pot +*** SUMMARY *** +Total pot 52000 | Rake 0 +Board [2h 3s As] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 collected (52000) +Seat 7: s0rrow (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) folded before Flop +Seat 9: VanBuren44 (big blind) folded on the Flop + + + +PokerStars Game #12639957318: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:32:21 (ET) +Table '63858762 9' 9-max Seat #8 is the button +Seat 1: Girlie007 (354165 in chips) +Seat 3: billyem (472240 in chips) +Seat 4: OverTheWell (391788 in chips) +Seat 6: ethegreat1 (426767 in chips) +Seat 7: s0rrow (217504 in chips) +Seat 8: ACEISGOD (254506 in chips) +Seat 9: VanBuren44 (119530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +VanBuren44: posts small blind 5000 +Girlie007: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [4s Jh] +billyem: folds +OverTheWell: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007 collected 17000 from pot +*** SUMMARY *** +Total pot 17000 | Rake 0 +Seat 1: Girlie007 (big blind) collected (17000) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: VanBuren44 (small blind) folded before Flop + + + +PokerStars Game #12639962986: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:32:50 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (365165 in chips) +Seat 3: billyem (471240 in chips) +Seat 4: OverTheWell (390788 in chips) +Seat 6: ethegreat1 (425767 in chips) +Seat 7: s0rrow (216504 in chips) +Seat 8: ACEISGOD (253506 in chips) +Seat 9: VanBuren44 (113530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +Girlie007: posts small blind 5000 +billyem: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [8c 4h] +OverTheWell: folds +ethegreat1: calls 10000 +s0rrow: folds +ACEISGOD: raises 26000 to 36000 +VanBuren44: folds +Girlie007: folds +billyem: folds +ethegreat1: folds +ACEISGOD collected 42000 from pot +*** SUMMARY *** +Total pot 42000 | Rake 0 +Seat 1: Girlie007 (small blind) folded before Flop +Seat 3: billyem (big blind) folded before Flop +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD collected (42000) +Seat 9: VanBuren44 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12639973270: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:33:44 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (359165 in chips) +Seat 3: billyem (460240 in chips) +Seat 4: OverTheWell (389788 in chips) +Seat 6: ethegreat1 (414767 in chips) +Seat 7: s0rrow (215504 in chips) +Seat 8: ACEISGOD (284506 in chips) +Seat 9: VanBuren44 (112530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +billyem: posts small blind 5000 +OverTheWell: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [6c Jc] +ethegreat1: raises 13500 to 23500 +s0rrow: folds +ACEISGOD: calls 23500 +VanBuren44: folds +Girlie007: calls 23500 +billyem: folds +OverTheWell: raises 96500 to 120000 +ethegreat1: folds +ACEISGOD: folds +Girlie007: folds +OverTheWell collected 106000 from pot +OverTheWell: doesn't show hand +*** SUMMARY *** +Total pot 106000 | Rake 0 +Seat 1: Girlie007 (button) folded before Flop +Seat 3: billyem (small blind) folded before Flop +Seat 4: OverTheWell (big blind) collected (106000) +Seat 6: ethegreat1 folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639984730: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:34:43 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (334665 in chips) +Seat 3: billyem (454240 in chips) +Seat 4: OverTheWell (471288 in chips) +Seat 6: ethegreat1 (390267 in chips) +Seat 7: s0rrow (214504 in chips) +Seat 8: ACEISGOD (260006 in chips) +Seat 9: VanBuren44 (111530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +OverTheWell: posts small blind 5000 +ethegreat1: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [5c 7h] +s0rrow: folds +ethegreat1 said, "nr" +ACEISGOD: folds +VanBuren44: folds +Girlie007: raises 20000 to 30000 +billyem: calls 30000 +OverTheWell: folds +ethegreat1: folds +*** FLOP *** [2h 6d Th] +Girlie007: checks +billyem: checks +*** TURN *** [2h 6d Th] [Kh] +Girlie007: bets 30000 +billyem: calls 30000 +*** RIVER *** [2h 6d Th Kh] [6c] +Girlie007: bets 40000 +billyem: calls 40000 +*** SHOW DOWN *** +Girlie007: shows [Ks Ah] (two pair, Kings and Sixes) +billyem: mucks hand +Girlie007 collected 222000 from pot +*** SUMMARY *** +Total pot 222000 | Rake 0 +Board [2h 6d Th Kh 6c] +Seat 1: Girlie007 showed [Ks Ah] and won (222000) with two pair, Kings and Sixes +Seat 3: billyem (button) mucked [Kd Qc] +Seat 4: OverTheWell (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12639992215: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:35:21 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (455665 in chips) +Seat 3: billyem (353240 in chips) +Seat 4: OverTheWell (465288 in chips) +Seat 6: ethegreat1 (379267 in chips) +Seat 7: s0rrow (213504 in chips) +Seat 8: ACEISGOD (259006 in chips) +Seat 9: VanBuren44 (110530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +ethegreat1: posts small blind 5000 +s0rrow: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [5d 7d] +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: folds +OverTheWell: raises 20000 to 30000 +billyem said, "ggggrrrr" +ethegreat1: folds +s0rrow: folds +OverTheWell collected 32000 from pot +OverTheWell: doesn't show hand +*** SUMMARY *** +Total pot 32000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell (button) collected (32000) +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12640000644: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:36:04 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (454665 in chips) +Seat 3: billyem (352240 in chips) +Seat 4: OverTheWell (486288 in chips) +Seat 6: ethegreat1 (373267 in chips) +Seat 7: s0rrow (202504 in chips) +Seat 8: ACEISGOD (258006 in chips) +Seat 9: VanBuren44 (109530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +s0rrow: posts small blind 5000 +ACEISGOD: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [5c 3c] +VanBuren44: folds +Girlie007: folds +billyem: raises 20000 to 30000 +OverTheWell: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +billyem collected 32000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 32000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem collected (32000) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12640004136: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:36:22 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (453665 in chips) +Seat 3: billyem (373240 in chips) +Seat 4: OverTheWell (485288 in chips) +Seat 6: ethegreat1 (372267 in chips) +Seat 7: s0rrow (196504 in chips) +Seat 8: ACEISGOD (247006 in chips) +Seat 9: VanBuren44 (108530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +ACEISGOD: posts small blind 5000 +VanBuren44: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [3h 3s] +Girlie007: folds +billyem: folds +OverTheWell: raises 20000 to 30000 +ethegreat1: calls 30000 +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +*** FLOP *** [6d 7d 9d] +OverTheWell: bets 55000 +ethegreat1: calls 55000 +*** TURN *** [6d 7d 9d] [3d] +OverTheWell: checks +ethegreat1: checks +*** RIVER *** [6d 7d 9d 3d] [7s] +OverTheWell: bets 99000 +ethegreat1: calls 99000 +*** SHOW DOWN *** +OverTheWell: shows [Ac Qc] (a pair of Sevens) +ethegreat1: shows [8d Jd] (a flush, Jack high) +ethegreat1 collected 390000 from pot +*** SUMMARY *** +Total pot 390000 | Rake 0 +Board [6d 7d 9d 3d 7s] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell showed [Ac Qc] and lost with a pair of Sevens +Seat 6: ethegreat1 showed [8d Jd] and won (390000) with a flush, Jack high +Seat 7: s0rrow (button) folded before Flop (didn't bet) +Seat 8: ACEISGOD (small blind) folded before Flop +Seat 9: VanBuren44 (big blind) folded before Flop + + + +PokerStars Game #12640017910: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:37:34 (ET) +Table '63858762 9' 9-max Seat #8 is the button +Seat 1: Girlie007 (452665 in chips) +Seat 3: billyem (372240 in chips) +Seat 4: OverTheWell (300288 in chips) +Seat 6: ethegreat1 (577267 in chips) +Seat 7: s0rrow (195504 in chips) +Seat 8: ACEISGOD (241006 in chips) +Seat 9: VanBuren44 (97530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +VanBuren44: posts small blind 5000 +Girlie007: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [4d 5c] +billyem: folds +OverTheWell: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +VanBuren44: raises 30000 to 40000 +Girlie007: folds +VanBuren44 collected 27000 from pot +VanBuren44: doesn't show hand +*** SUMMARY *** +Total pot 27000 | Rake 0 +Seat 1: Girlie007 (big blind) folded before Flop +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: VanBuren44 (small blind) collected (27000) + + + +PokerStars Game #12640021397: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:37:51 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (441665 in chips) +Seat 3: billyem (371240 in chips) +Seat 4: OverTheWell (299288 in chips) +Seat 6: ethegreat1 (576267 in chips) +Seat 7: s0rrow (194504 in chips) +Seat 8: ACEISGOD (240006 in chips) +Seat 9: VanBuren44 (113530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +Girlie007: posts small blind 5000 +billyem: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [8d 5d] +OverTheWell: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007: raises 20000 to 30000 +billyem: folds +Girlie007 collected 27000 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 27000 | Rake 0 +Seat 1: Girlie007 (small blind) collected (27000) +Seat 3: billyem (big blind) folded before Flop +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12640024918: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:38:10 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (457665 in chips) +Seat 3: billyem (360240 in chips) +Seat 4: OverTheWell (298288 in chips) +Seat 6: ethegreat1 (575267 in chips) +Seat 7: s0rrow (193504 in chips) +Seat 8: ACEISGOD (239006 in chips) +Seat 9: VanBuren44 (112530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +billyem: posts small blind 5000 +OverTheWell: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [Qc 4s] +ethegreat1: raises 20000 to 30000 +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: folds +OverTheWell: folds +ethegreat1 collected 32000 from pot +*** SUMMARY *** +Total pot 32000 | Rake 0 +Seat 1: Girlie007 (button) folded before Flop (didn't bet) +Seat 3: billyem (small blind) folded before Flop +Seat 4: OverTheWell (big blind) folded before Flop +Seat 6: ethegreat1 collected (32000) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12640028810: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:38:30 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (456665 in chips) +Seat 3: billyem (354240 in chips) +Seat 4: OverTheWell (287288 in chips) +Seat 6: ethegreat1 (596267 in chips) +Seat 7: s0rrow (192504 in chips) +Seat 8: ACEISGOD (238006 in chips) +Seat 9: VanBuren44 (111530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +OverTheWell: posts small blind 5000 +ethegreat1: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [5h 5c] +s0rrow: raises 20000 to 30000 +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: folds +OverTheWell: folds +ethegreat1: folds +s0rrow collected 32000 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 32000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: OverTheWell (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow collected (32000) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12640033107: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XX (5000/10000) - 2007/10/15 - 10:38:52 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (455665 in chips) +Seat 3: billyem (353240 in chips) +Seat 4: OverTheWell (281288 in chips) +Seat 6: ethegreat1 (585267 in chips) +Seat 7: s0rrow (213504 in chips) +Seat 8: ACEISGOD (237006 in chips) +Seat 9: VanBuren44 (110530 in chips) +Girlie007: posts the ante 1000 +billyem: posts the ante 1000 +OverTheWell: posts the ante 1000 +ethegreat1: posts the ante 1000 +s0rrow: posts the ante 1000 +ACEISGOD: posts the ante 1000 +VanBuren44: posts the ante 1000 +ethegreat1: posts small blind 5000 +s0rrow: posts big blind 10000 +*** HOLE CARDS *** +Dealt to s0rrow [5h Tc] +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: raises 20000 to 30000 +OverTheWell: folds +ethegreat1: folds +ethegreat1 is sitting out +s0rrow: folds +billyem collected 32000 from pot +billyem: doesn't show hand +*** SUMMARY *** +Total pot 32000 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem collected (32000) +Seat 4: OverTheWell (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) folded before Flop +Seat 7: s0rrow (big blind) folded before Flop +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12640096601: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XXI (6000/12000) - 2007/10/15 - 10:44:21 (ET) +Table '63858762 9' 9-max Seat #6 is the button +Seat 1: Girlie007 (454665 in chips) +Seat 3: billyem (374240 in chips) +Seat 4: OverTheWell (280288 in chips) is sitting out +Seat 6: ethegreat1 (579267 in chips) +Seat 7: s0rrow (202504 in chips) +Seat 8: ACEISGOD (236006 in chips) +Seat 9: VanBuren44 (109530 in chips) +Girlie007: posts the ante 1200 +billyem: posts the ante 1200 +OverTheWell: posts the ante 1200 +ethegreat1: posts the ante 1200 +s0rrow: posts the ante 1200 +ACEISGOD: posts the ante 1200 +VanBuren44: posts the ante 1200 +s0rrow: posts small blind 6000 +ACEISGOD: posts big blind 12000 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 4c] +VanBuren44: folds +Girlie007: raises 24000 to 36000 +billyem: folds +OverTheWell: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +Girlie007 collected 38400 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 38400 | Rake 0 +Seat 1: Girlie007 collected (38400) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 (button) folded before Flop (didn't bet) +Seat 7: s0rrow (small blind) folded before Flop +Seat 8: ACEISGOD (big blind) folded before Flop +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12640103462: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XXI (6000/12000) - 2007/10/15 - 10:44:56 (ET) +Table '63858762 9' 9-max Seat #7 is the button +Seat 1: Girlie007 (479865 in chips) +Seat 3: billyem (373040 in chips) +Seat 4: OverTheWell (279088 in chips) is sitting out +Seat 6: ethegreat1 (578067 in chips) +Seat 7: s0rrow (195304 in chips) +Seat 8: ACEISGOD (222806 in chips) +Seat 9: VanBuren44 (108330 in chips) +Girlie007: posts the ante 1200 +billyem: posts the ante 1200 +OverTheWell: posts the ante 1200 +ethegreat1: posts the ante 1200 +s0rrow: posts the ante 1200 +ACEISGOD: posts the ante 1200 +VanBuren44: posts the ante 1200 +ACEISGOD: posts small blind 6000 +VanBuren44: posts big blind 12000 +*** HOLE CARDS *** +Dealt to s0rrow [8c Ac] +Girlie007: folds +billyem: raises 12000 to 24000 +OverTheWell: folds +ethegreat1: calls 24000 +s0rrow: calls 24000 +ACEISGOD: folds +VanBuren44: calls 12000 +*** FLOP *** [Kh 6d 4h] +VanBuren44: bets 83130 and is all-in +billyem: calls 83130 +ethegreat1: calls 83130 +s0rrow: folds +*** TURN *** [Kh 6d 4h] [6s] +billyem: checks +ethegreat1: checks +*** RIVER *** [Kh 6d 4h 6s] [2c] +billyem: checks +ethegreat1: bets 36000 +billyem: calls 36000 +*** SHOW DOWN *** +ethegreat1: shows [Ks Ts] (two pair, Kings and Sixes) +billyem: shows [Th Kd] (two pair, Kings and Sixes) +billyem collected 36000 from side pot +ethegreat1 collected 36000 from side pot +VanBuren44: shows [Tc Kc] (two pair, Kings and Sixes) +VanBuren44 collected 119930 from main pot +billyem collected 119930 from main pot +ethegreat1 collected 119930 from main pot +Girlie007 said, "lol" +ethegreat1 said, "lol" +*** SUMMARY *** +Total pot 431790 Main pot 359790. Side pot 72000. | Rake 0 +Board [Kh 6d 4h 6s 2c] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem showed [Th Kd] and won (155930) with two pair, Kings and Sixes +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 showed [Ks Ts] and won (155930) with two pair, Kings and Sixes +Seat 7: s0rrow (button) folded on the Flop +Seat 8: ACEISGOD (small blind) folded before Flop +Seat 9: VanBuren44 (big blind) showed [Tc Kc] and won (119930) with two pair, Kings and Sixes + + + +PokerStars Game #12640124645: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XXI (6000/12000) - 2007/10/15 - 10:46:46 (ET) +Table '63858762 9' 9-max Seat #8 is the button +Seat 1: Girlie007 (478665 in chips) +Seat 3: billyem (384640 in chips) +Seat 4: OverTheWell (277888 in chips) is sitting out +Seat 6: ethegreat1 (589667 in chips) +Seat 7: s0rrow (170104 in chips) +Seat 8: ACEISGOD (215606 in chips) +Seat 9: VanBuren44 (119930 in chips) +Girlie007: posts the ante 1200 +billyem: posts the ante 1200 +OverTheWell: posts the ante 1200 +ethegreat1: posts the ante 1200 +s0rrow: posts the ante 1200 +ACEISGOD: posts the ante 1200 +VanBuren44: posts the ante 1200 +VanBuren44: posts small blind 6000 +Girlie007: posts big blind 12000 +*** HOLE CARDS *** +Dealt to s0rrow [3s 2c] +billyem said, "r u sure" +billyem: folds +OverTheWell: folds +ethegreat1: folds +s0rrow: folds +ACEISGOD: folds +VanBuren44: folds +ethegreat1 said, "what are the odds in 7 handed" +Girlie007 collected 20400 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 20400 | Rake 0 +Seat 1: Girlie007 (big blind) collected (20400) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD (button) folded before Flop (didn't bet) +Seat 9: VanBuren44 (small blind) folded before Flop + + + +PokerStars Game #12640129478: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XXI (6000/12000) - 2007/10/15 - 10:47:11 (ET) +Table '63858762 9' 9-max Seat #9 is the button +Seat 1: Girlie007 (491865 in chips) +Seat 3: billyem (383440 in chips) +Seat 4: OverTheWell (276688 in chips) is sitting out +Seat 6: ethegreat1 (588467 in chips) +Seat 7: s0rrow (168904 in chips) +Seat 8: ACEISGOD (214406 in chips) +Seat 9: VanBuren44 (112730 in chips) +Girlie007: posts the ante 1200 +billyem: posts the ante 1200 +OverTheWell: posts the ante 1200 +ethegreat1: posts the ante 1200 +s0rrow: posts the ante 1200 +ACEISGOD: posts the ante 1200 +VanBuren44: posts the ante 1200 +Girlie007: posts small blind 6000 +billyem: posts big blind 12000 +*** HOLE CARDS *** +Dealt to s0rrow [Kc Ah] +OverTheWell: folds +ethegreat1: folds +s0rrow: raises 24000 to 36000 +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: folds +s0rrow collected 38400 from pot +s0rrow: doesn't show hand +*** SUMMARY *** +Total pot 38400 | Rake 0 +Seat 1: Girlie007 (small blind) folded before Flop +Seat 3: billyem (big blind) folded before Flop +Seat 4: OverTheWell folded before Flop (didn't bet) +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow collected (38400) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 (button) folded before Flop (didn't bet) + + + +PokerStars Game #12640134583: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XXI (6000/12000) - 2007/10/15 - 10:47:37 (ET) +Table '63858762 9' 9-max Seat #1 is the button +Seat 1: Girlie007 (484665 in chips) +Seat 3: billyem (370240 in chips) +Seat 4: OverTheWell (275488 in chips) is sitting out +Seat 6: ethegreat1 (587267 in chips) +Seat 7: s0rrow (194104 in chips) +Seat 8: ACEISGOD (213206 in chips) +Seat 9: VanBuren44 (111530 in chips) +Girlie007: posts the ante 1200 +billyem: posts the ante 1200 +OverTheWell: posts the ante 1200 +ethegreat1: posts the ante 1200 +s0rrow: posts the ante 1200 +ACEISGOD: posts the ante 1200 +VanBuren44: posts the ante 1200 +billyem: posts small blind 6000 +OverTheWell: posts big blind 12000 +*** HOLE CARDS *** +Dealt to s0rrow [Qc 4h] +ethegreat1: folds +s0rrow: folds +ACEISGOD: raises 17000 to 29000 +VanBuren44: folds +Girlie007: calls 29000 +billyem: folds +OverTheWell: folds +*** FLOP *** [Ad 8d Ks] +ACEISGOD: checks +Girlie007: bets 48000 +ACEISGOD: folds +Girlie007 collected 84400 from pot +Girlie007: doesn't show hand +*** SUMMARY *** +Total pot 84400 | Rake 0 +Board [Ad 8d Ks] +Seat 1: Girlie007 (button) collected (84400) +Seat 3: billyem (small blind) folded before Flop +Seat 4: OverTheWell (big blind) folded before Flop +Seat 6: ethegreat1 folded before Flop (didn't bet) +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded on the Flop +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + +PokerStars Game #12640146042: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XXI (6000/12000) - 2007/10/15 - 10:48:36 (ET) +Table '63858762 9' 9-max Seat #3 is the button +Seat 1: Girlie007 (538865 in chips) +Seat 3: billyem (363040 in chips) +Seat 4: OverTheWell (262288 in chips) is sitting out +Seat 6: ethegreat1 (586067 in chips) +Seat 7: s0rrow (192904 in chips) +Seat 8: ACEISGOD (183006 in chips) +Seat 9: VanBuren44 (110330 in chips) +Girlie007: posts the ante 1200 +billyem: posts the ante 1200 +OverTheWell: posts the ante 1200 +ethegreat1: posts the ante 1200 +s0rrow: posts the ante 1200 +ACEISGOD: posts the ante 1200 +VanBuren44: posts the ante 1200 +OverTheWell: posts small blind 6000 +ethegreat1: posts big blind 12000 +*** HOLE CARDS *** +Dealt to s0rrow [9h Ts] +s0rrow: folds +ACEISGOD: folds +VanBuren44: raises 36000 to 48000 +Girlie007: folds +billyem: folds +OverTheWell: folds +ethegreat1: folds +VanBuren44 collected 38400 from pot +VanBuren44: doesn't show hand +*** SUMMARY *** +Total pot 38400 | Rake 0 +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem (button) folded before Flop (didn't bet) +Seat 4: OverTheWell (small blind) folded before Flop +Seat 6: ethegreat1 (big blind) folded before Flop +Seat 7: s0rrow folded before Flop (didn't bet) +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 collected (38400) + + + +PokerStars Game #12640152001: Tournament #63858762, $5.00+$0.50 Hold'em No Limit - Level XXI (6000/12000) - 2007/10/15 - 10:49:07 (ET) +Table '63858762 9' 9-max Seat #4 is the button +Seat 1: Girlie007 (537665 in chips) +Seat 3: billyem (361840 in chips) +Seat 4: OverTheWell (255088 in chips) is sitting out +Seat 6: ethegreat1 (572867 in chips) +Seat 7: s0rrow (191704 in chips) +Seat 8: ACEISGOD (181806 in chips) +Seat 9: VanBuren44 (135530 in chips) +Girlie007: posts the ante 1200 +billyem: posts the ante 1200 +OverTheWell: posts the ante 1200 +ethegreat1: posts the ante 1200 +s0rrow: posts the ante 1200 +ACEISGOD: posts the ante 1200 +VanBuren44: posts the ante 1200 +ethegreat1: posts small blind 6000 +s0rrow: posts big blind 12000 +*** HOLE CARDS *** +Dealt to s0rrow [As Qh] +ACEISGOD: folds +VanBuren44: folds +Girlie007: folds +billyem: folds +OverTheWell: folds +ethegreat1: raises 36000 to 48000 +s0rrow: raises 142504 to 190504 and is all-in +ethegreat1: calls 142504 +*** FLOP *** [Th Kd 5s] +*** TURN *** [Th Kd 5s] [2h] +*** RIVER *** [Th Kd 5s 2h] [7h] +*** SHOW DOWN *** +ethegreat1: shows [Ks Ah] (a pair of Kings) +s0rrow: shows [As Qh] (high card Ace) +ethegreat1 collected 389408 from pot +ethegreat1 said, "gg" +*** SUMMARY *** +Total pot 389408 | Rake 0 +Board [Th Kd 5s 2h 7h] +Seat 1: Girlie007 folded before Flop (didn't bet) +Seat 3: billyem folded before Flop (didn't bet) +Seat 4: OverTheWell (button) folded before Flop (didn't bet) +Seat 6: ethegreat1 (small blind) showed [Ks Ah] and won (389408) with a pair of Kings +Seat 7: s0rrow (big blind) showed [As Qh] and lost with high card Ace +Seat 8: ACEISGOD folded before Flop (didn't bet) +Seat 9: VanBuren44 folded before Flop (didn't bet) + + + diff --git a/pyfpdb/test_Database.py b/pyfpdb/test_Database.py index b348f741..25bd6dbc 100644 --- a/pyfpdb/test_Database.py +++ b/pyfpdb/test_Database.py @@ -64,5 +64,4 @@ def testSQLiteModFunction(): assert vars[idx]%13 == int(i[0]) idx = idx+1 - assert 0 == 1 cur.execute("DROP TABLE test") diff --git a/pyfpdb/test_PokerStars.py b/pyfpdb/test_PokerStars.py index 44a95b5e..8730d98a 100644 --- a/pyfpdb/test_PokerStars.py +++ b/pyfpdb/test_PokerStars.py @@ -3,6 +3,19 @@ import PokerStarsToFpdb from Hand import * import py +import Configuration +import Database +import fpdb_import + +config = Configuration.Config(file = "HUD_config.test.xml") +db = Database.Database(config) + +settings = {} +settings.update(config.get_db_parameters()) +settings.update(config.get_tv_parameters()) +settings.update(config.get_import_parameters()) +settings.update(config.get_default_paths()) + #regression-test-files/stars/badugi/ring-fl-badugi.txt # s0rrow: input: $30.00 end: $22.65 total: ($7.35) #regression-test-files/stars/plo/PLO-6max.txt @@ -45,37 +58,53 @@ def testGameInfo(): yield checkGameInfo, hhc, header, info -def testHandInfo(): - text = u"""PokerStars Game #20461877044: Hold'em No Limit ($1/$2) - 2008/09/16 18:58:01 ET""" - hhc = PokerStarsToFpdb.PokerStars(autostart=False) - h = HoldemOmahaHand(None, "PokerStars", gametype, text, builtFrom = "Test") - hhc.readHandInfo(h) - assert h.handid == '20461877044' - assert h.sitename == 'PokerStars' - assert h.starttime == (2008, 9, 16, 18, 58, 1, 1, 260, -1) - - text = u"""PokerStars Game #18707234955: Razz Limit ($0.50/$1.00) - 2008/07/09 - 21:41:43 (ET) -Table 'Lepus II' 8-max""" - hhc = PokerStarsToFpdb.PokerStars(autostart=False) - h = HoldemOmahaHand(None, "PokerStars", gametype, text, builtFrom = "Test") - hhc.readHandInfo(h) - assert h.handid == '18707234955' - assert h.sitename == 'PokerStars' - assert h.maxseats == 8 - assert h.tablename == 'Lepus II' - assert h.starttime == (2008,7 , 9, 21, 41, 43, 2, 191, -1) - - - text = u"""PokerStars Game #22073591924: Hold'em No Limit ($0.50/$1.00) - 2008/11/16 1:22:21 CET [2008/11/15 19:22:21 ET] -Table 'Caia II' 6-max Seat #2 is the button""" - hhc = PokerStarsToFpdb.PokerStars(autostart=False) - h = HoldemOmahaHand(None, "PokerStars", gametype, text, builtFrom = "Test") - hhc.readHandInfo(h) - assert h.handid == '22073591924' - assert h.sitename == 'PokerStars' - assert h.maxseats == 6 - assert h.tablename == 'Caia II' - assert h.buttonpos == '2' # TODO: should this be an int? - assert h.starttime == (2008,11 , 15, 19, 22, 21, 5, 320, -1) - - +def testFlopImport(): + db.recreate_tables() + importer = fpdb_import.Importer(False, settings, config) + importer.setDropIndexes("don't drop") + importer.setFailOnError(True) + importer.setThreads(-1) + importer.addBulkImportImportFileOrDir( + """regression-test-files/cash/Stars/Flop/NLHE-6max-EUR-0.05-0.10-200911.txt""", site="PokerStars") + importer.addBulkImportImportFileOrDir( + """regression-test-files/cash/Stars/Flop/NLHE-6max-USD-0.05-0.10-200911.txt""", site="PokerStars") + #importer.addBulkImportImportFileOrDir( + # """regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-5r-200710.txt""", site="PokerStars") + importer.addBulkImportImportFileOrDir( + """regression-test-files/cash/Stars/Flop/PLO8-6max-USD-0.01-0.02-200911.txt""", site="PokerStars") + importer.setCallHud(False) + (stored, dups, partial, errs, ttime) = importer.runImport() + importer.clearFileList() + + # Should actually do some testing here + assert 1 == 1 + +def testStudImport(): + db.recreate_tables() + importer = fpdb_import.Importer(False, settings, config) + importer.setDropIndexes("don't drop") + importer.setFailOnError(True) + importer.setThreads(-1) + importer.addBulkImportImportFileOrDir( + """regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200911.txt""", site="PokerStars") + importer.addBulkImportImportFileOrDir( + """regression-test-files/cash/Stars/Stud/7-StudHL-USD-0.04-0.08-200911.txt""", site="PokerStars") + importer.addBulkImportImportFileOrDir( + """regression-test-files/cash/Stars/Stud/Razz-USD-0.04-0.08-200911.txt""", site="PokerStars") + importer.setCallHud(False) + (stored, dups, partial, errs, ttime) = importer.runImport() + importer.clearFileList() + +#def testDrawImport(): +# db.recreate_tables() +# importer = fpdb_import.Importer(False, settings, config) +# importer.setDropIndexes("don't drop") +# importer.setFailOnError(True) +# importer.setThreads(-1) +# importer.addBulkImportImportFileOrDir( +# """regression-test-files/cash/Stars/Draw/3-Draw-Limit-USD-0.10-0.20-200911.txt""", site="PokerStars") +# importer.addBulkImportImportFileOrDir( +# """regression-test-files/cash/Stars/Draw/5-Carddraw-USD-0.10-0.20-200911.txt""", site="PokerStars") +# importer.setCallHud(False) +# (stored, dups, partial, errs, ttime) = importer.runImport() +# importer.clearFileList()